From 27024e3b1dd6e39ec7b830cc13907c8be7bd9e36 Mon Sep 17 00:00:00 2001 From: fabrixxm Date: Wed, 30 Jul 2014 15:23:36 +0200 Subject: [PATCH 1/5] preferred item image size for theme, get smallest photo near scale requested themes can declare preferred image size for images in items, with $a->theme_info = array( "item_image_size" => 1 ); 0: original, 1:640px, 2:320px mod/photo.php returns the nearest scaled image near requested one if it doesn't exists, instead of nothing --- include/text.php | 265 ++++++++++++++++++++++++----------------------- mod/photo.php | 29 ++---- 2 files changed, 145 insertions(+), 149 deletions(-) diff --git a/include/text.php b/include/text.php index 26de709e3e..658c2cdd64 100644 --- a/include/text.php +++ b/include/text.php @@ -6,8 +6,8 @@ require_once("include/friendica_smarty.php"); if(! function_exists('replace_macros')) { /** * This is our template processor - * - * @param string|FriendicaSmarty $s the string requiring macro substitution, + * + * @param string|FriendicaSmarty $s the string requiring macro substitution, * or an instance of FriendicaSmarty * @param array $r key value pairs (search => replace) * @return string substituted string @@ -52,13 +52,13 @@ if(! function_exists('notags')) { * The high bit hack only involved some old IE browser, forget which (IE5/Mac?) * that had an XSS attack vector due to stripping the high-bit on an 8-bit character * after cleansing, and angle chars with the high bit set could get through as markup. - * - * This is now disabled because it was interfering with some legitimate unicode sequences - * and hopefully there aren't a lot of those browsers left. + * + * This is now disabled because it was interfering with some legitimate unicode sequences + * and hopefully there aren't a lot of those browsers left. * * Use this on any text input where angle chars are not valid or permitted * They will be replaced with safer brackets. This may be filtered further - * if these are not allowed either. + * if these are not allowed either. * * @param string $string Input string * @return string Filtered string @@ -86,12 +86,12 @@ function escape_tags($string) { }} -// generate a string that's random, but usually pronounceable. +// generate a string that's random, but usually pronounceable. // used to generate initial passwords if(! function_exists('autoname')) { /** - * generate a string that's random, but usually pronounceable. + * generate a string that's random, but usually pronounceable. * used to generate initial passwords * @param int $len * @return string @@ -101,7 +101,7 @@ function autoname($len) { if($len <= 0) return ''; - $vowels = array('a','a','ai','au','e','e','e','ee','ea','i','ie','o','ou','u'); + $vowels = array('a','a','ai','au','e','e','e','ee','ea','i','ie','o','ou','u'); if(mt_rand(0,5) == 4) $vowels[] = 'y'; @@ -145,7 +145,7 @@ function autoname($len) { for ($x = 0; $x < $len; $x ++) { $r = mt_rand(0,count($table) - 1); $word .= $table[$r]; - + if($table == $vowels) $table = array_merge($cons,$midcons); else @@ -162,7 +162,7 @@ function autoname($len) { } } if(substr($word,-1) == 'q') - $word = substr($word,0,-1); + $word = substr($word,0,-1); return $word; }} @@ -178,11 +178,11 @@ if(! function_exists('xmlify')) { */ function xmlify($str) { /* $buffer = ''; - + $len = mb_strlen($str); for($x = 0; $x < $len; $x ++) { $char = mb_substr($str,$x,1); - + switch( $char ) { case "\r" : @@ -208,7 +208,7 @@ function xmlify($str) { default : $buffer .= $char; break; - } + } }*/ /* $buffer = mb_ereg_replace("&", "&", $str); @@ -219,7 +219,7 @@ function xmlify($str) { */ $buffer = htmlspecialchars($str, ENT_QUOTES); $buffer = trim($buffer); - + return($buffer); }} @@ -239,7 +239,7 @@ function unxmlify($s) { $ret = mb_ereg_replace('>', ">", $ret); */ $ret = htmlspecialchars_decode($s, ENT_QUOTES); - return $ret; + return $ret; }} if(! function_exists('hex2bin')) { @@ -287,7 +287,7 @@ function paginate_data(&$a, $count=null) { $data = array(); function _l(&$d, $name, $url, $text, $class="") { - $d[$name] = array('url'=>$url, 'text'=>$text, 'class'=>$class); + $d[$name] = array('url'=>$url, 'text'=>$text, 'class'=>$class); } if (!is_null($count)){ @@ -355,9 +355,9 @@ if(! function_exists('paginate')) { * Then call paginate($a) after the end of the display loop to insert the pager block on the page * (assuming there are enough items to paginate). * When using with SQL, the setting LIMIT %d, %d => $a->pager['start'],$a->pager['itemspage'] - * will limit the results to the correct items for the current page. - * The actual page handling is then accomplished at the application layer. - * + * will limit the results to the correct items for the current page. + * The actual page handling is then accomplished at the application layer. + * * @param App $a App instance * @return string html for pagination #FIXME remove html */ @@ -406,11 +406,11 @@ function expand_acl($s) { } } return $ret; -}} +}} if(! function_exists('sanitise_acl')) { /** - * Wrap ACL elements in angle brackets for storage + * Wrap ACL elements in angle brackets for storage * @param string $item */ function sanitise_acl(&$item) { @@ -424,10 +424,10 @@ function sanitise_acl(&$item) { if(! function_exists('perms2str')) { /** * Convert an ACL array to a storable string - * + * * Normally ACL permissions will be an array. * We'll also allow a comma-separated string. - * + * * @param string|array $p * @return string */ @@ -450,7 +450,7 @@ if(! function_exists('item_new_uri')) { /** * generate a guaranteed unique (for this domain) item ID for ATOM * safe from birthday paradox - * + * * @param string $hostname * @param int $uid * @return string @@ -506,7 +506,7 @@ if(! function_exists('load_view_file')) { * @global App $a * @param string $s view name * @return string - */ + */ function load_view_file($s) { global $lang, $a; if(! isset($lang)) @@ -539,7 +539,7 @@ if(! function_exists('get_intltext_template')) { /** * load a view template, checking for alternate * languages before falling back to the default - * + * * @global string $lang * @param string $s view path * @return string @@ -576,7 +576,7 @@ function get_intltext_template($s) { if(! function_exists('get_markup_template')) { /** * load template $s - * + * * @param string $s * @param string $root * @return string @@ -591,15 +591,15 @@ function get_markup_template($s, $root = '') { } catch (Exception $e) { echo "
".__function__.": ".$e->getMessage()."
"; killme(); } - + $a->save_timestamp($stamp1, "file"); - + return $template; }} if(! function_exists("get_template_file")) { /** - * + * * @param App $a * @param string $filename * @param string $root @@ -636,11 +636,11 @@ if(! function_exists('attribute_contains')) { * an attribute foobar="class1 class2 class3" * and you want to find out if it contains 'class3'. * you can't use a normal sub string search because you - * might match 'notclass3' and a regex to do the job is - * possible but a bit complicated. - * pass the attribute string as $attr and the attribute you + * might match 'notclass3' and a regex to do the job is + * possible but a bit complicated. + * pass the attribute string as $attr and the attribute you * are looking for as $s - returns true if found, otherwise false - * + * * @param string $attr attribute value * @param string $s string to search * @return boolean True if found, False otherwise @@ -691,9 +691,9 @@ function logger($msg,$level = 0) { if((! $debugging) || (! $logfile) || ($level > $loglevel)) return; - $callers = debug_backtrace(); - $logline = sprintf("%s@%s\t[%s]:%s:%s:%s\t%s\n", - datetime_convert(), + $callers = debug_backtrace(); + $logline = sprintf("%s@%s\t[%s]:%s:%s:%s\t%s\n", + datetime_convert(), session_id(), $LOGGER_LEVELS[$level], basename($callers[0]['file']), @@ -701,7 +701,7 @@ function logger($msg,$level = 0) { $callers[1]['function'], $msg ); - + $stamp1 = microtime(true); @file_put_contents($logfile, $logline, FILE_APPEND); $a->save_timestamp($stamp1, "file"); @@ -712,7 +712,7 @@ function logger($msg,$level = 0) { if(! function_exists('activity_match')) { /** * Compare activity uri. Knows about activity namespace. - * + * * @param string $haystack * @param string $needle * @return boolean @@ -727,12 +727,12 @@ function activity_match($haystack,$needle) { if(! function_exists('get_tags')) { /** * Pull out all #hashtags and @person tags from $s; - * We also get @person@domain.com - which would make + * We also get @person@domain.com - which would make * the regex quite complicated as tags can also * end a sentence. So we'll run through our results * and strip the period from any tags which end with one. * Returns array of tags found, or empty array. - * + * * @param string $s * @return array */ @@ -788,18 +788,18 @@ function get_tags($s) { }} -// +// if(! function_exists('qp')) { /** * quick and dirty quoted_printable encoding - * + * * @param string $s * @return string - */ + */ function qp($s) { return str_replace ("%","=",rawurlencode($s)); -}} +}} @@ -827,7 +827,7 @@ function get_mentions($item) { if(! function_exists('contact_block')) { /** * Get html for contact block. - * + * * @template contact_block.tpl * @hook contact_block_end (contacts=>array, output=>string) * @return string @@ -853,7 +853,7 @@ function contact_block() { if(! $total) { $contacts = t('No contacts'); $micropro = Null; - + } else { $r = q("SELECT * FROM `contact` WHERE `uid` = %d AND `self` = 0 AND `blocked` = 0 and `pending` = 0 AND `hidden` = 0 AND `archive` = 0 ORDER BY RAND() LIMIT %d", intval($a->profile['uid']), @@ -867,7 +867,7 @@ function contact_block() { } } } - + $tpl = get_markup_template('contact_block.tpl'); $o = replace_macros($tpl, array( '$contacts' => $contacts, @@ -885,7 +885,7 @@ function contact_block() { if(! function_exists('micropro')) { /** - * + * * @param array $contact * @param boolean $redirect * @param string $class @@ -916,19 +916,19 @@ function micropro($contact, $redirect = false, $class = '', $textmode = false) { if($click) $url = ''; if($textmode) { - return '
'. $contact['name'] . '
' . "\r\n"; } else { - return '
' . $contact['name'] 
+			. (($url) ? ' href=' . $contact['name']
 			. '
' . "\r\n"; } }} @@ -938,7 +938,7 @@ function micropro($contact, $redirect = false, $class = '', $textmode = false) { if(! function_exists('search')) { /** * search box - * + * * @param string $s search query * @param string $id html id * @param string $url search url @@ -950,9 +950,9 @@ function search($s,$id='search-box',$url='/search',$save = false) { $o = '
'; $o .= '
'; $o .= ''; - $o .= ''; + $o .= ''; if($save) - $o .= ''; + $o .= ''; $o .= '
'; return $o; }} @@ -960,7 +960,7 @@ function search($s,$id='search-box',$url='/search',$save = false) { if(! function_exists('valid_email')) { /** * Check if $x is a valid email string - * + * * @param string $x * @return boolean */ @@ -996,7 +996,7 @@ function linkify($s) { * @hook poke_verbs pokes array */ function get_poke_verbs() { - + // index is present tense verb // value is array containing past tense verb, translation of present, translation of past @@ -1018,7 +1018,7 @@ function get_poke_verbs() { * @hook mood_verbs moods array */ function get_mood_verbs() { - + $arr = array( 'happy' => t('happy'), 'sad' => t('sad'), @@ -1053,10 +1053,10 @@ if(! function_exists('smilies')) { * Replaces text emoticons with graphical images * * It is expected that this function will be called using HTML text. - * We will escape text between HTML pre and code blocks from being - * processed. - * - * At a higher level, the bbcode [nosmile] tag can be used to prevent this + * We will escape text between HTML pre and code blocks from being + * processed. + * + * At a higher level, the bbcode [nosmile] tag can be used to prevent this * function from being executed by the prepare_text() routine when preparing * bbcode source for HTML display * @@ -1068,43 +1068,43 @@ if(! function_exists('smilies')) { function smilies($s, $sample = false) { $a = get_app(); - if(intval(get_config('system','no_smilies')) + if(intval(get_config('system','no_smilies')) || (local_user() && intval(get_pconfig(local_user(),'system','no_smilies')))) return $s; $s = preg_replace_callback('/
(.*?)<\/pre>/ism','smile_encode',$s);
 	$s = preg_replace_callback('/(.*?)<\/code>/ism','smile_encode',$s);
 
-	$texts =  array( 
-		'<3', 
-		'</3', 
-		'<\\3', 
-		':-)', 
-		';-)', 
-		':-(', 
-		':-P', 
-		':-p', 
-		':-"', 
-		':-"', 
-		':-x', 
-		':-X', 
-		':-D', 
-		'8-|', 
-		'8-O', 
-		':-O', 
-		'\\o/', 
-		'o.O', 
-		'O.o', 
-		'o_O', 
-		'O_o', 
-		":'(", 
-		":-!", 
-		":-/", 
-		":-[", 
+	$texts =  array(
+		'<3',
+		'</3',
+		'<\\3',
+		':-)',
+		';-)',
+		':-(',
+		':-P',
+		':-p',
+		':-"',
+		':-"',
+		':-x',
+		':-X',
+		':-D',
+		'8-|',
+		'8-O',
+		':-O',
+		'\\o/',
+		'o.O',
+		'O.o',
+		'o_O',
+		'O_o',
+		":'(",
+		":-!",
+		":-/",
+		":-[",
 		"8-)",
-		':beer', 
-		':homebrew', 
-		':coffee', 
+		':beer',
+		':homebrew',
+		':coffee',
 		':facepalm',
 		':like',
 		':dislike',
@@ -1129,7 +1129,7 @@ function smilies($s, $sample = false) {
 		':-D',
 		'8-|',
 		'8-O',
-		':-O',                
+		':-O',
 		'\\o/',
 		'o.O',
 		'O.o',
@@ -1182,7 +1182,7 @@ function smile_decode($m) {
 
 /**
  * expand <3333 to the correct number of hearts
- * 
+ *
  * @param string $x
  * @return string
  */
@@ -1201,7 +1201,7 @@ function preg_heart($x) {
 if(! function_exists('day_translate')) {
 /**
  * Translate days and months names
- * 
+ *
  * @param string $s
  * @return string
  */
@@ -1221,7 +1221,7 @@ function day_translate($s) {
 if(! function_exists('normalise_link')) {
 /**
  * Normalize url
- * 
+ *
  * @param string $url
  * @return string
  */
@@ -1235,15 +1235,15 @@ function normalise_link($url) {
 if(! function_exists('link_compare')) {
 /**
  * Compare two URLs to see if they are the same, but ignore
- * slight but hopefully insignificant differences such as if one 
- * is https and the other isn't, or if one is www.something and 
+ * slight but hopefully insignificant differences such as if one
+ * is https and the other isn't, or if one is www.something and
  * the other isn't - and also ignore case differences.
  *
  * @param string $a first url
  * @param string $b second url
  * @return boolean True if the URLs match, otherwise False
  *
- */	
+ */
 function link_compare($a,$b) {
 	if(strcasecmp(normalise_link($a),normalise_link($b)) === 0)
 		return true;
@@ -1254,7 +1254,7 @@ function link_compare($a,$b) {
 if(! function_exists('redir_private_images')) {
 /**
  * Find any non-embedded images in private items and add redir links to them
- * 
+ *
  * @param App $a
  * @param array $item
  */
@@ -1286,7 +1286,7 @@ if(! function_exists('prepare_body')) {
 /**
  * Given an item array, convert the body element from bbcode to html and add smilie icons.
  * If attach is true, also add icons for item attachments
- * 
+ *
  * @param array $item
  * @param boolean $attach
  * @return string item body html
@@ -1471,6 +1471,13 @@ function prepare_body(&$item,$attach = false, $preview = false) {
 		$s = substr($s, 0, $pos).$authorreplace.substr($s, $pos+strlen($authorsearch));
 	}
 
+    // replace friendica image url size with theme preference
+    if (x($a->theme_info,'item_image_size')){
+        $ps = $a->theme_info['item_image_size'];
+
+        $s = preg_replace('|(]+src="[^"]+/photo/[0-9a-f]+)-[0-9]|',"$1-".$ps, $s);
+    }
+
 	$prep_arr = array('item' => $item, 'html' => $s);
 	call_hooks('prepare_body_final', $prep_arr);
 
@@ -1481,7 +1488,7 @@ function prepare_body(&$item,$attach = false, $preview = false) {
 if(! function_exists('prepare_text')) {
 /**
  * Given a text string, convert from bbcode to html and add smilie icons.
- * 
+ *
  * @param string $text
  * @return string
  */
@@ -1501,10 +1508,10 @@ function prepare_text($text) {
 
 /**
  * return array with details for categories and folders for an item
- * 
+ *
  * @param array $item
  * @return array
- * 
+ *
   * [
  *      [ // categories array
  *          {
@@ -1522,7 +1529,7 @@ function prepare_text($text) {
  *               'first': 'is the first in this array? true/false',
  *               'last': 'is the last in this array? true/false',
  *           } ,
- *           ....       
+ *           ....
  *       ]
  *  ]
  */
@@ -1547,7 +1554,7 @@ function get_cats_and_terms($item) {
         }
     }
     if (count($categories)) $categories[count($categories)-1]['last'] = true;
-    
+
 
 	if(local_user() == $item['uid']) {
 	    $matches = false; $first = true;
@@ -1612,10 +1619,10 @@ function feed_salmonlinks($nick) {
 
 	$salmon  = '' . "\n" ;
 
-	// old style links that status.net still needed as of 12/2010 
+	// old style links that status.net still needed as of 12/2010
 
-	$salmon .= '  ' . "\n" ; 
-	$salmon .= '  ' . "\n" ; 
+	$salmon .= '  ' . "\n" ;
+	$salmon .= '  ' . "\n" ;
 	return $salmon;
 }}
 
@@ -1670,17 +1677,17 @@ if(! function_exists('lang_selector')) {
 /**
  * get html for language selector
  * @global string $lang
- * @return string 
+ * @return string
  * @template lang_selector.tpl
  */
 function lang_selector() {
 	global $lang;
-	
+
 	$langs = glob('view/*/strings.php');
-	
+
 	$lang_options = array();
 	$selected = "";
-	
+
 	if(is_array($langs) && count($langs)) {
 		$langs[] = '';
 		if(! in_array('view/en/strings.php',$langs))
@@ -1698,11 +1705,11 @@ function lang_selector() {
 		}
 	}
 
-	$tpl = get_markup_template("lang_selector.tpl");	
+	$tpl = get_markup_template("lang_selector.tpl");
 	$o = replace_macros($tpl, array(
 		'$title' => t('Select an alternate language'),
 		'$langs' => array($lang_options, $selected),
-		
+
 	));
 	return $o;
 }}
@@ -1790,7 +1797,7 @@ function base64url_decode($s) {
 if (!function_exists('str_getcsv')) {
 	/**
 	 * Parse csv string
-	 * 
+	 *
 	 * @param string $input
 	 * @param string $delimiter
 	 * @param string $enclosure
@@ -1835,13 +1842,13 @@ if (!function_exists('str_getcsv')) {
                         }
                     } else {
                         $line = preg_split("/".$delimiter."/",$line);
-   
+
                         /*
                          * Validating against pesky extra line breaks creating false rows.
                          */
                         if (is_array($line) && !empty($line[0])) {
                             $output[$line_num] = $line;
-                        } 
+                        }
                     }
                 }
                 return $output;
@@ -1852,7 +1859,7 @@ if (!function_exists('str_getcsv')) {
             return false;
         }
     }
-} 
+}
 
 /**
  * return div element with class 'clear'
@@ -1876,7 +1883,7 @@ function bb_translate_video($s) {
 				$s = str_replace($mtch[0],'[vimeo]' . $mtch[1] . '[/vimeo]',$s);
 		}
 	}
-	return $s;	
+	return $s;
 }
 
 function html2bb_video($s) {
@@ -1907,7 +1914,7 @@ function array_xmlify($val){
 
 /**
  * transorm link href and img src from relative to absolute
- * 
+ *
  * @param string $text
  * @param string $base base url
  * @return string
@@ -1920,7 +1927,7 @@ function reltoabs($text, $base)
   $base = rtrim($base,'/');
 
   $base2 = $base . "/";
- 	
+
   // Replace links
   $pattern = "/]*) href=\"(?!http|https|\/)([^\"]*)\"/";
   $replace = "','[',']'),array('%3c','%3e','%5b','%5d'),$s);
diff --git a/mod/photo.php b/mod/photo.php
index 434193f713..7783b6a256 100644
--- a/mod/photo.php
+++ b/mod/photo.php
@@ -101,7 +101,8 @@ function photo_init(&$a) {
 			$photo = substr($photo,0,-2);
 		}
 
-		$r = q("SELECT `uid` FROM `photo` WHERE `resource-id` = '%s' AND `scale` = %d LIMIT 1",
+        // check if the photo exists and get the owner of the photo
+		$r = q("SELECT `uid` FROM `photo` WHERE `resource-id` = '%s' LIMIT 1",
 			dbesc($photo),
 			intval($resolution)
 		);
@@ -111,7 +112,7 @@ function photo_init(&$a) {
 
 			// Now we'll see if we can access the photo
 
-			$r = q("SELECT * FROM `photo` WHERE `resource-id` = '%s' AND `scale` = %d $sql_extra LIMIT 1",
+			$r = q("SELECT * FROM `photo` WHERE `resource-id` = '%s' AND `scale` <= %d $sql_extra ORDER BY scale DESC LIMIT 1",
 				dbesc($photo),
 				intval($resolution)
 			);
@@ -119,28 +120,16 @@ function photo_init(&$a) {
 			$public = ($r[0]['allow_cid'] == '') AND ($r[0]['allow_gid'] == '') AND ($r[0]['deny_cid']  == '') AND ($r[0]['deny_gid']  == '');
 
 			if(count($r)) {
+                $resolution = $r[0]['scale'];
 				$data = $r[0]['data'];
 				$mimetype = $r[0]['type'];
 			}
 			else {
-
-				// Does the picture exist? It may be a remote person with no credentials,
-				// but who should otherwise be able to view it. Show a default image to let 
-				// them know permissions was denied. It may be possible to view the image 
-				// through an authenticated profile visit.
-				// There won't be many completely unauthorised people seeing this because
-				// they won't have the photo link, so there's a reasonable chance that the person
-				// might be able to obtain permission to view it.
- 
-				$r = q("SELECT * FROM `photo` WHERE `resource-id` = '%s' AND `scale` = %d LIMIT 1",
-					dbesc($photo),
-					intval($resolution)
-				);
-				if(count($r)) {
-					$data = file_get_contents('images/nosign.jpg');
-					$mimetype = 'image/jpeg';
-					$prvcachecontrol = true;
-				}
+                // The picure exists. We already checked with the first query.
+                // obviously, this is not an authorized viev!
+                $data = file_get_contents('images/nosign.jpg');
+                $mimetype = 'image/jpeg';
+                $prvcachecontrol = true;
 			}
 		}
 	}

From 32278e6fe259b15e591f7ae1f2bfa364f73aa46f Mon Sep 17 00:00:00 2001
From: Tobias Diekershoff 
Date: Thu, 7 Aug 2014 08:46:29 +0200
Subject: [PATCH 2/5] revup

---
 boot.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/boot.php b/boot.php
index 7fb7fba7d1..76eb8fa738 100644
--- a/boot.php
+++ b/boot.php
@@ -12,7 +12,7 @@ require_once('library/Mobile_Detect/Mobile_Detect.php');
 require_once('include/features.php');
 
 define ( 'FRIENDICA_PLATFORM',     'Friendica');
-define ( 'FRIENDICA_VERSION',      '3.2.1751' );
+define ( 'FRIENDICA_VERSION',      '3.2.1752' );
 define ( 'DFRN_PROTOCOL_VERSION',  '2.23'    );
 define ( 'DB_UPDATE_VERSION',      1170      );
 define ( 'EOL',                    "
\r\n" ); From 9026810496d64290ab7926345f7fae9b82d07987 Mon Sep 17 00:00:00 2001 From: Beanow Date: Sun, 10 Aug 2014 12:45:34 +0200 Subject: [PATCH 3/5] Added noscrape feature. --- mod/admin.php | 7 +++-- mod/friendica.php | 6 ++++- mod/noscrape.php | 51 +++++++++++++++++++++++++++++++++++ view/templates/admin_site.tpl | 1 + 4 files changed, 62 insertions(+), 3 deletions(-) create mode 100644 mod/noscrape.php diff --git a/mod/admin.php b/mod/admin.php index 3b22811d14..265397a20f 100644 --- a/mod/admin.php +++ b/mod/admin.php @@ -360,6 +360,7 @@ function admin_page_site_post(&$a){ $temppath = ((x($_POST,'temppath')) ? notags(trim($_POST['temppath'])) : ''); $basepath = ((x($_POST,'basepath')) ? notags(trim($_POST['basepath'])) : ''); $singleuser = ((x($_POST,'singleuser')) ? notags(trim($_POST['singleuser'])) : ''); + $enable_noscrape = ((x($_POST,'enable_noscrape')) ? true : false); if($ssl_policy != intval(get_config('system','ssl_policy'))) { if($ssl_policy == SSL_POLICY_FULL) { q("update `contact` set @@ -483,6 +484,7 @@ function admin_page_site_post(&$a){ set_config('system','lockpath', $lockpath); set_config('system','temppath', $temppath); set_config('system','basepath', $basepath); + set_config('system','enable_noscrape', $enable_noscrape); info( t('Site settings updated.') . EOL); goaway($a->get_baseurl(true) . '/admin/site' ); @@ -643,8 +645,9 @@ function admin_page_site(&$a) { '$basepath' => array('basepath', t("Base path to installation"), get_config('system','basepath'), "If the system cannot detect the correct path to your installation, enter the correct path here. This setting should only be set if you are using a restricted system and symbolic links to your webroot."), '$relocate_url' => array('relocate_url', t("New base url"), $a->get_baseurl(), "Change base url for this server. Sends relocate message to all DFRN contacts of all users."), - - '$form_security_token' => get_form_security_token("admin_site"), + + '$enable_noscrape'=> array('enable_noscrape', t("Enable noscrape"), get_config('system','enable_noscrape'), t("The noscrape feature speeds up directory submissions by using JSON data instead of HTML scraping.")), + '$form_security_token' => get_form_security_token("admin_site") )); diff --git a/mod/friendica.php b/mod/friendica.php index b0d3892de8..47d815dea9 100644 --- a/mod/friendica.php +++ b/mod/friendica.php @@ -37,8 +37,12 @@ function friendica_init(&$a) { 'admin' => $admin, 'site_name' => $a->config['sitename'], 'platform' => FRIENDICA_PLATFORM, - 'info' => ((x($a->config,'info')) ? $a->config['info'] : '') + 'info' => ((x($a->config,'info')) ? $a->config['info'] : ''), ); + + //Enable noscrape? + if(!!get_config('system','enable_noscrape')) + $data['no_scrape_url'] = $a->get_baseurl().'/noscrape'; echo json_encode($data); killme(); diff --git a/mod/noscrape.php b/mod/noscrape.php new file mode 100644 index 0000000000..41ccc30adc --- /dev/null +++ b/mod/noscrape.php @@ -0,0 +1,51 @@ +argc > 1) + $which = $a->argv[1]; + else + killme(); + + $profile = 0; + if((local_user()) && ($a->argc > 2) && ($a->argv[2] === 'view')) { + $which = $a->user['nickname']; + $profile = $a->argv[1]; + } + + profile_load($a,$which,$profile); + + if(!$a->profile['net-publish']) + killme(); + + $keywords = ((x($a->profile,'pub_keywords')) ? $a->profile['pub_keywords'] : ''); + $keywords = str_replace(array('#',',',' ',',,'),array('',' ',',',','),$keywords); + $keywords = explode(',', $keywords); + + $json_info = array( + 'fn' => $a->profile['name'], + 'key' => $a->profile['pubkey'], + 'homepage' => $a->get_baseurl()."/profile/{$which}", + 'comm' => (x($a->profile,'page-flags')) && ($a->profile['page-flags'] == PAGE_COMMUNITY), + 'photo' => $a->profile['photo'], + 'tags' => $keywords + ); + + //These are optional fields. + $profile_fields = array('pdesc', 'locality', 'region', 'postal-code', 'country-name', 'gender', 'marital'); + foreach($profile_fields as $field) + if(!empty($a->profile[$field])) $json_info["$field"] = $a->profile[$field]; + + $dfrn_pages = array('request', 'confirm', 'notify', 'poll'); + foreach($dfrn_pages as $dfrn) + $json_info["dfrn-{$dfrn}"] = $a->get_baseurl()."/dfrn_{$dfrn}/{$which}"; + + //Output all the JSON! + header('Content-type: application/json; charset=utf-8'); + echo json_encode($json_info); + exit; + +} \ No newline at end of file diff --git a/view/templates/admin_site.tpl b/view/templates/admin_site.tpl index 835b027fe8..36b0f6c358 100644 --- a/view/templates/admin_site.tpl +++ b/view/templates/admin_site.tpl @@ -108,6 +108,7 @@ {{include file="field_checkbox.tpl" field=$suppress_language}}

{{$performance}}

+ {{include file="field_checkbox.tpl" field=$enable_noscrape}} {{include file="field_checkbox.tpl" field=$use_fulltext_engine}} {{include file="field_input.tpl" field=$itemcache}} {{include file="field_input.tpl" field=$itemcache_duration}} From 1adb31e0f0ce74e299a809db555b9f503bc8ece6 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Sun, 10 Aug 2014 15:15:31 +0200 Subject: [PATCH 4/5] revup and regenerating the message.po --- boot.php | 2 +- util/messages.po | 11053 +++++++++++++++++++++++---------------------- 2 files changed, 5580 insertions(+), 5475 deletions(-) diff --git a/boot.php b/boot.php index 76eb8fa738..8c1054e642 100644 --- a/boot.php +++ b/boot.php @@ -12,7 +12,7 @@ require_once('library/Mobile_Detect/Mobile_Detect.php'); require_once('include/features.php'); define ( 'FRIENDICA_PLATFORM', 'Friendica'); -define ( 'FRIENDICA_VERSION', '3.2.1752' ); +define ( 'FRIENDICA_VERSION', '3.2.1753' ); define ( 'DFRN_PROTOCOL_VERSION', '2.23' ); define ( 'DB_UPDATE_VERSION', 1170 ); define ( 'EOL', "
\r\n" ); diff --git a/util/messages.po b/util/messages.po index 3ff2233ad7..a3bac62078 100644 --- a/util/messages.po +++ b/util/messages.po @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: 3.2.1751\n" +"Project-Id-Version: 3.2.1752\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-06-22 11:13+0200\n" +"POT-Creation-Date: 2014-08-10 15:13+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -18,501 +18,1278 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" -#: ../../mod/contacts.php:104 -#, php-format -msgid "%d contact edited." -msgid_plural "%d contacts edited" -msgstr[0] "" -msgstr[1] "" - -#: ../../mod/contacts.php:135 ../../mod/contacts.php:264 -msgid "Could not access contact record." -msgstr "" - -#: ../../mod/contacts.php:149 -msgid "Could not locate selected profile." -msgstr "" - -#: ../../mod/contacts.php:178 -msgid "Contact updated." -msgstr "" - -#: ../../mod/contacts.php:180 ../../mod/dfrn_request.php:571 -msgid "Failed to update contact record." -msgstr "" - -#: ../../mod/contacts.php:246 ../../mod/manage.php:96 -#: ../../mod/display.php:266 ../../mod/profile_photo.php:19 -#: ../../mod/profile_photo.php:169 ../../mod/profile_photo.php:180 -#: ../../mod/profile_photo.php:193 ../../mod/follow.php:9 -#: ../../mod/item.php:145 ../../mod/item.php:161 ../../mod/group.php:19 -#: ../../mod/dfrn_confirm.php:53 ../../mod/fsuggest.php:78 -#: ../../mod/wall_upload.php:66 ../../mod/viewcontacts.php:22 -#: ../../mod/notifications.php:66 ../../mod/message.php:38 -#: ../../mod/message.php:174 ../../mod/crepair.php:117 -#: ../../mod/nogroup.php:25 ../../mod/network.php:4 ../../mod/allfriends.php:9 -#: ../../mod/events.php:140 ../../mod/install.php:151 -#: ../../mod/wallmessage.php:9 ../../mod/wallmessage.php:33 -#: ../../mod/wallmessage.php:79 ../../mod/wallmessage.php:103 -#: ../../mod/wall_attach.php:55 ../../mod/settings.php:102 -#: ../../mod/settings.php:591 ../../mod/settings.php:596 -#: ../../mod/register.php:41 ../../mod/delegate.php:6 ../../mod/mood.php:114 -#: ../../mod/suggest.php:56 ../../mod/profiles.php:146 -#: ../../mod/profiles.php:575 ../../mod/editpost.php:10 ../../mod/api.php:26 -#: ../../mod/api.php:31 ../../mod/notes.php:20 ../../mod/poke.php:135 -#: ../../mod/invite.php:15 ../../mod/invite.php:101 ../../mod/photos.php:134 -#: ../../mod/photos.php:1048 ../../mod/regmod.php:118 ../../mod/uimport.php:23 -#: ../../mod/attach.php:33 ../../include/items.php:4407 ../../index.php:360 -msgid "Permission denied." -msgstr "" - -#: ../../mod/contacts.php:278 -msgid "Contact has been blocked" -msgstr "" - -#: ../../mod/contacts.php:278 -msgid "Contact has been unblocked" -msgstr "" - -#: ../../mod/contacts.php:288 -msgid "Contact has been ignored" -msgstr "" - -#: ../../mod/contacts.php:288 -msgid "Contact has been unignored" -msgstr "" - -#: ../../mod/contacts.php:299 -msgid "Contact has been archived" -msgstr "" - -#: ../../mod/contacts.php:299 -msgid "Contact has been unarchived" -msgstr "" - -#: ../../mod/contacts.php:324 ../../mod/contacts.php:697 -msgid "Do you really want to delete this contact?" -msgstr "" - -#: ../../mod/contacts.php:326 ../../mod/message.php:209 -#: ../../mod/settings.php:1001 ../../mod/settings.php:1007 -#: ../../mod/settings.php:1015 ../../mod/settings.php:1019 -#: ../../mod/settings.php:1024 ../../mod/settings.php:1030 -#: ../../mod/settings.php:1036 ../../mod/settings.php:1042 -#: ../../mod/settings.php:1072 ../../mod/settings.php:1073 -#: ../../mod/settings.php:1074 ../../mod/settings.php:1075 -#: ../../mod/settings.php:1076 ../../mod/dfrn_request.php:836 -#: ../../mod/register.php:243 ../../mod/suggest.php:29 -#: ../../mod/profiles.php:614 ../../mod/api.php:105 -#: ../../include/items.php:4252 -msgid "Yes" -msgstr "" - -#: ../../mod/contacts.php:329 ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 -#: ../../mod/message.php:212 ../../mod/fbrowser.php:81 -#: ../../mod/fbrowser.php:116 ../../mod/settings.php:610 -#: ../../mod/settings.php:636 ../../mod/dfrn_request.php:848 -#: ../../mod/suggest.php:32 ../../mod/editpost.php:148 -#: ../../mod/photos.php:203 ../../mod/photos.php:292 -#: ../../include/conversation.php:1127 ../../include/items.php:4255 -msgid "Cancel" -msgstr "" - -#: ../../mod/contacts.php:341 -msgid "Contact has been removed." -msgstr "" - -#: ../../mod/contacts.php:379 -#, php-format -msgid "You are mutual friends with %s" -msgstr "" - -#: ../../mod/contacts.php:383 -#, php-format -msgid "You are sharing with %s" -msgstr "" - -#: ../../mod/contacts.php:388 -#, php-format -msgid "%s is sharing with you" -msgstr "" - -#: ../../mod/contacts.php:405 -msgid "Private communications are not available for this contact." -msgstr "" - -#: ../../mod/contacts.php:408 ../../mod/admin.php:533 -msgid "Never" -msgstr "" - -#: ../../mod/contacts.php:412 -msgid "(Update was successful)" -msgstr "" - -#: ../../mod/contacts.php:412 -msgid "(Update was not successful)" -msgstr "" - -#: ../../mod/contacts.php:414 -msgid "Suggest friends" -msgstr "" - -#: ../../mod/contacts.php:418 -#, php-format -msgid "Network type: %s" -msgstr "" - -#: ../../mod/contacts.php:421 ../../include/contact_widgets.php:199 -#, php-format -msgid "%d contact in common" -msgid_plural "%d contacts in common" -msgstr[0] "" -msgstr[1] "" - -#: ../../mod/contacts.php:426 -msgid "View all contacts" -msgstr "" - -#: ../../mod/contacts.php:431 ../../mod/contacts.php:490 -#: ../../mod/contacts.php:700 ../../mod/admin.php:915 -msgid "Unblock" -msgstr "" - -#: ../../mod/contacts.php:431 ../../mod/contacts.php:490 -#: ../../mod/contacts.php:700 ../../mod/admin.php:914 -msgid "Block" -msgstr "" - -#: ../../mod/contacts.php:434 -msgid "Toggle Blocked status" -msgstr "" - -#: ../../mod/contacts.php:437 ../../mod/contacts.php:491 -#: ../../mod/contacts.php:701 -msgid "Unignore" -msgstr "" - -#: ../../mod/contacts.php:437 ../../mod/contacts.php:491 -#: ../../mod/contacts.php:701 ../../mod/notifications.php:51 -#: ../../mod/notifications.php:164 ../../mod/notifications.php:210 -msgid "Ignore" -msgstr "" - -#: ../../mod/contacts.php:440 -msgid "Toggle Ignored status" -msgstr "" - -#: ../../mod/contacts.php:444 ../../mod/contacts.php:702 -msgid "Unarchive" -msgstr "" - -#: ../../mod/contacts.php:444 ../../mod/contacts.php:702 -msgid "Archive" -msgstr "" - -#: ../../mod/contacts.php:447 -msgid "Toggle Archive status" -msgstr "" - -#: ../../mod/contacts.php:450 -msgid "Repair" -msgstr "" - -#: ../../mod/contacts.php:453 -msgid "Advanced Contact Settings" -msgstr "" - -#: ../../mod/contacts.php:459 -msgid "Communications lost with this contact!" -msgstr "" - -#: ../../mod/contacts.php:462 -msgid "Contact Editor" -msgstr "" - -#: ../../mod/contacts.php:464 ../../mod/manage.php:110 -#: ../../mod/fsuggest.php:107 ../../mod/message.php:335 -#: ../../mod/message.php:564 ../../mod/crepair.php:171 -#: ../../mod/events.php:478 ../../mod/content.php:709 -#: ../../mod/install.php:248 ../../mod/install.php:286 ../../mod/mood.php:137 -#: ../../mod/profiles.php:634 ../../mod/localtime.php:45 -#: ../../mod/poke.php:199 ../../mod/invite.php:140 ../../mod/photos.php:1082 -#: ../../mod/photos.php:1203 ../../mod/photos.php:1510 -#: ../../mod/photos.php:1561 ../../mod/photos.php:1605 -#: ../../mod/photos.php:1693 ../../object/Item.php:658 -#: ../../view/theme/cleanzero/config.php:80 -#: ../../view/theme/dispy/config.php:70 ../../view/theme/quattro/config.php:64 -#: ../../view/theme/diabook/config.php:148 -#: ../../view/theme/diabook/theme.php:633 ../../view/theme/vier/config.php:51 -msgid "Submit" -msgstr "" - -#: ../../mod/contacts.php:465 -msgid "Profile Visibility" -msgstr "" - -#: ../../mod/contacts.php:466 -#, php-format -msgid "" -"Please choose the profile you would like to display to %s when viewing your " -"profile securely." -msgstr "" - -#: ../../mod/contacts.php:467 -msgid "Contact Information / Notes" -msgstr "" - -#: ../../mod/contacts.php:468 -msgid "Edit contact notes" -msgstr "" - -#: ../../mod/contacts.php:473 ../../mod/contacts.php:665 -#: ../../mod/viewcontacts.php:62 ../../mod/nogroup.php:40 -#, php-format -msgid "Visit %s's profile [%s]" -msgstr "" - -#: ../../mod/contacts.php:474 -msgid "Block/Unblock contact" -msgstr "" - -#: ../../mod/contacts.php:475 -msgid "Ignore contact" -msgstr "" - -#: ../../mod/contacts.php:476 -msgid "Repair URL settings" -msgstr "" - -#: ../../mod/contacts.php:477 -msgid "View conversations" -msgstr "" - -#: ../../mod/contacts.php:479 -msgid "Delete contact" -msgstr "" - -#: ../../mod/contacts.php:483 -msgid "Last update:" -msgstr "" - -#: ../../mod/contacts.php:485 -msgid "Update public posts" -msgstr "" - -#: ../../mod/contacts.php:487 ../../mod/admin.php:1407 -msgid "Update now" -msgstr "" - -#: ../../mod/contacts.php:494 -msgid "Currently blocked" -msgstr "" - -#: ../../mod/contacts.php:495 -msgid "Currently ignored" -msgstr "" - -#: ../../mod/contacts.php:496 -msgid "Currently archived" -msgstr "" - -#: ../../mod/contacts.php:497 ../../mod/notifications.php:157 -#: ../../mod/notifications.php:204 -msgid "Hide this contact from others" -msgstr "" - -#: ../../mod/contacts.php:497 -msgid "" -"Replies/likes to your public posts may still be visible" -msgstr "" - -#: ../../mod/contacts.php:498 -msgid "Notification for new posts" -msgstr "" - -#: ../../mod/contacts.php:498 -msgid "Send a notification of every new post of this contact" -msgstr "" - -#: ../../mod/contacts.php:499 -msgid "Fetch further information for feeds" -msgstr "" - -#: ../../mod/contacts.php:550 -msgid "Suggestions" -msgstr "" - -#: ../../mod/contacts.php:553 -msgid "Suggest potential friends" -msgstr "" - -#: ../../mod/contacts.php:556 ../../mod/group.php:194 -msgid "All Contacts" -msgstr "" - -#: ../../mod/contacts.php:559 -msgid "Show all contacts" -msgstr "" - -#: ../../mod/contacts.php:562 -msgid "Unblocked" -msgstr "" - -#: ../../mod/contacts.php:565 -msgid "Only show unblocked contacts" -msgstr "" - -#: ../../mod/contacts.php:569 -msgid "Blocked" -msgstr "" - -#: ../../mod/contacts.php:572 -msgid "Only show blocked contacts" -msgstr "" - -#: ../../mod/contacts.php:576 -msgid "Ignored" -msgstr "" - -#: ../../mod/contacts.php:579 -msgid "Only show ignored contacts" -msgstr "" - -#: ../../mod/contacts.php:583 -msgid "Archived" -msgstr "" - -#: ../../mod/contacts.php:586 -msgid "Only show archived contacts" -msgstr "" - -#: ../../mod/contacts.php:590 -msgid "Hidden" -msgstr "" - -#: ../../mod/contacts.php:593 -msgid "Only show hidden contacts" -msgstr "" - -#: ../../mod/contacts.php:641 -msgid "Mutual Friendship" -msgstr "" - -#: ../../mod/contacts.php:645 -msgid "is a fan of yours" -msgstr "" - -#: ../../mod/contacts.php:649 -msgid "you are a fan of" -msgstr "" - -#: ../../mod/contacts.php:666 ../../mod/nogroup.php:41 -msgid "Edit contact" -msgstr "" - -#: ../../mod/contacts.php:688 ../../include/nav.php:173 -#: ../../view/theme/diabook/theme.php:125 -msgid "Contacts" -msgstr "" - -#: ../../mod/contacts.php:692 -msgid "Search your contacts" +#: ../../object/Item.php:92 +msgid "This entry was edited" msgstr "" -#: ../../mod/contacts.php:693 ../../mod/directory.php:59 -msgid "Finding: " +#: ../../object/Item.php:113 ../../mod/content.php:620 +#: ../../mod/photos.php:1357 +msgid "Private Message" msgstr "" -#: ../../mod/contacts.php:694 ../../mod/directory.php:61 -#: ../../include/contact_widgets.php:33 -msgid "Find" +#: ../../object/Item.php:117 ../../mod/editpost.php:109 +#: ../../mod/content.php:728 ../../mod/settings.php:673 +msgid "Edit" msgstr "" -#: ../../mod/contacts.php:699 ../../mod/settings.php:132 -#: ../../mod/settings.php:635 -msgid "Update" +#: ../../object/Item.php:126 ../../mod/content.php:437 +#: ../../mod/content.php:740 ../../mod/photos.php:1651 +#: ../../include/conversation.php:612 +msgid "Select" msgstr "" -#: ../../mod/contacts.php:703 ../../mod/group.php:171 ../../mod/admin.php:913 -#: ../../mod/content.php:438 ../../mod/content.php:740 -#: ../../mod/settings.php:672 ../../mod/photos.php:1650 -#: ../../object/Item.php:127 ../../include/conversation.php:613 +#: ../../object/Item.php:127 ../../mod/admin.php:922 ../../mod/content.php:438 +#: ../../mod/content.php:741 ../../mod/contacts.php:703 +#: ../../mod/settings.php:674 ../../mod/group.php:171 +#: ../../mod/photos.php:1652 ../../include/conversation.php:613 msgid "Delete" msgstr "" -#: ../../mod/hcard.php:10 -msgid "No profile" +#: ../../object/Item.php:130 ../../mod/content.php:763 +msgid "save to folder" msgstr "" -#: ../../mod/manage.php:106 -msgid "Manage Identities and/or Pages" +#: ../../object/Item.php:192 ../../mod/content.php:753 +msgid "add star" msgstr "" -#: ../../mod/manage.php:107 -msgid "" -"Toggle between different identities or community/group pages which share " -"your account details or which you have been granted \"manage\" permissions" +#: ../../object/Item.php:193 ../../mod/content.php:754 +msgid "remove star" msgstr "" -#: ../../mod/manage.php:108 -msgid "Select an identity to manage: " +#: ../../object/Item.php:194 ../../mod/content.php:755 +msgid "toggle star status" msgstr "" -#: ../../mod/oexchange.php:25 -msgid "Post successful." +#: ../../object/Item.php:197 ../../mod/content.php:758 +msgid "starred" msgstr "" -#: ../../mod/profperm.php:19 ../../mod/group.php:72 ../../index.php:359 +#: ../../object/Item.php:202 ../../mod/content.php:759 +msgid "add tag" +msgstr "" + +#: ../../object/Item.php:213 ../../mod/content.php:684 +#: ../../mod/photos.php:1540 +msgid "I like this (toggle)" +msgstr "" + +#: ../../object/Item.php:213 ../../mod/content.php:684 +msgid "like" +msgstr "" + +#: ../../object/Item.php:214 ../../mod/content.php:685 +#: ../../mod/photos.php:1541 +msgid "I don't like this (toggle)" +msgstr "" + +#: ../../object/Item.php:214 ../../mod/content.php:685 +msgid "dislike" +msgstr "" + +#: ../../object/Item.php:216 ../../mod/content.php:687 +msgid "Share this" +msgstr "" + +#: ../../object/Item.php:216 ../../mod/content.php:687 +msgid "share" +msgstr "" + +#: ../../object/Item.php:298 ../../include/conversation.php:665 +msgid "Categories:" +msgstr "" + +#: ../../object/Item.php:299 ../../include/conversation.php:666 +msgid "Filed under:" +msgstr "" + +#: ../../object/Item.php:308 ../../object/Item.php:309 +#: ../../mod/content.php:471 ../../mod/content.php:852 +#: ../../mod/content.php:853 ../../include/conversation.php:653 +#, php-format +msgid "View %s's profile @ %s" +msgstr "" + +#: ../../object/Item.php:310 ../../mod/content.php:854 +msgid "to" +msgstr "" + +#: ../../object/Item.php:311 +msgid "via" +msgstr "" + +#: ../../object/Item.php:312 ../../mod/content.php:855 +msgid "Wall-to-Wall" +msgstr "" + +#: ../../object/Item.php:313 ../../mod/content.php:856 +msgid "via Wall-To-Wall:" +msgstr "" + +#: ../../object/Item.php:322 ../../mod/content.php:481 +#: ../../mod/content.php:864 ../../include/conversation.php:673 +#, php-format +msgid "%s from %s" +msgstr "" + +#: ../../object/Item.php:342 ../../object/Item.php:658 ../../boot.php:713 +#: ../../mod/content.php:709 ../../mod/photos.php:1562 +#: ../../mod/photos.php:1606 ../../mod/photos.php:1694 +msgid "Comment" +msgstr "" + +#: ../../object/Item.php:345 ../../mod/wallmessage.php:156 +#: ../../mod/editpost.php:124 ../../mod/content.php:499 +#: ../../mod/content.php:883 ../../mod/message.php:334 +#: ../../mod/message.php:565 ../../mod/photos.php:1543 +#: ../../include/conversation.php:691 ../../include/conversation.php:1108 +msgid "Please wait" +msgstr "" + +#: ../../object/Item.php:368 ../../mod/content.php:603 +#, php-format +msgid "%d comment" +msgid_plural "%d comments" +msgstr[0] "" +msgstr[1] "" + +#: ../../object/Item.php:370 ../../object/Item.php:383 +#: ../../mod/content.php:605 ../../include/text.php:1968 +msgid "comment" +msgid_plural "comments" +msgstr[0] "" +msgstr[1] "" + +#: ../../object/Item.php:371 ../../boot.php:714 ../../mod/content.php:606 +#: ../../include/contact_widgets.php:204 +msgid "show more" +msgstr "" + +#: ../../object/Item.php:656 ../../mod/content.php:707 +#: ../../mod/photos.php:1560 ../../mod/photos.php:1604 +#: ../../mod/photos.php:1692 +msgid "This is you" +msgstr "" + +#: ../../object/Item.php:659 ../../view/theme/perihel/config.php:95 +#: ../../view/theme/diabook/theme.php:633 +#: ../../view/theme/diabook/config.php:148 +#: ../../view/theme/quattro/config.php:64 ../../view/theme/dispy/config.php:70 +#: ../../view/theme/clean/config.php:79 +#: ../../view/theme/_clean_repo/config.php:79 +#: ../../view/theme/cleanzero/config.php:80 +#: ../../view/theme/vier/config.php:51 +#: ../../view/theme/vier-mobil/config.php:47 ../../mod/mood.php:137 +#: ../../mod/install.php:248 ../../mod/install.php:286 +#: ../../mod/crepair.php:171 ../../mod/content.php:710 +#: ../../mod/contacts.php:464 ../../mod/profiles.php:642 +#: ../../mod/message.php:335 ../../mod/message.php:564 +#: ../../mod/localtime.php:45 ../../mod/photos.php:1084 +#: ../../mod/photos.php:1205 ../../mod/photos.php:1512 +#: ../../mod/photos.php:1563 ../../mod/photos.php:1607 +#: ../../mod/photos.php:1695 ../../mod/poke.php:199 ../../mod/events.php:478 +#: ../../mod/fsuggest.php:107 ../../mod/invite.php:140 +#: ../../mod/manage.php:110 +msgid "Submit" +msgstr "" + +#: ../../object/Item.php:660 ../../mod/content.php:711 +msgid "Bold" +msgstr "" + +#: ../../object/Item.php:661 ../../mod/content.php:712 +msgid "Italic" +msgstr "" + +#: ../../object/Item.php:662 ../../mod/content.php:713 +msgid "Underline" +msgstr "" + +#: ../../object/Item.php:663 ../../mod/content.php:714 +msgid "Quote" +msgstr "" + +#: ../../object/Item.php:664 ../../mod/content.php:715 +msgid "Code" +msgstr "" + +#: ../../object/Item.php:665 ../../mod/content.php:716 +msgid "Image" +msgstr "" + +#: ../../object/Item.php:666 ../../mod/content.php:717 +msgid "Link" +msgstr "" + +#: ../../object/Item.php:667 ../../mod/content.php:718 +msgid "Video" +msgstr "" + +#: ../../object/Item.php:668 ../../mod/editpost.php:145 +#: ../../mod/content.php:719 ../../mod/photos.php:1564 +#: ../../mod/photos.php:1608 ../../mod/photos.php:1696 +#: ../../include/conversation.php:1125 +msgid "Preview" +msgstr "" + +#: ../../index.php:203 ../../mod/apps.php:7 +msgid "You must be logged in to use addons. " +msgstr "" + +#: ../../index.php:247 ../../mod/help.php:90 +msgid "Not Found" +msgstr "" + +#: ../../index.php:250 ../../mod/help.php:93 +msgid "Page not found." +msgstr "" + +#: ../../index.php:359 ../../mod/group.php:72 ../../mod/profperm.php:19 msgid "Permission denied" msgstr "" -#: ../../mod/profperm.php:25 ../../mod/profperm.php:55 -msgid "Invalid profile identifier." +#: ../../index.php:360 ../../mod/mood.php:114 ../../mod/display.php:319 +#: ../../mod/register.php:41 ../../mod/dfrn_confirm.php:53 +#: ../../mod/api.php:26 ../../mod/api.php:31 ../../mod/wallmessage.php:9 +#: ../../mod/wallmessage.php:33 ../../mod/wallmessage.php:79 +#: ../../mod/wallmessage.php:103 ../../mod/suggest.php:56 +#: ../../mod/network.php:4 ../../mod/install.php:151 ../../mod/editpost.php:10 +#: ../../mod/attach.php:33 ../../mod/regmod.php:118 ../../mod/crepair.php:117 +#: ../../mod/uimport.php:23 ../../mod/notes.php:20 ../../mod/contacts.php:246 +#: ../../mod/settings.php:102 ../../mod/settings.php:593 +#: ../../mod/settings.php:598 ../../mod/profiles.php:146 +#: ../../mod/profiles.php:575 ../../mod/group.php:19 ../../mod/follow.php:9 +#: ../../mod/message.php:38 ../../mod/message.php:174 +#: ../../mod/viewcontacts.php:22 ../../mod/photos.php:134 +#: ../../mod/photos.php:1050 ../../mod/wall_attach.php:55 +#: ../../mod/poke.php:135 ../../mod/wall_upload.php:66 +#: ../../mod/profile_photo.php:19 ../../mod/profile_photo.php:169 +#: ../../mod/profile_photo.php:180 ../../mod/profile_photo.php:193 +#: ../../mod/events.php:140 ../../mod/delegate.php:6 ../../mod/nogroup.php:25 +#: ../../mod/fsuggest.php:78 ../../mod/item.php:148 ../../mod/item.php:164 +#: ../../mod/notifications.php:66 ../../mod/invite.php:15 +#: ../../mod/invite.php:101 ../../mod/manage.php:96 ../../mod/allfriends.php:9 +#: ../../include/items.php:4496 +msgid "Permission denied." msgstr "" -#: ../../mod/profperm.php:101 -msgid "Profile Visibility Editor" +#: ../../index.php:419 +msgid "toggle mobile" msgstr "" -#: ../../mod/profperm.php:103 ../../mod/newmember.php:32 ../../boot.php:1992 -#: ../../include/profile_advanced.php:7 ../../include/profile_advanced.php:84 -#: ../../include/nav.php:77 ../../view/theme/diabook/theme.php:124 +#: ../../view/theme/perihel/theme.php:33 +#: ../../view/theme/diabook/theme.php:123 ../../mod/notifications.php:93 +#: ../../include/nav.php:105 ../../include/nav.php:146 +msgid "Home" +msgstr "" + +#: ../../view/theme/perihel/theme.php:33 +#: ../../view/theme/diabook/theme.php:123 ../../include/nav.php:76 +#: ../../include/nav.php:146 +msgid "Your posts and conversations" +msgstr "" + +#: ../../view/theme/perihel/theme.php:34 +#: ../../view/theme/diabook/theme.php:124 ../../boot.php:2021 +#: ../../mod/newmember.php:32 ../../mod/profperm.php:103 +#: ../../include/nav.php:77 ../../include/profile_advanced.php:7 +#: ../../include/profile_advanced.php:84 msgid "Profile" msgstr "" -#: ../../mod/profperm.php:105 ../../mod/group.php:224 -msgid "Click on a contact to add or remove." +#: ../../view/theme/perihel/theme.php:34 +#: ../../view/theme/diabook/theme.php:124 ../../include/nav.php:77 +msgid "Your profile page" msgstr "" -#: ../../mod/profperm.php:114 -msgid "Visible To" +#: ../../view/theme/perihel/theme.php:35 +#: ../../view/theme/diabook/theme.php:126 ../../boot.php:2028 +#: ../../mod/fbrowser.php:25 ../../include/nav.php:78 +msgid "Photos" msgstr "" -#: ../../mod/profperm.php:130 -msgid "All Contacts (with secure profile access)" +#: ../../view/theme/perihel/theme.php:35 +#: ../../view/theme/diabook/theme.php:126 ../../include/nav.php:78 +msgid "Your photos" msgstr "" -#: ../../mod/display.php:19 ../../mod/videos.php:115 -#: ../../mod/viewcontacts.php:17 ../../mod/community.php:18 -#: ../../mod/dfrn_request.php:761 ../../mod/search.php:89 -#: ../../mod/directory.php:31 ../../mod/photos.php:918 +#: ../../view/theme/perihel/theme.php:36 +#: ../../view/theme/diabook/theme.php:127 ../../boot.php:2045 +#: ../../mod/events.php:370 ../../include/nav.php:80 +msgid "Events" +msgstr "" + +#: ../../view/theme/perihel/theme.php:36 +#: ../../view/theme/diabook/theme.php:127 ../../include/nav.php:80 +msgid "Your events" +msgstr "" + +#: ../../view/theme/perihel/theme.php:37 +#: ../../view/theme/diabook/theme.php:128 ../../include/nav.php:81 +msgid "Personal notes" +msgstr "" + +#: ../../view/theme/perihel/theme.php:37 +#: ../../view/theme/diabook/theme.php:128 +msgid "Your personal photos" +msgstr "" + +#: ../../view/theme/perihel/theme.php:38 +#: ../../view/theme/diabook/theme.php:129 ../../mod/community.php:32 +#: ../../include/nav.php:129 +msgid "Community" +msgstr "" + +#: ../../view/theme/perihel/config.php:89 +#: ../../view/theme/diabook/theme.php:621 +#: ../../view/theme/diabook/config.php:142 ../../include/acl_selectors.php:328 +msgid "don't show" +msgstr "" + +#: ../../view/theme/perihel/config.php:89 +#: ../../view/theme/diabook/theme.php:621 +#: ../../view/theme/diabook/config.php:142 ../../include/acl_selectors.php:327 +msgid "show" +msgstr "" + +#: ../../view/theme/perihel/config.php:97 +#: ../../view/theme/diabook/config.php:150 +#: ../../view/theme/quattro/config.php:66 ../../view/theme/dispy/config.php:72 +#: ../../view/theme/clean/config.php:81 +#: ../../view/theme/_clean_repo/config.php:81 +#: ../../view/theme/cleanzero/config.php:82 +#: ../../view/theme/vier/config.php:53 +#: ../../view/theme/vier-mobil/config.php:49 +msgid "Theme settings" +msgstr "" + +#: ../../view/theme/perihel/config.php:98 +#: ../../view/theme/diabook/config.php:151 +#: ../../view/theme/dispy/config.php:73 +#: ../../view/theme/cleanzero/config.php:84 +msgid "Set font-size for posts and comments" +msgstr "" + +#: ../../view/theme/perihel/config.php:99 +#: ../../view/theme/diabook/config.php:152 +#: ../../view/theme/dispy/config.php:74 +msgid "Set line-height for posts and comments" +msgstr "" + +#: ../../view/theme/perihel/config.php:100 +#: ../../view/theme/diabook/config.php:153 +msgid "Set resolution for middle column" +msgstr "" + +#: ../../view/theme/diabook/theme.php:125 ../../mod/contacts.php:688 +#: ../../include/nav.php:175 +msgid "Contacts" +msgstr "" + +#: ../../view/theme/diabook/theme.php:125 +msgid "Your contacts" +msgstr "" + +#: ../../view/theme/diabook/theme.php:130 +#: ../../view/theme/diabook/theme.php:544 +#: ../../view/theme/diabook/theme.php:624 +#: ../../view/theme/diabook/config.php:158 +msgid "Community Pages" +msgstr "" + +#: ../../view/theme/diabook/theme.php:391 +#: ../../view/theme/diabook/theme.php:626 +#: ../../view/theme/diabook/config.php:160 +msgid "Community Profiles" +msgstr "" + +#: ../../view/theme/diabook/theme.php:412 +#: ../../view/theme/diabook/theme.php:630 +#: ../../view/theme/diabook/config.php:164 +msgid "Last users" +msgstr "" + +#: ../../view/theme/diabook/theme.php:441 +#: ../../view/theme/diabook/theme.php:632 +#: ../../view/theme/diabook/config.php:166 +msgid "Last likes" +msgstr "" + +#: ../../view/theme/diabook/theme.php:463 ../../include/conversation.php:118 +#: ../../include/conversation.php:246 ../../include/text.php:1962 +msgid "event" +msgstr "" + +#: ../../view/theme/diabook/theme.php:466 +#: ../../view/theme/diabook/theme.php:475 ../../mod/tagger.php:62 +#: ../../mod/like.php:149 ../../mod/like.php:319 ../../mod/subthread.php:87 +#: ../../include/conversation.php:121 ../../include/conversation.php:130 +#: ../../include/conversation.php:249 ../../include/conversation.php:258 +#: ../../include/diaspora.php:1920 +msgid "status" +msgstr "" + +#: ../../view/theme/diabook/theme.php:471 ../../mod/tagger.php:62 +#: ../../mod/like.php:149 ../../mod/subthread.php:87 +#: ../../include/conversation.php:126 ../../include/conversation.php:254 +#: ../../include/text.php:1964 ../../include/diaspora.php:1920 +msgid "photo" +msgstr "" + +#: ../../view/theme/diabook/theme.php:480 ../../mod/like.php:166 +#: ../../include/conversation.php:137 ../../include/diaspora.php:1936 +#, php-format +msgid "%1$s likes %2$s's %3$s" +msgstr "" + +#: ../../view/theme/diabook/theme.php:486 +#: ../../view/theme/diabook/theme.php:631 +#: ../../view/theme/diabook/config.php:165 +msgid "Last photos" +msgstr "" + +#: ../../view/theme/diabook/theme.php:499 ../../mod/photos.php:60 +#: ../../mod/photos.php:155 ../../mod/photos.php:1064 +#: ../../mod/photos.php:1189 ../../mod/photos.php:1212 +#: ../../mod/photos.php:1758 ../../mod/photos.php:1770 +msgid "Contact Photos" +msgstr "" + +#: ../../view/theme/diabook/theme.php:500 ../../mod/photos.php:155 +#: ../../mod/photos.php:731 ../../mod/photos.php:1189 +#: ../../mod/photos.php:1212 ../../mod/profile_photo.php:74 +#: ../../mod/profile_photo.php:81 ../../mod/profile_photo.php:88 +#: ../../mod/profile_photo.php:204 ../../mod/profile_photo.php:296 +#: ../../mod/profile_photo.php:305 ../../include/user.php:334 +#: ../../include/user.php:341 ../../include/user.php:348 +msgid "Profile Photos" +msgstr "" + +#: ../../view/theme/diabook/theme.php:523 +#: ../../view/theme/diabook/theme.php:629 +#: ../../view/theme/diabook/config.php:163 +msgid "Find Friends" +msgstr "" + +#: ../../view/theme/diabook/theme.php:524 +msgid "Local Directory" +msgstr "" + +#: ../../view/theme/diabook/theme.php:525 ../../mod/directory.php:49 +msgid "Global Directory" +msgstr "" + +#: ../../view/theme/diabook/theme.php:526 ../../include/contact_widgets.php:35 +msgid "Similar Interests" +msgstr "" + +#: ../../view/theme/diabook/theme.php:527 ../../mod/suggest.php:66 +#: ../../include/contact_widgets.php:34 +msgid "Friend Suggestions" +msgstr "" + +#: ../../view/theme/diabook/theme.php:528 ../../include/contact_widgets.php:37 +msgid "Invite Friends" +msgstr "" + +#: ../../view/theme/diabook/theme.php:544 +#: ../../view/theme/diabook/theme.php:648 ../../mod/newmember.php:22 +#: ../../mod/admin.php:1019 ../../mod/admin.php:1238 ../../mod/settings.php:85 +#: ../../include/nav.php:170 +msgid "Settings" +msgstr "" + +#: ../../view/theme/diabook/theme.php:579 +#: ../../view/theme/diabook/theme.php:625 +#: ../../view/theme/diabook/config.php:159 +msgid "Earth Layers" +msgstr "" + +#: ../../view/theme/diabook/theme.php:584 +msgid "Set zoomfactor for Earth Layers" +msgstr "" + +#: ../../view/theme/diabook/theme.php:585 +#: ../../view/theme/diabook/config.php:156 +msgid "Set longitude (X) for Earth Layers" +msgstr "" + +#: ../../view/theme/diabook/theme.php:586 +#: ../../view/theme/diabook/config.php:157 +msgid "Set latitude (Y) for Earth Layers" +msgstr "" + +#: ../../view/theme/diabook/theme.php:599 +#: ../../view/theme/diabook/theme.php:627 +#: ../../view/theme/diabook/config.php:161 +msgid "Help or @NewHere ?" +msgstr "" + +#: ../../view/theme/diabook/theme.php:606 +#: ../../view/theme/diabook/theme.php:628 +#: ../../view/theme/diabook/config.php:162 +msgid "Connect Services" +msgstr "" + +#: ../../view/theme/diabook/theme.php:622 +msgid "Show/hide boxes at right-hand column:" +msgstr "" + +#: ../../view/theme/diabook/config.php:154 +msgid "Set color scheme" +msgstr "" + +#: ../../view/theme/diabook/config.php:155 +msgid "Set zoomfactor for Earth Layer" +msgstr "" + +#: ../../view/theme/quattro/config.php:67 +msgid "Alignment" +msgstr "" + +#: ../../view/theme/quattro/config.php:67 +msgid "Left" +msgstr "" + +#: ../../view/theme/quattro/config.php:67 +msgid "Center" +msgstr "" + +#: ../../view/theme/quattro/config.php:68 ../../view/theme/clean/config.php:84 +#: ../../view/theme/_clean_repo/config.php:84 +#: ../../view/theme/cleanzero/config.php:86 +msgid "Color scheme" +msgstr "" + +#: ../../view/theme/quattro/config.php:69 +msgid "Posts font size" +msgstr "" + +#: ../../view/theme/quattro/config.php:70 +msgid "Textareas font size" +msgstr "" + +#: ../../view/theme/dispy/config.php:75 +msgid "Set colour scheme" +msgstr "" + +#: ../../view/theme/clean/config.php:56 +#: ../../view/theme/_clean_repo/config.php:56 ../../include/user.php:246 +#: ../../include/text.php:1698 +msgid "default" +msgstr "" + +#: ../../view/theme/clean/config.php:57 +#: ../../view/theme/_clean_repo/config.php:57 +msgid "dark" +msgstr "" + +#: ../../view/theme/clean/config.php:58 +#: ../../view/theme/_clean_repo/config.php:58 +msgid "black" +msgstr "" + +#: ../../view/theme/clean/config.php:82 +#: ../../view/theme/_clean_repo/config.php:82 +msgid "Background Image" +msgstr "" + +#: ../../view/theme/clean/config.php:82 +#: ../../view/theme/_clean_repo/config.php:82 +msgid "" +"The URL to a picture (e.g. from your photo album) that should be used as " +"background image." +msgstr "" + +#: ../../view/theme/clean/config.php:83 +#: ../../view/theme/_clean_repo/config.php:83 +msgid "Background Color" +msgstr "" + +#: ../../view/theme/clean/config.php:83 +#: ../../view/theme/_clean_repo/config.php:83 +msgid "HEX value for the background color. Don't include the #" +msgstr "" + +#: ../../view/theme/clean/config.php:85 +#: ../../view/theme/_clean_repo/config.php:85 +msgid "font size" +msgstr "" + +#: ../../view/theme/clean/config.php:85 +#: ../../view/theme/_clean_repo/config.php:85 +msgid "base font size for your interface" +msgstr "" + +#: ../../view/theme/cleanzero/config.php:83 +msgid "Set resize level for images in posts and comments (width and height)" +msgstr "" + +#: ../../view/theme/cleanzero/config.php:85 +msgid "Set theme width" +msgstr "" + +#: ../../view/theme/vier/config.php:54 +#: ../../view/theme/vier-mobil/config.php:50 +msgid "Set style" +msgstr "" + +#: ../../boot.php:712 +msgid "Delete this item?" +msgstr "" + +#: ../../boot.php:715 +msgid "show fewer" +msgstr "" + +#: ../../boot.php:1049 +#, php-format +msgid "Update %s failed. See error logs." +msgstr "" + +#: ../../boot.php:1051 +#, php-format +msgid "Update Error at %s" +msgstr "" + +#: ../../boot.php:1177 +msgid "Create a New Account" +msgstr "" + +#: ../../boot.php:1178 ../../mod/register.php:279 ../../include/nav.php:109 +msgid "Register" +msgstr "" + +#: ../../boot.php:1202 ../../include/nav.php:73 +msgid "Logout" +msgstr "" + +#: ../../boot.php:1203 ../../include/nav.php:92 +msgid "Login" +msgstr "" + +#: ../../boot.php:1205 +msgid "Nickname or Email address: " +msgstr "" + +#: ../../boot.php:1206 +msgid "Password: " +msgstr "" + +#: ../../boot.php:1207 +msgid "Remember me" +msgstr "" + +#: ../../boot.php:1210 +msgid "Or login using OpenID: " +msgstr "" + +#: ../../boot.php:1216 +msgid "Forgot your password?" +msgstr "" + +#: ../../boot.php:1217 ../../mod/lostpass.php:84 +msgid "Password Reset" +msgstr "" + +#: ../../boot.php:1219 +msgid "Website Terms of Service" +msgstr "" + +#: ../../boot.php:1220 +msgid "terms of service" +msgstr "" + +#: ../../boot.php:1222 +msgid "Website Privacy Policy" +msgstr "" + +#: ../../boot.php:1223 +msgid "privacy policy" +msgstr "" + +#: ../../boot.php:1356 +msgid "Requested account is not available." +msgstr "" + +#: ../../boot.php:1395 ../../mod/profile.php:21 +msgid "Requested profile is not available." +msgstr "" + +#: ../../boot.php:1435 ../../boot.php:1539 +msgid "Edit profile" +msgstr "" + +#: ../../boot.php:1487 ../../mod/suggest.php:88 ../../mod/match.php:58 +#: ../../include/contact_widgets.php:9 +msgid "Connect" +msgstr "" + +#: ../../boot.php:1501 +msgid "Message" +msgstr "" + +#: ../../boot.php:1509 ../../include/nav.php:173 +msgid "Profiles" +msgstr "" + +#: ../../boot.php:1509 +msgid "Manage/edit profiles" +msgstr "" + +#: ../../boot.php:1515 ../../boot.php:1541 ../../mod/profiles.php:738 +msgid "Change profile photo" +msgstr "" + +#: ../../boot.php:1516 ../../mod/profiles.php:739 +msgid "Create New Profile" +msgstr "" + +#: ../../boot.php:1526 ../../mod/profiles.php:750 +msgid "Profile Image" +msgstr "" + +#: ../../boot.php:1529 ../../mod/profiles.php:752 +msgid "visible to everybody" +msgstr "" + +#: ../../boot.php:1530 ../../mod/profiles.php:753 +msgid "Edit visibility" +msgstr "" + +#: ../../boot.php:1555 ../../mod/directory.php:134 ../../mod/events.php:471 +#: ../../include/event.php:40 ../../include/bb2diaspora.php:156 +msgid "Location:" +msgstr "" + +#: ../../boot.php:1557 ../../mod/directory.php:136 +#: ../../include/profile_advanced.php:17 +msgid "Gender:" +msgstr "" + +#: ../../boot.php:1560 ../../mod/directory.php:138 +#: ../../include/profile_advanced.php:37 +msgid "Status:" +msgstr "" + +#: ../../boot.php:1562 ../../mod/directory.php:140 +#: ../../include/profile_advanced.php:48 +msgid "Homepage:" +msgstr "" + +#: ../../boot.php:1638 ../../boot.php:1724 +msgid "g A l F d" +msgstr "" + +#: ../../boot.php:1639 ../../boot.php:1725 +msgid "F d" +msgstr "" + +#: ../../boot.php:1684 ../../boot.php:1765 +msgid "[today]" +msgstr "" + +#: ../../boot.php:1696 +msgid "Birthday Reminders" +msgstr "" + +#: ../../boot.php:1697 +msgid "Birthdays this week:" +msgstr "" + +#: ../../boot.php:1758 +msgid "[No description]" +msgstr "" + +#: ../../boot.php:1776 +msgid "Event Reminders" +msgstr "" + +#: ../../boot.php:1777 +msgid "Events this week:" +msgstr "" + +#: ../../boot.php:2014 ../../include/nav.php:76 +msgid "Status" +msgstr "" + +#: ../../boot.php:2017 +msgid "Status Messages and Posts" +msgstr "" + +#: ../../boot.php:2024 +msgid "Profile Details" +msgstr "" + +#: ../../boot.php:2031 ../../mod/photos.php:52 +msgid "Photo Albums" +msgstr "" + +#: ../../boot.php:2035 ../../boot.php:2038 ../../include/nav.php:79 +msgid "Videos" +msgstr "" + +#: ../../boot.php:2048 +msgid "Events and Calendar" +msgstr "" + +#: ../../boot.php:2052 ../../mod/notes.php:44 +msgid "Personal Notes" +msgstr "" + +#: ../../boot.php:2055 +msgid "Only You Can See This" +msgstr "" + +#: ../../mod/mood.php:62 ../../include/conversation.php:227 +#, php-format +msgid "%1$s is currently %2$s" +msgstr "" + +#: ../../mod/mood.php:133 +msgid "Mood" +msgstr "" + +#: ../../mod/mood.php:134 +msgid "Set your current mood and tell your friends" +msgstr "" + +#: ../../mod/display.php:45 ../../mod/_search.php:89 +#: ../../mod/directory.php:31 ../../mod/search.php:89 +#: ../../mod/dfrn_request.php:761 ../../mod/community.php:18 +#: ../../mod/viewcontacts.php:17 ../../mod/photos.php:920 +#: ../../mod/videos.php:115 msgid "Public access denied." msgstr "" -#: ../../mod/display.php:51 ../../mod/display.php:270 ../../mod/viewsrc.php:15 -#: ../../mod/admin.php:164 ../../mod/admin.php:958 ../../mod/admin.php:1169 -#: ../../mod/notice.php:15 ../../include/items.php:4211 +#: ../../mod/display.php:104 ../../mod/display.php:323 +#: ../../mod/decrypt.php:15 ../../mod/admin.php:164 ../../mod/admin.php:967 +#: ../../mod/admin.php:1178 ../../mod/notice.php:15 ../../mod/viewsrc.php:15 +#: ../../include/items.php:4300 msgid "Item not found." msgstr "" -#: ../../mod/display.php:99 ../../mod/profile.php:155 +#: ../../mod/display.php:152 ../../mod/profile.php:155 msgid "Access to this profile has been restricted." msgstr "" -#: ../../mod/display.php:263 +#: ../../mod/display.php:316 msgid "Item has been removed." msgstr "" +#: ../../mod/decrypt.php:9 ../../mod/viewsrc.php:7 +msgid "Access denied." +msgstr "" + +#: ../../mod/friendica.php:62 +msgid "This is Friendica, version" +msgstr "" + +#: ../../mod/friendica.php:63 +msgid "running at web location" +msgstr "" + +#: ../../mod/friendica.php:65 +msgid "" +"Please visit Friendica.com to learn " +"more about the Friendica project." +msgstr "" + +#: ../../mod/friendica.php:67 +msgid "Bug reports and issues: please visit" +msgstr "" + +#: ../../mod/friendica.php:68 +msgid "" +"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - " +"dot com" +msgstr "" + +#: ../../mod/friendica.php:82 +msgid "Installed plugins/addons/apps:" +msgstr "" + +#: ../../mod/friendica.php:95 +msgid "No installed plugins/addons/apps" +msgstr "" + +#: ../../mod/dfrn_poll.php:103 ../../mod/dfrn_poll.php:536 +#, php-format +msgid "%1$s welcomes %2$s" +msgstr "" + +#: ../../mod/register.php:92 ../../mod/admin.php:749 ../../mod/regmod.php:54 +#, php-format +msgid "Registration details for %s" +msgstr "" + +#: ../../mod/register.php:100 +msgid "" +"Registration successful. Please check your email for further instructions." +msgstr "" + +#: ../../mod/register.php:104 +msgid "Failed to send email message. Here is the message that failed." +msgstr "" + +#: ../../mod/register.php:109 +msgid "Your registration can not be processed." +msgstr "" + +#: ../../mod/register.php:149 +#, php-format +msgid "Registration request at %s" +msgstr "" + +#: ../../mod/register.php:158 +msgid "Your registration is pending approval by the site owner." +msgstr "" + +#: ../../mod/register.php:196 ../../mod/uimport.php:50 +msgid "" +"This site has exceeded the number of allowed daily account registrations. " +"Please try again tomorrow." +msgstr "" + +#: ../../mod/register.php:224 +msgid "" +"You may (optionally) fill in this form via OpenID by supplying your OpenID " +"and clicking 'Register'." +msgstr "" + +#: ../../mod/register.php:225 +msgid "" +"If you are not familiar with OpenID, please leave that field blank and fill " +"in the rest of the items." +msgstr "" + +#: ../../mod/register.php:226 +msgid "Your OpenID (optional): " +msgstr "" + +#: ../../mod/register.php:240 +msgid "Include your profile in member directory?" +msgstr "" + +#: ../../mod/register.php:243 ../../mod/api.php:105 ../../mod/suggest.php:29 +#: ../../mod/dfrn_request.php:836 ../../mod/contacts.php:326 +#: ../../mod/settings.php:1007 ../../mod/settings.php:1013 +#: ../../mod/settings.php:1021 ../../mod/settings.php:1025 +#: ../../mod/settings.php:1030 ../../mod/settings.php:1036 +#: ../../mod/settings.php:1042 ../../mod/settings.php:1048 +#: ../../mod/settings.php:1078 ../../mod/settings.php:1079 +#: ../../mod/settings.php:1080 ../../mod/settings.php:1081 +#: ../../mod/settings.php:1082 ../../mod/profiles.php:618 +#: ../../mod/profiles.php:621 ../../mod/message.php:209 +#: ../../include/items.php:4341 +msgid "Yes" +msgstr "" + +#: ../../mod/register.php:244 ../../mod/api.php:106 +#: ../../mod/dfrn_request.php:837 ../../mod/settings.php:1007 +#: ../../mod/settings.php:1013 ../../mod/settings.php:1021 +#: ../../mod/settings.php:1025 ../../mod/settings.php:1030 +#: ../../mod/settings.php:1036 ../../mod/settings.php:1042 +#: ../../mod/settings.php:1048 ../../mod/settings.php:1078 +#: ../../mod/settings.php:1079 ../../mod/settings.php:1080 +#: ../../mod/settings.php:1081 ../../mod/settings.php:1082 +#: ../../mod/profiles.php:618 ../../mod/profiles.php:622 +msgid "No" +msgstr "" + +#: ../../mod/register.php:261 +msgid "Membership on this site is by invitation only." +msgstr "" + +#: ../../mod/register.php:262 +msgid "Your invitation ID: " +msgstr "" + +#: ../../mod/register.php:265 ../../mod/admin.php:585 +msgid "Registration" +msgstr "" + +#: ../../mod/register.php:273 +msgid "Your Full Name (e.g. Joe Smith): " +msgstr "" + +#: ../../mod/register.php:274 +msgid "Your Email Address: " +msgstr "" + +#: ../../mod/register.php:275 +msgid "" +"Choose a profile nickname. This must begin with a text character. Your " +"profile address on this site will then be 'nickname@$sitename'." +msgstr "" + +#: ../../mod/register.php:276 +msgid "Choose a nickname: " +msgstr "" + +#: ../../mod/register.php:285 ../../mod/uimport.php:64 +msgid "Import" +msgstr "" + +#: ../../mod/register.php:286 +msgid "Import your profile to this friendica instance" +msgstr "" + +#: ../../mod/dfrn_confirm.php:62 ../../mod/profiles.php:18 +#: ../../mod/profiles.php:133 ../../mod/profiles.php:160 +#: ../../mod/profiles.php:587 +msgid "Profile not found." +msgstr "" + +#: ../../mod/dfrn_confirm.php:118 ../../mod/crepair.php:131 +#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92 +msgid "Contact not found." +msgstr "" + +#: ../../mod/dfrn_confirm.php:119 +msgid "" +"This may occasionally happen if contact was requested by both persons and it " +"has already been approved." +msgstr "" + +#: ../../mod/dfrn_confirm.php:237 +msgid "Response from remote site was not understood." +msgstr "" + +#: ../../mod/dfrn_confirm.php:246 +msgid "Unexpected response from remote site: " +msgstr "" + +#: ../../mod/dfrn_confirm.php:254 +msgid "Confirmation completed successfully." +msgstr "" + +#: ../../mod/dfrn_confirm.php:256 ../../mod/dfrn_confirm.php:270 +#: ../../mod/dfrn_confirm.php:277 +msgid "Remote site reported: " +msgstr "" + +#: ../../mod/dfrn_confirm.php:268 +msgid "Temporary failure. Please wait and try again." +msgstr "" + +#: ../../mod/dfrn_confirm.php:275 +msgid "Introduction failed or was revoked." +msgstr "" + +#: ../../mod/dfrn_confirm.php:420 +msgid "Unable to set contact photo." +msgstr "" + +#: ../../mod/dfrn_confirm.php:477 ../../include/conversation.php:172 +#: ../../include/diaspora.php:620 +#, php-format +msgid "%1$s is now friends with %2$s" +msgstr "" + +#: ../../mod/dfrn_confirm.php:562 +#, php-format +msgid "No user record found for '%s' " +msgstr "" + +#: ../../mod/dfrn_confirm.php:572 +msgid "Our site encryption key is apparently messed up." +msgstr "" + +#: ../../mod/dfrn_confirm.php:583 +msgid "Empty site URL was provided or URL could not be decrypted by us." +msgstr "" + +#: ../../mod/dfrn_confirm.php:604 +msgid "Contact record was not found for you on our site." +msgstr "" + +#: ../../mod/dfrn_confirm.php:618 +#, php-format +msgid "Site public key not available in contact record for URL %s." +msgstr "" + +#: ../../mod/dfrn_confirm.php:638 +msgid "" +"The ID provided by your system is a duplicate on our system. It should work " +"if you try again." +msgstr "" + +#: ../../mod/dfrn_confirm.php:649 +msgid "Unable to set your contact credentials on our system." +msgstr "" + +#: ../../mod/dfrn_confirm.php:716 +msgid "Unable to update your contact profile details on our system" +msgstr "" + +#: ../../mod/dfrn_confirm.php:751 +#, php-format +msgid "Connection accepted at %s" +msgstr "" + +#: ../../mod/dfrn_confirm.php:800 +#, php-format +msgid "%1$s has joined %2$s" +msgstr "" + +#: ../../mod/api.php:76 ../../mod/api.php:102 +msgid "Authorize application connection" +msgstr "" + +#: ../../mod/api.php:77 +msgid "Return to your app and insert this Securty Code:" +msgstr "" + +#: ../../mod/api.php:89 +msgid "Please login to continue." +msgstr "" + +#: ../../mod/api.php:104 +msgid "" +"Do you want to authorize this application to access your posts and contacts, " +"and/or create new posts for you?" +msgstr "" + +#: ../../mod/lostpass.php:17 +msgid "No valid account found." +msgstr "" + +#: ../../mod/lostpass.php:33 +msgid "Password reset request issued. Check your email." +msgstr "" + +#: ../../mod/lostpass.php:44 +#, php-format +msgid "Password reset requested at %s" +msgstr "" + +#: ../../mod/lostpass.php:66 +msgid "" +"Request could not be verified. (You may have previously submitted it.) " +"Password reset failed." +msgstr "" + +#: ../../mod/lostpass.php:85 +msgid "Your password has been reset as requested." +msgstr "" + +#: ../../mod/lostpass.php:86 +msgid "Your new password is" +msgstr "" + +#: ../../mod/lostpass.php:87 +msgid "Save or copy your new password - and then" +msgstr "" + +#: ../../mod/lostpass.php:88 +msgid "click here to login" +msgstr "" + +#: ../../mod/lostpass.php:89 +msgid "" +"Your password may be changed from the Settings page after " +"successful login." +msgstr "" + +#: ../../mod/lostpass.php:107 +#, php-format +msgid "Your password has been changed at %s" +msgstr "" + +#: ../../mod/lostpass.php:122 +msgid "Forgot your Password?" +msgstr "" + +#: ../../mod/lostpass.php:123 +msgid "" +"Enter your email address and submit to have your password reset. Then check " +"your email for further instructions." +msgstr "" + +#: ../../mod/lostpass.php:124 +msgid "Nickname or Email: " +msgstr "" + +#: ../../mod/lostpass.php:125 +msgid "Reset" +msgstr "" + +#: ../../mod/wallmessage.php:42 ../../mod/wallmessage.php:112 +#, php-format +msgid "Number of daily wall messages for %s exceeded. Message failed." +msgstr "" + +#: ../../mod/wallmessage.php:56 ../../mod/message.php:63 +msgid "No recipient selected." +msgstr "" + +#: ../../mod/wallmessage.php:59 +msgid "Unable to check your home location." +msgstr "" + +#: ../../mod/wallmessage.php:62 ../../mod/message.php:70 +msgid "Message could not be sent." +msgstr "" + +#: ../../mod/wallmessage.php:65 ../../mod/message.php:73 +msgid "Message collection failure." +msgstr "" + +#: ../../mod/wallmessage.php:68 ../../mod/message.php:76 +msgid "Message sent." +msgstr "" + +#: ../../mod/wallmessage.php:86 ../../mod/wallmessage.php:95 +msgid "No recipient." +msgstr "" + +#: ../../mod/wallmessage.php:127 ../../mod/wallmessage.php:135 +#: ../../mod/message.php:283 ../../mod/message.php:291 +#: ../../mod/message.php:466 ../../mod/message.php:474 +#: ../../include/conversation.php:1001 ../../include/conversation.php:1019 +msgid "Please enter a link URL:" +msgstr "" + +#: ../../mod/wallmessage.php:142 ../../mod/message.php:319 +msgid "Send Private Message" +msgstr "" + +#: ../../mod/wallmessage.php:143 +#, php-format +msgid "" +"If you wish for %s to respond, please check that the privacy settings on " +"your site allow private mail from unknown senders." +msgstr "" + +#: ../../mod/wallmessage.php:144 ../../mod/message.php:320 +#: ../../mod/message.php:553 +msgid "To:" +msgstr "" + +#: ../../mod/wallmessage.php:145 ../../mod/message.php:325 +#: ../../mod/message.php:555 +msgid "Subject:" +msgstr "" + +#: ../../mod/wallmessage.php:151 ../../mod/message.php:329 +#: ../../mod/message.php:558 ../../mod/invite.php:134 +msgid "Your message:" +msgstr "" + +#: ../../mod/wallmessage.php:154 ../../mod/editpost.php:110 +#: ../../mod/message.php:332 ../../mod/message.php:562 +#: ../../include/conversation.php:1090 +msgid "Upload photo" +msgstr "" + +#: ../../mod/wallmessage.php:155 ../../mod/editpost.php:114 +#: ../../mod/message.php:333 ../../mod/message.php:563 +#: ../../include/conversation.php:1094 +msgid "Insert web link" +msgstr "" + #: ../../mod/newmember.php:6 msgid "Welcome to Friendica" msgstr "" @@ -544,13 +1321,6 @@ msgid "" "join." msgstr "" -#: ../../mod/newmember.php:22 ../../mod/admin.php:1010 -#: ../../mod/admin.php:1229 ../../mod/settings.php:85 -#: ../../include/nav.php:169 ../../view/theme/diabook/theme.php:544 -#: ../../view/theme/diabook/theme.php:648 -msgid "Settings" -msgstr "" - #: ../../mod/newmember.php:26 msgid "Go to Your Settings" msgstr "" @@ -710,1917 +1480,39 @@ msgid "" "features and resources." msgstr "" -#: ../../mod/openid.php:24 -msgid "OpenID protocol error. No ID returned." +#: ../../mod/suggest.php:27 +msgid "Do you really want to delete this suggestion?" msgstr "" -#: ../../mod/openid.php:53 +#: ../../mod/suggest.php:32 ../../mod/editpost.php:148 +#: ../../mod/dfrn_request.php:848 ../../mod/contacts.php:329 +#: ../../mod/settings.php:612 ../../mod/settings.php:638 +#: ../../mod/message.php:212 ../../mod/photos.php:203 ../../mod/photos.php:292 +#: ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 ../../mod/fbrowser.php:81 +#: ../../mod/fbrowser.php:116 ../../include/conversation.php:1128 +#: ../../include/items.php:4344 +msgid "Cancel" +msgstr "" + +#: ../../mod/suggest.php:72 msgid "" -"Account not found and OpenID registration is not permitted on this site." +"No suggestions available. If this is a new site, please try again in 24 " +"hours." msgstr "" -#: ../../mod/openid.php:93 ../../include/auth.php:112 -#: ../../include/auth.php:175 -msgid "Login failed." -msgstr "" - -#: ../../mod/profile_photo.php:44 -msgid "Image uploaded but image cropping failed." -msgstr "" - -#: ../../mod/profile_photo.php:74 ../../mod/profile_photo.php:81 -#: ../../mod/profile_photo.php:88 ../../mod/profile_photo.php:204 -#: ../../mod/profile_photo.php:296 ../../mod/profile_photo.php:305 -#: ../../mod/photos.php:155 ../../mod/photos.php:729 ../../mod/photos.php:1187 -#: ../../mod/photos.php:1210 ../../include/user.php:334 -#: ../../include/user.php:341 ../../include/user.php:348 -#: ../../view/theme/diabook/theme.php:500 -msgid "Profile Photos" -msgstr "" - -#: ../../mod/profile_photo.php:77 ../../mod/profile_photo.php:84 -#: ../../mod/profile_photo.php:91 ../../mod/profile_photo.php:308 -#, php-format -msgid "Image size reduction [%s] failed." -msgstr "" - -#: ../../mod/profile_photo.php:118 -msgid "" -"Shift-reload the page or clear browser cache if the new photo does not " -"display immediately." -msgstr "" - -#: ../../mod/profile_photo.php:128 -msgid "Unable to process image" -msgstr "" - -#: ../../mod/profile_photo.php:144 ../../mod/wall_upload.php:90 -#, php-format -msgid "Image exceeds size limit of %d" -msgstr "" - -#: ../../mod/profile_photo.php:153 ../../mod/wall_upload.php:112 -#: ../../mod/photos.php:805 -msgid "Unable to process image." -msgstr "" - -#: ../../mod/profile_photo.php:242 -msgid "Upload File:" -msgstr "" - -#: ../../mod/profile_photo.php:243 -msgid "Select a profile:" -msgstr "" - -#: ../../mod/profile_photo.php:245 -msgid "Upload" -msgstr "" - -#: ../../mod/profile_photo.php:248 ../../mod/settings.php:1053 -msgid "or" -msgstr "" - -#: ../../mod/profile_photo.php:248 -msgid "skip this step" -msgstr "" - -#: ../../mod/profile_photo.php:248 -msgid "select a photo from your photo albums" -msgstr "" - -#: ../../mod/profile_photo.php:262 -msgid "Crop Image" -msgstr "" - -#: ../../mod/profile_photo.php:263 -msgid "Please adjust the image cropping for optimum viewing." -msgstr "" - -#: ../../mod/profile_photo.php:265 -msgid "Done Editing" -msgstr "" - -#: ../../mod/profile_photo.php:299 -msgid "Image uploaded successfully." -msgstr "" - -#: ../../mod/profile_photo.php:301 ../../mod/wall_upload.php:138 -#: ../../mod/photos.php:832 -msgid "Image upload failed." -msgstr "" - -#: ../../mod/subthread.php:87 ../../mod/tagger.php:62 ../../mod/like.php:150 -#: ../../include/conversation.php:126 ../../include/conversation.php:254 -#: ../../include/text.php:1955 ../../include/diaspora.php:1908 -#: ../../view/theme/diabook/theme.php:471 -msgid "photo" -msgstr "" - -#: ../../mod/subthread.php:87 ../../mod/tagger.php:62 ../../mod/like.php:150 -#: ../../mod/like.php:321 ../../include/conversation.php:121 -#: ../../include/conversation.php:130 ../../include/conversation.php:249 -#: ../../include/conversation.php:258 ../../include/diaspora.php:1908 -#: ../../view/theme/diabook/theme.php:466 -#: ../../view/theme/diabook/theme.php:475 -msgid "status" -msgstr "" - -#: ../../mod/subthread.php:103 -#, php-format -msgid "%1$s is following %2$s's %3$s" -msgstr "" - -#: ../../mod/tagrm.php:41 -msgid "Tag removed" -msgstr "" - -#: ../../mod/tagrm.php:79 -msgid "Remove Item Tag" -msgstr "" - -#: ../../mod/tagrm.php:81 -msgid "Select a tag to remove: " -msgstr "" - -#: ../../mod/tagrm.php:93 ../../mod/delegate.php:133 -msgid "Remove" -msgstr "" - -#: ../../mod/filer.php:30 ../../include/conversation.php:1004 -#: ../../include/conversation.php:1022 -msgid "Save to Folder:" -msgstr "" - -#: ../../mod/filer.php:30 -msgid "- select -" -msgstr "" - -#: ../../mod/filer.php:31 ../../mod/notes.php:63 ../../include/text.php:954 -msgid "Save" -msgstr "" - -#: ../../mod/follow.php:27 -msgid "Contact added" -msgstr "" - -#: ../../mod/item.php:110 -msgid "Unable to locate original post." -msgstr "" - -#: ../../mod/item.php:319 -msgid "Empty post discarded." -msgstr "" - -#: ../../mod/item.php:455 ../../mod/wall_upload.php:135 -#: ../../mod/wall_upload.php:144 ../../mod/wall_upload.php:151 -#: ../../include/message.php:144 -msgid "Wall Photos" -msgstr "" - -#: ../../mod/item.php:891 -msgid "System error. Post not saved." -msgstr "" - -#: ../../mod/item.php:917 -#, php-format -msgid "" -"This message was sent to you by %s, a member of the Friendica social network." -msgstr "" - -#: ../../mod/item.php:919 -#, php-format -msgid "You may visit them online at %s" -msgstr "" - -#: ../../mod/item.php:920 -msgid "" -"Please contact the sender by replying to this post if you do not wish to " -"receive these messages." -msgstr "" - -#: ../../mod/item.php:924 -#, php-format -msgid "%s posted an update." -msgstr "" - -#: ../../mod/group.php:29 -msgid "Group created." -msgstr "" - -#: ../../mod/group.php:35 -msgid "Could not create group." -msgstr "" - -#: ../../mod/group.php:47 ../../mod/group.php:140 -msgid "Group not found." -msgstr "" - -#: ../../mod/group.php:60 -msgid "Group name changed." -msgstr "" - -#: ../../mod/group.php:87 -msgid "Save Group" -msgstr "" - -#: ../../mod/group.php:93 -msgid "Create a group of contacts/friends." -msgstr "" - -#: ../../mod/group.php:94 ../../mod/group.php:180 -msgid "Group Name: " -msgstr "" - -#: ../../mod/group.php:113 -msgid "Group removed." -msgstr "" - -#: ../../mod/group.php:115 -msgid "Unable to remove group." -msgstr "" - -#: ../../mod/group.php:179 -msgid "Group Editor" -msgstr "" - -#: ../../mod/group.php:192 -msgid "Members" -msgstr "" - -#: ../../mod/apps.php:7 ../../index.php:203 -msgid "You must be logged in to use addons. " -msgstr "" - -#: ../../mod/apps.php:11 -msgid "Applications" -msgstr "" - -#: ../../mod/apps.php:14 -msgid "No installed applications." -msgstr "" - -#: ../../mod/dfrn_confirm.php:62 ../../mod/profiles.php:18 -#: ../../mod/profiles.php:133 ../../mod/profiles.php:160 -#: ../../mod/profiles.php:587 -msgid "Profile not found." -msgstr "" - -#: ../../mod/dfrn_confirm.php:118 ../../mod/fsuggest.php:20 -#: ../../mod/fsuggest.php:92 ../../mod/crepair.php:131 -msgid "Contact not found." -msgstr "" - -#: ../../mod/dfrn_confirm.php:119 -msgid "" -"This may occasionally happen if contact was requested by both persons and it " -"has already been approved." -msgstr "" - -#: ../../mod/dfrn_confirm.php:237 -msgid "Response from remote site was not understood." -msgstr "" - -#: ../../mod/dfrn_confirm.php:246 -msgid "Unexpected response from remote site: " -msgstr "" - -#: ../../mod/dfrn_confirm.php:254 -msgid "Confirmation completed successfully." -msgstr "" - -#: ../../mod/dfrn_confirm.php:256 ../../mod/dfrn_confirm.php:270 -#: ../../mod/dfrn_confirm.php:277 -msgid "Remote site reported: " -msgstr "" - -#: ../../mod/dfrn_confirm.php:268 -msgid "Temporary failure. Please wait and try again." -msgstr "" - -#: ../../mod/dfrn_confirm.php:275 -msgid "Introduction failed or was revoked." -msgstr "" - -#: ../../mod/dfrn_confirm.php:420 -msgid "Unable to set contact photo." -msgstr "" - -#: ../../mod/dfrn_confirm.php:477 ../../include/conversation.php:172 -#: ../../include/diaspora.php:620 -#, php-format -msgid "%1$s is now friends with %2$s" -msgstr "" - -#: ../../mod/dfrn_confirm.php:562 -#, php-format -msgid "No user record found for '%s' " -msgstr "" - -#: ../../mod/dfrn_confirm.php:572 -msgid "Our site encryption key is apparently messed up." -msgstr "" - -#: ../../mod/dfrn_confirm.php:583 -msgid "Empty site URL was provided or URL could not be decrypted by us." -msgstr "" - -#: ../../mod/dfrn_confirm.php:604 -msgid "Contact record was not found for you on our site." -msgstr "" - -#: ../../mod/dfrn_confirm.php:618 -#, php-format -msgid "Site public key not available in contact record for URL %s." -msgstr "" - -#: ../../mod/dfrn_confirm.php:638 -msgid "" -"The ID provided by your system is a duplicate on our system. It should work " -"if you try again." -msgstr "" - -#: ../../mod/dfrn_confirm.php:649 -msgid "Unable to set your contact credentials on our system." -msgstr "" - -#: ../../mod/dfrn_confirm.php:716 -msgid "Unable to update your contact profile details on our system" -msgstr "" - -#: ../../mod/dfrn_confirm.php:751 -#, php-format -msgid "Connection accepted at %s" -msgstr "" - -#: ../../mod/dfrn_confirm.php:800 -#, php-format -msgid "%1$s has joined %2$s" -msgstr "" - -#: ../../mod/profile.php:21 ../../boot.php:1366 -msgid "Requested profile is not available." -msgstr "" - -#: ../../mod/profile.php:180 -msgid "Tips for New Members" -msgstr "" - -#: ../../mod/videos.php:125 -msgid "No videos selected" -msgstr "" - -#: ../../mod/videos.php:226 ../../mod/photos.php:1029 -msgid "Access to this item is restricted." -msgstr "" - -#: ../../mod/videos.php:301 ../../include/text.php:1400 -msgid "View Video" -msgstr "" - -#: ../../mod/videos.php:308 ../../mod/photos.php:1804 -msgid "View Album" -msgstr "" - -#: ../../mod/videos.php:317 -msgid "Recent Videos" -msgstr "" - -#: ../../mod/videos.php:319 -msgid "Upload New Videos" -msgstr "" - -#: ../../mod/tagger.php:95 ../../include/conversation.php:266 -#, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" -msgstr "" - -#: ../../mod/fsuggest.php:63 -msgid "Friend suggestion sent." -msgstr "" - -#: ../../mod/fsuggest.php:97 -msgid "Suggest Friends" -msgstr "" - -#: ../../mod/fsuggest.php:99 -#, php-format -msgid "Suggest a friend for %s" -msgstr "" - -#: ../../mod/lostpass.php:17 -msgid "No valid account found." -msgstr "" - -#: ../../mod/lostpass.php:33 -msgid "Password reset request issued. Check your email." -msgstr "" - -#: ../../mod/lostpass.php:44 -#, php-format -msgid "Password reset requested at %s" -msgstr "" - -#: ../../mod/lostpass.php:66 -msgid "" -"Request could not be verified. (You may have previously submitted it.) " -"Password reset failed." -msgstr "" - -#: ../../mod/lostpass.php:84 ../../boot.php:1188 -msgid "Password Reset" -msgstr "" - -#: ../../mod/lostpass.php:85 -msgid "Your password has been reset as requested." -msgstr "" - -#: ../../mod/lostpass.php:86 -msgid "Your new password is" -msgstr "" - -#: ../../mod/lostpass.php:87 -msgid "Save or copy your new password - and then" -msgstr "" - -#: ../../mod/lostpass.php:88 -msgid "click here to login" -msgstr "" - -#: ../../mod/lostpass.php:89 -msgid "" -"Your password may be changed from the Settings page after " -"successful login." -msgstr "" - -#: ../../mod/lostpass.php:107 -#, php-format -msgid "Your password has been changed at %s" -msgstr "" - -#: ../../mod/lostpass.php:122 -msgid "Forgot your Password?" -msgstr "" - -#: ../../mod/lostpass.php:123 -msgid "" -"Enter your email address and submit to have your password reset. Then check " -"your email for further instructions." -msgstr "" - -#: ../../mod/lostpass.php:124 -msgid "Nickname or Email: " -msgstr "" - -#: ../../mod/lostpass.php:125 -msgid "Reset" -msgstr "" - -#: ../../mod/like.php:167 ../../include/conversation.php:137 -#: ../../include/diaspora.php:1924 ../../view/theme/diabook/theme.php:480 -#, php-format -msgid "%1$s likes %2$s's %3$s" -msgstr "" - -#: ../../mod/like.php:169 ../../include/conversation.php:140 -#, php-format -msgid "%1$s doesn't like %2$s's %3$s" -msgstr "" - -#: ../../mod/ping.php:238 -msgid "{0} wants to be your friend" -msgstr "" - -#: ../../mod/ping.php:243 -msgid "{0} sent you a message" -msgstr "" - -#: ../../mod/ping.php:248 -msgid "{0} requested registration" -msgstr "" - -#: ../../mod/ping.php:254 -#, php-format -msgid "{0} commented %s's post" -msgstr "" - -#: ../../mod/ping.php:259 -#, php-format -msgid "{0} liked %s's post" -msgstr "" - -#: ../../mod/ping.php:264 -#, php-format -msgid "{0} disliked %s's post" -msgstr "" - -#: ../../mod/ping.php:269 -#, php-format -msgid "{0} is now friends with %s" -msgstr "" - -#: ../../mod/ping.php:274 -msgid "{0} posted" -msgstr "" - -#: ../../mod/ping.php:279 -#, php-format -msgid "{0} tagged %s's post with #%s" -msgstr "" - -#: ../../mod/ping.php:285 -msgid "{0} mentioned you in a post" -msgstr "" - -#: ../../mod/viewcontacts.php:39 -msgid "No contacts." -msgstr "" - -#: ../../mod/viewcontacts.php:76 ../../include/text.php:874 -msgid "View Contacts" -msgstr "" - -#: ../../mod/notifications.php:26 -msgid "Invalid request identifier." -msgstr "" - -#: ../../mod/notifications.php:35 ../../mod/notifications.php:165 -#: ../../mod/notifications.php:211 -msgid "Discard" -msgstr "" - -#: ../../mod/notifications.php:78 -msgid "System" -msgstr "" - -#: ../../mod/notifications.php:83 ../../include/nav.php:142 -msgid "Network" -msgstr "" - -#: ../../mod/notifications.php:88 ../../mod/network.php:365 -msgid "Personal" -msgstr "" - -#: ../../mod/notifications.php:93 ../../include/nav.php:104 -#: ../../include/nav.php:145 ../../view/theme/diabook/theme.php:123 -msgid "Home" -msgstr "" - -#: ../../mod/notifications.php:98 ../../include/nav.php:151 -msgid "Introductions" -msgstr "" - -#: ../../mod/notifications.php:103 ../../mod/message.php:182 -#: ../../include/nav.php:158 -msgid "Messages" -msgstr "" - -#: ../../mod/notifications.php:122 -msgid "Show Ignored Requests" -msgstr "" - -#: ../../mod/notifications.php:122 -msgid "Hide Ignored Requests" -msgstr "" - -#: ../../mod/notifications.php:149 ../../mod/notifications.php:195 -msgid "Notification type: " -msgstr "" - -#: ../../mod/notifications.php:150 -msgid "Friend Suggestion" -msgstr "" - -#: ../../mod/notifications.php:152 -#, php-format -msgid "suggested by %s" -msgstr "" - -#: ../../mod/notifications.php:158 ../../mod/notifications.php:205 -msgid "Post a new friend activity" -msgstr "" - -#: ../../mod/notifications.php:158 ../../mod/notifications.php:205 -msgid "if applicable" -msgstr "" - -#: ../../mod/notifications.php:161 ../../mod/notifications.php:208 -#: ../../mod/admin.php:911 -msgid "Approve" -msgstr "" - -#: ../../mod/notifications.php:181 -msgid "Claims to be known to you: " -msgstr "" - -#: ../../mod/notifications.php:181 -msgid "yes" -msgstr "" - -#: ../../mod/notifications.php:181 -msgid "no" -msgstr "" - -#: ../../mod/notifications.php:188 -msgid "Approve as: " -msgstr "" - -#: ../../mod/notifications.php:189 -msgid "Friend" -msgstr "" - -#: ../../mod/notifications.php:190 -msgid "Sharer" -msgstr "" - -#: ../../mod/notifications.php:190 -msgid "Fan/Admirer" -msgstr "" - -#: ../../mod/notifications.php:196 -msgid "Friend/Connect Request" -msgstr "" - -#: ../../mod/notifications.php:196 -msgid "New Follower" -msgstr "" - -#: ../../mod/notifications.php:217 -msgid "No introductions." -msgstr "" - -#: ../../mod/notifications.php:220 ../../include/nav.php:152 -msgid "Notifications" -msgstr "" - -#: ../../mod/notifications.php:257 ../../mod/notifications.php:382 -#: ../../mod/notifications.php:469 -#, php-format -msgid "%s liked %s's post" -msgstr "" - -#: ../../mod/notifications.php:266 ../../mod/notifications.php:391 -#: ../../mod/notifications.php:478 -#, php-format -msgid "%s disliked %s's post" -msgstr "" - -#: ../../mod/notifications.php:280 ../../mod/notifications.php:405 -#: ../../mod/notifications.php:492 -#, php-format -msgid "%s is now friends with %s" -msgstr "" - -#: ../../mod/notifications.php:287 ../../mod/notifications.php:412 -#, php-format -msgid "%s created a new post" -msgstr "" - -#: ../../mod/notifications.php:288 ../../mod/notifications.php:413 -#: ../../mod/notifications.php:501 -#, php-format -msgid "%s commented on %s's post" -msgstr "" - -#: ../../mod/notifications.php:302 -msgid "No more network notifications." -msgstr "" - -#: ../../mod/notifications.php:306 -msgid "Network Notifications" -msgstr "" - -#: ../../mod/notifications.php:332 ../../mod/notify.php:61 -msgid "No more system notifications." -msgstr "" - -#: ../../mod/notifications.php:336 ../../mod/notify.php:65 -msgid "System Notifications" -msgstr "" - -#: ../../mod/notifications.php:427 -msgid "No more personal notifications." -msgstr "" - -#: ../../mod/notifications.php:431 -msgid "Personal Notifications" -msgstr "" - -#: ../../mod/notifications.php:508 -msgid "No more home notifications." -msgstr "" - -#: ../../mod/notifications.php:512 -msgid "Home Notifications" -msgstr "" - -#: ../../mod/babel.php:17 -msgid "Source (bbcode) text:" -msgstr "" - -#: ../../mod/babel.php:23 -msgid "Source (Diaspora) text to convert to BBcode:" -msgstr "" - -#: ../../mod/babel.php:31 -msgid "Source input: " -msgstr "" - -#: ../../mod/babel.php:35 -msgid "bb2html (raw HTML): " -msgstr "" - -#: ../../mod/babel.php:39 -msgid "bb2html: " -msgstr "" - -#: ../../mod/babel.php:43 -msgid "bb2html2bb: " -msgstr "" - -#: ../../mod/babel.php:47 -msgid "bb2md: " -msgstr "" - -#: ../../mod/babel.php:51 -msgid "bb2md2html: " -msgstr "" - -#: ../../mod/babel.php:55 -msgid "bb2dia2bb: " -msgstr "" - -#: ../../mod/babel.php:59 -msgid "bb2md2html2bb: " -msgstr "" - -#: ../../mod/babel.php:69 -msgid "Source input (Diaspora format): " -msgstr "" - -#: ../../mod/babel.php:74 -msgid "diaspora2bb: " -msgstr "" - -#: ../../mod/navigation.php:20 ../../include/nav.php:34 -msgid "Nothing new here" -msgstr "" - -#: ../../mod/navigation.php:24 ../../include/nav.php:38 -msgid "Clear notifications" -msgstr "" - -#: ../../mod/message.php:9 ../../include/nav.php:161 -msgid "New Message" -msgstr "" - -#: ../../mod/message.php:63 ../../mod/wallmessage.php:56 -msgid "No recipient selected." -msgstr "" - -#: ../../mod/message.php:67 -msgid "Unable to locate contact information." -msgstr "" - -#: ../../mod/message.php:70 ../../mod/wallmessage.php:62 -msgid "Message could not be sent." -msgstr "" - -#: ../../mod/message.php:73 ../../mod/wallmessage.php:65 -msgid "Message collection failure." -msgstr "" - -#: ../../mod/message.php:76 ../../mod/wallmessage.php:68 -msgid "Message sent." -msgstr "" - -#: ../../mod/message.php:207 -msgid "Do you really want to delete this message?" -msgstr "" - -#: ../../mod/message.php:227 -msgid "Message deleted." -msgstr "" - -#: ../../mod/message.php:258 -msgid "Conversation removed." -msgstr "" - -#: ../../mod/message.php:283 ../../mod/message.php:291 -#: ../../mod/message.php:466 ../../mod/message.php:474 -#: ../../mod/wallmessage.php:127 ../../mod/wallmessage.php:135 -#: ../../include/conversation.php:1000 ../../include/conversation.php:1018 -msgid "Please enter a link URL:" -msgstr "" - -#: ../../mod/message.php:319 ../../mod/wallmessage.php:142 -msgid "Send Private Message" -msgstr "" - -#: ../../mod/message.php:320 ../../mod/message.php:553 -#: ../../mod/wallmessage.php:144 -msgid "To:" -msgstr "" - -#: ../../mod/message.php:325 ../../mod/message.php:555 -#: ../../mod/wallmessage.php:145 -msgid "Subject:" -msgstr "" - -#: ../../mod/message.php:329 ../../mod/message.php:558 -#: ../../mod/wallmessage.php:151 ../../mod/invite.php:134 -msgid "Your message:" -msgstr "" - -#: ../../mod/message.php:332 ../../mod/message.php:562 -#: ../../mod/wallmessage.php:154 ../../mod/editpost.php:110 -#: ../../include/conversation.php:1089 -msgid "Upload photo" -msgstr "" - -#: ../../mod/message.php:333 ../../mod/message.php:563 -#: ../../mod/wallmessage.php:155 ../../mod/editpost.php:114 -#: ../../include/conversation.php:1093 -msgid "Insert web link" -msgstr "" - -#: ../../mod/message.php:334 ../../mod/message.php:565 -#: ../../mod/content.php:498 ../../mod/content.php:882 -#: ../../mod/wallmessage.php:156 ../../mod/editpost.php:124 -#: ../../mod/photos.php:1541 ../../object/Item.php:344 -#: ../../include/conversation.php:690 ../../include/conversation.php:1107 -msgid "Please wait" -msgstr "" - -#: ../../mod/message.php:371 -msgid "No messages." -msgstr "" - -#: ../../mod/message.php:378 -#, php-format -msgid "Unknown sender - %s" -msgstr "" - -#: ../../mod/message.php:381 -#, php-format -msgid "You and %s" -msgstr "" - -#: ../../mod/message.php:384 -#, php-format -msgid "%s and You" -msgstr "" - -#: ../../mod/message.php:405 ../../mod/message.php:546 -msgid "Delete conversation" -msgstr "" - -#: ../../mod/message.php:408 -msgid "D, d M Y - g:i A" -msgstr "" - -#: ../../mod/message.php:411 -#, php-format -msgid "%d message" -msgid_plural "%d messages" -msgstr[0] "" -msgstr[1] "" - -#: ../../mod/message.php:450 -msgid "Message not available." -msgstr "" - -#: ../../mod/message.php:520 -msgid "Delete message" -msgstr "" - -#: ../../mod/message.php:548 -msgid "" -"No secure communications available. You may be able to " -"respond from the sender's profile page." -msgstr "" - -#: ../../mod/message.php:552 -msgid "Send Reply" -msgstr "" - -#: ../../mod/update_display.php:22 ../../mod/update_community.php:18 -#: ../../mod/update_notes.php:41 ../../mod/update_profile.php:41 -#: ../../mod/update_network.php:22 -msgid "[Embedded content - reload page to view]" -msgstr "" - -#: ../../mod/crepair.php:104 -msgid "Contact settings applied." -msgstr "" - -#: ../../mod/crepair.php:106 -msgid "Contact update failed." -msgstr "" - -#: ../../mod/crepair.php:137 -msgid "Repair Contact Settings" -msgstr "" - -#: ../../mod/crepair.php:139 -msgid "" -"WARNING: This is highly advanced and if you enter incorrect " -"information your communications with this contact may stop working." -msgstr "" - -#: ../../mod/crepair.php:140 -msgid "" -"Please use your browser 'Back' button now if you are " -"uncertain what to do on this page." -msgstr "" - -#: ../../mod/crepair.php:146 -msgid "Return to contact editor" -msgstr "" - -#: ../../mod/crepair.php:150 ../../mod/admin.php:909 ../../mod/admin.php:921 -#: ../../mod/admin.php:922 ../../mod/admin.php:935 ../../mod/settings.php:611 -#: ../../mod/settings.php:637 -msgid "Name" -msgstr "" - -#: ../../mod/crepair.php:151 -msgid "Account Nickname" -msgstr "" - -#: ../../mod/crepair.php:152 -msgid "@Tagname - overrides Name/Nickname" -msgstr "" - -#: ../../mod/crepair.php:153 -msgid "Account URL" -msgstr "" - -#: ../../mod/crepair.php:154 -msgid "Friend Request URL" -msgstr "" - -#: ../../mod/crepair.php:155 -msgid "Friend Confirm URL" -msgstr "" - -#: ../../mod/crepair.php:156 -msgid "Notification Endpoint URL" -msgstr "" - -#: ../../mod/crepair.php:157 -msgid "Poll/Feed URL" -msgstr "" - -#: ../../mod/crepair.php:158 -msgid "New photo from this URL" -msgstr "" - -#: ../../mod/crepair.php:159 -msgid "Remote Self" -msgstr "" - -#: ../../mod/crepair.php:161 -msgid "Mirror postings from this contact" -msgstr "" - -#: ../../mod/crepair.php:161 -msgid "" -"Mark this contact as remote_self, this will cause friendica to repost new " -"entries from this contact." -msgstr "" - -#: ../../mod/viewsrc.php:7 -msgid "Access denied." -msgstr "" - -#: ../../mod/dirfind.php:26 -msgid "People Search" -msgstr "" - -#: ../../mod/dirfind.php:60 ../../mod/match.php:65 -msgid "No matches" -msgstr "" - -#: ../../mod/fbrowser.php:25 ../../boot.php:1999 ../../include/nav.php:78 -#: ../../view/theme/diabook/theme.php:126 -msgid "Photos" -msgstr "" - -#: ../../mod/fbrowser.php:113 -msgid "Files" -msgstr "" - -#: ../../mod/nogroup.php:59 -msgid "Contacts who are not members of a group" -msgstr "" - -#: ../../mod/admin.php:55 -msgid "Theme settings updated." -msgstr "" - -#: ../../mod/admin.php:102 ../../mod/admin.php:575 -msgid "Site" -msgstr "" - -#: ../../mod/admin.php:103 ../../mod/admin.php:904 ../../mod/admin.php:919 -msgid "Users" -msgstr "" - -#: ../../mod/admin.php:104 ../../mod/admin.php:1008 ../../mod/admin.php:1061 -#: ../../mod/settings.php:57 -msgid "Plugins" -msgstr "" - -#: ../../mod/admin.php:105 ../../mod/admin.php:1227 ../../mod/admin.php:1261 -msgid "Themes" -msgstr "" - -#: ../../mod/admin.php:106 -msgid "DB updates" -msgstr "" - -#: ../../mod/admin.php:121 ../../mod/admin.php:128 ../../mod/admin.php:1348 -msgid "Logs" -msgstr "" - -#: ../../mod/admin.php:126 ../../include/nav.php:180 -msgid "Admin" -msgstr "" - -#: ../../mod/admin.php:127 -msgid "Plugin Features" -msgstr "" - -#: ../../mod/admin.php:129 -msgid "User registrations waiting for confirmation" -msgstr "" - -#: ../../mod/admin.php:188 ../../mod/admin.php:858 -msgid "Normal Account" -msgstr "" - -#: ../../mod/admin.php:189 ../../mod/admin.php:859 -msgid "Soapbox Account" -msgstr "" - -#: ../../mod/admin.php:190 ../../mod/admin.php:860 -msgid "Community/Celebrity Account" -msgstr "" - -#: ../../mod/admin.php:191 ../../mod/admin.php:861 -msgid "Automatic Friend Account" -msgstr "" - -#: ../../mod/admin.php:192 -msgid "Blog Account" -msgstr "" - -#: ../../mod/admin.php:193 -msgid "Private Forum" -msgstr "" - -#: ../../mod/admin.php:212 -msgid "Message queues" -msgstr "" - -#: ../../mod/admin.php:217 ../../mod/admin.php:574 ../../mod/admin.php:903 -#: ../../mod/admin.php:1007 ../../mod/admin.php:1060 ../../mod/admin.php:1226 -#: ../../mod/admin.php:1260 ../../mod/admin.php:1347 -msgid "Administration" -msgstr "" - -#: ../../mod/admin.php:218 -msgid "Summary" -msgstr "" - -#: ../../mod/admin.php:220 -msgid "Registered users" -msgstr "" - -#: ../../mod/admin.php:222 -msgid "Pending registrations" -msgstr "" - -#: ../../mod/admin.php:223 -msgid "Version" -msgstr "" - -#: ../../mod/admin.php:225 -msgid "Active plugins" -msgstr "" - -#: ../../mod/admin.php:248 -msgid "Can not parse base url. Must have at least ://" -msgstr "" - -#: ../../mod/admin.php:487 -msgid "Site settings updated." -msgstr "" - -#: ../../mod/admin.php:516 ../../mod/settings.php:823 -msgid "No special theme for mobile devices" -msgstr "" - -#: ../../mod/admin.php:534 -msgid "At post arrival" -msgstr "" - -#: ../../mod/admin.php:535 ../../include/contact_selectors.php:56 -msgid "Frequently" -msgstr "" - -#: ../../mod/admin.php:536 ../../include/contact_selectors.php:57 -msgid "Hourly" -msgstr "" - -#: ../../mod/admin.php:537 ../../include/contact_selectors.php:58 -msgid "Twice daily" -msgstr "" - -#: ../../mod/admin.php:538 ../../include/contact_selectors.php:59 -msgid "Daily" -msgstr "" - -#: ../../mod/admin.php:543 -msgid "Multi user instance" -msgstr "" - -#: ../../mod/admin.php:561 -msgid "Closed" -msgstr "" - -#: ../../mod/admin.php:562 -msgid "Requires approval" -msgstr "" - -#: ../../mod/admin.php:563 -msgid "Open" -msgstr "" - -#: ../../mod/admin.php:567 -msgid "No SSL policy, links will track page SSL state" -msgstr "" - -#: ../../mod/admin.php:568 -msgid "Force all links to use SSL" -msgstr "" - -#: ../../mod/admin.php:569 -msgid "Self-signed certificate, use SSL for local links only (discouraged)" -msgstr "" - -#: ../../mod/admin.php:576 ../../mod/admin.php:1062 ../../mod/admin.php:1262 -#: ../../mod/admin.php:1349 ../../mod/settings.php:609 -#: ../../mod/settings.php:719 ../../mod/settings.php:793 -#: ../../mod/settings.php:872 ../../mod/settings.php:1104 -msgid "Save Settings" -msgstr "" - -#: ../../mod/admin.php:577 ../../mod/register.php:265 -msgid "Registration" -msgstr "" - -#: ../../mod/admin.php:578 -msgid "File upload" -msgstr "" - -#: ../../mod/admin.php:579 -msgid "Policies" -msgstr "" - -#: ../../mod/admin.php:580 -msgid "Advanced" -msgstr "" - -#: ../../mod/admin.php:581 -msgid "Performance" -msgstr "" - -#: ../../mod/admin.php:582 -msgid "" -"Relocate - WARNING: advanced function. Could make this server unreachable." -msgstr "" - -#: ../../mod/admin.php:585 -msgid "Site name" -msgstr "" - -#: ../../mod/admin.php:586 -msgid "Banner/Logo" -msgstr "" - -#: ../../mod/admin.php:587 -msgid "Additional Info" -msgstr "" - -#: ../../mod/admin.php:587 -msgid "" -"For public servers: you can add additional information here that will be " -"listed at dir.friendica.com/siteinfo." -msgstr "" - -#: ../../mod/admin.php:588 -msgid "System language" -msgstr "" - -#: ../../mod/admin.php:589 -msgid "System theme" -msgstr "" - -#: ../../mod/admin.php:589 -msgid "" -"Default system theme - may be over-ridden by user profiles - change theme settings" -msgstr "" - -#: ../../mod/admin.php:590 -msgid "Mobile system theme" -msgstr "" - -#: ../../mod/admin.php:590 -msgid "Theme for mobile devices" -msgstr "" - -#: ../../mod/admin.php:591 -msgid "SSL link policy" -msgstr "" - -#: ../../mod/admin.php:591 -msgid "Determines whether generated links should be forced to use SSL" -msgstr "" - -#: ../../mod/admin.php:592 -msgid "Old style 'Share'" -msgstr "" - -#: ../../mod/admin.php:592 -msgid "Deactivates the bbcode element 'share' for repeating items." -msgstr "" - -#: ../../mod/admin.php:593 -msgid "Hide help entry from navigation menu" -msgstr "" - -#: ../../mod/admin.php:593 -msgid "" -"Hides the menu entry for the Help pages from the navigation menu. You can " -"still access it calling /help directly." -msgstr "" - -#: ../../mod/admin.php:594 -msgid "Single user instance" -msgstr "" - -#: ../../mod/admin.php:594 -msgid "Make this instance multi-user or single-user for the named user" -msgstr "" - -#: ../../mod/admin.php:595 -msgid "Maximum image size" -msgstr "" - -#: ../../mod/admin.php:595 -msgid "" -"Maximum size in bytes of uploaded images. Default is 0, which means no " -"limits." -msgstr "" - -#: ../../mod/admin.php:596 -msgid "Maximum image length" -msgstr "" - -#: ../../mod/admin.php:596 -msgid "" -"Maximum length in pixels of the longest side of uploaded images. Default is " -"-1, which means no limits." -msgstr "" - -#: ../../mod/admin.php:597 -msgid "JPEG image quality" -msgstr "" - -#: ../../mod/admin.php:597 -msgid "" -"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " -"100, which is full quality." -msgstr "" - -#: ../../mod/admin.php:599 -msgid "Register policy" -msgstr "" - -#: ../../mod/admin.php:600 -msgid "Maximum Daily Registrations" -msgstr "" - -#: ../../mod/admin.php:600 -msgid "" -"If registration is permitted above, this sets the maximum number of new user " -"registrations to accept per day. If register is set to closed, this setting " -"has no effect." -msgstr "" - -#: ../../mod/admin.php:601 -msgid "Register text" -msgstr "" - -#: ../../mod/admin.php:601 -msgid "Will be displayed prominently on the registration page." -msgstr "" - -#: ../../mod/admin.php:602 -msgid "Accounts abandoned after x days" -msgstr "" - -#: ../../mod/admin.php:602 -msgid "" -"Will not waste system resources polling external sites for abandonded " -"accounts. Enter 0 for no time limit." -msgstr "" - -#: ../../mod/admin.php:603 -msgid "Allowed friend domains" -msgstr "" - -#: ../../mod/admin.php:603 -msgid "" -"Comma separated list of domains which are allowed to establish friendships " -"with this site. Wildcards are accepted. Empty to allow any domains" -msgstr "" - -#: ../../mod/admin.php:604 -msgid "Allowed email domains" -msgstr "" - -#: ../../mod/admin.php:604 -msgid "" -"Comma separated list of domains which are allowed in email addresses for " -"registrations to this site. Wildcards are accepted. Empty to allow any " -"domains" -msgstr "" - -#: ../../mod/admin.php:605 -msgid "Block public" -msgstr "" - -#: ../../mod/admin.php:605 -msgid "" -"Check to block public access to all otherwise public personal pages on this " -"site unless you are currently logged in." -msgstr "" - -#: ../../mod/admin.php:606 -msgid "Force publish" -msgstr "" - -#: ../../mod/admin.php:606 -msgid "" -"Check to force all profiles on this site to be listed in the site directory." -msgstr "" - -#: ../../mod/admin.php:607 -msgid "Global directory update URL" -msgstr "" - -#: ../../mod/admin.php:607 -msgid "" -"URL to update the global directory. If this is not set, the global directory " -"is completely unavailable to the application." -msgstr "" - -#: ../../mod/admin.php:608 -msgid "Allow threaded items" -msgstr "" - -#: ../../mod/admin.php:608 -msgid "Allow infinite level threading for items on this site." -msgstr "" - -#: ../../mod/admin.php:609 -msgid "Private posts by default for new users" -msgstr "" - -#: ../../mod/admin.php:609 -msgid "" -"Set default post permissions for all new members to the default privacy " -"group rather than public." -msgstr "" - -#: ../../mod/admin.php:610 -msgid "Don't include post content in email notifications" -msgstr "" - -#: ../../mod/admin.php:610 -msgid "" -"Don't include the content of a post/comment/private message/etc. in the " -"email notifications that are sent out from this site, as a privacy measure." -msgstr "" - -#: ../../mod/admin.php:611 -msgid "Disallow public access to addons listed in the apps menu." -msgstr "" - -#: ../../mod/admin.php:611 -msgid "" -"Checking this box will restrict addons listed in the apps menu to members " -"only." -msgstr "" - -#: ../../mod/admin.php:612 -msgid "Don't embed private images in posts" -msgstr "" - -#: ../../mod/admin.php:612 -msgid "" -"Don't replace locally-hosted private photos in posts with an embedded copy " -"of the image. This means that contacts who receive posts containing private " -"photos will have to authenticate and load each image, which may take a while." -msgstr "" - -#: ../../mod/admin.php:613 -msgid "Allow Users to set remote_self" -msgstr "" - -#: ../../mod/admin.php:613 -msgid "" -"With checking this, every user is allowed to mark every contact as a " -"remote_self in the repair contact dialog. Setting this flag on a contact " -"causes mirroring every posting of that contact in the users stream." -msgstr "" - -#: ../../mod/admin.php:614 -msgid "Block multiple registrations" -msgstr "" - -#: ../../mod/admin.php:614 -msgid "Disallow users to register additional accounts for use as pages." -msgstr "" - -#: ../../mod/admin.php:615 -msgid "OpenID support" -msgstr "" - -#: ../../mod/admin.php:615 -msgid "OpenID support for registration and logins." -msgstr "" - -#: ../../mod/admin.php:616 -msgid "Fullname check" -msgstr "" - -#: ../../mod/admin.php:616 -msgid "" -"Force users to register with a space between firstname and lastname in Full " -"name, as an antispam measure" -msgstr "" - -#: ../../mod/admin.php:617 -msgid "UTF-8 Regular expressions" -msgstr "" - -#: ../../mod/admin.php:617 -msgid "Use PHP UTF8 regular expressions" -msgstr "" - -#: ../../mod/admin.php:618 -msgid "Show Community Page" -msgstr "" - -#: ../../mod/admin.php:618 -msgid "" -"Display a Community page showing all recent public postings on this site." -msgstr "" - -#: ../../mod/admin.php:619 -msgid "Enable OStatus support" -msgstr "" - -#: ../../mod/admin.php:619 -msgid "" -"Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " -"communications in OStatus are public, so privacy warnings will be " -"occasionally displayed." -msgstr "" - -#: ../../mod/admin.php:620 -msgid "OStatus conversation completion interval" -msgstr "" - -#: ../../mod/admin.php:620 -msgid "" -"How often shall the poller check for new entries in OStatus conversations? " -"This can be a very ressource task." -msgstr "" - -#: ../../mod/admin.php:621 -msgid "Enable Diaspora support" -msgstr "" - -#: ../../mod/admin.php:621 -msgid "Provide built-in Diaspora network compatibility." -msgstr "" - -#: ../../mod/admin.php:622 -msgid "Only allow Friendica contacts" -msgstr "" - -#: ../../mod/admin.php:622 -msgid "" -"All contacts must use Friendica protocols. All other built-in communication " -"protocols disabled." -msgstr "" - -#: ../../mod/admin.php:623 -msgid "Verify SSL" -msgstr "" - -#: ../../mod/admin.php:623 -msgid "" -"If you wish, you can turn on strict certificate checking. This will mean you " -"cannot connect (at all) to self-signed SSL sites." -msgstr "" - -#: ../../mod/admin.php:624 -msgid "Proxy user" -msgstr "" - -#: ../../mod/admin.php:625 -msgid "Proxy URL" -msgstr "" - -#: ../../mod/admin.php:626 -msgid "Network timeout" -msgstr "" - -#: ../../mod/admin.php:626 -msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." -msgstr "" - -#: ../../mod/admin.php:627 -msgid "Delivery interval" -msgstr "" - -#: ../../mod/admin.php:627 -msgid "" -"Delay background delivery processes by this many seconds to reduce system " -"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " -"for large dedicated servers." -msgstr "" - -#: ../../mod/admin.php:628 -msgid "Poll interval" -msgstr "" - -#: ../../mod/admin.php:628 -msgid "" -"Delay background polling processes by this many seconds to reduce system " -"load. If 0, use delivery interval." -msgstr "" - -#: ../../mod/admin.php:629 -msgid "Maximum Load Average" -msgstr "" - -#: ../../mod/admin.php:629 -msgid "" -"Maximum system load before delivery and poll processes are deferred - " -"default 50." -msgstr "" - -#: ../../mod/admin.php:631 -msgid "Use MySQL full text engine" -msgstr "" - -#: ../../mod/admin.php:631 -msgid "" -"Activates the full text engine. Speeds up search - but can only search for " -"four and more characters." -msgstr "" - -#: ../../mod/admin.php:632 -msgid "Suppress Language" -msgstr "" - -#: ../../mod/admin.php:632 -msgid "Suppress language information in meta information about a posting." -msgstr "" - -#: ../../mod/admin.php:633 -msgid "Path to item cache" -msgstr "" - -#: ../../mod/admin.php:634 -msgid "Cache duration in seconds" -msgstr "" - -#: ../../mod/admin.php:634 -msgid "" -"How long should the cache files be hold? Default value is 86400 seconds (One " -"day)." -msgstr "" - -#: ../../mod/admin.php:635 -msgid "Maximum numbers of comments per post" -msgstr "" - -#: ../../mod/admin.php:635 -msgid "How much comments should be shown for each post? Default value is 100." -msgstr "" - -#: ../../mod/admin.php:636 -msgid "Path for lock file" -msgstr "" - -#: ../../mod/admin.php:637 -msgid "Temp path" -msgstr "" - -#: ../../mod/admin.php:638 -msgid "Base path to installation" -msgstr "" - -#: ../../mod/admin.php:640 -msgid "New base url" -msgstr "" - -#: ../../mod/admin.php:658 -msgid "Update has been marked successful" -msgstr "" - -#: ../../mod/admin.php:668 -#, php-format -msgid "Executing %s failed. Check system logs." -msgstr "" - -#: ../../mod/admin.php:671 -#, php-format -msgid "Update %s was successfully applied." -msgstr "" - -#: ../../mod/admin.php:675 -#, php-format -msgid "Update %s did not return a status. Unknown if it succeeded." -msgstr "" - -#: ../../mod/admin.php:678 -#, php-format -msgid "Update function %s could not be found." -msgstr "" - -#: ../../mod/admin.php:693 -msgid "No failed updates." -msgstr "" - -#: ../../mod/admin.php:697 -msgid "Failed Updates" -msgstr "" - -#: ../../mod/admin.php:698 -msgid "" -"This does not include updates prior to 1139, which did not return a status." -msgstr "" - -#: ../../mod/admin.php:699 -msgid "Mark success (if update was manually applied)" -msgstr "" - -#: ../../mod/admin.php:700 -msgid "Attempt to execute this update step automatically" -msgstr "" - -#: ../../mod/admin.php:740 ../../mod/register.php:92 ../../mod/regmod.php:54 -#, php-format -msgid "Registration details for %s" -msgstr "" - -#: ../../mod/admin.php:746 -msgid "Registration successful. Email send to user" -msgstr "" - -#: ../../mod/admin.php:756 -#, php-format -msgid "%s user blocked/unblocked" -msgid_plural "%s users blocked/unblocked" -msgstr[0] "" -msgstr[1] "" - -#: ../../mod/admin.php:763 -#, php-format -msgid "%s user deleted" -msgid_plural "%s users deleted" -msgstr[0] "" -msgstr[1] "" - -#: ../../mod/admin.php:802 -#, php-format -msgid "User '%s' deleted" -msgstr "" - -#: ../../mod/admin.php:810 -#, php-format -msgid "User '%s' unblocked" -msgstr "" - -#: ../../mod/admin.php:810 -#, php-format -msgid "User '%s' blocked" -msgstr "" - -#: ../../mod/admin.php:905 -msgid "Add User" -msgstr "" - -#: ../../mod/admin.php:906 -msgid "select all" -msgstr "" - -#: ../../mod/admin.php:907 -msgid "User registrations waiting for confirm" -msgstr "" - -#: ../../mod/admin.php:908 -msgid "User waiting for permanent deletion" -msgstr "" - -#: ../../mod/admin.php:909 -msgid "Request date" -msgstr "" - -#: ../../mod/admin.php:909 ../../mod/admin.php:921 ../../mod/admin.php:922 -#: ../../mod/admin.php:937 ../../include/contact_selectors.php:79 -#: ../../include/contact_selectors.php:86 -msgid "Email" -msgstr "" - -#: ../../mod/admin.php:910 -msgid "No registrations." -msgstr "" - -#: ../../mod/admin.php:912 -msgid "Deny" -msgstr "" - -#: ../../mod/admin.php:916 -msgid "Site admin" -msgstr "" - -#: ../../mod/admin.php:917 -msgid "Account expired" -msgstr "" - -#: ../../mod/admin.php:920 -msgid "New User" -msgstr "" - -#: ../../mod/admin.php:921 ../../mod/admin.php:922 -msgid "Register date" -msgstr "" - -#: ../../mod/admin.php:921 ../../mod/admin.php:922 -msgid "Last login" -msgstr "" - -#: ../../mod/admin.php:921 ../../mod/admin.php:922 -msgid "Last item" -msgstr "" - -#: ../../mod/admin.php:921 -msgid "Deleted since" -msgstr "" - -#: ../../mod/admin.php:922 ../../mod/settings.php:36 -msgid "Account" -msgstr "" - -#: ../../mod/admin.php:924 -msgid "" -"Selected users will be deleted!\\n\\nEverything these users had posted on " -"this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "" - -#: ../../mod/admin.php:925 -msgid "" -"The user {0} will be deleted!\\n\\nEverything this user has posted on this " -"site will be permanently deleted!\\n\\nAre you sure?" -msgstr "" - -#: ../../mod/admin.php:935 -msgid "Name of the new user." -msgstr "" - -#: ../../mod/admin.php:936 -msgid "Nickname" -msgstr "" - -#: ../../mod/admin.php:936 -msgid "Nickname of the new user." -msgstr "" - -#: ../../mod/admin.php:937 -msgid "Email address of the new user." -msgstr "" - -#: ../../mod/admin.php:970 -#, php-format -msgid "Plugin %s disabled." -msgstr "" - -#: ../../mod/admin.php:974 -#, php-format -msgid "Plugin %s enabled." -msgstr "" - -#: ../../mod/admin.php:984 ../../mod/admin.php:1198 -msgid "Disable" -msgstr "" - -#: ../../mod/admin.php:986 ../../mod/admin.php:1200 -msgid "Enable" -msgstr "" - -#: ../../mod/admin.php:1009 ../../mod/admin.php:1228 -msgid "Toggle" -msgstr "" - -#: ../../mod/admin.php:1017 ../../mod/admin.php:1238 -msgid "Author: " -msgstr "" - -#: ../../mod/admin.php:1018 ../../mod/admin.php:1239 -msgid "Maintainer: " -msgstr "" - -#: ../../mod/admin.php:1158 -msgid "No themes found." -msgstr "" - -#: ../../mod/admin.php:1220 -msgid "Screenshot" -msgstr "" - -#: ../../mod/admin.php:1266 -msgid "[Experimental]" -msgstr "" - -#: ../../mod/admin.php:1267 -msgid "[Unsupported]" -msgstr "" - -#: ../../mod/admin.php:1294 -msgid "Log settings updated." -msgstr "" - -#: ../../mod/admin.php:1350 -msgid "Clear" -msgstr "" - -#: ../../mod/admin.php:1356 -msgid "Enable Debugging" -msgstr "" - -#: ../../mod/admin.php:1357 -msgid "Log file" -msgstr "" - -#: ../../mod/admin.php:1357 -msgid "" -"Must be writable by web server. Relative to your Friendica top-level " -"directory." -msgstr "" - -#: ../../mod/admin.php:1358 -msgid "Log level" -msgstr "" - -#: ../../mod/admin.php:1408 -msgid "Close" -msgstr "" - -#: ../../mod/admin.php:1414 -msgid "FTP Host" -msgstr "" - -#: ../../mod/admin.php:1415 -msgid "FTP Path" -msgstr "" - -#: ../../mod/admin.php:1416 -msgid "FTP User" -msgstr "" - -#: ../../mod/admin.php:1417 -msgid "FTP Password" +#: ../../mod/suggest.php:90 +msgid "Ignore/Hide" msgstr "" #: ../../mod/network.php:136 msgid "Search Results For:" msgstr "" -#: ../../mod/network.php:179 ../../mod/search.php:21 +#: ../../mod/network.php:179 ../../mod/_search.php:21 ../../mod/search.php:21 msgid "Remove term" msgstr "" -#: ../../mod/network.php:188 ../../mod/search.php:30 +#: ../../mod/network.php:188 ../../mod/_search.php:30 ../../mod/search.php:30 #: ../../include/features.php:42 msgid "Saved Searches" msgstr "" @@ -2645,6 +1537,10 @@ msgstr "" msgid "Sort by Post Date" msgstr "" +#: ../../mod/network.php:365 ../../mod/notifications.php:88 +msgid "Personal" +msgstr "" + #: ../../mod/network.php:368 msgid "Posts that mention or involve you" msgstr "" @@ -2709,278 +1605,6 @@ msgstr "" msgid "Invalid contact." msgstr "" -#: ../../mod/allfriends.php:34 -#, php-format -msgid "Friends of %s" -msgstr "" - -#: ../../mod/allfriends.php:40 -msgid "No friends to display." -msgstr "" - -#: ../../mod/events.php:66 -msgid "Event title and start time are required." -msgstr "" - -#: ../../mod/events.php:291 -msgid "l, F j" -msgstr "" - -#: ../../mod/events.php:313 -msgid "Edit event" -msgstr "" - -#: ../../mod/events.php:335 ../../include/text.php:1633 -#: ../../include/text.php:1644 -msgid "link to source" -msgstr "" - -#: ../../mod/events.php:370 ../../boot.php:2016 ../../include/nav.php:79 -#: ../../view/theme/diabook/theme.php:127 -msgid "Events" -msgstr "" - -#: ../../mod/events.php:371 -msgid "Create New Event" -msgstr "" - -#: ../../mod/events.php:372 -msgid "Previous" -msgstr "" - -#: ../../mod/events.php:373 ../../mod/install.php:207 -msgid "Next" -msgstr "" - -#: ../../mod/events.php:446 -msgid "hour:minute" -msgstr "" - -#: ../../mod/events.php:456 -msgid "Event details" -msgstr "" - -#: ../../mod/events.php:457 -#, php-format -msgid "Format is %s %s. Starting date and Title are required." -msgstr "" - -#: ../../mod/events.php:459 -msgid "Event Starts:" -msgstr "" - -#: ../../mod/events.php:459 ../../mod/events.php:473 -msgid "Required" -msgstr "" - -#: ../../mod/events.php:462 -msgid "Finish date/time is not known or not relevant" -msgstr "" - -#: ../../mod/events.php:464 -msgid "Event Finishes:" -msgstr "" - -#: ../../mod/events.php:467 -msgid "Adjust for viewer timezone" -msgstr "" - -#: ../../mod/events.php:469 -msgid "Description:" -msgstr "" - -#: ../../mod/events.php:471 ../../mod/directory.php:134 ../../boot.php:1526 -#: ../../include/bb2diaspora.php:156 ../../include/event.php:40 -msgid "Location:" -msgstr "" - -#: ../../mod/events.php:473 -msgid "Title:" -msgstr "" - -#: ../../mod/events.php:475 -msgid "Share this event" -msgstr "" - -#: ../../mod/content.php:437 ../../mod/content.php:739 -#: ../../mod/photos.php:1649 ../../object/Item.php:126 -#: ../../include/conversation.php:612 -msgid "Select" -msgstr "" - -#: ../../mod/content.php:471 ../../mod/content.php:851 -#: ../../mod/content.php:852 ../../object/Item.php:307 -#: ../../object/Item.php:308 ../../include/conversation.php:653 -#, php-format -msgid "View %s's profile @ %s" -msgstr "" - -#: ../../mod/content.php:481 ../../mod/content.php:863 -#: ../../object/Item.php:321 ../../include/conversation.php:673 -#, php-format -msgid "%s from %s" -msgstr "" - -#: ../../mod/content.php:496 ../../include/conversation.php:688 -msgid "View in context" -msgstr "" - -#: ../../mod/content.php:602 ../../object/Item.php:367 -#, php-format -msgid "%d comment" -msgid_plural "%d comments" -msgstr[0] "" -msgstr[1] "" - -#: ../../mod/content.php:604 ../../object/Item.php:369 -#: ../../object/Item.php:382 ../../include/text.php:1959 -msgid "comment" -msgid_plural "comments" -msgstr[0] "" -msgstr[1] "" - -#: ../../mod/content.php:605 ../../boot.php:703 ../../object/Item.php:370 -#: ../../include/contact_widgets.php:204 -msgid "show more" -msgstr "" - -#: ../../mod/content.php:619 ../../mod/photos.php:1355 -#: ../../object/Item.php:113 -msgid "Private Message" -msgstr "" - -#: ../../mod/content.php:683 ../../mod/photos.php:1538 -#: ../../object/Item.php:213 -msgid "I like this (toggle)" -msgstr "" - -#: ../../mod/content.php:683 ../../object/Item.php:213 -msgid "like" -msgstr "" - -#: ../../mod/content.php:684 ../../mod/photos.php:1539 -#: ../../object/Item.php:214 -msgid "I don't like this (toggle)" -msgstr "" - -#: ../../mod/content.php:684 ../../object/Item.php:214 -msgid "dislike" -msgstr "" - -#: ../../mod/content.php:686 ../../object/Item.php:216 -msgid "Share this" -msgstr "" - -#: ../../mod/content.php:686 ../../object/Item.php:216 -msgid "share" -msgstr "" - -#: ../../mod/content.php:706 ../../mod/photos.php:1558 -#: ../../mod/photos.php:1602 ../../mod/photos.php:1690 -#: ../../object/Item.php:655 -msgid "This is you" -msgstr "" - -#: ../../mod/content.php:708 ../../mod/photos.php:1560 -#: ../../mod/photos.php:1604 ../../mod/photos.php:1692 ../../boot.php:702 -#: ../../object/Item.php:341 ../../object/Item.php:657 -msgid "Comment" -msgstr "" - -#: ../../mod/content.php:710 ../../object/Item.php:659 -msgid "Bold" -msgstr "" - -#: ../../mod/content.php:711 ../../object/Item.php:660 -msgid "Italic" -msgstr "" - -#: ../../mod/content.php:712 ../../object/Item.php:661 -msgid "Underline" -msgstr "" - -#: ../../mod/content.php:713 ../../object/Item.php:662 -msgid "Quote" -msgstr "" - -#: ../../mod/content.php:714 ../../object/Item.php:663 -msgid "Code" -msgstr "" - -#: ../../mod/content.php:715 ../../object/Item.php:664 -msgid "Image" -msgstr "" - -#: ../../mod/content.php:716 ../../object/Item.php:665 -msgid "Link" -msgstr "" - -#: ../../mod/content.php:717 ../../object/Item.php:666 -msgid "Video" -msgstr "" - -#: ../../mod/content.php:718 ../../mod/editpost.php:145 -#: ../../mod/photos.php:1562 ../../mod/photos.php:1606 -#: ../../mod/photos.php:1694 ../../object/Item.php:667 -#: ../../include/conversation.php:1124 -msgid "Preview" -msgstr "" - -#: ../../mod/content.php:727 ../../mod/settings.php:671 -#: ../../mod/editpost.php:109 ../../object/Item.php:117 -msgid "Edit" -msgstr "" - -#: ../../mod/content.php:752 ../../object/Item.php:192 -msgid "add star" -msgstr "" - -#: ../../mod/content.php:753 ../../object/Item.php:193 -msgid "remove star" -msgstr "" - -#: ../../mod/content.php:754 ../../object/Item.php:194 -msgid "toggle star status" -msgstr "" - -#: ../../mod/content.php:757 ../../object/Item.php:197 -msgid "starred" -msgstr "" - -#: ../../mod/content.php:758 ../../object/Item.php:202 -msgid "add tag" -msgstr "" - -#: ../../mod/content.php:762 ../../object/Item.php:130 -msgid "save to folder" -msgstr "" - -#: ../../mod/content.php:853 ../../object/Item.php:309 -msgid "to" -msgstr "" - -#: ../../mod/content.php:854 ../../object/Item.php:311 -msgid "Wall-to-Wall" -msgstr "" - -#: ../../mod/content.php:855 ../../object/Item.php:312 -msgid "via Wall-To-Wall:" -msgstr "" - -#: ../../mod/removeme.php:46 ../../mod/removeme.php:49 -msgid "Remove My Account" -msgstr "" - -#: ../../mod/removeme.php:47 -msgid "" -"This will completely remove your account. Once this has been done it is not " -"recoverable." -msgstr "" - -#: ../../mod/removeme.php:48 -msgid "Please enter your password for verification:" -msgstr "" - #: ../../mod/install.php:117 msgid "Friendica Communications Server - Setup" msgstr "" @@ -3012,6 +1636,10 @@ msgstr "" msgid "System check" msgstr "" +#: ../../mod/install.php:207 ../../mod/events.php:373 +msgid "Next" +msgstr "" + #: ../../mod/install.php:208 msgid "Check again" msgstr "" @@ -3271,722 +1899,1219 @@ msgid "" "IMPORTANT: You will need to [manually] setup a scheduled task for the poller." msgstr "" -#: ../../mod/wallmessage.php:42 ../../mod/wallmessage.php:112 -#, php-format -msgid "Number of daily wall messages for %s exceeded. Message failed." +#: ../../mod/admin.php:55 +msgid "Theme settings updated." msgstr "" -#: ../../mod/wallmessage.php:59 -msgid "Unable to check your home location." +#: ../../mod/admin.php:102 ../../mod/admin.php:583 +msgid "Site" msgstr "" -#: ../../mod/wallmessage.php:86 ../../mod/wallmessage.php:95 -msgid "No recipient." +#: ../../mod/admin.php:103 ../../mod/admin.php:913 ../../mod/admin.php:928 +msgid "Users" msgstr "" -#: ../../mod/wallmessage.php:143 -#, php-format +#: ../../mod/admin.php:104 ../../mod/admin.php:1017 ../../mod/admin.php:1070 +#: ../../mod/settings.php:57 +msgid "Plugins" +msgstr "" + +#: ../../mod/admin.php:105 ../../mod/admin.php:1236 ../../mod/admin.php:1270 +msgid "Themes" +msgstr "" + +#: ../../mod/admin.php:106 +msgid "DB updates" +msgstr "" + +#: ../../mod/admin.php:121 ../../mod/admin.php:128 ../../mod/admin.php:1357 +msgid "Logs" +msgstr "" + +#: ../../mod/admin.php:126 ../../include/nav.php:182 +msgid "Admin" +msgstr "" + +#: ../../mod/admin.php:127 +msgid "Plugin Features" +msgstr "" + +#: ../../mod/admin.php:129 +msgid "User registrations waiting for confirmation" +msgstr "" + +#: ../../mod/admin.php:188 ../../mod/admin.php:867 +msgid "Normal Account" +msgstr "" + +#: ../../mod/admin.php:189 ../../mod/admin.php:868 +msgid "Soapbox Account" +msgstr "" + +#: ../../mod/admin.php:190 ../../mod/admin.php:869 +msgid "Community/Celebrity Account" +msgstr "" + +#: ../../mod/admin.php:191 ../../mod/admin.php:870 +msgid "Automatic Friend Account" +msgstr "" + +#: ../../mod/admin.php:192 +msgid "Blog Account" +msgstr "" + +#: ../../mod/admin.php:193 +msgid "Private Forum" +msgstr "" + +#: ../../mod/admin.php:212 +msgid "Message queues" +msgstr "" + +#: ../../mod/admin.php:217 ../../mod/admin.php:582 ../../mod/admin.php:912 +#: ../../mod/admin.php:1016 ../../mod/admin.php:1069 ../../mod/admin.php:1235 +#: ../../mod/admin.php:1269 ../../mod/admin.php:1356 +msgid "Administration" +msgstr "" + +#: ../../mod/admin.php:218 +msgid "Summary" +msgstr "" + +#: ../../mod/admin.php:220 +msgid "Registered users" +msgstr "" + +#: ../../mod/admin.php:222 +msgid "Pending registrations" +msgstr "" + +#: ../../mod/admin.php:223 +msgid "Version" +msgstr "" + +#: ../../mod/admin.php:225 +msgid "Active plugins" +msgstr "" + +#: ../../mod/admin.php:248 +msgid "Can not parse base url. Must have at least ://" +msgstr "" + +#: ../../mod/admin.php:490 +msgid "Site settings updated." +msgstr "" + +#: ../../mod/admin.php:519 ../../mod/settings.php:825 +msgid "No special theme for mobile devices" +msgstr "" + +#: ../../mod/admin.php:536 ../../mod/contacts.php:408 +msgid "Never" +msgstr "" + +#: ../../mod/admin.php:537 +msgid "At post arrival" +msgstr "" + +#: ../../mod/admin.php:538 ../../include/contact_selectors.php:56 +msgid "Frequently" +msgstr "" + +#: ../../mod/admin.php:539 ../../include/contact_selectors.php:57 +msgid "Hourly" +msgstr "" + +#: ../../mod/admin.php:540 ../../include/contact_selectors.php:58 +msgid "Twice daily" +msgstr "" + +#: ../../mod/admin.php:541 ../../include/contact_selectors.php:59 +msgid "Daily" +msgstr "" + +#: ../../mod/admin.php:546 +msgid "Multi user instance" +msgstr "" + +#: ../../mod/admin.php:569 +msgid "Closed" +msgstr "" + +#: ../../mod/admin.php:570 +msgid "Requires approval" +msgstr "" + +#: ../../mod/admin.php:571 +msgid "Open" +msgstr "" + +#: ../../mod/admin.php:575 +msgid "No SSL policy, links will track page SSL state" +msgstr "" + +#: ../../mod/admin.php:576 +msgid "Force all links to use SSL" +msgstr "" + +#: ../../mod/admin.php:577 +msgid "Self-signed certificate, use SSL for local links only (discouraged)" +msgstr "" + +#: ../../mod/admin.php:584 ../../mod/admin.php:1071 ../../mod/admin.php:1271 +#: ../../mod/admin.php:1358 ../../mod/settings.php:611 +#: ../../mod/settings.php:721 ../../mod/settings.php:795 +#: ../../mod/settings.php:877 ../../mod/settings.php:1110 +msgid "Save Settings" +msgstr "" + +#: ../../mod/admin.php:586 +msgid "File upload" +msgstr "" + +#: ../../mod/admin.php:587 +msgid "Policies" +msgstr "" + +#: ../../mod/admin.php:588 +msgid "Advanced" +msgstr "" + +#: ../../mod/admin.php:589 +msgid "Performance" +msgstr "" + +#: ../../mod/admin.php:590 msgid "" -"If you wish for %s to respond, please check that the privacy settings on " -"your site allow private mail from unknown senders." +"Relocate - WARNING: advanced function. Could make this server unreachable." msgstr "" -#: ../../mod/help.php:79 -msgid "Help:" +#: ../../mod/admin.php:593 +msgid "Site name" msgstr "" -#: ../../mod/help.php:84 ../../include/nav.php:113 -msgid "Help" +#: ../../mod/admin.php:594 +msgid "Banner/Logo" msgstr "" -#: ../../mod/help.php:90 ../../index.php:247 -msgid "Not Found" +#: ../../mod/admin.php:595 +msgid "Additional Info" msgstr "" -#: ../../mod/help.php:93 ../../index.php:250 -msgid "Page not found." +#: ../../mod/admin.php:595 +msgid "" +"For public servers: you can add additional information here that will be " +"listed at dir.friendica.com/siteinfo." msgstr "" -#: ../../mod/dfrn_poll.php:103 ../../mod/dfrn_poll.php:536 +#: ../../mod/admin.php:596 +msgid "System language" +msgstr "" + +#: ../../mod/admin.php:597 +msgid "System theme" +msgstr "" + +#: ../../mod/admin.php:597 +msgid "" +"Default system theme - may be over-ridden by user profiles - change theme settings" +msgstr "" + +#: ../../mod/admin.php:598 +msgid "Mobile system theme" +msgstr "" + +#: ../../mod/admin.php:598 +msgid "Theme for mobile devices" +msgstr "" + +#: ../../mod/admin.php:599 +msgid "SSL link policy" +msgstr "" + +#: ../../mod/admin.php:599 +msgid "Determines whether generated links should be forced to use SSL" +msgstr "" + +#: ../../mod/admin.php:600 +msgid "Old style 'Share'" +msgstr "" + +#: ../../mod/admin.php:600 +msgid "Deactivates the bbcode element 'share' for repeating items." +msgstr "" + +#: ../../mod/admin.php:601 +msgid "Hide help entry from navigation menu" +msgstr "" + +#: ../../mod/admin.php:601 +msgid "" +"Hides the menu entry for the Help pages from the navigation menu. You can " +"still access it calling /help directly." +msgstr "" + +#: ../../mod/admin.php:602 +msgid "Single user instance" +msgstr "" + +#: ../../mod/admin.php:602 +msgid "Make this instance multi-user or single-user for the named user" +msgstr "" + +#: ../../mod/admin.php:603 +msgid "Maximum image size" +msgstr "" + +#: ../../mod/admin.php:603 +msgid "" +"Maximum size in bytes of uploaded images. Default is 0, which means no " +"limits." +msgstr "" + +#: ../../mod/admin.php:604 +msgid "Maximum image length" +msgstr "" + +#: ../../mod/admin.php:604 +msgid "" +"Maximum length in pixels of the longest side of uploaded images. Default is " +"-1, which means no limits." +msgstr "" + +#: ../../mod/admin.php:605 +msgid "JPEG image quality" +msgstr "" + +#: ../../mod/admin.php:605 +msgid "" +"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " +"100, which is full quality." +msgstr "" + +#: ../../mod/admin.php:607 +msgid "Register policy" +msgstr "" + +#: ../../mod/admin.php:608 +msgid "Maximum Daily Registrations" +msgstr "" + +#: ../../mod/admin.php:608 +msgid "" +"If registration is permitted above, this sets the maximum number of new user " +"registrations to accept per day. If register is set to closed, this setting " +"has no effect." +msgstr "" + +#: ../../mod/admin.php:609 +msgid "Register text" +msgstr "" + +#: ../../mod/admin.php:609 +msgid "Will be displayed prominently on the registration page." +msgstr "" + +#: ../../mod/admin.php:610 +msgid "Accounts abandoned after x days" +msgstr "" + +#: ../../mod/admin.php:610 +msgid "" +"Will not waste system resources polling external sites for abandonded " +"accounts. Enter 0 for no time limit." +msgstr "" + +#: ../../mod/admin.php:611 +msgid "Allowed friend domains" +msgstr "" + +#: ../../mod/admin.php:611 +msgid "" +"Comma separated list of domains which are allowed to establish friendships " +"with this site. Wildcards are accepted. Empty to allow any domains" +msgstr "" + +#: ../../mod/admin.php:612 +msgid "Allowed email domains" +msgstr "" + +#: ../../mod/admin.php:612 +msgid "" +"Comma separated list of domains which are allowed in email addresses for " +"registrations to this site. Wildcards are accepted. Empty to allow any " +"domains" +msgstr "" + +#: ../../mod/admin.php:613 +msgid "Block public" +msgstr "" + +#: ../../mod/admin.php:613 +msgid "" +"Check to block public access to all otherwise public personal pages on this " +"site unless you are currently logged in." +msgstr "" + +#: ../../mod/admin.php:614 +msgid "Force publish" +msgstr "" + +#: ../../mod/admin.php:614 +msgid "" +"Check to force all profiles on this site to be listed in the site directory." +msgstr "" + +#: ../../mod/admin.php:615 +msgid "Global directory update URL" +msgstr "" + +#: ../../mod/admin.php:615 +msgid "" +"URL to update the global directory. If this is not set, the global directory " +"is completely unavailable to the application." +msgstr "" + +#: ../../mod/admin.php:616 +msgid "Allow threaded items" +msgstr "" + +#: ../../mod/admin.php:616 +msgid "Allow infinite level threading for items on this site." +msgstr "" + +#: ../../mod/admin.php:617 +msgid "Private posts by default for new users" +msgstr "" + +#: ../../mod/admin.php:617 +msgid "" +"Set default post permissions for all new members to the default privacy " +"group rather than public." +msgstr "" + +#: ../../mod/admin.php:618 +msgid "Don't include post content in email notifications" +msgstr "" + +#: ../../mod/admin.php:618 +msgid "" +"Don't include the content of a post/comment/private message/etc. in the " +"email notifications that are sent out from this site, as a privacy measure." +msgstr "" + +#: ../../mod/admin.php:619 +msgid "Disallow public access to addons listed in the apps menu." +msgstr "" + +#: ../../mod/admin.php:619 +msgid "" +"Checking this box will restrict addons listed in the apps menu to members " +"only." +msgstr "" + +#: ../../mod/admin.php:620 +msgid "Don't embed private images in posts" +msgstr "" + +#: ../../mod/admin.php:620 +msgid "" +"Don't replace locally-hosted private photos in posts with an embedded copy " +"of the image. This means that contacts who receive posts containing private " +"photos will have to authenticate and load each image, which may take a while." +msgstr "" + +#: ../../mod/admin.php:621 +msgid "Allow Users to set remote_self" +msgstr "" + +#: ../../mod/admin.php:621 +msgid "" +"With checking this, every user is allowed to mark every contact as a " +"remote_self in the repair contact dialog. Setting this flag on a contact " +"causes mirroring every posting of that contact in the users stream." +msgstr "" + +#: ../../mod/admin.php:622 +msgid "Block multiple registrations" +msgstr "" + +#: ../../mod/admin.php:622 +msgid "Disallow users to register additional accounts for use as pages." +msgstr "" + +#: ../../mod/admin.php:623 +msgid "OpenID support" +msgstr "" + +#: ../../mod/admin.php:623 +msgid "OpenID support for registration and logins." +msgstr "" + +#: ../../mod/admin.php:624 +msgid "Fullname check" +msgstr "" + +#: ../../mod/admin.php:624 +msgid "" +"Force users to register with a space between firstname and lastname in Full " +"name, as an antispam measure" +msgstr "" + +#: ../../mod/admin.php:625 +msgid "UTF-8 Regular expressions" +msgstr "" + +#: ../../mod/admin.php:625 +msgid "Use PHP UTF8 regular expressions" +msgstr "" + +#: ../../mod/admin.php:626 +msgid "Show Community Page" +msgstr "" + +#: ../../mod/admin.php:626 +msgid "" +"Display a Community page showing all recent public postings on this site." +msgstr "" + +#: ../../mod/admin.php:627 +msgid "Enable OStatus support" +msgstr "" + +#: ../../mod/admin.php:627 +msgid "" +"Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " +"communications in OStatus are public, so privacy warnings will be " +"occasionally displayed." +msgstr "" + +#: ../../mod/admin.php:628 +msgid "OStatus conversation completion interval" +msgstr "" + +#: ../../mod/admin.php:628 +msgid "" +"How often shall the poller check for new entries in OStatus conversations? " +"This can be a very ressource task." +msgstr "" + +#: ../../mod/admin.php:629 +msgid "Enable Diaspora support" +msgstr "" + +#: ../../mod/admin.php:629 +msgid "Provide built-in Diaspora network compatibility." +msgstr "" + +#: ../../mod/admin.php:630 +msgid "Only allow Friendica contacts" +msgstr "" + +#: ../../mod/admin.php:630 +msgid "" +"All contacts must use Friendica protocols. All other built-in communication " +"protocols disabled." +msgstr "" + +#: ../../mod/admin.php:631 +msgid "Verify SSL" +msgstr "" + +#: ../../mod/admin.php:631 +msgid "" +"If you wish, you can turn on strict certificate checking. This will mean you " +"cannot connect (at all) to self-signed SSL sites." +msgstr "" + +#: ../../mod/admin.php:632 +msgid "Proxy user" +msgstr "" + +#: ../../mod/admin.php:633 +msgid "Proxy URL" +msgstr "" + +#: ../../mod/admin.php:634 +msgid "Network timeout" +msgstr "" + +#: ../../mod/admin.php:634 +msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." +msgstr "" + +#: ../../mod/admin.php:635 +msgid "Delivery interval" +msgstr "" + +#: ../../mod/admin.php:635 +msgid "" +"Delay background delivery processes by this many seconds to reduce system " +"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " +"for large dedicated servers." +msgstr "" + +#: ../../mod/admin.php:636 +msgid "Poll interval" +msgstr "" + +#: ../../mod/admin.php:636 +msgid "" +"Delay background polling processes by this many seconds to reduce system " +"load. If 0, use delivery interval." +msgstr "" + +#: ../../mod/admin.php:637 +msgid "Maximum Load Average" +msgstr "" + +#: ../../mod/admin.php:637 +msgid "" +"Maximum system load before delivery and poll processes are deferred - " +"default 50." +msgstr "" + +#: ../../mod/admin.php:639 +msgid "Use MySQL full text engine" +msgstr "" + +#: ../../mod/admin.php:639 +msgid "" +"Activates the full text engine. Speeds up search - but can only search for " +"four and more characters." +msgstr "" + +#: ../../mod/admin.php:640 +msgid "Suppress Language" +msgstr "" + +#: ../../mod/admin.php:640 +msgid "Suppress language information in meta information about a posting." +msgstr "" + +#: ../../mod/admin.php:641 +msgid "Path to item cache" +msgstr "" + +#: ../../mod/admin.php:642 +msgid "Cache duration in seconds" +msgstr "" + +#: ../../mod/admin.php:642 +msgid "" +"How long should the cache files be hold? Default value is 86400 seconds (One " +"day). To disable the item cache, set the value to -1." +msgstr "" + +#: ../../mod/admin.php:643 +msgid "Maximum numbers of comments per post" +msgstr "" + +#: ../../mod/admin.php:643 +msgid "How much comments should be shown for each post? Default value is 100." +msgstr "" + +#: ../../mod/admin.php:644 +msgid "Path for lock file" +msgstr "" + +#: ../../mod/admin.php:645 +msgid "Temp path" +msgstr "" + +#: ../../mod/admin.php:646 +msgid "Base path to installation" +msgstr "" + +#: ../../mod/admin.php:648 +msgid "New base url" +msgstr "" + +#: ../../mod/admin.php:650 +msgid "Enable noscrape" +msgstr "" + +#: ../../mod/admin.php:650 +msgid "" +"The noscrape feature speeds up directory submissions by using JSON data " +"instead of HTML scraping." +msgstr "" + +#: ../../mod/admin.php:667 +msgid "Update has been marked successful" +msgstr "" + +#: ../../mod/admin.php:677 #, php-format -msgid "%1$s welcomes %2$s" +msgid "Executing %s failed. Check system logs." msgstr "" -#: ../../mod/home.php:34 +#: ../../mod/admin.php:680 #, php-format -msgid "Welcome to %s" +msgid "Update %s was successfully applied." msgstr "" -#: ../../mod/wall_attach.php:75 -msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" -msgstr "" - -#: ../../mod/wall_attach.php:75 -msgid "Or - did you try to upload an empty file?" -msgstr "" - -#: ../../mod/wall_attach.php:81 +#: ../../mod/admin.php:684 #, php-format -msgid "File exceeds size limit of %d" +msgid "Update %s did not return a status. Unknown if it succeeded." msgstr "" -#: ../../mod/wall_attach.php:122 ../../mod/wall_attach.php:133 -msgid "File upload failed." +#: ../../mod/admin.php:687 +#, php-format +msgid "Update function %s could not be found." msgstr "" -#: ../../mod/match.php:12 -msgid "Profile Match" +#: ../../mod/admin.php:702 +msgid "No failed updates." msgstr "" -#: ../../mod/match.php:20 -msgid "No keywords to match. Please add keywords to your default profile." +#: ../../mod/admin.php:706 +msgid "Failed Updates" msgstr "" -#: ../../mod/match.php:57 -msgid "is interested in:" +#: ../../mod/admin.php:707 +msgid "" +"This does not include updates prior to 1139, which did not return a status." msgstr "" -#: ../../mod/match.php:58 ../../mod/suggest.php:88 ../../boot.php:1458 -#: ../../include/contact_widgets.php:9 -msgid "Connect" +#: ../../mod/admin.php:708 +msgid "Mark success (if update was manually applied)" +msgstr "" + +#: ../../mod/admin.php:709 +msgid "Attempt to execute this update step automatically" +msgstr "" + +#: ../../mod/admin.php:755 +msgid "Registration successful. Email send to user" +msgstr "" + +#: ../../mod/admin.php:765 +#, php-format +msgid "%s user blocked/unblocked" +msgid_plural "%s users blocked/unblocked" +msgstr[0] "" +msgstr[1] "" + +#: ../../mod/admin.php:772 +#, php-format +msgid "%s user deleted" +msgid_plural "%s users deleted" +msgstr[0] "" +msgstr[1] "" + +#: ../../mod/admin.php:811 +#, php-format +msgid "User '%s' deleted" +msgstr "" + +#: ../../mod/admin.php:819 +#, php-format +msgid "User '%s' unblocked" +msgstr "" + +#: ../../mod/admin.php:819 +#, php-format +msgid "User '%s' blocked" +msgstr "" + +#: ../../mod/admin.php:914 +msgid "Add User" +msgstr "" + +#: ../../mod/admin.php:915 +msgid "select all" +msgstr "" + +#: ../../mod/admin.php:916 +msgid "User registrations waiting for confirm" +msgstr "" + +#: ../../mod/admin.php:917 +msgid "User waiting for permanent deletion" +msgstr "" + +#: ../../mod/admin.php:918 +msgid "Request date" +msgstr "" + +#: ../../mod/admin.php:918 ../../mod/admin.php:930 ../../mod/admin.php:931 +#: ../../mod/admin.php:944 ../../mod/crepair.php:150 +#: ../../mod/settings.php:613 ../../mod/settings.php:639 +msgid "Name" +msgstr "" + +#: ../../mod/admin.php:918 ../../mod/admin.php:930 ../../mod/admin.php:931 +#: ../../mod/admin.php:946 ../../include/contact_selectors.php:79 +#: ../../include/contact_selectors.php:86 +msgid "Email" +msgstr "" + +#: ../../mod/admin.php:919 +msgid "No registrations." +msgstr "" + +#: ../../mod/admin.php:920 ../../mod/notifications.php:161 +#: ../../mod/notifications.php:208 +msgid "Approve" +msgstr "" + +#: ../../mod/admin.php:921 +msgid "Deny" +msgstr "" + +#: ../../mod/admin.php:923 ../../mod/contacts.php:431 +#: ../../mod/contacts.php:490 ../../mod/contacts.php:700 +msgid "Block" +msgstr "" + +#: ../../mod/admin.php:924 ../../mod/contacts.php:431 +#: ../../mod/contacts.php:490 ../../mod/contacts.php:700 +msgid "Unblock" +msgstr "" + +#: ../../mod/admin.php:925 +msgid "Site admin" +msgstr "" + +#: ../../mod/admin.php:926 +msgid "Account expired" +msgstr "" + +#: ../../mod/admin.php:929 +msgid "New User" +msgstr "" + +#: ../../mod/admin.php:930 ../../mod/admin.php:931 +msgid "Register date" +msgstr "" + +#: ../../mod/admin.php:930 ../../mod/admin.php:931 +msgid "Last login" +msgstr "" + +#: ../../mod/admin.php:930 ../../mod/admin.php:931 +msgid "Last item" +msgstr "" + +#: ../../mod/admin.php:930 +msgid "Deleted since" +msgstr "" + +#: ../../mod/admin.php:931 ../../mod/settings.php:36 +msgid "Account" +msgstr "" + +#: ../../mod/admin.php:933 +msgid "" +"Selected users will be deleted!\\n\\nEverything these users had posted on " +"this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "" + +#: ../../mod/admin.php:934 +msgid "" +"The user {0} will be deleted!\\n\\nEverything this user has posted on this " +"site will be permanently deleted!\\n\\nAre you sure?" +msgstr "" + +#: ../../mod/admin.php:944 +msgid "Name of the new user." +msgstr "" + +#: ../../mod/admin.php:945 +msgid "Nickname" +msgstr "" + +#: ../../mod/admin.php:945 +msgid "Nickname of the new user." +msgstr "" + +#: ../../mod/admin.php:946 +msgid "Email address of the new user." +msgstr "" + +#: ../../mod/admin.php:979 +#, php-format +msgid "Plugin %s disabled." +msgstr "" + +#: ../../mod/admin.php:983 +#, php-format +msgid "Plugin %s enabled." +msgstr "" + +#: ../../mod/admin.php:993 ../../mod/admin.php:1207 +msgid "Disable" +msgstr "" + +#: ../../mod/admin.php:995 ../../mod/admin.php:1209 +msgid "Enable" +msgstr "" + +#: ../../mod/admin.php:1018 ../../mod/admin.php:1237 +msgid "Toggle" +msgstr "" + +#: ../../mod/admin.php:1026 ../../mod/admin.php:1247 +msgid "Author: " +msgstr "" + +#: ../../mod/admin.php:1027 ../../mod/admin.php:1248 +msgid "Maintainer: " +msgstr "" + +#: ../../mod/admin.php:1167 +msgid "No themes found." +msgstr "" + +#: ../../mod/admin.php:1229 +msgid "Screenshot" +msgstr "" + +#: ../../mod/admin.php:1275 +msgid "[Experimental]" +msgstr "" + +#: ../../mod/admin.php:1276 +msgid "[Unsupported]" +msgstr "" + +#: ../../mod/admin.php:1303 +msgid "Log settings updated." +msgstr "" + +#: ../../mod/admin.php:1359 +msgid "Clear" +msgstr "" + +#: ../../mod/admin.php:1365 +msgid "Enable Debugging" +msgstr "" + +#: ../../mod/admin.php:1366 +msgid "Log file" +msgstr "" + +#: ../../mod/admin.php:1366 +msgid "" +"Must be writable by web server. Relative to your Friendica top-level " +"directory." +msgstr "" + +#: ../../mod/admin.php:1367 +msgid "Log level" +msgstr "" + +#: ../../mod/admin.php:1416 ../../mod/contacts.php:487 +msgid "Update now" +msgstr "" + +#: ../../mod/admin.php:1417 +msgid "Close" +msgstr "" + +#: ../../mod/admin.php:1423 +msgid "FTP Host" +msgstr "" + +#: ../../mod/admin.php:1424 +msgid "FTP Path" +msgstr "" + +#: ../../mod/admin.php:1425 +msgid "FTP User" +msgstr "" + +#: ../../mod/admin.php:1426 +msgid "FTP Password" +msgstr "" + +#: ../../mod/_search.php:99 ../../mod/search.php:99 ../../include/text.php:952 +#: ../../include/text.php:953 ../../include/nav.php:119 +msgid "Search" +msgstr "" + +#: ../../mod/_search.php:180 ../../mod/_search.php:206 +#: ../../mod/search.php:170 ../../mod/search.php:196 +#: ../../mod/community.php:62 ../../mod/community.php:71 +msgid "No results." +msgstr "" + +#: ../../mod/profile.php:180 +msgid "Tips for New Members" msgstr "" #: ../../mod/share.php:44 msgid "link" msgstr "" -#: ../../mod/community.php:23 -msgid "Not available." -msgstr "" - -#: ../../mod/community.php:32 ../../include/nav.php:128 -#: ../../view/theme/diabook/theme.php:129 -msgid "Community" -msgstr "" - -#: ../../mod/community.php:62 ../../mod/community.php:89 -#: ../../mod/search.php:170 ../../mod/search.php:196 -msgid "No results." -msgstr "" - -#: ../../mod/settings.php:29 ../../mod/photos.php:80 -msgid "everybody" -msgstr "" - -#: ../../mod/settings.php:41 -msgid "Additional features" -msgstr "" - -#: ../../mod/settings.php:46 -msgid "Display" -msgstr "" - -#: ../../mod/settings.php:52 ../../mod/settings.php:775 -msgid "Social Networks" -msgstr "" - -#: ../../mod/settings.php:62 ../../include/nav.php:167 -msgid "Delegations" -msgstr "" - -#: ../../mod/settings.php:67 -msgid "Connected apps" -msgstr "" - -#: ../../mod/settings.php:72 ../../mod/uexport.php:85 -msgid "Export personal data" -msgstr "" - -#: ../../mod/settings.php:77 -msgid "Remove account" -msgstr "" - -#: ../../mod/settings.php:129 -msgid "Missing some important data!" -msgstr "" - -#: ../../mod/settings.php:238 -msgid "Failed to connect with email account using the settings provided." -msgstr "" - -#: ../../mod/settings.php:243 -msgid "Email settings updated." -msgstr "" - -#: ../../mod/settings.php:258 -msgid "Features updated" -msgstr "" - -#: ../../mod/settings.php:319 -msgid "Relocate message has been send to your contacts" -msgstr "" - -#: ../../mod/settings.php:333 -msgid "Passwords do not match. Password unchanged." -msgstr "" - -#: ../../mod/settings.php:338 -msgid "Empty passwords are not allowed. Password unchanged." -msgstr "" - -#: ../../mod/settings.php:346 -msgid "Wrong password." -msgstr "" - -#: ../../mod/settings.php:357 -msgid "Password changed." -msgstr "" - -#: ../../mod/settings.php:359 -msgid "Password update failed. Please try again." -msgstr "" - -#: ../../mod/settings.php:424 -msgid " Please use a shorter name." -msgstr "" - -#: ../../mod/settings.php:426 -msgid " Name too short." -msgstr "" - -#: ../../mod/settings.php:435 -msgid "Wrong Password" -msgstr "" - -#: ../../mod/settings.php:440 -msgid " Not valid email." -msgstr "" - -#: ../../mod/settings.php:446 -msgid " Cannot change to that email." -msgstr "" - -#: ../../mod/settings.php:501 -msgid "Private forum has no privacy permissions. Using default privacy group." -msgstr "" - -#: ../../mod/settings.php:505 -msgid "Private forum has no privacy permissions and no default privacy group." -msgstr "" - -#: ../../mod/settings.php:535 -msgid "Settings updated." -msgstr "" - -#: ../../mod/settings.php:608 ../../mod/settings.php:634 -#: ../../mod/settings.php:670 -msgid "Add application" -msgstr "" - -#: ../../mod/settings.php:612 ../../mod/settings.php:638 -msgid "Consumer Key" -msgstr "" - -#: ../../mod/settings.php:613 ../../mod/settings.php:639 -msgid "Consumer Secret" -msgstr "" - -#: ../../mod/settings.php:614 ../../mod/settings.php:640 -msgid "Redirect" -msgstr "" - -#: ../../mod/settings.php:615 ../../mod/settings.php:641 -msgid "Icon url" -msgstr "" - -#: ../../mod/settings.php:626 -msgid "You can't edit this application." -msgstr "" - -#: ../../mod/settings.php:669 -msgid "Connected Apps" -msgstr "" - -#: ../../mod/settings.php:673 -msgid "Client key starts with" -msgstr "" - -#: ../../mod/settings.php:674 -msgid "No name" -msgstr "" - -#: ../../mod/settings.php:675 -msgid "Remove authorization" -msgstr "" - -#: ../../mod/settings.php:687 -msgid "No Plugin settings configured" -msgstr "" - -#: ../../mod/settings.php:695 -msgid "Plugin Settings" -msgstr "" - -#: ../../mod/settings.php:709 -msgid "Off" -msgstr "" - -#: ../../mod/settings.php:709 -msgid "On" -msgstr "" - -#: ../../mod/settings.php:717 -msgid "Additional Features" -msgstr "" - -#: ../../mod/settings.php:731 ../../mod/settings.php:732 +#: ../../mod/tagger.php:95 ../../include/conversation.php:266 #, php-format -msgid "Built-in support for %s connectivity is %s" +msgid "%1$s tagged %2$s's %3$s with %4$s" msgstr "" -#: ../../mod/settings.php:731 ../../mod/dfrn_request.php:842 -#: ../../include/contact_selectors.php:80 -msgid "Diaspora" +#: ../../mod/editpost.php:17 ../../mod/editpost.php:27 +msgid "Item not found" msgstr "" -#: ../../mod/settings.php:731 ../../mod/settings.php:732 -msgid "enabled" +#: ../../mod/editpost.php:39 +msgid "Edit post" msgstr "" -#: ../../mod/settings.php:731 ../../mod/settings.php:732 -msgid "disabled" +#: ../../mod/editpost.php:111 ../../include/conversation.php:1091 +msgid "upload photo" msgstr "" -#: ../../mod/settings.php:732 -msgid "StatusNet" +#: ../../mod/editpost.php:112 ../../include/conversation.php:1092 +msgid "Attach file" msgstr "" -#: ../../mod/settings.php:768 -msgid "Email access is disabled on this site." +#: ../../mod/editpost.php:113 ../../include/conversation.php:1093 +msgid "attach file" msgstr "" -#: ../../mod/settings.php:780 -msgid "Email/Mailbox Setup" +#: ../../mod/editpost.php:115 ../../include/conversation.php:1095 +msgid "web link" msgstr "" -#: ../../mod/settings.php:781 +#: ../../mod/editpost.php:116 ../../include/conversation.php:1096 +msgid "Insert video link" +msgstr "" + +#: ../../mod/editpost.php:117 ../../include/conversation.php:1097 +msgid "video link" +msgstr "" + +#: ../../mod/editpost.php:118 ../../include/conversation.php:1098 +msgid "Insert audio link" +msgstr "" + +#: ../../mod/editpost.php:119 ../../include/conversation.php:1099 +msgid "audio link" +msgstr "" + +#: ../../mod/editpost.php:120 ../../include/conversation.php:1100 +msgid "Set your location" +msgstr "" + +#: ../../mod/editpost.php:121 ../../include/conversation.php:1101 +msgid "set location" +msgstr "" + +#: ../../mod/editpost.php:122 ../../include/conversation.php:1102 +msgid "Clear browser location" +msgstr "" + +#: ../../mod/editpost.php:123 ../../include/conversation.php:1103 +msgid "clear location" +msgstr "" + +#: ../../mod/editpost.php:125 ../../include/conversation.php:1109 +msgid "Permission settings" +msgstr "" + +#: ../../mod/editpost.php:133 ../../include/conversation.php:1118 +msgid "CC: email addresses" +msgstr "" + +#: ../../mod/editpost.php:134 ../../include/conversation.php:1119 +msgid "Public post" +msgstr "" + +#: ../../mod/editpost.php:137 ../../include/conversation.php:1105 +msgid "Set title" +msgstr "" + +#: ../../mod/editpost.php:139 ../../include/conversation.php:1107 +msgid "Categories (comma-separated list)" +msgstr "" + +#: ../../mod/editpost.php:140 ../../include/conversation.php:1121 +msgid "Example: bob@example.com, mary@example.com" +msgstr "" + +#: ../../mod/attach.php:8 +msgid "Item not available." +msgstr "" + +#: ../../mod/attach.php:20 +msgid "Item was not found." +msgstr "" + +#: ../../mod/regmod.php:63 +msgid "Account approved." +msgstr "" + +#: ../../mod/regmod.php:100 +#, php-format +msgid "Registration revoked for %s" +msgstr "" + +#: ../../mod/regmod.php:112 +msgid "Please login." +msgstr "" + +#: ../../mod/directory.php:57 +msgid "Find on this site" +msgstr "" + +#: ../../mod/directory.php:59 ../../mod/contacts.php:693 +msgid "Finding: " +msgstr "" + +#: ../../mod/directory.php:60 +msgid "Site Directory" +msgstr "" + +#: ../../mod/directory.php:61 ../../mod/contacts.php:694 +#: ../../include/contact_widgets.php:33 +msgid "Find" +msgstr "" + +#: ../../mod/directory.php:111 ../../mod/profiles.php:698 +msgid "Age: " +msgstr "" + +#: ../../mod/directory.php:114 +msgid "Gender: " +msgstr "" + +#: ../../mod/directory.php:142 ../../include/profile_advanced.php:58 +msgid "About:" +msgstr "" + +#: ../../mod/directory.php:187 +msgid "No entries (some entries may be hidden)." +msgstr "" + +#: ../../mod/crepair.php:104 +msgid "Contact settings applied." +msgstr "" + +#: ../../mod/crepair.php:106 +msgid "Contact update failed." +msgstr "" + +#: ../../mod/crepair.php:137 +msgid "Repair Contact Settings" +msgstr "" + +#: ../../mod/crepair.php:139 msgid "" -"If you wish to communicate with email contacts using this service " -"(optional), please specify how to connect to your mailbox." +"WARNING: This is highly advanced and if you enter incorrect " +"information your communications with this contact may stop working." msgstr "" -#: ../../mod/settings.php:782 -msgid "Last successful email check:" -msgstr "" - -#: ../../mod/settings.php:784 -msgid "IMAP server name:" -msgstr "" - -#: ../../mod/settings.php:785 -msgid "IMAP port:" -msgstr "" - -#: ../../mod/settings.php:786 -msgid "Security:" -msgstr "" - -#: ../../mod/settings.php:786 ../../mod/settings.php:791 -msgid "None" -msgstr "" - -#: ../../mod/settings.php:787 -msgid "Email login name:" -msgstr "" - -#: ../../mod/settings.php:788 -msgid "Email password:" -msgstr "" - -#: ../../mod/settings.php:789 -msgid "Reply-to address:" -msgstr "" - -#: ../../mod/settings.php:790 -msgid "Send public posts to all email contacts:" -msgstr "" - -#: ../../mod/settings.php:791 -msgid "Action after import:" -msgstr "" - -#: ../../mod/settings.php:791 -msgid "Mark as seen" -msgstr "" - -#: ../../mod/settings.php:791 -msgid "Move to folder" -msgstr "" - -#: ../../mod/settings.php:792 -msgid "Move to folder:" -msgstr "" - -#: ../../mod/settings.php:870 -msgid "Display Settings" -msgstr "" - -#: ../../mod/settings.php:876 ../../mod/settings.php:890 -msgid "Display Theme:" -msgstr "" - -#: ../../mod/settings.php:877 -msgid "Mobile Theme:" -msgstr "" - -#: ../../mod/settings.php:878 -msgid "Update browser every xx seconds" -msgstr "" - -#: ../../mod/settings.php:878 -msgid "Minimum of 10 seconds, no maximum" -msgstr "" - -#: ../../mod/settings.php:879 -msgid "Number of items to display per page:" -msgstr "" - -#: ../../mod/settings.php:879 ../../mod/settings.php:880 -msgid "Maximum of 100 items" -msgstr "" - -#: ../../mod/settings.php:880 -msgid "Number of items to display per page when viewed from mobile device:" -msgstr "" - -#: ../../mod/settings.php:881 -msgid "Don't show emoticons" -msgstr "" - -#: ../../mod/settings.php:882 -msgid "Don't show notices" -msgstr "" - -#: ../../mod/settings.php:883 -msgid "Infinite scroll" -msgstr "" - -#: ../../mod/settings.php:960 -msgid "User Types" -msgstr "" - -#: ../../mod/settings.php:961 -msgid "Community Types" -msgstr "" - -#: ../../mod/settings.php:962 -msgid "Normal Account Page" -msgstr "" - -#: ../../mod/settings.php:963 -msgid "This account is a normal personal profile" -msgstr "" - -#: ../../mod/settings.php:966 -msgid "Soapbox Page" -msgstr "" - -#: ../../mod/settings.php:967 -msgid "Automatically approve all connection/friend requests as read-only fans" -msgstr "" - -#: ../../mod/settings.php:970 -msgid "Community Forum/Celebrity Account" -msgstr "" - -#: ../../mod/settings.php:971 -msgid "Automatically approve all connection/friend requests as read-write fans" -msgstr "" - -#: ../../mod/settings.php:974 -msgid "Automatic Friend Page" -msgstr "" - -#: ../../mod/settings.php:975 -msgid "Automatically approve all connection/friend requests as friends" -msgstr "" - -#: ../../mod/settings.php:978 -msgid "Private Forum [Experimental]" -msgstr "" - -#: ../../mod/settings.php:979 -msgid "Private forum - approved members only" -msgstr "" - -#: ../../mod/settings.php:991 -msgid "OpenID:" -msgstr "" - -#: ../../mod/settings.php:991 -msgid "(Optional) Allow this OpenID to login to this account." -msgstr "" - -#: ../../mod/settings.php:1001 -msgid "Publish your default profile in your local site directory?" -msgstr "" - -#: ../../mod/settings.php:1001 ../../mod/settings.php:1007 -#: ../../mod/settings.php:1015 ../../mod/settings.php:1019 -#: ../../mod/settings.php:1024 ../../mod/settings.php:1030 -#: ../../mod/settings.php:1036 ../../mod/settings.php:1042 -#: ../../mod/settings.php:1072 ../../mod/settings.php:1073 -#: ../../mod/settings.php:1074 ../../mod/settings.php:1075 -#: ../../mod/settings.php:1076 ../../mod/dfrn_request.php:837 -#: ../../mod/register.php:244 ../../mod/profiles.php:615 ../../mod/api.php:106 -msgid "No" -msgstr "" - -#: ../../mod/settings.php:1007 -msgid "Publish your default profile in the global social directory?" -msgstr "" - -#: ../../mod/settings.php:1015 -msgid "Hide your contact/friend list from viewers of your default profile?" -msgstr "" - -#: ../../mod/settings.php:1019 ../../include/conversation.php:1055 -msgid "Hide your profile details from unknown viewers?" -msgstr "" - -#: ../../mod/settings.php:1024 -msgid "Allow friends to post to your profile page?" -msgstr "" - -#: ../../mod/settings.php:1030 -msgid "Allow friends to tag your posts?" -msgstr "" - -#: ../../mod/settings.php:1036 -msgid "Allow us to suggest you as a potential friend to new members?" -msgstr "" - -#: ../../mod/settings.php:1042 -msgid "Permit unknown people to send you private mail?" -msgstr "" - -#: ../../mod/settings.php:1050 -msgid "Profile is not published." -msgstr "" - -#: ../../mod/settings.php:1058 -msgid "Your Identity Address is" -msgstr "" - -#: ../../mod/settings.php:1069 -msgid "Automatically expire posts after this many days:" -msgstr "" - -#: ../../mod/settings.php:1069 -msgid "If empty, posts will not expire. Expired posts will be deleted" -msgstr "" - -#: ../../mod/settings.php:1070 -msgid "Advanced expiration settings" -msgstr "" - -#: ../../mod/settings.php:1071 -msgid "Advanced Expiration" -msgstr "" - -#: ../../mod/settings.php:1072 -msgid "Expire posts:" -msgstr "" - -#: ../../mod/settings.php:1073 -msgid "Expire personal notes:" -msgstr "" - -#: ../../mod/settings.php:1074 -msgid "Expire starred posts:" -msgstr "" - -#: ../../mod/settings.php:1075 -msgid "Expire photos:" -msgstr "" - -#: ../../mod/settings.php:1076 -msgid "Only expire posts by others:" -msgstr "" - -#: ../../mod/settings.php:1102 -msgid "Account Settings" -msgstr "" - -#: ../../mod/settings.php:1110 -msgid "Password Settings" -msgstr "" - -#: ../../mod/settings.php:1111 -msgid "New Password:" -msgstr "" - -#: ../../mod/settings.php:1112 -msgid "Confirm:" -msgstr "" - -#: ../../mod/settings.php:1112 -msgid "Leave password fields blank unless changing" -msgstr "" - -#: ../../mod/settings.php:1113 -msgid "Current Password:" -msgstr "" - -#: ../../mod/settings.php:1113 ../../mod/settings.php:1114 -msgid "Your current password to confirm the changes" -msgstr "" - -#: ../../mod/settings.php:1114 -msgid "Password:" -msgstr "" - -#: ../../mod/settings.php:1118 -msgid "Basic Settings" -msgstr "" - -#: ../../mod/settings.php:1119 ../../include/profile_advanced.php:15 -msgid "Full Name:" -msgstr "" - -#: ../../mod/settings.php:1120 -msgid "Email Address:" -msgstr "" - -#: ../../mod/settings.php:1121 -msgid "Your Timezone:" -msgstr "" - -#: ../../mod/settings.php:1122 -msgid "Default Post Location:" -msgstr "" - -#: ../../mod/settings.php:1123 -msgid "Use Browser Location:" -msgstr "" - -#: ../../mod/settings.php:1126 -msgid "Security and Privacy Settings" -msgstr "" - -#: ../../mod/settings.php:1128 -msgid "Maximum Friend Requests/Day:" -msgstr "" - -#: ../../mod/settings.php:1128 ../../mod/settings.php:1158 -msgid "(to prevent spam abuse)" -msgstr "" - -#: ../../mod/settings.php:1129 -msgid "Default Post Permissions" -msgstr "" - -#: ../../mod/settings.php:1130 -msgid "(click to open/close)" -msgstr "" - -#: ../../mod/settings.php:1139 ../../mod/photos.php:1144 -#: ../../mod/photos.php:1515 -msgid "Show to Groups" -msgstr "" - -#: ../../mod/settings.php:1140 ../../mod/photos.php:1145 -#: ../../mod/photos.php:1516 -msgid "Show to Contacts" -msgstr "" - -#: ../../mod/settings.php:1141 -msgid "Default Private Post" -msgstr "" - -#: ../../mod/settings.php:1142 -msgid "Default Public Post" -msgstr "" - -#: ../../mod/settings.php:1146 -msgid "Default Permissions for New Posts" -msgstr "" - -#: ../../mod/settings.php:1158 -msgid "Maximum private messages per day from unknown people:" -msgstr "" - -#: ../../mod/settings.php:1161 -msgid "Notification Settings" -msgstr "" - -#: ../../mod/settings.php:1162 -msgid "By default post a status message when:" -msgstr "" - -#: ../../mod/settings.php:1163 -msgid "accepting a friend request" -msgstr "" - -#: ../../mod/settings.php:1164 -msgid "joining a forum/community" -msgstr "" - -#: ../../mod/settings.php:1165 -msgid "making an interesting profile change" -msgstr "" - -#: ../../mod/settings.php:1166 -msgid "Send a notification email when:" -msgstr "" - -#: ../../mod/settings.php:1167 -msgid "You receive an introduction" -msgstr "" - -#: ../../mod/settings.php:1168 -msgid "Your introductions are confirmed" -msgstr "" - -#: ../../mod/settings.php:1169 -msgid "Someone writes on your profile wall" -msgstr "" - -#: ../../mod/settings.php:1170 -msgid "Someone writes a followup comment" -msgstr "" - -#: ../../mod/settings.php:1171 -msgid "You receive a private message" -msgstr "" - -#: ../../mod/settings.php:1172 -msgid "You receive a friend suggestion" -msgstr "" - -#: ../../mod/settings.php:1173 -msgid "You are tagged in a post" -msgstr "" - -#: ../../mod/settings.php:1174 -msgid "You are poked/prodded/etc. in a post" -msgstr "" - -#: ../../mod/settings.php:1177 -msgid "Advanced Account/Page Type Settings" -msgstr "" - -#: ../../mod/settings.php:1178 -msgid "Change the behaviour of this account for special situations" -msgstr "" - -#: ../../mod/settings.php:1181 -msgid "Relocate" -msgstr "" - -#: ../../mod/settings.php:1182 +#: ../../mod/crepair.php:140 msgid "" -"If you have moved this profile from another server, and some of your " -"contacts don't receive your updates, try pushing this button." +"Please use your browser 'Back' button now if you are " +"uncertain what to do on this page." msgstr "" -#: ../../mod/settings.php:1183 -msgid "Resend relocate message to contacts" +#: ../../mod/crepair.php:146 +msgid "Return to contact editor" +msgstr "" + +#: ../../mod/crepair.php:151 +msgid "Account Nickname" +msgstr "" + +#: ../../mod/crepair.php:152 +msgid "@Tagname - overrides Name/Nickname" +msgstr "" + +#: ../../mod/crepair.php:153 +msgid "Account URL" +msgstr "" + +#: ../../mod/crepair.php:154 +msgid "Friend Request URL" +msgstr "" + +#: ../../mod/crepair.php:155 +msgid "Friend Confirm URL" +msgstr "" + +#: ../../mod/crepair.php:156 +msgid "Notification Endpoint URL" +msgstr "" + +#: ../../mod/crepair.php:157 +msgid "Poll/Feed URL" +msgstr "" + +#: ../../mod/crepair.php:158 +msgid "New photo from this URL" +msgstr "" + +#: ../../mod/crepair.php:159 +msgid "Remote Self" +msgstr "" + +#: ../../mod/crepair.php:161 +msgid "Mirror postings from this contact" +msgstr "" + +#: ../../mod/crepair.php:161 +msgid "" +"Mark this contact as remote_self, this will cause friendica to repost new " +"entries from this contact." +msgstr "" + +#: ../../mod/uimport.php:66 +msgid "Move account" +msgstr "" + +#: ../../mod/uimport.php:67 +msgid "You can import an account from another Friendica server." +msgstr "" + +#: ../../mod/uimport.php:68 +msgid "" +"You need to export your account from the old server and upload it here. We " +"will recreate your old account here with all your contacts. We will try also " +"to inform your friends that you moved here." +msgstr "" + +#: ../../mod/uimport.php:69 +msgid "" +"This feature is experimental. We can't import contacts from the OStatus " +"network (statusnet/identi.ca) or from Diaspora" +msgstr "" + +#: ../../mod/uimport.php:70 +msgid "Account file" +msgstr "" + +#: ../../mod/uimport.php:70 +msgid "" +"To export your account, go to \"Settings->Export your personal data\" and " +"select \"Export account\"" +msgstr "" + +#: ../../mod/lockview.php:31 ../../mod/lockview.php:39 +msgid "Remote privacy information not available." +msgstr "" + +#: ../../mod/lockview.php:48 +msgid "Visible to:" +msgstr "" + +#: ../../mod/notes.php:63 ../../mod/filer.php:31 ../../include/text.php:955 +msgid "Save" +msgstr "" + +#: ../../mod/help.php:79 +msgid "Help:" +msgstr "" + +#: ../../mod/help.php:84 ../../include/nav.php:114 +msgid "Help" +msgstr "" + +#: ../../mod/hcard.php:10 +msgid "No profile" msgstr "" #: ../../mod/dfrn_request.php:93 @@ -4070,6 +3195,10 @@ msgstr "" msgid "Disallowed profile URL." msgstr "" +#: ../../mod/dfrn_request.php:571 ../../mod/contacts.php:180 +msgid "Failed to update contact record." +msgstr "" + #: ../../mod/dfrn_request.php:592 msgid "Your introduction has been sent." msgstr "" @@ -4102,7 +3231,7 @@ msgstr "" msgid "Confirm" msgstr "" -#: ../../mod/dfrn_request.php:716 ../../include/items.php:3708 +#: ../../mod/dfrn_request.php:716 ../../include/items.php:3797 msgid "[Name Withheld]" msgstr "" @@ -4154,6 +3283,11 @@ msgstr "" msgid "StatusNet/Federated Social Web" msgstr "" +#: ../../mod/dfrn_request.php:842 ../../mod/settings.php:733 +#: ../../include/contact_selectors.php:80 +msgid "Diaspora" +msgstr "" + #: ../../mod/dfrn_request.php:843 #, php-format msgid "" @@ -4169,239 +3303,939 @@ msgstr "" msgid "Submit Request" msgstr "" -#: ../../mod/register.php:100 -msgid "" -"Registration successful. Please check your email for further instructions." +#: ../../mod/update_profile.php:41 ../../mod/update_network.php:25 +#: ../../mod/update_display.php:22 ../../mod/update_community.php:18 +#: ../../mod/update_notes.php:41 +msgid "[Embedded content - reload page to view]" msgstr "" -#: ../../mod/register.php:104 -msgid "Failed to send email message. Here is the message that failed." +#: ../../mod/content.php:497 ../../include/conversation.php:689 +msgid "View in context" msgstr "" -#: ../../mod/register.php:109 -msgid "Your registration can not be processed." -msgstr "" - -#: ../../mod/register.php:149 +#: ../../mod/contacts.php:104 #, php-format -msgid "Registration request at %s" +msgid "%d contact edited." +msgid_plural "%d contacts edited" +msgstr[0] "" +msgstr[1] "" + +#: ../../mod/contacts.php:135 ../../mod/contacts.php:264 +msgid "Could not access contact record." msgstr "" -#: ../../mod/register.php:158 -msgid "Your registration is pending approval by the site owner." +#: ../../mod/contacts.php:149 +msgid "Could not locate selected profile." msgstr "" -#: ../../mod/register.php:196 ../../mod/uimport.php:50 -msgid "" -"This site has exceeded the number of allowed daily account registrations. " -"Please try again tomorrow." +#: ../../mod/contacts.php:178 +msgid "Contact updated." msgstr "" -#: ../../mod/register.php:224 -msgid "" -"You may (optionally) fill in this form via OpenID by supplying your OpenID " -"and clicking 'Register'." +#: ../../mod/contacts.php:278 +msgid "Contact has been blocked" msgstr "" -#: ../../mod/register.php:225 -msgid "" -"If you are not familiar with OpenID, please leave that field blank and fill " -"in the rest of the items." +#: ../../mod/contacts.php:278 +msgid "Contact has been unblocked" msgstr "" -#: ../../mod/register.php:226 -msgid "Your OpenID (optional): " +#: ../../mod/contacts.php:288 +msgid "Contact has been ignored" msgstr "" -#: ../../mod/register.php:240 -msgid "Include your profile in member directory?" +#: ../../mod/contacts.php:288 +msgid "Contact has been unignored" msgstr "" -#: ../../mod/register.php:261 -msgid "Membership on this site is by invitation only." +#: ../../mod/contacts.php:299 +msgid "Contact has been archived" msgstr "" -#: ../../mod/register.php:262 -msgid "Your invitation ID: " +#: ../../mod/contacts.php:299 +msgid "Contact has been unarchived" msgstr "" -#: ../../mod/register.php:273 -msgid "Your Full Name (e.g. Joe Smith): " +#: ../../mod/contacts.php:324 ../../mod/contacts.php:697 +msgid "Do you really want to delete this contact?" msgstr "" -#: ../../mod/register.php:274 -msgid "Your Email Address: " +#: ../../mod/contacts.php:341 +msgid "Contact has been removed." msgstr "" -#: ../../mod/register.php:275 -msgid "" -"Choose a profile nickname. This must begin with a text character. Your " -"profile address on this site will then be 'nickname@$sitename'." -msgstr "" - -#: ../../mod/register.php:276 -msgid "Choose a nickname: " -msgstr "" - -#: ../../mod/register.php:279 ../../boot.php:1149 ../../include/nav.php:108 -msgid "Register" -msgstr "" - -#: ../../mod/register.php:285 ../../mod/uimport.php:64 -msgid "Import" -msgstr "" - -#: ../../mod/register.php:286 -msgid "Import your profile to this friendica instance" -msgstr "" - -#: ../../mod/maintenance.php:5 -msgid "System down for maintenance" -msgstr "" - -#: ../../mod/search.php:99 ../../include/text.php:951 -#: ../../include/text.php:952 ../../include/nav.php:118 -msgid "Search" -msgstr "" - -#: ../../mod/directory.php:49 ../../view/theme/diabook/theme.php:525 -msgid "Global Directory" -msgstr "" - -#: ../../mod/directory.php:57 -msgid "Find on this site" -msgstr "" - -#: ../../mod/directory.php:60 -msgid "Site Directory" -msgstr "" - -#: ../../mod/directory.php:111 ../../mod/profiles.php:690 -msgid "Age: " -msgstr "" - -#: ../../mod/directory.php:114 -msgid "Gender: " -msgstr "" - -#: ../../mod/directory.php:136 ../../boot.php:1528 -#: ../../include/profile_advanced.php:17 -msgid "Gender:" -msgstr "" - -#: ../../mod/directory.php:138 ../../boot.php:1531 -#: ../../include/profile_advanced.php:37 -msgid "Status:" -msgstr "" - -#: ../../mod/directory.php:140 ../../boot.php:1533 -#: ../../include/profile_advanced.php:48 -msgid "Homepage:" -msgstr "" - -#: ../../mod/directory.php:142 ../../include/profile_advanced.php:58 -msgid "About:" -msgstr "" - -#: ../../mod/directory.php:187 -msgid "No entries (some entries may be hidden)." -msgstr "" - -#: ../../mod/delegate.php:95 -msgid "No potential page delegates located." -msgstr "" - -#: ../../mod/delegate.php:124 ../../include/nav.php:167 -msgid "Delegate Page Management" -msgstr "" - -#: ../../mod/delegate.php:126 -msgid "" -"Delegates are able to manage all aspects of this account/page except for " -"basic account settings. Please do not delegate your personal account to " -"anybody that you do not trust completely." -msgstr "" - -#: ../../mod/delegate.php:127 -msgid "Existing Page Managers" -msgstr "" - -#: ../../mod/delegate.php:129 -msgid "Existing Page Delegates" -msgstr "" - -#: ../../mod/delegate.php:131 -msgid "Potential Delegates" -msgstr "" - -#: ../../mod/delegate.php:134 -msgid "Add" -msgstr "" - -#: ../../mod/delegate.php:135 -msgid "No entries." -msgstr "" - -#: ../../mod/common.php:42 -msgid "Common Friends" -msgstr "" - -#: ../../mod/common.php:78 -msgid "No contacts in common." -msgstr "" - -#: ../../mod/uexport.php:77 -msgid "Export account" -msgstr "" - -#: ../../mod/uexport.php:77 -msgid "" -"Export your account info and contacts. Use this to make a backup of your " -"account and/or to move it to another server." -msgstr "" - -#: ../../mod/uexport.php:78 -msgid "Export all" -msgstr "" - -#: ../../mod/uexport.php:78 -msgid "" -"Export your accout info, contacts and all your items as json. Could be a " -"very big file, and could take a lot of time. Use this to make a full backup " -"of your account (photos are not exported)" -msgstr "" - -#: ../../mod/mood.php:62 ../../include/conversation.php:227 +#: ../../mod/contacts.php:379 #, php-format -msgid "%1$s is currently %2$s" +msgid "You are mutual friends with %s" msgstr "" -#: ../../mod/mood.php:133 -msgid "Mood" +#: ../../mod/contacts.php:383 +#, php-format +msgid "You are sharing with %s" msgstr "" -#: ../../mod/mood.php:134 -msgid "Set your current mood and tell your friends" +#: ../../mod/contacts.php:388 +#, php-format +msgid "%s is sharing with you" msgstr "" -#: ../../mod/suggest.php:27 -msgid "Do you really want to delete this suggestion?" +#: ../../mod/contacts.php:405 +msgid "Private communications are not available for this contact." msgstr "" -#: ../../mod/suggest.php:66 ../../include/contact_widgets.php:34 -#: ../../view/theme/diabook/theme.php:527 -msgid "Friend Suggestions" +#: ../../mod/contacts.php:412 +msgid "(Update was successful)" msgstr "" -#: ../../mod/suggest.php:72 +#: ../../mod/contacts.php:412 +msgid "(Update was not successful)" +msgstr "" + +#: ../../mod/contacts.php:414 +msgid "Suggest friends" +msgstr "" + +#: ../../mod/contacts.php:418 +#, php-format +msgid "Network type: %s" +msgstr "" + +#: ../../mod/contacts.php:421 ../../include/contact_widgets.php:199 +#, php-format +msgid "%d contact in common" +msgid_plural "%d contacts in common" +msgstr[0] "" +msgstr[1] "" + +#: ../../mod/contacts.php:426 +msgid "View all contacts" +msgstr "" + +#: ../../mod/contacts.php:434 +msgid "Toggle Blocked status" +msgstr "" + +#: ../../mod/contacts.php:437 ../../mod/contacts.php:491 +#: ../../mod/contacts.php:701 +msgid "Unignore" +msgstr "" + +#: ../../mod/contacts.php:437 ../../mod/contacts.php:491 +#: ../../mod/contacts.php:701 ../../mod/notifications.php:51 +#: ../../mod/notifications.php:164 ../../mod/notifications.php:210 +msgid "Ignore" +msgstr "" + +#: ../../mod/contacts.php:440 +msgid "Toggle Ignored status" +msgstr "" + +#: ../../mod/contacts.php:444 ../../mod/contacts.php:702 +msgid "Unarchive" +msgstr "" + +#: ../../mod/contacts.php:444 ../../mod/contacts.php:702 +msgid "Archive" +msgstr "" + +#: ../../mod/contacts.php:447 +msgid "Toggle Archive status" +msgstr "" + +#: ../../mod/contacts.php:450 +msgid "Repair" +msgstr "" + +#: ../../mod/contacts.php:453 +msgid "Advanced Contact Settings" +msgstr "" + +#: ../../mod/contacts.php:459 +msgid "Communications lost with this contact!" +msgstr "" + +#: ../../mod/contacts.php:462 +msgid "Contact Editor" +msgstr "" + +#: ../../mod/contacts.php:465 +msgid "Profile Visibility" +msgstr "" + +#: ../../mod/contacts.php:466 +#, php-format msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." +"Please choose the profile you would like to display to %s when viewing your " +"profile securely." msgstr "" -#: ../../mod/suggest.php:90 -msgid "Ignore/Hide" +#: ../../mod/contacts.php:467 +msgid "Contact Information / Notes" +msgstr "" + +#: ../../mod/contacts.php:468 +msgid "Edit contact notes" +msgstr "" + +#: ../../mod/contacts.php:473 ../../mod/contacts.php:665 +#: ../../mod/viewcontacts.php:62 ../../mod/nogroup.php:40 +#, php-format +msgid "Visit %s's profile [%s]" +msgstr "" + +#: ../../mod/contacts.php:474 +msgid "Block/Unblock contact" +msgstr "" + +#: ../../mod/contacts.php:475 +msgid "Ignore contact" +msgstr "" + +#: ../../mod/contacts.php:476 +msgid "Repair URL settings" +msgstr "" + +#: ../../mod/contacts.php:477 +msgid "View conversations" +msgstr "" + +#: ../../mod/contacts.php:479 +msgid "Delete contact" +msgstr "" + +#: ../../mod/contacts.php:483 +msgid "Last update:" +msgstr "" + +#: ../../mod/contacts.php:485 +msgid "Update public posts" +msgstr "" + +#: ../../mod/contacts.php:494 +msgid "Currently blocked" +msgstr "" + +#: ../../mod/contacts.php:495 +msgid "Currently ignored" +msgstr "" + +#: ../../mod/contacts.php:496 +msgid "Currently archived" +msgstr "" + +#: ../../mod/contacts.php:497 ../../mod/notifications.php:157 +#: ../../mod/notifications.php:204 +msgid "Hide this contact from others" +msgstr "" + +#: ../../mod/contacts.php:497 +msgid "" +"Replies/likes to your public posts may still be visible" +msgstr "" + +#: ../../mod/contacts.php:498 +msgid "Notification for new posts" +msgstr "" + +#: ../../mod/contacts.php:498 +msgid "Send a notification of every new post of this contact" +msgstr "" + +#: ../../mod/contacts.php:499 +msgid "Fetch further information for feeds" +msgstr "" + +#: ../../mod/contacts.php:550 +msgid "Suggestions" +msgstr "" + +#: ../../mod/contacts.php:553 +msgid "Suggest potential friends" +msgstr "" + +#: ../../mod/contacts.php:556 ../../mod/group.php:194 +msgid "All Contacts" +msgstr "" + +#: ../../mod/contacts.php:559 +msgid "Show all contacts" +msgstr "" + +#: ../../mod/contacts.php:562 +msgid "Unblocked" +msgstr "" + +#: ../../mod/contacts.php:565 +msgid "Only show unblocked contacts" +msgstr "" + +#: ../../mod/contacts.php:569 +msgid "Blocked" +msgstr "" + +#: ../../mod/contacts.php:572 +msgid "Only show blocked contacts" +msgstr "" + +#: ../../mod/contacts.php:576 +msgid "Ignored" +msgstr "" + +#: ../../mod/contacts.php:579 +msgid "Only show ignored contacts" +msgstr "" + +#: ../../mod/contacts.php:583 +msgid "Archived" +msgstr "" + +#: ../../mod/contacts.php:586 +msgid "Only show archived contacts" +msgstr "" + +#: ../../mod/contacts.php:590 +msgid "Hidden" +msgstr "" + +#: ../../mod/contacts.php:593 +msgid "Only show hidden contacts" +msgstr "" + +#: ../../mod/contacts.php:641 +msgid "Mutual Friendship" +msgstr "" + +#: ../../mod/contacts.php:645 +msgid "is a fan of yours" +msgstr "" + +#: ../../mod/contacts.php:649 +msgid "you are a fan of" +msgstr "" + +#: ../../mod/contacts.php:666 ../../mod/nogroup.php:41 +msgid "Edit contact" +msgstr "" + +#: ../../mod/contacts.php:692 +msgid "Search your contacts" +msgstr "" + +#: ../../mod/contacts.php:699 ../../mod/settings.php:132 +#: ../../mod/settings.php:637 +msgid "Update" +msgstr "" + +#: ../../mod/settings.php:29 ../../mod/photos.php:80 +msgid "everybody" +msgstr "" + +#: ../../mod/settings.php:41 +msgid "Additional features" +msgstr "" + +#: ../../mod/settings.php:46 +msgid "Display" +msgstr "" + +#: ../../mod/settings.php:52 ../../mod/settings.php:777 +msgid "Social Networks" +msgstr "" + +#: ../../mod/settings.php:62 ../../include/nav.php:168 +msgid "Delegations" +msgstr "" + +#: ../../mod/settings.php:67 +msgid "Connected apps" +msgstr "" + +#: ../../mod/settings.php:72 ../../mod/uexport.php:85 +msgid "Export personal data" +msgstr "" + +#: ../../mod/settings.php:77 +msgid "Remove account" +msgstr "" + +#: ../../mod/settings.php:129 +msgid "Missing some important data!" +msgstr "" + +#: ../../mod/settings.php:238 +msgid "Failed to connect with email account using the settings provided." +msgstr "" + +#: ../../mod/settings.php:243 +msgid "Email settings updated." +msgstr "" + +#: ../../mod/settings.php:258 +msgid "Features updated" +msgstr "" + +#: ../../mod/settings.php:321 +msgid "Relocate message has been send to your contacts" +msgstr "" + +#: ../../mod/settings.php:335 +msgid "Passwords do not match. Password unchanged." +msgstr "" + +#: ../../mod/settings.php:340 +msgid "Empty passwords are not allowed. Password unchanged." +msgstr "" + +#: ../../mod/settings.php:348 +msgid "Wrong password." +msgstr "" + +#: ../../mod/settings.php:359 +msgid "Password changed." +msgstr "" + +#: ../../mod/settings.php:361 +msgid "Password update failed. Please try again." +msgstr "" + +#: ../../mod/settings.php:426 +msgid " Please use a shorter name." +msgstr "" + +#: ../../mod/settings.php:428 +msgid " Name too short." +msgstr "" + +#: ../../mod/settings.php:437 +msgid "Wrong Password" +msgstr "" + +#: ../../mod/settings.php:442 +msgid " Not valid email." +msgstr "" + +#: ../../mod/settings.php:448 +msgid " Cannot change to that email." +msgstr "" + +#: ../../mod/settings.php:503 +msgid "Private forum has no privacy permissions. Using default privacy group." +msgstr "" + +#: ../../mod/settings.php:507 +msgid "Private forum has no privacy permissions and no default privacy group." +msgstr "" + +#: ../../mod/settings.php:537 +msgid "Settings updated." +msgstr "" + +#: ../../mod/settings.php:610 ../../mod/settings.php:636 +#: ../../mod/settings.php:672 +msgid "Add application" +msgstr "" + +#: ../../mod/settings.php:614 ../../mod/settings.php:640 +msgid "Consumer Key" +msgstr "" + +#: ../../mod/settings.php:615 ../../mod/settings.php:641 +msgid "Consumer Secret" +msgstr "" + +#: ../../mod/settings.php:616 ../../mod/settings.php:642 +msgid "Redirect" +msgstr "" + +#: ../../mod/settings.php:617 ../../mod/settings.php:643 +msgid "Icon url" +msgstr "" + +#: ../../mod/settings.php:628 +msgid "You can't edit this application." +msgstr "" + +#: ../../mod/settings.php:671 +msgid "Connected Apps" +msgstr "" + +#: ../../mod/settings.php:675 +msgid "Client key starts with" +msgstr "" + +#: ../../mod/settings.php:676 +msgid "No name" +msgstr "" + +#: ../../mod/settings.php:677 +msgid "Remove authorization" +msgstr "" + +#: ../../mod/settings.php:689 +msgid "No Plugin settings configured" +msgstr "" + +#: ../../mod/settings.php:697 +msgid "Plugin Settings" +msgstr "" + +#: ../../mod/settings.php:711 +msgid "Off" +msgstr "" + +#: ../../mod/settings.php:711 +msgid "On" +msgstr "" + +#: ../../mod/settings.php:719 +msgid "Additional Features" +msgstr "" + +#: ../../mod/settings.php:733 ../../mod/settings.php:734 +#, php-format +msgid "Built-in support for %s connectivity is %s" +msgstr "" + +#: ../../mod/settings.php:733 ../../mod/settings.php:734 +msgid "enabled" +msgstr "" + +#: ../../mod/settings.php:733 ../../mod/settings.php:734 +msgid "disabled" +msgstr "" + +#: ../../mod/settings.php:734 +msgid "StatusNet" +msgstr "" + +#: ../../mod/settings.php:770 +msgid "Email access is disabled on this site." +msgstr "" + +#: ../../mod/settings.php:782 +msgid "Email/Mailbox Setup" +msgstr "" + +#: ../../mod/settings.php:783 +msgid "" +"If you wish to communicate with email contacts using this service " +"(optional), please specify how to connect to your mailbox." +msgstr "" + +#: ../../mod/settings.php:784 +msgid "Last successful email check:" +msgstr "" + +#: ../../mod/settings.php:786 +msgid "IMAP server name:" +msgstr "" + +#: ../../mod/settings.php:787 +msgid "IMAP port:" +msgstr "" + +#: ../../mod/settings.php:788 +msgid "Security:" +msgstr "" + +#: ../../mod/settings.php:788 ../../mod/settings.php:793 +msgid "None" +msgstr "" + +#: ../../mod/settings.php:789 +msgid "Email login name:" +msgstr "" + +#: ../../mod/settings.php:790 +msgid "Email password:" +msgstr "" + +#: ../../mod/settings.php:791 +msgid "Reply-to address:" +msgstr "" + +#: ../../mod/settings.php:792 +msgid "Send public posts to all email contacts:" +msgstr "" + +#: ../../mod/settings.php:793 +msgid "Action after import:" +msgstr "" + +#: ../../mod/settings.php:793 +msgid "Mark as seen" +msgstr "" + +#: ../../mod/settings.php:793 +msgid "Move to folder" +msgstr "" + +#: ../../mod/settings.php:794 +msgid "Move to folder:" +msgstr "" + +#: ../../mod/settings.php:875 +msgid "Display Settings" +msgstr "" + +#: ../../mod/settings.php:881 ../../mod/settings.php:896 +msgid "Display Theme:" +msgstr "" + +#: ../../mod/settings.php:882 +msgid "Mobile Theme:" +msgstr "" + +#: ../../mod/settings.php:883 +msgid "Update browser every xx seconds" +msgstr "" + +#: ../../mod/settings.php:883 +msgid "Minimum of 10 seconds, no maximum" +msgstr "" + +#: ../../mod/settings.php:884 +msgid "Number of items to display per page:" +msgstr "" + +#: ../../mod/settings.php:884 ../../mod/settings.php:885 +msgid "Maximum of 100 items" +msgstr "" + +#: ../../mod/settings.php:885 +msgid "Number of items to display per page when viewed from mobile device:" +msgstr "" + +#: ../../mod/settings.php:886 +msgid "Don't show emoticons" +msgstr "" + +#: ../../mod/settings.php:887 +msgid "Don't show notices" +msgstr "" + +#: ../../mod/settings.php:888 +msgid "Infinite scroll" +msgstr "" + +#: ../../mod/settings.php:889 +msgid "Automatic updates only at the top of the network page" +msgstr "" + +#: ../../mod/settings.php:966 +msgid "User Types" +msgstr "" + +#: ../../mod/settings.php:967 +msgid "Community Types" +msgstr "" + +#: ../../mod/settings.php:968 +msgid "Normal Account Page" +msgstr "" + +#: ../../mod/settings.php:969 +msgid "This account is a normal personal profile" +msgstr "" + +#: ../../mod/settings.php:972 +msgid "Soapbox Page" +msgstr "" + +#: ../../mod/settings.php:973 +msgid "Automatically approve all connection/friend requests as read-only fans" +msgstr "" + +#: ../../mod/settings.php:976 +msgid "Community Forum/Celebrity Account" +msgstr "" + +#: ../../mod/settings.php:977 +msgid "Automatically approve all connection/friend requests as read-write fans" +msgstr "" + +#: ../../mod/settings.php:980 +msgid "Automatic Friend Page" +msgstr "" + +#: ../../mod/settings.php:981 +msgid "Automatically approve all connection/friend requests as friends" +msgstr "" + +#: ../../mod/settings.php:984 +msgid "Private Forum [Experimental]" +msgstr "" + +#: ../../mod/settings.php:985 +msgid "Private forum - approved members only" +msgstr "" + +#: ../../mod/settings.php:997 +msgid "OpenID:" +msgstr "" + +#: ../../mod/settings.php:997 +msgid "(Optional) Allow this OpenID to login to this account." +msgstr "" + +#: ../../mod/settings.php:1007 +msgid "Publish your default profile in your local site directory?" +msgstr "" + +#: ../../mod/settings.php:1013 +msgid "Publish your default profile in the global social directory?" +msgstr "" + +#: ../../mod/settings.php:1021 +msgid "Hide your contact/friend list from viewers of your default profile?" +msgstr "" + +#: ../../mod/settings.php:1025 ../../include/conversation.php:1056 +msgid "Hide your profile details from unknown viewers?" +msgstr "" + +#: ../../mod/settings.php:1030 +msgid "Allow friends to post to your profile page?" +msgstr "" + +#: ../../mod/settings.php:1036 +msgid "Allow friends to tag your posts?" +msgstr "" + +#: ../../mod/settings.php:1042 +msgid "Allow us to suggest you as a potential friend to new members?" +msgstr "" + +#: ../../mod/settings.php:1048 +msgid "Permit unknown people to send you private mail?" +msgstr "" + +#: ../../mod/settings.php:1056 +msgid "Profile is not published." +msgstr "" + +#: ../../mod/settings.php:1059 ../../mod/profile_photo.php:248 +msgid "or" +msgstr "" + +#: ../../mod/settings.php:1064 +msgid "Your Identity Address is" +msgstr "" + +#: ../../mod/settings.php:1075 +msgid "Automatically expire posts after this many days:" +msgstr "" + +#: ../../mod/settings.php:1075 +msgid "If empty, posts will not expire. Expired posts will be deleted" +msgstr "" + +#: ../../mod/settings.php:1076 +msgid "Advanced expiration settings" +msgstr "" + +#: ../../mod/settings.php:1077 +msgid "Advanced Expiration" +msgstr "" + +#: ../../mod/settings.php:1078 +msgid "Expire posts:" +msgstr "" + +#: ../../mod/settings.php:1079 +msgid "Expire personal notes:" +msgstr "" + +#: ../../mod/settings.php:1080 +msgid "Expire starred posts:" +msgstr "" + +#: ../../mod/settings.php:1081 +msgid "Expire photos:" +msgstr "" + +#: ../../mod/settings.php:1082 +msgid "Only expire posts by others:" +msgstr "" + +#: ../../mod/settings.php:1108 +msgid "Account Settings" +msgstr "" + +#: ../../mod/settings.php:1116 +msgid "Password Settings" +msgstr "" + +#: ../../mod/settings.php:1117 +msgid "New Password:" +msgstr "" + +#: ../../mod/settings.php:1118 +msgid "Confirm:" +msgstr "" + +#: ../../mod/settings.php:1118 +msgid "Leave password fields blank unless changing" +msgstr "" + +#: ../../mod/settings.php:1119 +msgid "Current Password:" +msgstr "" + +#: ../../mod/settings.php:1119 ../../mod/settings.php:1120 +msgid "Your current password to confirm the changes" +msgstr "" + +#: ../../mod/settings.php:1120 +msgid "Password:" +msgstr "" + +#: ../../mod/settings.php:1124 +msgid "Basic Settings" +msgstr "" + +#: ../../mod/settings.php:1125 ../../include/profile_advanced.php:15 +msgid "Full Name:" +msgstr "" + +#: ../../mod/settings.php:1126 +msgid "Email Address:" +msgstr "" + +#: ../../mod/settings.php:1127 +msgid "Your Timezone:" +msgstr "" + +#: ../../mod/settings.php:1128 +msgid "Default Post Location:" +msgstr "" + +#: ../../mod/settings.php:1129 +msgid "Use Browser Location:" +msgstr "" + +#: ../../mod/settings.php:1132 +msgid "Security and Privacy Settings" +msgstr "" + +#: ../../mod/settings.php:1134 +msgid "Maximum Friend Requests/Day:" +msgstr "" + +#: ../../mod/settings.php:1134 ../../mod/settings.php:1164 +msgid "(to prevent spam abuse)" +msgstr "" + +#: ../../mod/settings.php:1135 +msgid "Default Post Permissions" +msgstr "" + +#: ../../mod/settings.php:1136 +msgid "(click to open/close)" +msgstr "" + +#: ../../mod/settings.php:1145 ../../mod/photos.php:1146 +#: ../../mod/photos.php:1517 +msgid "Show to Groups" +msgstr "" + +#: ../../mod/settings.php:1146 ../../mod/photos.php:1147 +#: ../../mod/photos.php:1518 +msgid "Show to Contacts" +msgstr "" + +#: ../../mod/settings.php:1147 +msgid "Default Private Post" +msgstr "" + +#: ../../mod/settings.php:1148 +msgid "Default Public Post" +msgstr "" + +#: ../../mod/settings.php:1152 +msgid "Default Permissions for New Posts" +msgstr "" + +#: ../../mod/settings.php:1164 +msgid "Maximum private messages per day from unknown people:" +msgstr "" + +#: ../../mod/settings.php:1167 +msgid "Notification Settings" +msgstr "" + +#: ../../mod/settings.php:1168 +msgid "By default post a status message when:" +msgstr "" + +#: ../../mod/settings.php:1169 +msgid "accepting a friend request" +msgstr "" + +#: ../../mod/settings.php:1170 +msgid "joining a forum/community" +msgstr "" + +#: ../../mod/settings.php:1171 +msgid "making an interesting profile change" +msgstr "" + +#: ../../mod/settings.php:1172 +msgid "Send a notification email when:" +msgstr "" + +#: ../../mod/settings.php:1173 +msgid "You receive an introduction" +msgstr "" + +#: ../../mod/settings.php:1174 +msgid "Your introductions are confirmed" +msgstr "" + +#: ../../mod/settings.php:1175 +msgid "Someone writes on your profile wall" +msgstr "" + +#: ../../mod/settings.php:1176 +msgid "Someone writes a followup comment" +msgstr "" + +#: ../../mod/settings.php:1177 +msgid "You receive a private message" +msgstr "" + +#: ../../mod/settings.php:1178 +msgid "You receive a friend suggestion" +msgstr "" + +#: ../../mod/settings.php:1179 +msgid "You are tagged in a post" +msgstr "" + +#: ../../mod/settings.php:1180 +msgid "You are poked/prodded/etc. in a post" +msgstr "" + +#: ../../mod/settings.php:1183 +msgid "Advanced Account/Page Type Settings" +msgstr "" + +#: ../../mod/settings.php:1184 +msgid "Change the behaviour of this account for special situations" +msgstr "" + +#: ../../mod/settings.php:1187 +msgid "Relocate" +msgstr "" + +#: ../../mod/settings.php:1188 +msgid "" +"If you have moved this profile from another server, and some of your " +"contacts don't receive your updates, try pushing this button." +msgstr "" + +#: ../../mod/settings.php:1189 +msgid "Resend relocate message to contacts" msgstr "" #: ../../mod/profiles.php:37 @@ -4503,353 +4337,393 @@ msgstr "" msgid "%1$s has an updated %2$s, changing %3$s." msgstr "" -#: ../../mod/profiles.php:613 +#: ../../mod/profiles.php:615 +msgid "Hide contacts and friends:" +msgstr "" + +#: ../../mod/profiles.php:620 msgid "Hide your contact/friend list from viewers of this profile?" msgstr "" -#: ../../mod/profiles.php:633 +#: ../../mod/profiles.php:641 msgid "Edit Profile Details" msgstr "" -#: ../../mod/profiles.php:635 +#: ../../mod/profiles.php:643 msgid "Change Profile Photo" msgstr "" -#: ../../mod/profiles.php:636 +#: ../../mod/profiles.php:644 msgid "View this profile" msgstr "" -#: ../../mod/profiles.php:637 +#: ../../mod/profiles.php:645 msgid "Create a new profile using these settings" msgstr "" -#: ../../mod/profiles.php:638 +#: ../../mod/profiles.php:646 msgid "Clone this profile" msgstr "" -#: ../../mod/profiles.php:639 +#: ../../mod/profiles.php:647 msgid "Delete this profile" msgstr "" -#: ../../mod/profiles.php:640 +#: ../../mod/profiles.php:648 msgid "Profile Name:" msgstr "" -#: ../../mod/profiles.php:641 +#: ../../mod/profiles.php:649 msgid "Your Full Name:" msgstr "" -#: ../../mod/profiles.php:642 +#: ../../mod/profiles.php:650 msgid "Title/Description:" msgstr "" -#: ../../mod/profiles.php:643 +#: ../../mod/profiles.php:651 msgid "Your Gender:" msgstr "" -#: ../../mod/profiles.php:644 +#: ../../mod/profiles.php:652 #, php-format msgid "Birthday (%s):" msgstr "" -#: ../../mod/profiles.php:645 +#: ../../mod/profiles.php:653 msgid "Street Address:" msgstr "" -#: ../../mod/profiles.php:646 +#: ../../mod/profiles.php:654 msgid "Locality/City:" msgstr "" -#: ../../mod/profiles.php:647 +#: ../../mod/profiles.php:655 msgid "Postal/Zip Code:" msgstr "" -#: ../../mod/profiles.php:648 +#: ../../mod/profiles.php:656 msgid "Country:" msgstr "" -#: ../../mod/profiles.php:649 +#: ../../mod/profiles.php:657 msgid "Region/State:" msgstr "" -#: ../../mod/profiles.php:650 +#: ../../mod/profiles.php:658 msgid " Marital Status:" msgstr "" -#: ../../mod/profiles.php:651 +#: ../../mod/profiles.php:659 msgid "Who: (if applicable)" msgstr "" -#: ../../mod/profiles.php:652 +#: ../../mod/profiles.php:660 msgid "Examples: cathy123, Cathy Williams, cathy@example.com" msgstr "" -#: ../../mod/profiles.php:653 +#: ../../mod/profiles.php:661 msgid "Since [date]:" msgstr "" -#: ../../mod/profiles.php:654 ../../include/profile_advanced.php:46 +#: ../../mod/profiles.php:662 ../../include/profile_advanced.php:46 msgid "Sexual Preference:" msgstr "" -#: ../../mod/profiles.php:655 +#: ../../mod/profiles.php:663 msgid "Homepage URL:" msgstr "" -#: ../../mod/profiles.php:656 ../../include/profile_advanced.php:50 +#: ../../mod/profiles.php:664 ../../include/profile_advanced.php:50 msgid "Hometown:" msgstr "" -#: ../../mod/profiles.php:657 ../../include/profile_advanced.php:54 +#: ../../mod/profiles.php:665 ../../include/profile_advanced.php:54 msgid "Political Views:" msgstr "" -#: ../../mod/profiles.php:658 +#: ../../mod/profiles.php:666 msgid "Religious Views:" msgstr "" -#: ../../mod/profiles.php:659 +#: ../../mod/profiles.php:667 msgid "Public Keywords:" msgstr "" -#: ../../mod/profiles.php:660 +#: ../../mod/profiles.php:668 msgid "Private Keywords:" msgstr "" -#: ../../mod/profiles.php:661 ../../include/profile_advanced.php:62 +#: ../../mod/profiles.php:669 ../../include/profile_advanced.php:62 msgid "Likes:" msgstr "" -#: ../../mod/profiles.php:662 ../../include/profile_advanced.php:64 +#: ../../mod/profiles.php:670 ../../include/profile_advanced.php:64 msgid "Dislikes:" msgstr "" -#: ../../mod/profiles.php:663 +#: ../../mod/profiles.php:671 msgid "Example: fishing photography software" msgstr "" -#: ../../mod/profiles.php:664 +#: ../../mod/profiles.php:672 msgid "(Used for suggesting potential friends, can be seen by others)" msgstr "" -#: ../../mod/profiles.php:665 +#: ../../mod/profiles.php:673 msgid "(Used for searching profiles, never shown to others)" msgstr "" -#: ../../mod/profiles.php:666 +#: ../../mod/profiles.php:674 msgid "Tell us about yourself..." msgstr "" -#: ../../mod/profiles.php:667 +#: ../../mod/profiles.php:675 msgid "Hobbies/Interests" msgstr "" -#: ../../mod/profiles.php:668 +#: ../../mod/profiles.php:676 msgid "Contact information and Social Networks" msgstr "" -#: ../../mod/profiles.php:669 +#: ../../mod/profiles.php:677 msgid "Musical interests" msgstr "" -#: ../../mod/profiles.php:670 +#: ../../mod/profiles.php:678 msgid "Books, literature" msgstr "" -#: ../../mod/profiles.php:671 +#: ../../mod/profiles.php:679 msgid "Television" msgstr "" -#: ../../mod/profiles.php:672 +#: ../../mod/profiles.php:680 msgid "Film/dance/culture/entertainment" msgstr "" -#: ../../mod/profiles.php:673 +#: ../../mod/profiles.php:681 msgid "Love/romance" msgstr "" -#: ../../mod/profiles.php:674 +#: ../../mod/profiles.php:682 msgid "Work/employment" msgstr "" -#: ../../mod/profiles.php:675 +#: ../../mod/profiles.php:683 msgid "School/education" msgstr "" -#: ../../mod/profiles.php:680 +#: ../../mod/profiles.php:688 msgid "" "This is your public profile.
It may " "be visible to anybody using the internet." msgstr "" -#: ../../mod/profiles.php:729 +#: ../../mod/profiles.php:737 msgid "Edit/Manage Profiles" msgstr "" -#: ../../mod/profiles.php:730 ../../boot.php:1486 ../../boot.php:1512 -msgid "Change profile photo" +#: ../../mod/group.php:29 +msgid "Group created." msgstr "" -#: ../../mod/profiles.php:731 ../../boot.php:1487 -msgid "Create New Profile" +#: ../../mod/group.php:35 +msgid "Could not create group." msgstr "" -#: ../../mod/profiles.php:742 ../../boot.php:1497 -msgid "Profile Image" +#: ../../mod/group.php:47 ../../mod/group.php:140 +msgid "Group not found." msgstr "" -#: ../../mod/profiles.php:744 ../../boot.php:1500 -msgid "visible to everybody" +#: ../../mod/group.php:60 +msgid "Group name changed." msgstr "" -#: ../../mod/profiles.php:745 ../../boot.php:1501 -msgid "Edit visibility" +#: ../../mod/group.php:87 +msgid "Save Group" msgstr "" -#: ../../mod/editpost.php:17 ../../mod/editpost.php:27 -msgid "Item not found" +#: ../../mod/group.php:93 +msgid "Create a group of contacts/friends." msgstr "" -#: ../../mod/editpost.php:39 -msgid "Edit post" +#: ../../mod/group.php:94 ../../mod/group.php:180 +msgid "Group Name: " msgstr "" -#: ../../mod/editpost.php:111 ../../include/conversation.php:1090 -msgid "upload photo" +#: ../../mod/group.php:113 +msgid "Group removed." msgstr "" -#: ../../mod/editpost.php:112 ../../include/conversation.php:1091 -msgid "Attach file" +#: ../../mod/group.php:115 +msgid "Unable to remove group." msgstr "" -#: ../../mod/editpost.php:113 ../../include/conversation.php:1092 -msgid "attach file" +#: ../../mod/group.php:179 +msgid "Group Editor" msgstr "" -#: ../../mod/editpost.php:115 ../../include/conversation.php:1094 -msgid "web link" +#: ../../mod/group.php:192 +msgid "Members" msgstr "" -#: ../../mod/editpost.php:116 ../../include/conversation.php:1095 -msgid "Insert video link" +#: ../../mod/group.php:224 ../../mod/profperm.php:105 +msgid "Click on a contact to add or remove." msgstr "" -#: ../../mod/editpost.php:117 ../../include/conversation.php:1096 -msgid "video link" +#: ../../mod/babel.php:17 +msgid "Source (bbcode) text:" msgstr "" -#: ../../mod/editpost.php:118 ../../include/conversation.php:1097 -msgid "Insert audio link" +#: ../../mod/babel.php:23 +msgid "Source (Diaspora) text to convert to BBcode:" msgstr "" -#: ../../mod/editpost.php:119 ../../include/conversation.php:1098 -msgid "audio link" +#: ../../mod/babel.php:31 +msgid "Source input: " msgstr "" -#: ../../mod/editpost.php:120 ../../include/conversation.php:1099 -msgid "Set your location" +#: ../../mod/babel.php:35 +msgid "bb2html (raw HTML): " msgstr "" -#: ../../mod/editpost.php:121 ../../include/conversation.php:1100 -msgid "set location" +#: ../../mod/babel.php:39 +msgid "bb2html: " msgstr "" -#: ../../mod/editpost.php:122 ../../include/conversation.php:1101 -msgid "Clear browser location" +#: ../../mod/babel.php:43 +msgid "bb2html2bb: " msgstr "" -#: ../../mod/editpost.php:123 ../../include/conversation.php:1102 -msgid "clear location" +#: ../../mod/babel.php:47 +msgid "bb2md: " msgstr "" -#: ../../mod/editpost.php:125 ../../include/conversation.php:1108 -msgid "Permission settings" +#: ../../mod/babel.php:51 +msgid "bb2md2html: " msgstr "" -#: ../../mod/editpost.php:133 ../../include/conversation.php:1117 -msgid "CC: email addresses" +#: ../../mod/babel.php:55 +msgid "bb2dia2bb: " msgstr "" -#: ../../mod/editpost.php:134 ../../include/conversation.php:1118 -msgid "Public post" +#: ../../mod/babel.php:59 +msgid "bb2md2html2bb: " msgstr "" -#: ../../mod/editpost.php:137 ../../include/conversation.php:1104 -msgid "Set title" +#: ../../mod/babel.php:69 +msgid "Source input (Diaspora format): " msgstr "" -#: ../../mod/editpost.php:139 ../../include/conversation.php:1106 -msgid "Categories (comma-separated list)" +#: ../../mod/babel.php:74 +msgid "diaspora2bb: " msgstr "" -#: ../../mod/editpost.php:140 ../../include/conversation.php:1120 -msgid "Example: bob@example.com, mary@example.com" +#: ../../mod/community.php:23 +msgid "Not available." msgstr "" -#: ../../mod/friendica.php:58 -msgid "This is Friendica, version" +#: ../../mod/follow.php:27 +msgid "Contact added" msgstr "" -#: ../../mod/friendica.php:59 -msgid "running at web location" +#: ../../mod/notify.php:75 ../../mod/notifications.php:336 +msgid "No more system notifications." msgstr "" -#: ../../mod/friendica.php:61 +#: ../../mod/notify.php:79 ../../mod/notifications.php:340 +msgid "System Notifications" +msgstr "" + +#: ../../mod/message.php:9 ../../include/nav.php:162 +msgid "New Message" +msgstr "" + +#: ../../mod/message.php:67 +msgid "Unable to locate contact information." +msgstr "" + +#: ../../mod/message.php:182 ../../mod/notifications.php:103 +#: ../../include/nav.php:159 +msgid "Messages" +msgstr "" + +#: ../../mod/message.php:207 +msgid "Do you really want to delete this message?" +msgstr "" + +#: ../../mod/message.php:227 +msgid "Message deleted." +msgstr "" + +#: ../../mod/message.php:258 +msgid "Conversation removed." +msgstr "" + +#: ../../mod/message.php:371 +msgid "No messages." +msgstr "" + +#: ../../mod/message.php:378 +#, php-format +msgid "Unknown sender - %s" +msgstr "" + +#: ../../mod/message.php:381 +#, php-format +msgid "You and %s" +msgstr "" + +#: ../../mod/message.php:384 +#, php-format +msgid "%s and You" +msgstr "" + +#: ../../mod/message.php:405 ../../mod/message.php:546 +msgid "Delete conversation" +msgstr "" + +#: ../../mod/message.php:408 +msgid "D, d M Y - g:i A" +msgstr "" + +#: ../../mod/message.php:411 +#, php-format +msgid "%d message" +msgid_plural "%d messages" +msgstr[0] "" +msgstr[1] "" + +#: ../../mod/message.php:450 +msgid "Message not available." +msgstr "" + +#: ../../mod/message.php:520 +msgid "Delete message" +msgstr "" + +#: ../../mod/message.php:548 msgid "" -"Please visit Friendica.com to learn " -"more about the Friendica project." +"No secure communications available. You may be able to " +"respond from the sender's profile page." msgstr "" -#: ../../mod/friendica.php:63 -msgid "Bug reports and issues: please visit" +#: ../../mod/message.php:552 +msgid "Send Reply" msgstr "" -#: ../../mod/friendica.php:64 -msgid "" -"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - " -"dot com" +#: ../../mod/like.php:168 ../../include/conversation.php:140 +#, php-format +msgid "%1$s doesn't like %2$s's %3$s" msgstr "" -#: ../../mod/friendica.php:78 -msgid "Installed plugins/addons/apps:" +#: ../../mod/oexchange.php:25 +msgid "Post successful." msgstr "" -#: ../../mod/friendica.php:91 -msgid "No installed plugins/addons/apps" -msgstr "" - -#: ../../mod/api.php:76 ../../mod/api.php:102 -msgid "Authorize application connection" -msgstr "" - -#: ../../mod/api.php:77 -msgid "Return to your app and insert this Securty Code:" -msgstr "" - -#: ../../mod/api.php:89 -msgid "Please login to continue." -msgstr "" - -#: ../../mod/api.php:104 -msgid "" -"Do you want to authorize this application to access your posts and contacts, " -"and/or create new posts for you?" -msgstr "" - -#: ../../mod/lockview.php:31 ../../mod/lockview.php:39 -msgid "Remote privacy information not available." -msgstr "" - -#: ../../mod/lockview.php:48 -msgid "Visible to:" -msgstr "" - -#: ../../mod/notes.php:44 ../../boot.php:2023 -msgid "Personal Notes" -msgstr "" - -#: ../../mod/localtime.php:12 ../../include/bb2diaspora.php:134 -#: ../../include/event.php:11 +#: ../../mod/localtime.php:12 ../../include/event.php:11 +#: ../../include/bb2diaspora.php:134 msgid "l F d, Y \\@ g:i A" msgstr "" @@ -4882,6 +4756,268 @@ msgstr "" msgid "Please select your timezone:" msgstr "" +#: ../../mod/filer.php:30 ../../include/conversation.php:1005 +#: ../../include/conversation.php:1023 +msgid "Save to Folder:" +msgstr "" + +#: ../../mod/filer.php:30 +msgid "- select -" +msgstr "" + +#: ../../mod/profperm.php:25 ../../mod/profperm.php:55 +msgid "Invalid profile identifier." +msgstr "" + +#: ../../mod/profperm.php:101 +msgid "Profile Visibility Editor" +msgstr "" + +#: ../../mod/profperm.php:114 +msgid "Visible To" +msgstr "" + +#: ../../mod/profperm.php:130 +msgid "All Contacts (with secure profile access)" +msgstr "" + +#: ../../mod/viewcontacts.php:39 +msgid "No contacts." +msgstr "" + +#: ../../mod/viewcontacts.php:76 ../../include/text.php:875 +msgid "View Contacts" +msgstr "" + +#: ../../mod/dirfind.php:26 +msgid "People Search" +msgstr "" + +#: ../../mod/dirfind.php:60 ../../mod/match.php:65 +msgid "No matches" +msgstr "" + +#: ../../mod/photos.php:67 ../../mod/photos.php:1228 ../../mod/photos.php:1817 +msgid "Upload New Photos" +msgstr "" + +#: ../../mod/photos.php:144 +msgid "Contact information unavailable" +msgstr "" + +#: ../../mod/photos.php:165 +msgid "Album not found." +msgstr "" + +#: ../../mod/photos.php:188 ../../mod/photos.php:200 ../../mod/photos.php:1206 +msgid "Delete Album" +msgstr "" + +#: ../../mod/photos.php:198 +msgid "Do you really want to delete this photo album and all its photos?" +msgstr "" + +#: ../../mod/photos.php:278 ../../mod/photos.php:289 ../../mod/photos.php:1513 +msgid "Delete Photo" +msgstr "" + +#: ../../mod/photos.php:287 +msgid "Do you really want to delete this photo?" +msgstr "" + +#: ../../mod/photos.php:662 +#, php-format +msgid "%1$s was tagged in %2$s by %3$s" +msgstr "" + +#: ../../mod/photos.php:662 +msgid "a photo" +msgstr "" + +#: ../../mod/photos.php:767 +msgid "Image exceeds size limit of " +msgstr "" + +#: ../../mod/photos.php:775 +msgid "Image file is empty." +msgstr "" + +#: ../../mod/photos.php:807 ../../mod/wall_upload.php:112 +#: ../../mod/profile_photo.php:153 +msgid "Unable to process image." +msgstr "" + +#: ../../mod/photos.php:834 ../../mod/wall_upload.php:138 +#: ../../mod/profile_photo.php:301 +msgid "Image upload failed." +msgstr "" + +#: ../../mod/photos.php:930 +msgid "No photos selected" +msgstr "" + +#: ../../mod/photos.php:1031 ../../mod/videos.php:226 +msgid "Access to this item is restricted." +msgstr "" + +#: ../../mod/photos.php:1094 +#, php-format +msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage." +msgstr "" + +#: ../../mod/photos.php:1129 +msgid "Upload Photos" +msgstr "" + +#: ../../mod/photos.php:1133 ../../mod/photos.php:1201 +msgid "New album name: " +msgstr "" + +#: ../../mod/photos.php:1134 +msgid "or existing album name: " +msgstr "" + +#: ../../mod/photos.php:1135 +msgid "Do not show a status post for this upload" +msgstr "" + +#: ../../mod/photos.php:1137 ../../mod/photos.php:1508 +msgid "Permissions" +msgstr "" + +#: ../../mod/photos.php:1148 +msgid "Private Photo" +msgstr "" + +#: ../../mod/photos.php:1149 +msgid "Public Photo" +msgstr "" + +#: ../../mod/photos.php:1216 +msgid "Edit Album" +msgstr "" + +#: ../../mod/photos.php:1222 +msgid "Show Newest First" +msgstr "" + +#: ../../mod/photos.php:1224 +msgid "Show Oldest First" +msgstr "" + +#: ../../mod/photos.php:1257 ../../mod/photos.php:1800 +msgid "View Photo" +msgstr "" + +#: ../../mod/photos.php:1292 +msgid "Permission denied. Access to this item may be restricted." +msgstr "" + +#: ../../mod/photos.php:1294 +msgid "Photo not available" +msgstr "" + +#: ../../mod/photos.php:1350 +msgid "View photo" +msgstr "" + +#: ../../mod/photos.php:1350 +msgid "Edit photo" +msgstr "" + +#: ../../mod/photos.php:1351 +msgid "Use as profile photo" +msgstr "" + +#: ../../mod/photos.php:1376 +msgid "View Full Size" +msgstr "" + +#: ../../mod/photos.php:1455 +msgid "Tags: " +msgstr "" + +#: ../../mod/photos.php:1458 +msgid "[Remove any tag]" +msgstr "" + +#: ../../mod/photos.php:1498 +msgid "Rotate CW (right)" +msgstr "" + +#: ../../mod/photos.php:1499 +msgid "Rotate CCW (left)" +msgstr "" + +#: ../../mod/photos.php:1501 +msgid "New album name" +msgstr "" + +#: ../../mod/photos.php:1504 +msgid "Caption" +msgstr "" + +#: ../../mod/photos.php:1506 +msgid "Add a Tag" +msgstr "" + +#: ../../mod/photos.php:1510 +msgid "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" +msgstr "" + +#: ../../mod/photos.php:1519 +msgid "Private photo" +msgstr "" + +#: ../../mod/photos.php:1520 +msgid "Public photo" +msgstr "" + +#: ../../mod/photos.php:1542 ../../include/conversation.php:1089 +msgid "Share" +msgstr "" + +#: ../../mod/photos.php:1806 ../../mod/videos.php:308 +msgid "View Album" +msgstr "" + +#: ../../mod/photos.php:1815 +msgid "Recent Photos" +msgstr "" + +#: ../../mod/wall_attach.php:75 +msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" +msgstr "" + +#: ../../mod/wall_attach.php:75 +msgid "Or - did you try to upload an empty file?" +msgstr "" + +#: ../../mod/wall_attach.php:81 +#, php-format +msgid "File exceeds size limit of %d" +msgstr "" + +#: ../../mod/wall_attach.php:122 ../../mod/wall_attach.php:133 +msgid "File upload failed." +msgstr "" + +#: ../../mod/videos.php:125 +msgid "No videos selected" +msgstr "" + +#: ../../mod/videos.php:301 ../../include/text.php:1401 +msgid "View Video" +msgstr "" + +#: ../../mod/videos.php:317 +msgid "Recent Videos" +msgstr "" + +#: ../../mod/videos.php:319 +msgid "Upload New Videos" +msgstr "" + #: ../../mod/poke.php:192 msgid "Poke/Prod" msgstr "" @@ -4902,6 +5038,537 @@ msgstr "" msgid "Make this post private" msgstr "" +#: ../../mod/subthread.php:103 +#, php-format +msgid "%1$s is following %2$s's %3$s" +msgstr "" + +#: ../../mod/uexport.php:77 +msgid "Export account" +msgstr "" + +#: ../../mod/uexport.php:77 +msgid "" +"Export your account info and contacts. Use this to make a backup of your " +"account and/or to move it to another server." +msgstr "" + +#: ../../mod/uexport.php:78 +msgid "Export all" +msgstr "" + +#: ../../mod/uexport.php:78 +msgid "" +"Export your accout info, contacts and all your items as json. Could be a " +"very big file, and could take a lot of time. Use this to make a full backup " +"of your account (photos are not exported)" +msgstr "" + +#: ../../mod/common.php:42 +msgid "Common Friends" +msgstr "" + +#: ../../mod/common.php:78 +msgid "No contacts in common." +msgstr "" + +#: ../../mod/wall_upload.php:90 ../../mod/profile_photo.php:144 +#, php-format +msgid "Image exceeds size limit of %d" +msgstr "" + +#: ../../mod/wall_upload.php:135 ../../mod/wall_upload.php:144 +#: ../../mod/wall_upload.php:151 ../../mod/item.php:463 +#: ../../include/Photo.php:911 ../../include/Photo.php:926 +#: ../../include/Photo.php:933 ../../include/Photo.php:955 +#: ../../include/message.php:144 +msgid "Wall Photos" +msgstr "" + +#: ../../mod/profile_photo.php:44 +msgid "Image uploaded but image cropping failed." +msgstr "" + +#: ../../mod/profile_photo.php:77 ../../mod/profile_photo.php:84 +#: ../../mod/profile_photo.php:91 ../../mod/profile_photo.php:308 +#, php-format +msgid "Image size reduction [%s] failed." +msgstr "" + +#: ../../mod/profile_photo.php:118 +msgid "" +"Shift-reload the page or clear browser cache if the new photo does not " +"display immediately." +msgstr "" + +#: ../../mod/profile_photo.php:128 +msgid "Unable to process image" +msgstr "" + +#: ../../mod/profile_photo.php:242 +msgid "Upload File:" +msgstr "" + +#: ../../mod/profile_photo.php:243 +msgid "Select a profile:" +msgstr "" + +#: ../../mod/profile_photo.php:245 +msgid "Upload" +msgstr "" + +#: ../../mod/profile_photo.php:248 +msgid "skip this step" +msgstr "" + +#: ../../mod/profile_photo.php:248 +msgid "select a photo from your photo albums" +msgstr "" + +#: ../../mod/profile_photo.php:262 +msgid "Crop Image" +msgstr "" + +#: ../../mod/profile_photo.php:263 +msgid "Please adjust the image cropping for optimum viewing." +msgstr "" + +#: ../../mod/profile_photo.php:265 +msgid "Done Editing" +msgstr "" + +#: ../../mod/profile_photo.php:299 +msgid "Image uploaded successfully." +msgstr "" + +#: ../../mod/apps.php:11 +msgid "Applications" +msgstr "" + +#: ../../mod/apps.php:14 +msgid "No installed applications." +msgstr "" + +#: ../../mod/navigation.php:20 ../../include/nav.php:34 +msgid "Nothing new here" +msgstr "" + +#: ../../mod/navigation.php:24 ../../include/nav.php:38 +msgid "Clear notifications" +msgstr "" + +#: ../../mod/match.php:12 +msgid "Profile Match" +msgstr "" + +#: ../../mod/match.php:20 +msgid "No keywords to match. Please add keywords to your default profile." +msgstr "" + +#: ../../mod/match.php:57 +msgid "is interested in:" +msgstr "" + +#: ../../mod/tagrm.php:41 +msgid "Tag removed" +msgstr "" + +#: ../../mod/tagrm.php:79 +msgid "Remove Item Tag" +msgstr "" + +#: ../../mod/tagrm.php:81 +msgid "Select a tag to remove: " +msgstr "" + +#: ../../mod/tagrm.php:93 ../../mod/delegate.php:133 +msgid "Remove" +msgstr "" + +#: ../../mod/events.php:66 +msgid "Event title and start time are required." +msgstr "" + +#: ../../mod/events.php:291 +msgid "l, F j" +msgstr "" + +#: ../../mod/events.php:313 +msgid "Edit event" +msgstr "" + +#: ../../mod/events.php:335 ../../include/text.php:1643 +#: ../../include/text.php:1653 +msgid "link to source" +msgstr "" + +#: ../../mod/events.php:371 +msgid "Create New Event" +msgstr "" + +#: ../../mod/events.php:372 +msgid "Previous" +msgstr "" + +#: ../../mod/events.php:446 +msgid "hour:minute" +msgstr "" + +#: ../../mod/events.php:456 +msgid "Event details" +msgstr "" + +#: ../../mod/events.php:457 +#, php-format +msgid "Format is %s %s. Starting date and Title are required." +msgstr "" + +#: ../../mod/events.php:459 +msgid "Event Starts:" +msgstr "" + +#: ../../mod/events.php:459 ../../mod/events.php:473 +msgid "Required" +msgstr "" + +#: ../../mod/events.php:462 +msgid "Finish date/time is not known or not relevant" +msgstr "" + +#: ../../mod/events.php:464 +msgid "Event Finishes:" +msgstr "" + +#: ../../mod/events.php:467 +msgid "Adjust for viewer timezone" +msgstr "" + +#: ../../mod/events.php:469 +msgid "Description:" +msgstr "" + +#: ../../mod/events.php:473 +msgid "Title:" +msgstr "" + +#: ../../mod/events.php:475 +msgid "Share this event" +msgstr "" + +#: ../../mod/delegate.php:95 +msgid "No potential page delegates located." +msgstr "" + +#: ../../mod/delegate.php:124 ../../include/nav.php:168 +msgid "Delegate Page Management" +msgstr "" + +#: ../../mod/delegate.php:126 +msgid "" +"Delegates are able to manage all aspects of this account/page except for " +"basic account settings. Please do not delegate your personal account to " +"anybody that you do not trust completely." +msgstr "" + +#: ../../mod/delegate.php:127 +msgid "Existing Page Managers" +msgstr "" + +#: ../../mod/delegate.php:129 +msgid "Existing Page Delegates" +msgstr "" + +#: ../../mod/delegate.php:131 +msgid "Potential Delegates" +msgstr "" + +#: ../../mod/delegate.php:134 +msgid "Add" +msgstr "" + +#: ../../mod/delegate.php:135 +msgid "No entries." +msgstr "" + +#: ../../mod/nogroup.php:59 +msgid "Contacts who are not members of a group" +msgstr "" + +#: ../../mod/fbrowser.php:113 +msgid "Files" +msgstr "" + +#: ../../mod/maintenance.php:5 +msgid "System down for maintenance" +msgstr "" + +#: ../../mod/removeme.php:46 ../../mod/removeme.php:49 +msgid "Remove My Account" +msgstr "" + +#: ../../mod/removeme.php:47 +msgid "" +"This will completely remove your account. Once this has been done it is not " +"recoverable." +msgstr "" + +#: ../../mod/removeme.php:48 +msgid "Please enter your password for verification:" +msgstr "" + +#: ../../mod/fsuggest.php:63 +msgid "Friend suggestion sent." +msgstr "" + +#: ../../mod/fsuggest.php:97 +msgid "Suggest Friends" +msgstr "" + +#: ../../mod/fsuggest.php:99 +#, php-format +msgid "Suggest a friend for %s" +msgstr "" + +#: ../../mod/item.php:113 +msgid "Unable to locate original post." +msgstr "" + +#: ../../mod/item.php:324 +msgid "Empty post discarded." +msgstr "" + +#: ../../mod/item.php:918 +msgid "System error. Post not saved." +msgstr "" + +#: ../../mod/item.php:945 +#, php-format +msgid "" +"This message was sent to you by %s, a member of the Friendica social network." +msgstr "" + +#: ../../mod/item.php:947 +#, php-format +msgid "You may visit them online at %s" +msgstr "" + +#: ../../mod/item.php:948 +msgid "" +"Please contact the sender by replying to this post if you do not wish to " +"receive these messages." +msgstr "" + +#: ../../mod/item.php:952 +#, php-format +msgid "%s posted an update." +msgstr "" + +#: ../../mod/ping.php:238 +msgid "{0} wants to be your friend" +msgstr "" + +#: ../../mod/ping.php:243 +msgid "{0} sent you a message" +msgstr "" + +#: ../../mod/ping.php:248 +msgid "{0} requested registration" +msgstr "" + +#: ../../mod/ping.php:254 +#, php-format +msgid "{0} commented %s's post" +msgstr "" + +#: ../../mod/ping.php:259 +#, php-format +msgid "{0} liked %s's post" +msgstr "" + +#: ../../mod/ping.php:264 +#, php-format +msgid "{0} disliked %s's post" +msgstr "" + +#: ../../mod/ping.php:269 +#, php-format +msgid "{0} is now friends with %s" +msgstr "" + +#: ../../mod/ping.php:274 +msgid "{0} posted" +msgstr "" + +#: ../../mod/ping.php:279 +#, php-format +msgid "{0} tagged %s's post with #%s" +msgstr "" + +#: ../../mod/ping.php:285 +msgid "{0} mentioned you in a post" +msgstr "" + +#: ../../mod/openid.php:24 +msgid "OpenID protocol error. No ID returned." +msgstr "" + +#: ../../mod/openid.php:53 +msgid "" +"Account not found and OpenID registration is not permitted on this site." +msgstr "" + +#: ../../mod/openid.php:93 ../../include/auth.php:112 +#: ../../include/auth.php:175 +msgid "Login failed." +msgstr "" + +#: ../../mod/notifications.php:26 +msgid "Invalid request identifier." +msgstr "" + +#: ../../mod/notifications.php:35 ../../mod/notifications.php:165 +#: ../../mod/notifications.php:211 +msgid "Discard" +msgstr "" + +#: ../../mod/notifications.php:78 +msgid "System" +msgstr "" + +#: ../../mod/notifications.php:83 ../../include/nav.php:143 +msgid "Network" +msgstr "" + +#: ../../mod/notifications.php:98 ../../include/nav.php:152 +msgid "Introductions" +msgstr "" + +#: ../../mod/notifications.php:122 +msgid "Show Ignored Requests" +msgstr "" + +#: ../../mod/notifications.php:122 +msgid "Hide Ignored Requests" +msgstr "" + +#: ../../mod/notifications.php:149 ../../mod/notifications.php:195 +msgid "Notification type: " +msgstr "" + +#: ../../mod/notifications.php:150 +msgid "Friend Suggestion" +msgstr "" + +#: ../../mod/notifications.php:152 +#, php-format +msgid "suggested by %s" +msgstr "" + +#: ../../mod/notifications.php:158 ../../mod/notifications.php:205 +msgid "Post a new friend activity" +msgstr "" + +#: ../../mod/notifications.php:158 ../../mod/notifications.php:205 +msgid "if applicable" +msgstr "" + +#: ../../mod/notifications.php:181 +msgid "Claims to be known to you: " +msgstr "" + +#: ../../mod/notifications.php:181 +msgid "yes" +msgstr "" + +#: ../../mod/notifications.php:181 +msgid "no" +msgstr "" + +#: ../../mod/notifications.php:188 +msgid "Approve as: " +msgstr "" + +#: ../../mod/notifications.php:189 +msgid "Friend" +msgstr "" + +#: ../../mod/notifications.php:190 +msgid "Sharer" +msgstr "" + +#: ../../mod/notifications.php:190 +msgid "Fan/Admirer" +msgstr "" + +#: ../../mod/notifications.php:196 +msgid "Friend/Connect Request" +msgstr "" + +#: ../../mod/notifications.php:196 +msgid "New Follower" +msgstr "" + +#: ../../mod/notifications.php:217 +msgid "No introductions." +msgstr "" + +#: ../../mod/notifications.php:220 ../../include/nav.php:153 +msgid "Notifications" +msgstr "" + +#: ../../mod/notifications.php:258 ../../mod/notifications.php:387 +#: ../../mod/notifications.php:478 +#, php-format +msgid "%s liked %s's post" +msgstr "" + +#: ../../mod/notifications.php:268 ../../mod/notifications.php:397 +#: ../../mod/notifications.php:488 +#, php-format +msgid "%s disliked %s's post" +msgstr "" + +#: ../../mod/notifications.php:283 ../../mod/notifications.php:412 +#: ../../mod/notifications.php:503 +#, php-format +msgid "%s is now friends with %s" +msgstr "" + +#: ../../mod/notifications.php:290 ../../mod/notifications.php:419 +#, php-format +msgid "%s created a new post" +msgstr "" + +#: ../../mod/notifications.php:291 ../../mod/notifications.php:420 +#: ../../mod/notifications.php:513 +#, php-format +msgid "%s commented on %s's post" +msgstr "" + +#: ../../mod/notifications.php:306 +msgid "No more network notifications." +msgstr "" + +#: ../../mod/notifications.php:310 +msgid "Network Notifications" +msgstr "" + +#: ../../mod/notifications.php:435 +msgid "No more personal notifications." +msgstr "" + +#: ../../mod/notifications.php:439 +msgid "Personal Notifications" +msgstr "" + +#: ../../mod/notifications.php:520 +msgid "No more home notifications." +msgstr "" + +#: ../../mod/notifications.php:524 +msgid "Home Notifications" +msgstr "" + #: ../../mod/invite.php:27 msgid "Total invitation limit exceeded." msgstr "" @@ -4994,417 +5661,32 @@ msgid "" "important, please visit http://friendica.com" msgstr "" -#: ../../mod/photos.php:52 ../../boot.php:2002 -msgid "Photo Albums" +#: ../../mod/manage.php:106 +msgid "Manage Identities and/or Pages" msgstr "" -#: ../../mod/photos.php:60 ../../mod/photos.php:155 ../../mod/photos.php:1062 -#: ../../mod/photos.php:1187 ../../mod/photos.php:1210 -#: ../../mod/photos.php:1756 ../../mod/photos.php:1768 -#: ../../view/theme/diabook/theme.php:499 -msgid "Contact Photos" -msgstr "" - -#: ../../mod/photos.php:67 ../../mod/photos.php:1226 ../../mod/photos.php:1815 -msgid "Upload New Photos" -msgstr "" - -#: ../../mod/photos.php:144 -msgid "Contact information unavailable" -msgstr "" - -#: ../../mod/photos.php:165 -msgid "Album not found." -msgstr "" - -#: ../../mod/photos.php:188 ../../mod/photos.php:200 ../../mod/photos.php:1204 -msgid "Delete Album" -msgstr "" - -#: ../../mod/photos.php:198 -msgid "Do you really want to delete this photo album and all its photos?" -msgstr "" - -#: ../../mod/photos.php:278 ../../mod/photos.php:289 ../../mod/photos.php:1511 -msgid "Delete Photo" -msgstr "" - -#: ../../mod/photos.php:287 -msgid "Do you really want to delete this photo?" -msgstr "" - -#: ../../mod/photos.php:660 -#, php-format -msgid "%1$s was tagged in %2$s by %3$s" -msgstr "" - -#: ../../mod/photos.php:660 -msgid "a photo" -msgstr "" - -#: ../../mod/photos.php:765 -msgid "Image exceeds size limit of " -msgstr "" - -#: ../../mod/photos.php:773 -msgid "Image file is empty." -msgstr "" - -#: ../../mod/photos.php:928 -msgid "No photos selected" -msgstr "" - -#: ../../mod/photos.php:1092 -#, php-format -msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage." -msgstr "" - -#: ../../mod/photos.php:1127 -msgid "Upload Photos" -msgstr "" - -#: ../../mod/photos.php:1131 ../../mod/photos.php:1199 -msgid "New album name: " -msgstr "" - -#: ../../mod/photos.php:1132 -msgid "or existing album name: " -msgstr "" - -#: ../../mod/photos.php:1133 -msgid "Do not show a status post for this upload" -msgstr "" - -#: ../../mod/photos.php:1135 ../../mod/photos.php:1506 -msgid "Permissions" -msgstr "" - -#: ../../mod/photos.php:1146 -msgid "Private Photo" -msgstr "" - -#: ../../mod/photos.php:1147 -msgid "Public Photo" -msgstr "" - -#: ../../mod/photos.php:1214 -msgid "Edit Album" -msgstr "" - -#: ../../mod/photos.php:1220 -msgid "Show Newest First" -msgstr "" - -#: ../../mod/photos.php:1222 -msgid "Show Oldest First" -msgstr "" - -#: ../../mod/photos.php:1255 ../../mod/photos.php:1798 -msgid "View Photo" -msgstr "" - -#: ../../mod/photos.php:1290 -msgid "Permission denied. Access to this item may be restricted." -msgstr "" - -#: ../../mod/photos.php:1292 -msgid "Photo not available" -msgstr "" - -#: ../../mod/photos.php:1348 -msgid "View photo" -msgstr "" - -#: ../../mod/photos.php:1348 -msgid "Edit photo" -msgstr "" - -#: ../../mod/photos.php:1349 -msgid "Use as profile photo" -msgstr "" - -#: ../../mod/photos.php:1374 -msgid "View Full Size" -msgstr "" - -#: ../../mod/photos.php:1453 -msgid "Tags: " -msgstr "" - -#: ../../mod/photos.php:1456 -msgid "[Remove any tag]" -msgstr "" - -#: ../../mod/photos.php:1496 -msgid "Rotate CW (right)" -msgstr "" - -#: ../../mod/photos.php:1497 -msgid "Rotate CCW (left)" -msgstr "" - -#: ../../mod/photos.php:1499 -msgid "New album name" -msgstr "" - -#: ../../mod/photos.php:1502 -msgid "Caption" -msgstr "" - -#: ../../mod/photos.php:1504 -msgid "Add a Tag" -msgstr "" - -#: ../../mod/photos.php:1508 -msgid "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" -msgstr "" - -#: ../../mod/photos.php:1517 -msgid "Private photo" -msgstr "" - -#: ../../mod/photos.php:1518 -msgid "Public photo" -msgstr "" - -#: ../../mod/photos.php:1540 ../../include/conversation.php:1088 -msgid "Share" -msgstr "" - -#: ../../mod/photos.php:1813 -msgid "Recent Photos" -msgstr "" - -#: ../../mod/regmod.php:63 -msgid "Account approved." -msgstr "" - -#: ../../mod/regmod.php:100 -#, php-format -msgid "Registration revoked for %s" -msgstr "" - -#: ../../mod/regmod.php:112 -msgid "Please login." -msgstr "" - -#: ../../mod/uimport.php:66 -msgid "Move account" -msgstr "" - -#: ../../mod/uimport.php:67 -msgid "You can import an account from another Friendica server." -msgstr "" - -#: ../../mod/uimport.php:68 +#: ../../mod/manage.php:107 msgid "" -"You need to export your account from the old server and upload it here. We " -"will recreate your old account here with all your contacts. We will try also " -"to inform your friends that you moved here." +"Toggle between different identities or community/group pages which share " +"your account details or which you have been granted \"manage\" permissions" msgstr "" -#: ../../mod/uimport.php:69 -msgid "" -"This feature is experimental. We can't import contacts from the OStatus " -"network (statusnet/identi.ca) or from Diaspora" +#: ../../mod/manage.php:108 +msgid "Select an identity to manage: " msgstr "" -#: ../../mod/uimport.php:70 -msgid "Account file" -msgstr "" - -#: ../../mod/uimport.php:70 -msgid "" -"To export your account, go to \"Settings->Export your personal data\" and " -"select \"Export account\"" -msgstr "" - -#: ../../mod/attach.php:8 -msgid "Item not available." -msgstr "" - -#: ../../mod/attach.php:20 -msgid "Item was not found." -msgstr "" - -#: ../../boot.php:701 -msgid "Delete this item?" -msgstr "" - -#: ../../boot.php:704 -msgid "show fewer" -msgstr "" - -#: ../../boot.php:1036 +#: ../../mod/home.php:34 #, php-format -msgid "Update %s failed. See error logs." +msgid "Welcome to %s" msgstr "" -#: ../../boot.php:1038 +#: ../../mod/allfriends.php:34 #, php-format -msgid "Update Error at %s" +msgid "Friends of %s" msgstr "" -#: ../../boot.php:1148 -msgid "Create a New Account" -msgstr "" - -#: ../../boot.php:1173 ../../include/nav.php:73 -msgid "Logout" -msgstr "" - -#: ../../boot.php:1174 ../../include/nav.php:91 -msgid "Login" -msgstr "" - -#: ../../boot.php:1176 -msgid "Nickname or Email address: " -msgstr "" - -#: ../../boot.php:1177 -msgid "Password: " -msgstr "" - -#: ../../boot.php:1178 -msgid "Remember me" -msgstr "" - -#: ../../boot.php:1181 -msgid "Or login using OpenID: " -msgstr "" - -#: ../../boot.php:1187 -msgid "Forgot your password?" -msgstr "" - -#: ../../boot.php:1190 -msgid "Website Terms of Service" -msgstr "" - -#: ../../boot.php:1191 -msgid "terms of service" -msgstr "" - -#: ../../boot.php:1193 -msgid "Website Privacy Policy" -msgstr "" - -#: ../../boot.php:1194 -msgid "privacy policy" -msgstr "" - -#: ../../boot.php:1327 -msgid "Requested account is not available." -msgstr "" - -#: ../../boot.php:1406 ../../boot.php:1510 -msgid "Edit profile" -msgstr "" - -#: ../../boot.php:1472 -msgid "Message" -msgstr "" - -#: ../../boot.php:1480 ../../include/nav.php:171 -msgid "Profiles" -msgstr "" - -#: ../../boot.php:1480 -msgid "Manage/edit profiles" -msgstr "" - -#: ../../boot.php:1609 ../../boot.php:1695 -msgid "g A l F d" -msgstr "" - -#: ../../boot.php:1610 ../../boot.php:1696 -msgid "F d" -msgstr "" - -#: ../../boot.php:1655 ../../boot.php:1736 -msgid "[today]" -msgstr "" - -#: ../../boot.php:1667 -msgid "Birthday Reminders" -msgstr "" - -#: ../../boot.php:1668 -msgid "Birthdays this week:" -msgstr "" - -#: ../../boot.php:1729 -msgid "[No description]" -msgstr "" - -#: ../../boot.php:1747 -msgid "Event Reminders" -msgstr "" - -#: ../../boot.php:1748 -msgid "Events this week:" -msgstr "" - -#: ../../boot.php:1985 ../../include/nav.php:76 -msgid "Status" -msgstr "" - -#: ../../boot.php:1988 -msgid "Status Messages and Posts" -msgstr "" - -#: ../../boot.php:1995 -msgid "Profile Details" -msgstr "" - -#: ../../boot.php:2006 ../../boot.php:2009 -msgid "Videos" -msgstr "" - -#: ../../boot.php:2019 -msgid "Events and Calendar" -msgstr "" - -#: ../../boot.php:2026 -msgid "Only You Can See This" -msgstr "" - -#: ../../object/Item.php:92 -msgid "This entry was edited" -msgstr "" - -#: ../../object/Item.php:298 ../../include/conversation.php:665 -msgid "Categories:" -msgstr "" - -#: ../../object/Item.php:299 ../../include/conversation.php:666 -msgid "Filed under:" -msgstr "" - -#: ../../object/Item.php:310 -msgid "via" -msgstr "" - -#: ../../include/dbstructure.php:118 -msgid "Errors encountered creating database tables." -msgstr "" - -#: ../../include/dbstructure.php:176 -msgid "Errors encountered performing database changes." -msgstr "" - -#: ../../include/auth.php:38 -msgid "Logged out." -msgstr "" - -#: ../../include/auth.php:128 ../../include/user.php:66 -msgid "" -"We encountered a problem while logging in with the OpenID you provided. " -"Please check the correct spelling of the ID." -msgstr "" - -#: ../../include/auth.php:128 ../../include/user.php:66 -msgid "The error message was:" +#: ../../mod/allfriends.php:40 +msgid "No friends to display." msgstr "" #: ../../include/contact_widgets.php:6 @@ -5442,18 +5724,10 @@ msgstr "" msgid "Examples: Robert Morgenstein, Fishing" msgstr "" -#: ../../include/contact_widgets.php:35 ../../view/theme/diabook/theme.php:526 -msgid "Similar Interests" -msgstr "" - #: ../../include/contact_widgets.php:36 msgid "Random Profile" msgstr "" -#: ../../include/contact_widgets.php:37 ../../view/theme/diabook/theme.php:528 -msgid "Invite Friends" -msgstr "" - #: ../../include/contact_widgets.php:70 msgid "Networks" msgstr "" @@ -5474,6 +5748,1263 @@ msgstr "" msgid "Categories" msgstr "" +#: ../../include/plugin.php:455 ../../include/plugin.php:457 +msgid "Click here to upgrade." +msgstr "" + +#: ../../include/plugin.php:463 +msgid "This action exceeds the limits set by your subscription plan." +msgstr "" + +#: ../../include/plugin.php:468 +msgid "This action is not available under your subscription plan." +msgstr "" + +#: ../../include/api.php:263 ../../include/api.php:274 +#: ../../include/api.php:375 +msgid "User not found." +msgstr "" + +#: ../../include/api.php:1139 +msgid "There is no status with this id." +msgstr "" + +#: ../../include/api.php:1209 +msgid "There is no conversation with this id." +msgstr "" + +#: ../../include/network.php:892 +msgid "view full size" +msgstr "" + +#: ../../include/event.php:20 ../../include/bb2diaspora.php:140 +msgid "Starts:" +msgstr "" + +#: ../../include/event.php:30 ../../include/bb2diaspora.php:148 +msgid "Finishes:" +msgstr "" + +#: ../../include/dba_pdo.php:72 ../../include/dba.php:51 +#, php-format +msgid "Cannot locate DNS info for database server '%s'" +msgstr "" + +#: ../../include/notifier.php:774 ../../include/delivery.php:456 +msgid "(no subject)" +msgstr "" + +#: ../../include/notifier.php:784 ../../include/enotify.php:28 +#: ../../include/delivery.php:467 +msgid "noreply" +msgstr "" + +#: ../../include/user.php:39 +msgid "An invitation is required." +msgstr "" + +#: ../../include/user.php:44 +msgid "Invitation could not be verified." +msgstr "" + +#: ../../include/user.php:52 +msgid "Invalid OpenID url" +msgstr "" + +#: ../../include/user.php:66 ../../include/auth.php:128 +msgid "" +"We encountered a problem while logging in with the OpenID you provided. " +"Please check the correct spelling of the ID." +msgstr "" + +#: ../../include/user.php:66 ../../include/auth.php:128 +msgid "The error message was:" +msgstr "" + +#: ../../include/user.php:73 +msgid "Please enter the required information." +msgstr "" + +#: ../../include/user.php:87 +msgid "Please use a shorter name." +msgstr "" + +#: ../../include/user.php:89 +msgid "Name too short." +msgstr "" + +#: ../../include/user.php:104 +msgid "That doesn't appear to be your full (First Last) name." +msgstr "" + +#: ../../include/user.php:109 +msgid "Your email domain is not among those allowed on this site." +msgstr "" + +#: ../../include/user.php:112 +msgid "Not a valid email address." +msgstr "" + +#: ../../include/user.php:125 +msgid "Cannot use that email." +msgstr "" + +#: ../../include/user.php:131 +msgid "" +"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and " +"must also begin with a letter." +msgstr "" + +#: ../../include/user.php:137 ../../include/user.php:235 +msgid "Nickname is already registered. Please choose another." +msgstr "" + +#: ../../include/user.php:147 +msgid "" +"Nickname was once registered here and may not be re-used. Please choose " +"another." +msgstr "" + +#: ../../include/user.php:163 +msgid "SERIOUS ERROR: Generation of security keys failed." +msgstr "" + +#: ../../include/user.php:221 +msgid "An error occurred during registration. Please try again." +msgstr "" + +#: ../../include/user.php:256 +msgid "An error occurred creating your default profile. Please try again." +msgstr "" + +#: ../../include/user.php:288 ../../include/user.php:292 +#: ../../include/profile_selectors.php:42 +msgid "Friends" +msgstr "" + +#: ../../include/conversation.php:207 +#, php-format +msgid "%1$s poked %2$s" +msgstr "" + +#: ../../include/conversation.php:211 ../../include/text.php:1004 +msgid "poked" +msgstr "" + +#: ../../include/conversation.php:291 +msgid "post/item" +msgstr "" + +#: ../../include/conversation.php:292 +#, php-format +msgid "%1$s marked %2$s's %3$s as favorite" +msgstr "" + +#: ../../include/conversation.php:771 +msgid "remove" +msgstr "" + +#: ../../include/conversation.php:775 +msgid "Delete Selected Items" +msgstr "" + +#: ../../include/conversation.php:874 +msgid "Follow Thread" +msgstr "" + +#: ../../include/conversation.php:875 ../../include/Contact.php:229 +msgid "View Status" +msgstr "" + +#: ../../include/conversation.php:876 ../../include/Contact.php:230 +msgid "View Profile" +msgstr "" + +#: ../../include/conversation.php:877 ../../include/Contact.php:231 +msgid "View Photos" +msgstr "" + +#: ../../include/conversation.php:878 ../../include/Contact.php:232 +#: ../../include/Contact.php:255 +msgid "Network Posts" +msgstr "" + +#: ../../include/conversation.php:879 ../../include/Contact.php:233 +#: ../../include/Contact.php:255 +msgid "Edit Contact" +msgstr "" + +#: ../../include/conversation.php:880 ../../include/Contact.php:235 +#: ../../include/Contact.php:255 +msgid "Send PM" +msgstr "" + +#: ../../include/conversation.php:881 ../../include/Contact.php:228 +msgid "Poke" +msgstr "" + +#: ../../include/conversation.php:943 +#, php-format +msgid "%s likes this." +msgstr "" + +#: ../../include/conversation.php:943 +#, php-format +msgid "%s doesn't like this." +msgstr "" + +#: ../../include/conversation.php:948 +#, php-format +msgid "%2$d people like this" +msgstr "" + +#: ../../include/conversation.php:951 +#, php-format +msgid "%2$d people don't like this" +msgstr "" + +#: ../../include/conversation.php:965 +msgid "and" +msgstr "" + +#: ../../include/conversation.php:971 +#, php-format +msgid ", and %d other people" +msgstr "" + +#: ../../include/conversation.php:973 +#, php-format +msgid "%s like this." +msgstr "" + +#: ../../include/conversation.php:973 +#, php-format +msgid "%s don't like this." +msgstr "" + +#: ../../include/conversation.php:1000 ../../include/conversation.php:1018 +msgid "Visible to everybody" +msgstr "" + +#: ../../include/conversation.php:1002 ../../include/conversation.php:1020 +msgid "Please enter a video link/URL:" +msgstr "" + +#: ../../include/conversation.php:1003 ../../include/conversation.php:1021 +msgid "Please enter an audio link/URL:" +msgstr "" + +#: ../../include/conversation.php:1004 ../../include/conversation.php:1022 +msgid "Tag term:" +msgstr "" + +#: ../../include/conversation.php:1006 ../../include/conversation.php:1024 +msgid "Where are you right now?" +msgstr "" + +#: ../../include/conversation.php:1007 +msgid "Delete item(s)?" +msgstr "" + +#: ../../include/conversation.php:1050 +msgid "Post to Email" +msgstr "" + +#: ../../include/conversation.php:1055 +#, php-format +msgid "Connectors disabled, since \"%s\" is enabled." +msgstr "" + +#: ../../include/conversation.php:1110 +msgid "permissions" +msgstr "" + +#: ../../include/conversation.php:1134 +msgid "Post to Groups" +msgstr "" + +#: ../../include/conversation.php:1135 +msgid "Post to Contacts" +msgstr "" + +#: ../../include/conversation.php:1136 +msgid "Private post" +msgstr "" + +#: ../../include/auth.php:38 +msgid "Logged out." +msgstr "" + +#: ../../include/uimport.php:94 +msgid "Error decoding account file" +msgstr "" + +#: ../../include/uimport.php:100 +msgid "Error! No version data in file! This is not a Friendica account file?" +msgstr "" + +#: ../../include/uimport.php:116 ../../include/uimport.php:127 +msgid "Error! Cannot check nickname" +msgstr "" + +#: ../../include/uimport.php:120 ../../include/uimport.php:131 +#, php-format +msgid "User '%s' already exists on this server!" +msgstr "" + +#: ../../include/uimport.php:153 +msgid "User creation error" +msgstr "" + +#: ../../include/uimport.php:171 +msgid "User profile creation error" +msgstr "" + +#: ../../include/uimport.php:220 +#, php-format +msgid "%d contact not imported" +msgid_plural "%d contacts not imported" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/uimport.php:290 +msgid "Done. You can now login with your username and password" +msgstr "" + +#: ../../include/text.php:296 +msgid "newer" +msgstr "" + +#: ../../include/text.php:298 +msgid "older" +msgstr "" + +#: ../../include/text.php:303 +msgid "prev" +msgstr "" + +#: ../../include/text.php:305 +msgid "first" +msgstr "" + +#: ../../include/text.php:337 +msgid "last" +msgstr "" + +#: ../../include/text.php:340 +msgid "next" +msgstr "" + +#: ../../include/text.php:854 +msgid "No contacts" +msgstr "" + +#: ../../include/text.php:863 +#, php-format +msgid "%d Contact" +msgid_plural "%d Contacts" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/text.php:1004 +msgid "poke" +msgstr "" + +#: ../../include/text.php:1005 +msgid "ping" +msgstr "" + +#: ../../include/text.php:1005 +msgid "pinged" +msgstr "" + +#: ../../include/text.php:1006 +msgid "prod" +msgstr "" + +#: ../../include/text.php:1006 +msgid "prodded" +msgstr "" + +#: ../../include/text.php:1007 +msgid "slap" +msgstr "" + +#: ../../include/text.php:1007 +msgid "slapped" +msgstr "" + +#: ../../include/text.php:1008 +msgid "finger" +msgstr "" + +#: ../../include/text.php:1008 +msgid "fingered" +msgstr "" + +#: ../../include/text.php:1009 +msgid "rebuff" +msgstr "" + +#: ../../include/text.php:1009 +msgid "rebuffed" +msgstr "" + +#: ../../include/text.php:1023 +msgid "happy" +msgstr "" + +#: ../../include/text.php:1024 +msgid "sad" +msgstr "" + +#: ../../include/text.php:1025 +msgid "mellow" +msgstr "" + +#: ../../include/text.php:1026 +msgid "tired" +msgstr "" + +#: ../../include/text.php:1027 +msgid "perky" +msgstr "" + +#: ../../include/text.php:1028 +msgid "angry" +msgstr "" + +#: ../../include/text.php:1029 +msgid "stupified" +msgstr "" + +#: ../../include/text.php:1030 +msgid "puzzled" +msgstr "" + +#: ../../include/text.php:1031 +msgid "interested" +msgstr "" + +#: ../../include/text.php:1032 +msgid "bitter" +msgstr "" + +#: ../../include/text.php:1033 +msgid "cheerful" +msgstr "" + +#: ../../include/text.php:1034 +msgid "alive" +msgstr "" + +#: ../../include/text.php:1035 +msgid "annoyed" +msgstr "" + +#: ../../include/text.php:1036 +msgid "anxious" +msgstr "" + +#: ../../include/text.php:1037 +msgid "cranky" +msgstr "" + +#: ../../include/text.php:1038 +msgid "disturbed" +msgstr "" + +#: ../../include/text.php:1039 +msgid "frustrated" +msgstr "" + +#: ../../include/text.php:1040 +msgid "motivated" +msgstr "" + +#: ../../include/text.php:1041 +msgid "relaxed" +msgstr "" + +#: ../../include/text.php:1042 +msgid "surprised" +msgstr "" + +#: ../../include/text.php:1210 +msgid "Monday" +msgstr "" + +#: ../../include/text.php:1210 +msgid "Tuesday" +msgstr "" + +#: ../../include/text.php:1210 +msgid "Wednesday" +msgstr "" + +#: ../../include/text.php:1210 +msgid "Thursday" +msgstr "" + +#: ../../include/text.php:1210 +msgid "Friday" +msgstr "" + +#: ../../include/text.php:1210 +msgid "Saturday" +msgstr "" + +#: ../../include/text.php:1210 +msgid "Sunday" +msgstr "" + +#: ../../include/text.php:1214 +msgid "January" +msgstr "" + +#: ../../include/text.php:1214 +msgid "February" +msgstr "" + +#: ../../include/text.php:1214 +msgid "March" +msgstr "" + +#: ../../include/text.php:1214 +msgid "April" +msgstr "" + +#: ../../include/text.php:1214 +msgid "May" +msgstr "" + +#: ../../include/text.php:1214 +msgid "June" +msgstr "" + +#: ../../include/text.php:1214 +msgid "July" +msgstr "" + +#: ../../include/text.php:1214 +msgid "August" +msgstr "" + +#: ../../include/text.php:1214 +msgid "September" +msgstr "" + +#: ../../include/text.php:1214 +msgid "October" +msgstr "" + +#: ../../include/text.php:1214 +msgid "November" +msgstr "" + +#: ../../include/text.php:1214 +msgid "December" +msgstr "" + +#: ../../include/text.php:1433 +msgid "bytes" +msgstr "" + +#: ../../include/text.php:1457 ../../include/text.php:1469 +msgid "Click to open/close" +msgstr "" + +#: ../../include/text.php:1710 +msgid "Select an alternate language" +msgstr "" + +#: ../../include/text.php:1966 +msgid "activity" +msgstr "" + +#: ../../include/text.php:1969 +msgid "post" +msgstr "" + +#: ../../include/text.php:2137 +msgid "Item filed" +msgstr "" + +#: ../../include/enotify.php:16 +msgid "Friendica Notification" +msgstr "" + +#: ../../include/enotify.php:19 +msgid "Thank You," +msgstr "" + +#: ../../include/enotify.php:21 +#, php-format +msgid "%s Administrator" +msgstr "" + +#: ../../include/enotify.php:40 +#, php-format +msgid "%s " +msgstr "" + +#: ../../include/enotify.php:44 +#, php-format +msgid "[Friendica:Notify] New mail received at %s" +msgstr "" + +#: ../../include/enotify.php:46 +#, php-format +msgid "%1$s sent you a new private message at %2$s." +msgstr "" + +#: ../../include/enotify.php:47 +#, php-format +msgid "%1$s sent you %2$s." +msgstr "" + +#: ../../include/enotify.php:47 +msgid "a private message" +msgstr "" + +#: ../../include/enotify.php:48 +#, php-format +msgid "Please visit %s to view and/or reply to your private messages." +msgstr "" + +#: ../../include/enotify.php:91 +#, php-format +msgid "%1$s commented on [url=%2$s]a %3$s[/url]" +msgstr "" + +#: ../../include/enotify.php:98 +#, php-format +msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]" +msgstr "" + +#: ../../include/enotify.php:106 +#, php-format +msgid "%1$s commented on [url=%2$s]your %3$s[/url]" +msgstr "" + +#: ../../include/enotify.php:116 +#, php-format +msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s" +msgstr "" + +#: ../../include/enotify.php:117 +#, php-format +msgid "%s commented on an item/conversation you have been following." +msgstr "" + +#: ../../include/enotify.php:120 ../../include/enotify.php:135 +#: ../../include/enotify.php:148 ../../include/enotify.php:161 +#: ../../include/enotify.php:179 ../../include/enotify.php:192 +#, php-format +msgid "Please visit %s to view and/or reply to the conversation." +msgstr "" + +#: ../../include/enotify.php:127 +#, php-format +msgid "[Friendica:Notify] %s posted to your profile wall" +msgstr "" + +#: ../../include/enotify.php:129 +#, php-format +msgid "%1$s posted to your profile wall at %2$s" +msgstr "" + +#: ../../include/enotify.php:131 +#, php-format +msgid "%1$s posted to [url=%2$s]your wall[/url]" +msgstr "" + +#: ../../include/enotify.php:142 +#, php-format +msgid "[Friendica:Notify] %s tagged you" +msgstr "" + +#: ../../include/enotify.php:143 +#, php-format +msgid "%1$s tagged you at %2$s" +msgstr "" + +#: ../../include/enotify.php:144 +#, php-format +msgid "%1$s [url=%2$s]tagged you[/url]." +msgstr "" + +#: ../../include/enotify.php:155 +#, php-format +msgid "[Friendica:Notify] %s shared a new post" +msgstr "" + +#: ../../include/enotify.php:156 +#, php-format +msgid "%1$s shared a new post at %2$s" +msgstr "" + +#: ../../include/enotify.php:157 +#, php-format +msgid "%1$s [url=%2$s]shared a post[/url]." +msgstr "" + +#: ../../include/enotify.php:169 +#, php-format +msgid "[Friendica:Notify] %1$s poked you" +msgstr "" + +#: ../../include/enotify.php:170 +#, php-format +msgid "%1$s poked you at %2$s" +msgstr "" + +#: ../../include/enotify.php:171 +#, php-format +msgid "%1$s [url=%2$s]poked you[/url]." +msgstr "" + +#: ../../include/enotify.php:186 +#, php-format +msgid "[Friendica:Notify] %s tagged your post" +msgstr "" + +#: ../../include/enotify.php:187 +#, php-format +msgid "%1$s tagged your post at %2$s" +msgstr "" + +#: ../../include/enotify.php:188 +#, php-format +msgid "%1$s tagged [url=%2$s]your post[/url]" +msgstr "" + +#: ../../include/enotify.php:199 +msgid "[Friendica:Notify] Introduction received" +msgstr "" + +#: ../../include/enotify.php:200 +#, php-format +msgid "You've received an introduction from '%1$s' at %2$s" +msgstr "" + +#: ../../include/enotify.php:201 +#, php-format +msgid "You've received [url=%1$s]an introduction[/url] from %2$s." +msgstr "" + +#: ../../include/enotify.php:204 ../../include/enotify.php:222 +#, php-format +msgid "You may visit their profile at %s" +msgstr "" + +#: ../../include/enotify.php:206 +#, php-format +msgid "Please visit %s to approve or reject the introduction." +msgstr "" + +#: ../../include/enotify.php:213 +msgid "[Friendica:Notify] Friend suggestion received" +msgstr "" + +#: ../../include/enotify.php:214 +#, php-format +msgid "You've received a friend suggestion from '%1$s' at %2$s" +msgstr "" + +#: ../../include/enotify.php:215 +#, php-format +msgid "You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." +msgstr "" + +#: ../../include/enotify.php:220 +msgid "Name:" +msgstr "" + +#: ../../include/enotify.php:221 +msgid "Photo:" +msgstr "" + +#: ../../include/enotify.php:224 +#, php-format +msgid "Please visit %s to approve or reject the suggestion." +msgstr "" + +#: ../../include/Scrape.php:584 +msgid " on Last.fm" +msgstr "" + +#: ../../include/group.php:25 +msgid "" +"A deleted group with this name was revived. Existing item permissions " +"may apply to this group and any future members. If this is " +"not what you intended, please create another group with a different name." +msgstr "" + +#: ../../include/group.php:207 +msgid "Default privacy group for new contacts" +msgstr "" + +#: ../../include/group.php:226 +msgid "Everybody" +msgstr "" + +#: ../../include/group.php:249 +msgid "edit" +msgstr "" + +#: ../../include/group.php:271 +msgid "Edit group" +msgstr "" + +#: ../../include/group.php:272 +msgid "Create a new group" +msgstr "" + +#: ../../include/group.php:273 +msgid "Contacts not in any group" +msgstr "" + +#: ../../include/follow.php:32 +msgid "Connect URL missing." +msgstr "" + +#: ../../include/follow.php:59 +msgid "" +"This site is not configured to allow communications with other networks." +msgstr "" + +#: ../../include/follow.php:60 ../../include/follow.php:80 +msgid "No compatible communication protocols or feeds were discovered." +msgstr "" + +#: ../../include/follow.php:78 +msgid "The profile address specified does not provide adequate information." +msgstr "" + +#: ../../include/follow.php:82 +msgid "An author or name was not found." +msgstr "" + +#: ../../include/follow.php:84 +msgid "No browser URL could be matched to this address." +msgstr "" + +#: ../../include/follow.php:86 +msgid "" +"Unable to match @-style Identity Address with a known protocol or email " +"contact." +msgstr "" + +#: ../../include/follow.php:87 +msgid "Use mailto: in front of address to force email check." +msgstr "" + +#: ../../include/follow.php:93 +msgid "" +"The profile address specified belongs to a network which has been disabled " +"on this site." +msgstr "" + +#: ../../include/follow.php:103 +msgid "" +"Limited profile. This person will be unable to receive direct/personal " +"notifications from you." +msgstr "" + +#: ../../include/follow.php:205 +msgid "Unable to retrieve contact information." +msgstr "" + +#: ../../include/follow.php:259 +msgid "following" +msgstr "" + +#: ../../include/message.php:15 ../../include/message.php:172 +msgid "[no subject]" +msgstr "" + +#: ../../include/nav.php:73 +msgid "End this session" +msgstr "" + +#: ../../include/nav.php:79 +msgid "Your videos" +msgstr "" + +#: ../../include/nav.php:81 +msgid "Your personal notes" +msgstr "" + +#: ../../include/nav.php:92 +msgid "Sign in" +msgstr "" + +#: ../../include/nav.php:105 +msgid "Home Page" +msgstr "" + +#: ../../include/nav.php:109 +msgid "Create an account" +msgstr "" + +#: ../../include/nav.php:114 +msgid "Help and documentation" +msgstr "" + +#: ../../include/nav.php:117 +msgid "Apps" +msgstr "" + +#: ../../include/nav.php:117 +msgid "Addon applications, utilities, games" +msgstr "" + +#: ../../include/nav.php:119 +msgid "Search site content" +msgstr "" + +#: ../../include/nav.php:129 +msgid "Conversations on this site" +msgstr "" + +#: ../../include/nav.php:131 +msgid "Directory" +msgstr "" + +#: ../../include/nav.php:131 +msgid "People directory" +msgstr "" + +#: ../../include/nav.php:133 +msgid "Information" +msgstr "" + +#: ../../include/nav.php:133 +msgid "Information about this friendica instance" +msgstr "" + +#: ../../include/nav.php:143 +msgid "Conversations from your friends" +msgstr "" + +#: ../../include/nav.php:144 +msgid "Network Reset" +msgstr "" + +#: ../../include/nav.php:144 +msgid "Load Network page with no filters" +msgstr "" + +#: ../../include/nav.php:152 +msgid "Friend Requests" +msgstr "" + +#: ../../include/nav.php:154 +msgid "See all notifications" +msgstr "" + +#: ../../include/nav.php:155 +msgid "Mark all system notifications seen" +msgstr "" + +#: ../../include/nav.php:159 +msgid "Private mail" +msgstr "" + +#: ../../include/nav.php:160 +msgid "Inbox" +msgstr "" + +#: ../../include/nav.php:161 +msgid "Outbox" +msgstr "" + +#: ../../include/nav.php:165 +msgid "Manage" +msgstr "" + +#: ../../include/nav.php:165 +msgid "Manage other pages" +msgstr "" + +#: ../../include/nav.php:170 +msgid "Account settings" +msgstr "" + +#: ../../include/nav.php:173 +msgid "Manage/Edit Profiles" +msgstr "" + +#: ../../include/nav.php:175 +msgid "Manage/edit friends and contacts" +msgstr "" + +#: ../../include/nav.php:182 +msgid "Site setup and configuration" +msgstr "" + +#: ../../include/nav.php:186 +msgid "Navigation" +msgstr "" + +#: ../../include/nav.php:186 +msgid "Site map" +msgstr "" + +#: ../../include/profile_advanced.php:22 +msgid "j F, Y" +msgstr "" + +#: ../../include/profile_advanced.php:23 +msgid "j F" +msgstr "" + +#: ../../include/profile_advanced.php:30 +msgid "Birthday:" +msgstr "" + +#: ../../include/profile_advanced.php:34 +msgid "Age:" +msgstr "" + +#: ../../include/profile_advanced.php:43 +#, php-format +msgid "for %1$d %2$s" +msgstr "" + +#: ../../include/profile_advanced.php:52 +msgid "Tags:" +msgstr "" + +#: ../../include/profile_advanced.php:56 +msgid "Religion:" +msgstr "" + +#: ../../include/profile_advanced.php:60 +msgid "Hobbies/Interests:" +msgstr "" + +#: ../../include/profile_advanced.php:67 +msgid "Contact information and Social Networks:" +msgstr "" + +#: ../../include/profile_advanced.php:69 +msgid "Musical interests:" +msgstr "" + +#: ../../include/profile_advanced.php:71 +msgid "Books, literature:" +msgstr "" + +#: ../../include/profile_advanced.php:73 +msgid "Television:" +msgstr "" + +#: ../../include/profile_advanced.php:75 +msgid "Film/dance/culture/entertainment:" +msgstr "" + +#: ../../include/profile_advanced.php:77 +msgid "Love/Romance:" +msgstr "" + +#: ../../include/profile_advanced.php:79 +msgid "Work/employment:" +msgstr "" + +#: ../../include/profile_advanced.php:81 +msgid "School/education:" +msgstr "" + +#: ../../include/bbcode.php:381 ../../include/bbcode.php:961 +#: ../../include/bbcode.php:962 +msgid "Image/photo" +msgstr "" + +#: ../../include/bbcode.php:477 +#, php-format +msgid "%2$s %3$s" +msgstr "" + +#: ../../include/bbcode.php:511 +#, php-format +msgid "" +"%s wrote the following post" +msgstr "" + +#: ../../include/bbcode.php:925 ../../include/bbcode.php:945 +msgid "$1 wrote:" +msgstr "" + +#: ../../include/bbcode.php:970 ../../include/bbcode.php:971 +msgid "Encrypted content" +msgstr "" + +#: ../../include/contact_selectors.php:32 +msgid "Unknown | Not categorised" +msgstr "" + +#: ../../include/contact_selectors.php:33 +msgid "Block immediately" +msgstr "" + +#: ../../include/contact_selectors.php:34 +msgid "Shady, spammer, self-marketer" +msgstr "" + +#: ../../include/contact_selectors.php:35 +msgid "Known to me, but no opinion" +msgstr "" + +#: ../../include/contact_selectors.php:36 +msgid "OK, probably harmless" +msgstr "" + +#: ../../include/contact_selectors.php:37 +msgid "Reputable, has my trust" +msgstr "" + +#: ../../include/contact_selectors.php:60 +msgid "Weekly" +msgstr "" + +#: ../../include/contact_selectors.php:61 +msgid "Monthly" +msgstr "" + +#: ../../include/contact_selectors.php:77 +msgid "OStatus" +msgstr "" + +#: ../../include/contact_selectors.php:78 +msgid "RSS/Atom" +msgstr "" + +#: ../../include/contact_selectors.php:82 +msgid "Zot!" +msgstr "" + +#: ../../include/contact_selectors.php:83 +msgid "LinkedIn" +msgstr "" + +#: ../../include/contact_selectors.php:84 +msgid "XMPP/IM" +msgstr "" + +#: ../../include/contact_selectors.php:85 +msgid "MySpace" +msgstr "" + +#: ../../include/contact_selectors.php:87 +msgid "Google+" +msgstr "" + +#: ../../include/contact_selectors.php:88 +msgid "pump.io" +msgstr "" + +#: ../../include/contact_selectors.php:89 +msgid "Twitter" +msgstr "" + +#: ../../include/contact_selectors.php:90 +msgid "Diaspora Connector" +msgstr "" + +#: ../../include/contact_selectors.php:91 +msgid "Statusnet" +msgstr "" + +#: ../../include/contact_selectors.php:92 +msgid "App.net" +msgstr "" + +#: ../../include/datetime.php:43 ../../include/datetime.php:45 +msgid "Miscellaneous" +msgstr "" + +#: ../../include/datetime.php:153 ../../include/datetime.php:285 +msgid "year" +msgstr "" + +#: ../../include/datetime.php:158 ../../include/datetime.php:286 +msgid "month" +msgstr "" + +#: ../../include/datetime.php:163 ../../include/datetime.php:288 +msgid "day" +msgstr "" + +#: ../../include/datetime.php:276 +msgid "never" +msgstr "" + +#: ../../include/datetime.php:282 +msgid "less than a second ago" +msgstr "" + +#: ../../include/datetime.php:285 +msgid "years" +msgstr "" + +#: ../../include/datetime.php:286 +msgid "months" +msgstr "" + +#: ../../include/datetime.php:287 +msgid "week" +msgstr "" + +#: ../../include/datetime.php:287 +msgid "weeks" +msgstr "" + +#: ../../include/datetime.php:288 +msgid "days" +msgstr "" + +#: ../../include/datetime.php:289 +msgid "hour" +msgstr "" + +#: ../../include/datetime.php:289 +msgid "hours" +msgstr "" + +#: ../../include/datetime.php:290 +msgid "minute" +msgstr "" + +#: ../../include/datetime.php:290 +msgid "minutes" +msgstr "" + +#: ../../include/datetime.php:291 +msgid "second" +msgstr "" + +#: ../../include/datetime.php:291 +msgid "seconds" +msgstr "" + +#: ../../include/datetime.php:300 +#, php-format +msgid "%1$d %2$s ago" +msgstr "" + +#: ../../include/datetime.php:472 ../../include/items.php:2071 +#, php-format +msgid "%s's birthday" +msgstr "" + +#: ../../include/datetime.php:473 ../../include/items.php:2072 +#, php-format +msgid "Happy Birthday %s" +msgstr "" + #: ../../include/features.php:23 msgid "General Features" msgstr "" @@ -5631,230 +7162,48 @@ msgstr "" msgid "Ability to mark special posts with a star indicator" msgstr "" -#: ../../include/follow.php:32 -msgid "Connect URL missing." +#: ../../include/diaspora.php:703 +msgid "Sharing notification from Diaspora network" msgstr "" -#: ../../include/follow.php:59 -msgid "" -"This site is not configured to allow communications with other networks." +#: ../../include/diaspora.php:2313 +msgid "Attachments:" msgstr "" -#: ../../include/follow.php:60 ../../include/follow.php:80 -msgid "No compatible communication protocols or feeds were discovered." +#: ../../include/dbstructure.php:118 +msgid "Errors encountered creating database tables." msgstr "" -#: ../../include/follow.php:78 -msgid "The profile address specified does not provide adequate information." -msgstr "" - -#: ../../include/follow.php:82 -msgid "An author or name was not found." -msgstr "" - -#: ../../include/follow.php:84 -msgid "No browser URL could be matched to this address." -msgstr "" - -#: ../../include/follow.php:86 -msgid "" -"Unable to match @-style Identity Address with a known protocol or email " -"contact." -msgstr "" - -#: ../../include/follow.php:87 -msgid "Use mailto: in front of address to force email check." -msgstr "" - -#: ../../include/follow.php:93 -msgid "" -"The profile address specified belongs to a network which has been disabled " -"on this site." -msgstr "" - -#: ../../include/follow.php:103 -msgid "" -"Limited profile. This person will be unable to receive direct/personal " -"notifications from you." -msgstr "" - -#: ../../include/follow.php:205 -msgid "Unable to retrieve contact information." -msgstr "" - -#: ../../include/follow.php:259 -msgid "following" -msgstr "" - -#: ../../include/group.php:25 -msgid "" -"A deleted group with this name was revived. Existing item permissions " -"may apply to this group and any future members. If this is " -"not what you intended, please create another group with a different name." -msgstr "" - -#: ../../include/group.php:207 -msgid "Default privacy group for new contacts" -msgstr "" - -#: ../../include/group.php:226 -msgid "Everybody" -msgstr "" - -#: ../../include/group.php:249 -msgid "edit" -msgstr "" - -#: ../../include/group.php:271 -msgid "Edit group" -msgstr "" - -#: ../../include/group.php:272 -msgid "Create a new group" -msgstr "" - -#: ../../include/group.php:273 -msgid "Contacts not in any group" -msgstr "" - -#: ../../include/datetime.php:43 ../../include/datetime.php:45 -msgid "Miscellaneous" -msgstr "" - -#: ../../include/datetime.php:153 ../../include/datetime.php:285 -msgid "year" -msgstr "" - -#: ../../include/datetime.php:158 ../../include/datetime.php:286 -msgid "month" -msgstr "" - -#: ../../include/datetime.php:163 ../../include/datetime.php:288 -msgid "day" -msgstr "" - -#: ../../include/datetime.php:276 -msgid "never" -msgstr "" - -#: ../../include/datetime.php:282 -msgid "less than a second ago" -msgstr "" - -#: ../../include/datetime.php:285 -msgid "years" -msgstr "" - -#: ../../include/datetime.php:286 -msgid "months" -msgstr "" - -#: ../../include/datetime.php:287 -msgid "week" -msgstr "" - -#: ../../include/datetime.php:287 -msgid "weeks" -msgstr "" - -#: ../../include/datetime.php:288 -msgid "days" -msgstr "" - -#: ../../include/datetime.php:289 -msgid "hour" -msgstr "" - -#: ../../include/datetime.php:289 -msgid "hours" -msgstr "" - -#: ../../include/datetime.php:290 -msgid "minute" -msgstr "" - -#: ../../include/datetime.php:290 -msgid "minutes" -msgstr "" - -#: ../../include/datetime.php:291 -msgid "second" -msgstr "" - -#: ../../include/datetime.php:291 -msgid "seconds" -msgstr "" - -#: ../../include/datetime.php:300 -#, php-format -msgid "%1$d %2$s ago" -msgstr "" - -#: ../../include/datetime.php:472 ../../include/items.php:1986 -#, php-format -msgid "%s's birthday" -msgstr "" - -#: ../../include/datetime.php:473 ../../include/items.php:1987 -#, php-format -msgid "Happy Birthday %s" +#: ../../include/dbstructure.php:176 +msgid "Errors encountered performing database changes." msgstr "" #: ../../include/acl_selectors.php:326 msgid "Visible to everybody" msgstr "" -#: ../../include/acl_selectors.php:327 ../../view/theme/diabook/config.php:142 -#: ../../view/theme/diabook/theme.php:621 -msgid "show" +#: ../../include/items.php:3804 +msgid "A new person is sharing with you at " msgstr "" -#: ../../include/acl_selectors.php:328 ../../view/theme/diabook/config.php:142 -#: ../../view/theme/diabook/theme.php:621 -msgid "don't show" +#: ../../include/items.php:3804 +msgid "You have a new follower at " msgstr "" -#: ../../include/message.php:15 ../../include/message.php:172 -msgid "[no subject]" +#: ../../include/items.php:4339 +msgid "Do you really want to delete this item?" msgstr "" -#: ../../include/Contact.php:115 -msgid "stopped following" +#: ../../include/items.php:4566 +msgid "Archives" msgstr "" -#: ../../include/Contact.php:228 ../../include/conversation.php:880 -msgid "Poke" +#: ../../include/oembed.php:200 +msgid "Embedded content" msgstr "" -#: ../../include/Contact.php:229 ../../include/conversation.php:874 -msgid "View Status" -msgstr "" - -#: ../../include/Contact.php:230 ../../include/conversation.php:875 -msgid "View Profile" -msgstr "" - -#: ../../include/Contact.php:231 ../../include/conversation.php:876 -msgid "View Photos" -msgstr "" - -#: ../../include/Contact.php:232 ../../include/Contact.php:255 -#: ../../include/conversation.php:877 -msgid "Network Posts" -msgstr "" - -#: ../../include/Contact.php:233 ../../include/Contact.php:255 -#: ../../include/conversation.php:878 -msgid "Edit Contact" -msgstr "" - -#: ../../include/Contact.php:234 -msgid "Drop Contact" -msgstr "" - -#: ../../include/Contact.php:235 ../../include/Contact.php:255 -#: ../../include/conversation.php:879 -msgid "Send PM" +#: ../../include/oembed.php:209 +msgid "Embedding disabled" msgstr "" #: ../../include/security.php:22 @@ -5875,859 +7224,6 @@ msgid "" "form has been opened for too long (>3 hours) before submitting it." msgstr "" -#: ../../include/conversation.php:118 ../../include/conversation.php:246 -#: ../../include/text.php:1953 ../../view/theme/diabook/theme.php:463 -msgid "event" -msgstr "" - -#: ../../include/conversation.php:207 -#, php-format -msgid "%1$s poked %2$s" -msgstr "" - -#: ../../include/conversation.php:211 ../../include/text.php:1003 -msgid "poked" -msgstr "" - -#: ../../include/conversation.php:291 -msgid "post/item" -msgstr "" - -#: ../../include/conversation.php:292 -#, php-format -msgid "%1$s marked %2$s's %3$s as favorite" -msgstr "" - -#: ../../include/conversation.php:770 -msgid "remove" -msgstr "" - -#: ../../include/conversation.php:774 -msgid "Delete Selected Items" -msgstr "" - -#: ../../include/conversation.php:873 -msgid "Follow Thread" -msgstr "" - -#: ../../include/conversation.php:942 -#, php-format -msgid "%s likes this." -msgstr "" - -#: ../../include/conversation.php:942 -#, php-format -msgid "%s doesn't like this." -msgstr "" - -#: ../../include/conversation.php:947 -#, php-format -msgid "%2$d people like this" -msgstr "" - -#: ../../include/conversation.php:950 -#, php-format -msgid "%2$d people don't like this" -msgstr "" - -#: ../../include/conversation.php:964 -msgid "and" -msgstr "" - -#: ../../include/conversation.php:970 -#, php-format -msgid ", and %d other people" -msgstr "" - -#: ../../include/conversation.php:972 -#, php-format -msgid "%s like this." -msgstr "" - -#: ../../include/conversation.php:972 -#, php-format -msgid "%s don't like this." -msgstr "" - -#: ../../include/conversation.php:999 ../../include/conversation.php:1017 -msgid "Visible to everybody" -msgstr "" - -#: ../../include/conversation.php:1001 ../../include/conversation.php:1019 -msgid "Please enter a video link/URL:" -msgstr "" - -#: ../../include/conversation.php:1002 ../../include/conversation.php:1020 -msgid "Please enter an audio link/URL:" -msgstr "" - -#: ../../include/conversation.php:1003 ../../include/conversation.php:1021 -msgid "Tag term:" -msgstr "" - -#: ../../include/conversation.php:1005 ../../include/conversation.php:1023 -msgid "Where are you right now?" -msgstr "" - -#: ../../include/conversation.php:1006 -msgid "Delete item(s)?" -msgstr "" - -#: ../../include/conversation.php:1049 -msgid "Post to Email" -msgstr "" - -#: ../../include/conversation.php:1054 -#, php-format -msgid "Connectors disabled, since \"%s\" is enabled." -msgstr "" - -#: ../../include/conversation.php:1109 -msgid "permissions" -msgstr "" - -#: ../../include/conversation.php:1133 -msgid "Post to Groups" -msgstr "" - -#: ../../include/conversation.php:1134 -msgid "Post to Contacts" -msgstr "" - -#: ../../include/conversation.php:1135 -msgid "Private post" -msgstr "" - -#: ../../include/network.php:893 -msgid "view full size" -msgstr "" - -#: ../../include/text.php:296 -msgid "newer" -msgstr "" - -#: ../../include/text.php:298 -msgid "older" -msgstr "" - -#: ../../include/text.php:303 -msgid "prev" -msgstr "" - -#: ../../include/text.php:305 -msgid "first" -msgstr "" - -#: ../../include/text.php:337 -msgid "last" -msgstr "" - -#: ../../include/text.php:340 -msgid "next" -msgstr "" - -#: ../../include/text.php:853 -msgid "No contacts" -msgstr "" - -#: ../../include/text.php:862 -#, php-format -msgid "%d Contact" -msgid_plural "%d Contacts" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/text.php:1003 -msgid "poke" -msgstr "" - -#: ../../include/text.php:1004 -msgid "ping" -msgstr "" - -#: ../../include/text.php:1004 -msgid "pinged" -msgstr "" - -#: ../../include/text.php:1005 -msgid "prod" -msgstr "" - -#: ../../include/text.php:1005 -msgid "prodded" -msgstr "" - -#: ../../include/text.php:1006 -msgid "slap" -msgstr "" - -#: ../../include/text.php:1006 -msgid "slapped" -msgstr "" - -#: ../../include/text.php:1007 -msgid "finger" -msgstr "" - -#: ../../include/text.php:1007 -msgid "fingered" -msgstr "" - -#: ../../include/text.php:1008 -msgid "rebuff" -msgstr "" - -#: ../../include/text.php:1008 -msgid "rebuffed" -msgstr "" - -#: ../../include/text.php:1022 -msgid "happy" -msgstr "" - -#: ../../include/text.php:1023 -msgid "sad" -msgstr "" - -#: ../../include/text.php:1024 -msgid "mellow" -msgstr "" - -#: ../../include/text.php:1025 -msgid "tired" -msgstr "" - -#: ../../include/text.php:1026 -msgid "perky" -msgstr "" - -#: ../../include/text.php:1027 -msgid "angry" -msgstr "" - -#: ../../include/text.php:1028 -msgid "stupified" -msgstr "" - -#: ../../include/text.php:1029 -msgid "puzzled" -msgstr "" - -#: ../../include/text.php:1030 -msgid "interested" -msgstr "" - -#: ../../include/text.php:1031 -msgid "bitter" -msgstr "" - -#: ../../include/text.php:1032 -msgid "cheerful" -msgstr "" - -#: ../../include/text.php:1033 -msgid "alive" -msgstr "" - -#: ../../include/text.php:1034 -msgid "annoyed" -msgstr "" - -#: ../../include/text.php:1035 -msgid "anxious" -msgstr "" - -#: ../../include/text.php:1036 -msgid "cranky" -msgstr "" - -#: ../../include/text.php:1037 -msgid "disturbed" -msgstr "" - -#: ../../include/text.php:1038 -msgid "frustrated" -msgstr "" - -#: ../../include/text.php:1039 -msgid "motivated" -msgstr "" - -#: ../../include/text.php:1040 -msgid "relaxed" -msgstr "" - -#: ../../include/text.php:1041 -msgid "surprised" -msgstr "" - -#: ../../include/text.php:1209 -msgid "Monday" -msgstr "" - -#: ../../include/text.php:1209 -msgid "Tuesday" -msgstr "" - -#: ../../include/text.php:1209 -msgid "Wednesday" -msgstr "" - -#: ../../include/text.php:1209 -msgid "Thursday" -msgstr "" - -#: ../../include/text.php:1209 -msgid "Friday" -msgstr "" - -#: ../../include/text.php:1209 -msgid "Saturday" -msgstr "" - -#: ../../include/text.php:1209 -msgid "Sunday" -msgstr "" - -#: ../../include/text.php:1213 -msgid "January" -msgstr "" - -#: ../../include/text.php:1213 -msgid "February" -msgstr "" - -#: ../../include/text.php:1213 -msgid "March" -msgstr "" - -#: ../../include/text.php:1213 -msgid "April" -msgstr "" - -#: ../../include/text.php:1213 -msgid "May" -msgstr "" - -#: ../../include/text.php:1213 -msgid "June" -msgstr "" - -#: ../../include/text.php:1213 -msgid "July" -msgstr "" - -#: ../../include/text.php:1213 -msgid "August" -msgstr "" - -#: ../../include/text.php:1213 -msgid "September" -msgstr "" - -#: ../../include/text.php:1213 -msgid "October" -msgstr "" - -#: ../../include/text.php:1213 -msgid "November" -msgstr "" - -#: ../../include/text.php:1213 -msgid "December" -msgstr "" - -#: ../../include/text.php:1432 -msgid "bytes" -msgstr "" - -#: ../../include/text.php:1456 ../../include/text.php:1468 -msgid "Click to open/close" -msgstr "" - -#: ../../include/text.php:1689 ../../include/user.php:246 -msgid "default" -msgstr "" - -#: ../../include/text.php:1701 -msgid "Select an alternate language" -msgstr "" - -#: ../../include/text.php:1957 -msgid "activity" -msgstr "" - -#: ../../include/text.php:1960 -msgid "post" -msgstr "" - -#: ../../include/text.php:2128 -msgid "Item filed" -msgstr "" - -#: ../../include/bbcode.php:377 ../../include/bbcode.php:1155 -#: ../../include/bbcode.php:1156 -msgid "Image/photo" -msgstr "" - -#: ../../include/bbcode.php:711 -#, php-format -msgid "%2$s %3$s" -msgstr "" - -#: ../../include/bbcode.php:733 -#, php-format -msgid "" -"%s wrote the following post" -msgstr "" - -#: ../../include/bbcode.php:1119 ../../include/bbcode.php:1139 -msgid "$1 wrote:" -msgstr "" - -#: ../../include/bbcode.php:1176 ../../include/bbcode.php:1177 -msgid "Encrypted content" -msgstr "" - -#: ../../include/notifier.php:774 ../../include/delivery.php:456 -msgid "(no subject)" -msgstr "" - -#: ../../include/notifier.php:784 ../../include/delivery.php:467 -#: ../../include/enotify.php:28 -msgid "noreply" -msgstr "" - -#: ../../include/dba_pdo.php:72 ../../include/dba.php:51 -#, php-format -msgid "Cannot locate DNS info for database server '%s'" -msgstr "" - -#: ../../include/contact_selectors.php:32 -msgid "Unknown | Not categorised" -msgstr "" - -#: ../../include/contact_selectors.php:33 -msgid "Block immediately" -msgstr "" - -#: ../../include/contact_selectors.php:34 -msgid "Shady, spammer, self-marketer" -msgstr "" - -#: ../../include/contact_selectors.php:35 -msgid "Known to me, but no opinion" -msgstr "" - -#: ../../include/contact_selectors.php:36 -msgid "OK, probably harmless" -msgstr "" - -#: ../../include/contact_selectors.php:37 -msgid "Reputable, has my trust" -msgstr "" - -#: ../../include/contact_selectors.php:60 -msgid "Weekly" -msgstr "" - -#: ../../include/contact_selectors.php:61 -msgid "Monthly" -msgstr "" - -#: ../../include/contact_selectors.php:77 -msgid "OStatus" -msgstr "" - -#: ../../include/contact_selectors.php:78 -msgid "RSS/Atom" -msgstr "" - -#: ../../include/contact_selectors.php:82 -msgid "Zot!" -msgstr "" - -#: ../../include/contact_selectors.php:83 -msgid "LinkedIn" -msgstr "" - -#: ../../include/contact_selectors.php:84 -msgid "XMPP/IM" -msgstr "" - -#: ../../include/contact_selectors.php:85 -msgid "MySpace" -msgstr "" - -#: ../../include/contact_selectors.php:87 -msgid "Google+" -msgstr "" - -#: ../../include/contact_selectors.php:88 -msgid "pump.io" -msgstr "" - -#: ../../include/contact_selectors.php:89 -msgid "Twitter" -msgstr "" - -#: ../../include/contact_selectors.php:90 -msgid "Diaspora Connector" -msgstr "" - -#: ../../include/contact_selectors.php:91 -msgid "Statusnet" -msgstr "" - -#: ../../include/contact_selectors.php:92 -msgid "App.net" -msgstr "" - -#: ../../include/Scrape.php:584 -msgid " on Last.fm" -msgstr "" - -#: ../../include/bb2diaspora.php:140 ../../include/event.php:20 -msgid "Starts:" -msgstr "" - -#: ../../include/bb2diaspora.php:148 ../../include/event.php:30 -msgid "Finishes:" -msgstr "" - -#: ../../include/profile_advanced.php:22 -msgid "j F, Y" -msgstr "" - -#: ../../include/profile_advanced.php:23 -msgid "j F" -msgstr "" - -#: ../../include/profile_advanced.php:30 -msgid "Birthday:" -msgstr "" - -#: ../../include/profile_advanced.php:34 -msgid "Age:" -msgstr "" - -#: ../../include/profile_advanced.php:43 -#, php-format -msgid "for %1$d %2$s" -msgstr "" - -#: ../../include/profile_advanced.php:52 -msgid "Tags:" -msgstr "" - -#: ../../include/profile_advanced.php:56 -msgid "Religion:" -msgstr "" - -#: ../../include/profile_advanced.php:60 -msgid "Hobbies/Interests:" -msgstr "" - -#: ../../include/profile_advanced.php:67 -msgid "Contact information and Social Networks:" -msgstr "" - -#: ../../include/profile_advanced.php:69 -msgid "Musical interests:" -msgstr "" - -#: ../../include/profile_advanced.php:71 -msgid "Books, literature:" -msgstr "" - -#: ../../include/profile_advanced.php:73 -msgid "Television:" -msgstr "" - -#: ../../include/profile_advanced.php:75 -msgid "Film/dance/culture/entertainment:" -msgstr "" - -#: ../../include/profile_advanced.php:77 -msgid "Love/Romance:" -msgstr "" - -#: ../../include/profile_advanced.php:79 -msgid "Work/employment:" -msgstr "" - -#: ../../include/profile_advanced.php:81 -msgid "School/education:" -msgstr "" - -#: ../../include/plugin.php:455 ../../include/plugin.php:457 -msgid "Click here to upgrade." -msgstr "" - -#: ../../include/plugin.php:463 -msgid "This action exceeds the limits set by your subscription plan." -msgstr "" - -#: ../../include/plugin.php:468 -msgid "This action is not available under your subscription plan." -msgstr "" - -#: ../../include/nav.php:73 -msgid "End this session" -msgstr "" - -#: ../../include/nav.php:76 ../../include/nav.php:145 -#: ../../view/theme/diabook/theme.php:123 -msgid "Your posts and conversations" -msgstr "" - -#: ../../include/nav.php:77 ../../view/theme/diabook/theme.php:124 -msgid "Your profile page" -msgstr "" - -#: ../../include/nav.php:78 ../../view/theme/diabook/theme.php:126 -msgid "Your photos" -msgstr "" - -#: ../../include/nav.php:79 ../../view/theme/diabook/theme.php:127 -msgid "Your events" -msgstr "" - -#: ../../include/nav.php:80 ../../view/theme/diabook/theme.php:128 -msgid "Personal notes" -msgstr "" - -#: ../../include/nav.php:80 ../../view/theme/diabook/theme.php:128 -msgid "Your personal photos" -msgstr "" - -#: ../../include/nav.php:91 -msgid "Sign in" -msgstr "" - -#: ../../include/nav.php:104 -msgid "Home Page" -msgstr "" - -#: ../../include/nav.php:108 -msgid "Create an account" -msgstr "" - -#: ../../include/nav.php:113 -msgid "Help and documentation" -msgstr "" - -#: ../../include/nav.php:116 -msgid "Apps" -msgstr "" - -#: ../../include/nav.php:116 -msgid "Addon applications, utilities, games" -msgstr "" - -#: ../../include/nav.php:118 -msgid "Search site content" -msgstr "" - -#: ../../include/nav.php:128 -msgid "Conversations on this site" -msgstr "" - -#: ../../include/nav.php:130 -msgid "Directory" -msgstr "" - -#: ../../include/nav.php:130 -msgid "People directory" -msgstr "" - -#: ../../include/nav.php:132 -msgid "Information" -msgstr "" - -#: ../../include/nav.php:132 -msgid "Information about this friendica instance" -msgstr "" - -#: ../../include/nav.php:142 -msgid "Conversations from your friends" -msgstr "" - -#: ../../include/nav.php:143 -msgid "Network Reset" -msgstr "" - -#: ../../include/nav.php:143 -msgid "Load Network page with no filters" -msgstr "" - -#: ../../include/nav.php:151 -msgid "Friend Requests" -msgstr "" - -#: ../../include/nav.php:153 -msgid "See all notifications" -msgstr "" - -#: ../../include/nav.php:154 -msgid "Mark all system notifications seen" -msgstr "" - -#: ../../include/nav.php:158 -msgid "Private mail" -msgstr "" - -#: ../../include/nav.php:159 -msgid "Inbox" -msgstr "" - -#: ../../include/nav.php:160 -msgid "Outbox" -msgstr "" - -#: ../../include/nav.php:164 -msgid "Manage" -msgstr "" - -#: ../../include/nav.php:164 -msgid "Manage other pages" -msgstr "" - -#: ../../include/nav.php:169 -msgid "Account settings" -msgstr "" - -#: ../../include/nav.php:171 -msgid "Manage/Edit Profiles" -msgstr "" - -#: ../../include/nav.php:173 -msgid "Manage/edit friends and contacts" -msgstr "" - -#: ../../include/nav.php:180 -msgid "Site setup and configuration" -msgstr "" - -#: ../../include/nav.php:184 -msgid "Navigation" -msgstr "" - -#: ../../include/nav.php:184 -msgid "Site map" -msgstr "" - -#: ../../include/api.php:263 ../../include/api.php:274 -#: ../../include/api.php:375 -msgid "User not found." -msgstr "" - -#: ../../include/api.php:1123 -msgid "There is no status with this id." -msgstr "" - -#: ../../include/api.php:1193 -msgid "There is no conversation with this id." -msgstr "" - -#: ../../include/user.php:39 -msgid "An invitation is required." -msgstr "" - -#: ../../include/user.php:44 -msgid "Invitation could not be verified." -msgstr "" - -#: ../../include/user.php:52 -msgid "Invalid OpenID url" -msgstr "" - -#: ../../include/user.php:73 -msgid "Please enter the required information." -msgstr "" - -#: ../../include/user.php:87 -msgid "Please use a shorter name." -msgstr "" - -#: ../../include/user.php:89 -msgid "Name too short." -msgstr "" - -#: ../../include/user.php:104 -msgid "That doesn't appear to be your full (First Last) name." -msgstr "" - -#: ../../include/user.php:109 -msgid "Your email domain is not among those allowed on this site." -msgstr "" - -#: ../../include/user.php:112 -msgid "Not a valid email address." -msgstr "" - -#: ../../include/user.php:125 -msgid "Cannot use that email." -msgstr "" - -#: ../../include/user.php:131 -msgid "" -"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and " -"must also begin with a letter." -msgstr "" - -#: ../../include/user.php:137 ../../include/user.php:235 -msgid "Nickname is already registered. Please choose another." -msgstr "" - -#: ../../include/user.php:147 -msgid "" -"Nickname was once registered here and may not be re-used. Please choose " -"another." -msgstr "" - -#: ../../include/user.php:163 -msgid "SERIOUS ERROR: Generation of security keys failed." -msgstr "" - -#: ../../include/user.php:221 -msgid "An error occurred during registration. Please try again." -msgstr "" - -#: ../../include/user.php:256 -msgid "An error occurred creating your default profile. Please try again." -msgstr "" - -#: ../../include/user.php:288 ../../include/user.php:292 -#: ../../include/profile_selectors.php:42 -msgid "Friends" -msgstr "" - -#: ../../include/diaspora.php:703 -msgid "Sharing notification from Diaspora network" -msgstr "" - -#: ../../include/diaspora.php:2299 -msgid "Attachments:" -msgstr "" - -#: ../../include/items.php:3715 -msgid "A new person is sharing with you at " -msgstr "" - -#: ../../include/items.php:3715 -msgid "You have a new follower at " -msgstr "" - -#: ../../include/items.php:4250 -msgid "Do you really want to delete this item?" -msgstr "" - -#: ../../include/items.php:4477 -msgid "Archives" -msgstr "" - #: ../../include/profile_selectors.php:6 msgid "Male" msgstr "" @@ -6956,401 +7452,10 @@ msgstr "" msgid "Ask me" msgstr "" -#: ../../include/enotify.php:16 -msgid "Friendica Notification" +#: ../../include/Contact.php:115 +msgid "stopped following" msgstr "" -#: ../../include/enotify.php:19 -msgid "Thank You," -msgstr "" - -#: ../../include/enotify.php:21 -#, php-format -msgid "%s Administrator" -msgstr "" - -#: ../../include/enotify.php:40 -#, php-format -msgid "%s " -msgstr "" - -#: ../../include/enotify.php:44 -#, php-format -msgid "[Friendica:Notify] New mail received at %s" -msgstr "" - -#: ../../include/enotify.php:46 -#, php-format -msgid "%1$s sent you a new private message at %2$s." -msgstr "" - -#: ../../include/enotify.php:47 -#, php-format -msgid "%1$s sent you %2$s." -msgstr "" - -#: ../../include/enotify.php:47 -msgid "a private message" -msgstr "" - -#: ../../include/enotify.php:48 -#, php-format -msgid "Please visit %s to view and/or reply to your private messages." -msgstr "" - -#: ../../include/enotify.php:91 -#, php-format -msgid "%1$s commented on [url=%2$s]a %3$s[/url]" -msgstr "" - -#: ../../include/enotify.php:98 -#, php-format -msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]" -msgstr "" - -#: ../../include/enotify.php:106 -#, php-format -msgid "%1$s commented on [url=%2$s]your %3$s[/url]" -msgstr "" - -#: ../../include/enotify.php:116 -#, php-format -msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s" -msgstr "" - -#: ../../include/enotify.php:117 -#, php-format -msgid "%s commented on an item/conversation you have been following." -msgstr "" - -#: ../../include/enotify.php:120 ../../include/enotify.php:135 -#: ../../include/enotify.php:148 ../../include/enotify.php:161 -#: ../../include/enotify.php:179 ../../include/enotify.php:192 -#, php-format -msgid "Please visit %s to view and/or reply to the conversation." -msgstr "" - -#: ../../include/enotify.php:127 -#, php-format -msgid "[Friendica:Notify] %s posted to your profile wall" -msgstr "" - -#: ../../include/enotify.php:129 -#, php-format -msgid "%1$s posted to your profile wall at %2$s" -msgstr "" - -#: ../../include/enotify.php:131 -#, php-format -msgid "%1$s posted to [url=%2$s]your wall[/url]" -msgstr "" - -#: ../../include/enotify.php:142 -#, php-format -msgid "[Friendica:Notify] %s tagged you" -msgstr "" - -#: ../../include/enotify.php:143 -#, php-format -msgid "%1$s tagged you at %2$s" -msgstr "" - -#: ../../include/enotify.php:144 -#, php-format -msgid "%1$s [url=%2$s]tagged you[/url]." -msgstr "" - -#: ../../include/enotify.php:155 -#, php-format -msgid "[Friendica:Notify] %s shared a new post" -msgstr "" - -#: ../../include/enotify.php:156 -#, php-format -msgid "%1$s shared a new post at %2$s" -msgstr "" - -#: ../../include/enotify.php:157 -#, php-format -msgid "%1$s [url=%2$s]shared a post[/url]." -msgstr "" - -#: ../../include/enotify.php:169 -#, php-format -msgid "[Friendica:Notify] %1$s poked you" -msgstr "" - -#: ../../include/enotify.php:170 -#, php-format -msgid "%1$s poked you at %2$s" -msgstr "" - -#: ../../include/enotify.php:171 -#, php-format -msgid "%1$s [url=%2$s]poked you[/url]." -msgstr "" - -#: ../../include/enotify.php:186 -#, php-format -msgid "[Friendica:Notify] %s tagged your post" -msgstr "" - -#: ../../include/enotify.php:187 -#, php-format -msgid "%1$s tagged your post at %2$s" -msgstr "" - -#: ../../include/enotify.php:188 -#, php-format -msgid "%1$s tagged [url=%2$s]your post[/url]" -msgstr "" - -#: ../../include/enotify.php:199 -msgid "[Friendica:Notify] Introduction received" -msgstr "" - -#: ../../include/enotify.php:200 -#, php-format -msgid "You've received an introduction from '%1$s' at %2$s" -msgstr "" - -#: ../../include/enotify.php:201 -#, php-format -msgid "You've received [url=%1$s]an introduction[/url] from %2$s." -msgstr "" - -#: ../../include/enotify.php:204 ../../include/enotify.php:222 -#, php-format -msgid "You may visit their profile at %s" -msgstr "" - -#: ../../include/enotify.php:206 -#, php-format -msgid "Please visit %s to approve or reject the introduction." -msgstr "" - -#: ../../include/enotify.php:213 -msgid "[Friendica:Notify] Friend suggestion received" -msgstr "" - -#: ../../include/enotify.php:214 -#, php-format -msgid "You've received a friend suggestion from '%1$s' at %2$s" -msgstr "" - -#: ../../include/enotify.php:215 -#, php-format -msgid "You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." -msgstr "" - -#: ../../include/enotify.php:220 -msgid "Name:" -msgstr "" - -#: ../../include/enotify.php:221 -msgid "Photo:" -msgstr "" - -#: ../../include/enotify.php:224 -#, php-format -msgid "Please visit %s to approve or reject the suggestion." -msgstr "" - -#: ../../include/oembed.php:200 -msgid "Embedded content" -msgstr "" - -#: ../../include/oembed.php:209 -msgid "Embedding disabled" -msgstr "" - -#: ../../include/uimport.php:94 -msgid "Error decoding account file" -msgstr "" - -#: ../../include/uimport.php:100 -msgid "Error! No version data in file! This is not a Friendica account file?" -msgstr "" - -#: ../../include/uimport.php:116 ../../include/uimport.php:127 -msgid "Error! Cannot check nickname" -msgstr "" - -#: ../../include/uimport.php:120 ../../include/uimport.php:131 -#, php-format -msgid "User '%s' already exists on this server!" -msgstr "" - -#: ../../include/uimport.php:153 -msgid "User creation error" -msgstr "" - -#: ../../include/uimport.php:171 -msgid "User profile creation error" -msgstr "" - -#: ../../include/uimport.php:220 -#, php-format -msgid "%d contact not imported" -msgid_plural "%d contacts not imported" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/uimport.php:290 -msgid "Done. You can now login with your username and password" -msgstr "" - -#: ../../index.php:419 -msgid "toggle mobile" -msgstr "" - -#: ../../view/theme/cleanzero/config.php:82 -#: ../../view/theme/dispy/config.php:72 ../../view/theme/quattro/config.php:66 -#: ../../view/theme/diabook/config.php:150 ../../view/theme/vier/config.php:53 -msgid "Theme settings" -msgstr "" - -#: ../../view/theme/cleanzero/config.php:83 -msgid "Set resize level for images in posts and comments (width and height)" -msgstr "" - -#: ../../view/theme/cleanzero/config.php:84 -#: ../../view/theme/dispy/config.php:73 -#: ../../view/theme/diabook/config.php:151 -msgid "Set font-size for posts and comments" -msgstr "" - -#: ../../view/theme/cleanzero/config.php:85 -msgid "Set theme width" -msgstr "" - -#: ../../view/theme/cleanzero/config.php:86 -#: ../../view/theme/quattro/config.php:68 -msgid "Color scheme" -msgstr "" - -#: ../../view/theme/dispy/config.php:74 -#: ../../view/theme/diabook/config.php:152 -msgid "Set line-height for posts and comments" -msgstr "" - -#: ../../view/theme/dispy/config.php:75 -msgid "Set colour scheme" -msgstr "" - -#: ../../view/theme/quattro/config.php:67 -msgid "Alignment" -msgstr "" - -#: ../../view/theme/quattro/config.php:67 -msgid "Left" -msgstr "" - -#: ../../view/theme/quattro/config.php:67 -msgid "Center" -msgstr "" - -#: ../../view/theme/quattro/config.php:69 -msgid "Posts font size" -msgstr "" - -#: ../../view/theme/quattro/config.php:70 -msgid "Textareas font size" -msgstr "" - -#: ../../view/theme/diabook/config.php:153 -msgid "Set resolution for middle column" -msgstr "" - -#: ../../view/theme/diabook/config.php:154 -msgid "Set color scheme" -msgstr "" - -#: ../../view/theme/diabook/config.php:155 -msgid "Set zoomfactor for Earth Layer" -msgstr "" - -#: ../../view/theme/diabook/config.php:156 -#: ../../view/theme/diabook/theme.php:585 -msgid "Set longitude (X) for Earth Layers" -msgstr "" - -#: ../../view/theme/diabook/config.php:157 -#: ../../view/theme/diabook/theme.php:586 -msgid "Set latitude (Y) for Earth Layers" -msgstr "" - -#: ../../view/theme/diabook/config.php:158 -#: ../../view/theme/diabook/theme.php:130 -#: ../../view/theme/diabook/theme.php:544 -#: ../../view/theme/diabook/theme.php:624 -msgid "Community Pages" -msgstr "" - -#: ../../view/theme/diabook/config.php:159 -#: ../../view/theme/diabook/theme.php:579 -#: ../../view/theme/diabook/theme.php:625 -msgid "Earth Layers" -msgstr "" - -#: ../../view/theme/diabook/config.php:160 -#: ../../view/theme/diabook/theme.php:391 -#: ../../view/theme/diabook/theme.php:626 -msgid "Community Profiles" -msgstr "" - -#: ../../view/theme/diabook/config.php:161 -#: ../../view/theme/diabook/theme.php:599 -#: ../../view/theme/diabook/theme.php:627 -msgid "Help or @NewHere ?" -msgstr "" - -#: ../../view/theme/diabook/config.php:162 -#: ../../view/theme/diabook/theme.php:606 -#: ../../view/theme/diabook/theme.php:628 -msgid "Connect Services" -msgstr "" - -#: ../../view/theme/diabook/config.php:163 -#: ../../view/theme/diabook/theme.php:523 -#: ../../view/theme/diabook/theme.php:629 -msgid "Find Friends" -msgstr "" - -#: ../../view/theme/diabook/config.php:164 -#: ../../view/theme/diabook/theme.php:412 -#: ../../view/theme/diabook/theme.php:630 -msgid "Last users" -msgstr "" - -#: ../../view/theme/diabook/config.php:165 -#: ../../view/theme/diabook/theme.php:486 -#: ../../view/theme/diabook/theme.php:631 -msgid "Last photos" -msgstr "" - -#: ../../view/theme/diabook/config.php:166 -#: ../../view/theme/diabook/theme.php:441 -#: ../../view/theme/diabook/theme.php:632 -msgid "Last likes" -msgstr "" - -#: ../../view/theme/diabook/theme.php:125 -msgid "Your contacts" -msgstr "" - -#: ../../view/theme/diabook/theme.php:524 -msgid "Local Directory" -msgstr "" - -#: ../../view/theme/diabook/theme.php:584 -msgid "Set zoomfactor for Earth Layers" -msgstr "" - -#: ../../view/theme/diabook/theme.php:622 -msgid "Show/hide boxes at right-hand column:" -msgstr "" - -#: ../../view/theme/vier/config.php:54 -msgid "Set style" +#: ../../include/Contact.php:234 +msgid "Drop Contact" msgstr "" From ca3fc788b24d0f7634801c31af2491d51771722d Mon Sep 17 00:00:00 2001 From: friendica Date: Mon, 11 Aug 2014 02:29:14 -0700 Subject: [PATCH 5/5] photo export functions for the api --- include/api.php | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) diff --git a/include/api.php b/include/api.php index 7cc72948d1..c7e7360a72 100644 --- a/include/api.php +++ b/include/api.php @@ -2316,6 +2316,48 @@ api_register_func('api/oauth/request_token', 'api_oauth_request_token', false); api_register_func('api/oauth/access_token', 'api_oauth_access_token', false); + + function api_fr_photos_list(&$a,$type) { + if (api_user()===false) return false; + $r = q("select distinct `resource-id` from photo where uid = %d and album != 'Contact Photos' ", + intval(local_user()) + ); + if($r) { + $ret = array(); + foreach($r as $rr) + $ret[] = $rr['resource-id']; + header("Content-type: application/json"); + echo json_encode($ret); + } + killme(); + } + + function api_fr_photo_detail(&$a,$type) { + if (api_user()===false) return false; + if(! $_REQUEST['photo_id']) return false; + $scale = ((array_key_exists('scale',$_REQUEST)) ? intval($_REQUEST['scale']) : 0); + $r = q("select * from photo where uid = %d and `resource-id` = '%s' and scale = %d limit 1", + intval(local_user()), + dbesc($_REQUEST['photo_id']), + intval($scale) + ); + if($r) { + header("Content-type: application/json"); + $r[0]['data'] = base64_encode($r[0]['data']); + echo json_encode($r[0]); + } + + killme(); + } + + api_register_func('api/friendica/photos/list', 'api_fr_photos_list', true); + api_register_func('api/friendica/photo', 'api_fr_photo_detail', true); + + + + + + function api_share_as_retweet($a, $uid, &$item) { $body = trim($item["body"]);