This commit is contained in:
friendica 2013-04-03 16:29:13 -07:00
commit 8b51ffefc0
20 changed files with 18202 additions and 24169 deletions

View file

@ -401,6 +401,7 @@ if(! class_exists('App')) {
private $db;
private $curl_code;
private $curl_content_type;
private $curl_headers;
private $cached_profile_image;
@ -673,6 +674,14 @@ if(! class_exists('App')) {
return $this->curl_code;
}
function set_curl_content_type($content_type) {
$this->curl_content_type = $content_type;
}
function get_curl_content_type() {
return $this->curl_content_type;
}
function set_curl_headers($headers) {
$this->curl_headers = $headers;
}

View file

@ -19,10 +19,20 @@ function cronhooks_run(&$argv, &$argc){
require_once('include/session.php');
require_once('include/datetime.php');
require_once('include/pidfile.php');
load_config('config');
load_config('system');
$lockpath = get_config('system','lockpath');
if ($lockpath != '') {
$pidfile = new pidfile($lockpath, 'cron.lck');
if($pidfile->is_already_running()) {
logger("cronhooks: Already running");
exit;
}
}
$a->set_baseurl(get_config('system','url'));
load_hooks();

View file

@ -1589,6 +1589,26 @@ function dfrn_deliver($owner,$contact,$atom, $dissolve = false) {
}
/*
This function returns true if $update has an edited timestamp newer
than $existing, i.e. $update contains new data which should override
what's already there. If there is no timestamp yet, the update is
assumed to be newer. If the update has no timestamp, the existing
item is assumed to be up-to-date. If the timestamps are equal it
assumes the update has been seen before and should be ignored.
*/
function edited_timestamp_is_newer($existing, $update) {
if (!x($existing,'edited') || !$existing['edited']) {
return true;
}
if (!x($update,'edited') || !$update['edited']) {
return false;
}
$existing_edited = datetime_convert('UTC', 'UTC', $existing['edited']);
$update_edited = datetime_convert('UTC', 'UTC', $update['edited']);
return (strcmp($existing_edited, $update_edited) < 0);
}
/**
*
* consume_feed - process atom feed and update anything/everything we might need to update
@ -2002,7 +2022,7 @@ function consume_feed($xml,$importer,&$contact, &$hub, $datedir = 0, $pass = 0)
// Update content if 'updated' changes
if(count($r)) {
if((x($datarray,'edited') !== false) && (datetime_convert('UTC','UTC',$datarray['edited']) !== $r[0]['edited'])) {
if (edited_timestamp_is_newer($r[0], $datarray)) {
// do not accept (ignore) an earlier edit than one we currently have.
if(datetime_convert('UTC','UTC',$datarray['edited']) < $r[0]['edited'])
@ -2151,7 +2171,7 @@ function consume_feed($xml,$importer,&$contact, &$hub, $datedir = 0, $pass = 0)
// Update content if 'updated' changes
if(count($r)) {
if((x($datarray,'edited') !== false) && (datetime_convert('UTC','UTC',$datarray['edited']) !== $r[0]['edited'])) {
if (edited_timestamp_is_newer($r[0], $datarray)) {
// do not accept (ignore) an earlier edit than one we currently have.
if(datetime_convert('UTC','UTC',$datarray['edited']) < $r[0]['edited'])
@ -2905,7 +2925,7 @@ function local_delivery($importer,$data) {
if(count($r)) {
$iid = $r[0]['id'];
if((x($datarray,'edited') !== false) && (datetime_convert('UTC','UTC',$datarray['edited']) !== $r[0]['edited'])) {
if (edited_timestamp_is_newer($r[0], $datarray)) {
// do not accept (ignore) an earlier edit than one we currently have.
if(datetime_convert('UTC','UTC',$datarray['edited']) < $r[0]['edited'])
@ -3080,7 +3100,7 @@ function local_delivery($importer,$data) {
// Update content if 'updated' changes
if(count($r)) {
if((x($datarray,'edited') !== false) && (datetime_convert('UTC','UTC',$datarray['edited']) !== $r[0]['edited'])) {
if (edited_timestamp_is_newer($r[0], $datarray)) {
// do not accept (ignore) an earlier edit than one we currently have.
if(datetime_convert('UTC','UTC',$datarray['edited']) < $r[0]['edited'])
@ -3256,7 +3276,7 @@ function local_delivery($importer,$data) {
// Update content if 'updated' changes
if(count($r)) {
if((x($datarray,'edited') !== false) && (datetime_convert('UTC','UTC',$datarray['edited']) !== $r[0]['edited'])) {
if (edited_timestamp_is_newer($r[0], $datarray)) {
// do not accept (ignore) an earlier edit than one we currently have.
if(datetime_convert('UTC','UTC',$datarray['edited']) < $r[0]['edited'])

View file

@ -94,14 +94,14 @@ function fetch_url($url,$binary = false, &$redirects = 0, $timeout = 0, $accept_
}
if(strpos($newurl,'/') === 0)
$newurl = $url . $newurl;
$url_parsed = @parse_url($newurl);
if (isset($url_parsed)) {
if (filter_var($newurl, FILTER_VALIDATE_URL)) {
$redirects++;
return fetch_url($newurl,$binary,$redirects,$timeout);
}
}
$a->set_curl_code($http_code);
$a->set_curl_content_type($curl_info['content_type']);
$body = substr($s,strlen($header));
$a->set_curl_headers($header);
@ -189,8 +189,7 @@ function post_url($url,$params, $headers = null, &$redirects = 0, $timeout = 0)
$newurl = trim(array_pop($matches));
if(strpos($newurl,'/') === 0)
$newurl = $url . $newurl;
$url_parsed = @parse_url($newurl);
if (isset($url_parsed)) {
if (filter_var($newurl, FILTER_VALIDATE_URL)) {
$redirects++;
return fetch_url($newurl,false,$redirects,$timeout);
}

View file

@ -331,13 +331,17 @@ function onepoll_run(&$argv, &$argc){
);
if(count($r)) {
logger("Mail: Seen before ".$msg_uid." for ".$mailconf[0]['user'],LOGGER_DEBUG);
if($meta->deleted && ! $r[0]['deleted']) {
q("UPDATE `item` SET `deleted` = 1, `changed` = '%s' WHERE `id` = %d LIMIT 1",
dbesc(datetime_convert()),
intval($r[0]['id'])
);
}
logger("Mail: Seen before ".$msg_uid." for ".$mailconf[0]['user']." UID: ".$importer_uid." URI: ".$datarray['uri'],LOGGER_DEBUG);
// Only delete when mails aren't automatically moved or deleted
if (($mailconf[0]['action'] != 1) AND ($mailconf[0]['action'] != 3))
if($meta->deleted && ! $r[0]['deleted']) {
q("UPDATE `item` SET `deleted` = 1, `changed` = '%s' WHERE `id` = %d LIMIT 1",
dbesc(datetime_convert()),
intval($r[0]['id'])
);
}
switch ($mailconf[0]['action']) {
case 0:
logger("Mail: Seen before ".$msg_uid." for ".$mailconf[0]['user'].". Doing nothing.", LOGGER_DEBUG);

View file

@ -12,9 +12,18 @@ require_once("include/template_processor.php");
require_once("include/friendica_smarty.php");
if(! function_exists('replace_macros')) {
/**
* This is our template processor
*
* @global Template $t
* @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
*/
function replace_macros($s,$r) {
global $t;
$stamp1 = microtime(true);
$a = get_app();
@ -59,6 +68,7 @@ function random_string($size = 64,$type = RANDOM_STRING_HEX) {
return(substr($s,0,$size));
}}
if(! function_exists('notags')) {
/**
* This is our primary input filter.
*
@ -73,9 +83,9 @@ function random_string($size = 64,$type = RANDOM_STRING_HEX) {
* They will be replaced with safer brackets. This may be filtered further
* if these are not allowed either.
*
* @param string $string Input string
* @return string Filtered string
*/
if(! function_exists('notags')) {
function notags($string) {
return(str_replace(array("<",">"), array('[',']'), $string));
@ -84,10 +94,15 @@ function notags($string) {
// return(str_replace(array("<",">","\xBA","\xBC","\xBE"), array('[',']','','',''), $string));
}}
// use this on "body" or "content" input where angle chars shouldn't be removed,
// and allow them to be safely displayed.
if(! function_exists('escape_tags')) {
/**
* use this on "body" or "content" input where angle chars shouldn't be removed,
* and allow them to be safely displayed.
* @param string $string
* @return string
*/
function escape_tags($string) {
return(htmlspecialchars($string, ENT_COMPAT, 'UTF-8', false));
@ -98,6 +113,12 @@ function escape_tags($string) {
// used to generate initial passwords
if(! function_exists('autoname')) {
/**
* generate a string that's random, but usually pronounceable.
* used to generate initial passwords
* @param int $len
* @return string
*/
function autoname($len) {
if($len <= 0)
@ -173,6 +194,11 @@ function autoname($len) {
// returns escaped text.
if(! function_exists('xmlify')) {
/**
* escape text ($str) for XML transport
* @param string $str
* @return string Escaped text.
*/
function xmlify($str) {
/* $buffer = '';
@ -218,10 +244,12 @@ function xmlify($str) {
return($buffer);
}}
// undo an xmlify
// pass xml escaped text ($s), returns unescaped text
if(! function_exists('unxmlify')) {
/**
* undo an xmlify
* @param string $s xml escaped text
* @return string unescaped text
*/
function unxmlify($s) {
// $ret = str_replace('&amp;','&', $s);
// $ret = str_replace(array('&lt;','&gt;','&quot;','&apos;'),array('<','>','"',"'"),$ret);
@ -233,9 +261,12 @@ function unxmlify($s) {
return $ret;
}}
// convenience wrapper, reverse the operation "bin2hex"
if(! function_exists('hex2bin')) {
/**
* convenience wrapper, reverse the operation "bin2hex"
* @param string $s
* @return number
*/
function hex2bin($s) {
if(! (is_string($s) && strlen($s)))
return '';
@ -247,17 +278,23 @@ function hex2bin($s) {
return(pack("H*",$s));
}}
// Automatic pagination.
// To use, get the count of total items.
// Then call $a->set_pager_total($number_items);
// Optionally call $a->set_pager_itemspage($n) to the number of items to display on each page
// 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.
if(! function_exists('paginate')) {
/**
* Automatic pagination.
*
* To use, get the count of total items.
* Then call $a->set_pager_total($number_items);
* Optionally call $a->set_pager_itemspage($n) to the number of items to display on each page
* 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.
*
* @param App $a App instance
* @return string html for pagination #FIXME remove html
*/
function paginate(&$a) {
$o = '';
$stripped = preg_replace('/(&page=[0-9]*)/','',$a->query_string);
@ -314,6 +351,12 @@ function paginate(&$a) {
}}
if(! function_exists('alt_pager')) {
/**
* Alternative pager
* @param App $a App instance
* @param int $i
* @return string html for pagination #FIXME remove html
*/
function alt_pager(&$a, $i) {
$o = '';
$stripped = preg_replace('/(&page=[0-9]*)/','',$a->query_string);
@ -338,9 +381,14 @@ function alt_pager(&$a, $i) {
return $o;
}}
// Turn user/group ACLs stored as angle bracketed text into arrays
if(! function_exists('expand_acl')) {
/**
* Turn user/group ACLs stored as angle bracketed text into arrays
*
* @param string $s
* @return array
*/
function expand_acl($s) {
// turn string array of angle-bracketed elements into numeric array
// e.g. "<1><2><3>" => array(1,2,3);
@ -357,9 +405,11 @@ function expand_acl($s) {
return $ret;
}}
// Used to wrap ACL elements in angle brackets for storage
if(! function_exists('sanitise_acl')) {
/**
* Wrap ACL elements in angle brackets for storage
* @param string $item
*/
function sanitise_acl(&$item) {
if(intval($item))
$item = '<' . intval(notags(trim($item))) . '>';
@ -368,14 +418,18 @@ function sanitise_acl(&$item) {
}}
// Convert an ACL array to a storable string
// Normally ACL permissions will be an array.
// We'll also allow a comma-separated string.
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
*/
function perms2str($p) {
$ret = '';
if(is_array($p))
$tmp = $p;
else
@ -388,10 +442,16 @@ function perms2str($p) {
return $ret;
}}
// generate a guaranteed unique (for this domain) item ID for ATOM
// safe from birthday paradox
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
*/
function item_new_uri($hostname,$uid) {
do {
@ -412,6 +472,12 @@ function item_new_uri($hostname,$uid) {
// safe from birthday paradox
if(! function_exists('photo_new_resource')) {
/**
* Generate a guaranteed unique photo ID.
* safe from birthday paradox
*
* @return string
*/
function photo_new_resource() {
do {
@ -427,12 +493,17 @@ function photo_new_resource() {
}}
// wrapper to load a view template, checking for alternate
// languages before falling back to the default
// obsolete, deprecated.
if(! function_exists('load_view_file')) {
/**
* @deprecated
* wrapper to load a view template, checking for alternate
* languages before falling back to the default
*
* @global string $lang
* @global App $a
* @param string $s view name
* @return string
*/
function load_view_file($s) {
global $lang, $a;
if(! isset($lang))
@ -462,6 +533,14 @@ function load_view_file($s) {
}}
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
*/
function get_intltext_template($s) {
global $lang;
@ -492,6 +571,13 @@ function get_intltext_template($s) {
}}
if(! function_exists('get_markup_template')) {
/**
* load template $s
*
* @param string $s
* @param string $root
* @return string
*/
function get_markup_template($s, $root = '') {
$stamp1 = microtime(true);
@ -519,6 +605,13 @@ function get_markup_template($s, $root = '') {
}}
if(! function_exists("get_template_file")) {
/**
*
* @param App $a
* @param string $filename
* @param string $root
* @return string
*/
function get_template_file($a, $filename, $root = '') {
$theme = current_theme();
@ -540,16 +633,23 @@ function get_template_file($a, $filename, $root = '') {
// for html,xml parsing - let's say you've got
// 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
// are looking for as $s - returns true if found, otherwise false
if(! function_exists('attribute_contains')) {
/**
* for html,xml parsing - let's say you've got
* 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
* 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
*/
function attribute_contains($attr,$s) {
$a = explode(' ', $attr);
if(count($a) && in_array($s,$a))
@ -558,6 +658,19 @@ function attribute_contains($attr,$s) {
}}
if(! function_exists('logger')) {
/**
* log levels:
* LOGGER_NORMAL (default)
* LOGGER_TRACE
* LOGGER_DEBUG
* LOGGER_DATA
* LOGGER_ALL
*
* @global App $a
* @global dba $db
* @param string $msg
* @param int $level
*/
function logger($msg,$level = 0) {
// turn off logger in install mode
global $a;
@ -580,6 +693,13 @@ 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
*/
function activity_match($haystack,$needle) {
if(($haystack === $needle) || ((basename($needle) === $haystack) && strstr($needle,NAMESPACE_ACTIVITY_SCHEMA)))
return true;
@ -587,15 +707,18 @@ function activity_match($haystack,$needle) {
}}
// Pull out all #hashtags and @person tags from $s;
// 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.
if(! function_exists('get_tags')) {
/**
* Pull out all #hashtags and @person tags from $s;
* 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
*/
function get_tags($s) {
$ret = array();
@ -648,9 +771,15 @@ function get_tags($s) {
}}
// quick and dirty quoted_printable encoding
//
if(! function_exists('qp')) {
/**
* quick and dirty quoted_printable encoding
*
* @param string $s
* @return string
*/
function qp($s) {
return str_replace ("%","=",rawurlencode($s));
}}
@ -658,6 +787,10 @@ return str_replace ("%","=",rawurlencode($s));
if(! function_exists('get_mentions')) {
/**
* @param array $item
* @return string html for mentions #FIXME: remove html
*/
function get_mentions($item) {
$o = '';
if(! strlen($item['tag']))
@ -675,6 +808,13 @@ 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
*/
function contact_block() {
$o = '';
$a = get_app();
@ -727,6 +867,14 @@ function contact_block() {
}}
if(! function_exists('micropro')) {
/**
*
* @param array $contact
* @param boolean $redirect
* @param string $class
* @param boolean $textmode
* @return string #FIXME: remove html
*/
function micropro($contact, $redirect = false, $class = '', $textmode = false) {
if($class)
@ -771,6 +919,15 @@ 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
* @param boolean $save show save search button
* @return string html for search box #FIXME: remove html
*/
function search($s,$id='search-box',$url='/search',$save = false) {
$a = get_app();
$o = '<div id="' . $id . '">';
@ -784,6 +941,12 @@ 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
*/
function valid_email($x){
if(get_config('system','disable_email_validation'))
@ -795,21 +958,26 @@ function valid_email($x){
}}
if(! function_exists('linkify')) {
/**
*
* Function: linkify
*
* Replace naked text hyperlink with HTML formatted hyperlink
*
* @param string $s
*/
if(! function_exists('linkify')) {
function linkify($s) {
$s = preg_replace("/(https?\:\/\/[a-zA-Z0-9\:\/\-\?\&\;\.\=\_\~\#\'\%\$\!\+]*)/", ' <a href="$1" target="external-link">$1</a>', $s);
$s = preg_replace("/\<(.*?)(src|href)=(.*?)\&amp\;(.*?)\>/ism",'<$1$2=$3&$4>',$s);
return($s);
}}
/**
* Load poke verbs
*
* @return array index is present tense verb
value is array containing past tense verb, translation of present, translation of past
* @hook poke_verbs pokes array
*/
function get_poke_verbs() {
// index is present tense verb
@ -827,11 +995,13 @@ function get_poke_verbs() {
return $arr;
}
/**
* Load moods
* @return array index is mood, value is translated mood
* @hook mood_verbs moods array
*/
function get_mood_verbs() {
// index is present tense verb
// value is array containing past tense verb, translation of present, translation of past
$arr = array(
'happy' => t('happy'),
'sad' => t('sad'),
@ -860,17 +1030,11 @@ function get_mood_verbs() {
}
if(! function_exists('smilies')) {
/**
*
* Function: smilies
*
* Description:
* Replaces text emoticons with graphical images
*
* @Parameter: string $s
*
* Returns string
*
* 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.
@ -879,11 +1043,12 @@ function get_mood_verbs() {
* function from being executed by the prepare_text() routine when preparing
* bbcode source for HTML display
*
* @param string $s
* @param boolean $sample
* @return string
* @hook smilie ('texts' => smilies texts array, 'icons' => smilies html array, 'string' => $s)
*/
if(! function_exists('smilies')) {
function smilies($s, $sample = false) {
$a = get_app();
if(intval(get_config('system','no_smilies'))
@ -995,8 +1160,13 @@ function smile_decode($m) {
return(str_replace($m[1],base64url_decode($m[1]),$m[0]));
}
// expand <3333 to the correct number of hearts
/**
* expand <3333 to the correct number of hearts
*
* @param string $x
* @return string
*/
function preg_heart($x) {
$a = get_app();
if(strlen($x[1]) == 1)
@ -1010,6 +1180,12 @@ function preg_heart($x) {
if(! function_exists('day_translate')) {
/**
* Translate days and months names
*
* @param string $s
* @return string
*/
function day_translate($s) {
$ret = str_replace(array('Monday','Tuesday','Wednesday','Thursday','Friday','Saturday','Sunday'),
array( t('Monday'), t('Tuesday'), t('Wednesday'), t('Thursday'), t('Friday'), t('Saturday'), t('Sunday')),
@ -1024,23 +1200,31 @@ function day_translate($s) {
if(! function_exists('normalise_link')) {
/**
* Normalize url
*
* @param string $url
* @return string
*/
function normalise_link($url) {
$ret = str_replace(array('https:','//www.'), array('http:','//'), $url);
return(rtrim($ret,'/'));
}}
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
* the other isn't - and also ignore case differences.
*
* Return true if the URLs match, otherwise false.
* @param string $a first url
* @param string $b second url
* @return boolean True if the URLs match, otherwise False
*
*/
if(! function_exists('link_compare')) {
*/
function link_compare($a,$b) {
if(strcasecmp(normalise_link($a),normalise_link($b)) === 0)
return true;
@ -1048,9 +1232,13 @@ function link_compare($a,$b) {
}}
// Find any non-embedded images in private items and add redir links to them
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
*/
function redir_private_images($a, &$item) {
$matches = false;
@ -1076,6 +1264,17 @@ function redir_private_images($a, &$item) {
// If attach is true, also add icons for item attachments
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
* @hook prepare_body_init item array before any work
* @hook prepare_body ('item'=>item array, 'html'=>body string) after first bbcode to html
* @hook prepare_body_final ('item'=>item array, 'html'=>body string) after attach icons and blockquote special case handling (spoiler, author)
*/
function prepare_body($item,$attach = false) {
$a = get_app();
@ -1201,9 +1400,13 @@ function prepare_body($item,$attach = false) {
}}
// Given a text string, convert from bbcode to html and add smilie icons.
if(! function_exists('prepare_text')) {
/**
* Given a text string, convert from bbcode to html and add smilie icons.
*
* @param string $text
* @return string
*/
function prepare_text($text) {
require_once('include/bbcode.php');
@ -1217,19 +1420,25 @@ function prepare_text($text) {
}}
/**
* returns
* [
* //categories [
* return array with details for categories and folders for an item
*
* @param array $item
* @return array
*
* [
* [ // categories array
* {
* 'name': 'category name',
* 'removeurl': 'url to remove this category',
* 'first': 'is the first in this array? true/false',
* 'removeurl': 'url to remove this category',
* 'first': 'is the first in this array? true/false',
* 'last': 'is the last in this array? true/false',
* } ,
* ....
* ],
* // folders [
* [ //folders array
* {
* 'name': 'folder name',
* 'removeurl': 'url to remove this folder',
* 'first': 'is the first in this array? true/false',
@ -1237,9 +1446,10 @@ function prepare_text($text) {
* } ,
* ....
* ]
* ]
* ]
*/
function get_cats_and_terms($item) {
$a = get_app();
$categories = array();
$folders = array();
@ -1284,11 +1494,12 @@ function get_cats_and_terms($item) {
}
/**
* return atom link elements for all of our hubs
*/
if(! function_exists('feed_hublinks')) {
/**
* return atom link elements for all of our hubs
* @return string hub link xml elements
*/
function feed_hublinks() {
$hub = get_config('system','huburl');
@ -1308,9 +1519,13 @@ function feed_hublinks() {
return $hubxml;
}}
/* return atom link elements for salmon endpoints */
if(! function_exists('feed_salmonlinks')) {
/**
* return atom link elements for salmon endpoints
* @param string $nick user nickname
* @return string salmon link xml elements
*/
function feed_salmonlinks($nick) {
$a = get_app();
@ -1325,6 +1540,11 @@ function feed_salmonlinks($nick) {
}}
if(! function_exists('get_plink')) {
/**
* get private link for item
* @param array $item
* @return boolean|array False if item has not plink, otherwise array('href'=>plink url, 'title'=>translated title)
*/
function get_plink($item) {
$a = get_app();
if (x($item,'plink') && ($item['private'] != 1)) {
@ -1339,6 +1559,11 @@ function get_plink($item) {
}}
if(! function_exists('unamp')) {
/**
* replace html amp entity with amp char
* @param string $s
* @return string
*/
function unamp($s) {
return str_replace('&amp;', '&', $s);
}}
@ -1347,6 +1572,12 @@ function unamp($s) {
if(! function_exists('lang_selector')) {
/**
* get html for language selector
* @global string $lang
* @return string
* @template lang_selector.tpl
*/
function lang_selector() {
global $lang;
@ -1383,6 +1614,11 @@ function lang_selector() {
if(! function_exists('return_bytes')) {
/**
* return number of bytes in size (K, M, G)
* @param string $size_str
* @return number
*/
function return_bytes ($size_str) {
switch (substr ($size_str, -1))
{
@ -1393,6 +1629,9 @@ function return_bytes ($size_str) {
}
}}
/**
* @return string
*/
function generate_user_guid() {
$found = true;
do {
@ -1407,7 +1646,11 @@ function generate_user_guid() {
}
/**
* @param string $s
* @param boolean $strip_padding
* @return string
*/
function base64url_encode($s, $strip_padding = false) {
$s = strtr(base64_encode($s),'+/','-_');
@ -1418,6 +1661,10 @@ function base64url_encode($s, $strip_padding = false) {
return $s;
}
/**
* @param string $s
* @return string
*/
function base64url_decode($s) {
if(is_array($s)) {
@ -1446,6 +1693,16 @@ function base64url_decode($s) {
if (!function_exists('str_getcsv')) {
/**
* Parse csv string
*
* @param string $input
* @param string $delimiter
* @param string $enclosure
* @param string $escape
* @param string $eol
* @return boolean|array False on error, otherwise array[row][column]
*/
function str_getcsv($input, $delimiter = ',', $enclosure = '"', $escape = '\\', $eol = '\n') {
if (is_string($input) && !empty($input)) {
$output = array();
@ -1502,6 +1759,11 @@ if (!function_exists('str_getcsv')) {
}
}
/**
* return div element with class 'clear'
* @return string
* @deprecated
*/
function cleardiv() {
return '<div class="clear"></div>';
}
@ -1538,6 +1800,8 @@ function html2bb_video($s) {
/**
* apply xmlify() to all values of array $val, recursively
* @param array $val
* @return array
*/
function array_xmlify($val){
if (is_bool($val)) return $val?"true":"false";
@ -1546,6 +1810,13 @@ function array_xmlify($val){
}
/**
* transorm link href and img src from relative to absolute
*
* @param string $text
* @param string $base base url
* @return string
*/
function reltoabs($text, $base)
{
if (empty($base))
@ -1578,6 +1849,12 @@ function reltoabs($text, $base)
return $text;
}
/**
* get translated item type
*
* @param array $itme
* @return string
*/
function item_post_type($item) {
if(intval($item['event-id']))
return t('event');

View file

@ -274,6 +274,7 @@ function admin_page_site_post(&$a){
$maxloadavg = ((x($_POST,'maxloadavg')) ? intval(trim($_POST['maxloadavg'])) : 50);
$dfrn_only = ((x($_POST,'dfrn_only')) ? True : False);
$ostatus_disabled = !((x($_POST,'ostatus_disabled')) ? True : False);
$ostatus_poll_interval = ((x($_POST,'ostatus_poll_interval')) ? intval(trim($_POST['ostatus_poll_interval'])) : 0);
$diaspora_enabled = ((x($_POST,'diaspora_enabled')) ? True : False);
$ssl_policy = ((x($_POST,'ssl_policy')) ? intval($_POST['ssl_policy']) : 0);
$new_share = ((x($_POST,'new_share')) ? True : False);
@ -388,6 +389,7 @@ function admin_page_site_post(&$a){
set_config('system','curl_timeout', $timeout);
set_config('system','dfrn_only', $dfrn_only);
set_config('system','ostatus_disabled', $ostatus_disabled);
set_config('system','ostatus_poll_interval', $ostatus_poll_interval);
set_config('system','diaspora_enabled', $diaspora_enabled);
set_config('config','private_addons', $private_addons);
@ -442,7 +444,16 @@ function admin_page_site(&$a) {
$theme_choices[$f] = $theme_name;
}
}
}
}
/* OStatus conversation poll choices */
$ostatus_poll_choices = array(
"-1" => t("Never"),
"0" => t("Frequently"),
"60" => t("Hourly"),
"720" => t("Twice daily"),
"1440" => t("Daily")
);
/* get user names to make the install a personal install of X */
$user_names = array();
@ -520,6 +531,7 @@ function admin_page_site(&$a) {
'$no_utf' => array('no_utf', t("UTF-8 Regular expressions"), !get_config('system','no_utf'), t("Use PHP UTF8 regular expressions")),
'$no_community_page' => array('no_community_page', t("Show Community Page"), !get_config('system','no_community_page'), t("Display a Community page showing all recent public postings on this site.")),
'$ostatus_disabled' => array('ostatus_disabled', t("Enable OStatus support"), !get_config('system','ostatus_disabled'), t("Provide built-in OStatus \x28identi.ca, status.net, etc.\x29 compatibility. All communications in OStatus are public, so privacy warnings will be occasionally displayed.")),
'$ostatus_poll_interval' => array('ostatus_poll_interval', t("OStatus conversation completion interval"), (string) intval(get_config('system','ostatus_poll_interval')), t("How often shall the poller check for new entries in OStatus conversations? This can be a very ressource task."), $ostatus_poll_choices),
'$diaspora_enabled' => array('diaspora_enabled', t("Enable Diaspora support"), get_config('system','diaspora_enabled'), t("Provide built-in Diaspora network compatibility.")),
'$dfrn_only' => array('dfrn_only', t('Only allow Friendica contacts'), get_config('system','dfrn_only'), t("All contacts must use Friendica protocols. All other built-in communication protocols disabled.")),
'$verifyssl' => array('verifyssl', t("Verify SSL"), get_config('system','verifyssl'), t("If you wish, you can turn on strict certificate checking. This will mean you cannot connect (at all) to self-signed SSL sites.")),

View file

@ -971,7 +971,7 @@ function item_content(&$a) {
if (is_ajax()){
// ajax return: [<item id>, 0 (no perm) | <owner id>]
echo json_encode(array(intval($a->argv[2]), intval($o)));
kllme();
killme();
}
}
return $o;

View file

@ -79,6 +79,7 @@
{{ inc field_checkbox.tpl with $field=$force_publish }}{{ endinc }}
{{ inc field_checkbox.tpl with $field=$no_community_page }}{{ endinc }}
{{ inc field_checkbox.tpl with $field=$ostatus_disabled }}{{ endinc }}
{{ inc field_select.tpl with $field=$ostatus_poll_interval }}{{ endinc }}
{{ inc field_checkbox.tpl with $field=$diaspora_enabled }}{{ endinc }}
{{ inc field_checkbox.tpl with $field=$dfrn_only }}{{ endinc }}
{{ inc field_input.tpl with $field=$global_directory }}{{ endinc }}

View file

@ -25,8 +25,8 @@ msgid ""
msgstr ""
"Project-Id-Version: friendica\n"
"Report-Msgid-Bugs-To: http://bugs.friendica.com/\n"
"POT-Creation-Date: 2013-02-28 10:13-0500\n"
"PO-Revision-Date: 2013-03-01 15:21+0000\n"
"POT-Creation-Date: 2013-03-19 03:30-0700\n"
"PO-Revision-Date: 2013-03-28 06:48+0000\n"
"Last-Translator: bavatar <tobias.diekershoff@gmx.net>\n"
"Language-Team: German (http://www.transifex.com/projects/p/friendica/language/de/)\n"
"MIME-Version: 1.0\n"
@ -35,5483 +35,22 @@ msgstr ""
"Language: de\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: ../../object/Item.php:106 ../../mod/photos.php:1351
#: ../../mod/content.php:643
msgid "Private Message"
msgstr "Private Nachricht"
#: ../../object/Item.php:110 ../../mod/editpost.php:109
#: ../../mod/settings.php:622 ../../mod/content.php:751
msgid "Edit"
msgstr "Bearbeiten"
#: ../../object/Item.php:119 ../../mod/content.php:461
#: ../../mod/content.php:763 ../../include/conversation.php:587
msgid "Select"
msgstr "Auswählen"
#: ../../object/Item.php:120 ../../mod/admin.php:755 ../../mod/photos.php:1637
#: ../../mod/settings.php:623 ../../mod/group.php:171
#: ../../mod/content.php:462 ../../mod/content.php:764
#: ../../include/conversation.php:588
msgid "Delete"
msgstr "Löschen"
#: ../../object/Item.php:123 ../../mod/content.php:786
msgid "save to folder"
msgstr "In Ordner speichern"
#: ../../object/Item.php:202 ../../mod/content.php:776
msgid "add star"
msgstr "markieren"
#: ../../object/Item.php:203 ../../mod/content.php:777
msgid "remove star"
msgstr "Markierung entfernen"
#: ../../object/Item.php:204 ../../mod/content.php:778
msgid "toggle star status"
msgstr "Markierung umschalten"
#: ../../object/Item.php:207 ../../mod/content.php:781
msgid "starred"
msgstr "markiert"
#: ../../object/Item.php:212 ../../mod/content.php:782
msgid "add tag"
msgstr "Tag hinzufügen"
#: ../../object/Item.php:223 ../../mod/photos.php:1529
#: ../../mod/content.php:707
msgid "I like this (toggle)"
msgstr "Ich mag das (toggle)"
#: ../../object/Item.php:223 ../../mod/content.php:707
msgid "like"
msgstr "mag ich"
#: ../../object/Item.php:224 ../../mod/photos.php:1530
#: ../../mod/content.php:708
msgid "I don't like this (toggle)"
msgstr "Ich mag das nicht (toggle)"
#: ../../object/Item.php:224 ../../mod/content.php:708
msgid "dislike"
msgstr "mag ich nicht"
#: ../../object/Item.php:226 ../../mod/content.php:710
msgid "Share this"
msgstr "Weitersagen"
#: ../../object/Item.php:226 ../../mod/content.php:710
msgid "share"
msgstr "Teilen"
#: ../../object/Item.php:288 ../../include/conversation.php:639
msgid "Categories:"
msgstr "Kategorien"
#: ../../object/Item.php:289 ../../include/conversation.php:640
msgid "Filed under:"
msgstr "Abgelegt unter:"
#: ../../object/Item.php:297 ../../object/Item.php:298
#: ../../mod/content.php:495 ../../mod/content.php:875
#: ../../mod/content.php:876 ../../include/conversation.php:627
#, php-format
msgid "View %s's profile @ %s"
msgstr "Das Profil von %s auf %s betrachten."
#: ../../object/Item.php:299 ../../mod/content.php:877
msgid "to"
msgstr "zu"
#: ../../object/Item.php:300
msgid "via"
msgstr "via"
#: ../../object/Item.php:301 ../../mod/content.php:878
msgid "Wall-to-Wall"
msgstr "Wall-to-Wall"
#: ../../object/Item.php:302 ../../mod/content.php:879
msgid "via Wall-To-Wall:"
msgstr "via Wall-To-Wall:"
#: ../../object/Item.php:311 ../../mod/content.php:505
#: ../../mod/content.php:887 ../../include/conversation.php:647
#, php-format
msgid "%s from %s"
msgstr "%s von %s"
#: ../../object/Item.php:329 ../../object/Item.php:642
#: ../../mod/photos.php:1551 ../../mod/photos.php:1595
#: ../../mod/photos.php:1678 ../../mod/content.php:732 ../../boot.php:651
msgid "Comment"
msgstr "Kommentar"
#: ../../object/Item.php:332 ../../mod/message.php:334
#: ../../mod/message.php:565 ../../mod/editpost.php:124
#: ../../mod/wallmessage.php:156 ../../mod/photos.php:1532
#: ../../mod/content.php:522 ../../mod/content.php:906
#: ../../include/conversation.php:664 ../../include/conversation.php:1060
msgid "Please wait"
msgstr "Bitte warten"
#: ../../object/Item.php:352 ../../mod/content.php:626
#, php-format
msgid "%d comment"
msgid_plural "%d comments"
msgstr[0] "%d Kommentar"
msgstr[1] "%d Kommentare"
#: ../../object/Item.php:354 ../../object/Item.php:367
#: ../../mod/content.php:628 ../../include/text.php:1560
msgid "comment"
msgid_plural "comments"
msgstr[0] ""
msgstr[1] "Kommentar"
#: ../../object/Item.php:355 ../../mod/content.php:629 ../../boot.php:652
#: ../../include/contact_widgets.php:204
msgid "show more"
msgstr "mehr anzeigen"
#: ../../object/Item.php:640 ../../mod/photos.php:1549
#: ../../mod/photos.php:1593 ../../mod/photos.php:1676
#: ../../mod/content.php:730
msgid "This is you"
msgstr "Das bist du"
#: ../../object/Item.php:643 ../../mod/fsuggest.php:107
#: ../../mod/admin.php:478 ../../mod/admin.php:748 ../../mod/admin.php:887
#: ../../mod/admin.php:1087 ../../mod/admin.php:1174 ../../mod/message.php:335
#: ../../mod/message.php:564 ../../mod/events.php:478
#: ../../mod/photos.php:1078 ../../mod/photos.php:1199
#: ../../mod/photos.php:1501 ../../mod/photos.php:1552
#: ../../mod/photos.php:1596 ../../mod/photos.php:1679
#: ../../mod/contacts.php:386 ../../mod/invite.php:140
#: ../../mod/settings.php:560 ../../mod/settings.php:670
#: ../../mod/settings.php:739 ../../mod/settings.php:811
#: ../../mod/settings.php:1037 ../../mod/profiles.php:626
#: ../../mod/manage.php:110 ../../mod/poke.php:199 ../../mod/localtime.php:45
#: ../../mod/install.php:248 ../../mod/install.php:286 ../../mod/group.php:87
#: ../../mod/content.php:733 ../../mod/mood.php:137 ../../mod/crepair.php:166
#: ../../view/theme/diabook/theme.php:642
#: ../../view/theme/diabook/config.php:152
#: ../../view/theme/dispy/config.php:70 ../../view/theme/quattro/config.php:64
#: ../../view/theme/cleanzero/config.php:80
msgid "Submit"
msgstr "Senden"
#: ../../object/Item.php:644 ../../mod/content.php:734
msgid "Bold"
msgstr "Fett"
#: ../../object/Item.php:645 ../../mod/content.php:735
msgid "Italic"
msgstr "Kursiv"
#: ../../object/Item.php:646 ../../mod/content.php:736
msgid "Underline"
msgstr "Unterstrichen"
#: ../../object/Item.php:647 ../../mod/content.php:737
msgid "Quote"
msgstr "Zitat"
#: ../../object/Item.php:648 ../../mod/content.php:738
msgid "Code"
msgstr "Code"
#: ../../object/Item.php:649 ../../mod/content.php:739
msgid "Image"
msgstr "Bild"
#: ../../object/Item.php:650 ../../mod/content.php:740
msgid "Link"
msgstr "Verweis"
#: ../../object/Item.php:651 ../../mod/content.php:741
msgid "Video"
msgstr "Video"
#: ../../object/Item.php:652 ../../mod/editpost.php:145
#: ../../mod/photos.php:1553 ../../mod/photos.php:1597
#: ../../mod/photos.php:1680 ../../mod/content.php:742
#: ../../include/conversation.php:1077
msgid "Preview"
msgstr "Vorschau"
#: ../../index.php:227 ../../mod/help.php:90
msgid "Not Found"
msgstr "Nicht gefunden"
#: ../../index.php:230 ../../mod/help.php:93
msgid "Page not found."
msgstr "Seite nicht gefunden."
#: ../../index.php:341 ../../mod/profperm.php:19 ../../mod/group.php:72
msgid "Permission denied"
msgstr "Zugriff verweigert"
#: ../../index.php:342 ../../mod/fsuggest.php:78
#: ../../mod/notifications.php:66 ../../mod/message.php:38
#: ../../mod/message.php:174 ../../mod/editpost.php:10
#: ../../mod/dfrn_confirm.php:53 ../../mod/events.php:140
#: ../../mod/wallmessage.php:9 ../../mod/wallmessage.php:33
#: ../../mod/wallmessage.php:79 ../../mod/wallmessage.php:103
#: ../../mod/nogroup.php:25 ../../mod/wall_upload.php:66 ../../mod/api.php:26
#: ../../mod/api.php:31 ../../mod/photos.php:133 ../../mod/photos.php:1044
#: ../../mod/register.php:40 ../../mod/attach.php:33
#: ../../mod/contacts.php:147 ../../mod/follow.php:9 ../../mod/uimport.php:23
#: ../../mod/allfriends.php:9 ../../mod/invite.php:15 ../../mod/invite.php:101
#: ../../mod/settings.php:91 ../../mod/settings.php:542
#: ../../mod/settings.php:547 ../../mod/display.php:180
#: ../../mod/profiles.php:146 ../../mod/profiles.php:567
#: ../../mod/wall_attach.php:55 ../../mod/suggest.php:56
#: ../../mod/manage.php:96 ../../mod/delegate.php:6
#: ../../mod/viewcontacts.php:22 ../../mod/notes.php:20 ../../mod/poke.php:135
#: ../../mod/profile_photo.php:19 ../../mod/profile_photo.php:169
#: ../../mod/profile_photo.php:180 ../../mod/profile_photo.php:193
#: ../../mod/install.php:151 ../../mod/group.php:19 ../../mod/regmod.php:118
#: ../../mod/item.php:140 ../../mod/item.php:156 ../../mod/mood.php:114
#: ../../mod/network.php:6 ../../mod/crepair.php:115
#: ../../include/items.php:4090
msgid "Permission denied."
msgstr "Zugriff verweigert."
#: ../../index.php:401
msgid "toggle mobile"
msgstr "auf/von Mobile Ansicht wechseln"
#: ../../mod/update_notes.php:41 ../../mod/update_profile.php:41
#: ../../mod/update_community.php:18 ../../mod/update_network.php:22
#: ../../mod/update_display.php:22
msgid "[Embedded content - reload page to view]"
msgstr "[Eingebetteter Inhalt - Seite neu laden zum Betrachten]"
#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92
#: ../../mod/dfrn_confirm.php:118 ../../mod/crepair.php:129
msgid "Contact not found."
msgstr "Kontakt nicht gefunden."
#: ../../mod/fsuggest.php:63
msgid "Friend suggestion sent."
msgstr "Kontaktvorschlag gesendet."
#: ../../mod/fsuggest.php:97
msgid "Suggest Friends"
msgstr "Kontakte vorschlagen"
#: ../../mod/fsuggest.php:99
#, php-format
msgid "Suggest a friend for %s"
msgstr "Schlage %s einen Kontakt vor"
#: ../../mod/dfrn_request.php:93
msgid "This introduction has already been accepted."
msgstr "Diese Kontaktanfrage wurde bereits akzeptiert."
#: ../../mod/dfrn_request.php:118 ../../mod/dfrn_request.php:513
msgid "Profile location is not valid or does not contain profile information."
msgstr "Profiladresse ist ungültig oder stellt einige Profildaten nicht zur Verfügung."
#: ../../mod/dfrn_request.php:123 ../../mod/dfrn_request.php:518
msgid "Warning: profile location has no identifiable owner name."
msgstr "Warnung: Es konnte kein Name des Besitzers von der angegebenen Profiladresse gefunden werden."
#: ../../mod/dfrn_request.php:125 ../../mod/dfrn_request.php:520
msgid "Warning: profile location has no profile photo."
msgstr "Warnung: Es konnte kein Profilbild bei der angegebenen Profiladresse gefunden werden."
#: ../../mod/dfrn_request.php:128 ../../mod/dfrn_request.php:523
#, php-format
msgid "%d required parameter was not found at the given location"
msgid_plural "%d required parameters were not found at the given location"
msgstr[0] "%d benötigter Parameter wurde an der angegebenen Stelle nicht gefunden"
msgstr[1] "%d benötigte Parameter wurden an der angegebenen Stelle nicht gefunden"
#: ../../mod/dfrn_request.php:170
msgid "Introduction complete."
msgstr "Kontaktanfrage abgeschlossen."
#: ../../mod/dfrn_request.php:209
msgid "Unrecoverable protocol error."
msgstr "Nicht behebbarer Protokollfehler."
#: ../../mod/dfrn_request.php:237
msgid "Profile unavailable."
msgstr "Profil nicht verfügbar."
#: ../../mod/dfrn_request.php:262
#, php-format
msgid "%s has received too many connection requests today."
msgstr "%s hat heute zu viele Freundschaftsanfragen erhalten."
#: ../../mod/dfrn_request.php:263
msgid "Spam protection measures have been invoked."
msgstr "Maßnahmen zum Spamschutz wurden ergriffen."
#: ../../mod/dfrn_request.php:264
msgid "Friends are advised to please try again in 24 hours."
msgstr "Freunde sind angehalten, es in 24 Stunden erneut zu versuchen."
#: ../../mod/dfrn_request.php:326
msgid "Invalid locator"
msgstr "Ungültiger Locator"
#: ../../mod/dfrn_request.php:335
msgid "Invalid email address."
msgstr "Ungültige E-Mail Adresse."
#: ../../mod/dfrn_request.php:362
msgid "This account has not been configured for email. Request failed."
msgstr "Dieses Konto ist nicht für E-Mail konfiguriert. Anfrage fehlgeschlagen."
#: ../../mod/dfrn_request.php:458
msgid "Unable to resolve your name at the provided location."
msgstr "Konnte deinen Namen an der angegebenen Stelle nicht finden."
#: ../../mod/dfrn_request.php:471
msgid "You have already introduced yourself here."
msgstr "Du hast dich hier bereits vorgestellt."
#: ../../mod/dfrn_request.php:475
#, php-format
msgid "Apparently you are already friends with %s."
msgstr "Es scheint so, als ob du bereits mit %s befreundet bist."
#: ../../mod/dfrn_request.php:496
msgid "Invalid profile URL."
msgstr "Ungültige Profil-URL."
#: ../../mod/dfrn_request.php:502 ../../include/follow.php:27
msgid "Disallowed profile URL."
msgstr "Nicht erlaubte Profil-URL."
#: ../../mod/dfrn_request.php:571 ../../mod/contacts.php:124
msgid "Failed to update contact record."
msgstr "Aktualisierung der Kontaktdaten fehlgeschlagen."
#: ../../mod/dfrn_request.php:592
msgid "Your introduction has been sent."
msgstr "Deine Kontaktanfrage wurde gesendet."
#: ../../mod/dfrn_request.php:645
msgid "Please login to confirm introduction."
msgstr "Bitte melde dich an, um die Kontaktanfrage zu bestätigen."
#: ../../mod/dfrn_request.php:659
msgid ""
"Incorrect identity currently logged in. Please login to "
"<strong>this</strong> profile."
msgstr "Momentan bist du mit einer anderen Identität angemeldet. Bitte melde Dich mit <strong>diesem</strong> Profil an."
#: ../../mod/dfrn_request.php:670
msgid "Hide this contact"
msgstr "Verberge diesen Kontakt"
#: ../../mod/dfrn_request.php:673
#, php-format
msgid "Welcome home %s."
msgstr "Willkommen zurück %s."
#: ../../mod/dfrn_request.php:674
#, php-format
msgid "Please confirm your introduction/connection request to %s."
msgstr "Bitte bestätige deine Kontaktanfrage bei %s."
#: ../../mod/dfrn_request.php:675
msgid "Confirm"
msgstr "Bestätigen"
#: ../../mod/dfrn_request.php:716 ../../include/items.php:3439
msgid "[Name Withheld]"
msgstr "[Name unterdrückt]"
#: ../../mod/dfrn_request.php:761 ../../mod/photos.php:914
#: ../../mod/search.php:89 ../../mod/display.php:19 ../../mod/community.php:18
#: ../../mod/viewcontacts.php:17 ../../mod/directory.php:31
msgid "Public access denied."
msgstr "Öffentlicher Zugriff verweigert."
#: ../../mod/dfrn_request.php:811
msgid ""
"Please enter your 'Identity Address' from one of the following supported "
"communications networks:"
msgstr "Bitte gib die Adresse deines Profils in einem der unterstützten sozialen Netzwerke an:"
#: ../../mod/dfrn_request.php:827
msgid "<strike>Connect as an email follower</strike> (Coming soon)"
msgstr "<strike>Als E-Mail-Kontakt verbinden</strike> (In Kürze verfügbar)"
#: ../../mod/dfrn_request.php:829
msgid ""
"If you are not yet a member of the free social web, <a "
"href=\"http://dir.friendica.com/siteinfo\">follow this link to find a public"
" Friendica site and join us today</a>."
msgstr "Wenn du noch kein Mitglied dieses freien sozialen Netzwerks bist, <a href=\"http://dir.friendica.com/siteinfo\">folge diesem Link</a> um einen öffentlichen Friendica-Server zu finden und beizutreten."
#: ../../mod/dfrn_request.php:832
msgid "Friend/Connection Request"
msgstr "Freundschafts-/Kontaktanfrage"
#: ../../mod/dfrn_request.php:833
msgid ""
"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, "
"testuser@identi.ca"
msgstr "Beispiele: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"
#: ../../mod/dfrn_request.php:834
msgid "Please answer the following:"
msgstr "Bitte beantworte Folgendes:"
#: ../../mod/dfrn_request.php:835
#, php-format
msgid "Does %s know you?"
msgstr "Kennt %s dich?"
#: ../../mod/dfrn_request.php:836 ../../mod/message.php:209
#: ../../mod/api.php:105 ../../mod/register.php:239 ../../mod/contacts.php:246
#: ../../mod/settings.php:934 ../../mod/settings.php:940
#: ../../mod/settings.php:948 ../../mod/settings.php:952
#: ../../mod/settings.php:957 ../../mod/settings.php:963
#: ../../mod/settings.php:969 ../../mod/settings.php:975
#: ../../mod/settings.php:1005 ../../mod/settings.php:1006
#: ../../mod/settings.php:1007 ../../mod/settings.php:1008
#: ../../mod/settings.php:1009 ../../mod/profiles.php:606
#: ../../mod/suggest.php:29 ../../include/items.php:3967
msgid "Yes"
msgstr "Ja"
#: ../../mod/dfrn_request.php:837 ../../mod/api.php:106
#: ../../mod/register.php:240 ../../mod/settings.php:934
#: ../../mod/settings.php:940 ../../mod/settings.php:948
#: ../../mod/settings.php:952 ../../mod/settings.php:957
#: ../../mod/settings.php:963 ../../mod/settings.php:969
#: ../../mod/settings.php:975 ../../mod/settings.php:1005
#: ../../mod/settings.php:1006 ../../mod/settings.php:1007
#: ../../mod/settings.php:1008 ../../mod/settings.php:1009
#: ../../mod/profiles.php:607
msgid "No"
msgstr "Nein"
#: ../../mod/dfrn_request.php:838
msgid "Add a personal note:"
msgstr "Eine persönliche Notiz beifügen:"
#: ../../mod/dfrn_request.php:840 ../../include/contact_selectors.php:76
msgid "Friendica"
msgstr "Friendica"
#: ../../mod/dfrn_request.php:841
msgid "StatusNet/Federated Social Web"
msgstr "StatusNet/Federated Social Web"
#: ../../mod/dfrn_request.php:842 ../../mod/settings.php:681
#: ../../include/contact_selectors.php:80
msgid "Diaspora"
msgstr "Diaspora"
#: ../../mod/dfrn_request.php:843
#, php-format
msgid ""
" - please do not use this form. Instead, enter %s into your Diaspora search"
" bar."
msgstr " - bitte verwende dieses Formular nicht. Stattdessen suche nach %s in deiner Diaspora Suchleiste."
#: ../../mod/dfrn_request.php:844
msgid "Your Identity Address:"
msgstr "Adresse deines Profils:"
#: ../../mod/dfrn_request.php:847
msgid "Submit Request"
msgstr "Anfrage abschicken"
#: ../../mod/dfrn_request.php:848 ../../mod/message.php:212
#: ../../mod/editpost.php:148 ../../mod/fbrowser.php:81
#: ../../mod/fbrowser.php:116 ../../mod/photos.php:202
#: ../../mod/photos.php:290 ../../mod/contacts.php:249 ../../mod/tagrm.php:11
#: ../../mod/tagrm.php:94 ../../mod/settings.php:561
#: ../../mod/settings.php:587 ../../mod/suggest.php:32
#: ../../include/items.php:3970 ../../include/conversation.php:1080
msgid "Cancel"
msgstr "Abbrechen"
#: ../../mod/profile.php:21 ../../boot.php:1246
msgid "Requested profile is not available."
msgstr "Das angefragte Profil ist nicht vorhanden."
#: ../../mod/profile.php:155 ../../mod/display.php:99
msgid "Access to this profile has been restricted."
msgstr "Der Zugriff zu diesem Profil wurde eingeschränkt."
#: ../../mod/profile.php:180
msgid "Tips for New Members"
msgstr "Tipps für neue Nutzer"
#: ../../mod/notifications.php:26
msgid "Invalid request identifier."
msgstr "Invalid request identifier."
#: ../../mod/notifications.php:35 ../../mod/notifications.php:165
#: ../../mod/notifications.php:211
msgid "Discard"
msgstr "Verwerfen"
#: ../../mod/notifications.php:51 ../../mod/notifications.php:164
#: ../../mod/notifications.php:210 ../../mod/contacts.php:359
#: ../../mod/contacts.php:413
msgid "Ignore"
msgstr "Ignorieren"
#: ../../mod/notifications.php:78
msgid "System"
msgstr "System"
#: ../../mod/notifications.php:83 ../../include/nav.php:140
msgid "Network"
msgstr "Netzwerk"
#: ../../mod/notifications.php:88 ../../mod/network.php:444
msgid "Personal"
msgstr "Persönlich"
#: ../../mod/notifications.php:93 ../../view/theme/diabook/theme.php:87
#: ../../include/nav.php:104 ../../include/nav.php:143
msgid "Home"
msgstr "Pinnwand"
#: ../../mod/notifications.php:98 ../../include/nav.php:149
msgid "Introductions"
msgstr "Kontaktanfragen"
#: ../../mod/notifications.php:103 ../../mod/message.php:182
#: ../../include/nav.php:156
msgid "Messages"
msgstr "Nachrichten"
#: ../../mod/notifications.php:122
msgid "Show Ignored Requests"
msgstr "Zeige ignorierte Anfragen"
#: ../../mod/notifications.php:122
msgid "Hide Ignored Requests"
msgstr "Verberge ignorierte Anfragen"
#: ../../mod/notifications.php:149 ../../mod/notifications.php:195
msgid "Notification type: "
msgstr "Benachrichtigungstyp: "
#: ../../mod/notifications.php:150
msgid "Friend Suggestion"
msgstr "Kontaktvorschlag"
#: ../../mod/notifications.php:152
#, php-format
msgid "suggested by %s"
msgstr "vorgeschlagen von %s"
#: ../../mod/notifications.php:157 ../../mod/notifications.php:204
#: ../../mod/contacts.php:419
msgid "Hide this contact from others"
msgstr "Verberge diesen Kontakt vor anderen"
#: ../../mod/notifications.php:158 ../../mod/notifications.php:205
msgid "Post a new friend activity"
msgstr "Neue-Kontakt Nachricht senden"
#: ../../mod/notifications.php:158 ../../mod/notifications.php:205
msgid "if applicable"
msgstr "falls anwendbar"
#: ../../mod/notifications.php:161 ../../mod/notifications.php:208
#: ../../mod/admin.php:753
msgid "Approve"
msgstr "Genehmigen"
#: ../../mod/notifications.php:181
msgid "Claims to be known to you: "
msgstr "Behauptet dich zu kennen: "
#: ../../mod/notifications.php:181
msgid "yes"
msgstr "ja"
#: ../../mod/notifications.php:181
msgid "no"
msgstr "nein"
#: ../../mod/notifications.php:188
msgid "Approve as: "
msgstr "Genehmigen als: "
#: ../../mod/notifications.php:189
msgid "Friend"
msgstr "Freund"
#: ../../mod/notifications.php:190
msgid "Sharer"
msgstr "Teilenden"
#: ../../mod/notifications.php:190
msgid "Fan/Admirer"
msgstr "Fan/Verehrer"
#: ../../mod/notifications.php:196
msgid "Friend/Connect Request"
msgstr "Kontakt-/Freundschaftsanfrage"
#: ../../mod/notifications.php:196
msgid "New Follower"
msgstr "Neuer Bewunderer"
#: ../../mod/notifications.php:217
msgid "No introductions."
msgstr "Keine Kontaktanfragen."
#: ../../mod/notifications.php:220 ../../include/nav.php:150
msgid "Notifications"
msgstr "Benachrichtigungen"
#: ../../mod/notifications.php:257 ../../mod/notifications.php:382
#: ../../mod/notifications.php:469
#, php-format
msgid "%s liked %s's post"
msgstr "%s mag %ss Beitrag"
#: ../../mod/notifications.php:266 ../../mod/notifications.php:391
#: ../../mod/notifications.php:478
#, php-format
msgid "%s disliked %s's post"
msgstr "%s mag %ss Beitrag nicht"
#: ../../mod/notifications.php:280 ../../mod/notifications.php:405
#: ../../mod/notifications.php:492
#, php-format
msgid "%s is now friends with %s"
msgstr "%s ist jetzt mit %s befreundet"
#: ../../mod/notifications.php:287 ../../mod/notifications.php:412
#, php-format
msgid "%s created a new post"
msgstr "%s hat einen neuen Beitrag erstellt"
#: ../../mod/notifications.php:288 ../../mod/notifications.php:413
#: ../../mod/notifications.php:501
#, php-format
msgid "%s commented on %s's post"
msgstr "%s hat %ss Beitrag kommentiert"
#: ../../mod/notifications.php:302
msgid "No more network notifications."
msgstr "Keine weiteren Netzwerk-Benachrichtigungen."
#: ../../mod/notifications.php:306
msgid "Network Notifications"
msgstr "Netzwerk Benachrichtigungen"
#: ../../mod/notifications.php:332 ../../mod/notify.php:61
msgid "No more system notifications."
msgstr "Keine weiteren Systembenachrichtigungen."
#: ../../mod/notifications.php:336 ../../mod/notify.php:65
msgid "System Notifications"
msgstr "Systembenachrichtigungen"
#: ../../mod/notifications.php:427
msgid "No more personal notifications."
msgstr "Keine weiteren persönlichen Benachrichtigungen"
#: ../../mod/notifications.php:431
msgid "Personal Notifications"
msgstr "Persönliche Benachrichtigungen"
#: ../../mod/notifications.php:508
msgid "No more home notifications."
msgstr "Keine weiteren Pinnwand-Benachrichtigungen"
#: ../../mod/notifications.php:512
msgid "Home Notifications"
msgstr "Pinnwand Benachrichtigungen"
#: ../../mod/like.php:151 ../../mod/tagger.php:62 ../../mod/subthread.php:87
#: ../../view/theme/diabook/theme.php:464 ../../include/text.php:1556
#: ../../include/diaspora.php:1874 ../../include/conversation.php:126
#: ../../include/conversation.php:254
msgid "photo"
msgstr "Foto"
#: ../../mod/like.php:151 ../../mod/like.php:322 ../../mod/tagger.php:62
#: ../../mod/subthread.php:87 ../../view/theme/diabook/theme.php:459
#: ../../view/theme/diabook/theme.php:468 ../../include/diaspora.php:1874
#: ../../include/conversation.php:121 ../../include/conversation.php:130
#: ../../include/conversation.php:249 ../../include/conversation.php:258
msgid "status"
msgstr "Status"
#: ../../mod/like.php:168 ../../view/theme/diabook/theme.php:473
#: ../../include/diaspora.php:1890 ../../include/conversation.php:137
#, php-format
msgid "%1$s likes %2$s's %3$s"
msgstr "%1$s mag %2$ss %3$s"
#: ../../mod/like.php:170 ../../include/conversation.php:140
#, php-format
msgid "%1$s doesn't like %2$s's %3$s"
msgstr "%1$s mag %2$ss %3$s nicht"
#: ../../mod/openid.php:24
msgid "OpenID protocol error. No ID returned."
msgstr "OpenID Protokollfehler. Keine ID zurückgegeben."
#: ../../mod/openid.php:53
msgid ""
"Account not found and OpenID registration is not permitted on this site."
msgstr "Nutzerkonto wurde nicht gefunden, und OpenID-Registrierung ist auf diesem Server nicht gestattet."
#: ../../mod/openid.php:93 ../../include/auth.php:112
#: ../../include/auth.php:175
msgid "Login failed."
msgstr "Anmeldung fehlgeschlagen."
#: ../../mod/babel.php:17
msgid "Source (bbcode) text:"
msgstr "Quelle (bbcode) Text:"
#: ../../mod/babel.php:23
msgid "Source (Diaspora) text to convert to BBcode:"
msgstr "Eingabe (Diaspora) Nach BBCode zu konvertierender Text:"
#: ../../mod/babel.php:31
msgid "Source input: "
msgstr "Originaltext:"
#: ../../mod/babel.php:35
msgid "bb2html (raw HTML): "
msgstr "bb2html (reines HTML): "
#: ../../mod/babel.php:39
msgid "bb2html: "
msgstr "bb2html: "
#: ../../mod/babel.php:43
msgid "bb2html2bb: "
msgstr "bb2html2bb: "
#: ../../mod/babel.php:47
msgid "bb2md: "
msgstr "bb2md: "
#: ../../mod/babel.php:51
msgid "bb2md2html: "
msgstr "bb2md2html: "
#: ../../mod/babel.php:55
msgid "bb2dia2bb: "
msgstr "bb2dia2bb: "
#: ../../mod/babel.php:59
msgid "bb2md2html2bb: "
msgstr "bb2md2html2bb: "
#: ../../mod/babel.php:69
msgid "Source input (Diaspora format): "
msgstr "Texteingabe (Diaspora Format): "
#: ../../mod/babel.php:74
msgid "diaspora2bb: "
msgstr "diaspora2bb: "
#: ../../mod/admin.php:55
msgid "Theme settings updated."
msgstr "Themeneinstellungen aktualisiert."
#: ../../mod/admin.php:96 ../../mod/admin.php:477
msgid "Site"
msgstr "Seite"
#: ../../mod/admin.php:97 ../../mod/admin.php:747 ../../mod/admin.php:761
msgid "Users"
msgstr "Nutzer"
#: ../../mod/admin.php:98 ../../mod/admin.php:844 ../../mod/admin.php:886
msgid "Plugins"
msgstr "Plugins"
#: ../../mod/admin.php:99 ../../mod/admin.php:1052 ../../mod/admin.php:1086
msgid "Themes"
msgstr "Themen"
#: ../../mod/admin.php:100
msgid "DB updates"
msgstr "DB Updates"
#: ../../mod/admin.php:115 ../../mod/admin.php:122 ../../mod/admin.php:1173
msgid "Logs"
msgstr "Protokolle"
#: ../../mod/admin.php:120 ../../include/nav.php:178
msgid "Admin"
msgstr "Administration"
#: ../../mod/admin.php:121
msgid "Plugin Features"
msgstr "Plugin Features"
#: ../../mod/admin.php:123
msgid "User registrations waiting for confirmation"
msgstr "Nutzeranmeldungen die auf Bestätigung warten"
#: ../../mod/admin.php:158 ../../mod/admin.php:794 ../../mod/admin.php:994
#: ../../mod/notice.php:15 ../../mod/display.php:51 ../../mod/display.php:184
#: ../../mod/viewsrc.php:15 ../../include/items.php:3926
msgid "Item not found."
msgstr "Beitrag nicht gefunden."
#: ../../mod/admin.php:182 ../../mod/admin.php:718
msgid "Normal Account"
msgstr "Normales Konto"
#: ../../mod/admin.php:183 ../../mod/admin.php:719
msgid "Soapbox Account"
msgstr "Marktschreier-Konto"
#: ../../mod/admin.php:184 ../../mod/admin.php:720
msgid "Community/Celebrity Account"
msgstr "Forum/Promi-Konto"
#: ../../mod/admin.php:185 ../../mod/admin.php:721
msgid "Automatic Friend Account"
msgstr "Automatisches Freundekonto"
#: ../../mod/admin.php:186
msgid "Blog Account"
msgstr "Blog Account"
#: ../../mod/admin.php:187
msgid "Private Forum"
msgstr "Privates Forum"
#: ../../mod/admin.php:206
msgid "Message queues"
msgstr "Nachrichten-Warteschlangen"
#: ../../mod/admin.php:211 ../../mod/admin.php:476 ../../mod/admin.php:746
#: ../../mod/admin.php:843 ../../mod/admin.php:885 ../../mod/admin.php:1051
#: ../../mod/admin.php:1085 ../../mod/admin.php:1172
msgid "Administration"
msgstr "Administration"
#: ../../mod/admin.php:212
msgid "Summary"
msgstr "Zusammenfassung"
#: ../../mod/admin.php:214
msgid "Registered users"
msgstr "Registrierte Nutzer"
#: ../../mod/admin.php:216
msgid "Pending registrations"
msgstr "Anstehende Anmeldungen"
#: ../../mod/admin.php:217
msgid "Version"
msgstr "Version"
#: ../../mod/admin.php:219
msgid "Active plugins"
msgstr "Aktive Plugins"
#: ../../mod/admin.php:401
msgid "Site settings updated."
msgstr "Seiteneinstellungen aktualisiert."
#: ../../mod/admin.php:430 ../../mod/settings.php:769
msgid "No special theme for mobile devices"
msgstr "Kein spezielles Theme für mobile Geräte verwenden."
#: ../../mod/admin.php:447
msgid "Multi user instance"
msgstr "Mehrbenutzer Instanz"
#: ../../mod/admin.php:463
msgid "Closed"
msgstr "Geschlossen"
#: ../../mod/admin.php:464
msgid "Requires approval"
msgstr "Bedarf der Zustimmung"
#: ../../mod/admin.php:465
msgid "Open"
msgstr "Offen"
#: ../../mod/admin.php:469
msgid "No SSL policy, links will track page SSL state"
msgstr "Keine SSL Richtlinie, Links werden das verwendete Protokoll beibehalten"
#: ../../mod/admin.php:470
msgid "Force all links to use SSL"
msgstr "SSL für alle Links erzwingen"
#: ../../mod/admin.php:471
msgid "Self-signed certificate, use SSL for local links only (discouraged)"
msgstr "Selbst-unterzeichnetes Zertifikat, SSL nur für lokale Links verwenden (nicht empfohlen)"
#: ../../mod/admin.php:479 ../../mod/register.php:261
msgid "Registration"
msgstr "Registrierung"
#: ../../mod/admin.php:480
msgid "File upload"
msgstr "Datei hochladen"
#: ../../mod/admin.php:481
msgid "Policies"
msgstr "Regeln"
#: ../../mod/admin.php:482
msgid "Advanced"
msgstr "Erweitert"
#: ../../mod/admin.php:483
msgid "Performance"
msgstr "Performance"
#: ../../mod/admin.php:487
msgid "Site name"
msgstr "Seitenname"
#: ../../mod/admin.php:488
msgid "Banner/Logo"
msgstr "Banner/Logo"
#: ../../mod/admin.php:489
msgid "System language"
msgstr "Systemsprache"
#: ../../mod/admin.php:490
msgid "System theme"
msgstr "Systemweites Thema"
#: ../../mod/admin.php:490
msgid ""
"Default system theme - may be over-ridden by user profiles - <a href='#' "
"id='cnftheme'>change theme settings</a>"
msgstr "Vorgabe für das System-Theme - kann von Benutzerprofilen überschrieben werden - <a href='#' id='cnftheme'>Theme-Einstellungen ändern</a>"
#: ../../mod/admin.php:491
msgid "Mobile system theme"
msgstr "Systemweites mobiles Thema"
#: ../../mod/admin.php:491
msgid "Theme for mobile devices"
msgstr "Thema für mobile Geräte"
#: ../../mod/admin.php:492
msgid "SSL link policy"
msgstr "Regeln für SSL Links"
#: ../../mod/admin.php:492
msgid "Determines whether generated links should be forced to use SSL"
msgstr "Bestimmt, ob generierte Links SSL verwenden müssen"
#: ../../mod/admin.php:493
msgid "'Share' element"
msgstr "'Teilen' Element"
#: ../../mod/admin.php:493
msgid "Activates the bbcode element 'share' for repeating items."
msgstr "Aktiviert das bbcode Element 'Teilen' um Einträge zu wiederholen."
#: ../../mod/admin.php:494
msgid "Hide help entry from navigation menu"
msgstr "Verberge den Menüeintrag für die Hilfe im Navigationsmenü"
#: ../../mod/admin.php:494
msgid ""
"Hides the menu entry for the Help pages from the navigation menu. You can "
"still access it calling /help directly."
msgstr "Verbirgt den Menüeintrag für die Hilfe-Seiten im Navigationsmenü. Die Seiten können weiterhin über /help aufgerufen werden."
#: ../../mod/admin.php:495
msgid "Single user instance"
msgstr "Ein-Nutzer Instanz"
#: ../../mod/admin.php:495
msgid "Make this instance multi-user or single-user for the named user"
msgstr "Regelt ob es sich bei dieser Instanz um eine ein Personen Installation oder eine Installation mit mehr als einem Nutzer handelt."
#: ../../mod/admin.php:496
msgid "Maximum image size"
msgstr "Maximale Größe von Bildern"
#: ../../mod/admin.php:496
msgid ""
"Maximum size in bytes of uploaded images. Default is 0, which means no "
"limits."
msgstr "Maximale Upload-Größe von Bildern in Bytes. Standard ist 0, d.h. ohne Limit."
#: ../../mod/admin.php:497
msgid "Maximum image length"
msgstr "Maximale Länge von Bildern"
#: ../../mod/admin.php:497
msgid ""
"Maximum length in pixels of the longest side of uploaded images. Default is "
"-1, which means no limits."
msgstr "Maximale Länge in Pixeln der längsten Seite eines hoch geladenen Bildes. Grundeinstellung ist -1 was keine Einschränkung bedeutet."
#: ../../mod/admin.php:498
msgid "JPEG image quality"
msgstr "Qualität des JPEG Bildes"
#: ../../mod/admin.php:498
msgid ""
"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
"100, which is full quality."
msgstr "Hoch geladene JPEG Bilder werden mit dieser Qualität [0-100] gespeichert. Grundeinstellung ist 100, kein Qualitätsverlust."
#: ../../mod/admin.php:500
msgid "Register policy"
msgstr "Registrierungsmethode"
#: ../../mod/admin.php:501
msgid "Maximum Daily Registrations"
msgstr "Maximum täglicher Neuanmeldungen"
#: ../../mod/admin.php:501
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 "Wenn die Registrierung weiter oben erlaubt ist, regelt dies die maximale Anzahl von Neuanmeldungen pro Tag. Wenn die Registrierung geschlossen ist, hat diese Einstellung keinen Effekt."
#: ../../mod/admin.php:502
msgid "Register text"
msgstr "Registrierungstext"
#: ../../mod/admin.php:502
msgid "Will be displayed prominently on the registration page."
msgstr "Wird gut sichtbar auf der Registrierungsseite angezeigt."
#: ../../mod/admin.php:503
msgid "Accounts abandoned after x days"
msgstr "Nutzerkonten gelten nach x Tagen als unbenutzt"
#: ../../mod/admin.php:503
msgid ""
"Will not waste system resources polling external sites for abandonded "
"accounts. Enter 0 for no time limit."
msgstr "Verschwende keine System-Ressourcen auf das Pollen externer Seiten, wenn Konten nicht mehr benutzt werden. 0 eingeben für kein Limit."
#: ../../mod/admin.php:504
msgid "Allowed friend domains"
msgstr "Erlaubte Domains für Kontakte"
#: ../../mod/admin.php:504
msgid ""
"Comma separated list of domains which are allowed to establish friendships "
"with this site. Wildcards are accepted. Empty to allow any domains"
msgstr "Liste der Domains, die für Freundschaften erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben."
#: ../../mod/admin.php:505
msgid "Allowed email domains"
msgstr "Erlaubte Domains für E-Mails"
#: ../../mod/admin.php:505
msgid ""
"Comma separated list of domains which are allowed in email addresses for "
"registrations to this site. Wildcards are accepted. Empty to allow any "
"domains"
msgstr "Liste der Domains, die für E-Mail-Adressen bei der Registrierung erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben."
#: ../../mod/admin.php:506
msgid "Block public"
msgstr "Öffentlichen Zugriff blockieren"
#: ../../mod/admin.php:506
msgid ""
"Check to block public access to all otherwise public personal pages on this "
"site unless you are currently logged in."
msgstr "Klicken, um öffentlichen Zugriff auf sonst öffentliche Profile zu blockieren, wenn man nicht eingeloggt ist."
#: ../../mod/admin.php:507
msgid "Force publish"
msgstr "Erzwinge Veröffentlichung"
#: ../../mod/admin.php:507
msgid ""
"Check to force all profiles on this site to be listed in the site directory."
msgstr "Klicken, um Anzeige aller Profile dieses Servers im Verzeichnis zu erzwingen."
#: ../../mod/admin.php:508
msgid "Global directory update URL"
msgstr "URL für Updates beim weltweiten Verzeichnis"
#: ../../mod/admin.php:508
msgid ""
"URL to update the global directory. If this is not set, the global directory"
" is completely unavailable to the application."
msgstr "URL für Update des globalen Verzeichnisses. Wenn nichts eingetragen ist, bleibt das globale Verzeichnis unerreichbar."
#: ../../mod/admin.php:509
msgid "Allow threaded items"
msgstr "Erlaube Threads in Diskussionen"
#: ../../mod/admin.php:509
msgid "Allow infinite level threading for items on this site."
msgstr "Erlaube ein unendliches Level für Threads auf dieser Seite."
#: ../../mod/admin.php:510
msgid "Private posts by default for new users"
msgstr "Private Beiträge als Standard für neue Nutzer"
#: ../../mod/admin.php:510
msgid ""
"Set default post permissions for all new members to the default privacy "
"group rather than public."
msgstr "Die Standard-Zugriffsrechte für neue Nutzer werden so gesetzt, dass als Voreinstellung in die private Gruppe gepostet wird anstelle von öffentlichen Beiträgen."
#: ../../mod/admin.php:511
msgid "Don't include post content in email notifications"
msgstr "Inhalte von Beiträgen nicht in Email Benachrichtigungen versenden"
#: ../../mod/admin.php:511
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 "Inhalte von Beiträgen/Kommentaren/privaten Nachrichten/usw., zum Datenschutz, nicht in Email-Benachrichtigungen einbinden."
#: ../../mod/admin.php:513
msgid "Block multiple registrations"
msgstr "Unterbinde Mehrfachregistrierung"
#: ../../mod/admin.php:513
msgid "Disallow users to register additional accounts for use as pages."
msgstr "Benutzern nicht erlauben, weitere Konten als zusätzliche Profile anzulegen."
#: ../../mod/admin.php:514
msgid "OpenID support"
msgstr "OpenID Unterstützung"
#: ../../mod/admin.php:514
msgid "OpenID support for registration and logins."
msgstr "OpenID-Unterstützung für Registrierung und Login."
#: ../../mod/admin.php:515
msgid "Fullname check"
msgstr "Namen auf Vollständigkeit überprüfen"
#: ../../mod/admin.php:515
msgid ""
"Force users to register with a space between firstname and lastname in Full "
"name, as an antispam measure"
msgstr "Leerzeichen zwischen Vor- und Nachname im vollständigen Namen erzwingen, um SPAM zu vermeiden."
#: ../../mod/admin.php:516
msgid "UTF-8 Regular expressions"
msgstr "UTF-8 Reguläre Ausdrücke"
#: ../../mod/admin.php:516
msgid "Use PHP UTF8 regular expressions"
msgstr "PHP UTF8 Ausdrücke verwenden"
#: ../../mod/admin.php:517
msgid "Show Community Page"
msgstr "Gemeinschaftsseite anzeigen"
#: ../../mod/admin.php:517
msgid ""
"Display a Community page showing all recent public postings on this site."
msgstr "Zeige die Gemeinschaftsseite mit allen öffentlichen Beiträgen auf diesem Server."
#: ../../mod/admin.php:518
msgid "Enable OStatus support"
msgstr "OStatus Unterstützung aktivieren"
#: ../../mod/admin.php:518
msgid ""
"Provide built-in OStatus (identi.ca, status.net, etc.) compatibility. All "
"communications in OStatus are public, so privacy warnings will be "
"occasionally displayed."
msgstr "Biete die eingebaute OStatus (identi.ca, status.net, etc.) Unterstützung an. Jede Kommunikation in OStatus ist öffentlich, Privatsphäre Warnungen werden nur bei Bedarf angezeigt."
#: ../../mod/admin.php:519
msgid "Enable Diaspora support"
msgstr "Diaspora-Support aktivieren"
#: ../../mod/admin.php:519
msgid "Provide built-in Diaspora network compatibility."
msgstr "Verwende die eingebaute Diaspora-Verknüpfung."
#: ../../mod/admin.php:520
msgid "Only allow Friendica contacts"
msgstr "Nur Friendica-Kontakte erlauben"
#: ../../mod/admin.php:520
msgid ""
"All contacts must use Friendica protocols. All other built-in communication "
"protocols disabled."
msgstr "Alle Kontakte müssen das Friendica Protokoll nutzen. Alle anderen Kommunikationsprotokolle werden deaktiviert."
#: ../../mod/admin.php:521
msgid "Verify SSL"
msgstr "SSL Überprüfen"
#: ../../mod/admin.php:521
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 "Wenn gewollt, kann man hier eine strenge Zertifikatkontrolle einstellen. Das bedeutet, dass man zu keinen Seiten mit selbst unterzeichnetem SSL eine Verbindung herstellen kann."
#: ../../mod/admin.php:522
msgid "Proxy user"
msgstr "Proxy Nutzer"
#: ../../mod/admin.php:523
msgid "Proxy URL"
msgstr "Proxy URL"
#: ../../mod/admin.php:524
msgid "Network timeout"
msgstr "Netzwerk Wartezeit"
#: ../../mod/admin.php:524
msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
msgstr "Der Wert ist in Sekunden. Setze 0 für unbegrenzt (nicht empfohlen)."
#: ../../mod/admin.php:525
msgid "Delivery interval"
msgstr "Zustellungsintervall"
#: ../../mod/admin.php:525
msgid ""
"Delay background delivery processes by this many seconds to reduce system "
"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 "
"for large dedicated servers."
msgstr "Verzögere im Hintergrund laufende Auslieferungsprozesse um die angegebene Anzahl an Sekunden, um die Systemlast zu verringern. Empfehlungen: 4-5 für Shared-Hosts, 2-3 für VPS, 0-1 für große dedizierte Server."
#: ../../mod/admin.php:526
msgid "Poll interval"
msgstr "Abfrageintervall"
#: ../../mod/admin.php:526
msgid ""
"Delay background polling processes by this many seconds to reduce system "
"load. If 0, use delivery interval."
msgstr "Verzögere Hintergrundprozesse, um diese Anzahl an Sekunden um die Systemlast zu reduzieren. Bei 0 Sekunden wird das Auslieferungsintervall verwendet."
#: ../../mod/admin.php:527
msgid "Maximum Load Average"
msgstr "Maximum Load Average"
#: ../../mod/admin.php:527
msgid ""
"Maximum system load before delivery and poll processes are deferred - "
"default 50."
msgstr "Maximale Systemlast bevor Verteil- und Empfangsprozesse verschoben werden - Standard 50"
#: ../../mod/admin.php:529
msgid "Use MySQL full text engine"
msgstr "Nutze MySQL full text engine"
#: ../../mod/admin.php:529
msgid ""
"Activates the full text engine. Speeds up search - but can only search for "
"four and more characters."
msgstr "Aktiviert die 'full text engine'. Beschleunigt die Suche - aber es kann nur nach vier oder mehr Zeichen gesucht werden."
#: ../../mod/admin.php:530
msgid "Path to item cache"
msgstr "Pfad zum Eintrag Cache"
#: ../../mod/admin.php:531
msgid "Cache duration in seconds"
msgstr "Cache-Dauer in Sekunden"
#: ../../mod/admin.php:531
msgid ""
"How long should the cache files be hold? Default value is 86400 seconds (One"
" day)."
msgstr "Wie lange sollen die Dateien im Cache vorgehalten werden? Standardwert ist 86400 Sekunden (ein Tag)."
#: ../../mod/admin.php:532
msgid "Path for lock file"
msgstr "Pfad für die Sperrdatei"
#: ../../mod/admin.php:533
msgid "Temp path"
msgstr "Temp Pfad"
#: ../../mod/admin.php:534
msgid "Base path to installation"
msgstr "Basis-Pfad zur Installation"
#: ../../mod/admin.php:552
msgid "Update has been marked successful"
msgstr "Update wurde als erfolgreich markiert"
#: ../../mod/admin.php:562
#, php-format
msgid "Executing %s failed. Check system logs."
msgstr "Ausführung von %s schlug fehl. Systemprotokolle prüfen."
#: ../../mod/admin.php:565
#, php-format
msgid "Update %s was successfully applied."
msgstr "Update %s war erfolgreich."
#: ../../mod/admin.php:569
#, php-format
msgid "Update %s did not return a status. Unknown if it succeeded."
msgstr "Update %s hat keinen Status zurückgegeben. Unbekannter Status."
#: ../../mod/admin.php:572
#, php-format
msgid "Update function %s could not be found."
msgstr "Updatefunktion %s konnte nicht gefunden werden."
#: ../../mod/admin.php:587
msgid "No failed updates."
msgstr "Keine fehlgeschlagenen Updates."
#: ../../mod/admin.php:591
msgid "Failed Updates"
msgstr "Fehlgeschlagene Updates"
#: ../../mod/admin.php:592
msgid ""
"This does not include updates prior to 1139, which did not return a status."
msgstr "Ohne Updates vor 1139, da diese keinen Status zurückgegeben haben."
#: ../../mod/admin.php:593
msgid "Mark success (if update was manually applied)"
msgstr "Als erfolgreich markieren (falls das Update manuell installiert wurde)"
#: ../../mod/admin.php:594
msgid "Attempt to execute this update step automatically"
msgstr "Versuchen, diesen Schritt automatisch auszuführen"
#: ../../mod/admin.php:619
#, php-format
msgid "%s user blocked/unblocked"
msgid_plural "%s users blocked/unblocked"
msgstr[0] "%s Benutzer geblockt/freigegeben"
msgstr[1] "%s Benutzer geblockt/freigegeben"
#: ../../mod/admin.php:626
#, php-format
msgid "%s user deleted"
msgid_plural "%s users deleted"
msgstr[0] "%s Nutzer gelöscht"
msgstr[1] "%s Nutzer gelöscht"
#: ../../mod/admin.php:665
#, php-format
msgid "User '%s' deleted"
msgstr "Nutzer '%s' gelöscht"
#: ../../mod/admin.php:673
#, php-format
msgid "User '%s' unblocked"
msgstr "Nutzer '%s' entsperrt"
#: ../../mod/admin.php:673
#, php-format
msgid "User '%s' blocked"
msgstr "Nutzer '%s' gesperrt"
#: ../../mod/admin.php:749
msgid "select all"
msgstr "Alle auswählen"
#: ../../mod/admin.php:750
msgid "User registrations waiting for confirm"
msgstr "Neuanmeldungen, die auf deine Bestätigung warten"
#: ../../mod/admin.php:751
msgid "Request date"
msgstr "Anfragedatum"
#: ../../mod/admin.php:751 ../../mod/admin.php:762 ../../mod/settings.php:562
#: ../../mod/settings.php:588 ../../mod/crepair.php:148
msgid "Name"
msgstr "Name"
#: ../../mod/admin.php:751 ../../mod/admin.php:762
#: ../../include/contact_selectors.php:79
#: ../../include/contact_selectors.php:86
msgid "Email"
msgstr "E-Mail"
#: ../../mod/admin.php:752
msgid "No registrations."
msgstr "Keine Neuanmeldungen."
#: ../../mod/admin.php:754
msgid "Deny"
msgstr "Verwehren"
#: ../../mod/admin.php:756 ../../mod/contacts.php:353
#: ../../mod/contacts.php:412
msgid "Block"
msgstr "Sperren"
#: ../../mod/admin.php:757 ../../mod/contacts.php:353
#: ../../mod/contacts.php:412
msgid "Unblock"
msgstr "Entsperren"
#: ../../mod/admin.php:758
msgid "Site admin"
msgstr "Seitenadministrator"
#: ../../mod/admin.php:759
msgid "Account expired"
msgstr "Account ist abgelaufen"
#: ../../mod/admin.php:762
msgid "Register date"
msgstr "Anmeldedatum"
#: ../../mod/admin.php:762
msgid "Last login"
msgstr "Letzte Anmeldung"
#: ../../mod/admin.php:762
msgid "Last item"
msgstr "Letzter Beitrag"
#: ../../mod/admin.php:762
msgid "Account"
msgstr "Nutzerkonto"
#: ../../mod/admin.php:764
msgid ""
"Selected users will be deleted!\\n\\nEverything these users had posted on "
"this site will be permanently deleted!\\n\\nAre you sure?"
msgstr "Die markierten Nutzer werden gelöscht!\\n\\nAlle Beiträge, die diese Nutzer auf dieser Seite veröffentlicht haben, werden permanent gelöscht!\\n\\nBist du sicher?"
#: ../../mod/admin.php:765
msgid ""
"The user {0} will be deleted!\\n\\nEverything this user has posted on this "
"site will be permanently deleted!\\n\\nAre you sure?"
msgstr "Der Nutzer {0} wird gelöscht!\\n\\nAlles was dieser Nutzer auf dieser Seite veröffentlicht hat, wird permanent gelöscht!\\n\\nBist du sicher?"
#: ../../mod/admin.php:806
#, php-format
msgid "Plugin %s disabled."
msgstr "Plugin %s deaktiviert."
#: ../../mod/admin.php:810
#, php-format
msgid "Plugin %s enabled."
msgstr "Plugin %s aktiviert."
#: ../../mod/admin.php:820 ../../mod/admin.php:1023
msgid "Disable"
msgstr "Ausschalten"
#: ../../mod/admin.php:822 ../../mod/admin.php:1025
msgid "Enable"
msgstr "Einschalten"
#: ../../mod/admin.php:845 ../../mod/admin.php:1053
msgid "Toggle"
msgstr "Umschalten"
#: ../../mod/admin.php:846 ../../mod/admin.php:1054 ../../mod/newmember.php:22
#: ../../mod/settings.php:74 ../../mod/uexport.php:48
#: ../../view/theme/diabook/theme.php:537
#: ../../view/theme/diabook/theme.php:658 ../../include/nav.php:167
msgid "Settings"
msgstr "Einstellungen"
#: ../../mod/admin.php:853 ../../mod/admin.php:1063
msgid "Author: "
msgstr "Autor:"
#: ../../mod/admin.php:854 ../../mod/admin.php:1064
msgid "Maintainer: "
msgstr "Betreuer:"
#: ../../mod/admin.php:983
msgid "No themes found."
msgstr "Keine Themen gefunden."
#: ../../mod/admin.php:1045
msgid "Screenshot"
msgstr "Bildschirmfoto"
#: ../../mod/admin.php:1091
msgid "[Experimental]"
msgstr "[Experimentell]"
#: ../../mod/admin.php:1092
msgid "[Unsupported]"
msgstr "[Nicht unterstützt]"
#: ../../mod/admin.php:1119
msgid "Log settings updated."
msgstr "Protokolleinstellungen aktualisiert."
#: ../../mod/admin.php:1175
msgid "Clear"
msgstr "löschen"
#: ../../mod/admin.php:1181
msgid "Debugging"
msgstr "Protokoll führen"
#: ../../mod/admin.php:1182
msgid "Log file"
msgstr "Protokolldatei"
#: ../../mod/admin.php:1182
msgid ""
"Must be writable by web server. Relative to your Friendica top-level "
"directory."
msgstr "Webserver muss Schreibrechte besitzen. Abhängig vom Friendica-Installationsverzeichnis."
#: ../../mod/admin.php:1183
msgid "Log level"
msgstr "Protokoll-Level"
#: ../../mod/admin.php:1232 ../../mod/contacts.php:409
msgid "Update now"
msgstr "Jetzt aktualisieren"
#: ../../mod/admin.php:1233
msgid "Close"
msgstr "Schließen"
#: ../../mod/admin.php:1239
msgid "FTP Host"
msgstr "FTP Host"
#: ../../mod/admin.php:1240
msgid "FTP Path"
msgstr "FTP Pfad"
#: ../../mod/admin.php:1241
msgid "FTP User"
msgstr "FTP Nutzername"
#: ../../mod/admin.php:1242
msgid "FTP Password"
msgstr "FTP Passwort"
#: ../../mod/message.php:9 ../../include/nav.php:159
msgid "New Message"
msgstr "Neue Nachricht"
#: ../../mod/message.php:63 ../../mod/wallmessage.php:56
msgid "No recipient selected."
msgstr "Kein Empfänger gewählt."
#: ../../mod/message.php:67
msgid "Unable to locate contact information."
msgstr "Konnte die Kontaktinformationen nicht finden."
#: ../../mod/message.php:70 ../../mod/wallmessage.php:62
msgid "Message could not be sent."
msgstr "Nachricht konnte nicht gesendet werden."
#: ../../mod/message.php:73 ../../mod/wallmessage.php:65
msgid "Message collection failure."
msgstr "Konnte Nachrichten nicht abrufen."
#: ../../mod/message.php:76 ../../mod/wallmessage.php:68
msgid "Message sent."
msgstr "Nachricht gesendet."
#: ../../mod/message.php:207
msgid "Do you really want to delete this message?"
msgstr "Möchtest du wirklich diese Nachricht löschen?"
#: ../../mod/message.php:227
msgid "Message deleted."
msgstr "Nachricht gelöscht."
#: ../../mod/message.php:258
msgid "Conversation removed."
msgstr "Unterhaltung gelöscht."
#: ../../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:958 ../../include/conversation.php:976
msgid "Please enter a link URL:"
msgstr "Bitte gib die URL des Links ein:"
#: ../../mod/message.php:319 ../../mod/wallmessage.php:142
msgid "Send Private Message"
msgstr "Private Nachricht senden"
#: ../../mod/message.php:320 ../../mod/message.php:553
#: ../../mod/wallmessage.php:144
msgid "To:"
msgstr "An:"
#: ../../mod/message.php:325 ../../mod/message.php:555
#: ../../mod/wallmessage.php:145
msgid "Subject:"
msgstr "Betreff:"
#: ../../mod/message.php:329 ../../mod/message.php:558
#: ../../mod/wallmessage.php:151 ../../mod/invite.php:134
msgid "Your message:"
msgstr "Deine Nachricht:"
#: ../../mod/message.php:332 ../../mod/message.php:562
#: ../../mod/editpost.php:110 ../../mod/wallmessage.php:154
#: ../../include/conversation.php:1042
msgid "Upload photo"
msgstr "Foto hochladen"
#: ../../mod/message.php:333 ../../mod/message.php:563
#: ../../mod/editpost.php:114 ../../mod/wallmessage.php:155
#: ../../include/conversation.php:1046
msgid "Insert web link"
msgstr "Einen Link einfügen"
#: ../../mod/message.php:371
msgid "No messages."
msgstr "Keine Nachrichten."
#: ../../mod/message.php:378
#, php-format
msgid "Unknown sender - %s"
msgstr "'Unbekannter Absender - %s"
#: ../../mod/message.php:381
#, php-format
msgid "You and %s"
msgstr "Du und %s"
#: ../../mod/message.php:384
#, php-format
msgid "%s and You"
msgstr "%s und du"
#: ../../mod/message.php:405 ../../mod/message.php:546
msgid "Delete conversation"
msgstr "Unterhaltung löschen"
#: ../../mod/message.php:408
msgid "D, d M Y - g:i A"
msgstr "D, d. M Y - g:i A"
#: ../../mod/message.php:411
#, php-format
msgid "%d message"
msgid_plural "%d messages"
msgstr[0] "%d Nachricht"
msgstr[1] "%d Nachrichten"
#: ../../mod/message.php:450
msgid "Message not available."
msgstr "Nachricht nicht verfügbar."
#: ../../mod/message.php:520
msgid "Delete message"
msgstr "Nachricht löschen"
#: ../../mod/message.php:548
msgid ""
"No secure communications available. You <strong>may</strong> be able to "
"respond from the sender's profile page."
msgstr "Sichere Kommunikation ist nicht verfügbar. <strong>Eventuell</strong> kannst du auf der Profilseite des Absenders antworten."
#: ../../mod/message.php:552
msgid "Send Reply"
msgstr "Antwort senden"
#: ../../mod/editpost.php:17 ../../mod/editpost.php:27
msgid "Item not found"
msgstr "Beitrag nicht gefunden"
#: ../../mod/editpost.php:39
msgid "Edit post"
msgstr "Beitrag bearbeiten"
#: ../../mod/editpost.php:111 ../../include/conversation.php:1043
msgid "upload photo"
msgstr "Bild hochladen"
#: ../../mod/editpost.php:112 ../../include/conversation.php:1044
msgid "Attach file"
msgstr "Datei anhängen"
#: ../../mod/editpost.php:113 ../../include/conversation.php:1045
msgid "attach file"
msgstr "Datei anhängen"
#: ../../mod/editpost.php:115 ../../include/conversation.php:1047
msgid "web link"
msgstr "Weblink"
#: ../../mod/editpost.php:116 ../../include/conversation.php:1048
msgid "Insert video link"
msgstr "Video-Adresse einfügen"
#: ../../mod/editpost.php:117 ../../include/conversation.php:1049
msgid "video link"
msgstr "Video-Link"
#: ../../mod/editpost.php:118 ../../include/conversation.php:1050
msgid "Insert audio link"
msgstr "Audio-Adresse einfügen"
#: ../../mod/editpost.php:119 ../../include/conversation.php:1051
msgid "audio link"
msgstr "Audio-Link"
#: ../../mod/editpost.php:120 ../../include/conversation.php:1052
msgid "Set your location"
msgstr "Deinen Standort festlegen"
#: ../../mod/editpost.php:121 ../../include/conversation.php:1053
msgid "set location"
msgstr "Ort setzen"
#: ../../mod/editpost.php:122 ../../include/conversation.php:1054
msgid "Clear browser location"
msgstr "Browser-Standort leeren"
#: ../../mod/editpost.php:123 ../../include/conversation.php:1055
msgid "clear location"
msgstr "Ort löschen"
#: ../../mod/editpost.php:125 ../../include/conversation.php:1061
msgid "Permission settings"
msgstr "Berechtigungseinstellungen"
#: ../../mod/editpost.php:133 ../../include/conversation.php:1070
msgid "CC: email addresses"
msgstr "Cc: E-Mail-Addressen"
#: ../../mod/editpost.php:134 ../../include/conversation.php:1071
msgid "Public post"
msgstr "Öffentlicher Beitrag"
#: ../../mod/editpost.php:137 ../../include/conversation.php:1057
msgid "Set title"
msgstr "Titel setzen"
#: ../../mod/editpost.php:139 ../../include/conversation.php:1059
msgid "Categories (comma-separated list)"
msgstr "Kategorien (kommasepariert)"
#: ../../mod/editpost.php:140 ../../include/conversation.php:1073
msgid "Example: bob@example.com, mary@example.com"
msgstr "Z.B.: bob@example.com, mary@example.com"
#: ../../mod/dfrn_confirm.php:62 ../../mod/profiles.php:18
#: ../../mod/profiles.php:133 ../../mod/profiles.php:160
#: ../../mod/profiles.php:579
msgid "Profile not found."
msgstr "Profil nicht gefunden."
#: ../../mod/dfrn_confirm.php:119
msgid ""
"This may occasionally happen if contact was requested by both persons and it"
" has already been approved."
msgstr "Das kann passieren, wenn sich zwei Kontakte gegenseitig eingeladen haben und bereits einer angenommen wurde."
#: ../../mod/dfrn_confirm.php:237
msgid "Response from remote site was not understood."
msgstr "Antwort der Gegenstelle unverständlich."
#: ../../mod/dfrn_confirm.php:246
msgid "Unexpected response from remote site: "
msgstr "Unerwartete Antwort der Gegenstelle: "
#: ../../mod/dfrn_confirm.php:254
msgid "Confirmation completed successfully."
msgstr "Bestätigung erfolgreich abgeschlossen."
#: ../../mod/dfrn_confirm.php:256 ../../mod/dfrn_confirm.php:270
#: ../../mod/dfrn_confirm.php:277
msgid "Remote site reported: "
msgstr "Gegenstelle meldet: "
#: ../../mod/dfrn_confirm.php:268
msgid "Temporary failure. Please wait and try again."
msgstr "Zeitweiser Fehler. Bitte warte einige Momente und versuche es dann noch einmal."
#: ../../mod/dfrn_confirm.php:275
msgid "Introduction failed or was revoked."
msgstr "Kontaktanfrage schlug fehl oder wurde zurückgezogen."
#: ../../mod/dfrn_confirm.php:420
msgid "Unable to set contact photo."
msgstr "Konnte das Bild des Kontakts nicht speichern."
#: ../../mod/dfrn_confirm.php:477 ../../include/diaspora.php:621
#: ../../include/conversation.php:172
#, php-format
msgid "%1$s is now friends with %2$s"
msgstr "%1$s ist nun mit %2$s befreundet"
#: ../../mod/dfrn_confirm.php:562
#, php-format
msgid "No user record found for '%s' "
msgstr "Für '%s' wurde kein Nutzer gefunden"
#: ../../mod/dfrn_confirm.php:572
msgid "Our site encryption key is apparently messed up."
msgstr "Der Verschlüsselungsschlüssel unserer Seite ist anscheinend nicht in Ordnung."
#: ../../mod/dfrn_confirm.php:583
msgid "Empty site URL was provided or URL could not be decrypted by us."
msgstr "Leere URL für die Seite erhalten oder die URL konnte nicht entschlüsselt werden."
#: ../../mod/dfrn_confirm.php:604
msgid "Contact record was not found for you on our site."
msgstr "Für diesen Kontakt wurde auf unserer Seite kein Eintrag gefunden."
#: ../../mod/dfrn_confirm.php:618
#, php-format
msgid "Site public key not available in contact record for URL %s."
msgstr "Die Kontaktdaten für URL %s enthalten keinen Public Key für den Server."
#: ../../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 "Die ID, die uns dein System angeboten hat, ist hier bereits vergeben. Bitte versuche es noch einmal."
#: ../../mod/dfrn_confirm.php:649
msgid "Unable to set your contact credentials on our system."
msgstr "Deine Kontaktreferenzen konnten nicht in unserem System gespeichert werden."
#: ../../mod/dfrn_confirm.php:716
msgid "Unable to update your contact profile details on our system"
msgstr "Die Updates für dein Profil konnten nicht gespeichert werden"
#: ../../mod/dfrn_confirm.php:751
#, php-format
msgid "Connection accepted at %s"
msgstr "Auf %s wurde die Verbindung akzeptiert"
#: ../../mod/dfrn_confirm.php:800
#, php-format
msgid "%1$s has joined %2$s"
msgstr "%1$s ist %2$s beigetreten"
#: ../../mod/events.php:66
msgid "Event title and start time are required."
msgstr "Der Veranstaltungstitel und die Anfangszeit müssen angegeben werden."
#: ../../mod/events.php:291
msgid "l, F j"
msgstr "l, F j"
#: ../../mod/events.php:313
msgid "Edit event"
msgstr "Veranstaltung bearbeiten"
#: ../../mod/events.php:335 ../../include/text.php:1304
msgid "link to source"
msgstr "Link zum Originalbeitrag"
#: ../../mod/events.php:370 ../../view/theme/diabook/theme.php:91
#: ../../boot.php:1885 ../../include/nav.php:79
msgid "Events"
msgstr "Veranstaltungen"
#: ../../mod/events.php:371
msgid "Create New Event"
msgstr "Neue Veranstaltung erstellen"
#: ../../mod/events.php:372
msgid "Previous"
msgstr "Vorherige"
#: ../../mod/events.php:373 ../../mod/install.php:207
msgid "Next"
msgstr "Nächste"
#: ../../mod/events.php:446
msgid "hour:minute"
msgstr "Stunde:Minute"
#: ../../mod/events.php:456
msgid "Event details"
msgstr "Veranstaltungsdetails"
#: ../../mod/events.php:457
#, php-format
msgid "Format is %s %s. Starting date and Title are required."
msgstr "Das Format ist %s %s. Beginnzeitpunkt und Titel werden benötigt."
#: ../../mod/events.php:459
msgid "Event Starts:"
msgstr "Veranstaltungsbeginn:"
#: ../../mod/events.php:459 ../../mod/events.php:473
msgid "Required"
msgstr "Benötigt"
#: ../../mod/events.php:462
msgid "Finish date/time is not known or not relevant"
msgstr "Enddatum/-zeit ist nicht bekannt oder nicht relevant"
#: ../../mod/events.php:464
msgid "Event Finishes:"
msgstr "Veranstaltungsende:"
#: ../../mod/events.php:467
msgid "Adjust for viewer timezone"
msgstr "An Zeitzone des Betrachters anpassen"
#: ../../mod/events.php:469
msgid "Description:"
msgstr "Beschreibung"
#: ../../mod/events.php:471 ../../mod/directory.php:134 ../../boot.php:1406
#: ../../include/event.php:40 ../../include/bb2diaspora.php:415
msgid "Location:"
msgstr "Ort:"
#: ../../mod/events.php:473
msgid "Title:"
msgstr "Titel:"
#: ../../mod/events.php:475
msgid "Share this event"
msgstr "Veranstaltung teilen"
#: ../../mod/fbrowser.php:25 ../../view/theme/diabook/theme.php:90
#: ../../boot.php:1875 ../../include/nav.php:78
msgid "Photos"
msgstr "Bilder"
#: ../../mod/fbrowser.php:113
msgid "Files"
msgstr "Dateien"
#: ../../mod/home.php:34
#, php-format
msgid "Welcome to %s"
msgstr "Willkommen zu %s"
#: ../../mod/lockview.php:31 ../../mod/lockview.php:39
msgid "Remote privacy information not available."
msgstr "Entfernte Privatsphäreneinstellungen nicht verfügbar."
#: ../../mod/lockview.php:48
msgid "Visible to:"
msgstr "Sichtbar für:"
#: ../../mod/wallmessage.php:42 ../../mod/wallmessage.php:112
#, php-format
msgid "Number of daily wall messages for %s exceeded. Message failed."
msgstr "Maximale Anzahl der täglichen Pinnwand Nachrichten für %s ist überschritten. Zustellung fehlgeschlagen."
#: ../../mod/wallmessage.php:59
msgid "Unable to check your home location."
msgstr "Konnte deinen Heimatort nicht bestimmen."
#: ../../mod/wallmessage.php:86 ../../mod/wallmessage.php:95
msgid "No recipient."
msgstr "Kein Empfänger."
#: ../../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 "Wenn du möchtest, dass %s dir antworten kann, überprüfe deine Privatsphären-Einstellungen und erlaube private Nachrichten von unbekannten Absendern."
#: ../../mod/nogroup.php:40 ../../mod/contacts.php:395
#: ../../mod/contacts.php:585 ../../mod/viewcontacts.php:62
#, php-format
msgid "Visit %s's profile [%s]"
msgstr "Besuche %ss Profil [%s]"
#: ../../mod/nogroup.php:41 ../../mod/contacts.php:586
msgid "Edit contact"
msgstr "Kontakt bearbeiten"
#: ../../mod/nogroup.php:59
msgid "Contacts who are not members of a group"
msgstr "Kontakte, die keiner Gruppe zugewiesen sind"
#: ../../mod/friendica.php:55
msgid "This is Friendica, version"
msgstr "Dies ist Friendica, Version"
#: ../../mod/friendica.php:56
msgid "running at web location"
msgstr "die unter folgender Webadresse zu finden ist"
#: ../../mod/friendica.php:58
msgid ""
"Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn "
"more about the Friendica project."
msgstr "Bitte besuche <a href=\"http://friendica.com\">Friendica.com</a>, um mehr über das Friendica Projekt zu erfahren."
#: ../../mod/friendica.php:60
msgid "Bug reports and issues: please visit"
msgstr "Probleme oder Fehler gefunden? Bitte besuche"
#: ../../mod/friendica.php:61
msgid ""
"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - "
"dot com"
msgstr "Vorschläge, Lob, Spenden usw.: E-Mail an \"Info\" at Friendica - dot com"
#: ../../mod/friendica.php:75
msgid "Installed plugins/addons/apps:"
msgstr "Installierte Plugins/Erweiterungen/Apps"
#: ../../mod/friendica.php:88
msgid "No installed plugins/addons/apps"
msgstr "Keine Plugins/Erweiterungen/Apps installiert"
#: ../../mod/removeme.php:45 ../../mod/removeme.php:48
msgid "Remove My Account"
msgstr "Konto löschen"
#: ../../mod/removeme.php:46
msgid ""
"This will completely remove your account. Once this has been done it is not "
"recoverable."
msgstr "Dein Konto wird endgültig gelöscht. Es gibt keine Möglichkeit, es wiederherzustellen."
#: ../../mod/removeme.php:47
msgid "Please enter your password for verification:"
msgstr "Bitte gib dein Passwort zur Verifikation ein:"
#: ../../mod/wall_upload.php:90 ../../mod/profile_photo.php:144
#, php-format
msgid "Image exceeds size limit of %d"
msgstr "Bildgröße überschreitet das Limit von %d"
#: ../../mod/wall_upload.php:112 ../../mod/photos.php:801
#: ../../mod/profile_photo.php:153
msgid "Unable to process image."
msgstr "Konnte das Bild nicht bearbeiten."
#: ../../mod/wall_upload.php:135 ../../mod/wall_upload.php:144
#: ../../mod/wall_upload.php:151 ../../mod/item.php:443
#: ../../include/message.php:144
msgid "Wall Photos"
msgstr "Pinnwand-Bilder"
#: ../../mod/wall_upload.php:138 ../../mod/photos.php:828
#: ../../mod/profile_photo.php:301
msgid "Image upload failed."
msgstr "Hochladen des Bildes gescheitert."
#: ../../mod/api.php:76 ../../mod/api.php:102
msgid "Authorize application connection"
msgstr "Verbindung der Applikation autorisieren"
#: ../../mod/api.php:77
msgid "Return to your app and insert this Securty Code:"
msgstr "Gehe zu deiner Anwendung zurück und trage dort folgenden Sicherheitscode ein:"
#: ../../mod/api.php:89
msgid "Please login to continue."
msgstr "Bitte melde dich an um fortzufahren."
#: ../../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 "Möchtest du dieser Anwendung den Zugriff auf deine Beiträge und Kontakte, sowie das Erstellen neuer Beiträge in deinem Namen gestatten?"
#: ../../mod/tagger.php:95 ../../include/conversation.php:266
#, php-format
msgid "%1$s tagged %2$s's %3$s with %4$s"
msgstr "%1$s hat %2$ss %3$s mit %4$s getaggt"
#: ../../mod/photos.php:51 ../../boot.php:1878
msgid "Photo Albums"
msgstr "Fotoalben"
#: ../../mod/photos.php:59 ../../mod/photos.php:154 ../../mod/photos.php:1058
#: ../../mod/photos.php:1183 ../../mod/photos.php:1206
#: ../../mod/photos.php:1736 ../../mod/photos.php:1748
#: ../../view/theme/diabook/theme.php:492
msgid "Contact Photos"
msgstr "Kontaktbilder"
#: ../../mod/photos.php:66 ../../mod/photos.php:1222 ../../mod/photos.php:1795
msgid "Upload New Photos"
msgstr "Neue Fotos hochladen"
#: ../../mod/photos.php:79 ../../mod/settings.php:23
msgid "everybody"
msgstr "jeder"
#: ../../mod/photos.php:143
msgid "Contact information unavailable"
msgstr "Kontaktinformationen nicht verfügbar"
#: ../../mod/photos.php:154 ../../mod/photos.php:725 ../../mod/photos.php:1183
#: ../../mod/photos.php:1206 ../../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 ../../view/theme/diabook/theme.php:493
#: ../../include/user.php:325 ../../include/user.php:332
#: ../../include/user.php:339
msgid "Profile Photos"
msgstr "Profilbilder"
#: ../../mod/photos.php:164
msgid "Album not found."
msgstr "Album nicht gefunden."
#: ../../mod/photos.php:187 ../../mod/photos.php:199 ../../mod/photos.php:1200
msgid "Delete Album"
msgstr "Album löschen"
#: ../../mod/photos.php:197
msgid "Do you really want to delete this photo album and all its photos?"
msgstr "Möchtest du wirklich dieses Foto-Album und all seine Foto löschen?"
#: ../../mod/photos.php:276 ../../mod/photos.php:287 ../../mod/photos.php:1502
msgid "Delete Photo"
msgstr "Foto löschen"
#: ../../mod/photos.php:285
msgid "Do you really want to delete this photo?"
msgstr "Möchtest du wirklich dieses Foto löschen?"
#: ../../mod/photos.php:656
#, php-format
msgid "%1$s was tagged in %2$s by %3$s"
msgstr "%1$s wurde von %3$s in %2$s getaggt"
#: ../../mod/photos.php:656
msgid "a photo"
msgstr "einem Foto"
#: ../../mod/photos.php:761
msgid "Image exceeds size limit of "
msgstr "Die Bildgröße übersteigt das Limit von "
#: ../../mod/photos.php:769
msgid "Image file is empty."
msgstr "Bilddatei ist leer."
#: ../../mod/photos.php:924
msgid "No photos selected"
msgstr "Keine Bilder ausgewählt"
#: ../../mod/photos.php:1025
msgid "Access to this item is restricted."
msgstr "Zugriff zu diesem Eintrag wurde eingeschränkt."
#: ../../mod/photos.php:1088
#, php-format
msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."
msgstr "Du verwendest %1$.2f Mbyte von %2$.2f Mbyte des Foto-Speichers."
#: ../../mod/photos.php:1123
msgid "Upload Photos"
msgstr "Bilder hochladen"
#: ../../mod/photos.php:1127 ../../mod/photos.php:1195
msgid "New album name: "
msgstr "Name des neuen Albums: "
#: ../../mod/photos.php:1128
msgid "or existing album name: "
msgstr "oder existierender Albumname: "
#: ../../mod/photos.php:1129
msgid "Do not show a status post for this upload"
msgstr "Keine Status-Mitteilung für diesen Beitrag anzeigen"
#: ../../mod/photos.php:1131 ../../mod/photos.php:1497
msgid "Permissions"
msgstr "Berechtigungen"
#: ../../mod/photos.php:1140 ../../mod/photos.php:1506
#: ../../mod/settings.php:1070
msgid "Show to Groups"
msgstr "Zeige den Gruppen"
#: ../../mod/photos.php:1141 ../../mod/photos.php:1507
#: ../../mod/settings.php:1071
msgid "Show to Contacts"
msgstr "Zeige den Kontakten"
#: ../../mod/photos.php:1142
msgid "Private Photo"
msgstr "Privates Foto"
#: ../../mod/photos.php:1143
msgid "Public Photo"
msgstr "Öffentliches Foto"
#: ../../mod/photos.php:1210
msgid "Edit Album"
msgstr "Album bearbeiten"
#: ../../mod/photos.php:1216
msgid "Show Newest First"
msgstr "Zeige neueste zuerst"
#: ../../mod/photos.php:1218
msgid "Show Oldest First"
msgstr "Zeige älteste zuerst"
#: ../../mod/photos.php:1251 ../../mod/photos.php:1778
msgid "View Photo"
msgstr "Foto betrachten"
#: ../../mod/photos.php:1286
msgid "Permission denied. Access to this item may be restricted."
msgstr "Zugriff verweigert. Zugriff zu diesem Eintrag könnte eingeschränkt sein."
#: ../../mod/photos.php:1288
msgid "Photo not available"
msgstr "Foto nicht verfügbar"
#: ../../mod/photos.php:1344
msgid "View photo"
msgstr "Fotos ansehen"
#: ../../mod/photos.php:1344
msgid "Edit photo"
msgstr "Foto bearbeiten"
#: ../../mod/photos.php:1345
msgid "Use as profile photo"
msgstr "Als Profilbild verwenden"
#: ../../mod/photos.php:1370
msgid "View Full Size"
msgstr "Betrachte Originalgröße"
#: ../../mod/photos.php:1444
msgid "Tags: "
msgstr "Tags: "
#: ../../mod/photos.php:1447
msgid "[Remove any tag]"
msgstr "[Tag entfernen]"
#: ../../mod/photos.php:1487
msgid "Rotate CW (right)"
msgstr "Drehen US (rechts)"
#: ../../mod/photos.php:1488
msgid "Rotate CCW (left)"
msgstr "Drehen EUS (links)"
#: ../../mod/photos.php:1490
msgid "New album name"
msgstr "Name des neuen Albums"
#: ../../mod/photos.php:1493
msgid "Caption"
msgstr "Bildunterschrift"
#: ../../mod/photos.php:1495
msgid "Add a Tag"
msgstr "Tag hinzufügen"
#: ../../mod/photos.php:1499
msgid ""
"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
msgstr "Beispiel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
#: ../../mod/photos.php:1508
msgid "Private photo"
msgstr "Privates Foto"
#: ../../mod/photos.php:1509
msgid "Public photo"
msgstr "Öffentliches Foto"
#: ../../mod/photos.php:1531 ../../include/conversation.php:1041
msgid "Share"
msgstr "Teilen"
#: ../../mod/photos.php:1784
msgid "View Album"
msgstr "Album betrachten"
#: ../../mod/photos.php:1793
msgid "Recent Photos"
msgstr "Neueste Fotos"
#: ../../mod/hcard.php:10
msgid "No profile"
msgstr "Kein Profil"
#: ../../mod/register.php:91 ../../mod/regmod.php:54
#, php-format
msgid "Registration details for %s"
msgstr "Details der Registration von %s"
#: ../../mod/register.php:99
msgid ""
"Registration successful. Please check your email for further instructions."
msgstr "Registrierung erfolgreich. Eine E-Mail mit weiteren Anweisungen wurde an dich gesendet."
#: ../../mod/register.php:103
msgid "Failed to send email message. Here is the message that failed."
msgstr "Konnte die E-Mail nicht versenden. Hier ist die Nachricht, die nicht gesendet werden konnte."
#: ../../mod/register.php:108
msgid "Your registration can not be processed."
msgstr "Deine Registrierung konnte nicht verarbeitet werden."
#: ../../mod/register.php:145
#, php-format
msgid "Registration request at %s"
msgstr "Registrierungsanfrage auf %s"
#: ../../mod/register.php:154
msgid "Your registration is pending approval by the site owner."
msgstr "Deine Registrierung muss noch vom Betreiber der Seite freigegeben werden."
#: ../../mod/register.php:192 ../../mod/uimport.php:50
msgid ""
"This site has exceeded the number of allowed daily account registrations. "
"Please try again tomorrow."
msgstr "Die maximale Anzahl täglicher Registrierungen auf dieser Seite wurde überschritten. Bitte versuche es morgen noch einmal."
#: ../../mod/register.php:220
msgid ""
"You may (optionally) fill in this form via OpenID by supplying your OpenID "
"and clicking 'Register'."
msgstr "Du kannst dieses Formular auch (optional) mit deiner OpenID ausfüllen, indem du deine OpenID angibst und 'Registrieren' klickst."
#: ../../mod/register.php:221
msgid ""
"If you are not familiar with OpenID, please leave that field blank and fill "
"in the rest of the items."
msgstr "Wenn du nicht mit OpenID vertraut bist, lass dieses Feld bitte leer und fülle die restlichen Felder aus."
#: ../../mod/register.php:222
msgid "Your OpenID (optional): "
msgstr "Deine OpenID (optional): "
#: ../../mod/register.php:236
msgid "Include your profile in member directory?"
msgstr "Soll dein Profil im Nutzerverzeichnis angezeigt werden?"
#: ../../mod/register.php:257
msgid "Membership on this site is by invitation only."
msgstr "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung möglich."
#: ../../mod/register.php:258
msgid "Your invitation ID: "
msgstr "ID deiner Einladung: "
#: ../../mod/register.php:269
msgid "Your Full Name (e.g. Joe Smith): "
msgstr "Vollständiger Name (z.B. Max Mustermann): "
#: ../../mod/register.php:270
msgid "Your Email Address: "
msgstr "Deine E-Mail-Adresse: "
#: ../../mod/register.php:271
msgid ""
"Choose a profile nickname. This must begin with a text character. Your "
"profile address on this site will then be "
"'<strong>nickname@$sitename</strong>'."
msgstr "Wähle einen Spitznamen für dein Profil. Dieser muss mit einem Buchstaben beginnen. Die Adresse deines Profils auf dieser Seite wird '<strong>spitzname@$sitename</strong>' sein."
#: ../../mod/register.php:272
msgid "Choose a nickname: "
msgstr "Spitznamen wählen: "
#: ../../mod/register.php:275 ../../boot.php:1033 ../../include/nav.php:108
msgid "Register"
msgstr "Registrieren"
#: ../../mod/lostpass.php:17
msgid "No valid account found."
msgstr "Kein gültiges Konto gefunden."
#: ../../mod/lostpass.php:33
msgid "Password reset request issued. Check your email."
msgstr "Zurücksetzen des Passworts eingeleitet. Bitte überprüfe deine E-Mail."
#: ../../mod/lostpass.php:44
#, php-format
msgid "Password reset requested at %s"
msgstr "Anfrage zum Zurücksetzen des Passworts auf %s erhalten"
#: ../../mod/lostpass.php:66
msgid ""
"Request could not be verified. (You may have previously submitted it.) "
"Password reset failed."
msgstr "Anfrage konnte nicht verifiziert werden. (Eventuell hast du bereits eine ähnliche Anfrage gestellt.) Zurücksetzen des Passworts gescheitert."
#: ../../mod/lostpass.php:84 ../../boot.php:1072
msgid "Password Reset"
msgstr "Passwort zurücksetzen"
#: ../../mod/lostpass.php:85
msgid "Your password has been reset as requested."
msgstr "Dein Passwort wurde wie gewünscht zurückgesetzt."
#: ../../mod/lostpass.php:86
msgid "Your new password is"
msgstr "Dein neues Passwort lautet"
#: ../../mod/lostpass.php:87
msgid "Save or copy your new password - and then"
msgstr "Speichere oder kopiere dein neues Passwort - und dann"
#: ../../mod/lostpass.php:88
msgid "click here to login"
msgstr "hier klicken, um dich anzumelden"
#: ../../mod/lostpass.php:89
msgid ""
"Your password may be changed from the <em>Settings</em> page after "
"successful login."
msgstr "Du kannst das Passwort in den <em>Einstellungen</em> ändern, sobald du dich erfolgreich angemeldet hast."
#: ../../mod/lostpass.php:107
#, php-format
msgid "Your password has been changed at %s"
msgstr "Auf %s wurde dein Passwort geändert"
#: ../../mod/lostpass.php:122
msgid "Forgot your Password?"
msgstr "Hast du dein Passwort vergessen?"
#: ../../mod/lostpass.php:123
msgid ""
"Enter your email address and submit to have your password reset. Then check "
"your email for further instructions."
msgstr "Gib deine E-Mail-Adresse an und fordere ein neues Passwort an. Es werden dir dann weitere Informationen per Mail zugesendet."
#: ../../mod/lostpass.php:124
msgid "Nickname or Email: "
msgstr "Spitzname oder E-Mail:"
#: ../../mod/lostpass.php:125
msgid "Reset"
msgstr "Zurücksetzen"
#: ../../mod/maintenance.php:5
msgid "System down for maintenance"
msgstr "System zur Wartung abgeschaltet"
#: ../../mod/attach.php:8
msgid "Item not available."
msgstr "Beitrag nicht verfügbar."
#: ../../mod/attach.php:20
msgid "Item was not found."
msgstr "Beitrag konnte nicht gefunden werden."
#: ../../mod/apps.php:4
msgid "Applications"
msgstr "Anwendungen"
#: ../../mod/apps.php:7
msgid "No installed applications."
msgstr "Keine Applikationen installiert."
#: ../../mod/help.php:79
msgid "Help:"
msgstr "Hilfe:"
#: ../../mod/help.php:84 ../../include/nav.php:113
msgid "Help"
msgstr "Hilfe"
#: ../../mod/contacts.php:85 ../../mod/contacts.php:165
msgid "Could not access contact record."
msgstr "Konnte nicht auf die Kontaktdaten zugreifen."
#: ../../mod/contacts.php:99
msgid "Could not locate selected profile."
msgstr "Konnte das ausgewählte Profil nicht finden."
#: ../../mod/contacts.php:122
msgid "Contact updated."
msgstr "Kontakt aktualisiert."
#: ../../mod/contacts.php:187
msgid "Contact has been blocked"
msgstr "Kontakt wurde blockiert"
#: ../../mod/contacts.php:187
msgid "Contact has been unblocked"
msgstr "Kontakt wurde wieder freigegeben"
#: ../../mod/contacts.php:201
msgid "Contact has been ignored"
msgstr "Kontakt wurde ignoriert"
#: ../../mod/contacts.php:201
msgid "Contact has been unignored"
msgstr "Kontakt wird nicht mehr ignoriert"
#: ../../mod/contacts.php:220
msgid "Contact has been archived"
msgstr "Kontakt wurde archiviert"
#: ../../mod/contacts.php:220
msgid "Contact has been unarchived"
msgstr "Kontakt wurde aus dem Archiv geholt"
#: ../../mod/contacts.php:244
msgid "Do you really want to delete this contact?"
msgstr "Möchtest du wirklich diesen Kontakt löschen?"
#: ../../mod/contacts.php:263
msgid "Contact has been removed."
msgstr "Kontakt wurde entfernt."
#: ../../mod/contacts.php:301
#, php-format
msgid "You are mutual friends with %s"
msgstr "Du hast mit %s eine beidseitige Freundschaft"
#: ../../mod/contacts.php:305
#, php-format
msgid "You are sharing with %s"
msgstr "Du teilst mit %s"
#: ../../mod/contacts.php:310
#, php-format
msgid "%s is sharing with you"
msgstr "%s teilt mit Dir"
#: ../../mod/contacts.php:327
msgid "Private communications are not available for this contact."
msgstr "Private Kommunikation ist für diesen Kontakt nicht verfügbar."
#: ../../mod/contacts.php:330
msgid "Never"
msgstr "Niemals"
#: ../../mod/contacts.php:334
msgid "(Update was successful)"
msgstr "(Aktualisierung war erfolgreich)"
#: ../../mod/contacts.php:334
msgid "(Update was not successful)"
msgstr "(Aktualisierung war nicht erfolgreich)"
#: ../../mod/contacts.php:336
msgid "Suggest friends"
msgstr "Kontakte vorschlagen"
#: ../../mod/contacts.php:340
#, php-format
msgid "Network type: %s"
msgstr "Netzwerktyp: %s"
#: ../../mod/contacts.php:343 ../../include/contact_widgets.php:199
#, php-format
msgid "%d contact in common"
msgid_plural "%d contacts in common"
msgstr[0] "%d gemeinsamer Kontakt"
msgstr[1] "%d gemeinsame Kontakte"
#: ../../mod/contacts.php:348
msgid "View all contacts"
msgstr "Alle Kontakte anzeigen"
#: ../../mod/contacts.php:356
msgid "Toggle Blocked status"
msgstr "Geblockt-Status ein-/ausschalten"
#: ../../mod/contacts.php:359 ../../mod/contacts.php:413
msgid "Unignore"
msgstr "Ignorieren aufheben"
#: ../../mod/contacts.php:362
msgid "Toggle Ignored status"
msgstr "Ignoriert-Status ein-/ausschalten"
#: ../../mod/contacts.php:366
msgid "Unarchive"
msgstr "Aus Archiv zurückholen"
#: ../../mod/contacts.php:366
msgid "Archive"
msgstr "Archivieren"
#: ../../mod/contacts.php:369
msgid "Toggle Archive status"
msgstr "Archiviert-Status ein-/ausschalten"
#: ../../mod/contacts.php:372
msgid "Repair"
msgstr "Reparieren"
#: ../../mod/contacts.php:375
msgid "Advanced Contact Settings"
msgstr "Fortgeschrittene Kontakteinstellungen"
#: ../../mod/contacts.php:381
msgid "Communications lost with this contact!"
msgstr "Verbindungen mit diesem Kontakt verloren!"
#: ../../mod/contacts.php:384
msgid "Contact Editor"
msgstr "Kontakt Editor"
#: ../../mod/contacts.php:387
msgid "Profile Visibility"
msgstr "Profil-Sichtbarkeit"
#: ../../mod/contacts.php:388
#, php-format
msgid ""
"Please choose the profile you would like to display to %s when viewing your "
"profile securely."
msgstr "Bitte wähle eines deiner Profile das angezeigt werden soll, wenn %s dein Profil aufruft."
#: ../../mod/contacts.php:389
msgid "Contact Information / Notes"
msgstr "Kontakt Informationen / Notizen"
#: ../../mod/contacts.php:390
msgid "Edit contact notes"
msgstr "Notizen zum Kontakt bearbeiten"
#: ../../mod/contacts.php:396
msgid "Block/Unblock contact"
msgstr "Kontakt blockieren/freischalten"
#: ../../mod/contacts.php:397
msgid "Ignore contact"
msgstr "Ignoriere den Kontakt"
#: ../../mod/contacts.php:398
msgid "Repair URL settings"
msgstr "URL Einstellungen reparieren"
#: ../../mod/contacts.php:399
msgid "View conversations"
msgstr "Unterhaltungen anzeigen"
#: ../../mod/contacts.php:401
msgid "Delete contact"
msgstr "Lösche den Kontakt"
#: ../../mod/contacts.php:405
msgid "Last update:"
msgstr "letzte Aktualisierung:"
#: ../../mod/contacts.php:407
msgid "Update public posts"
msgstr "Öffentliche Beiträge aktualisieren"
#: ../../mod/contacts.php:416
msgid "Currently blocked"
msgstr "Derzeit geblockt"
#: ../../mod/contacts.php:417
msgid "Currently ignored"
msgstr "Derzeit ignoriert"
#: ../../mod/contacts.php:418
msgid "Currently archived"
msgstr "Momentan archiviert"
#: ../../mod/contacts.php:419
msgid ""
"Replies/likes to your public posts <strong>may</strong> still be visible"
msgstr "Antworten/Likes auf deine öffentlichen Beiträge <strong>könnten</strong> weiterhin sichtbar sein"
#: ../../mod/contacts.php:470
msgid "Suggestions"
msgstr "Kontaktvorschläge"
#: ../../mod/contacts.php:473
msgid "Suggest potential friends"
msgstr "Freunde vorschlagen"
#: ../../mod/contacts.php:476 ../../mod/group.php:194
msgid "All Contacts"
msgstr "Alle Kontakte"
#: ../../mod/contacts.php:479
msgid "Show all contacts"
msgstr "Alle Kontakte anzeigen"
#: ../../mod/contacts.php:482
msgid "Unblocked"
msgstr "Ungeblockt"
#: ../../mod/contacts.php:485
msgid "Only show unblocked contacts"
msgstr "Nur nicht-blockierte Kontakte anzeigen"
#: ../../mod/contacts.php:489
msgid "Blocked"
msgstr "Geblockt"
#: ../../mod/contacts.php:492
msgid "Only show blocked contacts"
msgstr "Nur blockierte Kontakte anzeigen"
#: ../../mod/contacts.php:496
msgid "Ignored"
msgstr "Ignoriert"
#: ../../mod/contacts.php:499
msgid "Only show ignored contacts"
msgstr "Nur ignorierte Kontakte anzeigen"
#: ../../mod/contacts.php:503
msgid "Archived"
msgstr "Archiviert"
#: ../../mod/contacts.php:506
msgid "Only show archived contacts"
msgstr "Nur archivierte Kontakte anzeigen"
#: ../../mod/contacts.php:510
msgid "Hidden"
msgstr "Verborgen"
#: ../../mod/contacts.php:513
msgid "Only show hidden contacts"
msgstr "Nur verborgene Kontakte anzeigen"
#: ../../mod/contacts.php:561
msgid "Mutual Friendship"
msgstr "Beidseitige Freundschaft"
#: ../../mod/contacts.php:565
msgid "is a fan of yours"
msgstr "ist ein Fan von dir"
#: ../../mod/contacts.php:569
msgid "you are a fan of"
msgstr "du bist Fan von"
#: ../../mod/contacts.php:607 ../../view/theme/diabook/theme.php:89
#: ../../include/nav.php:171
msgid "Contacts"
msgstr "Kontakte"
#: ../../mod/contacts.php:611
msgid "Search your contacts"
msgstr "Suche in deinen Kontakten"
#: ../../mod/contacts.php:612 ../../mod/directory.php:59
msgid "Finding: "
msgstr "Funde: "
#: ../../mod/contacts.php:613 ../../mod/directory.php:61
#: ../../include/contact_widgets.php:33
msgid "Find"
msgstr "Finde"
#: ../../mod/common.php:42
msgid "Common Friends"
msgstr "Gemeinsame Freunde"
#: ../../mod/common.php:78
msgid "No contacts in common."
msgstr "Keine gemeinsamen Kontakte."
#: ../../mod/follow.php:27
msgid "Contact added"
msgstr "Kontakt hinzugefügt"
#: ../../mod/uimport.php:64
msgid "Import"
msgstr "Import"
#: ../../mod/uimport.php:66
msgid "Move account"
msgstr "Account umziehen"
#: ../../mod/uimport.php:67
msgid "You can import an account from another Friendica server."
msgstr "Du kannst einen Account von einem anderen Friendica Server importieren."
#: ../../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 "Du musst deinen Account vom alten Server exportieren und hier hochladen. Wir stellen deinen alten Account mit all deinen Kontakten wieder her. Wir werden auch versuchen all deine Freunde darüber zu informieren, dass du hierher umgezogen bist."
#: ../../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 "Dieses Feature ist experimentell. Wir können keine Kontakte vom OStatus Netzwerk (statusnet/identi.ca) oder von Diaspora importieren"
#: ../../mod/uimport.php:70
msgid "Account file"
msgstr "Account Datei"
#: ../../mod/uimport.php:70
msgid ""
"To export your accont, go to \"Settings->Export your porsonal data\" and "
"select \"Export account\""
msgstr "Um deinen Account zu exportieren, rufe \"Einstellungen -> Persönliche Daten exportieren\" auf und wähle \"Account exportieren\""
#: ../../mod/subthread.php:103
#, php-format
msgid "%1$s is following %2$s's %3$s"
msgstr "%1$s folgt %2$s %3$s"
#: ../../mod/allfriends.php:34
#, php-format
msgid "Friends of %s"
msgstr "Freunde von %s"
#: ../../mod/allfriends.php:40
msgid "No friends to display."
msgstr "Keine Freunde zum Anzeigen."
#: ../../mod/tagrm.php:41
msgid "Tag removed"
msgstr "Tag entfernt"
#: ../../mod/tagrm.php:79
msgid "Remove Item Tag"
msgstr "Gegenstands-Tag entfernen"
#: ../../mod/tagrm.php:81
msgid "Select a tag to remove: "
msgstr "Wähle ein Tag zum Entfernen aus: "
#: ../../mod/tagrm.php:93 ../../mod/delegate.php:130
msgid "Remove"
msgstr "Entfernen"
#: ../../mod/newmember.php:6
msgid "Welcome to Friendica"
msgstr "Willkommen bei Friendica"
#: ../../mod/newmember.php:8
msgid "New Member Checklist"
msgstr "Checkliste für neue Mitglieder"
#: ../../mod/newmember.php:12
msgid ""
"We would like to offer some tips and links to help make your experience "
"enjoyable. Click any item to visit the relevant page. A link to this page "
"will be visible from your home page for two weeks after your initial "
"registration and then will quietly disappear."
msgstr "Wir möchten dir einige Tipps und Links anbieten, die dir helfen könnten, den Einstieg angenehmer zu machen. Klicke auf ein Element, um die entsprechende Seite zu besuchen. Ein Link zu dieser Seite hier bleibt für dich an Deiner Pinnwand für zwei Wochen nach dem Registrierungsdatum sichtbar und wird dann verschwinden."
#: ../../mod/newmember.php:14
msgid "Getting Started"
msgstr "Einstieg"
#: ../../mod/newmember.php:18
msgid "Friendica Walk-Through"
msgstr "Friendica Rundgang"
#: ../../mod/newmember.php:18
msgid ""
"On your <em>Quick Start</em> page - find a brief introduction to your "
"profile and network tabs, make some new connections, and find some groups to"
" join."
msgstr "Auf der <em>Quick Start</em> Seite findest du eine kurze Einleitung in die einzelnen Funktionen deines Profils und die Netzwerk-Reiter, wo du interessante Foren findest und neue Kontakte knüpfst."
#: ../../mod/newmember.php:26
msgid "Go to Your Settings"
msgstr "Gehe zu deinen Einstellungen"
#: ../../mod/newmember.php:26
msgid ""
"On your <em>Settings</em> page - change your initial password. Also make a "
"note of your Identity Address. This looks just like an email address - and "
"will be useful in making friends on the free social web."
msgstr "Ändere bitte unter <em>Einstellungen</em> dein Passwort. Außerdem merke dir deine Identifikationsadresse. Diese sieht aus wie eine E-Mail-Adresse und wird benötigt, um Freundschaften mit anderen im Friendica Netzwerk zu schliessen."
#: ../../mod/newmember.php:28
msgid ""
"Review the other settings, particularly the privacy settings. An unpublished"
" directory listing is like having an unlisted phone number. In general, you "
"should probably publish your listing - unless all of your friends and "
"potential friends know exactly how to find you."
msgstr "Überprüfe die restlichen Einstellungen, insbesondere die Einstellungen zur Privatsphäre. Wenn du dein Profil nicht veröffentlichst, ist das als wenn du deine Telefonnummer nicht ins Telefonbuch einträgst. Im Allgemeinen solltest du es veröffentlichen - außer all deine Freunde und potentiellen Freunde wissen genau, wie sie dich finden können."
#: ../../mod/newmember.php:32 ../../mod/profperm.php:103
#: ../../view/theme/diabook/theme.php:88 ../../boot.php:1868
#: ../../include/profile_advanced.php:7 ../../include/profile_advanced.php:84
#: ../../include/nav.php:77
#: ../../include/nav.php:77 ../../mod/profperm.php:103
#: ../../mod/newmember.php:32 ../../view/theme/diabook/theme.php:88
#: ../../boot.php:1868
msgid "Profile"
msgstr "Profil"
#: ../../mod/newmember.php:36 ../../mod/profile_photo.php:244
msgid "Upload Profile Photo"
msgstr "Profilbild hochladen"
#: ../../mod/newmember.php:36
msgid ""
"Upload a profile photo if you have not done so already. Studies have shown "
"that people with real photos of themselves are ten times more likely to make"
" friends than people who do not."
msgstr "Lade ein Profilbild hoch falls du es noch nicht getan hast. Studien haben gezeigt, dass es zehnmal wahrscheinlicher ist neue Freunde zu finden, wenn du ein Bild von dir selbst verwendest, als wenn du dies nicht tust."
#: ../../mod/newmember.php:38
msgid "Edit Your Profile"
msgstr "Editiere dein Profil"
#: ../../mod/newmember.php:38
msgid ""
"Edit your <strong>default</strong> profile to your liking. Review the "
"settings for hiding your list of friends and hiding the profile from unknown"
" visitors."
msgstr "Editiere dein <strong>Standard</strong> Profil nach deinen Vorlieben. Überprüfe die Einstellungen zum Verbergen deiner Freundesliste vor unbekannten Betrachtern des Profils."
#: ../../mod/newmember.php:40
msgid "Profile Keywords"
msgstr "Profil Schlüsselbegriffe"
#: ../../mod/newmember.php:40
msgid ""
"Set some public keywords for your default profile which describe your "
"interests. We may be able to find other people with similar interests and "
"suggest friendships."
msgstr "Trage ein paar öffentliche Stichwörter in dein Standardprofil ein, die deine Interessen beschreiben. Eventuell sind wir in der Lage Leute zu finden, die deine Interessen teilen und können dir dann Kontakte vorschlagen."
#: ../../mod/newmember.php:44
msgid "Connecting"
msgstr "Verbindungen knüpfen"
#: ../../mod/newmember.php:49 ../../mod/newmember.php:51
#: ../../include/contact_selectors.php:81
msgid "Facebook"
msgstr "Facebook"
#: ../../mod/newmember.php:49
msgid ""
"Authorise the Facebook Connector if you currently have a Facebook account "
"and we will (optionally) import all your Facebook friends and conversations."
msgstr "Richte die Verbindung zu Facebook ein, wenn du im Augenblick ein Facebook-Konto hast, und (optional) deine Facebook-Freunde und -Unterhaltungen importieren willst."
#: ../../mod/newmember.php:51
msgid ""
"<em>If</em> this is your own personal server, installing the Facebook addon "
"may ease your transition to the free social web."
msgstr "<em>Wenn</em> dies dein privater Server ist, könnte die Installation des Facebook Connectors deinen Umzug ins freie soziale Netz angenehmer gestalten."
#: ../../mod/newmember.php:56
msgid "Importing Emails"
msgstr "Emails Importieren"
#: ../../mod/newmember.php:56
msgid ""
"Enter your email access information on your Connector Settings page if you "
"wish to import and interact with friends or mailing lists from your email "
"INBOX"
msgstr "Gib deine E-Mail-Zugangsinformationen auf der Connector-Einstellungsseite ein, falls du E-Mails aus deinem Posteingang importieren und mit Freunden und Mailinglisten interagieren willlst."
#: ../../mod/newmember.php:58
msgid "Go to Your Contacts Page"
msgstr "Gehe zu deiner Kontakt-Seite"
#: ../../mod/newmember.php:58
msgid ""
"Your Contacts page is your gateway to managing friendships and connecting "
"with friends on other networks. Typically you enter their address or site "
"URL in the <em>Add New Contact</em> dialog."
msgstr "Die Kontakte-Seite ist die Einstiegsseite, von der aus du Kontakte verwalten und dich mit Freunden in anderen Netzwerken verbinden kannst. Normalerweise gibst du dazu einfach ihre Adresse oder die URL der Seite im Kasten <em>Neuen Kontakt hinzufügen</em> ein."
#: ../../mod/newmember.php:60
msgid "Go to Your Site's Directory"
msgstr "Gehe zum Verzeichnis deiner Friendica Instanz"
#: ../../mod/newmember.php:60
msgid ""
"The Directory page lets you find other people in this network or other "
"federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on "
"their profile page. Provide your own Identity Address if requested."
msgstr "Über die Verzeichnisseite kannst du andere Personen auf diesem Server oder anderen verknüpften Seiten finden. Halte nach einem <em>Verbinden</em> oder <em>Folgen</em> Link auf deren Profilseiten Ausschau und gib deine eigene Profiladresse an, falls du danach gefragt wirst."
#: ../../mod/newmember.php:62
msgid "Finding New People"
msgstr "Neue Leute kennenlernen"
#: ../../mod/newmember.php:62
msgid ""
"On the side panel of the Contacts page are several tools to find new "
"friends. We can match people by interest, look up people by name or "
"interest, and provide suggestions based on network relationships. On a brand"
" new site, friend suggestions will usually begin to be populated within 24 "
"hours."
msgstr "Im seitlichen Bedienfeld der Kontakteseite gibt es diverse Werkzeuge, um neue Freunde zu finden. Wir können Menschen mit den gleichen Interessen finden, anhand von Namen oder Interessen suchen oder aber aufgrund vorhandener Kontakte neue Freunde vorschlagen.\nAuf einer brandneuen - soeben erstellten - Seite starten die Kontaktvorschläge innerhalb von 24 Stunden."
#: ../../mod/newmember.php:66 ../../include/group.php:270
msgid "Groups"
msgstr "Gruppen"
#: ../../mod/newmember.php:70
msgid "Group Your Contacts"
msgstr "Gruppiere deine Kontakte"
#: ../../mod/newmember.php:70
msgid ""
"Once you have made some friends, organize them into private conversation "
"groups from the sidebar of your Contacts page and then you can interact with"
" each group privately on your Network page."
msgstr "Sobald du einige Freunde gefunden hast, organisiere sie in Gruppen zur privaten Kommunikation im Seitenmenü der Kontakte-Seite. Du kannst dann mit jeder dieser Gruppen von der Netzwerkseite aus privat interagieren."
#: ../../mod/newmember.php:73
msgid "Why Aren't My Posts Public?"
msgstr "Warum sind meine Beiträge nicht öffentlich?"
#: ../../mod/newmember.php:73
msgid ""
"Friendica respects your privacy. By default, your posts will only show up to"
" people you've added as friends. For more information, see the help section "
"from the link above."
msgstr "Friendica respektiert deine Privatsphäre. Mit der Grundeinstellung werden deine Beiträge ausschließlich deinen Kontakten angezeigt. Für weitere Informationen diesbezüglich lies dir bitte den entsprechenden Abschnitt in der Hilfe unter dem obigen Link durch."
#: ../../mod/newmember.php:78
msgid "Getting Help"
msgstr "Hilfe bekommen"
#: ../../mod/newmember.php:82
msgid "Go to the Help Section"
msgstr "Zum Hilfe Abschnitt gehen"
#: ../../mod/newmember.php:82
msgid ""
"Our <strong>help</strong> pages may be consulted for detail on other program"
" features and resources."
msgstr "Unsere <strong>Hilfe</strong> Seiten können herangezogen werden, um weitere Einzelheiten zu andern Programm Features zu erhalten."
#: ../../mod/search.php:21 ../../mod/network.php:224
msgid "Remove term"
msgstr "Begriff entfernen"
#: ../../mod/search.php:30 ../../mod/network.php:233
#: ../../include/features.php:41
msgid "Saved Searches"
msgstr "Gespeicherte Suchen"
#: ../../mod/search.php:99 ../../include/text.php:778
#: ../../include/text.php:779 ../../include/nav.php:118
msgid "Search"
msgstr "Suche"
#: ../../mod/search.php:180 ../../mod/search.php:206
#: ../../mod/community.php:61 ../../mod/community.php:88
msgid "No results."
msgstr "Keine Ergebnisse."
#: ../../mod/invite.php:27
msgid "Total invitation limit exceeded."
msgstr "Limit für Einladungen erreicht."
#: ../../mod/invite.php:49
#, php-format
msgid "%s : Not a valid email address."
msgstr "%s: Keine gültige Email Adresse."
#: ../../mod/invite.php:73
msgid "Please join us on Friendica"
msgstr "Bitte trete bei uns auf Friendica bei"
#: ../../mod/invite.php:84
msgid "Invitation limit exceeded. Please contact your site administrator."
msgstr "Limit für Einladungen erreicht. Bitte kontaktiere des Administrator der Seite."
#: ../../mod/invite.php:89
#, php-format
msgid "%s : Message delivery failed."
msgstr "%s: Zustellung der Nachricht fehlgeschlagen."
#: ../../mod/invite.php:93
#, php-format
msgid "%d message sent."
msgid_plural "%d messages sent."
msgstr[0] "%d Nachricht gesendet."
msgstr[1] "%d Nachrichten gesendet."
#: ../../mod/invite.php:112
msgid "You have no more invitations available"
msgstr "Du hast keine weiteren Einladungen"
#: ../../mod/invite.php:120
#, php-format
msgid ""
"Visit %s for a list of public sites that you can join. Friendica members on "
"other sites can all connect with each other, as well as with members of many"
" other social networks."
msgstr "Besuche %s für eine Liste der öffentlichen Server, denen du beitreten kannst. Friendica Mitglieder unterschiedlicher Server können sich sowohl alle miteinander verbinden, als auch mit Mitgliedern anderer Sozialer Netzwerke."
#: ../../mod/invite.php:122
#, php-format
msgid ""
"To accept this invitation, please visit and register at %s or any other "
"public Friendica website."
msgstr "Um diese Kontaktanfrage zu akzeptieren, besuche und registriere dich bitte bei %s oder einer anderen öffentlichen Friendica Website."
#: ../../mod/invite.php:123
#, php-format
msgid ""
"Friendica sites all inter-connect to create a huge privacy-enhanced social "
"web that is owned and controlled by its members. They can also connect with "
"many traditional social networks. See %s for a list of alternate Friendica "
"sites you can join."
msgstr "Friendica Server verbinden sich alle untereinander, um ein großes datenschutzorientiertes Soziales Netzwerk zu bilden, das von seinen Mitgliedern betrieben und kontrolliert wird. Sie können sich auch mit vielen üblichen Sozialen Netzwerken verbinden. Besuche %s für eine Liste alternativer Friendica Server, denen du beitreten kannst."
#: ../../mod/invite.php:126
msgid ""
"Our apologies. This system is not currently configured to connect with other"
" public sites or invite members."
msgstr "Es tut uns leid. Dieses System ist zurzeit nicht dafür konfiguriert, sich mit anderen öffentlichen Seiten zu verbinden oder Mitglieder einzuladen."
#: ../../mod/invite.php:132
msgid "Send invitations"
msgstr "Einladungen senden"
#: ../../mod/invite.php:133
msgid "Enter email addresses, one per line:"
msgstr "E-Mail-Adressen eingeben, eine pro Zeile:"
#: ../../mod/invite.php:135
msgid ""
"You are cordially invited to join me and other close friends on Friendica - "
"and help us to create a better social web."
msgstr "Du bist herzlich dazu eingeladen, dich mir und anderen guten Freunden auf Friendica anzuschließen - und ein besseres Soziales Netz aufzubauen."
#: ../../mod/invite.php:137
msgid "You will need to supply this invitation code: $invite_code"
msgstr "Du benötigst den folgenden Einladungscode: $invite_code"
#: ../../mod/invite.php:137
msgid ""
"Once you have registered, please connect with me via my profile page at:"
msgstr "Sobald du registriert bist, kontaktiere mich bitte auf meiner Profilseite:"
#: ../../mod/invite.php:139
msgid ""
"For more information about the Friendica project and why we feel it is "
"important, please visit http://friendica.com"
msgstr "Für weitere Informationen über das Friendica Projekt und warum wir es für ein wichtiges Projekt halten, besuche bitte http://friendica.com"
#: ../../mod/settings.php:30 ../../mod/uexport.php:9 ../../include/nav.php:167
msgid "Account settings"
msgstr "Kontoeinstellungen"
#: ../../mod/settings.php:35
msgid "Additional features"
msgstr "Zusätzliche Features"
#: ../../mod/settings.php:40 ../../mod/uexport.php:14
msgid "Display settings"
msgstr "Anzeige-Einstellungen"
#: ../../mod/settings.php:46 ../../mod/uexport.php:20
msgid "Connector settings"
msgstr "Connector-Einstellungen"
#: ../../mod/settings.php:51 ../../mod/uexport.php:25
msgid "Plugin settings"
msgstr "Plugin-Einstellungen"
#: ../../mod/settings.php:56 ../../mod/uexport.php:30
msgid "Connected apps"
msgstr "Verbundene Programme"
#: ../../mod/settings.php:61 ../../mod/uexport.php:35 ../../mod/uexport.php:80
msgid "Export personal data"
msgstr "Persönliche Daten exportieren"
#: ../../mod/settings.php:66 ../../mod/uexport.php:40
msgid "Remove account"
msgstr "Konto löschen"
#: ../../mod/settings.php:118
msgid "Missing some important data!"
msgstr "Wichtige Daten fehlen!"
#: ../../mod/settings.php:121 ../../mod/settings.php:586
msgid "Update"
msgstr "Aktualisierungen"
#: ../../mod/settings.php:227
msgid "Failed to connect with email account using the settings provided."
msgstr "Verbindung zum E-Mail-Konto mit den angegebenen Einstellungen nicht möglich."
#: ../../mod/settings.php:232
msgid "Email settings updated."
msgstr "E-Mail Einstellungen bearbeitet."
#: ../../mod/settings.php:247
msgid "Features updated"
msgstr "Features aktualisiert"
#: ../../mod/settings.php:307
msgid "Passwords do not match. Password unchanged."
msgstr "Die Passwörter stimmen nicht überein. Das Passwort bleibt unverändert."
#: ../../mod/settings.php:312
msgid "Empty passwords are not allowed. Password unchanged."
msgstr "Leere Passwörter sind nicht erlaubt. Passwort bleibt unverändert."
#: ../../mod/settings.php:323
msgid "Password changed."
msgstr "Passwort ändern."
#: ../../mod/settings.php:325
msgid "Password update failed. Please try again."
msgstr "Aktualisierung des Passworts gescheitert, bitte versuche es noch einmal."
#: ../../mod/settings.php:390
msgid " Please use a shorter name."
msgstr " Bitte verwende einen kürzeren Namen."
#: ../../mod/settings.php:392
msgid " Name too short."
msgstr " Name ist zu kurz."
#: ../../mod/settings.php:398
msgid " Not valid email."
msgstr " Keine gültige E-Mail."
#: ../../mod/settings.php:400
msgid " Cannot change to that email."
msgstr "Ändern der E-Mail nicht möglich. "
#: ../../mod/settings.php:454
msgid "Private forum has no privacy permissions. Using default privacy group."
msgstr "Für das private Forum sind keine Zugriffsrechte eingestellt. Die voreingestellte Gruppe für neue Kontakte wird benutzt."
#: ../../mod/settings.php:458
msgid "Private forum has no privacy permissions and no default privacy group."
msgstr "Für das private Forum sind keine Zugriffsrechte eingestellt, und es gibt keine voreingestellte Gruppe für neue Kontakte."
#: ../../mod/settings.php:488
msgid "Settings updated."
msgstr "Einstellungen aktualisiert."
#: ../../mod/settings.php:559 ../../mod/settings.php:585
#: ../../mod/settings.php:621
msgid "Add application"
msgstr "Programm hinzufügen"
#: ../../mod/settings.php:563 ../../mod/settings.php:589
msgid "Consumer Key"
msgstr "Consumer Key"
#: ../../mod/settings.php:564 ../../mod/settings.php:590
msgid "Consumer Secret"
msgstr "Consumer Secret"
#: ../../mod/settings.php:565 ../../mod/settings.php:591
msgid "Redirect"
msgstr "Umleiten"
#: ../../mod/settings.php:566 ../../mod/settings.php:592
msgid "Icon url"
msgstr "Icon URL"
#: ../../mod/settings.php:577
msgid "You can't edit this application."
msgstr "Du kannst dieses Programm nicht bearbeiten."
#: ../../mod/settings.php:620
msgid "Connected Apps"
msgstr "Verbundene Programme"
#: ../../mod/settings.php:624
msgid "Client key starts with"
msgstr "Anwenderschlüssel beginnt mit"
#: ../../mod/settings.php:625
msgid "No name"
msgstr "Kein Name"
#: ../../mod/settings.php:626
msgid "Remove authorization"
msgstr "Autorisierung entziehen"
#: ../../mod/settings.php:638
msgid "No Plugin settings configured"
msgstr "Keine Plugin-Einstellungen konfiguriert"
#: ../../mod/settings.php:646
msgid "Plugin Settings"
msgstr "Plugin-Einstellungen"
#: ../../mod/settings.php:660
msgid "Off"
msgstr "Aus"
#: ../../mod/settings.php:660
msgid "On"
msgstr "An"
#: ../../mod/settings.php:668
msgid "Additional Features"
msgstr "Zusätzliche Features"
#: ../../mod/settings.php:681 ../../mod/settings.php:682
#, php-format
msgid "Built-in support for %s connectivity is %s"
msgstr "Eingebaute Unterstützung für Verbindungen zu %s ist %s"
#: ../../mod/settings.php:681 ../../mod/settings.php:682
msgid "enabled"
msgstr "eingeschaltet"
#: ../../mod/settings.php:681 ../../mod/settings.php:682
msgid "disabled"
msgstr "ausgeschaltet"
#: ../../mod/settings.php:682
msgid "StatusNet"
msgstr "StatusNet"
#: ../../mod/settings.php:714
msgid "Email access is disabled on this site."
msgstr "Zugriff auf E-Mails für diese Seite deaktiviert."
#: ../../mod/settings.php:721
msgid "Connector Settings"
msgstr "Verbindungs-Einstellungen"
#: ../../mod/settings.php:726
msgid "Email/Mailbox Setup"
msgstr "E-Mail/Postfach-Einstellungen"
#: ../../mod/settings.php:727
msgid ""
"If you wish to communicate with email contacts using this service "
"(optional), please specify how to connect to your mailbox."
msgstr "Wenn du mit E-Mail-Kontakten über diesen Service kommunizieren möchtest (optional), gib bitte die Einstellungen für dein Postfach an."
#: ../../mod/settings.php:728
msgid "Last successful email check:"
msgstr "Letzter erfolgreicher E-Mail Check"
#: ../../mod/settings.php:730
msgid "IMAP server name:"
msgstr "IMAP-Server-Name:"
#: ../../mod/settings.php:731
msgid "IMAP port:"
msgstr "IMAP-Port:"
#: ../../mod/settings.php:732
msgid "Security:"
msgstr "Sicherheit:"
#: ../../mod/settings.php:732 ../../mod/settings.php:737
msgid "None"
msgstr "Keine"
#: ../../mod/settings.php:733
msgid "Email login name:"
msgstr "E-Mail-Login-Name:"
#: ../../mod/settings.php:734
msgid "Email password:"
msgstr "E-Mail-Passwort:"
#: ../../mod/settings.php:735
msgid "Reply-to address:"
msgstr "Reply-to Adresse:"
#: ../../mod/settings.php:736
msgid "Send public posts to all email contacts:"
msgstr "Sende öffentliche Beiträge an alle E-Mail-Kontakte:"
#: ../../mod/settings.php:737
msgid "Action after import:"
msgstr "Aktion nach Import:"
#: ../../mod/settings.php:737
msgid "Mark as seen"
msgstr "Als gelesen markieren"
#: ../../mod/settings.php:737
msgid "Move to folder"
msgstr "In einen Ordner verschieben"
#: ../../mod/settings.php:738
msgid "Move to folder:"
msgstr "In diesen Ordner verschieben:"
#: ../../mod/settings.php:809
msgid "Display Settings"
msgstr "Anzeige-Einstellungen"
#: ../../mod/settings.php:815 ../../mod/settings.php:826
msgid "Display Theme:"
msgstr "Theme:"
#: ../../mod/settings.php:816
msgid "Mobile Theme:"
msgstr "Mobiles Theme"
#: ../../mod/settings.php:817
msgid "Update browser every xx seconds"
msgstr "Browser alle xx Sekunden aktualisieren"
#: ../../mod/settings.php:817
msgid "Minimum of 10 seconds, no maximum"
msgstr "Minimal 10 Sekunden, kein Maximum"
#: ../../mod/settings.php:818
msgid "Number of items to display per page:"
msgstr "Zahl der Beiträge, die pro Netzwerkseite angezeigt werden sollen: "
#: ../../mod/settings.php:818
msgid "Maximum of 100 items"
msgstr "Maximal 100 Beiträge"
#: ../../mod/settings.php:819
msgid "Don't show emoticons"
msgstr "Keine Smilies anzeigen"
#: ../../mod/settings.php:895
msgid "Normal Account Page"
msgstr "Normales Konto"
#: ../../mod/settings.php:896
msgid "This account is a normal personal profile"
msgstr "Dieses Konto ist ein normales persönliches Profil"
#: ../../mod/settings.php:899
msgid "Soapbox Page"
msgstr "Marktschreier-Konto"
#: ../../mod/settings.php:900
msgid "Automatically approve all connection/friend requests as read-only fans"
msgstr "Kontaktanfragen werden automatisch als Nurlese-Fans akzeptiert"
#: ../../mod/settings.php:903
msgid "Community Forum/Celebrity Account"
msgstr "Forum/Promi-Konto"
#: ../../mod/settings.php:904
msgid ""
"Automatically approve all connection/friend requests as read-write fans"
msgstr "Kontaktanfragen werden automatisch als Lese-und-Schreib-Fans akzeptiert"
#: ../../mod/settings.php:907
msgid "Automatic Friend Page"
msgstr "Automatische Freunde Seite"
#: ../../mod/settings.php:908
msgid "Automatically approve all connection/friend requests as friends"
msgstr "Kontaktanfragen werden automatisch als Freund akzeptiert"
#: ../../mod/settings.php:911
msgid "Private Forum [Experimental]"
msgstr "Privates Forum [Versuchsstadium]"
#: ../../mod/settings.php:912
msgid "Private forum - approved members only"
msgstr "Privates Forum, nur für Mitglieder"
#: ../../mod/settings.php:924
msgid "OpenID:"
msgstr "OpenID:"
#: ../../mod/settings.php:924
msgid "(Optional) Allow this OpenID to login to this account."
msgstr "(Optional) Erlaube die Anmeldung für dieses Konto mit dieser OpenID."
#: ../../mod/settings.php:934
msgid "Publish your default profile in your local site directory?"
msgstr "Darf dein Standardprofil im Verzeichnis dieses Servers veröffentlicht werden?"
#: ../../mod/settings.php:940
msgid "Publish your default profile in the global social directory?"
msgstr "Darf dein Standardprofil im weltweiten Verzeichnis veröffentlicht werden?"
#: ../../mod/settings.php:948
msgid "Hide your contact/friend list from viewers of your default profile?"
msgstr "Liste der Kontakte vor Betrachtern des Standardprofils verbergen?"
#: ../../mod/settings.php:952
msgid "Hide your profile details from unknown viewers?"
msgstr "Profil-Details vor unbekannten Betrachtern verbergen?"
#: ../../mod/settings.php:957
msgid "Allow friends to post to your profile page?"
msgstr "Dürfen deine Kontakte auf deine Pinnwand schreiben?"
#: ../../mod/settings.php:963
msgid "Allow friends to tag your posts?"
msgstr "Dürfen deine Kontakte deine Beiträge mit Schlagwörtern versehen?"
#: ../../mod/settings.php:969
msgid "Allow us to suggest you as a potential friend to new members?"
msgstr "Dürfen wir dich neuen Mitgliedern als potentiellen Kontakt vorschlagen?"
#: ../../mod/settings.php:975
msgid "Permit unknown people to send you private mail?"
msgstr "Dürfen dir Unbekannte private Nachrichten schicken?"
#: ../../mod/settings.php:983
msgid "Profile is <strong>not published</strong>."
msgstr "Profil ist <strong>nicht veröffentlicht</strong>."
#: ../../mod/settings.php:986 ../../mod/profile_photo.php:248
msgid "or"
msgstr "oder"
#: ../../mod/settings.php:991
msgid "Your Identity Address is"
msgstr "Die Adresse deines Profils lautet:"
#: ../../mod/settings.php:1002
msgid "Automatically expire posts after this many days:"
msgstr "Beiträge verfallen automatisch nach dieser Anzahl von Tagen:"
#: ../../mod/settings.php:1002
msgid "If empty, posts will not expire. Expired posts will be deleted"
msgstr "Wenn leer verfallen Beiträge nie automatisch. Verfallene Beiträge werden gelöscht."
#: ../../mod/settings.php:1003
msgid "Advanced expiration settings"
msgstr "Erweiterte Verfallseinstellungen"
#: ../../mod/settings.php:1004
msgid "Advanced Expiration"
msgstr "Erweitertes Verfallen"
#: ../../mod/settings.php:1005
msgid "Expire posts:"
msgstr "Beiträge verfallen lassen:"
#: ../../mod/settings.php:1006
msgid "Expire personal notes:"
msgstr "Persönliche Notizen verfallen lassen:"
#: ../../mod/settings.php:1007
msgid "Expire starred posts:"
msgstr "Markierte Beiträge verfallen lassen:"
#: ../../mod/settings.php:1008
msgid "Expire photos:"
msgstr "Fotos verfallen lassen:"
#: ../../mod/settings.php:1009
msgid "Only expire posts by others:"
msgstr "Nur Beiträge anderer verfallen:"
#: ../../mod/settings.php:1035
msgid "Account Settings"
msgstr "Kontoeinstellungen"
#: ../../mod/settings.php:1043
msgid "Password Settings"
msgstr "Passwort-Einstellungen"
#: ../../mod/settings.php:1044
msgid "New Password:"
msgstr "Neues Passwort:"
#: ../../mod/settings.php:1045
msgid "Confirm:"
msgstr "Bestätigen:"
#: ../../mod/settings.php:1045
msgid "Leave password fields blank unless changing"
msgstr "Lass die Passwort-Felder leer, außer du willst das Passwort ändern"
#: ../../mod/settings.php:1049
msgid "Basic Settings"
msgstr "Grundeinstellungen"
#: ../../mod/settings.php:1050 ../../include/profile_advanced.php:15
#: ../../include/profile_advanced.php:15 ../../mod/settings.php:1050
msgid "Full Name:"
msgstr "Kompletter Name:"
#: ../../mod/settings.php:1051
msgid "Email Address:"
msgstr "E-Mail-Adresse:"
#: ../../mod/settings.php:1052
msgid "Your Timezone:"
msgstr "Deine Zeitzone:"
#: ../../mod/settings.php:1053
msgid "Default Post Location:"
msgstr "Standardstandort:"
#: ../../mod/settings.php:1054
msgid "Use Browser Location:"
msgstr "Standort des Browsers verwenden:"
#: ../../mod/settings.php:1057
msgid "Security and Privacy Settings"
msgstr "Sicherheits- und Privatsphäre-Einstellungen"
#: ../../mod/settings.php:1059
msgid "Maximum Friend Requests/Day:"
msgstr "Maximale Anzahl von Freundschaftsanfragen/Tag:"
#: ../../mod/settings.php:1059 ../../mod/settings.php:1089
msgid "(to prevent spam abuse)"
msgstr "(um SPAM zu vermeiden)"
#: ../../mod/settings.php:1060
msgid "Default Post Permissions"
msgstr "Standard-Zugriffsrechte für Beiträge"
#: ../../mod/settings.php:1061
msgid "(click to open/close)"
msgstr "(klicke zum öffnen/schließen)"
#: ../../mod/settings.php:1072
msgid "Default Private Post"
msgstr "Privater Standardbeitrag"
#: ../../mod/settings.php:1073
msgid "Default Public Post"
msgstr "Öffentlicher Standardbeitrag"
#: ../../mod/settings.php:1077
msgid "Default Permissions for New Posts"
msgstr "Standardberechtigungen für neue Beiträge"
#: ../../mod/settings.php:1089
msgid "Maximum private messages per day from unknown people:"
msgstr "Maximale Anzahl privater Nachrichten von Unbekannten pro Tag:"
#: ../../mod/settings.php:1092
msgid "Notification Settings"
msgstr "Benachrichtigungseinstellungen"
#: ../../mod/settings.php:1093
msgid "By default post a status message when:"
msgstr "Standardmäßig eine Statusnachricht posten, wenn:"
#: ../../mod/settings.php:1094
msgid "accepting a friend request"
msgstr " du eine Kontaktanfrage akzeptierst"
#: ../../mod/settings.php:1095
msgid "joining a forum/community"
msgstr " du einem Forum/einer Gemeinschaftsseite beitrittst"
#: ../../mod/settings.php:1096
msgid "making an <em>interesting</em> profile change"
msgstr " du eine <em>interessante</em> Änderung an deinem Profil durchführst"
#: ../../mod/settings.php:1097
msgid "Send a notification email when:"
msgstr "Benachrichtigungs-E-Mail senden wenn:"
#: ../../mod/settings.php:1098
msgid "You receive an introduction"
msgstr " du eine Kontaktanfrage erhältst"
#: ../../mod/settings.php:1099
msgid "Your introductions are confirmed"
msgstr " eine deiner Kontaktanfragen akzeptiert wurde"
#: ../../mod/settings.php:1100
msgid "Someone writes on your profile wall"
msgstr " jemand etwas auf deine Pinnwand schreibt"
#: ../../mod/settings.php:1101
msgid "Someone writes a followup comment"
msgstr " jemand auch einen Kommentar verfasst"
#: ../../mod/settings.php:1102
msgid "You receive a private message"
msgstr " du eine private Nachricht erhältst"
#: ../../mod/settings.php:1103
msgid "You receive a friend suggestion"
msgstr " du eine Empfehlung erhältst"
#: ../../mod/settings.php:1104
msgid "You are tagged in a post"
msgstr " du in einem Beitrag erwähnt wirst"
#: ../../mod/settings.php:1105
msgid "You are poked/prodded/etc. in a post"
msgstr " du von jemandem angestupst oder sonstwie behandelt wirst"
#: ../../mod/settings.php:1108
msgid "Advanced Account/Page Type Settings"
msgstr "Erweiterte Konto-/Seitentyp-Einstellungen"
#: ../../mod/settings.php:1109
msgid "Change the behaviour of this account for special situations"
msgstr "Verhalten dieses Kontos in bestimmten Situationen:"
#: ../../mod/display.php:177
msgid "Item has been removed."
msgstr "Eintrag wurde entfernt."
#: ../../mod/dirfind.php:26
msgid "People Search"
msgstr "Personensuche"
#: ../../mod/dirfind.php:60 ../../mod/match.php:65
msgid "No matches"
msgstr "Keine Übereinstimmungen"
#: ../../mod/profiles.php:37
msgid "Profile deleted."
msgstr "Profil gelöscht."
#: ../../mod/profiles.php:55 ../../mod/profiles.php:89
msgid "Profile-"
msgstr "Profil-"
#: ../../mod/profiles.php:74 ../../mod/profiles.php:117
msgid "New profile created."
msgstr "Neues Profil angelegt."
#: ../../mod/profiles.php:95
msgid "Profile unavailable to clone."
msgstr "Profil nicht zum Duplizieren verfügbar."
#: ../../mod/profiles.php:170
msgid "Profile Name is required."
msgstr "Profilname ist erforderlich."
#: ../../mod/profiles.php:317
msgid "Marital Status"
msgstr "Familienstand"
#: ../../mod/profiles.php:321
msgid "Romantic Partner"
msgstr "Romanze"
#: ../../mod/profiles.php:325
msgid "Likes"
msgstr "Likes"
#: ../../mod/profiles.php:329
msgid "Dislikes"
msgstr "Dislikes"
#: ../../mod/profiles.php:333
msgid "Work/Employment"
msgstr "Arbeit / Beschäftigung"
#: ../../mod/profiles.php:336
msgid "Religion"
msgstr "Religion"
#: ../../mod/profiles.php:340
msgid "Political Views"
msgstr "Politische Ansichten"
#: ../../mod/profiles.php:344
msgid "Gender"
msgstr "Geschlecht"
#: ../../mod/profiles.php:348
msgid "Sexual Preference"
msgstr "Sexuelle Vorlieben"
#: ../../mod/profiles.php:352
msgid "Homepage"
msgstr "Webseite"
#: ../../mod/profiles.php:356
msgid "Interests"
msgstr "Interessen"
#: ../../mod/profiles.php:360
msgid "Address"
msgstr "Adresse"
#: ../../mod/profiles.php:367
msgid "Location"
msgstr "Wohnort"
#: ../../mod/profiles.php:450
msgid "Profile updated."
msgstr "Profil aktualisiert."
#: ../../mod/profiles.php:517
msgid " and "
msgstr " und "
#: ../../mod/profiles.php:525
msgid "public profile"
msgstr "öffentliches Profil"
#: ../../mod/profiles.php:528
#, php-format
msgid "%1$s changed %2$s to &ldquo;%3$s&rdquo;"
msgstr "%1$s hat %2$s geändert auf &ldquo;%3$s&rdquo;"
#: ../../mod/profiles.php:529
#, php-format
msgid " - Visit %1$s's %2$s"
msgstr " %1$ss %2$s besuchen"
#: ../../mod/profiles.php:532
#, php-format
msgid "%1$s has an updated %2$s, changing %3$s."
msgstr "%1$s hat folgendes aktualisiert %2$s, verändert wurde %3$s."
#: ../../mod/profiles.php:605
msgid "Hide your contact/friend list from viewers of this profile?"
msgstr "Liste der Kontakte vor Betrachtern dieses Profils verbergen?"
#: ../../mod/profiles.php:625
msgid "Edit Profile Details"
msgstr "Profil bearbeiten"
#: ../../mod/profiles.php:627
msgid "Change Profile Photo"
msgstr "Profilbild ändern"
#: ../../mod/profiles.php:628
msgid "View this profile"
msgstr "Dieses Profil anzeigen"
#: ../../mod/profiles.php:629
msgid "Create a new profile using these settings"
msgstr "Neues Profil anlegen und diese Einstellungen verwenden"
#: ../../mod/profiles.php:630
msgid "Clone this profile"
msgstr "Dieses Profil duplizieren"
#: ../../mod/profiles.php:631
msgid "Delete this profile"
msgstr "Dieses Profil löschen"
#: ../../mod/profiles.php:632
msgid "Profile Name:"
msgstr "Profilname:"
#: ../../mod/profiles.php:633
msgid "Your Full Name:"
msgstr "Dein kompletter Name:"
#: ../../mod/profiles.php:634
msgid "Title/Description:"
msgstr "Titel/Beschreibung:"
#: ../../mod/profiles.php:635
msgid "Your Gender:"
msgstr "Dein Geschlecht:"
#: ../../mod/profiles.php:636
#, php-format
msgid "Birthday (%s):"
msgstr "Geburtstag (%s):"
#: ../../mod/profiles.php:637
msgid "Street Address:"
msgstr "Adresse:"
#: ../../mod/profiles.php:638
msgid "Locality/City:"
msgstr "Wohnort:"
#: ../../mod/profiles.php:639
msgid "Postal/Zip Code:"
msgstr "Postleitzahl:"
#: ../../mod/profiles.php:640
msgid "Country:"
msgstr "Land:"
#: ../../mod/profiles.php:641
msgid "Region/State:"
msgstr "Region/Bundesstaat:"
#: ../../mod/profiles.php:642
msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
msgstr "<span class=\"heart\">&hearts;</span> Beziehungsstatus:"
#: ../../mod/profiles.php:643
msgid "Who: (if applicable)"
msgstr "Wer: (falls anwendbar)"
#: ../../mod/profiles.php:644
msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
msgstr "Beispiele: cathy123, Cathy Williams, cathy@example.com"
#: ../../mod/profiles.php:645
msgid "Since [date]:"
msgstr "Seit [Datum]:"
#: ../../mod/profiles.php:646 ../../include/profile_advanced.php:46
msgid "Sexual Preference:"
msgstr "Sexuelle Vorlieben:"
#: ../../mod/profiles.php:647
msgid "Homepage URL:"
msgstr "Adresse der Homepage:"
#: ../../mod/profiles.php:648 ../../include/profile_advanced.php:50
msgid "Hometown:"
msgstr "Heimatort:"
#: ../../mod/profiles.php:649 ../../include/profile_advanced.php:54
msgid "Political Views:"
msgstr "Politische Ansichten:"
#: ../../mod/profiles.php:650
msgid "Religious Views:"
msgstr "Religiöse Ansichten:"
#: ../../mod/profiles.php:651
msgid "Public Keywords:"
msgstr "Öffentliche Schlüsselwörter:"
#: ../../mod/profiles.php:652
msgid "Private Keywords:"
msgstr "Private Schlüsselwörter:"
#: ../../mod/profiles.php:653 ../../include/profile_advanced.php:62
msgid "Likes:"
msgstr "Likes:"
#: ../../mod/profiles.php:654 ../../include/profile_advanced.php:64
msgid "Dislikes:"
msgstr "Dislikes:"
#: ../../mod/profiles.php:655
msgid "Example: fishing photography software"
msgstr "Beispiel: Fischen Fotografie Software"
#: ../../mod/profiles.php:656
msgid "(Used for suggesting potential friends, can be seen by others)"
msgstr "(Wird verwendet, um potentielle Freunde zu finden, könnte von Fremden eingesehen werden)"
#: ../../mod/profiles.php:657
msgid "(Used for searching profiles, never shown to others)"
msgstr "(Wird für die Suche nach Profilen verwendet und niemals veröffentlicht)"
#: ../../mod/profiles.php:658
msgid "Tell us about yourself..."
msgstr "Erzähle uns ein bisschen von dir …"
#: ../../mod/profiles.php:659
msgid "Hobbies/Interests"
msgstr "Hobbies/Interessen"
#: ../../mod/profiles.php:660
msgid "Contact information and Social Networks"
msgstr "Kontaktinformationen und Soziale Netzwerke"
#: ../../mod/profiles.php:661
msgid "Musical interests"
msgstr "Musikalische Interessen"
#: ../../mod/profiles.php:662
msgid "Books, literature"
msgstr "Literatur/Bücher"
#: ../../mod/profiles.php:663
msgid "Television"
msgstr "Fernsehen"
#: ../../mod/profiles.php:664
msgid "Film/dance/culture/entertainment"
msgstr "Filme/Tänze/Kultur/Unterhaltung"
#: ../../mod/profiles.php:665
msgid "Love/romance"
msgstr "Liebesleben"
#: ../../mod/profiles.php:666
msgid "Work/employment"
msgstr "Arbeit/Beschäftigung"
#: ../../mod/profiles.php:667
msgid "School/education"
msgstr "Schule/Ausbildung"
#: ../../mod/profiles.php:672
msgid ""
"This is your <strong>public</strong> profile.<br />It <strong>may</strong> "
"be visible to anybody using the internet."
msgstr "Dies ist dein <strong>öffentliches</strong> Profil.<br />Es <strong>könnte</strong> für jeden Nutzer des Internets sichtbar sein."
#: ../../mod/profiles.php:682 ../../mod/directory.php:111
msgid "Age: "
msgstr "Alter: "
#: ../../mod/profiles.php:721
msgid "Edit/Manage Profiles"
msgstr "Verwalte/Editiere Profile"
#: ../../mod/profiles.php:722 ../../boot.php:1366 ../../boot.php:1392
msgid "Change profile photo"
msgstr "Profilbild ändern"
#: ../../mod/profiles.php:723 ../../boot.php:1367
msgid "Create New Profile"
msgstr "Neues Profil anlegen"
#: ../../mod/profiles.php:734 ../../boot.php:1377
msgid "Profile Image"
msgstr "Profilbild"
#: ../../mod/profiles.php:736 ../../boot.php:1380
msgid "visible to everybody"
msgstr "sichtbar für jeden"
#: ../../mod/profiles.php:737 ../../boot.php:1381
msgid "Edit visibility"
msgstr "Sichtbarkeit bearbeiten"
#: ../../mod/share.php:44
msgid "link"
msgstr "Link"
#: ../../mod/uexport.php:72
msgid "Export account"
msgstr "Account exportieren"
#: ../../mod/uexport.php:72
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 "Exportiere deine Account Informationen und die Kontakte. Verwende dies um ein Backup deines Accounts anzulegen und/oder ihn auf einen anderen Server umzuziehen."
#: ../../mod/uexport.php:73
msgid "Export all"
msgstr "Alles exportieren"
#: ../../mod/uexport.php:73
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 "Exportiere deine Account Informationen, Kontakte und alle Einträge als JSON Datei. Dies könnte eine sehr große Datei werden und dementsprechend viel Zeit benötigen. Verwende dies um ein komplettes Backup deines Accounts anzulegen (Photos werden nicht exportiert)."
#: ../../mod/ping.php:238
msgid "{0} wants to be your friend"
msgstr "{0} möchte mit dir in Kontakt treten"
#: ../../mod/ping.php:243
msgid "{0} sent you a message"
msgstr "{0} hat dir eine Nachricht geschickt"
#: ../../mod/ping.php:248
msgid "{0} requested registration"
msgstr "{0} möchte sich registrieren"
#: ../../mod/ping.php:254
#, php-format
msgid "{0} commented %s's post"
msgstr "{0} kommentierte einen Beitrag von %s"
#: ../../mod/ping.php:259
#, php-format
msgid "{0} liked %s's post"
msgstr "{0} mag %ss Beitrag"
#: ../../mod/ping.php:264
#, php-format
msgid "{0} disliked %s's post"
msgstr "{0} mag %ss Beitrag nicht"
#: ../../mod/ping.php:269
#, php-format
msgid "{0} is now friends with %s"
msgstr "{0} ist jetzt mit %s befreundet"
#: ../../mod/ping.php:274
msgid "{0} posted"
msgstr "{0} hat etwas veröffentlicht"
#: ../../mod/ping.php:279
#, php-format
msgid "{0} tagged %s's post with #%s"
msgstr "{0} hat %ss Beitrag mit dem Schlagwort #%s versehen"
#: ../../mod/ping.php:285
msgid "{0} mentioned you in a post"
msgstr "{0} hat dich in einem Beitrag erwähnt"
#: ../../mod/navigation.php:20 ../../include/nav.php:34
msgid "Nothing new here"
msgstr "Keine Neuigkeiten."
#: ../../mod/navigation.php:24 ../../include/nav.php:38
msgid "Clear notifications"
msgstr "Bereinige Benachrichtigungen"
#: ../../mod/community.php:23
msgid "Not available."
msgstr "Nicht verfügbar."
#: ../../mod/community.php:32 ../../view/theme/diabook/theme.php:93
#: ../../include/nav.php:128
msgid "Community"
msgstr "Gemeinschaft"
#: ../../mod/filer.php:30 ../../include/conversation.php:962
#: ../../include/conversation.php:980
msgid "Save to Folder:"
msgstr "In diesen Ordner verschieben:"
#: ../../mod/filer.php:30
msgid "- select -"
msgstr "- auswählen -"
#: ../../mod/filer.php:31 ../../mod/notes.php:63 ../../include/text.php:781
msgid "Save"
msgstr "Speichern"
#: ../../mod/wall_attach.php:69
#, php-format
msgid "File exceeds size limit of %d"
msgstr "Die Datei ist größer als das erlaubte Limit von %d"
#: ../../mod/wall_attach.php:110 ../../mod/wall_attach.php:121
msgid "File upload failed."
msgstr "Hochladen der Datei fehlgeschlagen."
#: ../../mod/profperm.php:25 ../../mod/profperm.php:55
msgid "Invalid profile identifier."
msgstr "Ungültiger Profil-Bezeichner"
#: ../../mod/profperm.php:101
msgid "Profile Visibility Editor"
msgstr "Editor für die Profil-Sichtbarkeit"
#: ../../mod/profperm.php:105 ../../mod/group.php:224
msgid "Click on a contact to add or remove."
msgstr "Klicke einen Kontakt an, um ihn hinzuzufügen oder zu entfernen"
#: ../../mod/profperm.php:114
msgid "Visible To"
msgstr "Sichtbar für"
#: ../../mod/profperm.php:130
msgid "All Contacts (with secure profile access)"
msgstr "Alle Kontakte (mit gesichertem Profilzugriff)"
#: ../../mod/suggest.php:27
msgid "Do you really want to delete this suggestion?"
msgstr "Möchtest du wirklich diese Empfehlung löschen?"
#: ../../mod/suggest.php:66 ../../view/theme/diabook/theme.php:520
#: ../../include/contact_widgets.php:34
msgid "Friend Suggestions"
msgstr "Kontaktvorschläge"
#: ../../mod/suggest.php:72
msgid ""
"No suggestions available. If this is a new site, please try again in 24 "
"hours."
msgstr "Keine Vorschläge. Falls der Server frisch aufgesetzt wurde, versuche es bitte in 24 Stunden noch einmal."
#: ../../mod/suggest.php:88 ../../mod/match.php:58 ../../boot.php:1338
#: ../../include/contact_widgets.php:9
msgid "Connect"
msgstr "Verbinden"
#: ../../mod/suggest.php:90
msgid "Ignore/Hide"
msgstr "Ignorieren/Verbergen"
#: ../../mod/viewsrc.php:7
msgid "Access denied."
msgstr "Zugriff verweigert."
#: ../../mod/dfrn_poll.php:101 ../../mod/dfrn_poll.php:534
#, php-format
msgid "%1$s welcomes %2$s"
msgstr "%1$s heißt %2$s herzlich willkommen"
#: ../../mod/manage.php:106
msgid "Manage Identities and/or Pages"
msgstr "Verwalte Identitäten und/oder Seiten"
#: ../../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"
msgstr "Zwischen verschiedenen Identitäten oder Foren wechseln, die deine Zugangsdaten (E-Mail und Passwort) teilen oder zu denen du „Verwalten“-Befugnisse bekommen hast."
#: ../../mod/manage.php:108
msgid "Select an identity to manage: "
msgstr "Wähle eine Identität zum Verwalten: "
#: ../../mod/delegate.php:95
msgid "No potential page delegates located."
msgstr "Keine potentiellen Bevollmächtigten für die Seite gefunden."
#: ../../mod/delegate.php:121 ../../include/nav.php:165
msgid "Delegate Page Management"
msgstr "Delegiere das Management für die Seite"
#: ../../mod/delegate.php:123
msgid ""
"Delegates are able to manage all aspects of this account/page except for "
"basic account settings. Please do not delegate your personal account to "
"anybody that you do not trust completely."
msgstr "Bevollmächtigte sind in der Lage, alle Aspekte dieses Kontos/dieser Seite zu verwalten, abgesehen von den Grundeinstellungen des Kontos. Bitte gib niemandem eine Bevollmächtigung für deinen privaten Account, dem du nicht absolut vertraust!"
#: ../../mod/delegate.php:124
msgid "Existing Page Managers"
msgstr "Vorhandene Seiten Manager"
#: ../../mod/delegate.php:126
msgid "Existing Page Delegates"
msgstr "Vorhandene Bevollmächtigte für die Seite"
#: ../../mod/delegate.php:128
msgid "Potential Delegates"
msgstr "Potentielle Bevollmächtigte"
#: ../../mod/delegate.php:131
msgid "Add"
msgstr "Hinzufügen"
#: ../../mod/delegate.php:132
msgid "No entries."
msgstr "Keine Einträge"
#: ../../mod/viewcontacts.php:39
msgid "No contacts."
msgstr "Keine Kontakte."
#: ../../mod/viewcontacts.php:76 ../../include/text.php:718
msgid "View Contacts"
msgstr "Kontakte anzeigen"
#: ../../mod/notes.php:44 ../../boot.php:1892
msgid "Personal Notes"
msgstr "Persönliche Notizen"
#: ../../mod/poke.php:192
msgid "Poke/Prod"
msgstr "Anstupsen etc."
#: ../../mod/poke.php:193
msgid "poke, prod or do other things to somebody"
msgstr "Stupse Leute an oder mache anderes mit ihnen"
#: ../../mod/poke.php:194
msgid "Recipient"
msgstr "Empfänger"
#: ../../mod/poke.php:195
msgid "Choose what you wish to do to recipient"
msgstr "Was willst du mit dem Empfänger machen:"
#: ../../mod/poke.php:198
msgid "Make this post private"
msgstr "Diesen Beitrag privat machen"
#: ../../mod/directory.php:49 ../../view/theme/diabook/theme.php:518
msgid "Global Directory"
msgstr "Weltweites Verzeichnis"
#: ../../mod/directory.php:57
msgid "Find on this site"
msgstr "Auf diesem Server suchen"
#: ../../mod/directory.php:60
msgid "Site Directory"
msgstr "Verzeichnis"
#: ../../mod/directory.php:114
msgid "Gender: "
msgstr "Geschlecht:"
#: ../../mod/directory.php:136 ../../boot.php:1408
#: ../../include/profile_advanced.php:17
#: ../../include/profile_advanced.php:17 ../../mod/directory.php:136
#: ../../boot.php:1408
msgid "Gender:"
msgstr "Geschlecht:"
#: ../../mod/directory.php:138 ../../boot.php:1411
#: ../../include/profile_advanced.php:37
msgid "Status:"
msgstr "Status:"
#: ../../mod/directory.php:140 ../../boot.php:1413
#: ../../include/profile_advanced.php:48
msgid "Homepage:"
msgstr "Homepage:"
#: ../../mod/directory.php:142 ../../include/profile_advanced.php:58
msgid "About:"
msgstr "Über:"
#: ../../mod/directory.php:187
msgid "No entries (some entries may be hidden)."
msgstr "Keine Einträge (einige Einträge könnten versteckt sein)."
#: ../../mod/localtime.php:12 ../../include/event.php:11
#: ../../include/bb2diaspora.php:393
msgid "l F d, Y \\@ g:i A"
msgstr "l, d. F Y\\, H:i"
#: ../../mod/localtime.php:24
msgid "Time Conversion"
msgstr "Zeitumrechnung"
#: ../../mod/localtime.php:26
msgid ""
"Friendica provides this service for sharing events with other networks and "
"friends in unknown timezones."
msgstr "Friendica bietet diese Funktion an, um das Teilen von Events mit Kontakten zu vereinfachen, deren Zeitzone nicht ermittelt werden kann."
#: ../../mod/localtime.php:30
#, php-format
msgid "UTC time: %s"
msgstr "UTC Zeit: %s"
#: ../../mod/localtime.php:33
#, php-format
msgid "Current timezone: %s"
msgstr "Aktuelle Zeitzone: %s"
#: ../../mod/localtime.php:36
#, php-format
msgid "Converted localtime: %s"
msgstr "Umgerechnete lokale Zeit: %s"
#: ../../mod/localtime.php:41
msgid "Please select your timezone:"
msgstr "Bitte wähle deine Zeitzone."
#: ../../mod/oexchange.php:25
msgid "Post successful."
msgstr "Beitrag erfolgreich veröffentlicht."
#: ../../mod/profile_photo.php:44
msgid "Image uploaded but image cropping failed."
msgstr "Bilder hochgeladen, aber das Zuschneiden ist fehlgeschlagen."
#: ../../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 "Verkleinern der Bildgröße von [%s] ist gescheitert."
#: ../../mod/profile_photo.php:118
msgid ""
"Shift-reload the page or clear browser cache if the new photo does not "
"display immediately."
msgstr "Drücke Umschalt+Neu Laden oder leere den Browser-Cache, falls das neue Foto nicht gleich angezeigt wird."
#: ../../mod/profile_photo.php:128
msgid "Unable to process image"
msgstr "Bild konnte nicht verarbeitet werden"
#: ../../mod/profile_photo.php:242
msgid "Upload File:"
msgstr "Datei hochladen:"
#: ../../mod/profile_photo.php:243
msgid "Select a profile:"
msgstr "Profil auswählen"
#: ../../mod/profile_photo.php:245
msgid "Upload"
msgstr "Hochladen"
#: ../../mod/profile_photo.php:248
msgid "skip this step"
msgstr "diesen Schritt überspringen"
#: ../../mod/profile_photo.php:248
msgid "select a photo from your photo albums"
msgstr "wähle ein Foto von deinen Fotoalben"
#: ../../mod/profile_photo.php:262
msgid "Crop Image"
msgstr "Bild zurechtschneiden"
#: ../../mod/profile_photo.php:263
msgid "Please adjust the image cropping for optimum viewing."
msgstr "Passe bitte den Bildausschnitt an, damit das Bild optimal dargestellt werden kann."
#: ../../mod/profile_photo.php:265
msgid "Done Editing"
msgstr "Bearbeitung abgeschlossen"
#: ../../mod/profile_photo.php:299
msgid "Image uploaded successfully."
msgstr "Bild erfolgreich auf den Server geladen."
#: ../../mod/install.php:117
msgid "Friendica Social Communications Server - Setup"
msgstr "Friendica-Server für soziale Netzwerke Setup"
#: ../../mod/install.php:123
msgid "Could not connect to database."
msgstr "Verbindung zur Datenbank gescheitert"
#: ../../mod/install.php:127
msgid "Could not create table."
msgstr "Konnte Tabelle nicht erstellen."
#: ../../mod/install.php:133
msgid "Your Friendica site database has been installed."
msgstr "Die Datenbank deiner Friendicaseite wurde installiert."
#: ../../mod/install.php:138
msgid ""
"You may need to import the file \"database.sql\" manually using phpmyadmin "
"or mysql."
msgstr "Möglicherweise musst du die Datei \"database.sql\" manuell mit phpmyadmin oder mysql importieren."
#: ../../mod/install.php:139 ../../mod/install.php:206
#: ../../mod/install.php:506
msgid "Please see the file \"INSTALL.txt\"."
msgstr "Lies bitte die \"INSTALL.txt\"."
#: ../../mod/install.php:203
msgid "System check"
msgstr "Systemtest"
#: ../../mod/install.php:208
msgid "Check again"
msgstr "Noch einmal testen"
#: ../../mod/install.php:227
msgid "Database connection"
msgstr "Datenbankverbindung"
#: ../../mod/install.php:228
msgid ""
"In order to install Friendica we need to know how to connect to your "
"database."
msgstr "Um Friendica installieren zu können, müssen wir wissen, wie wir zu deiner Datenbank Kontakt aufnehmen können."
#: ../../mod/install.php:229
msgid ""
"Please contact your hosting provider or site administrator if you have "
"questions about these settings."
msgstr "Bitte kontaktiere den Hosting Provider oder den Administrator der Seite, falls du Fragen zu diesen Einstellungen haben solltest."
#: ../../mod/install.php:230
msgid ""
"The database you specify below should already exist. If it does not, please "
"create it before continuing."
msgstr "Die Datenbank, die du unten angibst, sollte bereits existieren. Ist dies noch nicht der Fall, erzeuge sie bitte bevor du mit der Installation fortfährst."
#: ../../mod/install.php:234
msgid "Database Server Name"
msgstr "Datenbank-Server"
#: ../../mod/install.php:235
msgid "Database Login Name"
msgstr "Datenbank-Nutzer"
#: ../../mod/install.php:236
msgid "Database Login Password"
msgstr "Datenbank-Passwort"
#: ../../mod/install.php:237
msgid "Database Name"
msgstr "Datenbank-Name"
#: ../../mod/install.php:238 ../../mod/install.php:277
msgid "Site administrator email address"
msgstr "E-Mail-Adresse des Administrators"
#: ../../mod/install.php:238 ../../mod/install.php:277
msgid ""
"Your account email address must match this in order to use the web admin "
"panel."
msgstr "Die E-Mail-Adresse, die in deinem Friendica-Account eingetragen ist, muss mit dieser Adresse übereinstimmen, damit du das Admin-Panel benutzen kannst."
#: ../../mod/install.php:242 ../../mod/install.php:280
msgid "Please select a default timezone for your website"
msgstr "Bitte wähle die Standardzeitzone deiner Webseite"
#: ../../mod/install.php:267
msgid "Site settings"
msgstr "Server-Einstellungen"
#: ../../mod/install.php:320
msgid "Could not find a command line version of PHP in the web server PATH."
msgstr "Konnte keine Kommandozeilenversion von PHP im PATH des Servers finden."
#: ../../mod/install.php:321
msgid ""
"If you don't have a command line version of PHP installed on server, you "
"will not be able to run background polling via cron. See <a "
"href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>"
msgstr "Wenn du keine Kommandozeilen Version von PHP auf deinem Server installiert hast, kannst du keine Hintergrundprozesse via cron starten. Siehe <a href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>"
#: ../../mod/install.php:325
msgid "PHP executable path"
msgstr "Pfad zu PHP"
#: ../../mod/install.php:325
msgid ""
"Enter full path to php executable. You can leave this blank to continue the "
"installation."
msgstr "Gib den kompletten Pfad zur ausführbaren Datei von PHP an. Du kannst dieses Feld auch frei lassen und mit der Installation fortfahren."
#: ../../mod/install.php:330
msgid "Command line PHP"
msgstr "Kommandozeilen-PHP"
#: ../../mod/install.php:339
msgid ""
"The command line version of PHP on your system does not have "
"\"register_argc_argv\" enabled."
msgstr "Die Kommandozeilenversion von PHP auf deinem System hat \"register_argc_argv\" nicht aktiviert."
#: ../../mod/install.php:340
msgid "This is required for message delivery to work."
msgstr "Dies wird für die Auslieferung von Nachrichten benötigt."
#: ../../mod/install.php:342
msgid "PHP register_argc_argv"
msgstr "PHP register_argc_argv"
#: ../../mod/install.php:363
msgid ""
"Error: the \"openssl_pkey_new\" function on this system is not able to "
"generate encryption keys"
msgstr "Fehler: Die Funktion \"openssl_pkey_new\" auf diesem System ist nicht in der Lage, Verschlüsselungsschlüssel zu erzeugen"
#: ../../mod/install.php:364
msgid ""
"If running under Windows, please see "
"\"http://www.php.net/manual/en/openssl.installation.php\"."
msgstr "Wenn der Server unter Windows läuft, schau dir bitte \"http://www.php.net/manual/en/openssl.installation.php\" an."
#: ../../mod/install.php:366
msgid "Generate encryption keys"
msgstr "Schlüssel erzeugen"
#: ../../mod/install.php:373
msgid "libCurl PHP module"
msgstr "PHP: libCurl-Modul"
#: ../../mod/install.php:374
msgid "GD graphics PHP module"
msgstr "PHP: GD-Grafikmodul"
#: ../../mod/install.php:375
msgid "OpenSSL PHP module"
msgstr "PHP: OpenSSL-Modul"
#: ../../mod/install.php:376
msgid "mysqli PHP module"
msgstr "PHP: mysqli-Modul"
#: ../../mod/install.php:377
msgid "mb_string PHP module"
msgstr "PHP: mb_string-Modul"
#: ../../mod/install.php:382 ../../mod/install.php:384
msgid "Apache mod_rewrite module"
msgstr "Apache mod_rewrite module"
#: ../../mod/install.php:382
msgid ""
"Error: Apache webserver mod-rewrite module is required but not installed."
msgstr "Fehler: Das Apache-Modul mod-rewrite wird benötigt, es ist allerdings nicht installiert."
#: ../../mod/install.php:390
msgid "Error: libCURL PHP module required but not installed."
msgstr "Fehler: Das libCURL PHP Modul wird benötigt, ist aber nicht installiert."
#: ../../mod/install.php:394
msgid ""
"Error: GD graphics PHP module with JPEG support required but not installed."
msgstr "Fehler: Das GD-Graphikmodul für PHP mit JPEG-Unterstützung ist nicht installiert."
#: ../../mod/install.php:398
msgid "Error: openssl PHP module required but not installed."
msgstr "Fehler: Das openssl-Modul von PHP ist nicht installiert."
#: ../../mod/install.php:402
msgid "Error: mysqli PHP module required but not installed."
msgstr "Fehler: Das mysqli-Modul von PHP ist nicht installiert."
#: ../../mod/install.php:406
msgid "Error: mb_string PHP module required but not installed."
msgstr "Fehler: mb_string PHP Module wird benötigt ist aber nicht installiert."
#: ../../mod/install.php:423
msgid ""
"The web installer needs to be able to create a file called \".htconfig.php\""
" in the top folder of your web server and it is unable to do so."
msgstr "Der Installationswizard muss in der Lage sein, eine Datei im Stammverzeichnis deines Webservers anzulegen, ist allerdings derzeit nicht in der Lage, dies zu tun."
#: ../../mod/install.php:424
msgid ""
"This is most often a permission setting, as the web server may not be able "
"to write files in your folder - even if you can."
msgstr "In den meisten Fällen ist dies ein Problem mit den Schreibrechten. Der Webserver könnte keine Schreiberlaubnis haben, selbst wenn du sie hast."
#: ../../mod/install.php:425
msgid ""
"At the end of this procedure, we will give you a text to save in a file "
"named .htconfig.php in your Friendica top folder."
msgstr "Nachdem du alles ausgefüllt hast, erhältst du einen Text, den du in eine Datei namens .htconfig.php in deinem Friendica-Wurzelverzeichnis kopieren musst."
#: ../../mod/install.php:426
msgid ""
"You can alternatively skip this procedure and perform a manual installation."
" Please see the file \"INSTALL.txt\" for instructions."
msgstr "Alternativ kannst du diesen Schritt aber auch überspringen und die Installation manuell durchführen. Eine Anleitung dazu (Englisch) findest du in der Datei INSTALL.txt."
#: ../../mod/install.php:429
msgid ".htconfig.php is writable"
msgstr "Schreibrechte auf .htconfig.php"
#: ../../mod/install.php:439
msgid ""
"Friendica uses the Smarty3 template engine to render its web views. Smarty3 "
"compiles templates to PHP to speed up rendering."
msgstr "Friendica nutzt die Smarty3 Template Engine um die Webansichten zu rendern. Smarty3 kompiliert Templates zu PHP um das Rendern zu beschleunigen."
#: ../../mod/install.php:440
msgid ""
"In order to store these compiled templates, the web server needs to have "
"write access to the directory view/smarty3/ under the Friendica top level "
"folder."
msgstr "Um diese kompilierten Templates zu speichern benötigt der Webserver Schreibrechte zum Verzeichnis view/smarty3/ im obersten Ordner von Friendica."
#: ../../mod/install.php:441
msgid ""
"Please ensure that the user that your web server runs as (e.g. www-data) has"
" write access to this folder."
msgstr "Bitte stelle sicher, dass der Nutzer unter dem der Webserver läuft (z.B. www-data) Schreibrechte zu diesem Verzeichnis hat."
#: ../../mod/install.php:442
msgid ""
"Note: as a security measure, you should give the web server write access to "
"view/smarty3/ only--not the template files (.tpl) that it contains."
msgstr "Hinweis: aus Sicherheitsgründen solltest du dem Webserver nur Schreibrechte für view/smarty3/ geben -- Nicht den Templatedateien (.tpl) die sie enthalten."
#: ../../mod/install.php:445
msgid "view/smarty3 is writable"
msgstr "view/smarty3 ist schreibbar"
#: ../../mod/install.php:457
msgid ""
"Url rewrite in .htaccess is not working. Check your server configuration."
msgstr "Umschreiben der URLs in der .htaccess funktioniert nicht. Überprüfe die Konfiguration des Servers."
#: ../../mod/install.php:459
msgid "Url rewrite is working"
msgstr "URL rewrite funktioniert"
#: ../../mod/install.php:469
msgid ""
"The database configuration file \".htconfig.php\" could not be written. "
"Please use the enclosed text to create a configuration file in your web "
"server root."
msgstr "Die Konfigurationsdatei \".htconfig.php\" konnte nicht angelegt werden. Bitte verwende den angefügten Text, um die Datei im Stammverzeichnis deiner Friendica-Installation zu erzeugen."
#: ../../mod/install.php:493
msgid "Errors encountered creating database tables."
msgstr "Fehler aufgetreten während der Erzeugung der Datenbanktabellen."
#: ../../mod/install.php:504
msgid "<h1>What next</h1>"
msgstr "<h1>Wie geht es weiter?</h1>"
#: ../../mod/install.php:505
msgid ""
"IMPORTANT: You will need to [manually] setup a scheduled task for the "
"poller."
msgstr "WICHTIG: Du musst [manuell] einen Cronjob (o.ä.) für den Poller einrichten."
#: ../../mod/group.php:29
msgid "Group created."
msgstr "Gruppe erstellt."
#: ../../mod/group.php:35
msgid "Could not create group."
msgstr "Konnte die Gruppe nicht erstellen."
#: ../../mod/group.php:47 ../../mod/group.php:140
msgid "Group not found."
msgstr "Gruppe nicht gefunden."
#: ../../mod/group.php:60
msgid "Group name changed."
msgstr "Gruppenname geändert."
#: ../../mod/group.php:93
msgid "Create a group of contacts/friends."
msgstr "Eine Gruppe von Kontakten/Freunden anlegen."
#: ../../mod/group.php:94 ../../mod/group.php:180
msgid "Group Name: "
msgstr "Gruppenname:"
#: ../../mod/group.php:113
msgid "Group removed."
msgstr "Gruppe entfernt."
#: ../../mod/group.php:115
msgid "Unable to remove group."
msgstr "Konnte die Gruppe nicht entfernen."
#: ../../mod/group.php:179
msgid "Group Editor"
msgstr "Gruppeneditor"
#: ../../mod/group.php:192
msgid "Members"
msgstr "Mitglieder"
#: ../../mod/content.php:119 ../../mod/network.php:596
msgid "No such group"
msgstr "Es gibt keine solche Gruppe"
#: ../../mod/content.php:130 ../../mod/network.php:607
msgid "Group is empty"
msgstr "Gruppe ist leer"
#: ../../mod/content.php:134 ../../mod/network.php:611
msgid "Group: "
msgstr "Gruppe: "
#: ../../mod/content.php:520 ../../include/conversation.php:662
msgid "View in context"
msgstr "Im Zusammenhang betrachten"
#: ../../mod/regmod.php:63
msgid "Account approved."
msgstr "Konto freigegeben."
#: ../../mod/regmod.php:100
#, php-format
msgid "Registration revoked for %s"
msgstr "Registrierung für %s wurde zurückgezogen"
#: ../../mod/regmod.php:112
msgid "Please login."
msgstr "Bitte melde dich an."
#: ../../mod/match.php:12
msgid "Profile Match"
msgstr "Profilübereinstimmungen"
#: ../../mod/match.php:20
msgid "No keywords to match. Please add keywords to your default profile."
msgstr "Keine Schlüsselwörter zum Abgleichen gefunden. Bitte füge einige Schlüsselwörter zu deinem Standardprofil hinzu."
#: ../../mod/match.php:57
msgid "is interested in:"
msgstr "ist interessiert an:"
#: ../../mod/item.php:105
msgid "Unable to locate original post."
msgstr "Konnte den Originalbeitrag nicht finden."
#: ../../mod/item.php:307
msgid "Empty post discarded."
msgstr "Leerer Beitrag wurde verworfen."
#: ../../mod/item.php:869
msgid "System error. Post not saved."
msgstr "Systemfehler. Beitrag konnte nicht gespeichert werden."
#: ../../mod/item.php:894
#, php-format
msgid ""
"This message was sent to you by %s, a member of the Friendica social "
"network."
msgstr "Diese Nachricht wurde dir von %s geschickt, einem Mitglied des Sozialen Netzwerks Friendica."
#: ../../mod/item.php:896
#, php-format
msgid "You may visit them online at %s"
msgstr "Du kannst sie online unter %s besuchen"
#: ../../mod/item.php:897
msgid ""
"Please contact the sender by replying to this post if you do not wish to "
"receive these messages."
msgstr "Falls du diese Beiträge nicht erhalten möchtest, kontaktiere bitte den Autor, indem du auf diese Nachricht antwortest."
#: ../../mod/item.php:901
#, php-format
msgid "%s posted an update."
msgstr "%s hat ein Update veröffentlicht."
#: ../../mod/mood.php:62 ../../include/conversation.php:227
#, php-format
msgid "%1$s is currently %2$s"
msgstr "%1$s ist momentan %2$s"
#: ../../mod/mood.php:133
msgid "Mood"
msgstr "Stimmung"
#: ../../mod/mood.php:134
msgid "Set your current mood and tell your friends"
msgstr "Wähle deine aktuelle Stimmung und erzähle sie deinen Freunden"
#: ../../mod/network.php:181
msgid "Search Results For:"
msgstr "Suchergebnisse für:"
#: ../../mod/network.php:234 ../../include/group.php:275
msgid "add"
msgstr "hinzufügen"
#: ../../mod/network.php:397
msgid "Commented Order"
msgstr "Neueste Kommentare"
#: ../../mod/network.php:400
msgid "Sort by Comment Date"
msgstr "Nach Kommentardatum sortieren"
#: ../../mod/network.php:403
msgid "Posted Order"
msgstr "Neueste Beiträge"
#: ../../mod/network.php:406
msgid "Sort by Post Date"
msgstr "Nach Beitragsdatum sortieren"
#: ../../mod/network.php:447
msgid "Posts that mention or involve you"
msgstr "Beiträge, in denen es um dich geht"
#: ../../mod/network.php:453
msgid "New"
msgstr "Neue"
#: ../../mod/network.php:456
msgid "Activity Stream - by date"
msgstr "Aktivitäten-Stream - nach Datum"
#: ../../mod/network.php:462
msgid "Shared Links"
msgstr "Geteilte Links"
#: ../../mod/network.php:465
msgid "Interesting Links"
msgstr "Interessante Links"
#: ../../mod/network.php:471
msgid "Starred"
msgstr "Markierte"
#: ../../mod/network.php:474
msgid "Favourite Posts"
msgstr "Favorisierte Beiträge"
#: ../../mod/network.php:546
#, php-format
msgid "Warning: This group contains %s member from an insecure network."
msgid_plural ""
"Warning: This group contains %s members from an insecure network."
msgstr[0] "Warnung: Diese Gruppe beinhaltet %s Person aus einem unsicheren Netzwerk."
msgstr[1] "Warnung: Diese Gruppe beinhaltet %s Personen aus unsicheren Netzwerken."
#: ../../mod/network.php:549
msgid "Private messages to this group are at risk of public disclosure."
msgstr "Private Nachrichten an diese Gruppe könnten an die Öffentlichkeit geraten."
#: ../../mod/network.php:621
msgid "Contact: "
msgstr "Kontakt: "
#: ../../mod/network.php:623
msgid "Private messages to this person are at risk of public disclosure."
msgstr "Private Nachrichten an diese Person könnten an die Öffentlichkeit gelangen."
#: ../../mod/network.php:628
msgid "Invalid contact."
msgstr "Ungültiger Kontakt."
#: ../../mod/crepair.php:102
msgid "Contact settings applied."
msgstr "Einstellungen zum Kontakt angewandt."
#: ../../mod/crepair.php:104
msgid "Contact update failed."
msgstr "Konnte den Kontakt nicht aktualisieren."
#: ../../mod/crepair.php:135
msgid "Repair Contact Settings"
msgstr "Kontakteinstellungen reparieren"
#: ../../mod/crepair.php:137
msgid ""
"<strong>WARNING: This is highly advanced</strong> and if you enter incorrect"
" information your communications with this contact may stop working."
msgstr "<strong>ACHTUNG: Das sind Experten-Einstellungen!</strong> Wenn du etwas Falsches eingibst, funktioniert die Kommunikation mit diesem Kontakt evtl. nicht mehr."
#: ../../mod/crepair.php:138
msgid ""
"Please use your browser 'Back' button <strong>now</strong> if you are "
"uncertain what to do on this page."
msgstr "Bitte nutze den Zurück-Button deines Browsers <strong>jetzt</strong>, wenn du dir unsicher bist, was du tun willst."
#: ../../mod/crepair.php:144
msgid "Return to contact editor"
msgstr "Zurück zum Kontakteditor"
#: ../../mod/crepair.php:149
msgid "Account Nickname"
msgstr "Konto-Spitzname"
#: ../../mod/crepair.php:150
msgid "@Tagname - overrides Name/Nickname"
msgstr "@Tagname - überschreibt Name/Spitzname"
#: ../../mod/crepair.php:151
msgid "Account URL"
msgstr "Konto-URL"
#: ../../mod/crepair.php:152
msgid "Friend Request URL"
msgstr "URL für Freundschaftsanfragen"
#: ../../mod/crepair.php:153
msgid "Friend Confirm URL"
msgstr "URL für Bestätigungen von Freundschaftsanfragen"
#: ../../mod/crepair.php:154
msgid "Notification Endpoint URL"
msgstr "URL-Endpunkt für Benachrichtigungen"
#: ../../mod/crepair.php:155
msgid "Poll/Feed URL"
msgstr "Pull/Feed-URL"
#: ../../mod/crepair.php:156
msgid "New photo from this URL"
msgstr "Neues Foto von dieser URL"
#: ../../view/theme/diabook/theme.php:87 ../../include/nav.php:76
#: ../../include/nav.php:143
msgid "Your posts and conversations"
msgstr "Deine Beiträge und Unterhaltungen"
#: ../../view/theme/diabook/theme.php:88 ../../include/nav.php:77
msgid "Your profile page"
msgstr "Deine Profilseite"
#: ../../view/theme/diabook/theme.php:89
msgid "Your contacts"
msgstr "Deine Kontakte"
#: ../../view/theme/diabook/theme.php:90 ../../include/nav.php:78
msgid "Your photos"
msgstr "Deine Fotos"
#: ../../view/theme/diabook/theme.php:91 ../../include/nav.php:79
msgid "Your events"
msgstr "Deine Ereignisse"
#: ../../view/theme/diabook/theme.php:92 ../../include/nav.php:80
msgid "Personal notes"
msgstr "Persönliche Notizen"
#: ../../view/theme/diabook/theme.php:92 ../../include/nav.php:80
msgid "Your personal photos"
msgstr "Deine privaten Fotos"
#: ../../view/theme/diabook/theme.php:94
#: ../../view/theme/diabook/theme.php:537
#: ../../view/theme/diabook/theme.php:632
#: ../../view/theme/diabook/config.php:163
msgid "Community Pages"
msgstr "Foren"
#: ../../view/theme/diabook/theme.php:384
#: ../../view/theme/diabook/theme.php:634
#: ../../view/theme/diabook/config.php:165
msgid "Community Profiles"
msgstr "Community-Profile"
#: ../../view/theme/diabook/theme.php:405
#: ../../view/theme/diabook/theme.php:639
#: ../../view/theme/diabook/config.php:170
msgid "Last users"
msgstr "Letzte Nutzer"
#: ../../view/theme/diabook/theme.php:434
#: ../../view/theme/diabook/theme.php:641
#: ../../view/theme/diabook/config.php:172
msgid "Last likes"
msgstr "Zuletzt gemocht"
#: ../../view/theme/diabook/theme.php:456 ../../include/text.php:1554
#: ../../include/conversation.php:118 ../../include/conversation.php:246
msgid "event"
msgstr "Veranstaltung"
#: ../../view/theme/diabook/theme.php:479
#: ../../view/theme/diabook/theme.php:640
#: ../../view/theme/diabook/config.php:171
msgid "Last photos"
msgstr "Letzte Fotos"
#: ../../view/theme/diabook/theme.php:516
#: ../../view/theme/diabook/theme.php:637
#: ../../view/theme/diabook/config.php:168
msgid "Find Friends"
msgstr "Freunde finden"
#: ../../view/theme/diabook/theme.php:517
msgid "Local Directory"
msgstr "Lokales Verzeichnis"
#: ../../view/theme/diabook/theme.php:519 ../../include/contact_widgets.php:35
msgid "Similar Interests"
msgstr "Ähnliche Interessen"
#: ../../view/theme/diabook/theme.php:521 ../../include/contact_widgets.php:37
msgid "Invite Friends"
msgstr "Freunde einladen"
#: ../../view/theme/diabook/theme.php:572
#: ../../view/theme/diabook/theme.php:633
#: ../../view/theme/diabook/config.php:164
msgid "Earth Layers"
msgstr "Earth Layers"
#: ../../view/theme/diabook/theme.php:577
msgid "Set zoomfactor for Earth Layers"
msgstr "Zoomfaktor der Earth Layer"
#: ../../view/theme/diabook/theme.php:578
#: ../../view/theme/diabook/config.php:161
msgid "Set longitude (X) for Earth Layers"
msgstr "Longitude (X) der Earth Layer"
#: ../../view/theme/diabook/theme.php:579
#: ../../view/theme/diabook/config.php:162
msgid "Set latitude (Y) for Earth Layers"
msgstr "Latitude (Y) der Earth Layer"
#: ../../view/theme/diabook/theme.php:592
#: ../../view/theme/diabook/theme.php:635
#: ../../view/theme/diabook/config.php:166
msgid "Help or @NewHere ?"
msgstr "Hilfe oder @NewHere"
#: ../../view/theme/diabook/theme.php:599
#: ../../view/theme/diabook/theme.php:636
#: ../../view/theme/diabook/config.php:167
msgid "Connect Services"
msgstr "Verbinde Dienste"
#: ../../view/theme/diabook/theme.php:606
#: ../../view/theme/diabook/theme.php:638
msgid "Last Tweets"
msgstr "Neueste Tweets"
#: ../../view/theme/diabook/theme.php:609
#: ../../view/theme/diabook/config.php:159
msgid "Set twitter search term"
msgstr "Twitter Suchbegriff"
#: ../../view/theme/diabook/theme.php:629
#: ../../view/theme/diabook/config.php:146 ../../include/acl_selectors.php:327
msgid "don't show"
msgstr "nicht zeigen"
#: ../../view/theme/diabook/theme.php:629
#: ../../view/theme/diabook/config.php:146 ../../include/acl_selectors.php:326
msgid "show"
msgstr "zeigen"
#: ../../view/theme/diabook/theme.php:630
msgid "Show/hide boxes at right-hand column:"
msgstr "Rahmen auf der rechten Seite anzeigen/verbergen"
#: ../../view/theme/diabook/config.php:154
#: ../../view/theme/dispy/config.php:72 ../../view/theme/quattro/config.php:66
#: ../../view/theme/cleanzero/config.php:82
msgid "Theme settings"
msgstr "Themeneinstellungen"
#: ../../view/theme/diabook/config.php:155
#: ../../view/theme/dispy/config.php:73
#: ../../view/theme/cleanzero/config.php:84
msgid "Set font-size for posts and comments"
msgstr "Schriftgröße für Beiträge und Kommentare festlegen"
#: ../../view/theme/diabook/config.php:156
#: ../../view/theme/dispy/config.php:74
msgid "Set line-height for posts and comments"
msgstr "Liniengröße für Beiträge und Kommantare festlegen"
#: ../../view/theme/diabook/config.php:157
msgid "Set resolution for middle column"
msgstr "Auflösung für die Mittelspalte setzen"
#: ../../view/theme/diabook/config.php:158
msgid "Set color scheme"
msgstr "Wähle Farbschema"
#: ../../view/theme/diabook/config.php:160
msgid "Set zoomfactor for Earth Layer"
msgstr "Zoomfaktor der Earth Layer"
#: ../../view/theme/diabook/config.php:169
msgid "Last tweets"
msgstr "Neueste Tweets"
#: ../../view/theme/dispy/config.php:75
msgid "Set colour scheme"
msgstr "Farbschema wählen"
#: ../../view/theme/quattro/config.php:67
msgid "Alignment"
msgstr "Ausrichtung"
#: ../../view/theme/quattro/config.php:67
msgid "Left"
msgstr "Links"
#: ../../view/theme/quattro/config.php:67
msgid "Center"
msgstr "Mitte"
#: ../../view/theme/quattro/config.php:68
#: ../../view/theme/cleanzero/config.php:86
msgid "Color scheme"
msgstr "Farbschema"
#: ../../view/theme/quattro/config.php:69
msgid "Posts font size"
msgstr "Schriftgröße in Beiträgen"
#: ../../view/theme/quattro/config.php:70
msgid "Textareas font size"
msgstr "Schriftgröße in Eingabefeldern"
#: ../../view/theme/cleanzero/config.php:83
msgid "Set resize level for images in posts and comments (width and height)"
msgstr "Wähle das Vergrößerungsmaß für Bilder in Beiträgen und Kommentaren (Höhe und Breite)"
#: ../../view/theme/cleanzero/config.php:85
msgid "Set theme width"
msgstr "Theme Breite festlegen"
#: ../../boot.php:650
msgid "Delete this item?"
msgstr "Diesen Beitrag löschen?"
#: ../../boot.php:653
msgid "show fewer"
msgstr "weniger anzeigen"
#: ../../boot.php:920
#, php-format
msgid "Update %s failed. See error logs."
msgstr "Update %s fehlgeschlagen. Bitte Fehlerprotokoll überprüfen."
#: ../../boot.php:922
#, php-format
msgid "Update Error at %s"
msgstr "Updatefehler bei %s"
#: ../../boot.php:1032
msgid "Create a New Account"
msgstr "Neues Konto erstellen"
#: ../../boot.php:1057 ../../include/nav.php:73
msgid "Logout"
msgstr "Abmelden"
#: ../../boot.php:1058 ../../include/nav.php:91
msgid "Login"
msgstr "Anmeldung"
#: ../../boot.php:1060
msgid "Nickname or Email address: "
msgstr "Spitzname oder E-Mail-Adresse: "
#: ../../boot.php:1061
msgid "Password: "
msgstr "Passwort: "
#: ../../boot.php:1062
msgid "Remember me"
msgstr "Anmeldedaten merken"
#: ../../boot.php:1065
msgid "Or login using OpenID: "
msgstr "Oder melde dich mit deiner OpenID an: "
#: ../../boot.php:1071
msgid "Forgot your password?"
msgstr "Passwort vergessen?"
#: ../../boot.php:1074
msgid "Website Terms of Service"
msgstr "Website Nutzungsbedingungen"
#: ../../boot.php:1075
msgid "terms of service"
msgstr "Nutzungsbedingungen"
#: ../../boot.php:1077
msgid "Website Privacy Policy"
msgstr "Website Datenschutzerklärung"
#: ../../boot.php:1078
msgid "privacy policy"
msgstr "Datenschutzerklärung"
#: ../../boot.php:1207
msgid "Requested account is not available."
msgstr "Das angefragte Profil ist nicht vorhanden."
#: ../../boot.php:1286 ../../boot.php:1390
msgid "Edit profile"
msgstr "Profil bearbeiten"
#: ../../boot.php:1352
msgid "Message"
msgstr "Nachricht"
#: ../../boot.php:1360 ../../include/nav.php:169
msgid "Profiles"
msgstr "Profile"
#: ../../boot.php:1360
msgid "Manage/edit profiles"
msgstr "Profile verwalten/editieren"
#: ../../boot.php:1489 ../../boot.php:1575
msgid "g A l F d"
msgstr "l, d. F G \\U\\h\\r"
#: ../../boot.php:1490 ../../boot.php:1576
msgid "F d"
msgstr "d. F"
#: ../../boot.php:1535 ../../boot.php:1616
msgid "[today]"
msgstr "[heute]"
#: ../../boot.php:1547
msgid "Birthday Reminders"
msgstr "Geburtstagserinnerungen"
#: ../../boot.php:1548
msgid "Birthdays this week:"
msgstr "Geburtstage diese Woche:"
#: ../../boot.php:1609
msgid "[No description]"
msgstr "[keine Beschreibung]"
#: ../../boot.php:1627
msgid "Event Reminders"
msgstr "Veranstaltungserinnerungen"
#: ../../boot.php:1628
msgid "Events this week:"
msgstr "Veranstaltungen diese Woche"
#: ../../boot.php:1861 ../../include/nav.php:76
msgid "Status"
msgstr "Status"
#: ../../boot.php:1864
msgid "Status Messages and Posts"
msgstr "Statusnachrichten und Beiträge"
#: ../../boot.php:1871
msgid "Profile Details"
msgstr "Profildetails"
#: ../../boot.php:1888
msgid "Events and Calendar"
msgstr "Ereignisse und Kalender"
#: ../../boot.php:1895
msgid "Only You Can See This"
msgstr "Nur du kannst das sehen"
#: ../../include/features.php:23
msgid "General Features"
msgstr "Allgemeine Features"
#: ../../include/features.php:25
msgid "Multiple Profiles"
msgstr "Mehrere Profile"
#: ../../include/features.php:25
msgid "Ability to create multiple profiles"
msgstr "Möglichkeit mehrere Profile zu erstellen"
#: ../../include/features.php:30
msgid "Post Composition Features"
msgstr "Beitragserstellung Features"
#: ../../include/features.php:31
msgid "Richtext Editor"
msgstr "Web-Editor"
#: ../../include/features.php:31
msgid "Enable richtext editor"
msgstr "Den Web-Editor für neue Beiträge aktivieren"
#: ../../include/features.php:32
msgid "Post Preview"
msgstr "Beitragsvorschau"
#: ../../include/features.php:32
msgid "Allow previewing posts and comments before publishing them"
msgstr "Die Vorschau von Beiträgen und Kommentaren vor dem absenden erlauben."
#: ../../include/features.php:37
msgid "Network Sidebar Widgets"
msgstr "Widgets für Netzwerk und Seitenleiste"
#: ../../include/features.php:38
msgid "Search by Date"
msgstr "Archiv"
#: ../../include/features.php:38
msgid "Ability to select posts by date ranges"
msgstr "Möglichkeit die Beiträge nach Datumsbereichen zu sortieren"
#: ../../include/features.php:39
msgid "Group Filter"
msgstr "Gruppen Filter"
#: ../../include/features.php:39
msgid "Enable widget to display Network posts only from selected group"
msgstr "Widget zur Darstellung der Beiträge nach Kontaktgruppen sortiert aktivieren."
#: ../../include/features.php:40
msgid "Network Filter"
msgstr "Netzwerk Filter"
#: ../../include/features.php:40
msgid "Enable widget to display Network posts only from selected network"
msgstr "Widget zum filtern der Beiträge in Abhängigkeit des Netzwerks aus dem der Ersteller sendet aktivieren."
#: ../../include/features.php:41
msgid "Save search terms for re-use"
msgstr "Speichere Suchanfragen für spätere Wiederholung."
#: ../../include/features.php:46
msgid "Network Tabs"
msgstr "Netzwerk Reiter"
#: ../../include/features.php:47
msgid "Network Personal Tab"
msgstr "Netzwerk-Reiter: Persönlich"
#: ../../include/features.php:47
msgid "Enable tab to display only Network posts that you've interacted on"
msgstr "Aktiviert einen Netzwerk-Reiter in dem Nachrichten angezeigt werden mit denen du interagiert hast"
#: ../../include/features.php:48
msgid "Network New Tab"
msgstr "Netzwerk-Reiter: Neue"
#: ../../include/features.php:48
msgid "Enable tab to display only new Network posts (from the last 12 hours)"
msgstr "Aktiviert einen Netzwerk-Reiter in dem ausschließlich neue Beiträge (der letzten 12 Stunden) angezeigt werden"
#: ../../include/features.php:49
msgid "Network Shared Links Tab"
msgstr "Netzwerk-Reiter: Geteilte Links"
#: ../../include/features.php:49
msgid "Enable tab to display only Network posts with links in them"
msgstr "Aktiviert einen Netzwerk-Reiter der ausschließlich Nachrichten mit Links enthält"
#: ../../include/features.php:54
msgid "Post/Comment Tools"
msgstr "Werkzeuge für Beiträge und Kommentare"
#: ../../include/features.php:55
msgid "Multiple Deletion"
msgstr "Mehrere Beiträge löschen"
#: ../../include/features.php:55
msgid "Select and delete multiple posts/comments at once"
msgstr "Mehrere Beiträge/Kommentare markieren und gleichzeitig löschen"
#: ../../include/features.php:56
msgid "Edit Sent Posts"
msgstr "Gesendete Beiträge editieren"
#: ../../include/features.php:56
msgid "Edit and correct posts and comments after sending"
msgstr "Erlaubt es Beiträge und Kommentare nach dem Senden zu editieren bzw.zu korrigieren."
#: ../../include/features.php:57
msgid "Tagging"
msgstr "Tagging"
#: ../../include/features.php:57
msgid "Ability to tag existing posts"
msgstr "Möglichkeit bereits existierende Beiträge nachträglich mit Tags zu versehen."
#: ../../include/features.php:58
msgid "Post Categories"
msgstr "Beitragskategorien"
#: ../../include/features.php:58
msgid "Add categories to your posts"
msgstr "Eigene Beiträge mit Kategorien versehen"
#: ../../include/features.php:59 ../../include/contact_widgets.php:103
msgid "Saved Folders"
msgstr "Gespeicherte Ordner"
#: ../../include/features.php:59
msgid "Ability to file posts under folders"
msgstr "Beiträge in Ordnern speichern aktivieren"
#: ../../include/features.php:60
msgid "Dislike Posts"
msgstr "Beiträge 'nicht mögen'"
#: ../../include/features.php:60
msgid "Ability to dislike posts/comments"
msgstr "Ermöglicht es Beiträge mit einem Klick 'nicht zu mögen'"
#: ../../include/features.php:61
msgid "Star Posts"
msgstr "Beiträge Markieren"
#: ../../include/features.php:61
msgid "Ability to mark special posts with a star indicator"
msgstr "Erlaubt es Beiträge mit einem Stern-Indikator zu markieren"
#: ../../include/auth.php:38
msgid "Logged out."
msgstr "Abgemeldet."
#: ../../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 "Beim Versuch dich mit der von dir angegebenen OpenID anzumelden trat ein Problem auf. Bitte überprüfe, dass du die OpenID richtig geschrieben hast."
#: ../../include/auth.php:128
msgid "The error message was:"
msgstr "Die Fehlermeldung lautete:"
#: ../../include/event.php:20 ../../include/bb2diaspora.php:399
msgid "Starts:"
msgstr "Beginnt:"
#: ../../include/event.php:30 ../../include/bb2diaspora.php:407
msgid "Finishes:"
msgstr "Endet:"
#: ../../include/profile_advanced.php:22
msgid "j F, Y"
msgstr "j F, Y"
@ -5528,23 +67,57 @@ msgstr "Geburtstag:"
msgid "Age:"
msgstr "Alter:"
#: ../../include/profile_advanced.php:37 ../../mod/directory.php:138
#: ../../boot.php:1411
msgid "Status:"
msgstr "Status:"
#: ../../include/profile_advanced.php:43
#, php-format
msgid "for %1$d %2$s"
msgstr "für %1$d %2$s"
#: ../../include/profile_advanced.php:46 ../../mod/profiles.php:646
msgid "Sexual Preference:"
msgstr "Sexuelle Vorlieben:"
#: ../../include/profile_advanced.php:48 ../../mod/directory.php:140
#: ../../boot.php:1413
msgid "Homepage:"
msgstr "Homepage:"
#: ../../include/profile_advanced.php:50 ../../mod/profiles.php:648
msgid "Hometown:"
msgstr "Heimatort:"
#: ../../include/profile_advanced.php:52
msgid "Tags:"
msgstr "Tags"
#: ../../include/profile_advanced.php:54 ../../mod/profiles.php:649
msgid "Political Views:"
msgstr "Politische Ansichten:"
#: ../../include/profile_advanced.php:56
msgid "Religion:"
msgstr "Religion:"
#: ../../include/profile_advanced.php:58 ../../mod/directory.php:142
msgid "About:"
msgstr "Über:"
#: ../../include/profile_advanced.php:60
msgid "Hobbies/Interests:"
msgstr "Hobbies/Interessen:"
#: ../../include/profile_advanced.php:62 ../../mod/profiles.php:653
msgid "Likes:"
msgstr "Likes:"
#: ../../include/profile_advanced.php:64 ../../mod/profiles.php:654
msgid "Dislikes:"
msgstr "Dislikes:"
#: ../../include/profile_advanced.php:67
msgid "Contact information and Social Networks:"
msgstr "Kontaktinformationen und Soziale Netzwerke:"
@ -5577,402 +150,6 @@ msgstr "Arbeit/Beschäftigung:"
msgid "School/education:"
msgstr "Schule/Ausbildung:"
#: ../../include/message.php:15 ../../include/message.php:172
msgid "[no subject]"
msgstr "[kein Betreff]"
#: ../../include/Scrape.php:583
msgid " on Last.fm"
msgstr " bei Last.fm"
#: ../../include/text.php:276
msgid "prev"
msgstr "vorige"
#: ../../include/text.php:278
msgid "first"
msgstr "erste"
#: ../../include/text.php:307
msgid "last"
msgstr "letzte"
#: ../../include/text.php:310
msgid "next"
msgstr "nächste"
#: ../../include/text.php:328
msgid "newer"
msgstr "neuer"
#: ../../include/text.php:332
msgid "older"
msgstr "älter"
#: ../../include/text.php:697
msgid "No contacts"
msgstr "Keine Kontakte"
#: ../../include/text.php:706
#, php-format
msgid "%d Contact"
msgid_plural "%d Contacts"
msgstr[0] "%d Kontakt"
msgstr[1] "%d Kontakte"
#: ../../include/text.php:819
msgid "poke"
msgstr "anstupsen"
#: ../../include/text.php:819 ../../include/conversation.php:211
msgid "poked"
msgstr "stupste"
#: ../../include/text.php:820
msgid "ping"
msgstr "anpingen"
#: ../../include/text.php:820
msgid "pinged"
msgstr "pingte"
#: ../../include/text.php:821
msgid "prod"
msgstr "knuffen"
#: ../../include/text.php:821
msgid "prodded"
msgstr "knuffte"
#: ../../include/text.php:822
msgid "slap"
msgstr "ohrfeigen"
#: ../../include/text.php:822
msgid "slapped"
msgstr "ohrfeigte"
#: ../../include/text.php:823
msgid "finger"
msgstr "befummeln"
#: ../../include/text.php:823
msgid "fingered"
msgstr "befummelte"
#: ../../include/text.php:824
msgid "rebuff"
msgstr "eine Abfuhr erteilen"
#: ../../include/text.php:824
msgid "rebuffed"
msgstr "abfuhrerteilte"
#: ../../include/text.php:836
msgid "happy"
msgstr "glücklich"
#: ../../include/text.php:837
msgid "sad"
msgstr "traurig"
#: ../../include/text.php:838
msgid "mellow"
msgstr "sanft"
#: ../../include/text.php:839
msgid "tired"
msgstr "müde"
#: ../../include/text.php:840
msgid "perky"
msgstr "frech"
#: ../../include/text.php:841
msgid "angry"
msgstr "sauer"
#: ../../include/text.php:842
msgid "stupified"
msgstr "verblüfft"
#: ../../include/text.php:843
msgid "puzzled"
msgstr "verwirrt"
#: ../../include/text.php:844
msgid "interested"
msgstr "interessiert"
#: ../../include/text.php:845
msgid "bitter"
msgstr "verbittert"
#: ../../include/text.php:846
msgid "cheerful"
msgstr "fröhlich"
#: ../../include/text.php:847
msgid "alive"
msgstr "lebendig"
#: ../../include/text.php:848
msgid "annoyed"
msgstr "verärgert"
#: ../../include/text.php:849
msgid "anxious"
msgstr "unruhig"
#: ../../include/text.php:850
msgid "cranky"
msgstr "schrullig"
#: ../../include/text.php:851
msgid "disturbed"
msgstr "verstört"
#: ../../include/text.php:852
msgid "frustrated"
msgstr "frustriert"
#: ../../include/text.php:853
msgid "motivated"
msgstr "motiviert"
#: ../../include/text.php:854
msgid "relaxed"
msgstr "entspannt"
#: ../../include/text.php:855
msgid "surprised"
msgstr "überrascht"
#: ../../include/text.php:1015
msgid "Monday"
msgstr "Montag"
#: ../../include/text.php:1015
msgid "Tuesday"
msgstr "Dienstag"
#: ../../include/text.php:1015
msgid "Wednesday"
msgstr "Mittwoch"
#: ../../include/text.php:1015
msgid "Thursday"
msgstr "Donnerstag"
#: ../../include/text.php:1015
msgid "Friday"
msgstr "Freitag"
#: ../../include/text.php:1015
msgid "Saturday"
msgstr "Samstag"
#: ../../include/text.php:1015
msgid "Sunday"
msgstr "Sonntag"
#: ../../include/text.php:1019
msgid "January"
msgstr "Januar"
#: ../../include/text.php:1019
msgid "February"
msgstr "Februar"
#: ../../include/text.php:1019
msgid "March"
msgstr "März"
#: ../../include/text.php:1019
msgid "April"
msgstr "April"
#: ../../include/text.php:1019
msgid "May"
msgstr "Mai"
#: ../../include/text.php:1019
msgid "June"
msgstr "Juni"
#: ../../include/text.php:1019
msgid "July"
msgstr "Juli"
#: ../../include/text.php:1019
msgid "August"
msgstr "August"
#: ../../include/text.php:1019
msgid "September"
msgstr "September"
#: ../../include/text.php:1019
msgid "October"
msgstr "Oktober"
#: ../../include/text.php:1019
msgid "November"
msgstr "November"
#: ../../include/text.php:1019
msgid "December"
msgstr "Dezember"
#: ../../include/text.php:1124
msgid "bytes"
msgstr "Byte"
#: ../../include/text.php:1151 ../../include/text.php:1163
msgid "Click to open/close"
msgstr "Zum öffnen/schließen klicken"
#: ../../include/text.php:1336 ../../include/user.php:237
msgid "default"
msgstr "Standard"
#: ../../include/text.php:1348
msgid "Select an alternate language"
msgstr "Alternative Sprache auswählen"
#: ../../include/text.php:1558
msgid "activity"
msgstr "Aktivität"
#: ../../include/text.php:1561
msgid "post"
msgstr "Beitrag"
#: ../../include/text.php:1716
msgid "Item filed"
msgstr "Beitrag abgelegt"
#: ../../include/dba.php:44
#, php-format
msgid "Cannot locate DNS info for database server '%s'"
msgstr "Kann die DNS Informationen für den Datenbankserver '%s' nicht ermitteln."
#: ../../include/items.php:1764 ../../include/datetime.php:472
#, php-format
msgid "%s's birthday"
msgstr "%ss Geburtstag"
#: ../../include/items.php:1765 ../../include/datetime.php:473
#, php-format
msgid "Happy Birthday %s"
msgstr "Herzlichen Glückwunsch %s"
#: ../../include/items.php:3446
msgid "A new person is sharing with you at "
msgstr "Eine neue Person teilt mit dir auf "
#: ../../include/items.php:3446
msgid "You have a new follower at "
msgstr "Du hast einen neuen Kontakt auf "
#: ../../include/items.php:3965
msgid "Do you really want to delete this item?"
msgstr "Möchtest du wirklich dieses Item löschen?"
#: ../../include/items.php:4160
msgid "Archives"
msgstr "Archiv"
#: ../../include/delivery.php:457 ../../include/notifier.php:775
msgid "(no subject)"
msgstr "(kein Betreff)"
#: ../../include/delivery.php:468 ../../include/notifier.php:785
#: ../../include/enotify.php:28
msgid "noreply"
msgstr "noreply"
#: ../../include/diaspora.php:704
msgid "Sharing notification from Diaspora network"
msgstr "Freigabe-Benachrichtigung von Diaspora"
#: ../../include/diaspora.php:2262
msgid "Attachments:"
msgstr "Anhänge:"
#: ../../include/follow.php:32
msgid "Connect URL missing."
msgstr "Connect-URL fehlt"
#: ../../include/follow.php:59
msgid ""
"This site is not configured to allow communications with other networks."
msgstr "Diese Seite ist so konfiguriert, dass keine Kommunikation mit anderen Netzwerken erfolgen kann."
#: ../../include/follow.php:60 ../../include/follow.php:80
msgid "No compatible communication protocols or feeds were discovered."
msgstr "Es wurden keine kompatiblen Kommunikationsprotokolle oder Feeds gefunden."
#: ../../include/follow.php:78
msgid "The profile address specified does not provide adequate information."
msgstr "Die angegebene Profiladresse liefert unzureichende Informationen."
#: ../../include/follow.php:82
msgid "An author or name was not found."
msgstr "Es wurde kein Autor oder Name gefunden."
#: ../../include/follow.php:84
msgid "No browser URL could be matched to this address."
msgstr "Zu dieser Adresse konnte keine passende Browser URL gefunden werden."
#: ../../include/follow.php:86
msgid ""
"Unable to match @-style Identity Address with a known protocol or email "
"contact."
msgstr "Konnte die @-Adresse mit keinem der bekannten Protokolle oder Email-Kontakte abgleichen."
#: ../../include/follow.php:87
msgid "Use mailto: in front of address to force email check."
msgstr "Verwende mailto: vor der Email Adresse, um eine Überprüfung der E-Mail-Adresse zu erzwingen."
#: ../../include/follow.php:93
msgid ""
"The profile address specified belongs to a network which has been disabled "
"on this site."
msgstr "Die Adresse dieses Profils gehört zu einem Netzwerk, mit dem die Kommunikation auf dieser Seite ausgeschaltet wurde."
#: ../../include/follow.php:103
msgid ""
"Limited profile. This person will be unable to receive direct/personal "
"notifications from you."
msgstr "Eingeschränktes Profil. Diese Person wird keine direkten/privaten Nachrichten von dir erhalten können."
#: ../../include/follow.php:205
msgid "Unable to retrieve contact information."
msgstr "Konnte die Kontaktinformationen nicht empfangen."
#: ../../include/follow.php:259
msgid "following"
msgstr "folgen"
#: ../../include/security.php:22
msgid "Welcome "
msgstr "Willkommen "
#: ../../include/security.php:23
msgid "Please upload a profile photo."
msgstr "Bitte lade ein Profilbild hoch."
#: ../../include/security.php:26
msgid "Welcome back "
msgstr "Willkommen zurück "
#: ../../include/security.php:366
msgid ""
"The form security token was not correct. This probably happened because the "
"form has been opened for too long (>3 hours) before submitting it."
msgstr "Das Sicherheitsmerkmal war nicht korrekt. Das passiert meistens wenn das Formular vor dem Absenden zu lange geöffnet war (länger als 3 Stunden)."
#: ../../include/profile_selectors.php:6
msgid "Male"
msgstr "Männlich"
@ -6206,6 +383,377 @@ msgstr "Ist mir nicht wichtig"
msgid "Ask me"
msgstr "Frag mich"
#: ../../include/Contact.php:115
msgid "stopped following"
msgstr "wird nicht mehr gefolgt"
#: ../../include/Contact.php:225 ../../include/conversation.php:838
msgid "Poke"
msgstr "Anstupsen"
#: ../../include/Contact.php:226 ../../include/conversation.php:832
msgid "View Status"
msgstr "Pinnwand anschauen"
#: ../../include/Contact.php:227 ../../include/conversation.php:833
msgid "View Profile"
msgstr "Profil anschauen"
#: ../../include/Contact.php:228 ../../include/conversation.php:834
msgid "View Photos"
msgstr "Bilder anschauen"
#: ../../include/Contact.php:229 ../../include/Contact.php:251
#: ../../include/conversation.php:835
msgid "Network Posts"
msgstr "Netzwerkbeiträge"
#: ../../include/Contact.php:230 ../../include/Contact.php:251
#: ../../include/conversation.php:836
msgid "Edit Contact"
msgstr "Kontakt bearbeiten"
#: ../../include/Contact.php:231 ../../include/Contact.php:251
#: ../../include/conversation.php:837
msgid "Send PM"
msgstr "Private Nachricht senden"
#: ../../include/text.php:276
msgid "prev"
msgstr "vorige"
#: ../../include/text.php:278
msgid "first"
msgstr "erste"
#: ../../include/text.php:307
msgid "last"
msgstr "letzte"
#: ../../include/text.php:310
msgid "next"
msgstr "nächste"
#: ../../include/text.php:328
msgid "newer"
msgstr "neuer"
#: ../../include/text.php:332
msgid "older"
msgstr "älter"
#: ../../include/text.php:697
msgid "No contacts"
msgstr "Keine Kontakte"
#: ../../include/text.php:706
#, php-format
msgid "%d Contact"
msgid_plural "%d Contacts"
msgstr[0] "%d Kontakt"
msgstr[1] "%d Kontakte"
#: ../../include/text.php:718 ../../mod/viewcontacts.php:76
msgid "View Contacts"
msgstr "Kontakte anzeigen"
#: ../../include/text.php:778 ../../include/text.php:779
#: ../../include/nav.php:118 ../../mod/search.php:99
msgid "Search"
msgstr "Suche"
#: ../../include/text.php:781 ../../mod/notes.php:63 ../../mod/filer.php:31
msgid "Save"
msgstr "Speichern"
#: ../../include/text.php:819
msgid "poke"
msgstr "anstupsen"
#: ../../include/text.php:819 ../../include/conversation.php:211
msgid "poked"
msgstr "stupste"
#: ../../include/text.php:820
msgid "ping"
msgstr "anpingen"
#: ../../include/text.php:820
msgid "pinged"
msgstr "pingte"
#: ../../include/text.php:821
msgid "prod"
msgstr "knuffen"
#: ../../include/text.php:821
msgid "prodded"
msgstr "knuffte"
#: ../../include/text.php:822
msgid "slap"
msgstr "ohrfeigen"
#: ../../include/text.php:822
msgid "slapped"
msgstr "ohrfeigte"
#: ../../include/text.php:823
msgid "finger"
msgstr "befummeln"
#: ../../include/text.php:823
msgid "fingered"
msgstr "befummelte"
#: ../../include/text.php:824
msgid "rebuff"
msgstr "eine Abfuhr erteilen"
#: ../../include/text.php:824
msgid "rebuffed"
msgstr "abfuhrerteilte"
#: ../../include/text.php:836
msgid "happy"
msgstr "glücklich"
#: ../../include/text.php:837
msgid "sad"
msgstr "traurig"
#: ../../include/text.php:838
msgid "mellow"
msgstr "sanft"
#: ../../include/text.php:839
msgid "tired"
msgstr "müde"
#: ../../include/text.php:840
msgid "perky"
msgstr "frech"
#: ../../include/text.php:841
msgid "angry"
msgstr "sauer"
#: ../../include/text.php:842
msgid "stupified"
msgstr "verblüfft"
#: ../../include/text.php:843
msgid "puzzled"
msgstr "verwirrt"
#: ../../include/text.php:844
msgid "interested"
msgstr "interessiert"
#: ../../include/text.php:845
msgid "bitter"
msgstr "verbittert"
#: ../../include/text.php:846
msgid "cheerful"
msgstr "fröhlich"
#: ../../include/text.php:847
msgid "alive"
msgstr "lebendig"
#: ../../include/text.php:848
msgid "annoyed"
msgstr "verärgert"
#: ../../include/text.php:849
msgid "anxious"
msgstr "unruhig"
#: ../../include/text.php:850
msgid "cranky"
msgstr "schrullig"
#: ../../include/text.php:851
msgid "disturbed"
msgstr "verstört"
#: ../../include/text.php:852
msgid "frustrated"
msgstr "frustriert"
#: ../../include/text.php:853
msgid "motivated"
msgstr "motiviert"
#: ../../include/text.php:854
msgid "relaxed"
msgstr "entspannt"
#: ../../include/text.php:855
msgid "surprised"
msgstr "überrascht"
#: ../../include/text.php:1015
msgid "Monday"
msgstr "Montag"
#: ../../include/text.php:1015
msgid "Tuesday"
msgstr "Dienstag"
#: ../../include/text.php:1015
msgid "Wednesday"
msgstr "Mittwoch"
#: ../../include/text.php:1015
msgid "Thursday"
msgstr "Donnerstag"
#: ../../include/text.php:1015
msgid "Friday"
msgstr "Freitag"
#: ../../include/text.php:1015
msgid "Saturday"
msgstr "Samstag"
#: ../../include/text.php:1015
msgid "Sunday"
msgstr "Sonntag"
#: ../../include/text.php:1019
msgid "January"
msgstr "Januar"
#: ../../include/text.php:1019
msgid "February"
msgstr "Februar"
#: ../../include/text.php:1019
msgid "March"
msgstr "März"
#: ../../include/text.php:1019
msgid "April"
msgstr "April"
#: ../../include/text.php:1019
msgid "May"
msgstr "Mai"
#: ../../include/text.php:1019
msgid "June"
msgstr "Juni"
#: ../../include/text.php:1019
msgid "July"
msgstr "Juli"
#: ../../include/text.php:1019
msgid "August"
msgstr "August"
#: ../../include/text.php:1019
msgid "September"
msgstr "September"
#: ../../include/text.php:1019
msgid "October"
msgstr "Oktober"
#: ../../include/text.php:1019
msgid "November"
msgstr "November"
#: ../../include/text.php:1019
msgid "December"
msgstr "Dezember"
#: ../../include/text.php:1153
msgid "bytes"
msgstr "Byte"
#: ../../include/text.php:1180 ../../include/text.php:1192
msgid "Click to open/close"
msgstr "Zum öffnen/schließen klicken"
#: ../../include/text.php:1333 ../../mod/events.php:335
msgid "link to source"
msgstr "Link zum Originalbeitrag"
#: ../../include/text.php:1365 ../../include/user.php:237
msgid "default"
msgstr "Standard"
#: ../../include/text.php:1377
msgid "Select an alternate language"
msgstr "Alternative Sprache auswählen"
#: ../../include/text.php:1583 ../../include/conversation.php:118
#: ../../include/conversation.php:246 ../../view/theme/diabook/theme.php:456
msgid "event"
msgstr "Veranstaltung"
#: ../../include/text.php:1585 ../../include/diaspora.php:1874
#: ../../include/conversation.php:126 ../../include/conversation.php:254
#: ../../mod/subthread.php:87 ../../mod/tagger.php:62 ../../mod/like.php:151
#: ../../view/theme/diabook/theme.php:464
msgid "photo"
msgstr "Foto"
#: ../../include/text.php:1587
msgid "activity"
msgstr "Aktivität"
#: ../../include/text.php:1589 ../../mod/content.php:628
#: ../../object/Item.php:364 ../../object/Item.php:377
msgid "comment"
msgid_plural "comments"
msgstr[0] ""
msgstr[1] "Kommentar"
#: ../../include/text.php:1590
msgid "post"
msgstr "Beitrag"
#: ../../include/text.php:1745
msgid "Item filed"
msgstr "Beitrag abgelegt"
#: ../../include/acl_selectors.php:325
msgid "Visible to everybody"
msgstr "Für jeden sichtbar"
#: ../../include/acl_selectors.php:326 ../../view/theme/diabook/config.php:146
#: ../../view/theme/diabook/theme.php:629
msgid "show"
msgstr "zeigen"
#: ../../include/acl_selectors.php:327 ../../view/theme/diabook/config.php:146
#: ../../view/theme/diabook/theme.php:629
msgid "don't show"
msgstr "nicht zeigen"
#: ../../include/auth.php:38
msgid "Logged out."
msgstr "Abgemeldet."
#: ../../include/auth.php:112 ../../include/auth.php:175
#: ../../mod/openid.php:93
msgid "Login failed."
msgstr "Anmeldung fehlgeschlagen."
#: ../../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 "Beim Versuch dich mit der von dir angegebenen OpenID anzumelden trat ein Problem auf. Bitte überprüfe, dass du die OpenID richtig geschrieben hast."
#: ../../include/auth.php:128
msgid "The error message was:"
msgstr "Die Fehlermeldung lautete:"
#: ../../include/uimport.php:61
msgid "Error decoding account file"
msgstr "Fehler beim Verarbeiten der Account Datei"
@ -6246,324 +794,160 @@ msgstr[1] "%d Kontakte nicht importiert"
msgid "Done. You can now login with your username and password"
msgstr "Erledigt. Du kannst dich jetzt mit deinem Nutzernamen und Passwort anmelden"
#: ../../include/plugin.php:439 ../../include/plugin.php:441
msgid "Click here to upgrade."
msgstr "Zum Upgraden hier klicken."
#: ../../include/plugin.php:447
msgid "This action exceeds the limits set by your subscription plan."
msgstr "Diese Aktion überschreitet die Obergrenze deines Abonnements."
#: ../../include/plugin.php:452
msgid "This action is not available under your subscription plan."
msgstr "Diese Aktion ist in deinem Abonnement nicht verfügbar."
#: ../../include/conversation.php:207
#, php-format
msgid "%1$s poked %2$s"
msgstr "%1$s stupste %2$s"
#: ../../include/conversation.php:291
msgid "post/item"
msgstr "Nachricht/Beitrag"
#: ../../include/conversation.php:292
#, php-format
msgid "%1$s marked %2$s's %3$s as favorite"
msgstr "%1$s hat %2$s\\s %3$s als Favorit markiert"
#: ../../include/conversation.php:728
msgid "remove"
msgstr "löschen"
#: ../../include/conversation.php:732
msgid "Delete Selected Items"
msgstr "Lösche die markierten Beiträge"
#: ../../include/conversation.php:831
msgid "Follow Thread"
msgstr "Folge der Unterhaltung"
#: ../../include/conversation.php:832 ../../include/Contact.php:226
msgid "View Status"
msgstr "Pinnwand anschauen"
#: ../../include/conversation.php:833 ../../include/Contact.php:227
msgid "View Profile"
msgstr "Profil anschauen"
#: ../../include/conversation.php:834 ../../include/Contact.php:228
msgid "View Photos"
msgstr "Bilder anschauen"
#: ../../include/conversation.php:835 ../../include/Contact.php:229
#: ../../include/Contact.php:251
msgid "Network Posts"
msgstr "Netzwerkbeiträge"
#: ../../include/conversation.php:836 ../../include/Contact.php:230
#: ../../include/Contact.php:251
msgid "Edit Contact"
msgstr "Kontakt bearbeiten"
#: ../../include/conversation.php:837 ../../include/Contact.php:231
#: ../../include/Contact.php:251
msgid "Send PM"
msgstr "Private Nachricht senden"
#: ../../include/conversation.php:838 ../../include/Contact.php:225
msgid "Poke"
msgstr "Anstupsen"
#: ../../include/conversation.php:900
#, php-format
msgid "%s likes this."
msgstr "%s mag das."
#: ../../include/conversation.php:900
#, php-format
msgid "%s doesn't like this."
msgstr "%s mag das nicht."
#: ../../include/conversation.php:905
#, php-format
msgid "<span %1$s>%2$d people</span> like this"
msgstr "<span %1$s>%2$d Personen</span> mögen das"
#: ../../include/conversation.php:908
#, php-format
msgid "<span %1$s>%2$d people</span> don't like this"
msgstr "<span %1$s>%2$d Personen</span> mögen das nicht"
#: ../../include/conversation.php:922
msgid "and"
msgstr "und"
#: ../../include/conversation.php:928
#, php-format
msgid ", and %d other people"
msgstr " und %d andere"
#: ../../include/conversation.php:930
#, php-format
msgid "%s like this."
msgstr "%s mögen das."
#: ../../include/conversation.php:930
#, php-format
msgid "%s don't like this."
msgstr "%s mögen das nicht."
#: ../../include/conversation.php:957 ../../include/conversation.php:975
msgid "Visible to <strong>everybody</strong>"
msgstr "Für <strong>jedermann</strong> sichtbar"
#: ../../include/conversation.php:959 ../../include/conversation.php:977
msgid "Please enter a video link/URL:"
msgstr "Bitte Link/URL zum Video einfügen:"
#: ../../include/conversation.php:960 ../../include/conversation.php:978
msgid "Please enter an audio link/URL:"
msgstr "Bitte Link/URL zum Audio einfügen:"
#: ../../include/conversation.php:961 ../../include/conversation.php:979
msgid "Tag term:"
msgstr "Tag:"
#: ../../include/conversation.php:963 ../../include/conversation.php:981
msgid "Where are you right now?"
msgstr "Wo hältst du dich jetzt gerade auf?"
#: ../../include/conversation.php:964
msgid "Delete item(s)?"
msgstr "Einträge löschen?"
#: ../../include/conversation.php:1006
msgid "Post to Email"
msgstr "An E-Mail senden"
#: ../../include/conversation.php:1062
msgid "permissions"
msgstr "Zugriffsrechte"
#: ../../include/conversation.php:1086
msgid "Post to Groups"
msgstr "Poste an Gruppe"
#: ../../include/conversation.php:1087
msgid "Post to Contacts"
msgstr "Poste an Kontakte"
#: ../../include/conversation.php:1088
msgid "Private post"
msgstr "Privater Beitrag"
#: ../../include/contact_widgets.php:6
msgid "Add New Contact"
msgstr "Neuen Kontakt hinzufügen"
#: ../../include/contact_widgets.php:7
msgid "Enter address or web location"
msgstr "Adresse oder Web-Link eingeben"
#: ../../include/contact_widgets.php:8
msgid "Example: bob@example.com, http://example.com/barbara"
msgstr "Beispiel: bob@example.com, http://example.com/barbara"
#: ../../include/contact_widgets.php:23
#, php-format
msgid "%d invitation available"
msgid_plural "%d invitations available"
msgstr[0] "%d Einladung verfügbar"
msgstr[1] "%d Einladungen verfügbar"
#: ../../include/contact_widgets.php:29
msgid "Find People"
msgstr "Leute finden"
#: ../../include/contact_widgets.php:30
msgid "Enter name or interest"
msgstr "Name oder Interessen eingeben"
#: ../../include/contact_widgets.php:31
msgid "Connect/Follow"
msgstr "Verbinden/Folgen"
#: ../../include/contact_widgets.php:32
msgid "Examples: Robert Morgenstein, Fishing"
msgstr "Beispiel: Robert Morgenstein, Angeln"
#: ../../include/contact_widgets.php:36
msgid "Random Profile"
msgstr "Zufälliges Profil"
#: ../../include/contact_widgets.php:70
msgid "Networks"
msgstr "Netzwerke"
#: ../../include/contact_widgets.php:73
msgid "All Networks"
msgstr "Alle Netzwerke"
#: ../../include/contact_widgets.php:106 ../../include/contact_widgets.php:138
msgid "Everything"
msgstr "Alles"
#: ../../include/contact_widgets.php:135
msgid "Categories"
msgstr "Kategorien"
#: ../../include/nav.php:73
msgid "End this session"
msgstr "Diese Sitzung beenden"
#: ../../include/nav.php:91
msgid "Sign in"
msgstr "Anmelden"
#: ../../include/nav.php:104
msgid "Home Page"
msgstr "Homepage"
#: ../../include/nav.php:108
msgid "Create an account"
msgstr "Nutzerkonto erstellen"
#: ../../include/nav.php:113
msgid "Help and documentation"
msgstr "Hilfe und Dokumentation"
#: ../../include/nav.php:116
msgid "Apps"
msgstr "Apps"
#: ../../include/nav.php:116
msgid "Addon applications, utilities, games"
msgstr "Addon Anwendungen, Dienstprogramme, Spiele"
#: ../../include/nav.php:118
msgid "Search site content"
msgstr "Inhalt der Seite durchsuchen"
#: ../../include/nav.php:128
msgid "Conversations on this site"
msgstr "Unterhaltungen auf dieser Seite"
#: ../../include/nav.php:130
msgid "Directory"
msgstr "Verzeichnis"
#: ../../include/nav.php:130
msgid "People directory"
msgstr "Nutzerverzeichnis"
#: ../../include/nav.php:140
msgid "Conversations from your friends"
msgstr "Unterhaltungen deiner Kontakte"
#: ../../include/nav.php:141
msgid "Network Reset"
msgstr "Netzwerk zurücksetzen"
#: ../../include/nav.php:141
msgid "Load Network page with no filters"
msgstr "Netzwerk-Seite ohne Filter laden"
#: ../../include/nav.php:149
msgid "Friend Requests"
msgstr "Kontaktanfragen"
#: ../../include/nav.php:151
msgid "See all notifications"
msgstr "Alle Benachrichtigungen anzeigen"
#: ../../include/nav.php:152
msgid "Mark all system notifications seen"
msgstr "Markiere alle Systembenachrichtigungen als gelesen"
#: ../../include/nav.php:156
msgid "Private mail"
msgstr "Private E-Mail"
#: ../../include/nav.php:157
msgid "Inbox"
msgstr "Eingang"
#: ../../include/nav.php:158
msgid "Outbox"
msgstr "Ausgang"
#: ../../include/nav.php:162
msgid "Manage"
msgstr "Verwalten"
#: ../../include/nav.php:162
msgid "Manage other pages"
msgstr "Andere Seiten verwalten"
#: ../../include/nav.php:165
msgid "Delegations"
msgstr "Delegierungen"
#: ../../include/nav.php:169
msgid "Manage/Edit Profiles"
msgstr "Profile Verwalten/Editieren"
#: ../../include/nav.php:171
msgid "Manage/edit friends and contacts"
msgstr "Freunde und Kontakte verwalten/editieren"
#: ../../include/nav.php:178
msgid "Site setup and configuration"
msgstr "Einstellungen der Seite und Konfiguration"
#: ../../include/nav.php:182
msgid "Navigation"
msgstr "Navigation"
#: ../../include/nav.php:182
msgid "Site map"
msgstr "Sitemap"
#: ../../include/bb2diaspora.php:393 ../../include/event.php:11
#: ../../mod/localtime.php:12
msgid "l F d, Y \\@ g:i A"
msgstr "l, d. F Y\\, H:i"
#: ../../include/bb2diaspora.php:399 ../../include/event.php:20
msgid "Starts:"
msgstr "Beginnt:"
#: ../../include/bb2diaspora.php:407 ../../include/event.php:30
msgid "Finishes:"
msgstr "Endet:"
#: ../../include/bb2diaspora.php:415 ../../include/event.php:40
#: ../../mod/directory.php:134 ../../mod/events.php:471 ../../boot.php:1406
msgid "Location:"
msgstr "Ort:"
#: ../../include/follow.php:27 ../../mod/dfrn_request.php:502
msgid "Disallowed profile URL."
msgstr "Nicht erlaubte Profil-URL."
#: ../../include/follow.php:32
msgid "Connect URL missing."
msgstr "Connect-URL fehlt"
#: ../../include/follow.php:59
msgid ""
"This site is not configured to allow communications with other networks."
msgstr "Diese Seite ist so konfiguriert, dass keine Kommunikation mit anderen Netzwerken erfolgen kann."
#: ../../include/follow.php:60 ../../include/follow.php:80
msgid "No compatible communication protocols or feeds were discovered."
msgstr "Es wurden keine kompatiblen Kommunikationsprotokolle oder Feeds gefunden."
#: ../../include/follow.php:78
msgid "The profile address specified does not provide adequate information."
msgstr "Die angegebene Profiladresse liefert unzureichende Informationen."
#: ../../include/follow.php:82
msgid "An author or name was not found."
msgstr "Es wurde kein Autor oder Name gefunden."
#: ../../include/follow.php:84
msgid "No browser URL could be matched to this address."
msgstr "Zu dieser Adresse konnte keine passende Browser URL gefunden werden."
#: ../../include/follow.php:86
msgid ""
"Unable to match @-style Identity Address with a known protocol or email "
"contact."
msgstr "Konnte die @-Adresse mit keinem der bekannten Protokolle oder Email-Kontakte abgleichen."
#: ../../include/follow.php:87
msgid "Use mailto: in front of address to force email check."
msgstr "Verwende mailto: vor der Email Adresse, um eine Überprüfung der E-Mail-Adresse zu erzwingen."
#: ../../include/follow.php:93
msgid ""
"The profile address specified belongs to a network which has been disabled "
"on this site."
msgstr "Die Adresse dieses Profils gehört zu einem Netzwerk, mit dem die Kommunikation auf dieser Seite ausgeschaltet wurde."
#: ../../include/follow.php:103
msgid ""
"Limited profile. This person will be unable to receive direct/personal "
"notifications from you."
msgstr "Eingeschränktes Profil. Diese Person wird keine direkten/privaten Nachrichten von dir erhalten können."
#: ../../include/follow.php:205
msgid "Unable to retrieve contact information."
msgstr "Konnte die Kontaktinformationen nicht empfangen."
#: ../../include/follow.php:259
msgid "following"
msgstr "folgen"
#: ../../include/user.php:39
msgid "An invitation is required."
msgstr "Du benötigst eine Einladung."
#: ../../include/user.php:44
msgid "Invitation could not be verified."
msgstr "Die Einladung konnte nicht überprüft werden."
#: ../../include/user.php:52
msgid "Invalid OpenID url"
msgstr "Ungültige OpenID URL"
#: ../../include/user.php:67
msgid "Please enter the required information."
msgstr "Bitte trage die erforderlichen Informationen ein."
#: ../../include/user.php:81
msgid "Please use a shorter name."
msgstr "Bitte verwende einen kürzeren Namen."
#: ../../include/user.php:83
msgid "Name too short."
msgstr "Der Name ist zu kurz."
#: ../../include/user.php:98
msgid "That doesn't appear to be your full (First Last) name."
msgstr "Das scheint nicht dein kompletter Name (Vor- und Nachname) zu sein."
#: ../../include/user.php:103
msgid "Your email domain is not among those allowed on this site."
msgstr "Die Domain deiner E-Mail Adresse ist auf dieser Seite nicht erlaubt."
#: ../../include/user.php:106
msgid "Not a valid email address."
msgstr "Keine gültige E-Mail-Adresse."
#: ../../include/user.php:116
msgid "Cannot use that email."
msgstr "Konnte diese E-Mail-Adresse nicht verwenden."
#: ../../include/user.php:122
msgid ""
"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and "
"must also begin with a letter."
msgstr "Dein Spitzname darf nur aus Buchstaben und Zahlen (\"a-z\",\"0-9\", \"_\" und \"-\") bestehen, außerdem muss er mit einem Buchstaben beginnen."
#: ../../include/user.php:128 ../../include/user.php:226
msgid "Nickname is already registered. Please choose another."
msgstr "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen."
#: ../../include/user.php:138
msgid ""
"Nickname was once registered here and may not be re-used. Please choose "
"another."
msgstr "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen."
#: ../../include/user.php:154
msgid "SERIOUS ERROR: Generation of security keys failed."
msgstr "FATALER FEHLER: Sicherheitsschlüssel konnten nicht erzeugt werden."
#: ../../include/user.php:212
msgid "An error occurred during registration. Please try again."
msgstr "Während der Anmeldung ist ein Fehler aufgetreten. Bitte versuche es noch einmal."
#: ../../include/user.php:247
msgid "An error occurred creating your default profile. Please try again."
msgstr "Bei der Erstellung des Standardprofils ist ein Fehler aufgetreten. Bitte versuche es noch einmal."
#: ../../include/user.php:325 ../../include/user.php:332
#: ../../include/user.php:339 ../../mod/photos.php:154
#: ../../mod/photos.php:725 ../../mod/photos.php:1183
#: ../../mod/photos.php:1206 ../../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 ../../view/theme/diabook/theme.php:493
msgid "Profile Photos"
msgstr "Profilbilder"
#: ../../include/contact_selectors.php:32
msgid "Unknown | Not categorised"
@ -6613,6 +997,10 @@ msgstr "Wöchentlich"
msgid "Monthly"
msgstr "Monatlich"
#: ../../include/contact_selectors.php:76 ../../mod/dfrn_request.php:840
msgid "Friendica"
msgstr "Friendica"
#: ../../include/contact_selectors.php:77
msgid "OStatus"
msgstr "OStatus"
@ -6621,6 +1009,22 @@ msgstr "OStatus"
msgid "RSS/Atom"
msgstr "RSS/Atom"
#: ../../include/contact_selectors.php:79
#: ../../include/contact_selectors.php:86 ../../mod/admin.php:754
#: ../../mod/admin.php:765
msgid "Email"
msgstr "E-Mail"
#: ../../include/contact_selectors.php:80 ../../mod/settings.php:681
#: ../../mod/dfrn_request.php:842
msgid "Diaspora"
msgstr "Diaspora"
#: ../../include/contact_selectors.php:81 ../../mod/newmember.php:49
#: ../../mod/newmember.php:51
msgid "Facebook"
msgstr "Facebook"
#: ../../include/contact_selectors.php:82
msgid "Zot!"
msgstr "Zott"
@ -6641,6 +1045,739 @@ msgstr "MySpace"
msgid "Google+"
msgstr "Google+"
#: ../../include/contact_widgets.php:6
msgid "Add New Contact"
msgstr "Neuen Kontakt hinzufügen"
#: ../../include/contact_widgets.php:7
msgid "Enter address or web location"
msgstr "Adresse oder Web-Link eingeben"
#: ../../include/contact_widgets.php:8
msgid "Example: bob@example.com, http://example.com/barbara"
msgstr "Beispiel: bob@example.com, http://example.com/barbara"
#: ../../include/contact_widgets.php:9 ../../mod/suggest.php:88
#: ../../mod/match.php:58 ../../boot.php:1338
msgid "Connect"
msgstr "Verbinden"
#: ../../include/contact_widgets.php:23
#, php-format
msgid "%d invitation available"
msgid_plural "%d invitations available"
msgstr[0] "%d Einladung verfügbar"
msgstr[1] "%d Einladungen verfügbar"
#: ../../include/contact_widgets.php:29
msgid "Find People"
msgstr "Leute finden"
#: ../../include/contact_widgets.php:30
msgid "Enter name or interest"
msgstr "Name oder Interessen eingeben"
#: ../../include/contact_widgets.php:31
msgid "Connect/Follow"
msgstr "Verbinden/Folgen"
#: ../../include/contact_widgets.php:32
msgid "Examples: Robert Morgenstein, Fishing"
msgstr "Beispiel: Robert Morgenstein, Angeln"
#: ../../include/contact_widgets.php:33 ../../mod/contacts.php:613
#: ../../mod/directory.php:61
msgid "Find"
msgstr "Finde"
#: ../../include/contact_widgets.php:34 ../../mod/suggest.php:66
#: ../../view/theme/diabook/theme.php:520
msgid "Friend Suggestions"
msgstr "Kontaktvorschläge"
#: ../../include/contact_widgets.php:35 ../../view/theme/diabook/theme.php:519
msgid "Similar Interests"
msgstr "Ähnliche Interessen"
#: ../../include/contact_widgets.php:36
msgid "Random Profile"
msgstr "Zufälliges Profil"
#: ../../include/contact_widgets.php:37 ../../view/theme/diabook/theme.php:521
msgid "Invite Friends"
msgstr "Freunde einladen"
#: ../../include/contact_widgets.php:70
msgid "Networks"
msgstr "Netzwerke"
#: ../../include/contact_widgets.php:73
msgid "All Networks"
msgstr "Alle Netzwerke"
#: ../../include/contact_widgets.php:103 ../../include/features.php:59
msgid "Saved Folders"
msgstr "Gespeicherte Ordner"
#: ../../include/contact_widgets.php:106 ../../include/contact_widgets.php:138
msgid "Everything"
msgstr "Alles"
#: ../../include/contact_widgets.php:135
msgid "Categories"
msgstr "Kategorien"
#: ../../include/contact_widgets.php:199 ../../mod/contacts.php:343
#, php-format
msgid "%d contact in common"
msgid_plural "%d contacts in common"
msgstr[0] "%d gemeinsamer Kontakt"
msgstr[1] "%d gemeinsame Kontakte"
#: ../../include/contact_widgets.php:204 ../../mod/content.php:629
#: ../../object/Item.php:365 ../../boot.php:652
msgid "show more"
msgstr "mehr anzeigen"
#: ../../include/Scrape.php:583
msgid " on Last.fm"
msgstr " bei Last.fm"
#: ../../include/bbcode.php:210 ../../include/bbcode.php:545
msgid "Image/photo"
msgstr "Bild/Foto"
#: ../../include/bbcode.php:272
#, php-format
msgid ""
"<span><a href=\"%s\" target=\"external-link\">%s</a> wrote the following <a "
"href=\"%s\" target=\"external-link\">post</a>"
msgstr "<span><a href=\"%s\" target=\"external-link\">%s</a> schrieb den folgenden <a href=\"%s\" target=\"external-link\">Beitrag</a>"
#: ../../include/bbcode.php:510 ../../include/bbcode.php:530
msgid "$1 wrote:"
msgstr "$1 hat geschrieben:"
#: ../../include/bbcode.php:553 ../../include/bbcode.php:554
msgid "Encrypted content"
msgstr "Verschlüsselter Inhalt"
#: ../../include/datetime.php:43 ../../include/datetime.php:45
msgid "Miscellaneous"
msgstr "Verschiedenes"
#: ../../include/datetime.php:153 ../../include/datetime.php:285
msgid "year"
msgstr "Jahr"
#: ../../include/datetime.php:158 ../../include/datetime.php:286
msgid "month"
msgstr "Monat"
#: ../../include/datetime.php:163 ../../include/datetime.php:288
msgid "day"
msgstr "Tag"
#: ../../include/datetime.php:276
msgid "never"
msgstr "nie"
#: ../../include/datetime.php:282
msgid "less than a second ago"
msgstr "vor weniger als einer Sekunde"
#: ../../include/datetime.php:285
msgid "years"
msgstr "Jahre"
#: ../../include/datetime.php:286
msgid "months"
msgstr "Monate"
#: ../../include/datetime.php:287
msgid "week"
msgstr "Woche"
#: ../../include/datetime.php:287
msgid "weeks"
msgstr "Wochen"
#: ../../include/datetime.php:288
msgid "days"
msgstr "Tage"
#: ../../include/datetime.php:289
msgid "hour"
msgstr "Stunde"
#: ../../include/datetime.php:289
msgid "hours"
msgstr "Stunden"
#: ../../include/datetime.php:290
msgid "minute"
msgstr "Minute"
#: ../../include/datetime.php:290
msgid "minutes"
msgstr "Minuten"
#: ../../include/datetime.php:291
msgid "second"
msgstr "Sekunde"
#: ../../include/datetime.php:291
msgid "seconds"
msgstr "Sekunden"
#: ../../include/datetime.php:300
#, php-format
msgid "%1$d %2$s ago"
msgstr "%1$d %2$s her"
#: ../../include/datetime.php:472 ../../include/items.php:1771
#, php-format
msgid "%s's birthday"
msgstr "%ss Geburtstag"
#: ../../include/datetime.php:473 ../../include/items.php:1772
#, php-format
msgid "Happy Birthday %s"
msgstr "Herzlichen Glückwunsch %s"
#: ../../include/plugin.php:439 ../../include/plugin.php:441
msgid "Click here to upgrade."
msgstr "Zum Upgraden hier klicken."
#: ../../include/plugin.php:447
msgid "This action exceeds the limits set by your subscription plan."
msgstr "Diese Aktion überschreitet die Obergrenze deines Abonnements."
#: ../../include/plugin.php:452
msgid "This action is not available under your subscription plan."
msgstr "Diese Aktion ist in deinem Abonnement nicht verfügbar."
#: ../../include/delivery.php:457 ../../include/notifier.php:775
msgid "(no subject)"
msgstr "(kein Betreff)"
#: ../../include/delivery.php:468 ../../include/enotify.php:28
#: ../../include/notifier.php:785
msgid "noreply"
msgstr "noreply"
#: ../../include/diaspora.php:621 ../../include/conversation.php:172
#: ../../mod/dfrn_confirm.php:477
#, php-format
msgid "%1$s is now friends with %2$s"
msgstr "%1$s ist nun mit %2$s befreundet"
#: ../../include/diaspora.php:704
msgid "Sharing notification from Diaspora network"
msgstr "Freigabe-Benachrichtigung von Diaspora"
#: ../../include/diaspora.php:1874 ../../include/conversation.php:121
#: ../../include/conversation.php:130 ../../include/conversation.php:249
#: ../../include/conversation.php:258 ../../mod/subthread.php:87
#: ../../mod/tagger.php:62 ../../mod/like.php:151 ../../mod/like.php:322
#: ../../view/theme/diabook/theme.php:459
#: ../../view/theme/diabook/theme.php:468
msgid "status"
msgstr "Status"
#: ../../include/diaspora.php:1890 ../../include/conversation.php:137
#: ../../mod/like.php:168 ../../view/theme/diabook/theme.php:473
#, php-format
msgid "%1$s likes %2$s's %3$s"
msgstr "%1$s mag %2$ss %3$s"
#: ../../include/diaspora.php:2262
msgid "Attachments:"
msgstr "Anhänge:"
#: ../../include/features.php:23
msgid "General Features"
msgstr "Allgemeine Features"
#: ../../include/features.php:25
msgid "Multiple Profiles"
msgstr "Mehrere Profile"
#: ../../include/features.php:25
msgid "Ability to create multiple profiles"
msgstr "Möglichkeit mehrere Profile zu erstellen"
#: ../../include/features.php:30
msgid "Post Composition Features"
msgstr "Beitragserstellung Features"
#: ../../include/features.php:31
msgid "Richtext Editor"
msgstr "Web-Editor"
#: ../../include/features.php:31
msgid "Enable richtext editor"
msgstr "Den Web-Editor für neue Beiträge aktivieren"
#: ../../include/features.php:32
msgid "Post Preview"
msgstr "Beitragsvorschau"
#: ../../include/features.php:32
msgid "Allow previewing posts and comments before publishing them"
msgstr "Die Vorschau von Beiträgen und Kommentaren vor dem absenden erlauben."
#: ../../include/features.php:37
msgid "Network Sidebar Widgets"
msgstr "Widgets für Netzwerk und Seitenleiste"
#: ../../include/features.php:38
msgid "Search by Date"
msgstr "Archiv"
#: ../../include/features.php:38
msgid "Ability to select posts by date ranges"
msgstr "Möglichkeit die Beiträge nach Datumsbereichen zu sortieren"
#: ../../include/features.php:39
msgid "Group Filter"
msgstr "Gruppen Filter"
#: ../../include/features.php:39
msgid "Enable widget to display Network posts only from selected group"
msgstr "Widget zur Darstellung der Beiträge nach Kontaktgruppen sortiert aktivieren."
#: ../../include/features.php:40
msgid "Network Filter"
msgstr "Netzwerk Filter"
#: ../../include/features.php:40
msgid "Enable widget to display Network posts only from selected network"
msgstr "Widget zum filtern der Beiträge in Abhängigkeit des Netzwerks aus dem der Ersteller sendet aktivieren."
#: ../../include/features.php:41 ../../mod/search.php:30
#: ../../mod/network.php:233
msgid "Saved Searches"
msgstr "Gespeicherte Suchen"
#: ../../include/features.php:41
msgid "Save search terms for re-use"
msgstr "Speichere Suchanfragen für spätere Wiederholung."
#: ../../include/features.php:46
msgid "Network Tabs"
msgstr "Netzwerk Reiter"
#: ../../include/features.php:47
msgid "Network Personal Tab"
msgstr "Netzwerk-Reiter: Persönlich"
#: ../../include/features.php:47
msgid "Enable tab to display only Network posts that you've interacted on"
msgstr "Aktiviert einen Netzwerk-Reiter in dem Nachrichten angezeigt werden mit denen du interagiert hast"
#: ../../include/features.php:48
msgid "Network New Tab"
msgstr "Netzwerk-Reiter: Neue"
#: ../../include/features.php:48
msgid "Enable tab to display only new Network posts (from the last 12 hours)"
msgstr "Aktiviert einen Netzwerk-Reiter in dem ausschließlich neue Beiträge (der letzten 12 Stunden) angezeigt werden"
#: ../../include/features.php:49
msgid "Network Shared Links Tab"
msgstr "Netzwerk-Reiter: Geteilte Links"
#: ../../include/features.php:49
msgid "Enable tab to display only Network posts with links in them"
msgstr "Aktiviert einen Netzwerk-Reiter der ausschließlich Nachrichten mit Links enthält"
#: ../../include/features.php:54
msgid "Post/Comment Tools"
msgstr "Werkzeuge für Beiträge und Kommentare"
#: ../../include/features.php:55
msgid "Multiple Deletion"
msgstr "Mehrere Beiträge löschen"
#: ../../include/features.php:55
msgid "Select and delete multiple posts/comments at once"
msgstr "Mehrere Beiträge/Kommentare markieren und gleichzeitig löschen"
#: ../../include/features.php:56
msgid "Edit Sent Posts"
msgstr "Gesendete Beiträge editieren"
#: ../../include/features.php:56
msgid "Edit and correct posts and comments after sending"
msgstr "Erlaubt es Beiträge und Kommentare nach dem Senden zu editieren bzw.zu korrigieren."
#: ../../include/features.php:57
msgid "Tagging"
msgstr "Tagging"
#: ../../include/features.php:57
msgid "Ability to tag existing posts"
msgstr "Möglichkeit bereits existierende Beiträge nachträglich mit Tags zu versehen."
#: ../../include/features.php:58
msgid "Post Categories"
msgstr "Beitragskategorien"
#: ../../include/features.php:58
msgid "Add categories to your posts"
msgstr "Eigene Beiträge mit Kategorien versehen"
#: ../../include/features.php:59
msgid "Ability to file posts under folders"
msgstr "Beiträge in Ordnern speichern aktivieren"
#: ../../include/features.php:60
msgid "Dislike Posts"
msgstr "Beiträge 'nicht mögen'"
#: ../../include/features.php:60
msgid "Ability to dislike posts/comments"
msgstr "Ermöglicht es Beiträge mit einem Klick 'nicht zu mögen'"
#: ../../include/features.php:61
msgid "Star Posts"
msgstr "Beiträge Markieren"
#: ../../include/features.php:61
msgid "Ability to mark special posts with a star indicator"
msgstr "Erlaubt es Beiträge mit einem Stern-Indikator zu markieren"
#: ../../include/dba.php:44
#, php-format
msgid "Cannot locate DNS info for database server '%s'"
msgstr "Kann die DNS Informationen für den Datenbankserver '%s' nicht ermitteln."
#: ../../include/group.php:25
msgid ""
"A deleted group with this name was revived. Existing item permissions "
"<strong>may</strong> apply to this group and any future members. If this is "
"not what you intended, please create another group with a different name."
msgstr "Eine gelöschte Gruppe mit diesem Namen wurde wiederbelebt. Bestehende Berechtigungseinstellungen <strong>könnten</strong> auf diese Gruppe oder zukünftige Mitglieder angewandt werden. Falls du dies nicht möchtest, erstelle bitte eine andere Gruppe mit einem anderen Namen."
#: ../../include/group.php:207
msgid "Default privacy group for new contacts"
msgstr "Voreingestellte Gruppe für neue Kontakte"
#: ../../include/group.php:226
msgid "Everybody"
msgstr "Alle Kontakte"
#: ../../include/group.php:249
msgid "edit"
msgstr "bearbeiten"
#: ../../include/group.php:270 ../../mod/newmember.php:66
msgid "Groups"
msgstr "Gruppen"
#: ../../include/group.php:271
msgid "Edit group"
msgstr "Gruppe bearbeiten"
#: ../../include/group.php:272
msgid "Create a new group"
msgstr "Neue Gruppe erstellen"
#: ../../include/group.php:273
msgid "Contacts not in any group"
msgstr "Kontakte in keiner Gruppe"
#: ../../include/group.php:275 ../../mod/network.php:234
msgid "add"
msgstr "hinzufügen"
#: ../../include/conversation.php:140 ../../mod/like.php:170
#, php-format
msgid "%1$s doesn't like %2$s's %3$s"
msgstr "%1$s mag %2$ss %3$s nicht"
#: ../../include/conversation.php:207
#, php-format
msgid "%1$s poked %2$s"
msgstr "%1$s stupste %2$s"
#: ../../include/conversation.php:227 ../../mod/mood.php:62
#, php-format
msgid "%1$s is currently %2$s"
msgstr "%1$s ist momentan %2$s"
#: ../../include/conversation.php:266 ../../mod/tagger.php:95
#, php-format
msgid "%1$s tagged %2$s's %3$s with %4$s"
msgstr "%1$s hat %2$ss %3$s mit %4$s getaggt"
#: ../../include/conversation.php:291
msgid "post/item"
msgstr "Nachricht/Beitrag"
#: ../../include/conversation.php:292
#, php-format
msgid "%1$s marked %2$s's %3$s as favorite"
msgstr "%1$s hat %2$s\\s %3$s als Favorit markiert"
#: ../../include/conversation.php:587 ../../mod/content.php:461
#: ../../mod/content.php:763 ../../object/Item.php:126
msgid "Select"
msgstr "Auswählen"
#: ../../include/conversation.php:588 ../../mod/settings.php:623
#: ../../mod/admin.php:758 ../../mod/group.php:171 ../../mod/photos.php:1637
#: ../../mod/content.php:462 ../../mod/content.php:764
#: ../../object/Item.php:127
msgid "Delete"
msgstr "Löschen"
#: ../../include/conversation.php:627 ../../mod/content.php:495
#: ../../mod/content.php:875 ../../mod/content.php:876
#: ../../object/Item.php:306 ../../object/Item.php:307
#, php-format
msgid "View %s's profile @ %s"
msgstr "Das Profil von %s auf %s betrachten."
#: ../../include/conversation.php:639 ../../object/Item.php:297
msgid "Categories:"
msgstr "Kategorien"
#: ../../include/conversation.php:640 ../../object/Item.php:298
msgid "Filed under:"
msgstr "Abgelegt unter:"
#: ../../include/conversation.php:647 ../../mod/content.php:505
#: ../../mod/content.php:887 ../../object/Item.php:320
#, php-format
msgid "%s from %s"
msgstr "%s von %s"
#: ../../include/conversation.php:662 ../../mod/content.php:520
msgid "View in context"
msgstr "Im Zusammenhang betrachten"
#: ../../include/conversation.php:664 ../../include/conversation.php:1060
#: ../../mod/editpost.php:124 ../../mod/wallmessage.php:156
#: ../../mod/message.php:334 ../../mod/message.php:565
#: ../../mod/photos.php:1532 ../../mod/content.php:522
#: ../../mod/content.php:906 ../../object/Item.php:341
msgid "Please wait"
msgstr "Bitte warten"
#: ../../include/conversation.php:728
msgid "remove"
msgstr "löschen"
#: ../../include/conversation.php:732
msgid "Delete Selected Items"
msgstr "Lösche die markierten Beiträge"
#: ../../include/conversation.php:831
msgid "Follow Thread"
msgstr "Folge der Unterhaltung"
#: ../../include/conversation.php:900
#, php-format
msgid "%s likes this."
msgstr "%s mag das."
#: ../../include/conversation.php:900
#, php-format
msgid "%s doesn't like this."
msgstr "%s mag das nicht."
#: ../../include/conversation.php:905
#, php-format
msgid "<span %1$s>%2$d people</span> like this"
msgstr "<span %1$s>%2$d Personen</span> mögen das"
#: ../../include/conversation.php:908
#, php-format
msgid "<span %1$s>%2$d people</span> don't like this"
msgstr "<span %1$s>%2$d Personen</span> mögen das nicht"
#: ../../include/conversation.php:922
msgid "and"
msgstr "und"
#: ../../include/conversation.php:928
#, php-format
msgid ", and %d other people"
msgstr " und %d andere"
#: ../../include/conversation.php:930
#, php-format
msgid "%s like this."
msgstr "%s mögen das."
#: ../../include/conversation.php:930
#, php-format
msgid "%s don't like this."
msgstr "%s mögen das nicht."
#: ../../include/conversation.php:957 ../../include/conversation.php:975
msgid "Visible to <strong>everybody</strong>"
msgstr "Für <strong>jedermann</strong> sichtbar"
#: ../../include/conversation.php:958 ../../include/conversation.php:976
#: ../../mod/wallmessage.php:127 ../../mod/wallmessage.php:135
#: ../../mod/message.php:283 ../../mod/message.php:291
#: ../../mod/message.php:466 ../../mod/message.php:474
msgid "Please enter a link URL:"
msgstr "Bitte gib die URL des Links ein:"
#: ../../include/conversation.php:959 ../../include/conversation.php:977
msgid "Please enter a video link/URL:"
msgstr "Bitte Link/URL zum Video einfügen:"
#: ../../include/conversation.php:960 ../../include/conversation.php:978
msgid "Please enter an audio link/URL:"
msgstr "Bitte Link/URL zum Audio einfügen:"
#: ../../include/conversation.php:961 ../../include/conversation.php:979
msgid "Tag term:"
msgstr "Tag:"
#: ../../include/conversation.php:962 ../../include/conversation.php:980
#: ../../mod/filer.php:30
msgid "Save to Folder:"
msgstr "In diesen Ordner verschieben:"
#: ../../include/conversation.php:963 ../../include/conversation.php:981
msgid "Where are you right now?"
msgstr "Wo hältst du dich jetzt gerade auf?"
#: ../../include/conversation.php:964
msgid "Delete item(s)?"
msgstr "Einträge löschen?"
#: ../../include/conversation.php:1006
msgid "Post to Email"
msgstr "An E-Mail senden"
#: ../../include/conversation.php:1041 ../../mod/photos.php:1531
msgid "Share"
msgstr "Teilen"
#: ../../include/conversation.php:1042 ../../mod/editpost.php:110
#: ../../mod/wallmessage.php:154 ../../mod/message.php:332
#: ../../mod/message.php:562
msgid "Upload photo"
msgstr "Foto hochladen"
#: ../../include/conversation.php:1043 ../../mod/editpost.php:111
msgid "upload photo"
msgstr "Bild hochladen"
#: ../../include/conversation.php:1044 ../../mod/editpost.php:112
msgid "Attach file"
msgstr "Datei anhängen"
#: ../../include/conversation.php:1045 ../../mod/editpost.php:113
msgid "attach file"
msgstr "Datei anhängen"
#: ../../include/conversation.php:1046 ../../mod/editpost.php:114
#: ../../mod/wallmessage.php:155 ../../mod/message.php:333
#: ../../mod/message.php:563
msgid "Insert web link"
msgstr "Einen Link einfügen"
#: ../../include/conversation.php:1047 ../../mod/editpost.php:115
msgid "web link"
msgstr "Weblink"
#: ../../include/conversation.php:1048 ../../mod/editpost.php:116
msgid "Insert video link"
msgstr "Video-Adresse einfügen"
#: ../../include/conversation.php:1049 ../../mod/editpost.php:117
msgid "video link"
msgstr "Video-Link"
#: ../../include/conversation.php:1050 ../../mod/editpost.php:118
msgid "Insert audio link"
msgstr "Audio-Adresse einfügen"
#: ../../include/conversation.php:1051 ../../mod/editpost.php:119
msgid "audio link"
msgstr "Audio-Link"
#: ../../include/conversation.php:1052 ../../mod/editpost.php:120
msgid "Set your location"
msgstr "Deinen Standort festlegen"
#: ../../include/conversation.php:1053 ../../mod/editpost.php:121
msgid "set location"
msgstr "Ort setzen"
#: ../../include/conversation.php:1054 ../../mod/editpost.php:122
msgid "Clear browser location"
msgstr "Browser-Standort leeren"
#: ../../include/conversation.php:1055 ../../mod/editpost.php:123
msgid "clear location"
msgstr "Ort löschen"
#: ../../include/conversation.php:1057 ../../mod/editpost.php:137
msgid "Set title"
msgstr "Titel setzen"
#: ../../include/conversation.php:1059 ../../mod/editpost.php:139
msgid "Categories (comma-separated list)"
msgstr "Kategorien (kommasepariert)"
#: ../../include/conversation.php:1061 ../../mod/editpost.php:125
msgid "Permission settings"
msgstr "Berechtigungseinstellungen"
#: ../../include/conversation.php:1062
msgid "permissions"
msgstr "Zugriffsrechte"
#: ../../include/conversation.php:1070 ../../mod/editpost.php:133
msgid "CC: email addresses"
msgstr "Cc: E-Mail-Addressen"
#: ../../include/conversation.php:1071 ../../mod/editpost.php:134
msgid "Public post"
msgstr "Öffentlicher Beitrag"
#: ../../include/conversation.php:1073 ../../mod/editpost.php:140
msgid "Example: bob@example.com, mary@example.com"
msgstr "Z.B.: bob@example.com, mary@example.com"
#: ../../include/conversation.php:1077 ../../mod/editpost.php:145
#: ../../mod/photos.php:1553 ../../mod/photos.php:1597
#: ../../mod/photos.php:1680 ../../mod/content.php:742
#: ../../object/Item.php:662
msgid "Preview"
msgstr "Vorschau"
#: ../../include/conversation.php:1080 ../../include/items.php:3981
#: ../../mod/contacts.php:249 ../../mod/settings.php:561
#: ../../mod/settings.php:587 ../../mod/dfrn_request.php:848
#: ../../mod/suggest.php:32 ../../mod/tagrm.php:11 ../../mod/tagrm.php:94
#: ../../mod/editpost.php:148 ../../mod/fbrowser.php:81
#: ../../mod/fbrowser.php:116 ../../mod/message.php:212
#: ../../mod/photos.php:202 ../../mod/photos.php:290
msgid "Cancel"
msgstr "Abbrechen"
#: ../../include/conversation.php:1086
msgid "Post to Groups"
msgstr "Poste an Gruppe"
#: ../../include/conversation.php:1087
msgid "Post to Contacts"
msgstr "Poste an Kontakte"
#: ../../include/conversation.php:1088
msgid "Private post"
msgstr "Privater Beitrag"
#: ../../include/enotify.php:16
msgid "Friendica Notification"
msgstr "Friendica-Benachrichtigung"
@ -6827,96 +1964,253 @@ msgstr "Foto:"
msgid "Please visit %s to approve or reject the suggestion."
msgstr "Bitte besuche %s, um den Vorschlag zu akzeptieren oder abzulehnen."
#: ../../include/user.php:39
msgid "An invitation is required."
msgstr "Du benötigst eine Einladung."
#: ../../include/message.php:15 ../../include/message.php:172
msgid "[no subject]"
msgstr "[kein Betreff]"
#: ../../include/user.php:44
msgid "Invitation could not be verified."
msgstr "Die Einladung konnte nicht überprüft werden."
#: ../../include/message.php:144 ../../mod/item.php:443
#: ../../mod/wall_upload.php:135 ../../mod/wall_upload.php:144
#: ../../mod/wall_upload.php:151
msgid "Wall Photos"
msgstr "Pinnwand-Bilder"
#: ../../include/user.php:52
msgid "Invalid OpenID url"
msgstr "Ungültige OpenID URL"
#: ../../include/nav.php:34 ../../mod/navigation.php:20
msgid "Nothing new here"
msgstr "Keine Neuigkeiten."
#: ../../include/user.php:67
msgid "Please enter the required information."
msgstr "Bitte trage die erforderlichen Informationen ein."
#: ../../include/nav.php:38 ../../mod/navigation.php:24
msgid "Clear notifications"
msgstr "Bereinige Benachrichtigungen"
#: ../../include/user.php:81
msgid "Please use a shorter name."
msgstr "Bitte verwende einen kürzeren Namen."
#: ../../include/nav.php:73 ../../boot.php:1057
msgid "Logout"
msgstr "Abmelden"
#: ../../include/user.php:83
msgid "Name too short."
msgstr "Der Name ist zu kurz."
#: ../../include/nav.php:73
msgid "End this session"
msgstr "Diese Sitzung beenden"
#: ../../include/user.php:98
msgid "That doesn't appear to be your full (First Last) name."
msgstr "Das scheint nicht dein kompletter Name (Vor- und Nachname) zu sein."
#: ../../include/nav.php:76 ../../boot.php:1861
msgid "Status"
msgstr "Status"
#: ../../include/user.php:103
msgid "Your email domain is not among those allowed on this site."
msgstr "Die Domain deiner E-Mail Adresse ist auf dieser Seite nicht erlaubt."
#: ../../include/nav.php:76 ../../include/nav.php:143
#: ../../view/theme/diabook/theme.php:87
msgid "Your posts and conversations"
msgstr "Deine Beiträge und Unterhaltungen"
#: ../../include/user.php:106
msgid "Not a valid email address."
msgstr "Keine gültige E-Mail-Adresse."
#: ../../include/nav.php:77 ../../view/theme/diabook/theme.php:88
msgid "Your profile page"
msgstr "Deine Profilseite"
#: ../../include/user.php:116
msgid "Cannot use that email."
msgstr "Konnte diese E-Mail-Adresse nicht verwenden."
#: ../../include/nav.php:78 ../../mod/fbrowser.php:25
#: ../../view/theme/diabook/theme.php:90 ../../boot.php:1875
msgid "Photos"
msgstr "Bilder"
#: ../../include/user.php:122
msgid ""
"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and "
"must also begin with a letter."
msgstr "Dein Spitzname darf nur aus Buchstaben und Zahlen (\"a-z\",\"0-9\", \"_\" und \"-\") bestehen, außerdem muss er mit einem Buchstaben beginnen."
#: ../../include/nav.php:78 ../../view/theme/diabook/theme.php:90
msgid "Your photos"
msgstr "Deine Fotos"
#: ../../include/user.php:128 ../../include/user.php:226
msgid "Nickname is already registered. Please choose another."
msgstr "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen."
#: ../../include/nav.php:79 ../../mod/events.php:370
#: ../../view/theme/diabook/theme.php:91 ../../boot.php:1885
msgid "Events"
msgstr "Veranstaltungen"
#: ../../include/user.php:138
msgid ""
"Nickname was once registered here and may not be re-used. Please choose "
"another."
msgstr "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen."
#: ../../include/nav.php:79 ../../view/theme/diabook/theme.php:91
msgid "Your events"
msgstr "Deine Ereignisse"
#: ../../include/user.php:154
msgid "SERIOUS ERROR: Generation of security keys failed."
msgstr "FATALER FEHLER: Sicherheitsschlüssel konnten nicht erzeugt werden."
#: ../../include/nav.php:80 ../../view/theme/diabook/theme.php:92
msgid "Personal notes"
msgstr "Persönliche Notizen"
#: ../../include/user.php:212
msgid "An error occurred during registration. Please try again."
msgstr "Während der Anmeldung ist ein Fehler aufgetreten. Bitte versuche es noch einmal."
#: ../../include/nav.php:80 ../../view/theme/diabook/theme.php:92
msgid "Your personal photos"
msgstr "Deine privaten Fotos"
#: ../../include/user.php:247
msgid "An error occurred creating your default profile. Please try again."
msgstr "Bei der Erstellung des Standardprofils ist ein Fehler aufgetreten. Bitte versuche es noch einmal."
#: ../../include/nav.php:91 ../../boot.php:1058
msgid "Login"
msgstr "Anmeldung"
#: ../../include/acl_selectors.php:325
msgid "Visible to everybody"
msgstr "Für jeden sichtbar"
#: ../../include/nav.php:91
msgid "Sign in"
msgstr "Anmelden"
#: ../../include/bbcode.php:210 ../../include/bbcode.php:545
msgid "Image/photo"
msgstr "Bild/Foto"
#: ../../include/nav.php:104 ../../include/nav.php:143
#: ../../mod/notifications.php:93 ../../view/theme/diabook/theme.php:87
msgid "Home"
msgstr "Pinnwand"
#: ../../include/bbcode.php:272
#, php-format
msgid ""
"<span><a href=\"%s\" target=\"external-link\">%s</a> wrote the following <a "
"href=\"%s\" target=\"external-link\">post</a>"
msgstr "<span><a href=\"%s\" target=\"external-link\">%s</a> schrieb den folgenden <a href=\"%s\" target=\"external-link\">Beitrag</a>"
#: ../../include/nav.php:104
msgid "Home Page"
msgstr "Homepage"
#: ../../include/bbcode.php:510 ../../include/bbcode.php:530
msgid "$1 wrote:"
msgstr "$1 hat geschrieben:"
#: ../../include/nav.php:108 ../../mod/register.php:275 ../../boot.php:1033
msgid "Register"
msgstr "Registrieren"
#: ../../include/bbcode.php:553 ../../include/bbcode.php:554
msgid "Encrypted content"
msgstr "Verschlüsselter Inhalt"
#: ../../include/nav.php:108
msgid "Create an account"
msgstr "Nutzerkonto erstellen"
#: ../../include/nav.php:113 ../../mod/help.php:84
msgid "Help"
msgstr "Hilfe"
#: ../../include/nav.php:113
msgid "Help and documentation"
msgstr "Hilfe und Dokumentation"
#: ../../include/nav.php:116
msgid "Apps"
msgstr "Apps"
#: ../../include/nav.php:116
msgid "Addon applications, utilities, games"
msgstr "Addon Anwendungen, Dienstprogramme, Spiele"
#: ../../include/nav.php:118
msgid "Search site content"
msgstr "Inhalt der Seite durchsuchen"
#: ../../include/nav.php:128 ../../mod/community.php:32
#: ../../view/theme/diabook/theme.php:93
msgid "Community"
msgstr "Gemeinschaft"
#: ../../include/nav.php:128
msgid "Conversations on this site"
msgstr "Unterhaltungen auf dieser Seite"
#: ../../include/nav.php:130
msgid "Directory"
msgstr "Verzeichnis"
#: ../../include/nav.php:130
msgid "People directory"
msgstr "Nutzerverzeichnis"
#: ../../include/nav.php:140 ../../mod/notifications.php:83
msgid "Network"
msgstr "Netzwerk"
#: ../../include/nav.php:140
msgid "Conversations from your friends"
msgstr "Unterhaltungen deiner Kontakte"
#: ../../include/nav.php:141
msgid "Network Reset"
msgstr "Netzwerk zurücksetzen"
#: ../../include/nav.php:141
msgid "Load Network page with no filters"
msgstr "Netzwerk-Seite ohne Filter laden"
#: ../../include/nav.php:149 ../../mod/notifications.php:98
msgid "Introductions"
msgstr "Kontaktanfragen"
#: ../../include/nav.php:149
msgid "Friend Requests"
msgstr "Kontaktanfragen"
#: ../../include/nav.php:150 ../../mod/notifications.php:220
msgid "Notifications"
msgstr "Benachrichtigungen"
#: ../../include/nav.php:151
msgid "See all notifications"
msgstr "Alle Benachrichtigungen anzeigen"
#: ../../include/nav.php:152
msgid "Mark all system notifications seen"
msgstr "Markiere alle Systembenachrichtigungen als gelesen"
#: ../../include/nav.php:156 ../../mod/message.php:182
#: ../../mod/notifications.php:103
msgid "Messages"
msgstr "Nachrichten"
#: ../../include/nav.php:156
msgid "Private mail"
msgstr "Private E-Mail"
#: ../../include/nav.php:157
msgid "Inbox"
msgstr "Eingang"
#: ../../include/nav.php:158
msgid "Outbox"
msgstr "Ausgang"
#: ../../include/nav.php:159 ../../mod/message.php:9
msgid "New Message"
msgstr "Neue Nachricht"
#: ../../include/nav.php:162
msgid "Manage"
msgstr "Verwalten"
#: ../../include/nav.php:162
msgid "Manage other pages"
msgstr "Andere Seiten verwalten"
#: ../../include/nav.php:165
msgid "Delegations"
msgstr "Delegierungen"
#: ../../include/nav.php:165 ../../mod/delegate.php:121
msgid "Delegate Page Management"
msgstr "Delegiere das Management für die Seite"
#: ../../include/nav.php:167 ../../mod/settings.php:74 ../../mod/admin.php:849
#: ../../mod/admin.php:1057 ../../mod/uexport.php:48
#: ../../mod/newmember.php:22 ../../view/theme/diabook/theme.php:537
#: ../../view/theme/diabook/theme.php:658
msgid "Settings"
msgstr "Einstellungen"
#: ../../include/nav.php:167 ../../mod/settings.php:30 ../../mod/uexport.php:9
msgid "Account settings"
msgstr "Kontoeinstellungen"
#: ../../include/nav.php:169 ../../boot.php:1360
msgid "Profiles"
msgstr "Profile"
#: ../../include/nav.php:169
msgid "Manage/Edit Profiles"
msgstr "Profile Verwalten/Editieren"
#: ../../include/nav.php:171 ../../mod/contacts.php:607
#: ../../view/theme/diabook/theme.php:89
msgid "Contacts"
msgstr "Kontakte"
#: ../../include/nav.php:171
msgid "Manage/edit friends and contacts"
msgstr "Freunde und Kontakte verwalten/editieren"
#: ../../include/nav.php:178 ../../mod/admin.php:120
msgid "Admin"
msgstr "Administration"
#: ../../include/nav.php:178
msgid "Site setup and configuration"
msgstr "Einstellungen der Seite und Konfiguration"
#: ../../include/nav.php:182
msgid "Navigation"
msgstr "Navigation"
#: ../../include/nav.php:182
msgid "Site map"
msgstr "Sitemap"
#: ../../include/network.php:875
msgid "view full size"
msgstr "Volle Größe anzeigen"
#: ../../include/oembed.php:138
msgid "Embedded content"
@ -6926,114 +2220,4863 @@ msgstr "Eingebetteter Inhalt"
msgid "Embedding disabled"
msgstr "Einbettungen deaktiviert"
#: ../../include/group.php:25
#: ../../include/items.php:3446 ../../mod/dfrn_request.php:716
msgid "[Name Withheld]"
msgstr "[Name unterdrückt]"
#: ../../include/items.php:3453
msgid "A new person is sharing with you at "
msgstr "Eine neue Person teilt mit dir auf "
#: ../../include/items.php:3453
msgid "You have a new follower at "
msgstr "Du hast einen neuen Kontakt auf "
#: ../../include/items.php:3937 ../../mod/admin.php:158
#: ../../mod/admin.php:797 ../../mod/admin.php:997 ../../mod/viewsrc.php:15
#: ../../mod/notice.php:15 ../../mod/display.php:51 ../../mod/display.php:213
msgid "Item not found."
msgstr "Beitrag nicht gefunden."
#: ../../include/items.php:3976
msgid "Do you really want to delete this item?"
msgstr "Möchtest du wirklich dieses Item löschen?"
#: ../../include/items.php:3978 ../../mod/profiles.php:606
#: ../../mod/api.php:105 ../../mod/register.php:239 ../../mod/contacts.php:246
#: ../../mod/settings.php:934 ../../mod/settings.php:940
#: ../../mod/settings.php:948 ../../mod/settings.php:952
#: ../../mod/settings.php:957 ../../mod/settings.php:963
#: ../../mod/settings.php:969 ../../mod/settings.php:975
#: ../../mod/settings.php:1005 ../../mod/settings.php:1006
#: ../../mod/settings.php:1007 ../../mod/settings.php:1008
#: ../../mod/settings.php:1009 ../../mod/dfrn_request.php:836
#: ../../mod/suggest.php:29 ../../mod/message.php:209
msgid "Yes"
msgstr "Ja"
#: ../../include/items.php:4101 ../../mod/profiles.php:146
#: ../../mod/profiles.php:567 ../../mod/notes.php:20 ../../mod/nogroup.php:25
#: ../../mod/item.php:140 ../../mod/item.php:156 ../../mod/allfriends.php:9
#: ../../mod/api.php:26 ../../mod/api.php:31 ../../mod/register.php:40
#: ../../mod/regmod.php:118 ../../mod/attach.php:33 ../../mod/contacts.php:147
#: ../../mod/settings.php:91 ../../mod/settings.php:542
#: ../../mod/settings.php:547 ../../mod/crepair.php:115
#: ../../mod/delegate.php:6 ../../mod/poke.php:135
#: ../../mod/dfrn_confirm.php:53 ../../mod/suggest.php:56
#: ../../mod/editpost.php:10 ../../mod/events.php:140 ../../mod/uimport.php:23
#: ../../mod/follow.php:9 ../../mod/fsuggest.php:78 ../../mod/group.php:19
#: ../../mod/viewcontacts.php:22 ../../mod/wall_attach.php:55
#: ../../mod/wall_upload.php:66 ../../mod/invite.php:15
#: ../../mod/invite.php:101 ../../mod/wallmessage.php:9
#: ../../mod/wallmessage.php:33 ../../mod/wallmessage.php:79
#: ../../mod/wallmessage.php:103 ../../mod/manage.php:96
#: ../../mod/message.php:38 ../../mod/message.php:174 ../../mod/mood.php:114
#: ../../mod/network.php:6 ../../mod/notifications.php:66
#: ../../mod/photos.php:133 ../../mod/photos.php:1044
#: ../../mod/display.php:209 ../../mod/install.php:151
#: ../../mod/profile_photo.php:19 ../../mod/profile_photo.php:169
#: ../../mod/profile_photo.php:180 ../../mod/profile_photo.php:193
#: ../../index.php:346
msgid "Permission denied."
msgstr "Zugriff verweigert."
#: ../../include/items.php:4171
msgid "Archives"
msgstr "Archiv"
#: ../../include/security.php:22
msgid "Welcome "
msgstr "Willkommen "
#: ../../include/security.php:23
msgid "Please upload a profile photo."
msgstr "Bitte lade ein Profilbild hoch."
#: ../../include/security.php:26
msgid "Welcome back "
msgstr "Willkommen zurück "
#: ../../include/security.php:366
msgid ""
"A deleted group with this name was revived. Existing item permissions "
"<strong>may</strong> apply to this group and any future members. If this is "
"not what you intended, please create another group with a different name."
msgstr "Eine gelöschte Gruppe mit diesem Namen wurde wiederbelebt. Bestehende Berechtigungseinstellungen <strong>könnten</strong> auf diese Gruppe oder zukünftige Mitglieder angewandt werden. Falls du dies nicht möchtest, erstelle bitte eine andere Gruppe mit einem anderen Namen."
"The form security token was not correct. This probably happened because the "
"form has been opened for too long (>3 hours) before submitting it."
msgstr "Das Sicherheitsmerkmal war nicht korrekt. Das passiert meistens wenn das Formular vor dem Absenden zu lange geöffnet war (länger als 3 Stunden)."
#: ../../include/group.php:207
msgid "Default privacy group for new contacts"
msgstr "Voreingestellte Gruppe für neue Kontakte"
#: ../../mod/profiles.php:18 ../../mod/profiles.php:133
#: ../../mod/profiles.php:160 ../../mod/profiles.php:579
#: ../../mod/dfrn_confirm.php:62
msgid "Profile not found."
msgstr "Profil nicht gefunden."
#: ../../include/group.php:226
msgid "Everybody"
#: ../../mod/profiles.php:37
msgid "Profile deleted."
msgstr "Profil gelöscht."
#: ../../mod/profiles.php:55 ../../mod/profiles.php:89
msgid "Profile-"
msgstr "Profil-"
#: ../../mod/profiles.php:74 ../../mod/profiles.php:117
msgid "New profile created."
msgstr "Neues Profil angelegt."
#: ../../mod/profiles.php:95
msgid "Profile unavailable to clone."
msgstr "Profil nicht zum Duplizieren verfügbar."
#: ../../mod/profiles.php:170
msgid "Profile Name is required."
msgstr "Profilname ist erforderlich."
#: ../../mod/profiles.php:317
msgid "Marital Status"
msgstr "Familienstand"
#: ../../mod/profiles.php:321
msgid "Romantic Partner"
msgstr "Romanze"
#: ../../mod/profiles.php:325
msgid "Likes"
msgstr "Likes"
#: ../../mod/profiles.php:329
msgid "Dislikes"
msgstr "Dislikes"
#: ../../mod/profiles.php:333
msgid "Work/Employment"
msgstr "Arbeit / Beschäftigung"
#: ../../mod/profiles.php:336
msgid "Religion"
msgstr "Religion"
#: ../../mod/profiles.php:340
msgid "Political Views"
msgstr "Politische Ansichten"
#: ../../mod/profiles.php:344
msgid "Gender"
msgstr "Geschlecht"
#: ../../mod/profiles.php:348
msgid "Sexual Preference"
msgstr "Sexuelle Vorlieben"
#: ../../mod/profiles.php:352
msgid "Homepage"
msgstr "Webseite"
#: ../../mod/profiles.php:356
msgid "Interests"
msgstr "Interessen"
#: ../../mod/profiles.php:360
msgid "Address"
msgstr "Adresse"
#: ../../mod/profiles.php:367
msgid "Location"
msgstr "Wohnort"
#: ../../mod/profiles.php:450
msgid "Profile updated."
msgstr "Profil aktualisiert."
#: ../../mod/profiles.php:517
msgid " and "
msgstr " und "
#: ../../mod/profiles.php:525
msgid "public profile"
msgstr "öffentliches Profil"
#: ../../mod/profiles.php:528
#, php-format
msgid "%1$s changed %2$s to &ldquo;%3$s&rdquo;"
msgstr "%1$s hat %2$s geändert auf &ldquo;%3$s&rdquo;"
#: ../../mod/profiles.php:529
#, php-format
msgid " - Visit %1$s's %2$s"
msgstr " %1$ss %2$s besuchen"
#: ../../mod/profiles.php:532
#, php-format
msgid "%1$s has an updated %2$s, changing %3$s."
msgstr "%1$s hat folgendes aktualisiert %2$s, verändert wurde %3$s."
#: ../../mod/profiles.php:605
msgid "Hide your contact/friend list from viewers of this profile?"
msgstr "Liste der Kontakte vor Betrachtern dieses Profils verbergen?"
#: ../../mod/profiles.php:607 ../../mod/api.php:106 ../../mod/register.php:240
#: ../../mod/settings.php:934 ../../mod/settings.php:940
#: ../../mod/settings.php:948 ../../mod/settings.php:952
#: ../../mod/settings.php:957 ../../mod/settings.php:963
#: ../../mod/settings.php:969 ../../mod/settings.php:975
#: ../../mod/settings.php:1005 ../../mod/settings.php:1006
#: ../../mod/settings.php:1007 ../../mod/settings.php:1008
#: ../../mod/settings.php:1009 ../../mod/dfrn_request.php:837
msgid "No"
msgstr "Nein"
#: ../../mod/profiles.php:625
msgid "Edit Profile Details"
msgstr "Profil bearbeiten"
#: ../../mod/profiles.php:626 ../../mod/contacts.php:386
#: ../../mod/settings.php:560 ../../mod/settings.php:670
#: ../../mod/settings.php:739 ../../mod/settings.php:811
#: ../../mod/settings.php:1037 ../../mod/crepair.php:166
#: ../../mod/poke.php:199 ../../mod/admin.php:480 ../../mod/admin.php:751
#: ../../mod/admin.php:890 ../../mod/admin.php:1090 ../../mod/admin.php:1177
#: ../../mod/events.php:478 ../../mod/fsuggest.php:107 ../../mod/group.php:87
#: ../../mod/invite.php:140 ../../mod/localtime.php:45
#: ../../mod/manage.php:110 ../../mod/message.php:335
#: ../../mod/message.php:564 ../../mod/mood.php:137 ../../mod/photos.php:1078
#: ../../mod/photos.php:1199 ../../mod/photos.php:1501
#: ../../mod/photos.php:1552 ../../mod/photos.php:1596
#: ../../mod/photos.php:1679 ../../mod/install.php:248
#: ../../mod/install.php:286 ../../mod/content.php:733
#: ../../object/Item.php:653 ../../view/theme/cleanzero/config.php:80
#: ../../view/theme/diabook/config.php:152
#: ../../view/theme/diabook/theme.php:642 ../../view/theme/dispy/config.php:70
#: ../../view/theme/quattro/config.php:64
msgid "Submit"
msgstr "Senden"
#: ../../mod/profiles.php:627
msgid "Change Profile Photo"
msgstr "Profilbild ändern"
#: ../../mod/profiles.php:628
msgid "View this profile"
msgstr "Dieses Profil anzeigen"
#: ../../mod/profiles.php:629
msgid "Create a new profile using these settings"
msgstr "Neues Profil anlegen und diese Einstellungen verwenden"
#: ../../mod/profiles.php:630
msgid "Clone this profile"
msgstr "Dieses Profil duplizieren"
#: ../../mod/profiles.php:631
msgid "Delete this profile"
msgstr "Dieses Profil löschen"
#: ../../mod/profiles.php:632
msgid "Profile Name:"
msgstr "Profilname:"
#: ../../mod/profiles.php:633
msgid "Your Full Name:"
msgstr "Dein kompletter Name:"
#: ../../mod/profiles.php:634
msgid "Title/Description:"
msgstr "Titel/Beschreibung:"
#: ../../mod/profiles.php:635
msgid "Your Gender:"
msgstr "Dein Geschlecht:"
#: ../../mod/profiles.php:636
#, php-format
msgid "Birthday (%s):"
msgstr "Geburtstag (%s):"
#: ../../mod/profiles.php:637
msgid "Street Address:"
msgstr "Adresse:"
#: ../../mod/profiles.php:638
msgid "Locality/City:"
msgstr "Wohnort:"
#: ../../mod/profiles.php:639
msgid "Postal/Zip Code:"
msgstr "Postleitzahl:"
#: ../../mod/profiles.php:640
msgid "Country:"
msgstr "Land:"
#: ../../mod/profiles.php:641
msgid "Region/State:"
msgstr "Region/Bundesstaat:"
#: ../../mod/profiles.php:642
msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
msgstr "<span class=\"heart\">&hearts;</span> Beziehungsstatus:"
#: ../../mod/profiles.php:643
msgid "Who: (if applicable)"
msgstr "Wer: (falls anwendbar)"
#: ../../mod/profiles.php:644
msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
msgstr "Beispiele: cathy123, Cathy Williams, cathy@example.com"
#: ../../mod/profiles.php:645
msgid "Since [date]:"
msgstr "Seit [Datum]:"
#: ../../mod/profiles.php:647
msgid "Homepage URL:"
msgstr "Adresse der Homepage:"
#: ../../mod/profiles.php:650
msgid "Religious Views:"
msgstr "Religiöse Ansichten:"
#: ../../mod/profiles.php:651
msgid "Public Keywords:"
msgstr "Öffentliche Schlüsselwörter:"
#: ../../mod/profiles.php:652
msgid "Private Keywords:"
msgstr "Private Schlüsselwörter:"
#: ../../mod/profiles.php:655
msgid "Example: fishing photography software"
msgstr "Beispiel: Fischen Fotografie Software"
#: ../../mod/profiles.php:656
msgid "(Used for suggesting potential friends, can be seen by others)"
msgstr "(Wird verwendet, um potentielle Freunde zu finden, könnte von Fremden eingesehen werden)"
#: ../../mod/profiles.php:657
msgid "(Used for searching profiles, never shown to others)"
msgstr "(Wird für die Suche nach Profilen verwendet und niemals veröffentlicht)"
#: ../../mod/profiles.php:658
msgid "Tell us about yourself..."
msgstr "Erzähle uns ein bisschen von dir …"
#: ../../mod/profiles.php:659
msgid "Hobbies/Interests"
msgstr "Hobbies/Interessen"
#: ../../mod/profiles.php:660
msgid "Contact information and Social Networks"
msgstr "Kontaktinformationen und Soziale Netzwerke"
#: ../../mod/profiles.php:661
msgid "Musical interests"
msgstr "Musikalische Interessen"
#: ../../mod/profiles.php:662
msgid "Books, literature"
msgstr "Literatur/Bücher"
#: ../../mod/profiles.php:663
msgid "Television"
msgstr "Fernsehen"
#: ../../mod/profiles.php:664
msgid "Film/dance/culture/entertainment"
msgstr "Filme/Tänze/Kultur/Unterhaltung"
#: ../../mod/profiles.php:665
msgid "Love/romance"
msgstr "Liebesleben"
#: ../../mod/profiles.php:666
msgid "Work/employment"
msgstr "Arbeit/Beschäftigung"
#: ../../mod/profiles.php:667
msgid "School/education"
msgstr "Schule/Ausbildung"
#: ../../mod/profiles.php:672
msgid ""
"This is your <strong>public</strong> profile.<br />It <strong>may</strong> "
"be visible to anybody using the internet."
msgstr "Dies ist dein <strong>öffentliches</strong> Profil.<br />Es <strong>könnte</strong> für jeden Nutzer des Internets sichtbar sein."
#: ../../mod/profiles.php:682 ../../mod/directory.php:111
msgid "Age: "
msgstr "Alter: "
#: ../../mod/profiles.php:721
msgid "Edit/Manage Profiles"
msgstr "Verwalte/Editiere Profile"
#: ../../mod/profiles.php:722 ../../boot.php:1366 ../../boot.php:1392
msgid "Change profile photo"
msgstr "Profilbild ändern"
#: ../../mod/profiles.php:723 ../../boot.php:1367
msgid "Create New Profile"
msgstr "Neues Profil anlegen"
#: ../../mod/profiles.php:734 ../../boot.php:1377
msgid "Profile Image"
msgstr "Profilbild"
#: ../../mod/profiles.php:736 ../../boot.php:1380
msgid "visible to everybody"
msgstr "sichtbar für jeden"
#: ../../mod/profiles.php:737 ../../boot.php:1381
msgid "Edit visibility"
msgstr "Sichtbarkeit bearbeiten"
#: ../../mod/profperm.php:19 ../../mod/group.php:72 ../../index.php:345
msgid "Permission denied"
msgstr "Zugriff verweigert"
#: ../../mod/profperm.php:25 ../../mod/profperm.php:55
msgid "Invalid profile identifier."
msgstr "Ungültiger Profil-Bezeichner"
#: ../../mod/profperm.php:101
msgid "Profile Visibility Editor"
msgstr "Editor für die Profil-Sichtbarkeit"
#: ../../mod/profperm.php:105 ../../mod/group.php:224
msgid "Click on a contact to add or remove."
msgstr "Klicke einen Kontakt an, um ihn hinzuzufügen oder zu entfernen"
#: ../../mod/profperm.php:114
msgid "Visible To"
msgstr "Sichtbar für"
#: ../../mod/profperm.php:130
msgid "All Contacts (with secure profile access)"
msgstr "Alle Kontakte (mit gesichertem Profilzugriff)"
#: ../../mod/notes.php:44 ../../boot.php:1892
msgid "Personal Notes"
msgstr "Persönliche Notizen"
#: ../../mod/nogroup.php:40 ../../mod/contacts.php:395
#: ../../mod/contacts.php:585 ../../mod/viewcontacts.php:62
#, php-format
msgid "Visit %s's profile [%s]"
msgstr "Besuche %ss Profil [%s]"
#: ../../mod/nogroup.php:41 ../../mod/contacts.php:586
msgid "Edit contact"
msgstr "Kontakt bearbeiten"
#: ../../mod/nogroup.php:59
msgid "Contacts who are not members of a group"
msgstr "Kontakte, die keiner Gruppe zugewiesen sind"
#: ../../mod/ping.php:238
msgid "{0} wants to be your friend"
msgstr "{0} möchte mit dir in Kontakt treten"
#: ../../mod/ping.php:243
msgid "{0} sent you a message"
msgstr "{0} hat dir eine Nachricht geschickt"
#: ../../mod/ping.php:248
msgid "{0} requested registration"
msgstr "{0} möchte sich registrieren"
#: ../../mod/ping.php:254
#, php-format
msgid "{0} commented %s's post"
msgstr "{0} kommentierte einen Beitrag von %s"
#: ../../mod/ping.php:259
#, php-format
msgid "{0} liked %s's post"
msgstr "{0} mag %ss Beitrag"
#: ../../mod/ping.php:264
#, php-format
msgid "{0} disliked %s's post"
msgstr "{0} mag %ss Beitrag nicht"
#: ../../mod/ping.php:269
#, php-format
msgid "{0} is now friends with %s"
msgstr "{0} ist jetzt mit %s befreundet"
#: ../../mod/ping.php:274
msgid "{0} posted"
msgstr "{0} hat etwas veröffentlicht"
#: ../../mod/ping.php:279
#, php-format
msgid "{0} tagged %s's post with #%s"
msgstr "{0} hat %ss Beitrag mit dem Schlagwort #%s versehen"
#: ../../mod/ping.php:285
msgid "{0} mentioned you in a post"
msgstr "{0} hat dich in einem Beitrag erwähnt"
#: ../../mod/item.php:105
msgid "Unable to locate original post."
msgstr "Konnte den Originalbeitrag nicht finden."
#: ../../mod/item.php:307
msgid "Empty post discarded."
msgstr "Leerer Beitrag wurde verworfen."
#: ../../mod/item.php:869
msgid "System error. Post not saved."
msgstr "Systemfehler. Beitrag konnte nicht gespeichert werden."
#: ../../mod/item.php:894
#, php-format
msgid ""
"This message was sent to you by %s, a member of the Friendica social "
"network."
msgstr "Diese Nachricht wurde dir von %s geschickt, einem Mitglied des Sozialen Netzwerks Friendica."
#: ../../mod/item.php:896
#, php-format
msgid "You may visit them online at %s"
msgstr "Du kannst sie online unter %s besuchen"
#: ../../mod/item.php:897
msgid ""
"Please contact the sender by replying to this post if you do not wish to "
"receive these messages."
msgstr "Falls du diese Beiträge nicht erhalten möchtest, kontaktiere bitte den Autor, indem du auf diese Nachricht antwortest."
#: ../../mod/item.php:901
#, php-format
msgid "%s posted an update."
msgstr "%s hat ein Update veröffentlicht."
#: ../../mod/allfriends.php:34
#, php-format
msgid "Friends of %s"
msgstr "Freunde von %s"
#: ../../mod/allfriends.php:40
msgid "No friends to display."
msgstr "Keine Freunde zum Anzeigen."
#: ../../mod/search.php:21 ../../mod/network.php:224
msgid "Remove term"
msgstr "Begriff entfernen"
#: ../../mod/search.php:89 ../../mod/dfrn_request.php:761
#: ../../mod/directory.php:31 ../../mod/viewcontacts.php:17
#: ../../mod/photos.php:914 ../../mod/display.php:19
#: ../../mod/community.php:18
msgid "Public access denied."
msgstr "Öffentlicher Zugriff verweigert."
#: ../../mod/search.php:180 ../../mod/search.php:206
#: ../../mod/community.php:61 ../../mod/community.php:89
msgid "No results."
msgstr "Keine Ergebnisse."
#: ../../mod/api.php:76 ../../mod/api.php:102
msgid "Authorize application connection"
msgstr "Verbindung der Applikation autorisieren"
#: ../../mod/api.php:77
msgid "Return to your app and insert this Securty Code:"
msgstr "Gehe zu deiner Anwendung zurück und trage dort folgenden Sicherheitscode ein:"
#: ../../mod/api.php:89
msgid "Please login to continue."
msgstr "Bitte melde dich an um fortzufahren."
#: ../../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 "Möchtest du dieser Anwendung den Zugriff auf deine Beiträge und Kontakte, sowie das Erstellen neuer Beiträge in deinem Namen gestatten?"
#: ../../mod/register.php:91 ../../mod/regmod.php:54
#, php-format
msgid "Registration details for %s"
msgstr "Details der Registration von %s"
#: ../../mod/register.php:99
msgid ""
"Registration successful. Please check your email for further instructions."
msgstr "Registrierung erfolgreich. Eine E-Mail mit weiteren Anweisungen wurde an dich gesendet."
#: ../../mod/register.php:103
msgid "Failed to send email message. Here is the message that failed."
msgstr "Konnte die E-Mail nicht versenden. Hier ist die Nachricht, die nicht gesendet werden konnte."
#: ../../mod/register.php:108
msgid "Your registration can not be processed."
msgstr "Deine Registrierung konnte nicht verarbeitet werden."
#: ../../mod/register.php:145
#, php-format
msgid "Registration request at %s"
msgstr "Registrierungsanfrage auf %s"
#: ../../mod/register.php:154
msgid "Your registration is pending approval by the site owner."
msgstr "Deine Registrierung muss noch vom Betreiber der Seite freigegeben werden."
#: ../../mod/register.php:192 ../../mod/uimport.php:50
msgid ""
"This site has exceeded the number of allowed daily account registrations. "
"Please try again tomorrow."
msgstr "Die maximale Anzahl täglicher Registrierungen auf dieser Seite wurde überschritten. Bitte versuche es morgen noch einmal."
#: ../../mod/register.php:220
msgid ""
"You may (optionally) fill in this form via OpenID by supplying your OpenID "
"and clicking 'Register'."
msgstr "Du kannst dieses Formular auch (optional) mit deiner OpenID ausfüllen, indem du deine OpenID angibst und 'Registrieren' klickst."
#: ../../mod/register.php:221
msgid ""
"If you are not familiar with OpenID, please leave that field blank and fill "
"in the rest of the items."
msgstr "Wenn du nicht mit OpenID vertraut bist, lass dieses Feld bitte leer und fülle die restlichen Felder aus."
#: ../../mod/register.php:222
msgid "Your OpenID (optional): "
msgstr "Deine OpenID (optional): "
#: ../../mod/register.php:236
msgid "Include your profile in member directory?"
msgstr "Soll dein Profil im Nutzerverzeichnis angezeigt werden?"
#: ../../mod/register.php:257
msgid "Membership on this site is by invitation only."
msgstr "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung möglich."
#: ../../mod/register.php:258
msgid "Your invitation ID: "
msgstr "ID deiner Einladung: "
#: ../../mod/register.php:261 ../../mod/admin.php:481
msgid "Registration"
msgstr "Registrierung"
#: ../../mod/register.php:269
msgid "Your Full Name (e.g. Joe Smith): "
msgstr "Vollständiger Name (z.B. Max Mustermann): "
#: ../../mod/register.php:270
msgid "Your Email Address: "
msgstr "Deine E-Mail-Adresse: "
#: ../../mod/register.php:271
msgid ""
"Choose a profile nickname. This must begin with a text character. Your "
"profile address on this site will then be "
"'<strong>nickname@$sitename</strong>'."
msgstr "Wähle einen Spitznamen für dein Profil. Dieser muss mit einem Buchstaben beginnen. Die Adresse deines Profils auf dieser Seite wird '<strong>spitzname@$sitename</strong>' sein."
#: ../../mod/register.php:272
msgid "Choose a nickname: "
msgstr "Spitznamen wählen: "
#: ../../mod/regmod.php:63
msgid "Account approved."
msgstr "Konto freigegeben."
#: ../../mod/regmod.php:100
#, php-format
msgid "Registration revoked for %s"
msgstr "Registrierung für %s wurde zurückgezogen"
#: ../../mod/regmod.php:112
msgid "Please login."
msgstr "Bitte melde dich an."
#: ../../mod/attach.php:8
msgid "Item not available."
msgstr "Beitrag nicht verfügbar."
#: ../../mod/attach.php:20
msgid "Item was not found."
msgstr "Beitrag konnte nicht gefunden werden."
#: ../../mod/removeme.php:45 ../../mod/removeme.php:48
msgid "Remove My Account"
msgstr "Konto löschen"
#: ../../mod/removeme.php:46
msgid ""
"This will completely remove your account. Once this has been done it is not "
"recoverable."
msgstr "Dein Konto wird endgültig gelöscht. Es gibt keine Möglichkeit, es wiederherzustellen."
#: ../../mod/removeme.php:47
msgid "Please enter your password for verification:"
msgstr "Bitte gib dein Passwort zur Verifikation ein:"
#: ../../mod/babel.php:17
msgid "Source (bbcode) text:"
msgstr "Quelle (bbcode) Text:"
#: ../../mod/babel.php:23
msgid "Source (Diaspora) text to convert to BBcode:"
msgstr "Eingabe (Diaspora) Nach BBCode zu konvertierender Text:"
#: ../../mod/babel.php:31
msgid "Source input: "
msgstr "Originaltext:"
#: ../../mod/babel.php:35
msgid "bb2html (raw HTML): "
msgstr "bb2html (reines HTML): "
#: ../../mod/babel.php:39
msgid "bb2html: "
msgstr "bb2html: "
#: ../../mod/babel.php:43
msgid "bb2html2bb: "
msgstr "bb2html2bb: "
#: ../../mod/babel.php:47
msgid "bb2md: "
msgstr "bb2md: "
#: ../../mod/babel.php:51
msgid "bb2md2html: "
msgstr "bb2md2html: "
#: ../../mod/babel.php:55
msgid "bb2dia2bb: "
msgstr "bb2dia2bb: "
#: ../../mod/babel.php:59
msgid "bb2md2html2bb: "
msgstr "bb2md2html2bb: "
#: ../../mod/babel.php:69
msgid "Source input (Diaspora format): "
msgstr "Texteingabe (Diaspora Format): "
#: ../../mod/babel.php:74
msgid "diaspora2bb: "
msgstr "diaspora2bb: "
#: ../../mod/common.php:42
msgid "Common Friends"
msgstr "Gemeinsame Freunde"
#: ../../mod/common.php:78
msgid "No contacts in common."
msgstr "Keine gemeinsamen Kontakte."
#: ../../mod/apps.php:7
msgid "You must be logged in to use addons. "
msgstr "Sie müssen angemeldet sein um Addons benutzen zu können."
#: ../../mod/apps.php:11
msgid "Applications"
msgstr "Anwendungen"
#: ../../mod/apps.php:14
msgid "No installed applications."
msgstr "Keine Applikationen installiert."
#: ../../mod/contacts.php:85 ../../mod/contacts.php:165
msgid "Could not access contact record."
msgstr "Konnte nicht auf die Kontaktdaten zugreifen."
#: ../../mod/contacts.php:99
msgid "Could not locate selected profile."
msgstr "Konnte das ausgewählte Profil nicht finden."
#: ../../mod/contacts.php:122
msgid "Contact updated."
msgstr "Kontakt aktualisiert."
#: ../../mod/contacts.php:124 ../../mod/dfrn_request.php:571
msgid "Failed to update contact record."
msgstr "Aktualisierung der Kontaktdaten fehlgeschlagen."
#: ../../mod/contacts.php:187
msgid "Contact has been blocked"
msgstr "Kontakt wurde blockiert"
#: ../../mod/contacts.php:187
msgid "Contact has been unblocked"
msgstr "Kontakt wurde wieder freigegeben"
#: ../../mod/contacts.php:201
msgid "Contact has been ignored"
msgstr "Kontakt wurde ignoriert"
#: ../../mod/contacts.php:201
msgid "Contact has been unignored"
msgstr "Kontakt wird nicht mehr ignoriert"
#: ../../mod/contacts.php:220
msgid "Contact has been archived"
msgstr "Kontakt wurde archiviert"
#: ../../mod/contacts.php:220
msgid "Contact has been unarchived"
msgstr "Kontakt wurde aus dem Archiv geholt"
#: ../../mod/contacts.php:244
msgid "Do you really want to delete this contact?"
msgstr "Möchtest du wirklich diesen Kontakt löschen?"
#: ../../mod/contacts.php:263
msgid "Contact has been removed."
msgstr "Kontakt wurde entfernt."
#: ../../mod/contacts.php:301
#, php-format
msgid "You are mutual friends with %s"
msgstr "Du hast mit %s eine beidseitige Freundschaft"
#: ../../mod/contacts.php:305
#, php-format
msgid "You are sharing with %s"
msgstr "Du teilst mit %s"
#: ../../mod/contacts.php:310
#, php-format
msgid "%s is sharing with you"
msgstr "%s teilt mit Dir"
#: ../../mod/contacts.php:327
msgid "Private communications are not available for this contact."
msgstr "Private Kommunikation ist für diesen Kontakt nicht verfügbar."
#: ../../mod/contacts.php:330
msgid "Never"
msgstr "Niemals"
#: ../../mod/contacts.php:334
msgid "(Update was successful)"
msgstr "(Aktualisierung war erfolgreich)"
#: ../../mod/contacts.php:334
msgid "(Update was not successful)"
msgstr "(Aktualisierung war nicht erfolgreich)"
#: ../../mod/contacts.php:336
msgid "Suggest friends"
msgstr "Kontakte vorschlagen"
#: ../../mod/contacts.php:340
#, php-format
msgid "Network type: %s"
msgstr "Netzwerktyp: %s"
#: ../../mod/contacts.php:348
msgid "View all contacts"
msgstr "Alle Kontakte anzeigen"
#: ../../mod/contacts.php:353 ../../mod/contacts.php:412
#: ../../mod/admin.php:760
msgid "Unblock"
msgstr "Entsperren"
#: ../../mod/contacts.php:353 ../../mod/contacts.php:412
#: ../../mod/admin.php:759
msgid "Block"
msgstr "Sperren"
#: ../../mod/contacts.php:356
msgid "Toggle Blocked status"
msgstr "Geblockt-Status ein-/ausschalten"
#: ../../mod/contacts.php:359 ../../mod/contacts.php:413
msgid "Unignore"
msgstr "Ignorieren aufheben"
#: ../../mod/contacts.php:359 ../../mod/contacts.php:413
#: ../../mod/notifications.php:51 ../../mod/notifications.php:164
#: ../../mod/notifications.php:210
msgid "Ignore"
msgstr "Ignorieren"
#: ../../mod/contacts.php:362
msgid "Toggle Ignored status"
msgstr "Ignoriert-Status ein-/ausschalten"
#: ../../mod/contacts.php:366
msgid "Unarchive"
msgstr "Aus Archiv zurückholen"
#: ../../mod/contacts.php:366
msgid "Archive"
msgstr "Archivieren"
#: ../../mod/contacts.php:369
msgid "Toggle Archive status"
msgstr "Archiviert-Status ein-/ausschalten"
#: ../../mod/contacts.php:372
msgid "Repair"
msgstr "Reparieren"
#: ../../mod/contacts.php:375
msgid "Advanced Contact Settings"
msgstr "Fortgeschrittene Kontakteinstellungen"
#: ../../mod/contacts.php:381
msgid "Communications lost with this contact!"
msgstr "Verbindungen mit diesem Kontakt verloren!"
#: ../../mod/contacts.php:384
msgid "Contact Editor"
msgstr "Kontakt Editor"
#: ../../mod/contacts.php:387
msgid "Profile Visibility"
msgstr "Profil-Sichtbarkeit"
#: ../../mod/contacts.php:388
#, php-format
msgid ""
"Please choose the profile you would like to display to %s when viewing your "
"profile securely."
msgstr "Bitte wähle eines deiner Profile das angezeigt werden soll, wenn %s dein Profil aufruft."
#: ../../mod/contacts.php:389
msgid "Contact Information / Notes"
msgstr "Kontakt Informationen / Notizen"
#: ../../mod/contacts.php:390
msgid "Edit contact notes"
msgstr "Notizen zum Kontakt bearbeiten"
#: ../../mod/contacts.php:396
msgid "Block/Unblock contact"
msgstr "Kontakt blockieren/freischalten"
#: ../../mod/contacts.php:397
msgid "Ignore contact"
msgstr "Ignoriere den Kontakt"
#: ../../mod/contacts.php:398
msgid "Repair URL settings"
msgstr "URL Einstellungen reparieren"
#: ../../mod/contacts.php:399
msgid "View conversations"
msgstr "Unterhaltungen anzeigen"
#: ../../mod/contacts.php:401
msgid "Delete contact"
msgstr "Lösche den Kontakt"
#: ../../mod/contacts.php:405
msgid "Last update:"
msgstr "letzte Aktualisierung:"
#: ../../mod/contacts.php:407
msgid "Update public posts"
msgstr "Öffentliche Beiträge aktualisieren"
#: ../../mod/contacts.php:409 ../../mod/admin.php:1235
msgid "Update now"
msgstr "Jetzt aktualisieren"
#: ../../mod/contacts.php:416
msgid "Currently blocked"
msgstr "Derzeit geblockt"
#: ../../mod/contacts.php:417
msgid "Currently ignored"
msgstr "Derzeit ignoriert"
#: ../../mod/contacts.php:418
msgid "Currently archived"
msgstr "Momentan archiviert"
#: ../../mod/contacts.php:419 ../../mod/notifications.php:157
#: ../../mod/notifications.php:204
msgid "Hide this contact from others"
msgstr "Verberge diesen Kontakt vor anderen"
#: ../../mod/contacts.php:419
msgid ""
"Replies/likes to your public posts <strong>may</strong> still be visible"
msgstr "Antworten/Likes auf deine öffentlichen Beiträge <strong>könnten</strong> weiterhin sichtbar sein"
#: ../../mod/contacts.php:470
msgid "Suggestions"
msgstr "Kontaktvorschläge"
#: ../../mod/contacts.php:473
msgid "Suggest potential friends"
msgstr "Freunde vorschlagen"
#: ../../mod/contacts.php:476 ../../mod/group.php:194
msgid "All Contacts"
msgstr "Alle Kontakte"
#: ../../include/group.php:249
msgid "edit"
msgstr "bearbeiten"
#: ../../mod/contacts.php:479
msgid "Show all contacts"
msgstr "Alle Kontakte anzeigen"
#: ../../include/group.php:271
msgid "Edit group"
msgstr "Gruppe bearbeiten"
#: ../../mod/contacts.php:482
msgid "Unblocked"
msgstr "Ungeblockt"
#: ../../include/group.php:272
msgid "Create a new group"
msgstr "Neue Gruppe erstellen"
#: ../../mod/contacts.php:485
msgid "Only show unblocked contacts"
msgstr "Nur nicht-blockierte Kontakte anzeigen"
#: ../../include/group.php:273
msgid "Contacts not in any group"
msgstr "Kontakte in keiner Gruppe"
#: ../../mod/contacts.php:489
msgid "Blocked"
msgstr "Geblockt"
#: ../../include/Contact.php:115
msgid "stopped following"
msgstr "wird nicht mehr gefolgt"
#: ../../mod/contacts.php:492
msgid "Only show blocked contacts"
msgstr "Nur blockierte Kontakte anzeigen"
#: ../../include/datetime.php:43 ../../include/datetime.php:45
msgid "Miscellaneous"
msgstr "Verschiedenes"
#: ../../mod/contacts.php:496
msgid "Ignored"
msgstr "Ignoriert"
#: ../../include/datetime.php:153 ../../include/datetime.php:285
msgid "year"
msgstr "Jahr"
#: ../../mod/contacts.php:499
msgid "Only show ignored contacts"
msgstr "Nur ignorierte Kontakte anzeigen"
#: ../../include/datetime.php:158 ../../include/datetime.php:286
msgid "month"
msgstr "Monat"
#: ../../mod/contacts.php:503
msgid "Archived"
msgstr "Archiviert"
#: ../../include/datetime.php:163 ../../include/datetime.php:288
msgid "day"
msgstr "Tag"
#: ../../mod/contacts.php:506
msgid "Only show archived contacts"
msgstr "Nur archivierte Kontakte anzeigen"
#: ../../include/datetime.php:276
msgid "never"
msgstr "nie"
#: ../../mod/contacts.php:510
msgid "Hidden"
msgstr "Verborgen"
#: ../../include/datetime.php:282
msgid "less than a second ago"
msgstr "vor weniger als einer Sekunde"
#: ../../mod/contacts.php:513
msgid "Only show hidden contacts"
msgstr "Nur verborgene Kontakte anzeigen"
#: ../../include/datetime.php:285
msgid "years"
msgstr "Jahre"
#: ../../mod/contacts.php:561
msgid "Mutual Friendship"
msgstr "Beidseitige Freundschaft"
#: ../../include/datetime.php:286
msgid "months"
msgstr "Monate"
#: ../../mod/contacts.php:565
msgid "is a fan of yours"
msgstr "ist ein Fan von dir"
#: ../../include/datetime.php:287
msgid "week"
msgstr "Woche"
#: ../../mod/contacts.php:569
msgid "you are a fan of"
msgstr "du bist Fan von"
#: ../../include/datetime.php:287
msgid "weeks"
msgstr "Wochen"
#: ../../mod/contacts.php:611
msgid "Search your contacts"
msgstr "Suche in deinen Kontakten"
#: ../../include/datetime.php:288
msgid "days"
msgstr "Tage"
#: ../../mod/contacts.php:612 ../../mod/directory.php:59
msgid "Finding: "
msgstr "Funde: "
#: ../../include/datetime.php:289
msgid "hour"
msgstr "Stunde"
#: ../../mod/settings.php:23 ../../mod/photos.php:79
msgid "everybody"
msgstr "jeder"
#: ../../include/datetime.php:289
msgid "hours"
msgstr "Stunden"
#: ../../mod/settings.php:35
msgid "Additional features"
msgstr "Zusätzliche Features"
#: ../../include/datetime.php:290
msgid "minute"
msgstr "Minute"
#: ../../mod/settings.php:40 ../../mod/uexport.php:14
msgid "Display settings"
msgstr "Anzeige-Einstellungen"
#: ../../include/datetime.php:290
msgid "minutes"
msgstr "Minuten"
#: ../../mod/settings.php:46 ../../mod/uexport.php:20
msgid "Connector settings"
msgstr "Connector-Einstellungen"
#: ../../include/datetime.php:291
msgid "second"
msgstr "Sekunde"
#: ../../mod/settings.php:51 ../../mod/uexport.php:25
msgid "Plugin settings"
msgstr "Plugin-Einstellungen"
#: ../../include/datetime.php:291
msgid "seconds"
msgstr "Sekunden"
#: ../../mod/settings.php:56 ../../mod/uexport.php:30
msgid "Connected apps"
msgstr "Verbundene Programme"
#: ../../include/datetime.php:300
#: ../../mod/settings.php:61 ../../mod/uexport.php:35 ../../mod/uexport.php:80
msgid "Export personal data"
msgstr "Persönliche Daten exportieren"
#: ../../mod/settings.php:66 ../../mod/uexport.php:40
msgid "Remove account"
msgstr "Konto löschen"
#: ../../mod/settings.php:118
msgid "Missing some important data!"
msgstr "Wichtige Daten fehlen!"
#: ../../mod/settings.php:121 ../../mod/settings.php:586
msgid "Update"
msgstr "Aktualisierungen"
#: ../../mod/settings.php:227
msgid "Failed to connect with email account using the settings provided."
msgstr "Verbindung zum E-Mail-Konto mit den angegebenen Einstellungen nicht möglich."
#: ../../mod/settings.php:232
msgid "Email settings updated."
msgstr "E-Mail Einstellungen bearbeitet."
#: ../../mod/settings.php:247
msgid "Features updated"
msgstr "Features aktualisiert"
#: ../../mod/settings.php:307
msgid "Passwords do not match. Password unchanged."
msgstr "Die Passwörter stimmen nicht überein. Das Passwort bleibt unverändert."
#: ../../mod/settings.php:312
msgid "Empty passwords are not allowed. Password unchanged."
msgstr "Leere Passwörter sind nicht erlaubt. Passwort bleibt unverändert."
#: ../../mod/settings.php:323
msgid "Password changed."
msgstr "Passwort ändern."
#: ../../mod/settings.php:325
msgid "Password update failed. Please try again."
msgstr "Aktualisierung des Passworts gescheitert, bitte versuche es noch einmal."
#: ../../mod/settings.php:390
msgid " Please use a shorter name."
msgstr " Bitte verwende einen kürzeren Namen."
#: ../../mod/settings.php:392
msgid " Name too short."
msgstr " Name ist zu kurz."
#: ../../mod/settings.php:398
msgid " Not valid email."
msgstr " Keine gültige E-Mail."
#: ../../mod/settings.php:400
msgid " Cannot change to that email."
msgstr "Ändern der E-Mail nicht möglich. "
#: ../../mod/settings.php:454
msgid "Private forum has no privacy permissions. Using default privacy group."
msgstr "Für das private Forum sind keine Zugriffsrechte eingestellt. Die voreingestellte Gruppe für neue Kontakte wird benutzt."
#: ../../mod/settings.php:458
msgid "Private forum has no privacy permissions and no default privacy group."
msgstr "Für das private Forum sind keine Zugriffsrechte eingestellt, und es gibt keine voreingestellte Gruppe für neue Kontakte."
#: ../../mod/settings.php:488
msgid "Settings updated."
msgstr "Einstellungen aktualisiert."
#: ../../mod/settings.php:559 ../../mod/settings.php:585
#: ../../mod/settings.php:621
msgid "Add application"
msgstr "Programm hinzufügen"
#: ../../mod/settings.php:562 ../../mod/settings.php:588
#: ../../mod/crepair.php:148 ../../mod/admin.php:754 ../../mod/admin.php:765
msgid "Name"
msgstr "Name"
#: ../../mod/settings.php:563 ../../mod/settings.php:589
msgid "Consumer Key"
msgstr "Consumer Key"
#: ../../mod/settings.php:564 ../../mod/settings.php:590
msgid "Consumer Secret"
msgstr "Consumer Secret"
#: ../../mod/settings.php:565 ../../mod/settings.php:591
msgid "Redirect"
msgstr "Umleiten"
#: ../../mod/settings.php:566 ../../mod/settings.php:592
msgid "Icon url"
msgstr "Icon URL"
#: ../../mod/settings.php:577
msgid "You can't edit this application."
msgstr "Du kannst dieses Programm nicht bearbeiten."
#: ../../mod/settings.php:620
msgid "Connected Apps"
msgstr "Verbundene Programme"
#: ../../mod/settings.php:622 ../../mod/editpost.php:109
#: ../../mod/content.php:751 ../../object/Item.php:117
msgid "Edit"
msgstr "Bearbeiten"
#: ../../mod/settings.php:624
msgid "Client key starts with"
msgstr "Anwenderschlüssel beginnt mit"
#: ../../mod/settings.php:625
msgid "No name"
msgstr "Kein Name"
#: ../../mod/settings.php:626
msgid "Remove authorization"
msgstr "Autorisierung entziehen"
#: ../../mod/settings.php:638
msgid "No Plugin settings configured"
msgstr "Keine Plugin-Einstellungen konfiguriert"
#: ../../mod/settings.php:646
msgid "Plugin Settings"
msgstr "Plugin-Einstellungen"
#: ../../mod/settings.php:660
msgid "Off"
msgstr "Aus"
#: ../../mod/settings.php:660
msgid "On"
msgstr "An"
#: ../../mod/settings.php:668
msgid "Additional Features"
msgstr "Zusätzliche Features"
#: ../../mod/settings.php:681 ../../mod/settings.php:682
#, php-format
msgid "%1$d %2$s ago"
msgstr "%1$d %2$s her"
msgid "Built-in support for %s connectivity is %s"
msgstr "Eingebaute Unterstützung für Verbindungen zu %s ist %s"
#: ../../include/network.php:875
msgid "view full size"
msgstr "Volle Größe anzeigen"
#: ../../mod/settings.php:681 ../../mod/settings.php:682
msgid "enabled"
msgstr "eingeschaltet"
#: ../../mod/settings.php:681 ../../mod/settings.php:682
msgid "disabled"
msgstr "ausgeschaltet"
#: ../../mod/settings.php:682
msgid "StatusNet"
msgstr "StatusNet"
#: ../../mod/settings.php:714
msgid "Email access is disabled on this site."
msgstr "Zugriff auf E-Mails für diese Seite deaktiviert."
#: ../../mod/settings.php:721
msgid "Connector Settings"
msgstr "Verbindungs-Einstellungen"
#: ../../mod/settings.php:726
msgid "Email/Mailbox Setup"
msgstr "E-Mail/Postfach-Einstellungen"
#: ../../mod/settings.php:727
msgid ""
"If you wish to communicate with email contacts using this service "
"(optional), please specify how to connect to your mailbox."
msgstr "Wenn du mit E-Mail-Kontakten über diesen Service kommunizieren möchtest (optional), gib bitte die Einstellungen für dein Postfach an."
#: ../../mod/settings.php:728
msgid "Last successful email check:"
msgstr "Letzter erfolgreicher E-Mail Check"
#: ../../mod/settings.php:730
msgid "IMAP server name:"
msgstr "IMAP-Server-Name:"
#: ../../mod/settings.php:731
msgid "IMAP port:"
msgstr "IMAP-Port:"
#: ../../mod/settings.php:732
msgid "Security:"
msgstr "Sicherheit:"
#: ../../mod/settings.php:732 ../../mod/settings.php:737
msgid "None"
msgstr "Keine"
#: ../../mod/settings.php:733
msgid "Email login name:"
msgstr "E-Mail-Login-Name:"
#: ../../mod/settings.php:734
msgid "Email password:"
msgstr "E-Mail-Passwort:"
#: ../../mod/settings.php:735
msgid "Reply-to address:"
msgstr "Reply-to Adresse:"
#: ../../mod/settings.php:736
msgid "Send public posts to all email contacts:"
msgstr "Sende öffentliche Beiträge an alle E-Mail-Kontakte:"
#: ../../mod/settings.php:737
msgid "Action after import:"
msgstr "Aktion nach Import:"
#: ../../mod/settings.php:737
msgid "Mark as seen"
msgstr "Als gelesen markieren"
#: ../../mod/settings.php:737
msgid "Move to folder"
msgstr "In einen Ordner verschieben"
#: ../../mod/settings.php:738
msgid "Move to folder:"
msgstr "In diesen Ordner verschieben:"
#: ../../mod/settings.php:769 ../../mod/admin.php:432
msgid "No special theme for mobile devices"
msgstr "Kein spezielles Theme für mobile Geräte verwenden."
#: ../../mod/settings.php:809
msgid "Display Settings"
msgstr "Anzeige-Einstellungen"
#: ../../mod/settings.php:815 ../../mod/settings.php:826
msgid "Display Theme:"
msgstr "Theme:"
#: ../../mod/settings.php:816
msgid "Mobile Theme:"
msgstr "Mobiles Theme"
#: ../../mod/settings.php:817
msgid "Update browser every xx seconds"
msgstr "Browser alle xx Sekunden aktualisieren"
#: ../../mod/settings.php:817
msgid "Minimum of 10 seconds, no maximum"
msgstr "Minimal 10 Sekunden, kein Maximum"
#: ../../mod/settings.php:818
msgid "Number of items to display per page:"
msgstr "Zahl der Beiträge, die pro Netzwerkseite angezeigt werden sollen: "
#: ../../mod/settings.php:818
msgid "Maximum of 100 items"
msgstr "Maximal 100 Beiträge"
#: ../../mod/settings.php:819
msgid "Don't show emoticons"
msgstr "Keine Smilies anzeigen"
#: ../../mod/settings.php:895
msgid "Normal Account Page"
msgstr "Normales Konto"
#: ../../mod/settings.php:896
msgid "This account is a normal personal profile"
msgstr "Dieses Konto ist ein normales persönliches Profil"
#: ../../mod/settings.php:899
msgid "Soapbox Page"
msgstr "Marktschreier-Konto"
#: ../../mod/settings.php:900
msgid "Automatically approve all connection/friend requests as read-only fans"
msgstr "Kontaktanfragen werden automatisch als Nurlese-Fans akzeptiert"
#: ../../mod/settings.php:903
msgid "Community Forum/Celebrity Account"
msgstr "Forum/Promi-Konto"
#: ../../mod/settings.php:904
msgid ""
"Automatically approve all connection/friend requests as read-write fans"
msgstr "Kontaktanfragen werden automatisch als Lese-und-Schreib-Fans akzeptiert"
#: ../../mod/settings.php:907
msgid "Automatic Friend Page"
msgstr "Automatische Freunde Seite"
#: ../../mod/settings.php:908
msgid "Automatically approve all connection/friend requests as friends"
msgstr "Kontaktanfragen werden automatisch als Freund akzeptiert"
#: ../../mod/settings.php:911
msgid "Private Forum [Experimental]"
msgstr "Privates Forum [Versuchsstadium]"
#: ../../mod/settings.php:912
msgid "Private forum - approved members only"
msgstr "Privates Forum, nur für Mitglieder"
#: ../../mod/settings.php:924
msgid "OpenID:"
msgstr "OpenID:"
#: ../../mod/settings.php:924
msgid "(Optional) Allow this OpenID to login to this account."
msgstr "(Optional) Erlaube die Anmeldung für dieses Konto mit dieser OpenID."
#: ../../mod/settings.php:934
msgid "Publish your default profile in your local site directory?"
msgstr "Darf dein Standardprofil im Verzeichnis dieses Servers veröffentlicht werden?"
#: ../../mod/settings.php:940
msgid "Publish your default profile in the global social directory?"
msgstr "Darf dein Standardprofil im weltweiten Verzeichnis veröffentlicht werden?"
#: ../../mod/settings.php:948
msgid "Hide your contact/friend list from viewers of your default profile?"
msgstr "Liste der Kontakte vor Betrachtern des Standardprofils verbergen?"
#: ../../mod/settings.php:952
msgid "Hide your profile details from unknown viewers?"
msgstr "Profil-Details vor unbekannten Betrachtern verbergen?"
#: ../../mod/settings.php:957
msgid "Allow friends to post to your profile page?"
msgstr "Dürfen deine Kontakte auf deine Pinnwand schreiben?"
#: ../../mod/settings.php:963
msgid "Allow friends to tag your posts?"
msgstr "Dürfen deine Kontakte deine Beiträge mit Schlagwörtern versehen?"
#: ../../mod/settings.php:969
msgid "Allow us to suggest you as a potential friend to new members?"
msgstr "Dürfen wir dich neuen Mitgliedern als potentiellen Kontakt vorschlagen?"
#: ../../mod/settings.php:975
msgid "Permit unknown people to send you private mail?"
msgstr "Dürfen dir Unbekannte private Nachrichten schicken?"
#: ../../mod/settings.php:983
msgid "Profile is <strong>not published</strong>."
msgstr "Profil ist <strong>nicht veröffentlicht</strong>."
#: ../../mod/settings.php:986 ../../mod/profile_photo.php:248
msgid "or"
msgstr "oder"
#: ../../mod/settings.php:991
msgid "Your Identity Address is"
msgstr "Die Adresse deines Profils lautet:"
#: ../../mod/settings.php:1002
msgid "Automatically expire posts after this many days:"
msgstr "Beiträge verfallen automatisch nach dieser Anzahl von Tagen:"
#: ../../mod/settings.php:1002
msgid "If empty, posts will not expire. Expired posts will be deleted"
msgstr "Wenn leer verfallen Beiträge nie automatisch. Verfallene Beiträge werden gelöscht."
#: ../../mod/settings.php:1003
msgid "Advanced expiration settings"
msgstr "Erweiterte Verfallseinstellungen"
#: ../../mod/settings.php:1004
msgid "Advanced Expiration"
msgstr "Erweitertes Verfallen"
#: ../../mod/settings.php:1005
msgid "Expire posts:"
msgstr "Beiträge verfallen lassen:"
#: ../../mod/settings.php:1006
msgid "Expire personal notes:"
msgstr "Persönliche Notizen verfallen lassen:"
#: ../../mod/settings.php:1007
msgid "Expire starred posts:"
msgstr "Markierte Beiträge verfallen lassen:"
#: ../../mod/settings.php:1008
msgid "Expire photos:"
msgstr "Fotos verfallen lassen:"
#: ../../mod/settings.php:1009
msgid "Only expire posts by others:"
msgstr "Nur Beiträge anderer verfallen:"
#: ../../mod/settings.php:1035
msgid "Account Settings"
msgstr "Kontoeinstellungen"
#: ../../mod/settings.php:1043
msgid "Password Settings"
msgstr "Passwort-Einstellungen"
#: ../../mod/settings.php:1044
msgid "New Password:"
msgstr "Neues Passwort:"
#: ../../mod/settings.php:1045
msgid "Confirm:"
msgstr "Bestätigen:"
#: ../../mod/settings.php:1045
msgid "Leave password fields blank unless changing"
msgstr "Lass die Passwort-Felder leer, außer du willst das Passwort ändern"
#: ../../mod/settings.php:1049
msgid "Basic Settings"
msgstr "Grundeinstellungen"
#: ../../mod/settings.php:1051
msgid "Email Address:"
msgstr "E-Mail-Adresse:"
#: ../../mod/settings.php:1052
msgid "Your Timezone:"
msgstr "Deine Zeitzone:"
#: ../../mod/settings.php:1053
msgid "Default Post Location:"
msgstr "Standardstandort:"
#: ../../mod/settings.php:1054
msgid "Use Browser Location:"
msgstr "Standort des Browsers verwenden:"
#: ../../mod/settings.php:1057
msgid "Security and Privacy Settings"
msgstr "Sicherheits- und Privatsphäre-Einstellungen"
#: ../../mod/settings.php:1059
msgid "Maximum Friend Requests/Day:"
msgstr "Maximale Anzahl von Freundschaftsanfragen/Tag:"
#: ../../mod/settings.php:1059 ../../mod/settings.php:1089
msgid "(to prevent spam abuse)"
msgstr "(um SPAM zu vermeiden)"
#: ../../mod/settings.php:1060
msgid "Default Post Permissions"
msgstr "Standard-Zugriffsrechte für Beiträge"
#: ../../mod/settings.php:1061
msgid "(click to open/close)"
msgstr "(klicke zum öffnen/schließen)"
#: ../../mod/settings.php:1070 ../../mod/photos.php:1140
#: ../../mod/photos.php:1506
msgid "Show to Groups"
msgstr "Zeige den Gruppen"
#: ../../mod/settings.php:1071 ../../mod/photos.php:1141
#: ../../mod/photos.php:1507
msgid "Show to Contacts"
msgstr "Zeige den Kontakten"
#: ../../mod/settings.php:1072
msgid "Default Private Post"
msgstr "Privater Standardbeitrag"
#: ../../mod/settings.php:1073
msgid "Default Public Post"
msgstr "Öffentlicher Standardbeitrag"
#: ../../mod/settings.php:1077
msgid "Default Permissions for New Posts"
msgstr "Standardberechtigungen für neue Beiträge"
#: ../../mod/settings.php:1089
msgid "Maximum private messages per day from unknown people:"
msgstr "Maximale Anzahl privater Nachrichten von Unbekannten pro Tag:"
#: ../../mod/settings.php:1092
msgid "Notification Settings"
msgstr "Benachrichtigungseinstellungen"
#: ../../mod/settings.php:1093
msgid "By default post a status message when:"
msgstr "Standardmäßig eine Statusnachricht posten, wenn:"
#: ../../mod/settings.php:1094
msgid "accepting a friend request"
msgstr " du eine Kontaktanfrage akzeptierst"
#: ../../mod/settings.php:1095
msgid "joining a forum/community"
msgstr " du einem Forum/einer Gemeinschaftsseite beitrittst"
#: ../../mod/settings.php:1096
msgid "making an <em>interesting</em> profile change"
msgstr " du eine <em>interessante</em> Änderung an deinem Profil durchführst"
#: ../../mod/settings.php:1097
msgid "Send a notification email when:"
msgstr "Benachrichtigungs-E-Mail senden wenn:"
#: ../../mod/settings.php:1098
msgid "You receive an introduction"
msgstr " du eine Kontaktanfrage erhältst"
#: ../../mod/settings.php:1099
msgid "Your introductions are confirmed"
msgstr " eine deiner Kontaktanfragen akzeptiert wurde"
#: ../../mod/settings.php:1100
msgid "Someone writes on your profile wall"
msgstr " jemand etwas auf deine Pinnwand schreibt"
#: ../../mod/settings.php:1101
msgid "Someone writes a followup comment"
msgstr " jemand auch einen Kommentar verfasst"
#: ../../mod/settings.php:1102
msgid "You receive a private message"
msgstr " du eine private Nachricht erhältst"
#: ../../mod/settings.php:1103
msgid "You receive a friend suggestion"
msgstr " du eine Empfehlung erhältst"
#: ../../mod/settings.php:1104
msgid "You are tagged in a post"
msgstr " du in einem Beitrag erwähnt wirst"
#: ../../mod/settings.php:1105
msgid "You are poked/prodded/etc. in a post"
msgstr " du von jemandem angestupst oder sonstwie behandelt wirst"
#: ../../mod/settings.php:1108
msgid "Advanced Account/Page Type Settings"
msgstr "Erweiterte Konto-/Seitentyp-Einstellungen"
#: ../../mod/settings.php:1109
msgid "Change the behaviour of this account for special situations"
msgstr "Verhalten dieses Kontos in bestimmten Situationen:"
#: ../../mod/share.php:44
msgid "link"
msgstr "Link"
#: ../../mod/crepair.php:102
msgid "Contact settings applied."
msgstr "Einstellungen zum Kontakt angewandt."
#: ../../mod/crepair.php:104
msgid "Contact update failed."
msgstr "Konnte den Kontakt nicht aktualisieren."
#: ../../mod/crepair.php:129 ../../mod/dfrn_confirm.php:118
#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92
msgid "Contact not found."
msgstr "Kontakt nicht gefunden."
#: ../../mod/crepair.php:135
msgid "Repair Contact Settings"
msgstr "Kontakteinstellungen reparieren"
#: ../../mod/crepair.php:137
msgid ""
"<strong>WARNING: This is highly advanced</strong> and if you enter incorrect"
" information your communications with this contact may stop working."
msgstr "<strong>ACHTUNG: Das sind Experten-Einstellungen!</strong> Wenn du etwas Falsches eingibst, funktioniert die Kommunikation mit diesem Kontakt evtl. nicht mehr."
#: ../../mod/crepair.php:138
msgid ""
"Please use your browser 'Back' button <strong>now</strong> if you are "
"uncertain what to do on this page."
msgstr "Bitte nutze den Zurück-Button deines Browsers <strong>jetzt</strong>, wenn du dir unsicher bist, was du tun willst."
#: ../../mod/crepair.php:144
msgid "Return to contact editor"
msgstr "Zurück zum Kontakteditor"
#: ../../mod/crepair.php:149
msgid "Account Nickname"
msgstr "Konto-Spitzname"
#: ../../mod/crepair.php:150
msgid "@Tagname - overrides Name/Nickname"
msgstr "@Tagname - überschreibt Name/Spitzname"
#: ../../mod/crepair.php:151
msgid "Account URL"
msgstr "Konto-URL"
#: ../../mod/crepair.php:152
msgid "Friend Request URL"
msgstr "URL für Freundschaftsanfragen"
#: ../../mod/crepair.php:153
msgid "Friend Confirm URL"
msgstr "URL für Bestätigungen von Freundschaftsanfragen"
#: ../../mod/crepair.php:154
msgid "Notification Endpoint URL"
msgstr "URL-Endpunkt für Benachrichtigungen"
#: ../../mod/crepair.php:155
msgid "Poll/Feed URL"
msgstr "Pull/Feed-URL"
#: ../../mod/crepair.php:156
msgid "New photo from this URL"
msgstr "Neues Foto von dieser URL"
#: ../../mod/delegate.php:95
msgid "No potential page delegates located."
msgstr "Keine potentiellen Bevollmächtigten für die Seite gefunden."
#: ../../mod/delegate.php:123
msgid ""
"Delegates are able to manage all aspects of this account/page except for "
"basic account settings. Please do not delegate your personal account to "
"anybody that you do not trust completely."
msgstr "Bevollmächtigte sind in der Lage, alle Aspekte dieses Kontos/dieser Seite zu verwalten, abgesehen von den Grundeinstellungen des Kontos. Bitte gib niemandem eine Bevollmächtigung für deinen privaten Account, dem du nicht absolut vertraust!"
#: ../../mod/delegate.php:124
msgid "Existing Page Managers"
msgstr "Vorhandene Seiten Manager"
#: ../../mod/delegate.php:126
msgid "Existing Page Delegates"
msgstr "Vorhandene Bevollmächtigte für die Seite"
#: ../../mod/delegate.php:128
msgid "Potential Delegates"
msgstr "Potentielle Bevollmächtigte"
#: ../../mod/delegate.php:130 ../../mod/tagrm.php:93
msgid "Remove"
msgstr "Entfernen"
#: ../../mod/delegate.php:131
msgid "Add"
msgstr "Hinzufügen"
#: ../../mod/delegate.php:132
msgid "No entries."
msgstr "Keine Einträge"
#: ../../mod/poke.php:192
msgid "Poke/Prod"
msgstr "Anstupsen etc."
#: ../../mod/poke.php:193
msgid "poke, prod or do other things to somebody"
msgstr "Stupse Leute an oder mache anderes mit ihnen"
#: ../../mod/poke.php:194
msgid "Recipient"
msgstr "Empfänger"
#: ../../mod/poke.php:195
msgid "Choose what you wish to do to recipient"
msgstr "Was willst du mit dem Empfänger machen:"
#: ../../mod/poke.php:198
msgid "Make this post private"
msgstr "Diesen Beitrag privat machen"
#: ../../mod/dfrn_confirm.php:119
msgid ""
"This may occasionally happen if contact was requested by both persons and it"
" has already been approved."
msgstr "Das kann passieren, wenn sich zwei Kontakte gegenseitig eingeladen haben und bereits einer angenommen wurde."
#: ../../mod/dfrn_confirm.php:237
msgid "Response from remote site was not understood."
msgstr "Antwort der Gegenstelle unverständlich."
#: ../../mod/dfrn_confirm.php:246
msgid "Unexpected response from remote site: "
msgstr "Unerwartete Antwort der Gegenstelle: "
#: ../../mod/dfrn_confirm.php:254
msgid "Confirmation completed successfully."
msgstr "Bestätigung erfolgreich abgeschlossen."
#: ../../mod/dfrn_confirm.php:256 ../../mod/dfrn_confirm.php:270
#: ../../mod/dfrn_confirm.php:277
msgid "Remote site reported: "
msgstr "Gegenstelle meldet: "
#: ../../mod/dfrn_confirm.php:268
msgid "Temporary failure. Please wait and try again."
msgstr "Zeitweiser Fehler. Bitte warte einige Momente und versuche es dann noch einmal."
#: ../../mod/dfrn_confirm.php:275
msgid "Introduction failed or was revoked."
msgstr "Kontaktanfrage schlug fehl oder wurde zurückgezogen."
#: ../../mod/dfrn_confirm.php:420
msgid "Unable to set contact photo."
msgstr "Konnte das Bild des Kontakts nicht speichern."
#: ../../mod/dfrn_confirm.php:562
#, php-format
msgid "No user record found for '%s' "
msgstr "Für '%s' wurde kein Nutzer gefunden"
#: ../../mod/dfrn_confirm.php:572
msgid "Our site encryption key is apparently messed up."
msgstr "Der Verschlüsselungsschlüssel unserer Seite ist anscheinend nicht in Ordnung."
#: ../../mod/dfrn_confirm.php:583
msgid "Empty site URL was provided or URL could not be decrypted by us."
msgstr "Leere URL für die Seite erhalten oder die URL konnte nicht entschlüsselt werden."
#: ../../mod/dfrn_confirm.php:604
msgid "Contact record was not found for you on our site."
msgstr "Für diesen Kontakt wurde auf unserer Seite kein Eintrag gefunden."
#: ../../mod/dfrn_confirm.php:618
#, php-format
msgid "Site public key not available in contact record for URL %s."
msgstr "Die Kontaktdaten für URL %s enthalten keinen Public Key für den Server."
#: ../../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 "Die ID, die uns dein System angeboten hat, ist hier bereits vergeben. Bitte versuche es noch einmal."
#: ../../mod/dfrn_confirm.php:649
msgid "Unable to set your contact credentials on our system."
msgstr "Deine Kontaktreferenzen konnten nicht in unserem System gespeichert werden."
#: ../../mod/dfrn_confirm.php:716
msgid "Unable to update your contact profile details on our system"
msgstr "Die Updates für dein Profil konnten nicht gespeichert werden"
#: ../../mod/dfrn_confirm.php:751
#, php-format
msgid "Connection accepted at %s"
msgstr "Auf %s wurde die Verbindung akzeptiert"
#: ../../mod/dfrn_confirm.php:800
#, php-format
msgid "%1$s has joined %2$s"
msgstr "%1$s ist %2$s beigetreten"
#: ../../mod/dfrn_poll.php:101 ../../mod/dfrn_poll.php:534
#, php-format
msgid "%1$s welcomes %2$s"
msgstr "%1$s heißt %2$s herzlich willkommen"
#: ../../mod/dfrn_request.php:93
msgid "This introduction has already been accepted."
msgstr "Diese Kontaktanfrage wurde bereits akzeptiert."
#: ../../mod/dfrn_request.php:118 ../../mod/dfrn_request.php:513
msgid "Profile location is not valid or does not contain profile information."
msgstr "Profiladresse ist ungültig oder stellt einige Profildaten nicht zur Verfügung."
#: ../../mod/dfrn_request.php:123 ../../mod/dfrn_request.php:518
msgid "Warning: profile location has no identifiable owner name."
msgstr "Warnung: Es konnte kein Name des Besitzers von der angegebenen Profiladresse gefunden werden."
#: ../../mod/dfrn_request.php:125 ../../mod/dfrn_request.php:520
msgid "Warning: profile location has no profile photo."
msgstr "Warnung: Es konnte kein Profilbild bei der angegebenen Profiladresse gefunden werden."
#: ../../mod/dfrn_request.php:128 ../../mod/dfrn_request.php:523
#, php-format
msgid "%d required parameter was not found at the given location"
msgid_plural "%d required parameters were not found at the given location"
msgstr[0] "%d benötigter Parameter wurde an der angegebenen Stelle nicht gefunden"
msgstr[1] "%d benötigte Parameter wurden an der angegebenen Stelle nicht gefunden"
#: ../../mod/dfrn_request.php:170
msgid "Introduction complete."
msgstr "Kontaktanfrage abgeschlossen."
#: ../../mod/dfrn_request.php:209
msgid "Unrecoverable protocol error."
msgstr "Nicht behebbarer Protokollfehler."
#: ../../mod/dfrn_request.php:237
msgid "Profile unavailable."
msgstr "Profil nicht verfügbar."
#: ../../mod/dfrn_request.php:262
#, php-format
msgid "%s has received too many connection requests today."
msgstr "%s hat heute zu viele Freundschaftsanfragen erhalten."
#: ../../mod/dfrn_request.php:263
msgid "Spam protection measures have been invoked."
msgstr "Maßnahmen zum Spamschutz wurden ergriffen."
#: ../../mod/dfrn_request.php:264
msgid "Friends are advised to please try again in 24 hours."
msgstr "Freunde sind angehalten, es in 24 Stunden erneut zu versuchen."
#: ../../mod/dfrn_request.php:326
msgid "Invalid locator"
msgstr "Ungültiger Locator"
#: ../../mod/dfrn_request.php:335
msgid "Invalid email address."
msgstr "Ungültige E-Mail Adresse."
#: ../../mod/dfrn_request.php:362
msgid "This account has not been configured for email. Request failed."
msgstr "Dieses Konto ist nicht für E-Mail konfiguriert. Anfrage fehlgeschlagen."
#: ../../mod/dfrn_request.php:458
msgid "Unable to resolve your name at the provided location."
msgstr "Konnte deinen Namen an der angegebenen Stelle nicht finden."
#: ../../mod/dfrn_request.php:471
msgid "You have already introduced yourself here."
msgstr "Du hast dich hier bereits vorgestellt."
#: ../../mod/dfrn_request.php:475
#, php-format
msgid "Apparently you are already friends with %s."
msgstr "Es scheint so, als ob du bereits mit %s befreundet bist."
#: ../../mod/dfrn_request.php:496
msgid "Invalid profile URL."
msgstr "Ungültige Profil-URL."
#: ../../mod/dfrn_request.php:592
msgid "Your introduction has been sent."
msgstr "Deine Kontaktanfrage wurde gesendet."
#: ../../mod/dfrn_request.php:645
msgid "Please login to confirm introduction."
msgstr "Bitte melde dich an, um die Kontaktanfrage zu bestätigen."
#: ../../mod/dfrn_request.php:659
msgid ""
"Incorrect identity currently logged in. Please login to "
"<strong>this</strong> profile."
msgstr "Momentan bist du mit einer anderen Identität angemeldet. Bitte melde Dich mit <strong>diesem</strong> Profil an."
#: ../../mod/dfrn_request.php:670
msgid "Hide this contact"
msgstr "Verberge diesen Kontakt"
#: ../../mod/dfrn_request.php:673
#, php-format
msgid "Welcome home %s."
msgstr "Willkommen zurück %s."
#: ../../mod/dfrn_request.php:674
#, php-format
msgid "Please confirm your introduction/connection request to %s."
msgstr "Bitte bestätige deine Kontaktanfrage bei %s."
#: ../../mod/dfrn_request.php:675
msgid "Confirm"
msgstr "Bestätigen"
#: ../../mod/dfrn_request.php:811
msgid ""
"Please enter your 'Identity Address' from one of the following supported "
"communications networks:"
msgstr "Bitte gib die Adresse deines Profils in einem der unterstützten sozialen Netzwerke an:"
#: ../../mod/dfrn_request.php:827
msgid "<strike>Connect as an email follower</strike> (Coming soon)"
msgstr "<strike>Als E-Mail-Kontakt verbinden</strike> (In Kürze verfügbar)"
#: ../../mod/dfrn_request.php:829
msgid ""
"If you are not yet a member of the free social web, <a "
"href=\"http://dir.friendica.com/siteinfo\">follow this link to find a public"
" Friendica site and join us today</a>."
msgstr "Wenn du noch kein Mitglied dieses freien sozialen Netzwerks bist, <a href=\"http://dir.friendica.com/siteinfo\">folge diesem Link</a> um einen öffentlichen Friendica-Server zu finden und beizutreten."
#: ../../mod/dfrn_request.php:832
msgid "Friend/Connection Request"
msgstr "Freundschafts-/Kontaktanfrage"
#: ../../mod/dfrn_request.php:833
msgid ""
"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, "
"testuser@identi.ca"
msgstr "Beispiele: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"
#: ../../mod/dfrn_request.php:834
msgid "Please answer the following:"
msgstr "Bitte beantworte Folgendes:"
#: ../../mod/dfrn_request.php:835
#, php-format
msgid "Does %s know you?"
msgstr "Kennt %s dich?"
#: ../../mod/dfrn_request.php:838
msgid "Add a personal note:"
msgstr "Eine persönliche Notiz beifügen:"
#: ../../mod/dfrn_request.php:841
msgid "StatusNet/Federated Social Web"
msgstr "StatusNet/Federated Social Web"
#: ../../mod/dfrn_request.php:843
#, php-format
msgid ""
" - please do not use this form. Instead, enter %s into your Diaspora search"
" bar."
msgstr " - bitte verwende dieses Formular nicht. Stattdessen suche nach %s in deiner Diaspora Suchleiste."
#: ../../mod/dfrn_request.php:844
msgid "Your Identity Address:"
msgstr "Adresse deines Profils:"
#: ../../mod/dfrn_request.php:847
msgid "Submit Request"
msgstr "Anfrage abschicken"
#: ../../mod/subthread.php:103
#, php-format
msgid "%1$s is following %2$s's %3$s"
msgstr "%1$s folgt %2$s %3$s"
#: ../../mod/directory.php:49 ../../view/theme/diabook/theme.php:518
msgid "Global Directory"
msgstr "Weltweites Verzeichnis"
#: ../../mod/directory.php:57
msgid "Find on this site"
msgstr "Auf diesem Server suchen"
#: ../../mod/directory.php:60
msgid "Site Directory"
msgstr "Verzeichnis"
#: ../../mod/directory.php:114
msgid "Gender: "
msgstr "Geschlecht:"
#: ../../mod/directory.php:187
msgid "No entries (some entries may be hidden)."
msgstr "Keine Einträge (einige Einträge könnten versteckt sein)."
#: ../../mod/suggest.php:27
msgid "Do you really want to delete this suggestion?"
msgstr "Möchtest du wirklich diese Empfehlung löschen?"
#: ../../mod/suggest.php:72
msgid ""
"No suggestions available. If this is a new site, please try again in 24 "
"hours."
msgstr "Keine Vorschläge. Falls der Server frisch aufgesetzt wurde, versuche es bitte in 24 Stunden noch einmal."
#: ../../mod/suggest.php:90
msgid "Ignore/Hide"
msgstr "Ignorieren/Verbergen"
#: ../../mod/dirfind.php:26
msgid "People Search"
msgstr "Personensuche"
#: ../../mod/dirfind.php:60 ../../mod/match.php:65
msgid "No matches"
msgstr "Keine Übereinstimmungen"
#: ../../mod/admin.php:55
msgid "Theme settings updated."
msgstr "Themeneinstellungen aktualisiert."
#: ../../mod/admin.php:96 ../../mod/admin.php:479
msgid "Site"
msgstr "Seite"
#: ../../mod/admin.php:97 ../../mod/admin.php:750 ../../mod/admin.php:764
msgid "Users"
msgstr "Nutzer"
#: ../../mod/admin.php:98 ../../mod/admin.php:847 ../../mod/admin.php:889
msgid "Plugins"
msgstr "Plugins"
#: ../../mod/admin.php:99 ../../mod/admin.php:1055 ../../mod/admin.php:1089
msgid "Themes"
msgstr "Themen"
#: ../../mod/admin.php:100
msgid "DB updates"
msgstr "DB Updates"
#: ../../mod/admin.php:115 ../../mod/admin.php:122 ../../mod/admin.php:1176
msgid "Logs"
msgstr "Protokolle"
#: ../../mod/admin.php:121
msgid "Plugin Features"
msgstr "Plugin Features"
#: ../../mod/admin.php:123
msgid "User registrations waiting for confirmation"
msgstr "Nutzeranmeldungen die auf Bestätigung warten"
#: ../../mod/admin.php:182 ../../mod/admin.php:721
msgid "Normal Account"
msgstr "Normales Konto"
#: ../../mod/admin.php:183 ../../mod/admin.php:722
msgid "Soapbox Account"
msgstr "Marktschreier-Konto"
#: ../../mod/admin.php:184 ../../mod/admin.php:723
msgid "Community/Celebrity Account"
msgstr "Forum/Promi-Konto"
#: ../../mod/admin.php:185 ../../mod/admin.php:724
msgid "Automatic Friend Account"
msgstr "Automatisches Freundekonto"
#: ../../mod/admin.php:186
msgid "Blog Account"
msgstr "Blog Account"
#: ../../mod/admin.php:187
msgid "Private Forum"
msgstr "Privates Forum"
#: ../../mod/admin.php:206
msgid "Message queues"
msgstr "Nachrichten-Warteschlangen"
#: ../../mod/admin.php:211 ../../mod/admin.php:478 ../../mod/admin.php:749
#: ../../mod/admin.php:846 ../../mod/admin.php:888 ../../mod/admin.php:1054
#: ../../mod/admin.php:1088 ../../mod/admin.php:1175
msgid "Administration"
msgstr "Administration"
#: ../../mod/admin.php:212
msgid "Summary"
msgstr "Zusammenfassung"
#: ../../mod/admin.php:214
msgid "Registered users"
msgstr "Registrierte Nutzer"
#: ../../mod/admin.php:216
msgid "Pending registrations"
msgstr "Anstehende Anmeldungen"
#: ../../mod/admin.php:217
msgid "Version"
msgstr "Version"
#: ../../mod/admin.php:219
msgid "Active plugins"
msgstr "Aktive Plugins"
#: ../../mod/admin.php:403
msgid "Site settings updated."
msgstr "Seiteneinstellungen aktualisiert."
#: ../../mod/admin.php:449
msgid "Multi user instance"
msgstr "Mehrbenutzer Instanz"
#: ../../mod/admin.php:465
msgid "Closed"
msgstr "Geschlossen"
#: ../../mod/admin.php:466
msgid "Requires approval"
msgstr "Bedarf der Zustimmung"
#: ../../mod/admin.php:467
msgid "Open"
msgstr "Offen"
#: ../../mod/admin.php:471
msgid "No SSL policy, links will track page SSL state"
msgstr "Keine SSL Richtlinie, Links werden das verwendete Protokoll beibehalten"
#: ../../mod/admin.php:472
msgid "Force all links to use SSL"
msgstr "SSL für alle Links erzwingen"
#: ../../mod/admin.php:473
msgid "Self-signed certificate, use SSL for local links only (discouraged)"
msgstr "Selbst-unterzeichnetes Zertifikat, SSL nur für lokale Links verwenden (nicht empfohlen)"
#: ../../mod/admin.php:482
msgid "File upload"
msgstr "Datei hochladen"
#: ../../mod/admin.php:483
msgid "Policies"
msgstr "Regeln"
#: ../../mod/admin.php:484
msgid "Advanced"
msgstr "Erweitert"
#: ../../mod/admin.php:485
msgid "Performance"
msgstr "Performance"
#: ../../mod/admin.php:489
msgid "Site name"
msgstr "Seitenname"
#: ../../mod/admin.php:490
msgid "Banner/Logo"
msgstr "Banner/Logo"
#: ../../mod/admin.php:491
msgid "System language"
msgstr "Systemsprache"
#: ../../mod/admin.php:492
msgid "System theme"
msgstr "Systemweites Thema"
#: ../../mod/admin.php:492
msgid ""
"Default system theme - may be over-ridden by user profiles - <a href='#' "
"id='cnftheme'>change theme settings</a>"
msgstr "Vorgabe für das System-Theme - kann von Benutzerprofilen überschrieben werden - <a href='#' id='cnftheme'>Theme-Einstellungen ändern</a>"
#: ../../mod/admin.php:493
msgid "Mobile system theme"
msgstr "Systemweites mobiles Thema"
#: ../../mod/admin.php:493
msgid "Theme for mobile devices"
msgstr "Thema für mobile Geräte"
#: ../../mod/admin.php:494
msgid "SSL link policy"
msgstr "Regeln für SSL Links"
#: ../../mod/admin.php:494
msgid "Determines whether generated links should be forced to use SSL"
msgstr "Bestimmt, ob generierte Links SSL verwenden müssen"
#: ../../mod/admin.php:495
msgid "'Share' element"
msgstr "'Teilen' Element"
#: ../../mod/admin.php:495
msgid "Activates the bbcode element 'share' for repeating items."
msgstr "Aktiviert das bbcode Element 'Teilen' um Einträge zu wiederholen."
#: ../../mod/admin.php:496
msgid "Hide help entry from navigation menu"
msgstr "Verberge den Menüeintrag für die Hilfe im Navigationsmenü"
#: ../../mod/admin.php:496
msgid ""
"Hides the menu entry for the Help pages from the navigation menu. You can "
"still access it calling /help directly."
msgstr "Verbirgt den Menüeintrag für die Hilfe-Seiten im Navigationsmenü. Die Seiten können weiterhin über /help aufgerufen werden."
#: ../../mod/admin.php:497
msgid "Single user instance"
msgstr "Ein-Nutzer Instanz"
#: ../../mod/admin.php:497
msgid "Make this instance multi-user or single-user for the named user"
msgstr "Regelt ob es sich bei dieser Instanz um eine ein Personen Installation oder eine Installation mit mehr als einem Nutzer handelt."
#: ../../mod/admin.php:498
msgid "Maximum image size"
msgstr "Maximale Größe von Bildern"
#: ../../mod/admin.php:498
msgid ""
"Maximum size in bytes of uploaded images. Default is 0, which means no "
"limits."
msgstr "Maximale Upload-Größe von Bildern in Bytes. Standard ist 0, d.h. ohne Limit."
#: ../../mod/admin.php:499
msgid "Maximum image length"
msgstr "Maximale Länge von Bildern"
#: ../../mod/admin.php:499
msgid ""
"Maximum length in pixels of the longest side of uploaded images. Default is "
"-1, which means no limits."
msgstr "Maximale Länge in Pixeln der längsten Seite eines hoch geladenen Bildes. Grundeinstellung ist -1 was keine Einschränkung bedeutet."
#: ../../mod/admin.php:500
msgid "JPEG image quality"
msgstr "Qualität des JPEG Bildes"
#: ../../mod/admin.php:500
msgid ""
"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
"100, which is full quality."
msgstr "Hoch geladene JPEG Bilder werden mit dieser Qualität [0-100] gespeichert. Grundeinstellung ist 100, kein Qualitätsverlust."
#: ../../mod/admin.php:502
msgid "Register policy"
msgstr "Registrierungsmethode"
#: ../../mod/admin.php:503
msgid "Maximum Daily Registrations"
msgstr "Maximum täglicher Neuanmeldungen"
#: ../../mod/admin.php:503
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 "Wenn die Registrierung weiter oben erlaubt ist, regelt dies die maximale Anzahl von Neuanmeldungen pro Tag. Wenn die Registrierung geschlossen ist, hat diese Einstellung keinen Effekt."
#: ../../mod/admin.php:504
msgid "Register text"
msgstr "Registrierungstext"
#: ../../mod/admin.php:504
msgid "Will be displayed prominently on the registration page."
msgstr "Wird gut sichtbar auf der Registrierungsseite angezeigt."
#: ../../mod/admin.php:505
msgid "Accounts abandoned after x days"
msgstr "Nutzerkonten gelten nach x Tagen als unbenutzt"
#: ../../mod/admin.php:505
msgid ""
"Will not waste system resources polling external sites for abandonded "
"accounts. Enter 0 for no time limit."
msgstr "Verschwende keine System-Ressourcen auf das Pollen externer Seiten, wenn Konten nicht mehr benutzt werden. 0 eingeben für kein Limit."
#: ../../mod/admin.php:506
msgid "Allowed friend domains"
msgstr "Erlaubte Domains für Kontakte"
#: ../../mod/admin.php:506
msgid ""
"Comma separated list of domains which are allowed to establish friendships "
"with this site. Wildcards are accepted. Empty to allow any domains"
msgstr "Liste der Domains, die für Freundschaften erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben."
#: ../../mod/admin.php:507
msgid "Allowed email domains"
msgstr "Erlaubte Domains für E-Mails"
#: ../../mod/admin.php:507
msgid ""
"Comma separated list of domains which are allowed in email addresses for "
"registrations to this site. Wildcards are accepted. Empty to allow any "
"domains"
msgstr "Liste der Domains, die für E-Mail-Adressen bei der Registrierung erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben."
#: ../../mod/admin.php:508
msgid "Block public"
msgstr "Öffentlichen Zugriff blockieren"
#: ../../mod/admin.php:508
msgid ""
"Check to block public access to all otherwise public personal pages on this "
"site unless you are currently logged in."
msgstr "Klicken, um öffentlichen Zugriff auf sonst öffentliche Profile zu blockieren, wenn man nicht eingeloggt ist."
#: ../../mod/admin.php:509
msgid "Force publish"
msgstr "Erzwinge Veröffentlichung"
#: ../../mod/admin.php:509
msgid ""
"Check to force all profiles on this site to be listed in the site directory."
msgstr "Klicken, um Anzeige aller Profile dieses Servers im Verzeichnis zu erzwingen."
#: ../../mod/admin.php:510
msgid "Global directory update URL"
msgstr "URL für Updates beim weltweiten Verzeichnis"
#: ../../mod/admin.php:510
msgid ""
"URL to update the global directory. If this is not set, the global directory"
" is completely unavailable to the application."
msgstr "URL für Update des globalen Verzeichnisses. Wenn nichts eingetragen ist, bleibt das globale Verzeichnis unerreichbar."
#: ../../mod/admin.php:511
msgid "Allow threaded items"
msgstr "Erlaube Threads in Diskussionen"
#: ../../mod/admin.php:511
msgid "Allow infinite level threading for items on this site."
msgstr "Erlaube ein unendliches Level für Threads auf dieser Seite."
#: ../../mod/admin.php:512
msgid "Private posts by default for new users"
msgstr "Private Beiträge als Standard für neue Nutzer"
#: ../../mod/admin.php:512
msgid ""
"Set default post permissions for all new members to the default privacy "
"group rather than public."
msgstr "Die Standard-Zugriffsrechte für neue Nutzer werden so gesetzt, dass als Voreinstellung in die private Gruppe gepostet wird anstelle von öffentlichen Beiträgen."
#: ../../mod/admin.php:513
msgid "Don't include post content in email notifications"
msgstr "Inhalte von Beiträgen nicht in Email Benachrichtigungen versenden"
#: ../../mod/admin.php:513
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 "Inhalte von Beiträgen/Kommentaren/privaten Nachrichten/usw., zum Datenschutz, nicht in Email-Benachrichtigungen einbinden."
#: ../../mod/admin.php:514
msgid "Disallow public access to addons listed in the apps menu."
msgstr "Öffentlichen Zugriff auf Addons im Apps Menü verbieten."
#: ../../mod/admin.php:514
msgid ""
"Checking this box will restrict addons listed in the apps menu to members "
"only."
msgstr "Wenn ausgewählt werden die im Apps Menü aufgeführten Addons nur angemeldeten Nutzern der Seite zur Verfügung gestellt."
#: ../../mod/admin.php:515
msgid "Don't embed private images in posts"
msgstr "Private Bilder nicht in Beiträgen einbetten."
#: ../../mod/admin.php:515
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 "Ersetze lokal gehostete private Fotos in Beiträgen nicht mit einer eingebetteten Kopie des Bildes. Dies bedeutet, dass Kontakte, die Beiträge mit privaten Fotos erhalten sich zunächst auf den jeweiligen Servern authentifizieren müssen bevor die Bilder geladen und angezeigt werden, was eine gewisse Zeit dauert."
#: ../../mod/admin.php:517
msgid "Block multiple registrations"
msgstr "Unterbinde Mehrfachregistrierung"
#: ../../mod/admin.php:517
msgid "Disallow users to register additional accounts for use as pages."
msgstr "Benutzern nicht erlauben, weitere Konten als zusätzliche Profile anzulegen."
#: ../../mod/admin.php:518
msgid "OpenID support"
msgstr "OpenID Unterstützung"
#: ../../mod/admin.php:518
msgid "OpenID support for registration and logins."
msgstr "OpenID-Unterstützung für Registrierung und Login."
#: ../../mod/admin.php:519
msgid "Fullname check"
msgstr "Namen auf Vollständigkeit überprüfen"
#: ../../mod/admin.php:519
msgid ""
"Force users to register with a space between firstname and lastname in Full "
"name, as an antispam measure"
msgstr "Leerzeichen zwischen Vor- und Nachname im vollständigen Namen erzwingen, um SPAM zu vermeiden."
#: ../../mod/admin.php:520
msgid "UTF-8 Regular expressions"
msgstr "UTF-8 Reguläre Ausdrücke"
#: ../../mod/admin.php:520
msgid "Use PHP UTF8 regular expressions"
msgstr "PHP UTF8 Ausdrücke verwenden"
#: ../../mod/admin.php:521
msgid "Show Community Page"
msgstr "Gemeinschaftsseite anzeigen"
#: ../../mod/admin.php:521
msgid ""
"Display a Community page showing all recent public postings on this site."
msgstr "Zeige die Gemeinschaftsseite mit allen öffentlichen Beiträgen auf diesem Server."
#: ../../mod/admin.php:522
msgid "Enable OStatus support"
msgstr "OStatus Unterstützung aktivieren"
#: ../../mod/admin.php:522
msgid ""
"Provide built-in OStatus (identi.ca, status.net, etc.) compatibility. All "
"communications in OStatus are public, so privacy warnings will be "
"occasionally displayed."
msgstr "Biete die eingebaute OStatus (identi.ca, status.net, etc.) Unterstützung an. Jede Kommunikation in OStatus ist öffentlich, Privatsphäre Warnungen werden nur bei Bedarf angezeigt."
#: ../../mod/admin.php:523
msgid "Enable Diaspora support"
msgstr "Diaspora-Support aktivieren"
#: ../../mod/admin.php:523
msgid "Provide built-in Diaspora network compatibility."
msgstr "Verwende die eingebaute Diaspora-Verknüpfung."
#: ../../mod/admin.php:524
msgid "Only allow Friendica contacts"
msgstr "Nur Friendica-Kontakte erlauben"
#: ../../mod/admin.php:524
msgid ""
"All contacts must use Friendica protocols. All other built-in communication "
"protocols disabled."
msgstr "Alle Kontakte müssen das Friendica Protokoll nutzen. Alle anderen Kommunikationsprotokolle werden deaktiviert."
#: ../../mod/admin.php:525
msgid "Verify SSL"
msgstr "SSL Überprüfen"
#: ../../mod/admin.php:525
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 "Wenn gewollt, kann man hier eine strenge Zertifikatkontrolle einstellen. Das bedeutet, dass man zu keinen Seiten mit selbst unterzeichnetem SSL eine Verbindung herstellen kann."
#: ../../mod/admin.php:526
msgid "Proxy user"
msgstr "Proxy Nutzer"
#: ../../mod/admin.php:527
msgid "Proxy URL"
msgstr "Proxy URL"
#: ../../mod/admin.php:528
msgid "Network timeout"
msgstr "Netzwerk Wartezeit"
#: ../../mod/admin.php:528
msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
msgstr "Der Wert ist in Sekunden. Setze 0 für unbegrenzt (nicht empfohlen)."
#: ../../mod/admin.php:529
msgid "Delivery interval"
msgstr "Zustellungsintervall"
#: ../../mod/admin.php:529
msgid ""
"Delay background delivery processes by this many seconds to reduce system "
"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 "
"for large dedicated servers."
msgstr "Verzögere im Hintergrund laufende Auslieferungsprozesse um die angegebene Anzahl an Sekunden, um die Systemlast zu verringern. Empfehlungen: 4-5 für Shared-Hosts, 2-3 für VPS, 0-1 für große dedizierte Server."
#: ../../mod/admin.php:530
msgid "Poll interval"
msgstr "Abfrageintervall"
#: ../../mod/admin.php:530
msgid ""
"Delay background polling processes by this many seconds to reduce system "
"load. If 0, use delivery interval."
msgstr "Verzögere Hintergrundprozesse, um diese Anzahl an Sekunden um die Systemlast zu reduzieren. Bei 0 Sekunden wird das Auslieferungsintervall verwendet."
#: ../../mod/admin.php:531
msgid "Maximum Load Average"
msgstr "Maximum Load Average"
#: ../../mod/admin.php:531
msgid ""
"Maximum system load before delivery and poll processes are deferred - "
"default 50."
msgstr "Maximale Systemlast bevor Verteil- und Empfangsprozesse verschoben werden - Standard 50"
#: ../../mod/admin.php:533
msgid "Use MySQL full text engine"
msgstr "Nutze MySQL full text engine"
#: ../../mod/admin.php:533
msgid ""
"Activates the full text engine. Speeds up search - but can only search for "
"four and more characters."
msgstr "Aktiviert die 'full text engine'. Beschleunigt die Suche - aber es kann nur nach vier oder mehr Zeichen gesucht werden."
#: ../../mod/admin.php:534
msgid "Path to item cache"
msgstr "Pfad zum Eintrag Cache"
#: ../../mod/admin.php:535
msgid "Cache duration in seconds"
msgstr "Cache-Dauer in Sekunden"
#: ../../mod/admin.php:535
msgid ""
"How long should the cache files be hold? Default value is 86400 seconds (One"
" day)."
msgstr "Wie lange sollen die Dateien im Cache vorgehalten werden? Standardwert ist 86400 Sekunden (ein Tag)."
#: ../../mod/admin.php:536
msgid "Path for lock file"
msgstr "Pfad für die Sperrdatei"
#: ../../mod/admin.php:537
msgid "Temp path"
msgstr "Temp Pfad"
#: ../../mod/admin.php:538
msgid "Base path to installation"
msgstr "Basis-Pfad zur Installation"
#: ../../mod/admin.php:555
msgid "Update has been marked successful"
msgstr "Update wurde als erfolgreich markiert"
#: ../../mod/admin.php:565
#, php-format
msgid "Executing %s failed. Check system logs."
msgstr "Ausführung von %s schlug fehl. Systemprotokolle prüfen."
#: ../../mod/admin.php:568
#, php-format
msgid "Update %s was successfully applied."
msgstr "Update %s war erfolgreich."
#: ../../mod/admin.php:572
#, php-format
msgid "Update %s did not return a status. Unknown if it succeeded."
msgstr "Update %s hat keinen Status zurückgegeben. Unbekannter Status."
#: ../../mod/admin.php:575
#, php-format
msgid "Update function %s could not be found."
msgstr "Updatefunktion %s konnte nicht gefunden werden."
#: ../../mod/admin.php:590
msgid "No failed updates."
msgstr "Keine fehlgeschlagenen Updates."
#: ../../mod/admin.php:594
msgid "Failed Updates"
msgstr "Fehlgeschlagene Updates"
#: ../../mod/admin.php:595
msgid ""
"This does not include updates prior to 1139, which did not return a status."
msgstr "Ohne Updates vor 1139, da diese keinen Status zurückgegeben haben."
#: ../../mod/admin.php:596
msgid "Mark success (if update was manually applied)"
msgstr "Als erfolgreich markieren (falls das Update manuell installiert wurde)"
#: ../../mod/admin.php:597
msgid "Attempt to execute this update step automatically"
msgstr "Versuchen, diesen Schritt automatisch auszuführen"
#: ../../mod/admin.php:622
#, php-format
msgid "%s user blocked/unblocked"
msgid_plural "%s users blocked/unblocked"
msgstr[0] "%s Benutzer geblockt/freigegeben"
msgstr[1] "%s Benutzer geblockt/freigegeben"
#: ../../mod/admin.php:629
#, php-format
msgid "%s user deleted"
msgid_plural "%s users deleted"
msgstr[0] "%s Nutzer gelöscht"
msgstr[1] "%s Nutzer gelöscht"
#: ../../mod/admin.php:668
#, php-format
msgid "User '%s' deleted"
msgstr "Nutzer '%s' gelöscht"
#: ../../mod/admin.php:676
#, php-format
msgid "User '%s' unblocked"
msgstr "Nutzer '%s' entsperrt"
#: ../../mod/admin.php:676
#, php-format
msgid "User '%s' blocked"
msgstr "Nutzer '%s' gesperrt"
#: ../../mod/admin.php:752
msgid "select all"
msgstr "Alle auswählen"
#: ../../mod/admin.php:753
msgid "User registrations waiting for confirm"
msgstr "Neuanmeldungen, die auf deine Bestätigung warten"
#: ../../mod/admin.php:754
msgid "Request date"
msgstr "Anfragedatum"
#: ../../mod/admin.php:755
msgid "No registrations."
msgstr "Keine Neuanmeldungen."
#: ../../mod/admin.php:756 ../../mod/notifications.php:161
#: ../../mod/notifications.php:208
msgid "Approve"
msgstr "Genehmigen"
#: ../../mod/admin.php:757
msgid "Deny"
msgstr "Verwehren"
#: ../../mod/admin.php:761
msgid "Site admin"
msgstr "Seitenadministrator"
#: ../../mod/admin.php:762
msgid "Account expired"
msgstr "Account ist abgelaufen"
#: ../../mod/admin.php:765
msgid "Register date"
msgstr "Anmeldedatum"
#: ../../mod/admin.php:765
msgid "Last login"
msgstr "Letzte Anmeldung"
#: ../../mod/admin.php:765
msgid "Last item"
msgstr "Letzter Beitrag"
#: ../../mod/admin.php:765
msgid "Account"
msgstr "Nutzerkonto"
#: ../../mod/admin.php:767
msgid ""
"Selected users will be deleted!\\n\\nEverything these users had posted on "
"this site will be permanently deleted!\\n\\nAre you sure?"
msgstr "Die markierten Nutzer werden gelöscht!\\n\\nAlle Beiträge, die diese Nutzer auf dieser Seite veröffentlicht haben, werden permanent gelöscht!\\n\\nBist du sicher?"
#: ../../mod/admin.php:768
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 "Der Nutzer {0} wird gelöscht!\\n\\nAlles was dieser Nutzer auf dieser Seite veröffentlicht hat, wird permanent gelöscht!\\n\\nBist du sicher?"
#: ../../mod/admin.php:809
#, php-format
msgid "Plugin %s disabled."
msgstr "Plugin %s deaktiviert."
#: ../../mod/admin.php:813
#, php-format
msgid "Plugin %s enabled."
msgstr "Plugin %s aktiviert."
#: ../../mod/admin.php:823 ../../mod/admin.php:1026
msgid "Disable"
msgstr "Ausschalten"
#: ../../mod/admin.php:825 ../../mod/admin.php:1028
msgid "Enable"
msgstr "Einschalten"
#: ../../mod/admin.php:848 ../../mod/admin.php:1056
msgid "Toggle"
msgstr "Umschalten"
#: ../../mod/admin.php:856 ../../mod/admin.php:1066
msgid "Author: "
msgstr "Autor:"
#: ../../mod/admin.php:857 ../../mod/admin.php:1067
msgid "Maintainer: "
msgstr "Betreuer:"
#: ../../mod/admin.php:986
msgid "No themes found."
msgstr "Keine Themen gefunden."
#: ../../mod/admin.php:1048
msgid "Screenshot"
msgstr "Bildschirmfoto"
#: ../../mod/admin.php:1094
msgid "[Experimental]"
msgstr "[Experimentell]"
#: ../../mod/admin.php:1095
msgid "[Unsupported]"
msgstr "[Nicht unterstützt]"
#: ../../mod/admin.php:1122
msgid "Log settings updated."
msgstr "Protokolleinstellungen aktualisiert."
#: ../../mod/admin.php:1178
msgid "Clear"
msgstr "löschen"
#: ../../mod/admin.php:1184
msgid "Debugging"
msgstr "Protokoll führen"
#: ../../mod/admin.php:1185
msgid "Log file"
msgstr "Protokolldatei"
#: ../../mod/admin.php:1185
msgid ""
"Must be writable by web server. Relative to your Friendica top-level "
"directory."
msgstr "Webserver muss Schreibrechte besitzen. Abhängig vom Friendica-Installationsverzeichnis."
#: ../../mod/admin.php:1186
msgid "Log level"
msgstr "Protokoll-Level"
#: ../../mod/admin.php:1236
msgid "Close"
msgstr "Schließen"
#: ../../mod/admin.php:1242
msgid "FTP Host"
msgstr "FTP Host"
#: ../../mod/admin.php:1243
msgid "FTP Path"
msgstr "FTP Pfad"
#: ../../mod/admin.php:1244
msgid "FTP User"
msgstr "FTP Nutzername"
#: ../../mod/admin.php:1245
msgid "FTP Password"
msgstr "FTP Passwort"
#: ../../mod/tagrm.php:41
msgid "Tag removed"
msgstr "Tag entfernt"
#: ../../mod/tagrm.php:79
msgid "Remove Item Tag"
msgstr "Gegenstands-Tag entfernen"
#: ../../mod/tagrm.php:81
msgid "Select a tag to remove: "
msgstr "Wähle ein Tag zum Entfernen aus: "
#: ../../mod/editpost.php:17 ../../mod/editpost.php:27
msgid "Item not found"
msgstr "Beitrag nicht gefunden"
#: ../../mod/editpost.php:39
msgid "Edit post"
msgstr "Beitrag bearbeiten"
#: ../../mod/events.php:66
msgid "Event title and start time are required."
msgstr "Der Veranstaltungstitel und die Anfangszeit müssen angegeben werden."
#: ../../mod/events.php:291
msgid "l, F j"
msgstr "l, F j"
#: ../../mod/events.php:313
msgid "Edit event"
msgstr "Veranstaltung bearbeiten"
#: ../../mod/events.php:371
msgid "Create New Event"
msgstr "Neue Veranstaltung erstellen"
#: ../../mod/events.php:372
msgid "Previous"
msgstr "Vorherige"
#: ../../mod/events.php:373 ../../mod/install.php:207
msgid "Next"
msgstr "Nächste"
#: ../../mod/events.php:446
msgid "hour:minute"
msgstr "Stunde:Minute"
#: ../../mod/events.php:456
msgid "Event details"
msgstr "Veranstaltungsdetails"
#: ../../mod/events.php:457
#, php-format
msgid "Format is %s %s. Starting date and Title are required."
msgstr "Das Format ist %s %s. Beginnzeitpunkt und Titel werden benötigt."
#: ../../mod/events.php:459
msgid "Event Starts:"
msgstr "Veranstaltungsbeginn:"
#: ../../mod/events.php:459 ../../mod/events.php:473
msgid "Required"
msgstr "Benötigt"
#: ../../mod/events.php:462
msgid "Finish date/time is not known or not relevant"
msgstr "Enddatum/-zeit ist nicht bekannt oder nicht relevant"
#: ../../mod/events.php:464
msgid "Event Finishes:"
msgstr "Veranstaltungsende:"
#: ../../mod/events.php:467
msgid "Adjust for viewer timezone"
msgstr "An Zeitzone des Betrachters anpassen"
#: ../../mod/events.php:469
msgid "Description:"
msgstr "Beschreibung"
#: ../../mod/events.php:473
msgid "Title:"
msgstr "Titel:"
#: ../../mod/events.php:475
msgid "Share this event"
msgstr "Veranstaltung teilen"
#: ../../mod/fbrowser.php:113
msgid "Files"
msgstr "Dateien"
#: ../../mod/uexport.php:72
msgid "Export account"
msgstr "Account exportieren"
#: ../../mod/uexport.php:72
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 "Exportiere deine Account Informationen und die Kontakte. Verwende dies um ein Backup deines Accounts anzulegen und/oder ihn auf einen anderen Server umzuziehen."
#: ../../mod/uexport.php:73
msgid "Export all"
msgstr "Alles exportieren"
#: ../../mod/uexport.php:73
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 "Exportiere deine Account Informationen, Kontakte und alle Einträge als JSON Datei. Dies könnte eine sehr große Datei werden und dementsprechend viel Zeit benötigen. Verwende dies um ein komplettes Backup deines Accounts anzulegen (Photos werden nicht exportiert)."
#: ../../mod/filer.php:30
msgid "- select -"
msgstr "- auswählen -"
#: ../../mod/uimport.php:64
msgid "Import"
msgstr "Import"
#: ../../mod/uimport.php:66
msgid "Move account"
msgstr "Account umziehen"
#: ../../mod/uimport.php:67
msgid "You can import an account from another Friendica server."
msgstr "Du kannst einen Account von einem anderen Friendica Server importieren."
#: ../../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 "Du musst deinen Account vom alten Server exportieren und hier hochladen. Wir stellen deinen alten Account mit all deinen Kontakten wieder her. Wir werden auch versuchen all deine Freunde darüber zu informieren, dass du hierher umgezogen bist."
#: ../../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 "Dieses Feature ist experimentell. Wir können keine Kontakte vom OStatus Netzwerk (statusnet/identi.ca) oder von Diaspora importieren"
#: ../../mod/uimport.php:70
msgid "Account file"
msgstr "Account Datei"
#: ../../mod/uimport.php:70
msgid ""
"To export your accont, go to \"Settings->Export your porsonal data\" and "
"select \"Export account\""
msgstr "Um deinen Account zu exportieren, rufe \"Einstellungen -> Persönliche Daten exportieren\" auf und wähle \"Account exportieren\""
#: ../../mod/update_community.php:18 ../../mod/update_display.php:22
#: ../../mod/update_network.php:22 ../../mod/update_notes.php:41
#: ../../mod/update_profile.php:41
msgid "[Embedded content - reload page to view]"
msgstr "[Eingebetteter Inhalt - Seite neu laden zum Betrachten]"
#: ../../mod/follow.php:27
msgid "Contact added"
msgstr "Kontakt hinzugefügt"
#: ../../mod/friendica.php:55
msgid "This is Friendica, version"
msgstr "Dies ist Friendica, Version"
#: ../../mod/friendica.php:56
msgid "running at web location"
msgstr "die unter folgender Webadresse zu finden ist"
#: ../../mod/friendica.php:58
msgid ""
"Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn "
"more about the Friendica project."
msgstr "Bitte besuche <a href=\"http://friendica.com\">Friendica.com</a>, um mehr über das Friendica Projekt zu erfahren."
#: ../../mod/friendica.php:60
msgid "Bug reports and issues: please visit"
msgstr "Probleme oder Fehler gefunden? Bitte besuche"
#: ../../mod/friendica.php:61
msgid ""
"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - "
"dot com"
msgstr "Vorschläge, Lob, Spenden usw.: E-Mail an \"Info\" at Friendica - dot com"
#: ../../mod/friendica.php:75
msgid "Installed plugins/addons/apps:"
msgstr "Installierte Plugins/Erweiterungen/Apps"
#: ../../mod/friendica.php:88
msgid "No installed plugins/addons/apps"
msgstr "Keine Plugins/Erweiterungen/Apps installiert"
#: ../../mod/fsuggest.php:63
msgid "Friend suggestion sent."
msgstr "Kontaktvorschlag gesendet."
#: ../../mod/fsuggest.php:97
msgid "Suggest Friends"
msgstr "Kontakte vorschlagen"
#: ../../mod/fsuggest.php:99
#, php-format
msgid "Suggest a friend for %s"
msgstr "Schlage %s einen Kontakt vor"
#: ../../mod/group.php:29
msgid "Group created."
msgstr "Gruppe erstellt."
#: ../../mod/group.php:35
msgid "Could not create group."
msgstr "Konnte die Gruppe nicht erstellen."
#: ../../mod/group.php:47 ../../mod/group.php:140
msgid "Group not found."
msgstr "Gruppe nicht gefunden."
#: ../../mod/group.php:60
msgid "Group name changed."
msgstr "Gruppenname geändert."
#: ../../mod/group.php:93
msgid "Create a group of contacts/friends."
msgstr "Eine Gruppe von Kontakten/Freunden anlegen."
#: ../../mod/group.php:94 ../../mod/group.php:180
msgid "Group Name: "
msgstr "Gruppenname:"
#: ../../mod/group.php:113
msgid "Group removed."
msgstr "Gruppe entfernt."
#: ../../mod/group.php:115
msgid "Unable to remove group."
msgstr "Konnte die Gruppe nicht entfernen."
#: ../../mod/group.php:179
msgid "Group Editor"
msgstr "Gruppeneditor"
#: ../../mod/group.php:192
msgid "Members"
msgstr "Mitglieder"
#: ../../mod/hcard.php:10
msgid "No profile"
msgstr "Kein Profil"
#: ../../mod/help.php:79
msgid "Help:"
msgstr "Hilfe:"
#: ../../mod/help.php:90 ../../index.php:231
msgid "Not Found"
msgstr "Nicht gefunden"
#: ../../mod/help.php:93 ../../index.php:234
msgid "Page not found."
msgstr "Seite nicht gefunden."
#: ../../mod/viewcontacts.php:39
msgid "No contacts."
msgstr "Keine Kontakte."
#: ../../mod/home.php:34
#, php-format
msgid "Welcome to %s"
msgstr "Willkommen zu %s"
#: ../../mod/viewsrc.php:7
msgid "Access denied."
msgstr "Zugriff verweigert."
#: ../../mod/wall_attach.php:69
#, php-format
msgid "File exceeds size limit of %d"
msgstr "Die Datei ist größer als das erlaubte Limit von %d"
#: ../../mod/wall_attach.php:110 ../../mod/wall_attach.php:121
msgid "File upload failed."
msgstr "Hochladen der Datei fehlgeschlagen."
#: ../../mod/wall_upload.php:90 ../../mod/profile_photo.php:144
#, php-format
msgid "Image exceeds size limit of %d"
msgstr "Bildgröße überschreitet das Limit von %d"
#: ../../mod/wall_upload.php:112 ../../mod/photos.php:801
#: ../../mod/profile_photo.php:153
msgid "Unable to process image."
msgstr "Konnte das Bild nicht bearbeiten."
#: ../../mod/wall_upload.php:138 ../../mod/photos.php:828
#: ../../mod/profile_photo.php:301
msgid "Image upload failed."
msgstr "Hochladen des Bildes gescheitert."
#: ../../mod/invite.php:27
msgid "Total invitation limit exceeded."
msgstr "Limit für Einladungen erreicht."
#: ../../mod/invite.php:49
#, php-format
msgid "%s : Not a valid email address."
msgstr "%s: Keine gültige Email Adresse."
#: ../../mod/invite.php:73
msgid "Please join us on Friendica"
msgstr "Bitte trete bei uns auf Friendica bei"
#: ../../mod/invite.php:84
msgid "Invitation limit exceeded. Please contact your site administrator."
msgstr "Limit für Einladungen erreicht. Bitte kontaktiere des Administrator der Seite."
#: ../../mod/invite.php:89
#, php-format
msgid "%s : Message delivery failed."
msgstr "%s: Zustellung der Nachricht fehlgeschlagen."
#: ../../mod/invite.php:93
#, php-format
msgid "%d message sent."
msgid_plural "%d messages sent."
msgstr[0] "%d Nachricht gesendet."
msgstr[1] "%d Nachrichten gesendet."
#: ../../mod/invite.php:112
msgid "You have no more invitations available"
msgstr "Du hast keine weiteren Einladungen"
#: ../../mod/invite.php:120
#, php-format
msgid ""
"Visit %s for a list of public sites that you can join. Friendica members on "
"other sites can all connect with each other, as well as with members of many"
" other social networks."
msgstr "Besuche %s für eine Liste der öffentlichen Server, denen du beitreten kannst. Friendica Mitglieder unterschiedlicher Server können sich sowohl alle miteinander verbinden, als auch mit Mitgliedern anderer Sozialer Netzwerke."
#: ../../mod/invite.php:122
#, php-format
msgid ""
"To accept this invitation, please visit and register at %s or any other "
"public Friendica website."
msgstr "Um diese Kontaktanfrage zu akzeptieren, besuche und registriere dich bitte bei %s oder einer anderen öffentlichen Friendica Website."
#: ../../mod/invite.php:123
#, php-format
msgid ""
"Friendica sites all inter-connect to create a huge privacy-enhanced social "
"web that is owned and controlled by its members. They can also connect with "
"many traditional social networks. See %s for a list of alternate Friendica "
"sites you can join."
msgstr "Friendica Server verbinden sich alle untereinander, um ein großes datenschutzorientiertes Soziales Netzwerk zu bilden, das von seinen Mitgliedern betrieben und kontrolliert wird. Sie können sich auch mit vielen üblichen Sozialen Netzwerken verbinden. Besuche %s für eine Liste alternativer Friendica Server, denen du beitreten kannst."
#: ../../mod/invite.php:126
msgid ""
"Our apologies. This system is not currently configured to connect with other"
" public sites or invite members."
msgstr "Es tut uns leid. Dieses System ist zurzeit nicht dafür konfiguriert, sich mit anderen öffentlichen Seiten zu verbinden oder Mitglieder einzuladen."
#: ../../mod/invite.php:132
msgid "Send invitations"
msgstr "Einladungen senden"
#: ../../mod/invite.php:133
msgid "Enter email addresses, one per line:"
msgstr "E-Mail-Adressen eingeben, eine pro Zeile:"
#: ../../mod/invite.php:134 ../../mod/wallmessage.php:151
#: ../../mod/message.php:329 ../../mod/message.php:558
msgid "Your message:"
msgstr "Deine Nachricht:"
#: ../../mod/invite.php:135
msgid ""
"You are cordially invited to join me and other close friends on Friendica - "
"and help us to create a better social web."
msgstr "Du bist herzlich dazu eingeladen, dich mir und anderen guten Freunden auf Friendica anzuschließen - und ein besseres Soziales Netz aufzubauen."
#: ../../mod/invite.php:137
msgid "You will need to supply this invitation code: $invite_code"
msgstr "Du benötigst den folgenden Einladungscode: $invite_code"
#: ../../mod/invite.php:137
msgid ""
"Once you have registered, please connect with me via my profile page at:"
msgstr "Sobald du registriert bist, kontaktiere mich bitte auf meiner Profilseite:"
#: ../../mod/invite.php:139
msgid ""
"For more information about the Friendica project and why we feel it is "
"important, please visit http://friendica.com"
msgstr "Für weitere Informationen über das Friendica Projekt und warum wir es für ein wichtiges Projekt halten, besuche bitte http://friendica.com"
#: ../../mod/wallmessage.php:42 ../../mod/wallmessage.php:112
#, php-format
msgid "Number of daily wall messages for %s exceeded. Message failed."
msgstr "Maximale Anzahl der täglichen Pinnwand Nachrichten für %s ist überschritten. Zustellung fehlgeschlagen."
#: ../../mod/wallmessage.php:56 ../../mod/message.php:63
msgid "No recipient selected."
msgstr "Kein Empfänger gewählt."
#: ../../mod/wallmessage.php:59
msgid "Unable to check your home location."
msgstr "Konnte deinen Heimatort nicht bestimmen."
#: ../../mod/wallmessage.php:62 ../../mod/message.php:70
msgid "Message could not be sent."
msgstr "Nachricht konnte nicht gesendet werden."
#: ../../mod/wallmessage.php:65 ../../mod/message.php:73
msgid "Message collection failure."
msgstr "Konnte Nachrichten nicht abrufen."
#: ../../mod/wallmessage.php:68 ../../mod/message.php:76
msgid "Message sent."
msgstr "Nachricht gesendet."
#: ../../mod/wallmessage.php:86 ../../mod/wallmessage.php:95
msgid "No recipient."
msgstr "Kein Empfänger."
#: ../../mod/wallmessage.php:142 ../../mod/message.php:319
msgid "Send Private Message"
msgstr "Private Nachricht senden"
#: ../../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 "Wenn du möchtest, dass %s dir antworten kann, überprüfe deine Privatsphären-Einstellungen und erlaube private Nachrichten von unbekannten Absendern."
#: ../../mod/wallmessage.php:144 ../../mod/message.php:320
#: ../../mod/message.php:553
msgid "To:"
msgstr "An:"
#: ../../mod/wallmessage.php:145 ../../mod/message.php:325
#: ../../mod/message.php:555
msgid "Subject:"
msgstr "Betreff:"
#: ../../mod/localtime.php:24
msgid "Time Conversion"
msgstr "Zeitumrechnung"
#: ../../mod/localtime.php:26
msgid ""
"Friendica provides this service for sharing events with other networks and "
"friends in unknown timezones."
msgstr "Friendica bietet diese Funktion an, um das Teilen von Events mit Kontakten zu vereinfachen, deren Zeitzone nicht ermittelt werden kann."
#: ../../mod/localtime.php:30
#, php-format
msgid "UTC time: %s"
msgstr "UTC Zeit: %s"
#: ../../mod/localtime.php:33
#, php-format
msgid "Current timezone: %s"
msgstr "Aktuelle Zeitzone: %s"
#: ../../mod/localtime.php:36
#, php-format
msgid "Converted localtime: %s"
msgstr "Umgerechnete lokale Zeit: %s"
#: ../../mod/localtime.php:41
msgid "Please select your timezone:"
msgstr "Bitte wähle deine Zeitzone."
#: ../../mod/lockview.php:31 ../../mod/lockview.php:39
msgid "Remote privacy information not available."
msgstr "Entfernte Privatsphäreneinstellungen nicht verfügbar."
#: ../../mod/lockview.php:48
msgid "Visible to:"
msgstr "Sichtbar für:"
#: ../../mod/lostpass.php:17
msgid "No valid account found."
msgstr "Kein gültiges Konto gefunden."
#: ../../mod/lostpass.php:33
msgid "Password reset request issued. Check your email."
msgstr "Zurücksetzen des Passworts eingeleitet. Bitte überprüfe deine E-Mail."
#: ../../mod/lostpass.php:44
#, php-format
msgid "Password reset requested at %s"
msgstr "Anfrage zum Zurücksetzen des Passworts auf %s erhalten"
#: ../../mod/lostpass.php:66
msgid ""
"Request could not be verified. (You may have previously submitted it.) "
"Password reset failed."
msgstr "Anfrage konnte nicht verifiziert werden. (Eventuell hast du bereits eine ähnliche Anfrage gestellt.) Zurücksetzen des Passworts gescheitert."
#: ../../mod/lostpass.php:84 ../../boot.php:1072
msgid "Password Reset"
msgstr "Passwort zurücksetzen"
#: ../../mod/lostpass.php:85
msgid "Your password has been reset as requested."
msgstr "Dein Passwort wurde wie gewünscht zurückgesetzt."
#: ../../mod/lostpass.php:86
msgid "Your new password is"
msgstr "Dein neues Passwort lautet"
#: ../../mod/lostpass.php:87
msgid "Save or copy your new password - and then"
msgstr "Speichere oder kopiere dein neues Passwort - und dann"
#: ../../mod/lostpass.php:88
msgid "click here to login"
msgstr "hier klicken, um dich anzumelden"
#: ../../mod/lostpass.php:89
msgid ""
"Your password may be changed from the <em>Settings</em> page after "
"successful login."
msgstr "Du kannst das Passwort in den <em>Einstellungen</em> ändern, sobald du dich erfolgreich angemeldet hast."
#: ../../mod/lostpass.php:107
#, php-format
msgid "Your password has been changed at %s"
msgstr "Auf %s wurde dein Passwort geändert"
#: ../../mod/lostpass.php:122
msgid "Forgot your Password?"
msgstr "Hast du dein Passwort vergessen?"
#: ../../mod/lostpass.php:123
msgid ""
"Enter your email address and submit to have your password reset. Then check "
"your email for further instructions."
msgstr "Gib deine E-Mail-Adresse an und fordere ein neues Passwort an. Es werden dir dann weitere Informationen per Mail zugesendet."
#: ../../mod/lostpass.php:124
msgid "Nickname or Email: "
msgstr "Spitzname oder E-Mail:"
#: ../../mod/lostpass.php:125
msgid "Reset"
msgstr "Zurücksetzen"
#: ../../mod/maintenance.php:5
msgid "System down for maintenance"
msgstr "System zur Wartung abgeschaltet"
#: ../../mod/manage.php:106
msgid "Manage Identities and/or Pages"
msgstr "Verwalte Identitäten und/oder Seiten"
#: ../../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"
msgstr "Zwischen verschiedenen Identitäten oder Foren wechseln, die deine Zugangsdaten (E-Mail und Passwort) teilen oder zu denen du „Verwalten“-Befugnisse bekommen hast."
#: ../../mod/manage.php:108
msgid "Select an identity to manage: "
msgstr "Wähle eine Identität zum Verwalten: "
#: ../../mod/match.php:12
msgid "Profile Match"
msgstr "Profilübereinstimmungen"
#: ../../mod/match.php:20
msgid "No keywords to match. Please add keywords to your default profile."
msgstr "Keine Schlüsselwörter zum Abgleichen gefunden. Bitte füge einige Schlüsselwörter zu deinem Standardprofil hinzu."
#: ../../mod/match.php:57
msgid "is interested in:"
msgstr "ist interessiert an:"
#: ../../mod/message.php:67
msgid "Unable to locate contact information."
msgstr "Konnte die Kontaktinformationen nicht finden."
#: ../../mod/message.php:207
msgid "Do you really want to delete this message?"
msgstr "Möchtest du wirklich diese Nachricht löschen?"
#: ../../mod/message.php:227
msgid "Message deleted."
msgstr "Nachricht gelöscht."
#: ../../mod/message.php:258
msgid "Conversation removed."
msgstr "Unterhaltung gelöscht."
#: ../../mod/message.php:371
msgid "No messages."
msgstr "Keine Nachrichten."
#: ../../mod/message.php:378
#, php-format
msgid "Unknown sender - %s"
msgstr "'Unbekannter Absender - %s"
#: ../../mod/message.php:381
#, php-format
msgid "You and %s"
msgstr "Du und %s"
#: ../../mod/message.php:384
#, php-format
msgid "%s and You"
msgstr "%s und du"
#: ../../mod/message.php:405 ../../mod/message.php:546
msgid "Delete conversation"
msgstr "Unterhaltung löschen"
#: ../../mod/message.php:408
msgid "D, d M Y - g:i A"
msgstr "D, d. M Y - g:i A"
#: ../../mod/message.php:411
#, php-format
msgid "%d message"
msgid_plural "%d messages"
msgstr[0] "%d Nachricht"
msgstr[1] "%d Nachrichten"
#: ../../mod/message.php:450
msgid "Message not available."
msgstr "Nachricht nicht verfügbar."
#: ../../mod/message.php:520
msgid "Delete message"
msgstr "Nachricht löschen"
#: ../../mod/message.php:548
msgid ""
"No secure communications available. You <strong>may</strong> be able to "
"respond from the sender's profile page."
msgstr "Sichere Kommunikation ist nicht verfügbar. <strong>Eventuell</strong> kannst du auf der Profilseite des Absenders antworten."
#: ../../mod/message.php:552
msgid "Send Reply"
msgstr "Antwort senden"
#: ../../mod/mood.php:133
msgid "Mood"
msgstr "Stimmung"
#: ../../mod/mood.php:134
msgid "Set your current mood and tell your friends"
msgstr "Wähle deine aktuelle Stimmung und erzähle sie deinen Freunden"
#: ../../mod/network.php:181
msgid "Search Results For:"
msgstr "Suchergebnisse für:"
#: ../../mod/network.php:397
msgid "Commented Order"
msgstr "Neueste Kommentare"
#: ../../mod/network.php:400
msgid "Sort by Comment Date"
msgstr "Nach Kommentardatum sortieren"
#: ../../mod/network.php:403
msgid "Posted Order"
msgstr "Neueste Beiträge"
#: ../../mod/network.php:406
msgid "Sort by Post Date"
msgstr "Nach Beitragsdatum sortieren"
#: ../../mod/network.php:444 ../../mod/notifications.php:88
msgid "Personal"
msgstr "Persönlich"
#: ../../mod/network.php:447
msgid "Posts that mention or involve you"
msgstr "Beiträge, in denen es um dich geht"
#: ../../mod/network.php:453
msgid "New"
msgstr "Neue"
#: ../../mod/network.php:456
msgid "Activity Stream - by date"
msgstr "Aktivitäten-Stream - nach Datum"
#: ../../mod/network.php:462
msgid "Shared Links"
msgstr "Geteilte Links"
#: ../../mod/network.php:465
msgid "Interesting Links"
msgstr "Interessante Links"
#: ../../mod/network.php:471
msgid "Starred"
msgstr "Markierte"
#: ../../mod/network.php:474
msgid "Favourite Posts"
msgstr "Favorisierte Beiträge"
#: ../../mod/network.php:546
#, php-format
msgid "Warning: This group contains %s member from an insecure network."
msgid_plural ""
"Warning: This group contains %s members from an insecure network."
msgstr[0] "Warnung: Diese Gruppe beinhaltet %s Person aus einem unsicheren Netzwerk."
msgstr[1] "Warnung: Diese Gruppe beinhaltet %s Personen aus unsicheren Netzwerken."
#: ../../mod/network.php:549
msgid "Private messages to this group are at risk of public disclosure."
msgstr "Private Nachrichten an diese Gruppe könnten an die Öffentlichkeit geraten."
#: ../../mod/network.php:596 ../../mod/content.php:119
msgid "No such group"
msgstr "Es gibt keine solche Gruppe"
#: ../../mod/network.php:607 ../../mod/content.php:130
msgid "Group is empty"
msgstr "Gruppe ist leer"
#: ../../mod/network.php:611 ../../mod/content.php:134
msgid "Group: "
msgstr "Gruppe: "
#: ../../mod/network.php:621
msgid "Contact: "
msgstr "Kontakt: "
#: ../../mod/network.php:623
msgid "Private messages to this person are at risk of public disclosure."
msgstr "Private Nachrichten an diese Person könnten an die Öffentlichkeit gelangen."
#: ../../mod/network.php:628
msgid "Invalid contact."
msgstr "Ungültiger Kontakt."
#: ../../mod/notifications.php:26
msgid "Invalid request identifier."
msgstr "Invalid request identifier."
#: ../../mod/notifications.php:35 ../../mod/notifications.php:165
#: ../../mod/notifications.php:211
msgid "Discard"
msgstr "Verwerfen"
#: ../../mod/notifications.php:78
msgid "System"
msgstr "System"
#: ../../mod/notifications.php:122
msgid "Show Ignored Requests"
msgstr "Zeige ignorierte Anfragen"
#: ../../mod/notifications.php:122
msgid "Hide Ignored Requests"
msgstr "Verberge ignorierte Anfragen"
#: ../../mod/notifications.php:149 ../../mod/notifications.php:195
msgid "Notification type: "
msgstr "Benachrichtigungstyp: "
#: ../../mod/notifications.php:150
msgid "Friend Suggestion"
msgstr "Kontaktvorschlag"
#: ../../mod/notifications.php:152
#, php-format
msgid "suggested by %s"
msgstr "vorgeschlagen von %s"
#: ../../mod/notifications.php:158 ../../mod/notifications.php:205
msgid "Post a new friend activity"
msgstr "Neue-Kontakt Nachricht senden"
#: ../../mod/notifications.php:158 ../../mod/notifications.php:205
msgid "if applicable"
msgstr "falls anwendbar"
#: ../../mod/notifications.php:181
msgid "Claims to be known to you: "
msgstr "Behauptet dich zu kennen: "
#: ../../mod/notifications.php:181
msgid "yes"
msgstr "ja"
#: ../../mod/notifications.php:181
msgid "no"
msgstr "nein"
#: ../../mod/notifications.php:188
msgid "Approve as: "
msgstr "Genehmigen als: "
#: ../../mod/notifications.php:189
msgid "Friend"
msgstr "Freund"
#: ../../mod/notifications.php:190
msgid "Sharer"
msgstr "Teilenden"
#: ../../mod/notifications.php:190
msgid "Fan/Admirer"
msgstr "Fan/Verehrer"
#: ../../mod/notifications.php:196
msgid "Friend/Connect Request"
msgstr "Kontakt-/Freundschaftsanfrage"
#: ../../mod/notifications.php:196
msgid "New Follower"
msgstr "Neuer Bewunderer"
#: ../../mod/notifications.php:217
msgid "No introductions."
msgstr "Keine Kontaktanfragen."
#: ../../mod/notifications.php:257 ../../mod/notifications.php:382
#: ../../mod/notifications.php:469
#, php-format
msgid "%s liked %s's post"
msgstr "%s mag %ss Beitrag"
#: ../../mod/notifications.php:266 ../../mod/notifications.php:391
#: ../../mod/notifications.php:478
#, php-format
msgid "%s disliked %s's post"
msgstr "%s mag %ss Beitrag nicht"
#: ../../mod/notifications.php:280 ../../mod/notifications.php:405
#: ../../mod/notifications.php:492
#, php-format
msgid "%s is now friends with %s"
msgstr "%s ist jetzt mit %s befreundet"
#: ../../mod/notifications.php:287 ../../mod/notifications.php:412
#, php-format
msgid "%s created a new post"
msgstr "%s hat einen neuen Beitrag erstellt"
#: ../../mod/notifications.php:288 ../../mod/notifications.php:413
#: ../../mod/notifications.php:501
#, php-format
msgid "%s commented on %s's post"
msgstr "%s hat %ss Beitrag kommentiert"
#: ../../mod/notifications.php:302
msgid "No more network notifications."
msgstr "Keine weiteren Netzwerk-Benachrichtigungen."
#: ../../mod/notifications.php:306
msgid "Network Notifications"
msgstr "Netzwerk Benachrichtigungen"
#: ../../mod/notifications.php:332 ../../mod/notify.php:61
msgid "No more system notifications."
msgstr "Keine weiteren Systembenachrichtigungen."
#: ../../mod/notifications.php:336 ../../mod/notify.php:65
msgid "System Notifications"
msgstr "Systembenachrichtigungen"
#: ../../mod/notifications.php:427
msgid "No more personal notifications."
msgstr "Keine weiteren persönlichen Benachrichtigungen"
#: ../../mod/notifications.php:431
msgid "Personal Notifications"
msgstr "Persönliche Benachrichtigungen"
#: ../../mod/notifications.php:508
msgid "No more home notifications."
msgstr "Keine weiteren Pinnwand-Benachrichtigungen"
#: ../../mod/notifications.php:512
msgid "Home Notifications"
msgstr "Pinnwand Benachrichtigungen"
#: ../../mod/photos.php:51 ../../boot.php:1878
msgid "Photo Albums"
msgstr "Fotoalben"
#: ../../mod/photos.php:59 ../../mod/photos.php:154 ../../mod/photos.php:1058
#: ../../mod/photos.php:1183 ../../mod/photos.php:1206
#: ../../mod/photos.php:1736 ../../mod/photos.php:1748
#: ../../view/theme/diabook/theme.php:492
msgid "Contact Photos"
msgstr "Kontaktbilder"
#: ../../mod/photos.php:66 ../../mod/photos.php:1222 ../../mod/photos.php:1795
msgid "Upload New Photos"
msgstr "Neue Fotos hochladen"
#: ../../mod/photos.php:143
msgid "Contact information unavailable"
msgstr "Kontaktinformationen nicht verfügbar"
#: ../../mod/photos.php:164
msgid "Album not found."
msgstr "Album nicht gefunden."
#: ../../mod/photos.php:187 ../../mod/photos.php:199 ../../mod/photos.php:1200
msgid "Delete Album"
msgstr "Album löschen"
#: ../../mod/photos.php:197
msgid "Do you really want to delete this photo album and all its photos?"
msgstr "Möchtest du wirklich dieses Foto-Album und all seine Foto löschen?"
#: ../../mod/photos.php:276 ../../mod/photos.php:287 ../../mod/photos.php:1502
msgid "Delete Photo"
msgstr "Foto löschen"
#: ../../mod/photos.php:285
msgid "Do you really want to delete this photo?"
msgstr "Möchtest du wirklich dieses Foto löschen?"
#: ../../mod/photos.php:656
#, php-format
msgid "%1$s was tagged in %2$s by %3$s"
msgstr "%1$s wurde von %3$s in %2$s getaggt"
#: ../../mod/photos.php:656
msgid "a photo"
msgstr "einem Foto"
#: ../../mod/photos.php:761
msgid "Image exceeds size limit of "
msgstr "Die Bildgröße übersteigt das Limit von "
#: ../../mod/photos.php:769
msgid "Image file is empty."
msgstr "Bilddatei ist leer."
#: ../../mod/photos.php:924
msgid "No photos selected"
msgstr "Keine Bilder ausgewählt"
#: ../../mod/photos.php:1025
msgid "Access to this item is restricted."
msgstr "Zugriff zu diesem Eintrag wurde eingeschränkt."
#: ../../mod/photos.php:1088
#, php-format
msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."
msgstr "Du verwendest %1$.2f Mbyte von %2$.2f Mbyte des Foto-Speichers."
#: ../../mod/photos.php:1123
msgid "Upload Photos"
msgstr "Bilder hochladen"
#: ../../mod/photos.php:1127 ../../mod/photos.php:1195
msgid "New album name: "
msgstr "Name des neuen Albums: "
#: ../../mod/photos.php:1128
msgid "or existing album name: "
msgstr "oder existierender Albumname: "
#: ../../mod/photos.php:1129
msgid "Do not show a status post for this upload"
msgstr "Keine Status-Mitteilung für diesen Beitrag anzeigen"
#: ../../mod/photos.php:1131 ../../mod/photos.php:1497
msgid "Permissions"
msgstr "Berechtigungen"
#: ../../mod/photos.php:1142
msgid "Private Photo"
msgstr "Privates Foto"
#: ../../mod/photos.php:1143
msgid "Public Photo"
msgstr "Öffentliches Foto"
#: ../../mod/photos.php:1210
msgid "Edit Album"
msgstr "Album bearbeiten"
#: ../../mod/photos.php:1216
msgid "Show Newest First"
msgstr "Zeige neueste zuerst"
#: ../../mod/photos.php:1218
msgid "Show Oldest First"
msgstr "Zeige älteste zuerst"
#: ../../mod/photos.php:1251 ../../mod/photos.php:1778
msgid "View Photo"
msgstr "Foto betrachten"
#: ../../mod/photos.php:1286
msgid "Permission denied. Access to this item may be restricted."
msgstr "Zugriff verweigert. Zugriff zu diesem Eintrag könnte eingeschränkt sein."
#: ../../mod/photos.php:1288
msgid "Photo not available"
msgstr "Foto nicht verfügbar"
#: ../../mod/photos.php:1344
msgid "View photo"
msgstr "Fotos ansehen"
#: ../../mod/photos.php:1344
msgid "Edit photo"
msgstr "Foto bearbeiten"
#: ../../mod/photos.php:1345
msgid "Use as profile photo"
msgstr "Als Profilbild verwenden"
#: ../../mod/photos.php:1351 ../../mod/content.php:643
#: ../../object/Item.php:113
msgid "Private Message"
msgstr "Private Nachricht"
#: ../../mod/photos.php:1370
msgid "View Full Size"
msgstr "Betrachte Originalgröße"
#: ../../mod/photos.php:1444
msgid "Tags: "
msgstr "Tags: "
#: ../../mod/photos.php:1447
msgid "[Remove any tag]"
msgstr "[Tag entfernen]"
#: ../../mod/photos.php:1487
msgid "Rotate CW (right)"
msgstr "Drehen US (rechts)"
#: ../../mod/photos.php:1488
msgid "Rotate CCW (left)"
msgstr "Drehen EUS (links)"
#: ../../mod/photos.php:1490
msgid "New album name"
msgstr "Name des neuen Albums"
#: ../../mod/photos.php:1493
msgid "Caption"
msgstr "Bildunterschrift"
#: ../../mod/photos.php:1495
msgid "Add a Tag"
msgstr "Tag hinzufügen"
#: ../../mod/photos.php:1499
msgid ""
"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
msgstr "Beispiel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
#: ../../mod/photos.php:1508
msgid "Private photo"
msgstr "Privates Foto"
#: ../../mod/photos.php:1509
msgid "Public photo"
msgstr "Öffentliches Foto"
#: ../../mod/photos.php:1529 ../../mod/content.php:707
#: ../../object/Item.php:232
msgid "I like this (toggle)"
msgstr "Ich mag das (toggle)"
#: ../../mod/photos.php:1530 ../../mod/content.php:708
#: ../../object/Item.php:233
msgid "I don't like this (toggle)"
msgstr "Ich mag das nicht (toggle)"
#: ../../mod/photos.php:1549 ../../mod/photos.php:1593
#: ../../mod/photos.php:1676 ../../mod/content.php:730
#: ../../object/Item.php:650
msgid "This is you"
msgstr "Das bist du"
#: ../../mod/photos.php:1551 ../../mod/photos.php:1595
#: ../../mod/photos.php:1678 ../../mod/content.php:732
#: ../../object/Item.php:338 ../../object/Item.php:652 ../../boot.php:651
msgid "Comment"
msgstr "Kommentar"
#: ../../mod/photos.php:1784
msgid "View Album"
msgstr "Album betrachten"
#: ../../mod/photos.php:1793
msgid "Recent Photos"
msgstr "Neueste Fotos"
#: ../../mod/newmember.php:6
msgid "Welcome to Friendica"
msgstr "Willkommen bei Friendica"
#: ../../mod/newmember.php:8
msgid "New Member Checklist"
msgstr "Checkliste für neue Mitglieder"
#: ../../mod/newmember.php:12
msgid ""
"We would like to offer some tips and links to help make your experience "
"enjoyable. Click any item to visit the relevant page. A link to this page "
"will be visible from your home page for two weeks after your initial "
"registration and then will quietly disappear."
msgstr "Wir möchten dir einige Tipps und Links anbieten, die dir helfen könnten, den Einstieg angenehmer zu machen. Klicke auf ein Element, um die entsprechende Seite zu besuchen. Ein Link zu dieser Seite hier bleibt für dich an Deiner Pinnwand für zwei Wochen nach dem Registrierungsdatum sichtbar und wird dann verschwinden."
#: ../../mod/newmember.php:14
msgid "Getting Started"
msgstr "Einstieg"
#: ../../mod/newmember.php:18
msgid "Friendica Walk-Through"
msgstr "Friendica Rundgang"
#: ../../mod/newmember.php:18
msgid ""
"On your <em>Quick Start</em> page - find a brief introduction to your "
"profile and network tabs, make some new connections, and find some groups to"
" join."
msgstr "Auf der <em>Quick Start</em> Seite findest du eine kurze Einleitung in die einzelnen Funktionen deines Profils und die Netzwerk-Reiter, wo du interessante Foren findest und neue Kontakte knüpfst."
#: ../../mod/newmember.php:26
msgid "Go to Your Settings"
msgstr "Gehe zu deinen Einstellungen"
#: ../../mod/newmember.php:26
msgid ""
"On your <em>Settings</em> page - change your initial password. Also make a "
"note of your Identity Address. This looks just like an email address - and "
"will be useful in making friends on the free social web."
msgstr "Ändere bitte unter <em>Einstellungen</em> dein Passwort. Außerdem merke dir deine Identifikationsadresse. Diese sieht aus wie eine E-Mail-Adresse und wird benötigt, um Freundschaften mit anderen im Friendica Netzwerk zu schliessen."
#: ../../mod/newmember.php:28
msgid ""
"Review the other settings, particularly the privacy settings. An unpublished"
" directory listing is like having an unlisted phone number. In general, you "
"should probably publish your listing - unless all of your friends and "
"potential friends know exactly how to find you."
msgstr "Überprüfe die restlichen Einstellungen, insbesondere die Einstellungen zur Privatsphäre. Wenn du dein Profil nicht veröffentlichst, ist das als wenn du deine Telefonnummer nicht ins Telefonbuch einträgst. Im Allgemeinen solltest du es veröffentlichen - außer all deine Freunde und potentiellen Freunde wissen genau, wie sie dich finden können."
#: ../../mod/newmember.php:36 ../../mod/profile_photo.php:244
msgid "Upload Profile Photo"
msgstr "Profilbild hochladen"
#: ../../mod/newmember.php:36
msgid ""
"Upload a profile photo if you have not done so already. Studies have shown "
"that people with real photos of themselves are ten times more likely to make"
" friends than people who do not."
msgstr "Lade ein Profilbild hoch falls du es noch nicht getan hast. Studien haben gezeigt, dass es zehnmal wahrscheinlicher ist neue Freunde zu finden, wenn du ein Bild von dir selbst verwendest, als wenn du dies nicht tust."
#: ../../mod/newmember.php:38
msgid "Edit Your Profile"
msgstr "Editiere dein Profil"
#: ../../mod/newmember.php:38
msgid ""
"Edit your <strong>default</strong> profile to your liking. Review the "
"settings for hiding your list of friends and hiding the profile from unknown"
" visitors."
msgstr "Editiere dein <strong>Standard</strong> Profil nach deinen Vorlieben. Überprüfe die Einstellungen zum Verbergen deiner Freundesliste vor unbekannten Betrachtern des Profils."
#: ../../mod/newmember.php:40
msgid "Profile Keywords"
msgstr "Profil Schlüsselbegriffe"
#: ../../mod/newmember.php:40
msgid ""
"Set some public keywords for your default profile which describe your "
"interests. We may be able to find other people with similar interests and "
"suggest friendships."
msgstr "Trage ein paar öffentliche Stichwörter in dein Standardprofil ein, die deine Interessen beschreiben. Eventuell sind wir in der Lage Leute zu finden, die deine Interessen teilen und können dir dann Kontakte vorschlagen."
#: ../../mod/newmember.php:44
msgid "Connecting"
msgstr "Verbindungen knüpfen"
#: ../../mod/newmember.php:49
msgid ""
"Authorise the Facebook Connector if you currently have a Facebook account "
"and we will (optionally) import all your Facebook friends and conversations."
msgstr "Richte die Verbindung zu Facebook ein, wenn du im Augenblick ein Facebook-Konto hast, und (optional) deine Facebook-Freunde und -Unterhaltungen importieren willst."
#: ../../mod/newmember.php:51
msgid ""
"<em>If</em> this is your own personal server, installing the Facebook addon "
"may ease your transition to the free social web."
msgstr "<em>Wenn</em> dies dein privater Server ist, könnte die Installation des Facebook Connectors deinen Umzug ins freie soziale Netz angenehmer gestalten."
#: ../../mod/newmember.php:56
msgid "Importing Emails"
msgstr "Emails Importieren"
#: ../../mod/newmember.php:56
msgid ""
"Enter your email access information on your Connector Settings page if you "
"wish to import and interact with friends or mailing lists from your email "
"INBOX"
msgstr "Gib deine E-Mail-Zugangsinformationen auf der Connector-Einstellungsseite ein, falls du E-Mails aus deinem Posteingang importieren und mit Freunden und Mailinglisten interagieren willlst."
#: ../../mod/newmember.php:58
msgid "Go to Your Contacts Page"
msgstr "Gehe zu deiner Kontakt-Seite"
#: ../../mod/newmember.php:58
msgid ""
"Your Contacts page is your gateway to managing friendships and connecting "
"with friends on other networks. Typically you enter their address or site "
"URL in the <em>Add New Contact</em> dialog."
msgstr "Die Kontakte-Seite ist die Einstiegsseite, von der aus du Kontakte verwalten und dich mit Freunden in anderen Netzwerken verbinden kannst. Normalerweise gibst du dazu einfach ihre Adresse oder die URL der Seite im Kasten <em>Neuen Kontakt hinzufügen</em> ein."
#: ../../mod/newmember.php:60
msgid "Go to Your Site's Directory"
msgstr "Gehe zum Verzeichnis deiner Friendica Instanz"
#: ../../mod/newmember.php:60
msgid ""
"The Directory page lets you find other people in this network or other "
"federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on "
"their profile page. Provide your own Identity Address if requested."
msgstr "Über die Verzeichnisseite kannst du andere Personen auf diesem Server oder anderen verknüpften Seiten finden. Halte nach einem <em>Verbinden</em> oder <em>Folgen</em> Link auf deren Profilseiten Ausschau und gib deine eigene Profiladresse an, falls du danach gefragt wirst."
#: ../../mod/newmember.php:62
msgid "Finding New People"
msgstr "Neue Leute kennenlernen"
#: ../../mod/newmember.php:62
msgid ""
"On the side panel of the Contacts page are several tools to find new "
"friends. We can match people by interest, look up people by name or "
"interest, and provide suggestions based on network relationships. On a brand"
" new site, friend suggestions will usually begin to be populated within 24 "
"hours."
msgstr "Im seitlichen Bedienfeld der Kontakteseite gibt es diverse Werkzeuge, um neue Freunde zu finden. Wir können Menschen mit den gleichen Interessen finden, anhand von Namen oder Interessen suchen oder aber aufgrund vorhandener Kontakte neue Freunde vorschlagen.\nAuf einer brandneuen - soeben erstellten - Seite starten die Kontaktvorschläge innerhalb von 24 Stunden."
#: ../../mod/newmember.php:70
msgid "Group Your Contacts"
msgstr "Gruppiere deine Kontakte"
#: ../../mod/newmember.php:70
msgid ""
"Once you have made some friends, organize them into private conversation "
"groups from the sidebar of your Contacts page and then you can interact with"
" each group privately on your Network page."
msgstr "Sobald du einige Freunde gefunden hast, organisiere sie in Gruppen zur privaten Kommunikation im Seitenmenü der Kontakte-Seite. Du kannst dann mit jeder dieser Gruppen von der Netzwerkseite aus privat interagieren."
#: ../../mod/newmember.php:73
msgid "Why Aren't My Posts Public?"
msgstr "Warum sind meine Beiträge nicht öffentlich?"
#: ../../mod/newmember.php:73
msgid ""
"Friendica respects your privacy. By default, your posts will only show up to"
" people you've added as friends. For more information, see the help section "
"from the link above."
msgstr "Friendica respektiert deine Privatsphäre. Mit der Grundeinstellung werden deine Beiträge ausschließlich deinen Kontakten angezeigt. Für weitere Informationen diesbezüglich lies dir bitte den entsprechenden Abschnitt in der Hilfe unter dem obigen Link durch."
#: ../../mod/newmember.php:78
msgid "Getting Help"
msgstr "Hilfe bekommen"
#: ../../mod/newmember.php:82
msgid "Go to the Help Section"
msgstr "Zum Hilfe Abschnitt gehen"
#: ../../mod/newmember.php:82
msgid ""
"Our <strong>help</strong> pages may be consulted for detail on other program"
" features and resources."
msgstr "Unsere <strong>Hilfe</strong> Seiten können herangezogen werden, um weitere Einzelheiten zu andern Programm Features zu erhalten."
#: ../../mod/profile.php:21 ../../boot.php:1246
msgid "Requested profile is not available."
msgstr "Das angefragte Profil ist nicht vorhanden."
#: ../../mod/profile.php:155 ../../mod/display.php:99
msgid "Access to this profile has been restricted."
msgstr "Der Zugriff zu diesem Profil wurde eingeschränkt."
#: ../../mod/profile.php:180
msgid "Tips for New Members"
msgstr "Tipps für neue Nutzer"
#: ../../mod/display.php:206
msgid "Item has been removed."
msgstr "Eintrag wurde entfernt."
#: ../../mod/install.php:117
msgid "Friendica Social Communications Server - Setup"
msgstr "Friendica-Server für soziale Netzwerke Setup"
#: ../../mod/install.php:123
msgid "Could not connect to database."
msgstr "Verbindung zur Datenbank gescheitert"
#: ../../mod/install.php:127
msgid "Could not create table."
msgstr "Konnte Tabelle nicht erstellen."
#: ../../mod/install.php:133
msgid "Your Friendica site database has been installed."
msgstr "Die Datenbank deiner Friendicaseite wurde installiert."
#: ../../mod/install.php:138
msgid ""
"You may need to import the file \"database.sql\" manually using phpmyadmin "
"or mysql."
msgstr "Möglicherweise musst du die Datei \"database.sql\" manuell mit phpmyadmin oder mysql importieren."
#: ../../mod/install.php:139 ../../mod/install.php:206
#: ../../mod/install.php:521
msgid "Please see the file \"INSTALL.txt\"."
msgstr "Lies bitte die \"INSTALL.txt\"."
#: ../../mod/install.php:203
msgid "System check"
msgstr "Systemtest"
#: ../../mod/install.php:208
msgid "Check again"
msgstr "Noch einmal testen"
#: ../../mod/install.php:227
msgid "Database connection"
msgstr "Datenbankverbindung"
#: ../../mod/install.php:228
msgid ""
"In order to install Friendica we need to know how to connect to your "
"database."
msgstr "Um Friendica installieren zu können, müssen wir wissen, wie wir zu deiner Datenbank Kontakt aufnehmen können."
#: ../../mod/install.php:229
msgid ""
"Please contact your hosting provider or site administrator if you have "
"questions about these settings."
msgstr "Bitte kontaktiere den Hosting Provider oder den Administrator der Seite, falls du Fragen zu diesen Einstellungen haben solltest."
#: ../../mod/install.php:230
msgid ""
"The database you specify below should already exist. If it does not, please "
"create it before continuing."
msgstr "Die Datenbank, die du unten angibst, sollte bereits existieren. Ist dies noch nicht der Fall, erzeuge sie bitte bevor du mit der Installation fortfährst."
#: ../../mod/install.php:234
msgid "Database Server Name"
msgstr "Datenbank-Server"
#: ../../mod/install.php:235
msgid "Database Login Name"
msgstr "Datenbank-Nutzer"
#: ../../mod/install.php:236
msgid "Database Login Password"
msgstr "Datenbank-Passwort"
#: ../../mod/install.php:237
msgid "Database Name"
msgstr "Datenbank-Name"
#: ../../mod/install.php:238 ../../mod/install.php:277
msgid "Site administrator email address"
msgstr "E-Mail-Adresse des Administrators"
#: ../../mod/install.php:238 ../../mod/install.php:277
msgid ""
"Your account email address must match this in order to use the web admin "
"panel."
msgstr "Die E-Mail-Adresse, die in deinem Friendica-Account eingetragen ist, muss mit dieser Adresse übereinstimmen, damit du das Admin-Panel benutzen kannst."
#: ../../mod/install.php:242 ../../mod/install.php:280
msgid "Please select a default timezone for your website"
msgstr "Bitte wähle die Standardzeitzone deiner Webseite"
#: ../../mod/install.php:267
msgid "Site settings"
msgstr "Server-Einstellungen"
#: ../../mod/install.php:321
msgid "Could not find a command line version of PHP in the web server PATH."
msgstr "Konnte keine Kommandozeilenversion von PHP im PATH des Servers finden."
#: ../../mod/install.php:322
msgid ""
"If you don't have a command line version of PHP installed on server, you "
"will not be able to run background polling via cron. See <a "
"href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>"
msgstr "Wenn du keine Kommandozeilen Version von PHP auf deinem Server installiert hast, kannst du keine Hintergrundprozesse via cron starten. Siehe <a href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>"
#: ../../mod/install.php:326
msgid "PHP executable path"
msgstr "Pfad zu PHP"
#: ../../mod/install.php:326
msgid ""
"Enter full path to php executable. You can leave this blank to continue the "
"installation."
msgstr "Gib den kompletten Pfad zur ausführbaren Datei von PHP an. Du kannst dieses Feld auch frei lassen und mit der Installation fortfahren."
#: ../../mod/install.php:331
msgid "Command line PHP"
msgstr "Kommandozeilen-PHP"
#: ../../mod/install.php:340
msgid "PHP executable is not the php cli binary (could be cgi-fgci version)"
msgstr "Die ausführbare Datei von PHP stimmt nicht mit der PHP cli Version überein (es könnte sich um die cgi-fgci Version handeln)"
#: ../../mod/install.php:341
msgid "Found PHP version: "
msgstr "Gefundene PHP Version:"
#: ../../mod/install.php:343
msgid "PHP cli binary"
msgstr "PHP CLI Binary"
#: ../../mod/install.php:354
msgid ""
"The command line version of PHP on your system does not have "
"\"register_argc_argv\" enabled."
msgstr "Die Kommandozeilenversion von PHP auf deinem System hat \"register_argc_argv\" nicht aktiviert."
#: ../../mod/install.php:355
msgid "This is required for message delivery to work."
msgstr "Dies wird für die Auslieferung von Nachrichten benötigt."
#: ../../mod/install.php:357
msgid "PHP register_argc_argv"
msgstr "PHP register_argc_argv"
#: ../../mod/install.php:378
msgid ""
"Error: the \"openssl_pkey_new\" function on this system is not able to "
"generate encryption keys"
msgstr "Fehler: Die Funktion \"openssl_pkey_new\" auf diesem System ist nicht in der Lage, Verschlüsselungsschlüssel zu erzeugen"
#: ../../mod/install.php:379
msgid ""
"If running under Windows, please see "
"\"http://www.php.net/manual/en/openssl.installation.php\"."
msgstr "Wenn der Server unter Windows läuft, schau dir bitte \"http://www.php.net/manual/en/openssl.installation.php\" an."
#: ../../mod/install.php:381
msgid "Generate encryption keys"
msgstr "Schlüssel erzeugen"
#: ../../mod/install.php:388
msgid "libCurl PHP module"
msgstr "PHP: libCurl-Modul"
#: ../../mod/install.php:389
msgid "GD graphics PHP module"
msgstr "PHP: GD-Grafikmodul"
#: ../../mod/install.php:390
msgid "OpenSSL PHP module"
msgstr "PHP: OpenSSL-Modul"
#: ../../mod/install.php:391
msgid "mysqli PHP module"
msgstr "PHP: mysqli-Modul"
#: ../../mod/install.php:392
msgid "mb_string PHP module"
msgstr "PHP: mb_string-Modul"
#: ../../mod/install.php:397 ../../mod/install.php:399
msgid "Apache mod_rewrite module"
msgstr "Apache mod_rewrite module"
#: ../../mod/install.php:397
msgid ""
"Error: Apache webserver mod-rewrite module is required but not installed."
msgstr "Fehler: Das Apache-Modul mod-rewrite wird benötigt, es ist allerdings nicht installiert."
#: ../../mod/install.php:405
msgid "Error: libCURL PHP module required but not installed."
msgstr "Fehler: Das libCURL PHP Modul wird benötigt, ist aber nicht installiert."
#: ../../mod/install.php:409
msgid ""
"Error: GD graphics PHP module with JPEG support required but not installed."
msgstr "Fehler: Das GD-Graphikmodul für PHP mit JPEG-Unterstützung ist nicht installiert."
#: ../../mod/install.php:413
msgid "Error: openssl PHP module required but not installed."
msgstr "Fehler: Das openssl-Modul von PHP ist nicht installiert."
#: ../../mod/install.php:417
msgid "Error: mysqli PHP module required but not installed."
msgstr "Fehler: Das mysqli-Modul von PHP ist nicht installiert."
#: ../../mod/install.php:421
msgid "Error: mb_string PHP module required but not installed."
msgstr "Fehler: mb_string PHP Module wird benötigt ist aber nicht installiert."
#: ../../mod/install.php:438
msgid ""
"The web installer needs to be able to create a file called \".htconfig.php\""
" in the top folder of your web server and it is unable to do so."
msgstr "Der Installationswizard muss in der Lage sein, eine Datei im Stammverzeichnis deines Webservers anzulegen, ist allerdings derzeit nicht in der Lage, dies zu tun."
#: ../../mod/install.php:439
msgid ""
"This is most often a permission setting, as the web server may not be able "
"to write files in your folder - even if you can."
msgstr "In den meisten Fällen ist dies ein Problem mit den Schreibrechten. Der Webserver könnte keine Schreiberlaubnis haben, selbst wenn du sie hast."
#: ../../mod/install.php:440
msgid ""
"At the end of this procedure, we will give you a text to save in a file "
"named .htconfig.php in your Friendica top folder."
msgstr "Nachdem du alles ausgefüllt hast, erhältst du einen Text, den du in eine Datei namens .htconfig.php in deinem Friendica-Wurzelverzeichnis kopieren musst."
#: ../../mod/install.php:441
msgid ""
"You can alternatively skip this procedure and perform a manual installation."
" Please see the file \"INSTALL.txt\" for instructions."
msgstr "Alternativ kannst du diesen Schritt aber auch überspringen und die Installation manuell durchführen. Eine Anleitung dazu (Englisch) findest du in der Datei INSTALL.txt."
#: ../../mod/install.php:444
msgid ".htconfig.php is writable"
msgstr "Schreibrechte auf .htconfig.php"
#: ../../mod/install.php:454
msgid ""
"Friendica uses the Smarty3 template engine to render its web views. Smarty3 "
"compiles templates to PHP to speed up rendering."
msgstr "Friendica nutzt die Smarty3 Template Engine um die Webansichten zu rendern. Smarty3 kompiliert Templates zu PHP um das Rendern zu beschleunigen."
#: ../../mod/install.php:455
msgid ""
"In order to store these compiled templates, the web server needs to have "
"write access to the directory view/smarty3/ under the Friendica top level "
"folder."
msgstr "Um diese kompilierten Templates zu speichern benötigt der Webserver Schreibrechte zum Verzeichnis view/smarty3/ im obersten Ordner von Friendica."
#: ../../mod/install.php:456
msgid ""
"Please ensure that the user that your web server runs as (e.g. www-data) has"
" write access to this folder."
msgstr "Bitte stelle sicher, dass der Nutzer unter dem der Webserver läuft (z.B. www-data) Schreibrechte zu diesem Verzeichnis hat."
#: ../../mod/install.php:457
msgid ""
"Note: as a security measure, you should give the web server write access to "
"view/smarty3/ only--not the template files (.tpl) that it contains."
msgstr "Hinweis: aus Sicherheitsgründen solltest du dem Webserver nur Schreibrechte für view/smarty3/ geben -- Nicht den Templatedateien (.tpl) die sie enthalten."
#: ../../mod/install.php:460
msgid "view/smarty3 is writable"
msgstr "view/smarty3 ist schreibbar"
#: ../../mod/install.php:472
msgid ""
"Url rewrite in .htaccess is not working. Check your server configuration."
msgstr "Umschreiben der URLs in der .htaccess funktioniert nicht. Überprüfe die Konfiguration des Servers."
#: ../../mod/install.php:474
msgid "Url rewrite is working"
msgstr "URL rewrite funktioniert"
#: ../../mod/install.php:484
msgid ""
"The database configuration file \".htconfig.php\" could not be written. "
"Please use the enclosed text to create a configuration file in your web "
"server root."
msgstr "Die Konfigurationsdatei \".htconfig.php\" konnte nicht angelegt werden. Bitte verwende den angefügten Text, um die Datei im Stammverzeichnis deiner Friendica-Installation zu erzeugen."
#: ../../mod/install.php:508
msgid "Errors encountered creating database tables."
msgstr "Fehler aufgetreten während der Erzeugung der Datenbanktabellen."
#: ../../mod/install.php:519
msgid "<h1>What next</h1>"
msgstr "<h1>Wie geht es weiter?</h1>"
#: ../../mod/install.php:520
msgid ""
"IMPORTANT: You will need to [manually] setup a scheduled task for the "
"poller."
msgstr "WICHTIG: Du musst [manuell] einen Cronjob (o.ä.) für den Poller einrichten."
#: ../../mod/oexchange.php:25
msgid "Post successful."
msgstr "Beitrag erfolgreich veröffentlicht."
#: ../../mod/openid.php:24
msgid "OpenID protocol error. No ID returned."
msgstr "OpenID Protokollfehler. Keine ID zurückgegeben."
#: ../../mod/openid.php:53
msgid ""
"Account not found and OpenID registration is not permitted on this site."
msgstr "Nutzerkonto wurde nicht gefunden, und OpenID-Registrierung ist auf diesem Server nicht gestattet."
#: ../../mod/profile_photo.php:44
msgid "Image uploaded but image cropping failed."
msgstr "Bilder hochgeladen, aber das Zuschneiden ist fehlgeschlagen."
#: ../../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 "Verkleinern der Bildgröße von [%s] ist gescheitert."
#: ../../mod/profile_photo.php:118
msgid ""
"Shift-reload the page or clear browser cache if the new photo does not "
"display immediately."
msgstr "Drücke Umschalt+Neu Laden oder leere den Browser-Cache, falls das neue Foto nicht gleich angezeigt wird."
#: ../../mod/profile_photo.php:128
msgid "Unable to process image"
msgstr "Bild konnte nicht verarbeitet werden"
#: ../../mod/profile_photo.php:242
msgid "Upload File:"
msgstr "Datei hochladen:"
#: ../../mod/profile_photo.php:243
msgid "Select a profile:"
msgstr "Profil auswählen"
#: ../../mod/profile_photo.php:245
msgid "Upload"
msgstr "Hochladen"
#: ../../mod/profile_photo.php:248
msgid "skip this step"
msgstr "diesen Schritt überspringen"
#: ../../mod/profile_photo.php:248
msgid "select a photo from your photo albums"
msgstr "wähle ein Foto von deinen Fotoalben"
#: ../../mod/profile_photo.php:262
msgid "Crop Image"
msgstr "Bild zurechtschneiden"
#: ../../mod/profile_photo.php:263
msgid "Please adjust the image cropping for optimum viewing."
msgstr "Passe bitte den Bildausschnitt an, damit das Bild optimal dargestellt werden kann."
#: ../../mod/profile_photo.php:265
msgid "Done Editing"
msgstr "Bearbeitung abgeschlossen"
#: ../../mod/profile_photo.php:299
msgid "Image uploaded successfully."
msgstr "Bild erfolgreich auf den Server geladen."
#: ../../mod/community.php:23
msgid "Not available."
msgstr "Nicht verfügbar."
#: ../../mod/content.php:626 ../../object/Item.php:362
#, php-format
msgid "%d comment"
msgid_plural "%d comments"
msgstr[0] "%d Kommentar"
msgstr[1] "%d Kommentare"
#: ../../mod/content.php:707 ../../object/Item.php:232
msgid "like"
msgstr "mag ich"
#: ../../mod/content.php:708 ../../object/Item.php:233
msgid "dislike"
msgstr "mag ich nicht"
#: ../../mod/content.php:710 ../../object/Item.php:235
msgid "Share this"
msgstr "Weitersagen"
#: ../../mod/content.php:710 ../../object/Item.php:235
msgid "share"
msgstr "Teilen"
#: ../../mod/content.php:734 ../../object/Item.php:654
msgid "Bold"
msgstr "Fett"
#: ../../mod/content.php:735 ../../object/Item.php:655
msgid "Italic"
msgstr "Kursiv"
#: ../../mod/content.php:736 ../../object/Item.php:656
msgid "Underline"
msgstr "Unterstrichen"
#: ../../mod/content.php:737 ../../object/Item.php:657
msgid "Quote"
msgstr "Zitat"
#: ../../mod/content.php:738 ../../object/Item.php:658
msgid "Code"
msgstr "Code"
#: ../../mod/content.php:739 ../../object/Item.php:659
msgid "Image"
msgstr "Bild"
#: ../../mod/content.php:740 ../../object/Item.php:660
msgid "Link"
msgstr "Verweis"
#: ../../mod/content.php:741 ../../object/Item.php:661
msgid "Video"
msgstr "Video"
#: ../../mod/content.php:776 ../../object/Item.php:211
msgid "add star"
msgstr "markieren"
#: ../../mod/content.php:777 ../../object/Item.php:212
msgid "remove star"
msgstr "Markierung entfernen"
#: ../../mod/content.php:778 ../../object/Item.php:213
msgid "toggle star status"
msgstr "Markierung umschalten"
#: ../../mod/content.php:781 ../../object/Item.php:216
msgid "starred"
msgstr "markiert"
#: ../../mod/content.php:782 ../../object/Item.php:221
msgid "add tag"
msgstr "Tag hinzufügen"
#: ../../mod/content.php:786 ../../object/Item.php:130
msgid "save to folder"
msgstr "In Ordner speichern"
#: ../../mod/content.php:877 ../../object/Item.php:308
msgid "to"
msgstr "zu"
#: ../../mod/content.php:878 ../../object/Item.php:310
msgid "Wall-to-Wall"
msgstr "Wall-to-Wall"
#: ../../mod/content.php:879 ../../object/Item.php:311
msgid "via Wall-To-Wall:"
msgstr "via Wall-To-Wall:"
#: ../../object/Item.php:92
msgid "This entry was edited"
msgstr "Dieser Beitrag wurde bearbeitet."
#: ../../object/Item.php:309
msgid "via"
msgstr "via"
#: ../../view/theme/cleanzero/config.php:82
#: ../../view/theme/diabook/config.php:154
#: ../../view/theme/dispy/config.php:72 ../../view/theme/quattro/config.php:66
msgid "Theme settings"
msgstr "Themeneinstellungen"
#: ../../view/theme/cleanzero/config.php:83
msgid "Set resize level for images in posts and comments (width and height)"
msgstr "Wähle das Vergrößerungsmaß für Bilder in Beiträgen und Kommentaren (Höhe und Breite)"
#: ../../view/theme/cleanzero/config.php:84
#: ../../view/theme/diabook/config.php:155
#: ../../view/theme/dispy/config.php:73
msgid "Set font-size for posts and comments"
msgstr "Schriftgröße für Beiträge und Kommentare festlegen"
#: ../../view/theme/cleanzero/config.php:85
msgid "Set theme width"
msgstr "Theme Breite festlegen"
#: ../../view/theme/cleanzero/config.php:86
#: ../../view/theme/quattro/config.php:68
msgid "Color scheme"
msgstr "Farbschema"
#: ../../view/theme/diabook/config.php:156
#: ../../view/theme/dispy/config.php:74
msgid "Set line-height for posts and comments"
msgstr "Liniengröße für Beiträge und Kommantare festlegen"
#: ../../view/theme/diabook/config.php:157
msgid "Set resolution for middle column"
msgstr "Auflösung für die Mittelspalte setzen"
#: ../../view/theme/diabook/config.php:158
msgid "Set color scheme"
msgstr "Wähle Farbschema"
#: ../../view/theme/diabook/config.php:159
#: ../../view/theme/diabook/theme.php:609
msgid "Set twitter search term"
msgstr "Twitter Suchbegriff"
#: ../../view/theme/diabook/config.php:160
msgid "Set zoomfactor for Earth Layer"
msgstr "Zoomfaktor der Earth Layer"
#: ../../view/theme/diabook/config.php:161
#: ../../view/theme/diabook/theme.php:578
msgid "Set longitude (X) for Earth Layers"
msgstr "Longitude (X) der Earth Layer"
#: ../../view/theme/diabook/config.php:162
#: ../../view/theme/diabook/theme.php:579
msgid "Set latitude (Y) for Earth Layers"
msgstr "Latitude (Y) der Earth Layer"
#: ../../view/theme/diabook/config.php:163
#: ../../view/theme/diabook/theme.php:94
#: ../../view/theme/diabook/theme.php:537
#: ../../view/theme/diabook/theme.php:632
msgid "Community Pages"
msgstr "Foren"
#: ../../view/theme/diabook/config.php:164
#: ../../view/theme/diabook/theme.php:572
#: ../../view/theme/diabook/theme.php:633
msgid "Earth Layers"
msgstr "Earth Layers"
#: ../../view/theme/diabook/config.php:165
#: ../../view/theme/diabook/theme.php:384
#: ../../view/theme/diabook/theme.php:634
msgid "Community Profiles"
msgstr "Community-Profile"
#: ../../view/theme/diabook/config.php:166
#: ../../view/theme/diabook/theme.php:592
#: ../../view/theme/diabook/theme.php:635
msgid "Help or @NewHere ?"
msgstr "Hilfe oder @NewHere"
#: ../../view/theme/diabook/config.php:167
#: ../../view/theme/diabook/theme.php:599
#: ../../view/theme/diabook/theme.php:636
msgid "Connect Services"
msgstr "Verbinde Dienste"
#: ../../view/theme/diabook/config.php:168
#: ../../view/theme/diabook/theme.php:516
#: ../../view/theme/diabook/theme.php:637
msgid "Find Friends"
msgstr "Freunde finden"
#: ../../view/theme/diabook/config.php:169
msgid "Last tweets"
msgstr "Neueste Tweets"
#: ../../view/theme/diabook/config.php:170
#: ../../view/theme/diabook/theme.php:405
#: ../../view/theme/diabook/theme.php:639
msgid "Last users"
msgstr "Letzte Nutzer"
#: ../../view/theme/diabook/config.php:171
#: ../../view/theme/diabook/theme.php:479
#: ../../view/theme/diabook/theme.php:640
msgid "Last photos"
msgstr "Letzte Fotos"
#: ../../view/theme/diabook/config.php:172
#: ../../view/theme/diabook/theme.php:434
#: ../../view/theme/diabook/theme.php:641
msgid "Last likes"
msgstr "Zuletzt gemocht"
#: ../../view/theme/diabook/theme.php:89
msgid "Your contacts"
msgstr "Deine Kontakte"
#: ../../view/theme/diabook/theme.php:517
msgid "Local Directory"
msgstr "Lokales Verzeichnis"
#: ../../view/theme/diabook/theme.php:577
msgid "Set zoomfactor for Earth Layers"
msgstr "Zoomfaktor der Earth Layer"
#: ../../view/theme/diabook/theme.php:606
#: ../../view/theme/diabook/theme.php:638
msgid "Last Tweets"
msgstr "Neueste Tweets"
#: ../../view/theme/diabook/theme.php:630
msgid "Show/hide boxes at right-hand column:"
msgstr "Rahmen auf der rechten Seite anzeigen/verbergen"
#: ../../view/theme/dispy/config.php:75
msgid "Set colour scheme"
msgstr "Farbschema wählen"
#: ../../view/theme/quattro/config.php:67
msgid "Alignment"
msgstr "Ausrichtung"
#: ../../view/theme/quattro/config.php:67
msgid "Left"
msgstr "Links"
#: ../../view/theme/quattro/config.php:67
msgid "Center"
msgstr "Mitte"
#: ../../view/theme/quattro/config.php:69
msgid "Posts font size"
msgstr "Schriftgröße in Beiträgen"
#: ../../view/theme/quattro/config.php:70
msgid "Textareas font size"
msgstr "Schriftgröße in Eingabefeldern"
#: ../../boot.php:650
msgid "Delete this item?"
msgstr "Diesen Beitrag löschen?"
#: ../../boot.php:653
msgid "show fewer"
msgstr "weniger anzeigen"
#: ../../boot.php:920
#, php-format
msgid "Update %s failed. See error logs."
msgstr "Update %s fehlgeschlagen. Bitte Fehlerprotokoll überprüfen."
#: ../../boot.php:922
#, php-format
msgid "Update Error at %s"
msgstr "Updatefehler bei %s"
#: ../../boot.php:1032
msgid "Create a New Account"
msgstr "Neues Konto erstellen"
#: ../../boot.php:1060
msgid "Nickname or Email address: "
msgstr "Spitzname oder E-Mail-Adresse: "
#: ../../boot.php:1061
msgid "Password: "
msgstr "Passwort: "
#: ../../boot.php:1062
msgid "Remember me"
msgstr "Anmeldedaten merken"
#: ../../boot.php:1065
msgid "Or login using OpenID: "
msgstr "Oder melde dich mit deiner OpenID an: "
#: ../../boot.php:1071
msgid "Forgot your password?"
msgstr "Passwort vergessen?"
#: ../../boot.php:1074
msgid "Website Terms of Service"
msgstr "Website Nutzungsbedingungen"
#: ../../boot.php:1075
msgid "terms of service"
msgstr "Nutzungsbedingungen"
#: ../../boot.php:1077
msgid "Website Privacy Policy"
msgstr "Website Datenschutzerklärung"
#: ../../boot.php:1078
msgid "privacy policy"
msgstr "Datenschutzerklärung"
#: ../../boot.php:1207
msgid "Requested account is not available."
msgstr "Das angefragte Profil ist nicht vorhanden."
#: ../../boot.php:1286 ../../boot.php:1390
msgid "Edit profile"
msgstr "Profil bearbeiten"
#: ../../boot.php:1352
msgid "Message"
msgstr "Nachricht"
#: ../../boot.php:1360
msgid "Manage/edit profiles"
msgstr "Profile verwalten/editieren"
#: ../../boot.php:1489 ../../boot.php:1575
msgid "g A l F d"
msgstr "l, d. F G \\U\\h\\r"
#: ../../boot.php:1490 ../../boot.php:1576
msgid "F d"
msgstr "d. F"
#: ../../boot.php:1535 ../../boot.php:1616
msgid "[today]"
msgstr "[heute]"
#: ../../boot.php:1547
msgid "Birthday Reminders"
msgstr "Geburtstagserinnerungen"
#: ../../boot.php:1548
msgid "Birthdays this week:"
msgstr "Geburtstage diese Woche:"
#: ../../boot.php:1609
msgid "[No description]"
msgstr "[keine Beschreibung]"
#: ../../boot.php:1627
msgid "Event Reminders"
msgstr "Veranstaltungserinnerungen"
#: ../../boot.php:1628
msgid "Events this week:"
msgstr "Veranstaltungen diese Woche"
#: ../../boot.php:1864
msgid "Status Messages and Posts"
msgstr "Statusnachrichten und Beiträge"
#: ../../boot.php:1871
msgid "Profile Details"
msgstr "Profildetails"
#: ../../boot.php:1888
msgid "Events and Calendar"
msgstr "Ereignisse und Kalender"
#: ../../boot.php:1895
msgid "Only You Can See This"
msgstr "Nur du kannst das sehen"
#: ../../index.php:405
msgid "toggle mobile"
msgstr "auf/von Mobile Ansicht wechseln"

View file

@ -5,62 +5,947 @@ function string_plural_select_de($n){
return ($n != 1);;
}}
;
$a->strings["Private Message"] = "Private Nachricht";
$a->strings["Edit"] = "Bearbeiten";
$a->strings["Select"] = "Auswählen";
$a->strings["Delete"] = "Löschen";
$a->strings["save to folder"] = "In Ordner speichern";
$a->strings["add star"] = "markieren";
$a->strings["remove star"] = "Markierung entfernen";
$a->strings["toggle star status"] = "Markierung umschalten";
$a->strings["starred"] = "markiert";
$a->strings["add tag"] = "Tag hinzufügen";
$a->strings["I like this (toggle)"] = "Ich mag das (toggle)";
$a->strings["like"] = "mag ich";
$a->strings["I don't like this (toggle)"] = "Ich mag das nicht (toggle)";
$a->strings["dislike"] = "mag ich nicht";
$a->strings["Share this"] = "Weitersagen";
$a->strings["share"] = "Teilen";
$a->strings["Categories:"] = "Kategorien";
$a->strings["Filed under:"] = "Abgelegt unter:";
$a->strings["View %s's profile @ %s"] = "Das Profil von %s auf %s betrachten.";
$a->strings["to"] = "zu";
$a->strings["via"] = "via";
$a->strings["Wall-to-Wall"] = "Wall-to-Wall";
$a->strings["via Wall-To-Wall:"] = "via Wall-To-Wall:";
$a->strings["%s from %s"] = "%s von %s";
$a->strings["Comment"] = "Kommentar";
$a->strings["Please wait"] = "Bitte warten";
$a->strings["%d comment"] = array(
0 => "%d Kommentar",
1 => "%d Kommentare",
$a->strings["Profile"] = "Profil";
$a->strings["Full Name:"] = "Kompletter Name:";
$a->strings["Gender:"] = "Geschlecht:";
$a->strings["j F, Y"] = "j F, Y";
$a->strings["j F"] = "j F";
$a->strings["Birthday:"] = "Geburtstag:";
$a->strings["Age:"] = "Alter:";
$a->strings["Status:"] = "Status:";
$a->strings["for %1\$d %2\$s"] = "für %1\$d %2\$s";
$a->strings["Sexual Preference:"] = "Sexuelle Vorlieben:";
$a->strings["Homepage:"] = "Homepage:";
$a->strings["Hometown:"] = "Heimatort:";
$a->strings["Tags:"] = "Tags";
$a->strings["Political Views:"] = "Politische Ansichten:";
$a->strings["Religion:"] = "Religion:";
$a->strings["About:"] = "Über:";
$a->strings["Hobbies/Interests:"] = "Hobbies/Interessen:";
$a->strings["Likes:"] = "Likes:";
$a->strings["Dislikes:"] = "Dislikes:";
$a->strings["Contact information and Social Networks:"] = "Kontaktinformationen und Soziale Netzwerke:";
$a->strings["Musical interests:"] = "Musikalische Interessen:";
$a->strings["Books, literature:"] = "Literatur/Bücher:";
$a->strings["Television:"] = "Fernsehen:";
$a->strings["Film/dance/culture/entertainment:"] = "Filme/Tänze/Kultur/Unterhaltung:";
$a->strings["Love/Romance:"] = "Liebesleben:";
$a->strings["Work/employment:"] = "Arbeit/Beschäftigung:";
$a->strings["School/education:"] = "Schule/Ausbildung:";
$a->strings["Male"] = "Männlich";
$a->strings["Female"] = "Weiblich";
$a->strings["Currently Male"] = "Momentan männlich";
$a->strings["Currently Female"] = "Momentan weiblich";
$a->strings["Mostly Male"] = "Hauptsächlich männlich";
$a->strings["Mostly Female"] = "Hauptsächlich weiblich";
$a->strings["Transgender"] = "Transgender";
$a->strings["Intersex"] = "Intersex";
$a->strings["Transsexual"] = "Transsexuell";
$a->strings["Hermaphrodite"] = "Hermaphrodit";
$a->strings["Neuter"] = "Neuter";
$a->strings["Non-specific"] = "Nicht spezifiziert";
$a->strings["Other"] = "Andere";
$a->strings["Undecided"] = "Unentschieden";
$a->strings["Males"] = "Männer";
$a->strings["Females"] = "Frauen";
$a->strings["Gay"] = "Schwul";
$a->strings["Lesbian"] = "Lesbisch";
$a->strings["No Preference"] = "Keine Vorlieben";
$a->strings["Bisexual"] = "Bisexuell";
$a->strings["Autosexual"] = "Autosexual";
$a->strings["Abstinent"] = "Abstinent";
$a->strings["Virgin"] = "Jungfrauen";
$a->strings["Deviant"] = "Deviant";
$a->strings["Fetish"] = "Fetish";
$a->strings["Oodles"] = "Oodles";
$a->strings["Nonsexual"] = "Nonsexual";
$a->strings["Single"] = "Single";
$a->strings["Lonely"] = "Einsam";
$a->strings["Available"] = "Verfügbar";
$a->strings["Unavailable"] = "Nicht verfügbar";
$a->strings["Has crush"] = "verknallt";
$a->strings["Infatuated"] = "verliebt";
$a->strings["Dating"] = "Dating";
$a->strings["Unfaithful"] = "Untreu";
$a->strings["Sex Addict"] = "Sexbesessen";
$a->strings["Friends"] = "Freunde";
$a->strings["Friends/Benefits"] = "Freunde/Zuwendungen";
$a->strings["Casual"] = "Casual";
$a->strings["Engaged"] = "Verlobt";
$a->strings["Married"] = "Verheiratet";
$a->strings["Imaginarily married"] = "imaginär verheiratet";
$a->strings["Partners"] = "Partner";
$a->strings["Cohabiting"] = "zusammenlebend";
$a->strings["Common law"] = "wilde Ehe";
$a->strings["Happy"] = "Glücklich";
$a->strings["Not looking"] = "Nicht auf der Suche";
$a->strings["Swinger"] = "Swinger";
$a->strings["Betrayed"] = "Betrogen";
$a->strings["Separated"] = "Getrennt";
$a->strings["Unstable"] = "Unstabil";
$a->strings["Divorced"] = "Geschieden";
$a->strings["Imaginarily divorced"] = "imaginär geschieden";
$a->strings["Widowed"] = "Verwitwet";
$a->strings["Uncertain"] = "Unsicher";
$a->strings["It's complicated"] = "Ist kompliziert";
$a->strings["Don't care"] = "Ist mir nicht wichtig";
$a->strings["Ask me"] = "Frag mich";
$a->strings["stopped following"] = "wird nicht mehr gefolgt";
$a->strings["Poke"] = "Anstupsen";
$a->strings["View Status"] = "Pinnwand anschauen";
$a->strings["View Profile"] = "Profil anschauen";
$a->strings["View Photos"] = "Bilder anschauen";
$a->strings["Network Posts"] = "Netzwerkbeiträge";
$a->strings["Edit Contact"] = "Kontakt bearbeiten";
$a->strings["Send PM"] = "Private Nachricht senden";
$a->strings["prev"] = "vorige";
$a->strings["first"] = "erste";
$a->strings["last"] = "letzte";
$a->strings["next"] = "nächste";
$a->strings["newer"] = "neuer";
$a->strings["older"] = "älter";
$a->strings["No contacts"] = "Keine Kontakte";
$a->strings["%d Contact"] = array(
0 => "%d Kontakt",
1 => "%d Kontakte",
);
$a->strings["View Contacts"] = "Kontakte anzeigen";
$a->strings["Search"] = "Suche";
$a->strings["Save"] = "Speichern";
$a->strings["poke"] = "anstupsen";
$a->strings["poked"] = "stupste";
$a->strings["ping"] = "anpingen";
$a->strings["pinged"] = "pingte";
$a->strings["prod"] = "knuffen";
$a->strings["prodded"] = "knuffte";
$a->strings["slap"] = "ohrfeigen";
$a->strings["slapped"] = "ohrfeigte";
$a->strings["finger"] = "befummeln";
$a->strings["fingered"] = "befummelte";
$a->strings["rebuff"] = "eine Abfuhr erteilen";
$a->strings["rebuffed"] = "abfuhrerteilte";
$a->strings["happy"] = "glücklich";
$a->strings["sad"] = "traurig";
$a->strings["mellow"] = "sanft";
$a->strings["tired"] = "müde";
$a->strings["perky"] = "frech";
$a->strings["angry"] = "sauer";
$a->strings["stupified"] = "verblüfft";
$a->strings["puzzled"] = "verwirrt";
$a->strings["interested"] = "interessiert";
$a->strings["bitter"] = "verbittert";
$a->strings["cheerful"] = "fröhlich";
$a->strings["alive"] = "lebendig";
$a->strings["annoyed"] = "verärgert";
$a->strings["anxious"] = "unruhig";
$a->strings["cranky"] = "schrullig";
$a->strings["disturbed"] = "verstört";
$a->strings["frustrated"] = "frustriert";
$a->strings["motivated"] = "motiviert";
$a->strings["relaxed"] = "entspannt";
$a->strings["surprised"] = "überrascht";
$a->strings["Monday"] = "Montag";
$a->strings["Tuesday"] = "Dienstag";
$a->strings["Wednesday"] = "Mittwoch";
$a->strings["Thursday"] = "Donnerstag";
$a->strings["Friday"] = "Freitag";
$a->strings["Saturday"] = "Samstag";
$a->strings["Sunday"] = "Sonntag";
$a->strings["January"] = "Januar";
$a->strings["February"] = "Februar";
$a->strings["March"] = "März";
$a->strings["April"] = "April";
$a->strings["May"] = "Mai";
$a->strings["June"] = "Juni";
$a->strings["July"] = "Juli";
$a->strings["August"] = "August";
$a->strings["September"] = "September";
$a->strings["October"] = "Oktober";
$a->strings["November"] = "November";
$a->strings["December"] = "Dezember";
$a->strings["bytes"] = "Byte";
$a->strings["Click to open/close"] = "Zum öffnen/schließen klicken";
$a->strings["link to source"] = "Link zum Originalbeitrag";
$a->strings["default"] = "Standard";
$a->strings["Select an alternate language"] = "Alternative Sprache auswählen";
$a->strings["event"] = "Veranstaltung";
$a->strings["photo"] = "Foto";
$a->strings["activity"] = "Aktivität";
$a->strings["comment"] = array(
0 => "",
1 => "Kommentar",
);
$a->strings["post"] = "Beitrag";
$a->strings["Item filed"] = "Beitrag abgelegt";
$a->strings["Visible to everybody"] = "Für jeden sichtbar";
$a->strings["show"] = "zeigen";
$a->strings["don't show"] = "nicht zeigen";
$a->strings["Logged out."] = "Abgemeldet.";
$a->strings["Login failed."] = "Anmeldung fehlgeschlagen.";
$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Beim Versuch dich mit der von dir angegebenen OpenID anzumelden trat ein Problem auf. Bitte überprüfe, dass du die OpenID richtig geschrieben hast.";
$a->strings["The error message was:"] = "Die Fehlermeldung lautete:";
$a->strings["Error decoding account file"] = "Fehler beim Verarbeiten der Account Datei";
$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Fehler! Keine Versionsdaten in der Datei! Ist das wirklich eine Friendica Account Datei?";
$a->strings["Error! I can't import this file: DB schema version is not compatible."] = "Fehler! Kann diese Datei nicht importieren. Die DB Schema Versionen sind nicht kompatibel.";
$a->strings["Error! Cannot check nickname"] = "Fehler! Konnte den Nickname nicht überprüfen.";
$a->strings["User '%s' already exists on this server!"] = "Nutzer '%s' existiert bereits auf diesem Server!";
$a->strings["User creation error"] = "Fehler beim Anlegen des Nutzeraccounts aufgetreten";
$a->strings["User profile creation error"] = "Fehler beim Anlegen des Nutzerkontos";
$a->strings["%d contact not imported"] = array(
0 => "%d Kontakt nicht importiert",
1 => "%d Kontakte nicht importiert",
);
$a->strings["Done. You can now login with your username and password"] = "Erledigt. Du kannst dich jetzt mit deinem Nutzernamen und Passwort anmelden";
$a->strings["l F d, Y \\@ g:i A"] = "l, d. F Y\\, H:i";
$a->strings["Starts:"] = "Beginnt:";
$a->strings["Finishes:"] = "Endet:";
$a->strings["Location:"] = "Ort:";
$a->strings["Disallowed profile URL."] = "Nicht erlaubte Profil-URL.";
$a->strings["Connect URL missing."] = "Connect-URL fehlt";
$a->strings["This site is not configured to allow communications with other networks."] = "Diese Seite ist so konfiguriert, dass keine Kommunikation mit anderen Netzwerken erfolgen kann.";
$a->strings["No compatible communication protocols or feeds were discovered."] = "Es wurden keine kompatiblen Kommunikationsprotokolle oder Feeds gefunden.";
$a->strings["The profile address specified does not provide adequate information."] = "Die angegebene Profiladresse liefert unzureichende Informationen.";
$a->strings["An author or name was not found."] = "Es wurde kein Autor oder Name gefunden.";
$a->strings["No browser URL could be matched to this address."] = "Zu dieser Adresse konnte keine passende Browser URL gefunden werden.";
$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Konnte die @-Adresse mit keinem der bekannten Protokolle oder Email-Kontakte abgleichen.";
$a->strings["Use mailto: in front of address to force email check."] = "Verwende mailto: vor der Email Adresse, um eine Überprüfung der E-Mail-Adresse zu erzwingen.";
$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "Die Adresse dieses Profils gehört zu einem Netzwerk, mit dem die Kommunikation auf dieser Seite ausgeschaltet wurde.";
$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Eingeschränktes Profil. Diese Person wird keine direkten/privaten Nachrichten von dir erhalten können.";
$a->strings["Unable to retrieve contact information."] = "Konnte die Kontaktinformationen nicht empfangen.";
$a->strings["following"] = "folgen";
$a->strings["An invitation is required."] = "Du benötigst eine Einladung.";
$a->strings["Invitation could not be verified."] = "Die Einladung konnte nicht überprüft werden.";
$a->strings["Invalid OpenID url"] = "Ungültige OpenID URL";
$a->strings["Please enter the required information."] = "Bitte trage die erforderlichen Informationen ein.";
$a->strings["Please use a shorter name."] = "Bitte verwende einen kürzeren Namen.";
$a->strings["Name too short."] = "Der Name ist zu kurz.";
$a->strings["That doesn't appear to be your full (First Last) name."] = "Das scheint nicht dein kompletter Name (Vor- und Nachname) zu sein.";
$a->strings["Your email domain is not among those allowed on this site."] = "Die Domain deiner E-Mail Adresse ist auf dieser Seite nicht erlaubt.";
$a->strings["Not a valid email address."] = "Keine gültige E-Mail-Adresse.";
$a->strings["Cannot use that email."] = "Konnte diese E-Mail-Adresse nicht verwenden.";
$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and must also begin with a letter."] = "Dein Spitzname darf nur aus Buchstaben und Zahlen (\"a-z\",\"0-9\", \"_\" und \"-\") bestehen, außerdem muss er mit einem Buchstaben beginnen.";
$a->strings["Nickname is already registered. Please choose another."] = "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen.";
$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen.";
$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "FATALER FEHLER: Sicherheitsschlüssel konnten nicht erzeugt werden.";
$a->strings["An error occurred during registration. Please try again."] = "Während der Anmeldung ist ein Fehler aufgetreten. Bitte versuche es noch einmal.";
$a->strings["An error occurred creating your default profile. Please try again."] = "Bei der Erstellung des Standardprofils ist ein Fehler aufgetreten. Bitte versuche es noch einmal.";
$a->strings["Profile Photos"] = "Profilbilder";
$a->strings["Unknown | Not categorised"] = "Unbekannt | Nicht kategorisiert";
$a->strings["Block immediately"] = "Sofort blockieren";
$a->strings["Shady, spammer, self-marketer"] = "Zwielichtig, Spammer, Selbstdarsteller";
$a->strings["Known to me, but no opinion"] = "Ist mir bekannt, hab aber keine Meinung";
$a->strings["OK, probably harmless"] = "OK, wahrscheinlich harmlos";
$a->strings["Reputable, has my trust"] = "Seriös, hat mein Vertrauen";
$a->strings["Frequently"] = "immer wieder";
$a->strings["Hourly"] = "Stündlich";
$a->strings["Twice daily"] = "Zweimal täglich";
$a->strings["Daily"] = "Täglich";
$a->strings["Weekly"] = "Wöchentlich";
$a->strings["Monthly"] = "Monatlich";
$a->strings["Friendica"] = "Friendica";
$a->strings["OStatus"] = "OStatus";
$a->strings["RSS/Atom"] = "RSS/Atom";
$a->strings["Email"] = "E-Mail";
$a->strings["Diaspora"] = "Diaspora";
$a->strings["Facebook"] = "Facebook";
$a->strings["Zot!"] = "Zott";
$a->strings["LinkedIn"] = "LinkedIn";
$a->strings["XMPP/IM"] = "XMPP/Chat";
$a->strings["MySpace"] = "MySpace";
$a->strings["Google+"] = "Google+";
$a->strings["Add New Contact"] = "Neuen Kontakt hinzufügen";
$a->strings["Enter address or web location"] = "Adresse oder Web-Link eingeben";
$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Beispiel: bob@example.com, http://example.com/barbara";
$a->strings["Connect"] = "Verbinden";
$a->strings["%d invitation available"] = array(
0 => "%d Einladung verfügbar",
1 => "%d Einladungen verfügbar",
);
$a->strings["Find People"] = "Leute finden";
$a->strings["Enter name or interest"] = "Name oder Interessen eingeben";
$a->strings["Connect/Follow"] = "Verbinden/Folgen";
$a->strings["Examples: Robert Morgenstein, Fishing"] = "Beispiel: Robert Morgenstein, Angeln";
$a->strings["Find"] = "Finde";
$a->strings["Friend Suggestions"] = "Kontaktvorschläge";
$a->strings["Similar Interests"] = "Ähnliche Interessen";
$a->strings["Random Profile"] = "Zufälliges Profil";
$a->strings["Invite Friends"] = "Freunde einladen";
$a->strings["Networks"] = "Netzwerke";
$a->strings["All Networks"] = "Alle Netzwerke";
$a->strings["Saved Folders"] = "Gespeicherte Ordner";
$a->strings["Everything"] = "Alles";
$a->strings["Categories"] = "Kategorien";
$a->strings["%d contact in common"] = array(
0 => "%d gemeinsamer Kontakt",
1 => "%d gemeinsame Kontakte",
);
$a->strings["show more"] = "mehr anzeigen";
$a->strings["This is you"] = "Das bist du";
$a->strings["Submit"] = "Senden";
$a->strings["Bold"] = "Fett";
$a->strings["Italic"] = "Kursiv";
$a->strings["Underline"] = "Unterstrichen";
$a->strings["Quote"] = "Zitat";
$a->strings["Code"] = "Code";
$a->strings["Image"] = "Bild";
$a->strings["Link"] = "Verweis";
$a->strings["Video"] = "Video";
$a->strings[" on Last.fm"] = " bei Last.fm";
$a->strings["Image/photo"] = "Bild/Foto";
$a->strings["<span><a href=\"%s\" target=\"external-link\">%s</a> wrote the following <a href=\"%s\" target=\"external-link\">post</a>"] = "<span><a href=\"%s\" target=\"external-link\">%s</a> schrieb den folgenden <a href=\"%s\" target=\"external-link\">Beitrag</a>";
$a->strings["$1 wrote:"] = "$1 hat geschrieben:";
$a->strings["Encrypted content"] = "Verschlüsselter Inhalt";
$a->strings["Miscellaneous"] = "Verschiedenes";
$a->strings["year"] = "Jahr";
$a->strings["month"] = "Monat";
$a->strings["day"] = "Tag";
$a->strings["never"] = "nie";
$a->strings["less than a second ago"] = "vor weniger als einer Sekunde";
$a->strings["years"] = "Jahre";
$a->strings["months"] = "Monate";
$a->strings["week"] = "Woche";
$a->strings["weeks"] = "Wochen";
$a->strings["days"] = "Tage";
$a->strings["hour"] = "Stunde";
$a->strings["hours"] = "Stunden";
$a->strings["minute"] = "Minute";
$a->strings["minutes"] = "Minuten";
$a->strings["second"] = "Sekunde";
$a->strings["seconds"] = "Sekunden";
$a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s her";
$a->strings["%s's birthday"] = "%ss Geburtstag";
$a->strings["Happy Birthday %s"] = "Herzlichen Glückwunsch %s";
$a->strings["Click here to upgrade."] = "Zum Upgraden hier klicken.";
$a->strings["This action exceeds the limits set by your subscription plan."] = "Diese Aktion überschreitet die Obergrenze deines Abonnements.";
$a->strings["This action is not available under your subscription plan."] = "Diese Aktion ist in deinem Abonnement nicht verfügbar.";
$a->strings["(no subject)"] = "(kein Betreff)";
$a->strings["noreply"] = "noreply";
$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s ist nun mit %2\$s befreundet";
$a->strings["Sharing notification from Diaspora network"] = "Freigabe-Benachrichtigung von Diaspora";
$a->strings["status"] = "Status";
$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s mag %2\$ss %3\$s";
$a->strings["Attachments:"] = "Anhänge:";
$a->strings["General Features"] = "Allgemeine Features";
$a->strings["Multiple Profiles"] = "Mehrere Profile";
$a->strings["Ability to create multiple profiles"] = "Möglichkeit mehrere Profile zu erstellen";
$a->strings["Post Composition Features"] = "Beitragserstellung Features";
$a->strings["Richtext Editor"] = "Web-Editor";
$a->strings["Enable richtext editor"] = "Den Web-Editor für neue Beiträge aktivieren";
$a->strings["Post Preview"] = "Beitragsvorschau";
$a->strings["Allow previewing posts and comments before publishing them"] = "Die Vorschau von Beiträgen und Kommentaren vor dem absenden erlauben.";
$a->strings["Network Sidebar Widgets"] = "Widgets für Netzwerk und Seitenleiste";
$a->strings["Search by Date"] = "Archiv";
$a->strings["Ability to select posts by date ranges"] = "Möglichkeit die Beiträge nach Datumsbereichen zu sortieren";
$a->strings["Group Filter"] = "Gruppen Filter";
$a->strings["Enable widget to display Network posts only from selected group"] = "Widget zur Darstellung der Beiträge nach Kontaktgruppen sortiert aktivieren.";
$a->strings["Network Filter"] = "Netzwerk Filter";
$a->strings["Enable widget to display Network posts only from selected network"] = "Widget zum filtern der Beiträge in Abhängigkeit des Netzwerks aus dem der Ersteller sendet aktivieren.";
$a->strings["Saved Searches"] = "Gespeicherte Suchen";
$a->strings["Save search terms for re-use"] = "Speichere Suchanfragen für spätere Wiederholung.";
$a->strings["Network Tabs"] = "Netzwerk Reiter";
$a->strings["Network Personal Tab"] = "Netzwerk-Reiter: Persönlich";
$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Aktiviert einen Netzwerk-Reiter in dem Nachrichten angezeigt werden mit denen du interagiert hast";
$a->strings["Network New Tab"] = "Netzwerk-Reiter: Neue";
$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = "Aktiviert einen Netzwerk-Reiter in dem ausschließlich neue Beiträge (der letzten 12 Stunden) angezeigt werden";
$a->strings["Network Shared Links Tab"] = "Netzwerk-Reiter: Geteilte Links";
$a->strings["Enable tab to display only Network posts with links in them"] = "Aktiviert einen Netzwerk-Reiter der ausschließlich Nachrichten mit Links enthält";
$a->strings["Post/Comment Tools"] = "Werkzeuge für Beiträge und Kommentare";
$a->strings["Multiple Deletion"] = "Mehrere Beiträge löschen";
$a->strings["Select and delete multiple posts/comments at once"] = "Mehrere Beiträge/Kommentare markieren und gleichzeitig löschen";
$a->strings["Edit Sent Posts"] = "Gesendete Beiträge editieren";
$a->strings["Edit and correct posts and comments after sending"] = "Erlaubt es Beiträge und Kommentare nach dem Senden zu editieren bzw.zu korrigieren.";
$a->strings["Tagging"] = "Tagging";
$a->strings["Ability to tag existing posts"] = "Möglichkeit bereits existierende Beiträge nachträglich mit Tags zu versehen.";
$a->strings["Post Categories"] = "Beitragskategorien";
$a->strings["Add categories to your posts"] = "Eigene Beiträge mit Kategorien versehen";
$a->strings["Ability to file posts under folders"] = "Beiträge in Ordnern speichern aktivieren";
$a->strings["Dislike Posts"] = "Beiträge 'nicht mögen'";
$a->strings["Ability to dislike posts/comments"] = "Ermöglicht es Beiträge mit einem Klick 'nicht zu mögen'";
$a->strings["Star Posts"] = "Beiträge Markieren";
$a->strings["Ability to mark special posts with a star indicator"] = "Erlaubt es Beiträge mit einem Stern-Indikator zu markieren";
$a->strings["Cannot locate DNS info for database server '%s'"] = "Kann die DNS Informationen für den Datenbankserver '%s' nicht ermitteln.";
$a->strings["A deleted group with this name was revived. Existing item permissions <strong>may</strong> apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Eine gelöschte Gruppe mit diesem Namen wurde wiederbelebt. Bestehende Berechtigungseinstellungen <strong>könnten</strong> auf diese Gruppe oder zukünftige Mitglieder angewandt werden. Falls du dies nicht möchtest, erstelle bitte eine andere Gruppe mit einem anderen Namen.";
$a->strings["Default privacy group for new contacts"] = "Voreingestellte Gruppe für neue Kontakte";
$a->strings["Everybody"] = "Alle Kontakte";
$a->strings["edit"] = "bearbeiten";
$a->strings["Groups"] = "Gruppen";
$a->strings["Edit group"] = "Gruppe bearbeiten";
$a->strings["Create a new group"] = "Neue Gruppe erstellen";
$a->strings["Contacts not in any group"] = "Kontakte in keiner Gruppe";
$a->strings["add"] = "hinzufügen";
$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s mag %2\$ss %3\$s nicht";
$a->strings["%1\$s poked %2\$s"] = "%1\$s stupste %2\$s";
$a->strings["%1\$s is currently %2\$s"] = "%1\$s ist momentan %2\$s";
$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s hat %2\$ss %3\$s mit %4\$s getaggt";
$a->strings["post/item"] = "Nachricht/Beitrag";
$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "%1\$s hat %2\$s\\s %3\$s als Favorit markiert";
$a->strings["Select"] = "Auswählen";
$a->strings["Delete"] = "Löschen";
$a->strings["View %s's profile @ %s"] = "Das Profil von %s auf %s betrachten.";
$a->strings["Categories:"] = "Kategorien";
$a->strings["Filed under:"] = "Abgelegt unter:";
$a->strings["%s from %s"] = "%s von %s";
$a->strings["View in context"] = "Im Zusammenhang betrachten";
$a->strings["Please wait"] = "Bitte warten";
$a->strings["remove"] = "löschen";
$a->strings["Delete Selected Items"] = "Lösche die markierten Beiträge";
$a->strings["Follow Thread"] = "Folge der Unterhaltung";
$a->strings["%s likes this."] = "%s mag das.";
$a->strings["%s doesn't like this."] = "%s mag das nicht.";
$a->strings["<span %1\$s>%2\$d people</span> like this"] = "<span %1\$s>%2\$d Personen</span> mögen das";
$a->strings["<span %1\$s>%2\$d people</span> don't like this"] = "<span %1\$s>%2\$d Personen</span> mögen das nicht";
$a->strings["and"] = "und";
$a->strings[", and %d other people"] = " und %d andere";
$a->strings["%s like this."] = "%s mögen das.";
$a->strings["%s don't like this."] = "%s mögen das nicht.";
$a->strings["Visible to <strong>everybody</strong>"] = "Für <strong>jedermann</strong> sichtbar";
$a->strings["Please enter a link URL:"] = "Bitte gib die URL des Links ein:";
$a->strings["Please enter a video link/URL:"] = "Bitte Link/URL zum Video einfügen:";
$a->strings["Please enter an audio link/URL:"] = "Bitte Link/URL zum Audio einfügen:";
$a->strings["Tag term:"] = "Tag:";
$a->strings["Save to Folder:"] = "In diesen Ordner verschieben:";
$a->strings["Where are you right now?"] = "Wo hältst du dich jetzt gerade auf?";
$a->strings["Delete item(s)?"] = "Einträge löschen?";
$a->strings["Post to Email"] = "An E-Mail senden";
$a->strings["Share"] = "Teilen";
$a->strings["Upload photo"] = "Foto hochladen";
$a->strings["upload photo"] = "Bild hochladen";
$a->strings["Attach file"] = "Datei anhängen";
$a->strings["attach file"] = "Datei anhängen";
$a->strings["Insert web link"] = "Einen Link einfügen";
$a->strings["web link"] = "Weblink";
$a->strings["Insert video link"] = "Video-Adresse einfügen";
$a->strings["video link"] = "Video-Link";
$a->strings["Insert audio link"] = "Audio-Adresse einfügen";
$a->strings["audio link"] = "Audio-Link";
$a->strings["Set your location"] = "Deinen Standort festlegen";
$a->strings["set location"] = "Ort setzen";
$a->strings["Clear browser location"] = "Browser-Standort leeren";
$a->strings["clear location"] = "Ort löschen";
$a->strings["Set title"] = "Titel setzen";
$a->strings["Categories (comma-separated list)"] = "Kategorien (kommasepariert)";
$a->strings["Permission settings"] = "Berechtigungseinstellungen";
$a->strings["permissions"] = "Zugriffsrechte";
$a->strings["CC: email addresses"] = "Cc: E-Mail-Addressen";
$a->strings["Public post"] = "Öffentlicher Beitrag";
$a->strings["Example: bob@example.com, mary@example.com"] = "Z.B.: bob@example.com, mary@example.com";
$a->strings["Preview"] = "Vorschau";
$a->strings["Not Found"] = "Nicht gefunden";
$a->strings["Page not found."] = "Seite nicht gefunden.";
$a->strings["Permission denied"] = "Zugriff verweigert";
$a->strings["Cancel"] = "Abbrechen";
$a->strings["Post to Groups"] = "Poste an Gruppe";
$a->strings["Post to Contacts"] = "Poste an Kontakte";
$a->strings["Private post"] = "Privater Beitrag";
$a->strings["Friendica Notification"] = "Friendica-Benachrichtigung";
$a->strings["Thank You,"] = "Danke,";
$a->strings["%s Administrator"] = "der Administrator von %s";
$a->strings["%s <!item_type!>"] = "%s <!item_type!>";
$a->strings["[Friendica:Notify] New mail received at %s"] = "[Friendica-Meldung] Neue Nachricht erhalten von %s";
$a->strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s hat dir eine neue private Nachricht auf %2\$s geschickt.";
$a->strings["%1\$s sent you %2\$s."] = "%1\$s schickte dir %2\$s.";
$a->strings["a private message"] = "eine private Nachricht";
$a->strings["Please visit %s to view and/or reply to your private messages."] = "Bitte besuche %s, um deine privaten Nachrichten anzusehen und/oder zu beantworten.";
$a->strings["%1\$s commented on [url=%2\$s]a %3\$s[/url]"] = "%1\$s kommentierte [url=%2\$s]a %3\$s[/url]";
$a->strings["%1\$s commented on [url=%2\$s]%3\$s's %4\$s[/url]"] = "%1\$s kommentierte [url=%2\$s]%3\$ss %4\$s[/url]";
$a->strings["%1\$s commented on [url=%2\$s]your %3\$s[/url]"] = "%1\$s kommentierte [url=%2\$s]deinen %3\$s[/url]";
$a->strings["[Friendica:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Friendica-Meldung] Kommentar zum Beitrag #%1\$d von %2\$s";
$a->strings["%s commented on an item/conversation you have been following."] = "%s hat einen Beitrag kommentiert, dem du folgst.";
$a->strings["Please visit %s to view and/or reply to the conversation."] = "Bitte besuche %s, um die Konversation anzusehen und/oder zu kommentieren.";
$a->strings["[Friendica:Notify] %s posted to your profile wall"] = "[Friendica-Meldung] %s hat auf deine Pinnwand geschrieben";
$a->strings["%1\$s posted to your profile wall at %2\$s"] = "%1\$s schrieb auf %2\$s auf deine Pinnwand";
$a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = "%1\$s hat etwas auf [url=%2\$s]deiner Pinnwand[/url] gepostet";
$a->strings["[Friendica:Notify] %s tagged you"] = "[Friendica-Meldung] %s hat dich erwähnt";
$a->strings["%1\$s tagged you at %2\$s"] = "%1\$s erwähnte dich auf %2\$s";
$a->strings["%1\$s [url=%2\$s]tagged you[/url]."] = "%1\$s [url=%2\$s]erwähnte dich[/url].";
$a->strings["[Friendica:Notify] %1\$s poked you"] = "[Friendica-Meldung] %1\$s hat dich angestupst";
$a->strings["%1\$s poked you at %2\$s"] = "%1\$s hat dich auf %2\$s angestupst";
$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = "%1\$s [url=%2\$s]hat dich angestupst[/url].";
$a->strings["[Friendica:Notify] %s tagged your post"] = "[Friendica-Meldung] %s hat deinen Beitrag getaggt";
$a->strings["%1\$s tagged your post at %2\$s"] = "%1\$s erwähnte deinen Beitrag auf %2\$s";
$a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = "%1\$s erwähnte [url=%2\$s]Deinen Beitrag[/url]";
$a->strings["[Friendica:Notify] Introduction received"] = "[Friendica-Meldung] Kontaktanfrage erhalten";
$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = "Du hast eine Kontaktanfrage von '%1\$s' auf %2\$s erhalten";
$a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = "Du hast eine [url=%1\$s]Kontaktanfrage[/url] von %2\$s erhalten.";
$a->strings["You may visit their profile at %s"] = "Hier kannst du das Profil betrachten: %s";
$a->strings["Please visit %s to approve or reject the introduction."] = "Bitte besuche %s, um die Kontaktanfrage anzunehmen oder abzulehnen.";
$a->strings["[Friendica:Notify] Friend suggestion received"] = "[Friendica-Meldung] Kontaktvorschlag erhalten";
$a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "Du hast einen Freunde-Vorschlag von '%1\$s' auf %2\$s erhalten";
$a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from %3\$s."] = "Du hast einen [url=%1\$s]Freunde-Vorschlag[/url] %2\$s von %3\$s erhalten.";
$a->strings["Name:"] = "Name:";
$a->strings["Photo:"] = "Foto:";
$a->strings["Please visit %s to approve or reject the suggestion."] = "Bitte besuche %s, um den Vorschlag zu akzeptieren oder abzulehnen.";
$a->strings["[no subject]"] = "[kein Betreff]";
$a->strings["Wall Photos"] = "Pinnwand-Bilder";
$a->strings["Nothing new here"] = "Keine Neuigkeiten.";
$a->strings["Clear notifications"] = "Bereinige Benachrichtigungen";
$a->strings["Logout"] = "Abmelden";
$a->strings["End this session"] = "Diese Sitzung beenden";
$a->strings["Status"] = "Status";
$a->strings["Your posts and conversations"] = "Deine Beiträge und Unterhaltungen";
$a->strings["Your profile page"] = "Deine Profilseite";
$a->strings["Photos"] = "Bilder";
$a->strings["Your photos"] = "Deine Fotos";
$a->strings["Events"] = "Veranstaltungen";
$a->strings["Your events"] = "Deine Ereignisse";
$a->strings["Personal notes"] = "Persönliche Notizen";
$a->strings["Your personal photos"] = "Deine privaten Fotos";
$a->strings["Login"] = "Anmeldung";
$a->strings["Sign in"] = "Anmelden";
$a->strings["Home"] = "Pinnwand";
$a->strings["Home Page"] = "Homepage";
$a->strings["Register"] = "Registrieren";
$a->strings["Create an account"] = "Nutzerkonto erstellen";
$a->strings["Help"] = "Hilfe";
$a->strings["Help and documentation"] = "Hilfe und Dokumentation";
$a->strings["Apps"] = "Apps";
$a->strings["Addon applications, utilities, games"] = "Addon Anwendungen, Dienstprogramme, Spiele";
$a->strings["Search site content"] = "Inhalt der Seite durchsuchen";
$a->strings["Community"] = "Gemeinschaft";
$a->strings["Conversations on this site"] = "Unterhaltungen auf dieser Seite";
$a->strings["Directory"] = "Verzeichnis";
$a->strings["People directory"] = "Nutzerverzeichnis";
$a->strings["Network"] = "Netzwerk";
$a->strings["Conversations from your friends"] = "Unterhaltungen deiner Kontakte";
$a->strings["Network Reset"] = "Netzwerk zurücksetzen";
$a->strings["Load Network page with no filters"] = "Netzwerk-Seite ohne Filter laden";
$a->strings["Introductions"] = "Kontaktanfragen";
$a->strings["Friend Requests"] = "Kontaktanfragen";
$a->strings["Notifications"] = "Benachrichtigungen";
$a->strings["See all notifications"] = "Alle Benachrichtigungen anzeigen";
$a->strings["Mark all system notifications seen"] = "Markiere alle Systembenachrichtigungen als gelesen";
$a->strings["Messages"] = "Nachrichten";
$a->strings["Private mail"] = "Private E-Mail";
$a->strings["Inbox"] = "Eingang";
$a->strings["Outbox"] = "Ausgang";
$a->strings["New Message"] = "Neue Nachricht";
$a->strings["Manage"] = "Verwalten";
$a->strings["Manage other pages"] = "Andere Seiten verwalten";
$a->strings["Delegations"] = "Delegierungen";
$a->strings["Delegate Page Management"] = "Delegiere das Management für die Seite";
$a->strings["Settings"] = "Einstellungen";
$a->strings["Account settings"] = "Kontoeinstellungen";
$a->strings["Profiles"] = "Profile";
$a->strings["Manage/Edit Profiles"] = "Profile Verwalten/Editieren";
$a->strings["Contacts"] = "Kontakte";
$a->strings["Manage/edit friends and contacts"] = "Freunde und Kontakte verwalten/editieren";
$a->strings["Admin"] = "Administration";
$a->strings["Site setup and configuration"] = "Einstellungen der Seite und Konfiguration";
$a->strings["Navigation"] = "Navigation";
$a->strings["Site map"] = "Sitemap";
$a->strings["view full size"] = "Volle Größe anzeigen";
$a->strings["Embedded content"] = "Eingebetteter Inhalt";
$a->strings["Embedding disabled"] = "Einbettungen deaktiviert";
$a->strings["[Name Withheld]"] = "[Name unterdrückt]";
$a->strings["A new person is sharing with you at "] = "Eine neue Person teilt mit dir auf ";
$a->strings["You have a new follower at "] = "Du hast einen neuen Kontakt auf ";
$a->strings["Item not found."] = "Beitrag nicht gefunden.";
$a->strings["Do you really want to delete this item?"] = "Möchtest du wirklich dieses Item löschen?";
$a->strings["Yes"] = "Ja";
$a->strings["Permission denied."] = "Zugriff verweigert.";
$a->strings["toggle mobile"] = "auf/von Mobile Ansicht wechseln";
$a->strings["[Embedded content - reload page to view]"] = "[Eingebetteter Inhalt - Seite neu laden zum Betrachten]";
$a->strings["Archives"] = "Archiv";
$a->strings["Welcome "] = "Willkommen ";
$a->strings["Please upload a profile photo."] = "Bitte lade ein Profilbild hoch.";
$a->strings["Welcome back "] = "Willkommen zurück ";
$a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "Das Sicherheitsmerkmal war nicht korrekt. Das passiert meistens wenn das Formular vor dem Absenden zu lange geöffnet war (länger als 3 Stunden).";
$a->strings["Profile not found."] = "Profil nicht gefunden.";
$a->strings["Profile deleted."] = "Profil gelöscht.";
$a->strings["Profile-"] = "Profil-";
$a->strings["New profile created."] = "Neues Profil angelegt.";
$a->strings["Profile unavailable to clone."] = "Profil nicht zum Duplizieren verfügbar.";
$a->strings["Profile Name is required."] = "Profilname ist erforderlich.";
$a->strings["Marital Status"] = "Familienstand";
$a->strings["Romantic Partner"] = "Romanze";
$a->strings["Likes"] = "Likes";
$a->strings["Dislikes"] = "Dislikes";
$a->strings["Work/Employment"] = "Arbeit / Beschäftigung";
$a->strings["Religion"] = "Religion";
$a->strings["Political Views"] = "Politische Ansichten";
$a->strings["Gender"] = "Geschlecht";
$a->strings["Sexual Preference"] = "Sexuelle Vorlieben";
$a->strings["Homepage"] = "Webseite";
$a->strings["Interests"] = "Interessen";
$a->strings["Address"] = "Adresse";
$a->strings["Location"] = "Wohnort";
$a->strings["Profile updated."] = "Profil aktualisiert.";
$a->strings[" and "] = " und ";
$a->strings["public profile"] = "öffentliches Profil";
$a->strings["%1\$s changed %2\$s to &ldquo;%3\$s&rdquo;"] = "%1\$s hat %2\$s geändert auf &ldquo;%3\$s&rdquo;";
$a->strings[" - Visit %1\$s's %2\$s"] = " %1\$ss %2\$s besuchen";
$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s hat folgendes aktualisiert %2\$s, verändert wurde %3\$s.";
$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Liste der Kontakte vor Betrachtern dieses Profils verbergen?";
$a->strings["No"] = "Nein";
$a->strings["Edit Profile Details"] = "Profil bearbeiten";
$a->strings["Submit"] = "Senden";
$a->strings["Change Profile Photo"] = "Profilbild ändern";
$a->strings["View this profile"] = "Dieses Profil anzeigen";
$a->strings["Create a new profile using these settings"] = "Neues Profil anlegen und diese Einstellungen verwenden";
$a->strings["Clone this profile"] = "Dieses Profil duplizieren";
$a->strings["Delete this profile"] = "Dieses Profil löschen";
$a->strings["Profile Name:"] = "Profilname:";
$a->strings["Your Full Name:"] = "Dein kompletter Name:";
$a->strings["Title/Description:"] = "Titel/Beschreibung:";
$a->strings["Your Gender:"] = "Dein Geschlecht:";
$a->strings["Birthday (%s):"] = "Geburtstag (%s):";
$a->strings["Street Address:"] = "Adresse:";
$a->strings["Locality/City:"] = "Wohnort:";
$a->strings["Postal/Zip Code:"] = "Postleitzahl:";
$a->strings["Country:"] = "Land:";
$a->strings["Region/State:"] = "Region/Bundesstaat:";
$a->strings["<span class=\"heart\">&hearts;</span> Marital Status:"] = "<span class=\"heart\">&hearts;</span> Beziehungsstatus:";
$a->strings["Who: (if applicable)"] = "Wer: (falls anwendbar)";
$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Beispiele: cathy123, Cathy Williams, cathy@example.com";
$a->strings["Since [date]:"] = "Seit [Datum]:";
$a->strings["Homepage URL:"] = "Adresse der Homepage:";
$a->strings["Religious Views:"] = "Religiöse Ansichten:";
$a->strings["Public Keywords:"] = "Öffentliche Schlüsselwörter:";
$a->strings["Private Keywords:"] = "Private Schlüsselwörter:";
$a->strings["Example: fishing photography software"] = "Beispiel: Fischen Fotografie Software";
$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(Wird verwendet, um potentielle Freunde zu finden, könnte von Fremden eingesehen werden)";
$a->strings["(Used for searching profiles, never shown to others)"] = "(Wird für die Suche nach Profilen verwendet und niemals veröffentlicht)";
$a->strings["Tell us about yourself..."] = "Erzähle uns ein bisschen von dir …";
$a->strings["Hobbies/Interests"] = "Hobbies/Interessen";
$a->strings["Contact information and Social Networks"] = "Kontaktinformationen und Soziale Netzwerke";
$a->strings["Musical interests"] = "Musikalische Interessen";
$a->strings["Books, literature"] = "Literatur/Bücher";
$a->strings["Television"] = "Fernsehen";
$a->strings["Film/dance/culture/entertainment"] = "Filme/Tänze/Kultur/Unterhaltung";
$a->strings["Love/romance"] = "Liebesleben";
$a->strings["Work/employment"] = "Arbeit/Beschäftigung";
$a->strings["School/education"] = "Schule/Ausbildung";
$a->strings["This is your <strong>public</strong> profile.<br />It <strong>may</strong> be visible to anybody using the internet."] = "Dies ist dein <strong>öffentliches</strong> Profil.<br />Es <strong>könnte</strong> für jeden Nutzer des Internets sichtbar sein.";
$a->strings["Age: "] = "Alter: ";
$a->strings["Edit/Manage Profiles"] = "Verwalte/Editiere Profile";
$a->strings["Change profile photo"] = "Profilbild ändern";
$a->strings["Create New Profile"] = "Neues Profil anlegen";
$a->strings["Profile Image"] = "Profilbild";
$a->strings["visible to everybody"] = "sichtbar für jeden";
$a->strings["Edit visibility"] = "Sichtbarkeit bearbeiten";
$a->strings["Permission denied"] = "Zugriff verweigert";
$a->strings["Invalid profile identifier."] = "Ungültiger Profil-Bezeichner";
$a->strings["Profile Visibility Editor"] = "Editor für die Profil-Sichtbarkeit";
$a->strings["Click on a contact to add or remove."] = "Klicke einen Kontakt an, um ihn hinzuzufügen oder zu entfernen";
$a->strings["Visible To"] = "Sichtbar für";
$a->strings["All Contacts (with secure profile access)"] = "Alle Kontakte (mit gesichertem Profilzugriff)";
$a->strings["Personal Notes"] = "Persönliche Notizen";
$a->strings["Visit %s's profile [%s]"] = "Besuche %ss Profil [%s]";
$a->strings["Edit contact"] = "Kontakt bearbeiten";
$a->strings["Contacts who are not members of a group"] = "Kontakte, die keiner Gruppe zugewiesen sind";
$a->strings["{0} wants to be your friend"] = "{0} möchte mit dir in Kontakt treten";
$a->strings["{0} sent you a message"] = "{0} hat dir eine Nachricht geschickt";
$a->strings["{0} requested registration"] = "{0} möchte sich registrieren";
$a->strings["{0} commented %s's post"] = "{0} kommentierte einen Beitrag von %s";
$a->strings["{0} liked %s's post"] = "{0} mag %ss Beitrag";
$a->strings["{0} disliked %s's post"] = "{0} mag %ss Beitrag nicht";
$a->strings["{0} is now friends with %s"] = "{0} ist jetzt mit %s befreundet";
$a->strings["{0} posted"] = "{0} hat etwas veröffentlicht";
$a->strings["{0} tagged %s's post with #%s"] = "{0} hat %ss Beitrag mit dem Schlagwort #%s versehen";
$a->strings["{0} mentioned you in a post"] = "{0} hat dich in einem Beitrag erwähnt";
$a->strings["Unable to locate original post."] = "Konnte den Originalbeitrag nicht finden.";
$a->strings["Empty post discarded."] = "Leerer Beitrag wurde verworfen.";
$a->strings["System error. Post not saved."] = "Systemfehler. Beitrag konnte nicht gespeichert werden.";
$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "Diese Nachricht wurde dir von %s geschickt, einem Mitglied des Sozialen Netzwerks Friendica.";
$a->strings["You may visit them online at %s"] = "Du kannst sie online unter %s besuchen";
$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Falls du diese Beiträge nicht erhalten möchtest, kontaktiere bitte den Autor, indem du auf diese Nachricht antwortest.";
$a->strings["%s posted an update."] = "%s hat ein Update veröffentlicht.";
$a->strings["Friends of %s"] = "Freunde von %s";
$a->strings["No friends to display."] = "Keine Freunde zum Anzeigen.";
$a->strings["Remove term"] = "Begriff entfernen";
$a->strings["Public access denied."] = "Öffentlicher Zugriff verweigert.";
$a->strings["No results."] = "Keine Ergebnisse.";
$a->strings["Authorize application connection"] = "Verbindung der Applikation autorisieren";
$a->strings["Return to your app and insert this Securty Code:"] = "Gehe zu deiner Anwendung zurück und trage dort folgenden Sicherheitscode ein:";
$a->strings["Please login to continue."] = "Bitte melde dich an um fortzufahren.";
$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Möchtest du dieser Anwendung den Zugriff auf deine Beiträge und Kontakte, sowie das Erstellen neuer Beiträge in deinem Namen gestatten?";
$a->strings["Registration details for %s"] = "Details der Registration von %s";
$a->strings["Registration successful. Please check your email for further instructions."] = "Registrierung erfolgreich. Eine E-Mail mit weiteren Anweisungen wurde an dich gesendet.";
$a->strings["Failed to send email message. Here is the message that failed."] = "Konnte die E-Mail nicht versenden. Hier ist die Nachricht, die nicht gesendet werden konnte.";
$a->strings["Your registration can not be processed."] = "Deine Registrierung konnte nicht verarbeitet werden.";
$a->strings["Registration request at %s"] = "Registrierungsanfrage auf %s";
$a->strings["Your registration is pending approval by the site owner."] = "Deine Registrierung muss noch vom Betreiber der Seite freigegeben werden.";
$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Die maximale Anzahl täglicher Registrierungen auf dieser Seite wurde überschritten. Bitte versuche es morgen noch einmal.";
$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Du kannst dieses Formular auch (optional) mit deiner OpenID ausfüllen, indem du deine OpenID angibst und 'Registrieren' klickst.";
$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Wenn du nicht mit OpenID vertraut bist, lass dieses Feld bitte leer und fülle die restlichen Felder aus.";
$a->strings["Your OpenID (optional): "] = "Deine OpenID (optional): ";
$a->strings["Include your profile in member directory?"] = "Soll dein Profil im Nutzerverzeichnis angezeigt werden?";
$a->strings["Membership on this site is by invitation only."] = "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung möglich.";
$a->strings["Your invitation ID: "] = "ID deiner Einladung: ";
$a->strings["Registration"] = "Registrierung";
$a->strings["Your Full Name (e.g. Joe Smith): "] = "Vollständiger Name (z.B. Max Mustermann): ";
$a->strings["Your Email Address: "] = "Deine E-Mail-Adresse: ";
$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be '<strong>nickname@\$sitename</strong>'."] = "Wähle einen Spitznamen für dein Profil. Dieser muss mit einem Buchstaben beginnen. Die Adresse deines Profils auf dieser Seite wird '<strong>spitzname@\$sitename</strong>' sein.";
$a->strings["Choose a nickname: "] = "Spitznamen wählen: ";
$a->strings["Account approved."] = "Konto freigegeben.";
$a->strings["Registration revoked for %s"] = "Registrierung für %s wurde zurückgezogen";
$a->strings["Please login."] = "Bitte melde dich an.";
$a->strings["Item not available."] = "Beitrag nicht verfügbar.";
$a->strings["Item was not found."] = "Beitrag konnte nicht gefunden werden.";
$a->strings["Remove My Account"] = "Konto löschen";
$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Dein Konto wird endgültig gelöscht. Es gibt keine Möglichkeit, es wiederherzustellen.";
$a->strings["Please enter your password for verification:"] = "Bitte gib dein Passwort zur Verifikation ein:";
$a->strings["Source (bbcode) text:"] = "Quelle (bbcode) Text:";
$a->strings["Source (Diaspora) text to convert to BBcode:"] = "Eingabe (Diaspora) Nach BBCode zu konvertierender Text:";
$a->strings["Source input: "] = "Originaltext:";
$a->strings["bb2html (raw HTML): "] = "bb2html (reines HTML): ";
$a->strings["bb2html: "] = "bb2html: ";
$a->strings["bb2html2bb: "] = "bb2html2bb: ";
$a->strings["bb2md: "] = "bb2md: ";
$a->strings["bb2md2html: "] = "bb2md2html: ";
$a->strings["bb2dia2bb: "] = "bb2dia2bb: ";
$a->strings["bb2md2html2bb: "] = "bb2md2html2bb: ";
$a->strings["Source input (Diaspora format): "] = "Texteingabe (Diaspora Format): ";
$a->strings["diaspora2bb: "] = "diaspora2bb: ";
$a->strings["Common Friends"] = "Gemeinsame Freunde";
$a->strings["No contacts in common."] = "Keine gemeinsamen Kontakte.";
$a->strings["You must be logged in to use addons. "] = "Sie müssen angemeldet sein um Addons benutzen zu können.";
$a->strings["Applications"] = "Anwendungen";
$a->strings["No installed applications."] = "Keine Applikationen installiert.";
$a->strings["Could not access contact record."] = "Konnte nicht auf die Kontaktdaten zugreifen.";
$a->strings["Could not locate selected profile."] = "Konnte das ausgewählte Profil nicht finden.";
$a->strings["Contact updated."] = "Kontakt aktualisiert.";
$a->strings["Failed to update contact record."] = "Aktualisierung der Kontaktdaten fehlgeschlagen.";
$a->strings["Contact has been blocked"] = "Kontakt wurde blockiert";
$a->strings["Contact has been unblocked"] = "Kontakt wurde wieder freigegeben";
$a->strings["Contact has been ignored"] = "Kontakt wurde ignoriert";
$a->strings["Contact has been unignored"] = "Kontakt wird nicht mehr ignoriert";
$a->strings["Contact has been archived"] = "Kontakt wurde archiviert";
$a->strings["Contact has been unarchived"] = "Kontakt wurde aus dem Archiv geholt";
$a->strings["Do you really want to delete this contact?"] = "Möchtest du wirklich diesen Kontakt löschen?";
$a->strings["Contact has been removed."] = "Kontakt wurde entfernt.";
$a->strings["You are mutual friends with %s"] = "Du hast mit %s eine beidseitige Freundschaft";
$a->strings["You are sharing with %s"] = "Du teilst mit %s";
$a->strings["%s is sharing with you"] = "%s teilt mit Dir";
$a->strings["Private communications are not available for this contact."] = "Private Kommunikation ist für diesen Kontakt nicht verfügbar.";
$a->strings["Never"] = "Niemals";
$a->strings["(Update was successful)"] = "(Aktualisierung war erfolgreich)";
$a->strings["(Update was not successful)"] = "(Aktualisierung war nicht erfolgreich)";
$a->strings["Suggest friends"] = "Kontakte vorschlagen";
$a->strings["Network type: %s"] = "Netzwerktyp: %s";
$a->strings["View all contacts"] = "Alle Kontakte anzeigen";
$a->strings["Unblock"] = "Entsperren";
$a->strings["Block"] = "Sperren";
$a->strings["Toggle Blocked status"] = "Geblockt-Status ein-/ausschalten";
$a->strings["Unignore"] = "Ignorieren aufheben";
$a->strings["Ignore"] = "Ignorieren";
$a->strings["Toggle Ignored status"] = "Ignoriert-Status ein-/ausschalten";
$a->strings["Unarchive"] = "Aus Archiv zurückholen";
$a->strings["Archive"] = "Archivieren";
$a->strings["Toggle Archive status"] = "Archiviert-Status ein-/ausschalten";
$a->strings["Repair"] = "Reparieren";
$a->strings["Advanced Contact Settings"] = "Fortgeschrittene Kontakteinstellungen";
$a->strings["Communications lost with this contact!"] = "Verbindungen mit diesem Kontakt verloren!";
$a->strings["Contact Editor"] = "Kontakt Editor";
$a->strings["Profile Visibility"] = "Profil-Sichtbarkeit";
$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Bitte wähle eines deiner Profile das angezeigt werden soll, wenn %s dein Profil aufruft.";
$a->strings["Contact Information / Notes"] = "Kontakt Informationen / Notizen";
$a->strings["Edit contact notes"] = "Notizen zum Kontakt bearbeiten";
$a->strings["Block/Unblock contact"] = "Kontakt blockieren/freischalten";
$a->strings["Ignore contact"] = "Ignoriere den Kontakt";
$a->strings["Repair URL settings"] = "URL Einstellungen reparieren";
$a->strings["View conversations"] = "Unterhaltungen anzeigen";
$a->strings["Delete contact"] = "Lösche den Kontakt";
$a->strings["Last update:"] = "letzte Aktualisierung:";
$a->strings["Update public posts"] = "Öffentliche Beiträge aktualisieren";
$a->strings["Update now"] = "Jetzt aktualisieren";
$a->strings["Currently blocked"] = "Derzeit geblockt";
$a->strings["Currently ignored"] = "Derzeit ignoriert";
$a->strings["Currently archived"] = "Momentan archiviert";
$a->strings["Hide this contact from others"] = "Verberge diesen Kontakt vor anderen";
$a->strings["Replies/likes to your public posts <strong>may</strong> still be visible"] = "Antworten/Likes auf deine öffentlichen Beiträge <strong>könnten</strong> weiterhin sichtbar sein";
$a->strings["Suggestions"] = "Kontaktvorschläge";
$a->strings["Suggest potential friends"] = "Freunde vorschlagen";
$a->strings["All Contacts"] = "Alle Kontakte";
$a->strings["Show all contacts"] = "Alle Kontakte anzeigen";
$a->strings["Unblocked"] = "Ungeblockt";
$a->strings["Only show unblocked contacts"] = "Nur nicht-blockierte Kontakte anzeigen";
$a->strings["Blocked"] = "Geblockt";
$a->strings["Only show blocked contacts"] = "Nur blockierte Kontakte anzeigen";
$a->strings["Ignored"] = "Ignoriert";
$a->strings["Only show ignored contacts"] = "Nur ignorierte Kontakte anzeigen";
$a->strings["Archived"] = "Archiviert";
$a->strings["Only show archived contacts"] = "Nur archivierte Kontakte anzeigen";
$a->strings["Hidden"] = "Verborgen";
$a->strings["Only show hidden contacts"] = "Nur verborgene Kontakte anzeigen";
$a->strings["Mutual Friendship"] = "Beidseitige Freundschaft";
$a->strings["is a fan of yours"] = "ist ein Fan von dir";
$a->strings["you are a fan of"] = "du bist Fan von";
$a->strings["Search your contacts"] = "Suche in deinen Kontakten";
$a->strings["Finding: "] = "Funde: ";
$a->strings["everybody"] = "jeder";
$a->strings["Additional features"] = "Zusätzliche Features";
$a->strings["Display settings"] = "Anzeige-Einstellungen";
$a->strings["Connector settings"] = "Connector-Einstellungen";
$a->strings["Plugin settings"] = "Plugin-Einstellungen";
$a->strings["Connected apps"] = "Verbundene Programme";
$a->strings["Export personal data"] = "Persönliche Daten exportieren";
$a->strings["Remove account"] = "Konto löschen";
$a->strings["Missing some important data!"] = "Wichtige Daten fehlen!";
$a->strings["Update"] = "Aktualisierungen";
$a->strings["Failed to connect with email account using the settings provided."] = "Verbindung zum E-Mail-Konto mit den angegebenen Einstellungen nicht möglich.";
$a->strings["Email settings updated."] = "E-Mail Einstellungen bearbeitet.";
$a->strings["Features updated"] = "Features aktualisiert";
$a->strings["Passwords do not match. Password unchanged."] = "Die Passwörter stimmen nicht überein. Das Passwort bleibt unverändert.";
$a->strings["Empty passwords are not allowed. Password unchanged."] = "Leere Passwörter sind nicht erlaubt. Passwort bleibt unverändert.";
$a->strings["Password changed."] = "Passwort ändern.";
$a->strings["Password update failed. Please try again."] = "Aktualisierung des Passworts gescheitert, bitte versuche es noch einmal.";
$a->strings[" Please use a shorter name."] = " Bitte verwende einen kürzeren Namen.";
$a->strings[" Name too short."] = " Name ist zu kurz.";
$a->strings[" Not valid email."] = " Keine gültige E-Mail.";
$a->strings[" Cannot change to that email."] = "Ändern der E-Mail nicht möglich. ";
$a->strings["Private forum has no privacy permissions. Using default privacy group."] = "Für das private Forum sind keine Zugriffsrechte eingestellt. Die voreingestellte Gruppe für neue Kontakte wird benutzt.";
$a->strings["Private forum has no privacy permissions and no default privacy group."] = "Für das private Forum sind keine Zugriffsrechte eingestellt, und es gibt keine voreingestellte Gruppe für neue Kontakte.";
$a->strings["Settings updated."] = "Einstellungen aktualisiert.";
$a->strings["Add application"] = "Programm hinzufügen";
$a->strings["Name"] = "Name";
$a->strings["Consumer Key"] = "Consumer Key";
$a->strings["Consumer Secret"] = "Consumer Secret";
$a->strings["Redirect"] = "Umleiten";
$a->strings["Icon url"] = "Icon URL";
$a->strings["You can't edit this application."] = "Du kannst dieses Programm nicht bearbeiten.";
$a->strings["Connected Apps"] = "Verbundene Programme";
$a->strings["Edit"] = "Bearbeiten";
$a->strings["Client key starts with"] = "Anwenderschlüssel beginnt mit";
$a->strings["No name"] = "Kein Name";
$a->strings["Remove authorization"] = "Autorisierung entziehen";
$a->strings["No Plugin settings configured"] = "Keine Plugin-Einstellungen konfiguriert";
$a->strings["Plugin Settings"] = "Plugin-Einstellungen";
$a->strings["Off"] = "Aus";
$a->strings["On"] = "An";
$a->strings["Additional Features"] = "Zusätzliche Features";
$a->strings["Built-in support for %s connectivity is %s"] = "Eingebaute Unterstützung für Verbindungen zu %s ist %s";
$a->strings["enabled"] = "eingeschaltet";
$a->strings["disabled"] = "ausgeschaltet";
$a->strings["StatusNet"] = "StatusNet";
$a->strings["Email access is disabled on this site."] = "Zugriff auf E-Mails für diese Seite deaktiviert.";
$a->strings["Connector Settings"] = "Verbindungs-Einstellungen";
$a->strings["Email/Mailbox Setup"] = "E-Mail/Postfach-Einstellungen";
$a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "Wenn du mit E-Mail-Kontakten über diesen Service kommunizieren möchtest (optional), gib bitte die Einstellungen für dein Postfach an.";
$a->strings["Last successful email check:"] = "Letzter erfolgreicher E-Mail Check";
$a->strings["IMAP server name:"] = "IMAP-Server-Name:";
$a->strings["IMAP port:"] = "IMAP-Port:";
$a->strings["Security:"] = "Sicherheit:";
$a->strings["None"] = "Keine";
$a->strings["Email login name:"] = "E-Mail-Login-Name:";
$a->strings["Email password:"] = "E-Mail-Passwort:";
$a->strings["Reply-to address:"] = "Reply-to Adresse:";
$a->strings["Send public posts to all email contacts:"] = "Sende öffentliche Beiträge an alle E-Mail-Kontakte:";
$a->strings["Action after import:"] = "Aktion nach Import:";
$a->strings["Mark as seen"] = "Als gelesen markieren";
$a->strings["Move to folder"] = "In einen Ordner verschieben";
$a->strings["Move to folder:"] = "In diesen Ordner verschieben:";
$a->strings["No special theme for mobile devices"] = "Kein spezielles Theme für mobile Geräte verwenden.";
$a->strings["Display Settings"] = "Anzeige-Einstellungen";
$a->strings["Display Theme:"] = "Theme:";
$a->strings["Mobile Theme:"] = "Mobiles Theme";
$a->strings["Update browser every xx seconds"] = "Browser alle xx Sekunden aktualisieren";
$a->strings["Minimum of 10 seconds, no maximum"] = "Minimal 10 Sekunden, kein Maximum";
$a->strings["Number of items to display per page:"] = "Zahl der Beiträge, die pro Netzwerkseite angezeigt werden sollen: ";
$a->strings["Maximum of 100 items"] = "Maximal 100 Beiträge";
$a->strings["Don't show emoticons"] = "Keine Smilies anzeigen";
$a->strings["Normal Account Page"] = "Normales Konto";
$a->strings["This account is a normal personal profile"] = "Dieses Konto ist ein normales persönliches Profil";
$a->strings["Soapbox Page"] = "Marktschreier-Konto";
$a->strings["Automatically approve all connection/friend requests as read-only fans"] = "Kontaktanfragen werden automatisch als Nurlese-Fans akzeptiert";
$a->strings["Community Forum/Celebrity Account"] = "Forum/Promi-Konto";
$a->strings["Automatically approve all connection/friend requests as read-write fans"] = "Kontaktanfragen werden automatisch als Lese-und-Schreib-Fans akzeptiert";
$a->strings["Automatic Friend Page"] = "Automatische Freunde Seite";
$a->strings["Automatically approve all connection/friend requests as friends"] = "Kontaktanfragen werden automatisch als Freund akzeptiert";
$a->strings["Private Forum [Experimental]"] = "Privates Forum [Versuchsstadium]";
$a->strings["Private forum - approved members only"] = "Privates Forum, nur für Mitglieder";
$a->strings["OpenID:"] = "OpenID:";
$a->strings["(Optional) Allow this OpenID to login to this account."] = "(Optional) Erlaube die Anmeldung für dieses Konto mit dieser OpenID.";
$a->strings["Publish your default profile in your local site directory?"] = "Darf dein Standardprofil im Verzeichnis dieses Servers veröffentlicht werden?";
$a->strings["Publish your default profile in the global social directory?"] = "Darf dein Standardprofil im weltweiten Verzeichnis veröffentlicht werden?";
$a->strings["Hide your contact/friend list from viewers of your default profile?"] = "Liste der Kontakte vor Betrachtern des Standardprofils verbergen?";
$a->strings["Hide your profile details from unknown viewers?"] = "Profil-Details vor unbekannten Betrachtern verbergen?";
$a->strings["Allow friends to post to your profile page?"] = "Dürfen deine Kontakte auf deine Pinnwand schreiben?";
$a->strings["Allow friends to tag your posts?"] = "Dürfen deine Kontakte deine Beiträge mit Schlagwörtern versehen?";
$a->strings["Allow us to suggest you as a potential friend to new members?"] = "Dürfen wir dich neuen Mitgliedern als potentiellen Kontakt vorschlagen?";
$a->strings["Permit unknown people to send you private mail?"] = "Dürfen dir Unbekannte private Nachrichten schicken?";
$a->strings["Profile is <strong>not published</strong>."] = "Profil ist <strong>nicht veröffentlicht</strong>.";
$a->strings["or"] = "oder";
$a->strings["Your Identity Address is"] = "Die Adresse deines Profils lautet:";
$a->strings["Automatically expire posts after this many days:"] = "Beiträge verfallen automatisch nach dieser Anzahl von Tagen:";
$a->strings["If empty, posts will not expire. Expired posts will be deleted"] = "Wenn leer verfallen Beiträge nie automatisch. Verfallene Beiträge werden gelöscht.";
$a->strings["Advanced expiration settings"] = "Erweiterte Verfallseinstellungen";
$a->strings["Advanced Expiration"] = "Erweitertes Verfallen";
$a->strings["Expire posts:"] = "Beiträge verfallen lassen:";
$a->strings["Expire personal notes:"] = "Persönliche Notizen verfallen lassen:";
$a->strings["Expire starred posts:"] = "Markierte Beiträge verfallen lassen:";
$a->strings["Expire photos:"] = "Fotos verfallen lassen:";
$a->strings["Only expire posts by others:"] = "Nur Beiträge anderer verfallen:";
$a->strings["Account Settings"] = "Kontoeinstellungen";
$a->strings["Password Settings"] = "Passwort-Einstellungen";
$a->strings["New Password:"] = "Neues Passwort:";
$a->strings["Confirm:"] = "Bestätigen:";
$a->strings["Leave password fields blank unless changing"] = "Lass die Passwort-Felder leer, außer du willst das Passwort ändern";
$a->strings["Basic Settings"] = "Grundeinstellungen";
$a->strings["Email Address:"] = "E-Mail-Adresse:";
$a->strings["Your Timezone:"] = "Deine Zeitzone:";
$a->strings["Default Post Location:"] = "Standardstandort:";
$a->strings["Use Browser Location:"] = "Standort des Browsers verwenden:";
$a->strings["Security and Privacy Settings"] = "Sicherheits- und Privatsphäre-Einstellungen";
$a->strings["Maximum Friend Requests/Day:"] = "Maximale Anzahl von Freundschaftsanfragen/Tag:";
$a->strings["(to prevent spam abuse)"] = "(um SPAM zu vermeiden)";
$a->strings["Default Post Permissions"] = "Standard-Zugriffsrechte für Beiträge";
$a->strings["(click to open/close)"] = "(klicke zum öffnen/schließen)";
$a->strings["Show to Groups"] = "Zeige den Gruppen";
$a->strings["Show to Contacts"] = "Zeige den Kontakten";
$a->strings["Default Private Post"] = "Privater Standardbeitrag";
$a->strings["Default Public Post"] = "Öffentlicher Standardbeitrag";
$a->strings["Default Permissions for New Posts"] = "Standardberechtigungen für neue Beiträge";
$a->strings["Maximum private messages per day from unknown people:"] = "Maximale Anzahl privater Nachrichten von Unbekannten pro Tag:";
$a->strings["Notification Settings"] = "Benachrichtigungseinstellungen";
$a->strings["By default post a status message when:"] = "Standardmäßig eine Statusnachricht posten, wenn:";
$a->strings["accepting a friend request"] = " du eine Kontaktanfrage akzeptierst";
$a->strings["joining a forum/community"] = " du einem Forum/einer Gemeinschaftsseite beitrittst";
$a->strings["making an <em>interesting</em> profile change"] = " du eine <em>interessante</em> Änderung an deinem Profil durchführst";
$a->strings["Send a notification email when:"] = "Benachrichtigungs-E-Mail senden wenn:";
$a->strings["You receive an introduction"] = " du eine Kontaktanfrage erhältst";
$a->strings["Your introductions are confirmed"] = " eine deiner Kontaktanfragen akzeptiert wurde";
$a->strings["Someone writes on your profile wall"] = " jemand etwas auf deine Pinnwand schreibt";
$a->strings["Someone writes a followup comment"] = " jemand auch einen Kommentar verfasst";
$a->strings["You receive a private message"] = " du eine private Nachricht erhältst";
$a->strings["You receive a friend suggestion"] = " du eine Empfehlung erhältst";
$a->strings["You are tagged in a post"] = " du in einem Beitrag erwähnt wirst";
$a->strings["You are poked/prodded/etc. in a post"] = " du von jemandem angestupst oder sonstwie behandelt wirst";
$a->strings["Advanced Account/Page Type Settings"] = "Erweiterte Konto-/Seitentyp-Einstellungen";
$a->strings["Change the behaviour of this account for special situations"] = "Verhalten dieses Kontos in bestimmten Situationen:";
$a->strings["link"] = "Link";
$a->strings["Contact settings applied."] = "Einstellungen zum Kontakt angewandt.";
$a->strings["Contact update failed."] = "Konnte den Kontakt nicht aktualisieren.";
$a->strings["Contact not found."] = "Kontakt nicht gefunden.";
$a->strings["Friend suggestion sent."] = "Kontaktvorschlag gesendet.";
$a->strings["Suggest Friends"] = "Kontakte vorschlagen";
$a->strings["Suggest a friend for %s"] = "Schlage %s einen Kontakt vor";
$a->strings["Repair Contact Settings"] = "Kontakteinstellungen reparieren";
$a->strings["<strong>WARNING: This is highly advanced</strong> and if you enter incorrect information your communications with this contact may stop working."] = "<strong>ACHTUNG: Das sind Experten-Einstellungen!</strong> Wenn du etwas Falsches eingibst, funktioniert die Kommunikation mit diesem Kontakt evtl. nicht mehr.";
$a->strings["Please use your browser 'Back' button <strong>now</strong> if you are uncertain what to do on this page."] = "Bitte nutze den Zurück-Button deines Browsers <strong>jetzt</strong>, wenn du dir unsicher bist, was du tun willst.";
$a->strings["Return to contact editor"] = "Zurück zum Kontakteditor";
$a->strings["Account Nickname"] = "Konto-Spitzname";
$a->strings["@Tagname - overrides Name/Nickname"] = "@Tagname - überschreibt Name/Spitzname";
$a->strings["Account URL"] = "Konto-URL";
$a->strings["Friend Request URL"] = "URL für Freundschaftsanfragen";
$a->strings["Friend Confirm URL"] = "URL für Bestätigungen von Freundschaftsanfragen";
$a->strings["Notification Endpoint URL"] = "URL-Endpunkt für Benachrichtigungen";
$a->strings["Poll/Feed URL"] = "Pull/Feed-URL";
$a->strings["New photo from this URL"] = "Neues Foto von dieser URL";
$a->strings["No potential page delegates located."] = "Keine potentiellen Bevollmächtigten für die Seite gefunden.";
$a->strings["Delegates are able to manage all aspects of this account/page except for basic account settings. Please do not delegate your personal account to anybody that you do not trust completely."] = "Bevollmächtigte sind in der Lage, alle Aspekte dieses Kontos/dieser Seite zu verwalten, abgesehen von den Grundeinstellungen des Kontos. Bitte gib niemandem eine Bevollmächtigung für deinen privaten Account, dem du nicht absolut vertraust!";
$a->strings["Existing Page Managers"] = "Vorhandene Seiten Manager";
$a->strings["Existing Page Delegates"] = "Vorhandene Bevollmächtigte für die Seite";
$a->strings["Potential Delegates"] = "Potentielle Bevollmächtigte";
$a->strings["Remove"] = "Entfernen";
$a->strings["Add"] = "Hinzufügen";
$a->strings["No entries."] = "Keine Einträge";
$a->strings["Poke/Prod"] = "Anstupsen etc.";
$a->strings["poke, prod or do other things to somebody"] = "Stupse Leute an oder mache anderes mit ihnen";
$a->strings["Recipient"] = "Empfänger";
$a->strings["Choose what you wish to do to recipient"] = "Was willst du mit dem Empfänger machen:";
$a->strings["Make this post private"] = "Diesen Beitrag privat machen";
$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "Das kann passieren, wenn sich zwei Kontakte gegenseitig eingeladen haben und bereits einer angenommen wurde.";
$a->strings["Response from remote site was not understood."] = "Antwort der Gegenstelle unverständlich.";
$a->strings["Unexpected response from remote site: "] = "Unerwartete Antwort der Gegenstelle: ";
$a->strings["Confirmation completed successfully."] = "Bestätigung erfolgreich abgeschlossen.";
$a->strings["Remote site reported: "] = "Gegenstelle meldet: ";
$a->strings["Temporary failure. Please wait and try again."] = "Zeitweiser Fehler. Bitte warte einige Momente und versuche es dann noch einmal.";
$a->strings["Introduction failed or was revoked."] = "Kontaktanfrage schlug fehl oder wurde zurückgezogen.";
$a->strings["Unable to set contact photo."] = "Konnte das Bild des Kontakts nicht speichern.";
$a->strings["No user record found for '%s' "] = "Für '%s' wurde kein Nutzer gefunden";
$a->strings["Our site encryption key is apparently messed up."] = "Der Verschlüsselungsschlüssel unserer Seite ist anscheinend nicht in Ordnung.";
$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "Leere URL für die Seite erhalten oder die URL konnte nicht entschlüsselt werden.";
$a->strings["Contact record was not found for you on our site."] = "Für diesen Kontakt wurde auf unserer Seite kein Eintrag gefunden.";
$a->strings["Site public key not available in contact record for URL %s."] = "Die Kontaktdaten für URL %s enthalten keinen Public Key für den Server.";
$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "Die ID, die uns dein System angeboten hat, ist hier bereits vergeben. Bitte versuche es noch einmal.";
$a->strings["Unable to set your contact credentials on our system."] = "Deine Kontaktreferenzen konnten nicht in unserem System gespeichert werden.";
$a->strings["Unable to update your contact profile details on our system"] = "Die Updates für dein Profil konnten nicht gespeichert werden";
$a->strings["Connection accepted at %s"] = "Auf %s wurde die Verbindung akzeptiert";
$a->strings["%1\$s has joined %2\$s"] = "%1\$s ist %2\$s beigetreten";
$a->strings["%1\$s welcomes %2\$s"] = "%1\$s heißt %2\$s herzlich willkommen";
$a->strings["This introduction has already been accepted."] = "Diese Kontaktanfrage wurde bereits akzeptiert.";
$a->strings["Profile location is not valid or does not contain profile information."] = "Profiladresse ist ungültig oder stellt einige Profildaten nicht zur Verfügung.";
$a->strings["Warning: profile location has no identifiable owner name."] = "Warnung: Es konnte kein Name des Besitzers von der angegebenen Profiladresse gefunden werden.";
@ -82,8 +967,6 @@ $a->strings["Unable to resolve your name at the provided location."] = "Konnte d
$a->strings["You have already introduced yourself here."] = "Du hast dich hier bereits vorgestellt.";
$a->strings["Apparently you are already friends with %s."] = "Es scheint so, als ob du bereits mit %s befreundet bist.";
$a->strings["Invalid profile URL."] = "Ungültige Profil-URL.";
$a->strings["Disallowed profile URL."] = "Nicht erlaubte Profil-URL.";
$a->strings["Failed to update contact record."] = "Aktualisierung der Kontaktdaten fehlgeschlagen.";
$a->strings["Your introduction has been sent."] = "Deine Kontaktanfrage wurde gesendet.";
$a->strings["Please login to confirm introduction."] = "Bitte melde dich an, um die Kontaktanfrage zu bestätigen.";
$a->strings["Incorrect identity currently logged in. Please login to <strong>this</strong> profile."] = "Momentan bist du mit einer anderen Identität angemeldet. Bitte melde Dich mit <strong>diesem</strong> Profil an.";
@ -91,8 +974,6 @@ $a->strings["Hide this contact"] = "Verberge diesen Kontakt";
$a->strings["Welcome home %s."] = "Willkommen zurück %s.";
$a->strings["Please confirm your introduction/connection request to %s."] = "Bitte bestätige deine Kontaktanfrage bei %s.";
$a->strings["Confirm"] = "Bestätigen";
$a->strings["[Name Withheld]"] = "[Name unterdrückt]";
$a->strings["Public access denied."] = "Öffentlicher Zugriff verweigert.";
$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Bitte gib die Adresse deines Profils in einem der unterstützten sozialen Netzwerke an:";
$a->strings["<strike>Connect as an email follower</strike> (Coming soon)"] = "<strike>Als E-Mail-Kontakt verbinden</strike> (In Kürze verfügbar)";
$a->strings["If you are not yet a member of the free social web, <a href=\"http://dir.friendica.com/siteinfo\">follow this link to find a public Friendica site and join us today</a>."] = "Wenn du noch kein Mitglied dieses freien sozialen Netzwerks bist, <a href=\"http://dir.friendica.com/siteinfo\">folge diesem Link</a> um einen öffentlichen Friendica-Server zu finden und beizutreten.";
@ -100,80 +981,22 @@ $a->strings["Friend/Connection Request"] = "Freundschafts-/Kontaktanfrage";
$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Beispiele: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca";
$a->strings["Please answer the following:"] = "Bitte beantworte Folgendes:";
$a->strings["Does %s know you?"] = "Kennt %s dich?";
$a->strings["Yes"] = "Ja";
$a->strings["No"] = "Nein";
$a->strings["Add a personal note:"] = "Eine persönliche Notiz beifügen:";
$a->strings["Friendica"] = "Friendica";
$a->strings["StatusNet/Federated Social Web"] = "StatusNet/Federated Social Web";
$a->strings["Diaspora"] = "Diaspora";
$a->strings[" - please do not use this form. Instead, enter %s into your Diaspora search bar."] = " - bitte verwende dieses Formular nicht. Stattdessen suche nach %s in deiner Diaspora Suchleiste.";
$a->strings["Your Identity Address:"] = "Adresse deines Profils:";
$a->strings["Submit Request"] = "Anfrage abschicken";
$a->strings["Cancel"] = "Abbrechen";
$a->strings["Requested profile is not available."] = "Das angefragte Profil ist nicht vorhanden.";
$a->strings["Access to this profile has been restricted."] = "Der Zugriff zu diesem Profil wurde eingeschränkt.";
$a->strings["Tips for New Members"] = "Tipps für neue Nutzer";
$a->strings["Invalid request identifier."] = "Invalid request identifier.";
$a->strings["Discard"] = "Verwerfen";
$a->strings["Ignore"] = "Ignorieren";
$a->strings["System"] = "System";
$a->strings["Network"] = "Netzwerk";
$a->strings["Personal"] = "Persönlich";
$a->strings["Home"] = "Pinnwand";
$a->strings["Introductions"] = "Kontaktanfragen";
$a->strings["Messages"] = "Nachrichten";
$a->strings["Show Ignored Requests"] = "Zeige ignorierte Anfragen";
$a->strings["Hide Ignored Requests"] = "Verberge ignorierte Anfragen";
$a->strings["Notification type: "] = "Benachrichtigungstyp: ";
$a->strings["Friend Suggestion"] = "Kontaktvorschlag";
$a->strings["suggested by %s"] = "vorgeschlagen von %s";
$a->strings["Hide this contact from others"] = "Verberge diesen Kontakt vor anderen";
$a->strings["Post a new friend activity"] = "Neue-Kontakt Nachricht senden";
$a->strings["if applicable"] = "falls anwendbar";
$a->strings["Approve"] = "Genehmigen";
$a->strings["Claims to be known to you: "] = "Behauptet dich zu kennen: ";
$a->strings["yes"] = "ja";
$a->strings["no"] = "nein";
$a->strings["Approve as: "] = "Genehmigen als: ";
$a->strings["Friend"] = "Freund";
$a->strings["Sharer"] = "Teilenden";
$a->strings["Fan/Admirer"] = "Fan/Verehrer";
$a->strings["Friend/Connect Request"] = "Kontakt-/Freundschaftsanfrage";
$a->strings["New Follower"] = "Neuer Bewunderer";
$a->strings["No introductions."] = "Keine Kontaktanfragen.";
$a->strings["Notifications"] = "Benachrichtigungen";
$a->strings["%s liked %s's post"] = "%s mag %ss Beitrag";
$a->strings["%s disliked %s's post"] = "%s mag %ss Beitrag nicht";
$a->strings["%s is now friends with %s"] = "%s ist jetzt mit %s befreundet";
$a->strings["%s created a new post"] = "%s hat einen neuen Beitrag erstellt";
$a->strings["%s commented on %s's post"] = "%s hat %ss Beitrag kommentiert";
$a->strings["No more network notifications."] = "Keine weiteren Netzwerk-Benachrichtigungen.";
$a->strings["Network Notifications"] = "Netzwerk Benachrichtigungen";
$a->strings["No more system notifications."] = "Keine weiteren Systembenachrichtigungen.";
$a->strings["System Notifications"] = "Systembenachrichtigungen";
$a->strings["No more personal notifications."] = "Keine weiteren persönlichen Benachrichtigungen";
$a->strings["Personal Notifications"] = "Persönliche Benachrichtigungen";
$a->strings["No more home notifications."] = "Keine weiteren Pinnwand-Benachrichtigungen";
$a->strings["Home Notifications"] = "Pinnwand Benachrichtigungen";
$a->strings["photo"] = "Foto";
$a->strings["status"] = "Status";
$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s mag %2\$ss %3\$s";
$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s mag %2\$ss %3\$s nicht";
$a->strings["OpenID protocol error. No ID returned."] = "OpenID Protokollfehler. Keine ID zurückgegeben.";
$a->strings["Account not found and OpenID registration is not permitted on this site."] = "Nutzerkonto wurde nicht gefunden, und OpenID-Registrierung ist auf diesem Server nicht gestattet.";
$a->strings["Login failed."] = "Anmeldung fehlgeschlagen.";
$a->strings["Source (bbcode) text:"] = "Quelle (bbcode) Text:";
$a->strings["Source (Diaspora) text to convert to BBcode:"] = "Eingabe (Diaspora) Nach BBCode zu konvertierender Text:";
$a->strings["Source input: "] = "Originaltext:";
$a->strings["bb2html (raw HTML): "] = "bb2html (reines HTML): ";
$a->strings["bb2html: "] = "bb2html: ";
$a->strings["bb2html2bb: "] = "bb2html2bb: ";
$a->strings["bb2md: "] = "bb2md: ";
$a->strings["bb2md2html: "] = "bb2md2html: ";
$a->strings["bb2dia2bb: "] = "bb2dia2bb: ";
$a->strings["bb2md2html2bb: "] = "bb2md2html2bb: ";
$a->strings["Source input (Diaspora format): "] = "Texteingabe (Diaspora Format): ";
$a->strings["diaspora2bb: "] = "diaspora2bb: ";
$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s folgt %2\$s %3\$s";
$a->strings["Global Directory"] = "Weltweites Verzeichnis";
$a->strings["Find on this site"] = "Auf diesem Server suchen";
$a->strings["Site Directory"] = "Verzeichnis";
$a->strings["Gender: "] = "Geschlecht:";
$a->strings["No entries (some entries may be hidden)."] = "Keine Einträge (einige Einträge könnten versteckt sein).";
$a->strings["Do you really want to delete this suggestion?"] = "Möchtest du wirklich diese Empfehlung löschen?";
$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Keine Vorschläge. Falls der Server frisch aufgesetzt wurde, versuche es bitte in 24 Stunden noch einmal.";
$a->strings["Ignore/Hide"] = "Ignorieren/Verbergen";
$a->strings["People Search"] = "Personensuche";
$a->strings["No matches"] = "Keine Übereinstimmungen";
$a->strings["Theme settings updated."] = "Themeneinstellungen aktualisiert.";
$a->strings["Site"] = "Seite";
$a->strings["Users"] = "Nutzer";
@ -181,10 +1004,8 @@ $a->strings["Plugins"] = "Plugins";
$a->strings["Themes"] = "Themen";
$a->strings["DB updates"] = "DB Updates";
$a->strings["Logs"] = "Protokolle";
$a->strings["Admin"] = "Administration";
$a->strings["Plugin Features"] = "Plugin Features";
$a->strings["User registrations waiting for confirmation"] = "Nutzeranmeldungen die auf Bestätigung warten";
$a->strings["Item not found."] = "Beitrag nicht gefunden.";
$a->strings["Normal Account"] = "Normales Konto";
$a->strings["Soapbox Account"] = "Marktschreier-Konto";
$a->strings["Community/Celebrity Account"] = "Forum/Promi-Konto";
@ -199,7 +1020,6 @@ $a->strings["Pending registrations"] = "Anstehende Anmeldungen";
$a->strings["Version"] = "Version";
$a->strings["Active plugins"] = "Aktive Plugins";
$a->strings["Site settings updated."] = "Seiteneinstellungen aktualisiert.";
$a->strings["No special theme for mobile devices"] = "Kein spezielles Theme für mobile Geräte verwenden.";
$a->strings["Multi user instance"] = "Mehrbenutzer Instanz";
$a->strings["Closed"] = "Geschlossen";
$a->strings["Requires approval"] = "Bedarf der Zustimmung";
@ -207,7 +1027,6 @@ $a->strings["Open"] = "Offen";
$a->strings["No SSL policy, links will track page SSL state"] = "Keine SSL Richtlinie, Links werden das verwendete Protokoll beibehalten";
$a->strings["Force all links to use SSL"] = "SSL für alle Links erzwingen";
$a->strings["Self-signed certificate, use SSL for local links only (discouraged)"] = "Selbst-unterzeichnetes Zertifikat, SSL nur für lokale Links verwenden (nicht empfohlen)";
$a->strings["Registration"] = "Registrierung";
$a->strings["File upload"] = "Datei hochladen";
$a->strings["Policies"] = "Regeln";
$a->strings["Advanced"] = "Erweitert";
@ -256,6 +1075,10 @@ $a->strings["Private posts by default for new users"] = "Private Beiträge als S
$a->strings["Set default post permissions for all new members to the default privacy group rather than public."] = "Die Standard-Zugriffsrechte für neue Nutzer werden so gesetzt, dass als Voreinstellung in die private Gruppe gepostet wird anstelle von öffentlichen Beiträgen.";
$a->strings["Don't include post content in email notifications"] = "Inhalte von Beiträgen nicht in Email Benachrichtigungen versenden";
$a->strings["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."] = "Inhalte von Beiträgen/Kommentaren/privaten Nachrichten/usw., zum Datenschutz, nicht in Email-Benachrichtigungen einbinden.";
$a->strings["Disallow public access to addons listed in the apps menu."] = "Öffentlichen Zugriff auf Addons im Apps Menü verbieten.";
$a->strings["Checking this box will restrict addons listed in the apps menu to members only."] = "Wenn ausgewählt werden die im Apps Menü aufgeführten Addons nur angemeldeten Nutzern der Seite zur Verfügung gestellt.";
$a->strings["Don't embed private images in posts"] = "Private Bilder nicht in Beiträgen einbetten.";
$a->strings["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."] = "Ersetze lokal gehostete private Fotos in Beiträgen nicht mit einer eingebetteten Kopie des Bildes. Dies bedeutet, dass Kontakte, die Beiträge mit privaten Fotos erhalten sich zunächst auf den jeweiligen Servern authentifizieren müssen bevor die Bilder geladen und angezeigt werden, was eine gewisse Zeit dauert.";
$a->strings["Block multiple registrations"] = "Unterbinde Mehrfachregistrierung";
$a->strings["Disallow users to register additional accounts for use as pages."] = "Benutzern nicht erlauben, weitere Konten als zusätzliche Profile anzulegen.";
$a->strings["OpenID support"] = "OpenID Unterstützung";
@ -316,12 +1139,9 @@ $a->strings["User '%s' blocked"] = "Nutzer '%s' gesperrt";
$a->strings["select all"] = "Alle auswählen";
$a->strings["User registrations waiting for confirm"] = "Neuanmeldungen, die auf deine Bestätigung warten";
$a->strings["Request date"] = "Anfragedatum";
$a->strings["Name"] = "Name";
$a->strings["Email"] = "E-Mail";
$a->strings["No registrations."] = "Keine Neuanmeldungen.";
$a->strings["Approve"] = "Genehmigen";
$a->strings["Deny"] = "Verwehren";
$a->strings["Block"] = "Sperren";
$a->strings["Unblock"] = "Entsperren";
$a->strings["Site admin"] = "Seitenadministrator";
$a->strings["Account expired"] = "Account ist abgelaufen";
$a->strings["Register date"] = "Anmeldedatum";
@ -335,7 +1155,6 @@ $a->strings["Plugin %s enabled."] = "Plugin %s aktiviert.";
$a->strings["Disable"] = "Ausschalten";
$a->strings["Enable"] = "Einschalten";
$a->strings["Toggle"] = "Umschalten";
$a->strings["Settings"] = "Einstellungen";
$a->strings["Author: "] = "Autor:";
$a->strings["Maintainer: "] = "Betreuer:";
$a->strings["No themes found."] = "Keine Themen gefunden.";
@ -348,28 +1167,146 @@ $a->strings["Debugging"] = "Protokoll führen";
$a->strings["Log file"] = "Protokolldatei";
$a->strings["Must be writable by web server. Relative to your Friendica top-level directory."] = "Webserver muss Schreibrechte besitzen. Abhängig vom Friendica-Installationsverzeichnis.";
$a->strings["Log level"] = "Protokoll-Level";
$a->strings["Update now"] = "Jetzt aktualisieren";
$a->strings["Close"] = "Schließen";
$a->strings["FTP Host"] = "FTP Host";
$a->strings["FTP Path"] = "FTP Pfad";
$a->strings["FTP User"] = "FTP Nutzername";
$a->strings["FTP Password"] = "FTP Passwort";
$a->strings["New Message"] = "Neue Nachricht";
$a->strings["Tag removed"] = "Tag entfernt";
$a->strings["Remove Item Tag"] = "Gegenstands-Tag entfernen";
$a->strings["Select a tag to remove: "] = "Wähle ein Tag zum Entfernen aus: ";
$a->strings["Item not found"] = "Beitrag nicht gefunden";
$a->strings["Edit post"] = "Beitrag bearbeiten";
$a->strings["Event title and start time are required."] = "Der Veranstaltungstitel und die Anfangszeit müssen angegeben werden.";
$a->strings["l, F j"] = "l, F j";
$a->strings["Edit event"] = "Veranstaltung bearbeiten";
$a->strings["Create New Event"] = "Neue Veranstaltung erstellen";
$a->strings["Previous"] = "Vorherige";
$a->strings["Next"] = "Nächste";
$a->strings["hour:minute"] = "Stunde:Minute";
$a->strings["Event details"] = "Veranstaltungsdetails";
$a->strings["Format is %s %s. Starting date and Title are required."] = "Das Format ist %s %s. Beginnzeitpunkt und Titel werden benötigt.";
$a->strings["Event Starts:"] = "Veranstaltungsbeginn:";
$a->strings["Required"] = "Benötigt";
$a->strings["Finish date/time is not known or not relevant"] = "Enddatum/-zeit ist nicht bekannt oder nicht relevant";
$a->strings["Event Finishes:"] = "Veranstaltungsende:";
$a->strings["Adjust for viewer timezone"] = "An Zeitzone des Betrachters anpassen";
$a->strings["Description:"] = "Beschreibung";
$a->strings["Title:"] = "Titel:";
$a->strings["Share this event"] = "Veranstaltung teilen";
$a->strings["Files"] = "Dateien";
$a->strings["Export account"] = "Account exportieren";
$a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = "Exportiere deine Account Informationen und die Kontakte. Verwende dies um ein Backup deines Accounts anzulegen und/oder ihn auf einen anderen Server umzuziehen.";
$a->strings["Export all"] = "Alles exportieren";
$a->strings["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)"] = "Exportiere deine Account Informationen, Kontakte und alle Einträge als JSON Datei. Dies könnte eine sehr große Datei werden und dementsprechend viel Zeit benötigen. Verwende dies um ein komplettes Backup deines Accounts anzulegen (Photos werden nicht exportiert).";
$a->strings["- select -"] = "- auswählen -";
$a->strings["Import"] = "Import";
$a->strings["Move account"] = "Account umziehen";
$a->strings["You can import an account from another Friendica server."] = "Du kannst einen Account von einem anderen Friendica Server importieren.";
$a->strings["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."] = "Du musst deinen Account vom alten Server exportieren und hier hochladen. Wir stellen deinen alten Account mit all deinen Kontakten wieder her. Wir werden auch versuchen all deine Freunde darüber zu informieren, dass du hierher umgezogen bist.";
$a->strings["This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from Diaspora"] = "Dieses Feature ist experimentell. Wir können keine Kontakte vom OStatus Netzwerk (statusnet/identi.ca) oder von Diaspora importieren";
$a->strings["Account file"] = "Account Datei";
$a->strings["To export your accont, go to \"Settings->Export your porsonal data\" and select \"Export account\""] = "Um deinen Account zu exportieren, rufe \"Einstellungen -> Persönliche Daten exportieren\" auf und wähle \"Account exportieren\"";
$a->strings["[Embedded content - reload page to view]"] = "[Eingebetteter Inhalt - Seite neu laden zum Betrachten]";
$a->strings["Contact added"] = "Kontakt hinzugefügt";
$a->strings["This is Friendica, version"] = "Dies ist Friendica, Version";
$a->strings["running at web location"] = "die unter folgender Webadresse zu finden ist";
$a->strings["Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn more about the Friendica project."] = "Bitte besuche <a href=\"http://friendica.com\">Friendica.com</a>, um mehr über das Friendica Projekt zu erfahren.";
$a->strings["Bug reports and issues: please visit"] = "Probleme oder Fehler gefunden? Bitte besuche";
$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Vorschläge, Lob, Spenden usw.: E-Mail an \"Info\" at Friendica - dot com";
$a->strings["Installed plugins/addons/apps:"] = "Installierte Plugins/Erweiterungen/Apps";
$a->strings["No installed plugins/addons/apps"] = "Keine Plugins/Erweiterungen/Apps installiert";
$a->strings["Friend suggestion sent."] = "Kontaktvorschlag gesendet.";
$a->strings["Suggest Friends"] = "Kontakte vorschlagen";
$a->strings["Suggest a friend for %s"] = "Schlage %s einen Kontakt vor";
$a->strings["Group created."] = "Gruppe erstellt.";
$a->strings["Could not create group."] = "Konnte die Gruppe nicht erstellen.";
$a->strings["Group not found."] = "Gruppe nicht gefunden.";
$a->strings["Group name changed."] = "Gruppenname geändert.";
$a->strings["Create a group of contacts/friends."] = "Eine Gruppe von Kontakten/Freunden anlegen.";
$a->strings["Group Name: "] = "Gruppenname:";
$a->strings["Group removed."] = "Gruppe entfernt.";
$a->strings["Unable to remove group."] = "Konnte die Gruppe nicht entfernen.";
$a->strings["Group Editor"] = "Gruppeneditor";
$a->strings["Members"] = "Mitglieder";
$a->strings["No profile"] = "Kein Profil";
$a->strings["Help:"] = "Hilfe:";
$a->strings["Not Found"] = "Nicht gefunden";
$a->strings["Page not found."] = "Seite nicht gefunden.";
$a->strings["No contacts."] = "Keine Kontakte.";
$a->strings["Welcome to %s"] = "Willkommen zu %s";
$a->strings["Access denied."] = "Zugriff verweigert.";
$a->strings["File exceeds size limit of %d"] = "Die Datei ist größer als das erlaubte Limit von %d";
$a->strings["File upload failed."] = "Hochladen der Datei fehlgeschlagen.";
$a->strings["Image exceeds size limit of %d"] = "Bildgröße überschreitet das Limit von %d";
$a->strings["Unable to process image."] = "Konnte das Bild nicht bearbeiten.";
$a->strings["Image upload failed."] = "Hochladen des Bildes gescheitert.";
$a->strings["Total invitation limit exceeded."] = "Limit für Einladungen erreicht.";
$a->strings["%s : Not a valid email address."] = "%s: Keine gültige Email Adresse.";
$a->strings["Please join us on Friendica"] = "Bitte trete bei uns auf Friendica bei";
$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Limit für Einladungen erreicht. Bitte kontaktiere des Administrator der Seite.";
$a->strings["%s : Message delivery failed."] = "%s: Zustellung der Nachricht fehlgeschlagen.";
$a->strings["%d message sent."] = array(
0 => "%d Nachricht gesendet.",
1 => "%d Nachrichten gesendet.",
);
$a->strings["You have no more invitations available"] = "Du hast keine weiteren Einladungen";
$a->strings["Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks."] = "Besuche %s für eine Liste der öffentlichen Server, denen du beitreten kannst. Friendica Mitglieder unterschiedlicher Server können sich sowohl alle miteinander verbinden, als auch mit Mitgliedern anderer Sozialer Netzwerke.";
$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "Um diese Kontaktanfrage zu akzeptieren, besuche und registriere dich bitte bei %s oder einer anderen öffentlichen Friendica Website.";
$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join."] = "Friendica Server verbinden sich alle untereinander, um ein großes datenschutzorientiertes Soziales Netzwerk zu bilden, das von seinen Mitgliedern betrieben und kontrolliert wird. Sie können sich auch mit vielen üblichen Sozialen Netzwerken verbinden. Besuche %s für eine Liste alternativer Friendica Server, denen du beitreten kannst.";
$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Es tut uns leid. Dieses System ist zurzeit nicht dafür konfiguriert, sich mit anderen öffentlichen Seiten zu verbinden oder Mitglieder einzuladen.";
$a->strings["Send invitations"] = "Einladungen senden";
$a->strings["Enter email addresses, one per line:"] = "E-Mail-Adressen eingeben, eine pro Zeile:";
$a->strings["Your message:"] = "Deine Nachricht:";
$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "Du bist herzlich dazu eingeladen, dich mir und anderen guten Freunden auf Friendica anzuschließen - und ein besseres Soziales Netz aufzubauen.";
$a->strings["You will need to supply this invitation code: \$invite_code"] = "Du benötigst den folgenden Einladungscode: \$invite_code";
$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Sobald du registriert bist, kontaktiere mich bitte auf meiner Profilseite:";
$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "Für weitere Informationen über das Friendica Projekt und warum wir es für ein wichtiges Projekt halten, besuche bitte http://friendica.com";
$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "Maximale Anzahl der täglichen Pinnwand Nachrichten für %s ist überschritten. Zustellung fehlgeschlagen.";
$a->strings["No recipient selected."] = "Kein Empfänger gewählt.";
$a->strings["Unable to locate contact information."] = "Konnte die Kontaktinformationen nicht finden.";
$a->strings["Unable to check your home location."] = "Konnte deinen Heimatort nicht bestimmen.";
$a->strings["Message could not be sent."] = "Nachricht konnte nicht gesendet werden.";
$a->strings["Message collection failure."] = "Konnte Nachrichten nicht abrufen.";
$a->strings["Message sent."] = "Nachricht gesendet.";
$a->strings["No recipient."] = "Kein Empfänger.";
$a->strings["Send Private Message"] = "Private Nachricht senden";
$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "Wenn du möchtest, dass %s dir antworten kann, überprüfe deine Privatsphären-Einstellungen und erlaube private Nachrichten von unbekannten Absendern.";
$a->strings["To:"] = "An:";
$a->strings["Subject:"] = "Betreff:";
$a->strings["Time Conversion"] = "Zeitumrechnung";
$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica bietet diese Funktion an, um das Teilen von Events mit Kontakten zu vereinfachen, deren Zeitzone nicht ermittelt werden kann.";
$a->strings["UTC time: %s"] = "UTC Zeit: %s";
$a->strings["Current timezone: %s"] = "Aktuelle Zeitzone: %s";
$a->strings["Converted localtime: %s"] = "Umgerechnete lokale Zeit: %s";
$a->strings["Please select your timezone:"] = "Bitte wähle deine Zeitzone.";
$a->strings["Remote privacy information not available."] = "Entfernte Privatsphäreneinstellungen nicht verfügbar.";
$a->strings["Visible to:"] = "Sichtbar für:";
$a->strings["No valid account found."] = "Kein gültiges Konto gefunden.";
$a->strings["Password reset request issued. Check your email."] = "Zurücksetzen des Passworts eingeleitet. Bitte überprüfe deine E-Mail.";
$a->strings["Password reset requested at %s"] = "Anfrage zum Zurücksetzen des Passworts auf %s erhalten";
$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Anfrage konnte nicht verifiziert werden. (Eventuell hast du bereits eine ähnliche Anfrage gestellt.) Zurücksetzen des Passworts gescheitert.";
$a->strings["Password Reset"] = "Passwort zurücksetzen";
$a->strings["Your password has been reset as requested."] = "Dein Passwort wurde wie gewünscht zurückgesetzt.";
$a->strings["Your new password is"] = "Dein neues Passwort lautet";
$a->strings["Save or copy your new password - and then"] = "Speichere oder kopiere dein neues Passwort - und dann";
$a->strings["click here to login"] = "hier klicken, um dich anzumelden";
$a->strings["Your password may be changed from the <em>Settings</em> page after successful login."] = "Du kannst das Passwort in den <em>Einstellungen</em> ändern, sobald du dich erfolgreich angemeldet hast.";
$a->strings["Your password has been changed at %s"] = "Auf %s wurde dein Passwort geändert";
$a->strings["Forgot your Password?"] = "Hast du dein Passwort vergessen?";
$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Gib deine E-Mail-Adresse an und fordere ein neues Passwort an. Es werden dir dann weitere Informationen per Mail zugesendet.";
$a->strings["Nickname or Email: "] = "Spitzname oder E-Mail:";
$a->strings["Reset"] = "Zurücksetzen";
$a->strings["System down for maintenance"] = "System zur Wartung abgeschaltet";
$a->strings["Manage Identities and/or Pages"] = "Verwalte Identitäten und/oder Seiten";
$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Zwischen verschiedenen Identitäten oder Foren wechseln, die deine Zugangsdaten (E-Mail und Passwort) teilen oder zu denen du „Verwalten“-Befugnisse bekommen hast.";
$a->strings["Select an identity to manage: "] = "Wähle eine Identität zum Verwalten: ";
$a->strings["Profile Match"] = "Profilübereinstimmungen";
$a->strings["No keywords to match. Please add keywords to your default profile."] = "Keine Schlüsselwörter zum Abgleichen gefunden. Bitte füge einige Schlüsselwörter zu deinem Standardprofil hinzu.";
$a->strings["is interested in:"] = "ist interessiert an:";
$a->strings["Unable to locate contact information."] = "Konnte die Kontaktinformationen nicht finden.";
$a->strings["Do you really want to delete this message?"] = "Möchtest du wirklich diese Nachricht löschen?";
$a->strings["Message deleted."] = "Nachricht gelöscht.";
$a->strings["Conversation removed."] = "Unterhaltung gelöscht.";
$a->strings["Please enter a link URL:"] = "Bitte gib die URL des Links ein:";
$a->strings["Send Private Message"] = "Private Nachricht senden";
$a->strings["To:"] = "An:";
$a->strings["Subject:"] = "Betreff:";
$a->strings["Your message:"] = "Deine Nachricht:";
$a->strings["Upload photo"] = "Foto hochladen";
$a->strings["Insert web link"] = "Einen Link einfügen";
$a->strings["No messages."] = "Keine Nachrichten.";
$a->strings["Unknown sender - %s"] = "'Unbekannter Absender - %s";
$a->strings["You and %s"] = "Du und %s";
@ -384,103 +1321,69 @@ $a->strings["Message not available."] = "Nachricht nicht verfügbar.";
$a->strings["Delete message"] = "Nachricht löschen";
$a->strings["No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."] = "Sichere Kommunikation ist nicht verfügbar. <strong>Eventuell</strong> kannst du auf der Profilseite des Absenders antworten.";
$a->strings["Send Reply"] = "Antwort senden";
$a->strings["Item not found"] = "Beitrag nicht gefunden";
$a->strings["Edit post"] = "Beitrag bearbeiten";
$a->strings["upload photo"] = "Bild hochladen";
$a->strings["Attach file"] = "Datei anhängen";
$a->strings["attach file"] = "Datei anhängen";
$a->strings["web link"] = "Weblink";
$a->strings["Insert video link"] = "Video-Adresse einfügen";
$a->strings["video link"] = "Video-Link";
$a->strings["Insert audio link"] = "Audio-Adresse einfügen";
$a->strings["audio link"] = "Audio-Link";
$a->strings["Set your location"] = "Deinen Standort festlegen";
$a->strings["set location"] = "Ort setzen";
$a->strings["Clear browser location"] = "Browser-Standort leeren";
$a->strings["clear location"] = "Ort löschen";
$a->strings["Permission settings"] = "Berechtigungseinstellungen";
$a->strings["CC: email addresses"] = "Cc: E-Mail-Addressen";
$a->strings["Public post"] = "Öffentlicher Beitrag";
$a->strings["Set title"] = "Titel setzen";
$a->strings["Categories (comma-separated list)"] = "Kategorien (kommasepariert)";
$a->strings["Example: bob@example.com, mary@example.com"] = "Z.B.: bob@example.com, mary@example.com";
$a->strings["Profile not found."] = "Profil nicht gefunden.";
$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "Das kann passieren, wenn sich zwei Kontakte gegenseitig eingeladen haben und bereits einer angenommen wurde.";
$a->strings["Response from remote site was not understood."] = "Antwort der Gegenstelle unverständlich.";
$a->strings["Unexpected response from remote site: "] = "Unerwartete Antwort der Gegenstelle: ";
$a->strings["Confirmation completed successfully."] = "Bestätigung erfolgreich abgeschlossen.";
$a->strings["Remote site reported: "] = "Gegenstelle meldet: ";
$a->strings["Temporary failure. Please wait and try again."] = "Zeitweiser Fehler. Bitte warte einige Momente und versuche es dann noch einmal.";
$a->strings["Introduction failed or was revoked."] = "Kontaktanfrage schlug fehl oder wurde zurückgezogen.";
$a->strings["Unable to set contact photo."] = "Konnte das Bild des Kontakts nicht speichern.";
$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s ist nun mit %2\$s befreundet";
$a->strings["No user record found for '%s' "] = "Für '%s' wurde kein Nutzer gefunden";
$a->strings["Our site encryption key is apparently messed up."] = "Der Verschlüsselungsschlüssel unserer Seite ist anscheinend nicht in Ordnung.";
$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "Leere URL für die Seite erhalten oder die URL konnte nicht entschlüsselt werden.";
$a->strings["Contact record was not found for you on our site."] = "Für diesen Kontakt wurde auf unserer Seite kein Eintrag gefunden.";
$a->strings["Site public key not available in contact record for URL %s."] = "Die Kontaktdaten für URL %s enthalten keinen Public Key für den Server.";
$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "Die ID, die uns dein System angeboten hat, ist hier bereits vergeben. Bitte versuche es noch einmal.";
$a->strings["Unable to set your contact credentials on our system."] = "Deine Kontaktreferenzen konnten nicht in unserem System gespeichert werden.";
$a->strings["Unable to update your contact profile details on our system"] = "Die Updates für dein Profil konnten nicht gespeichert werden";
$a->strings["Connection accepted at %s"] = "Auf %s wurde die Verbindung akzeptiert";
$a->strings["%1\$s has joined %2\$s"] = "%1\$s ist %2\$s beigetreten";
$a->strings["Event title and start time are required."] = "Der Veranstaltungstitel und die Anfangszeit müssen angegeben werden.";
$a->strings["l, F j"] = "l, F j";
$a->strings["Edit event"] = "Veranstaltung bearbeiten";
$a->strings["link to source"] = "Link zum Originalbeitrag";
$a->strings["Events"] = "Veranstaltungen";
$a->strings["Create New Event"] = "Neue Veranstaltung erstellen";
$a->strings["Previous"] = "Vorherige";
$a->strings["Next"] = "Nächste";
$a->strings["hour:minute"] = "Stunde:Minute";
$a->strings["Event details"] = "Veranstaltungsdetails";
$a->strings["Format is %s %s. Starting date and Title are required."] = "Das Format ist %s %s. Beginnzeitpunkt und Titel werden benötigt.";
$a->strings["Event Starts:"] = "Veranstaltungsbeginn:";
$a->strings["Required"] = "Benötigt";
$a->strings["Finish date/time is not known or not relevant"] = "Enddatum/-zeit ist nicht bekannt oder nicht relevant";
$a->strings["Event Finishes:"] = "Veranstaltungsende:";
$a->strings["Adjust for viewer timezone"] = "An Zeitzone des Betrachters anpassen";
$a->strings["Description:"] = "Beschreibung";
$a->strings["Location:"] = "Ort:";
$a->strings["Title:"] = "Titel:";
$a->strings["Share this event"] = "Veranstaltung teilen";
$a->strings["Photos"] = "Bilder";
$a->strings["Files"] = "Dateien";
$a->strings["Welcome to %s"] = "Willkommen zu %s";
$a->strings["Remote privacy information not available."] = "Entfernte Privatsphäreneinstellungen nicht verfügbar.";
$a->strings["Visible to:"] = "Sichtbar für:";
$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "Maximale Anzahl der täglichen Pinnwand Nachrichten für %s ist überschritten. Zustellung fehlgeschlagen.";
$a->strings["Unable to check your home location."] = "Konnte deinen Heimatort nicht bestimmen.";
$a->strings["No recipient."] = "Kein Empfänger.";
$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "Wenn du möchtest, dass %s dir antworten kann, überprüfe deine Privatsphären-Einstellungen und erlaube private Nachrichten von unbekannten Absendern.";
$a->strings["Visit %s's profile [%s]"] = "Besuche %ss Profil [%s]";
$a->strings["Edit contact"] = "Kontakt bearbeiten";
$a->strings["Contacts who are not members of a group"] = "Kontakte, die keiner Gruppe zugewiesen sind";
$a->strings["This is Friendica, version"] = "Dies ist Friendica, Version";
$a->strings["running at web location"] = "die unter folgender Webadresse zu finden ist";
$a->strings["Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn more about the Friendica project."] = "Bitte besuche <a href=\"http://friendica.com\">Friendica.com</a>, um mehr über das Friendica Projekt zu erfahren.";
$a->strings["Bug reports and issues: please visit"] = "Probleme oder Fehler gefunden? Bitte besuche";
$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Vorschläge, Lob, Spenden usw.: E-Mail an \"Info\" at Friendica - dot com";
$a->strings["Installed plugins/addons/apps:"] = "Installierte Plugins/Erweiterungen/Apps";
$a->strings["No installed plugins/addons/apps"] = "Keine Plugins/Erweiterungen/Apps installiert";
$a->strings["Remove My Account"] = "Konto löschen";
$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Dein Konto wird endgültig gelöscht. Es gibt keine Möglichkeit, es wiederherzustellen.";
$a->strings["Please enter your password for verification:"] = "Bitte gib dein Passwort zur Verifikation ein:";
$a->strings["Image exceeds size limit of %d"] = "Bildgröße überschreitet das Limit von %d";
$a->strings["Unable to process image."] = "Konnte das Bild nicht bearbeiten.";
$a->strings["Wall Photos"] = "Pinnwand-Bilder";
$a->strings["Image upload failed."] = "Hochladen des Bildes gescheitert.";
$a->strings["Authorize application connection"] = "Verbindung der Applikation autorisieren";
$a->strings["Return to your app and insert this Securty Code:"] = "Gehe zu deiner Anwendung zurück und trage dort folgenden Sicherheitscode ein:";
$a->strings["Please login to continue."] = "Bitte melde dich an um fortzufahren.";
$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Möchtest du dieser Anwendung den Zugriff auf deine Beiträge und Kontakte, sowie das Erstellen neuer Beiträge in deinem Namen gestatten?";
$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s hat %2\$ss %3\$s mit %4\$s getaggt";
$a->strings["Mood"] = "Stimmung";
$a->strings["Set your current mood and tell your friends"] = "Wähle deine aktuelle Stimmung und erzähle sie deinen Freunden";
$a->strings["Search Results For:"] = "Suchergebnisse für:";
$a->strings["Commented Order"] = "Neueste Kommentare";
$a->strings["Sort by Comment Date"] = "Nach Kommentardatum sortieren";
$a->strings["Posted Order"] = "Neueste Beiträge";
$a->strings["Sort by Post Date"] = "Nach Beitragsdatum sortieren";
$a->strings["Personal"] = "Persönlich";
$a->strings["Posts that mention or involve you"] = "Beiträge, in denen es um dich geht";
$a->strings["New"] = "Neue";
$a->strings["Activity Stream - by date"] = "Aktivitäten-Stream - nach Datum";
$a->strings["Shared Links"] = "Geteilte Links";
$a->strings["Interesting Links"] = "Interessante Links";
$a->strings["Starred"] = "Markierte";
$a->strings["Favourite Posts"] = "Favorisierte Beiträge";
$a->strings["Warning: This group contains %s member from an insecure network."] = array(
0 => "Warnung: Diese Gruppe beinhaltet %s Person aus einem unsicheren Netzwerk.",
1 => "Warnung: Diese Gruppe beinhaltet %s Personen aus unsicheren Netzwerken.",
);
$a->strings["Private messages to this group are at risk of public disclosure."] = "Private Nachrichten an diese Gruppe könnten an die Öffentlichkeit geraten.";
$a->strings["No such group"] = "Es gibt keine solche Gruppe";
$a->strings["Group is empty"] = "Gruppe ist leer";
$a->strings["Group: "] = "Gruppe: ";
$a->strings["Contact: "] = "Kontakt: ";
$a->strings["Private messages to this person are at risk of public disclosure."] = "Private Nachrichten an diese Person könnten an die Öffentlichkeit gelangen.";
$a->strings["Invalid contact."] = "Ungültiger Kontakt.";
$a->strings["Invalid request identifier."] = "Invalid request identifier.";
$a->strings["Discard"] = "Verwerfen";
$a->strings["System"] = "System";
$a->strings["Show Ignored Requests"] = "Zeige ignorierte Anfragen";
$a->strings["Hide Ignored Requests"] = "Verberge ignorierte Anfragen";
$a->strings["Notification type: "] = "Benachrichtigungstyp: ";
$a->strings["Friend Suggestion"] = "Kontaktvorschlag";
$a->strings["suggested by %s"] = "vorgeschlagen von %s";
$a->strings["Post a new friend activity"] = "Neue-Kontakt Nachricht senden";
$a->strings["if applicable"] = "falls anwendbar";
$a->strings["Claims to be known to you: "] = "Behauptet dich zu kennen: ";
$a->strings["yes"] = "ja";
$a->strings["no"] = "nein";
$a->strings["Approve as: "] = "Genehmigen als: ";
$a->strings["Friend"] = "Freund";
$a->strings["Sharer"] = "Teilenden";
$a->strings["Fan/Admirer"] = "Fan/Verehrer";
$a->strings["Friend/Connect Request"] = "Kontakt-/Freundschaftsanfrage";
$a->strings["New Follower"] = "Neuer Bewunderer";
$a->strings["No introductions."] = "Keine Kontaktanfragen.";
$a->strings["%s liked %s's post"] = "%s mag %ss Beitrag";
$a->strings["%s disliked %s's post"] = "%s mag %ss Beitrag nicht";
$a->strings["%s is now friends with %s"] = "%s ist jetzt mit %s befreundet";
$a->strings["%s created a new post"] = "%s hat einen neuen Beitrag erstellt";
$a->strings["%s commented on %s's post"] = "%s hat %ss Beitrag kommentiert";
$a->strings["No more network notifications."] = "Keine weiteren Netzwerk-Benachrichtigungen.";
$a->strings["Network Notifications"] = "Netzwerk Benachrichtigungen";
$a->strings["No more system notifications."] = "Keine weiteren Systembenachrichtigungen.";
$a->strings["System Notifications"] = "Systembenachrichtigungen";
$a->strings["No more personal notifications."] = "Keine weiteren persönlichen Benachrichtigungen";
$a->strings["Personal Notifications"] = "Persönliche Benachrichtigungen";
$a->strings["No more home notifications."] = "Keine weiteren Pinnwand-Benachrichtigungen";
$a->strings["Home Notifications"] = "Pinnwand Benachrichtigungen";
$a->strings["Photo Albums"] = "Fotoalben";
$a->strings["Contact Photos"] = "Kontaktbilder";
$a->strings["Upload New Photos"] = "Neue Fotos hochladen";
$a->strings["everybody"] = "jeder";
$a->strings["Contact information unavailable"] = "Kontaktinformationen nicht verfügbar";
$a->strings["Profile Photos"] = "Profilbilder";
$a->strings["Album not found."] = "Album nicht gefunden.";
$a->strings["Delete Album"] = "Album löschen";
$a->strings["Do you really want to delete this photo album and all its photos?"] = "Möchtest du wirklich dieses Foto-Album und all seine Foto löschen?";
@ -498,8 +1401,6 @@ $a->strings["New album name: "] = "Name des neuen Albums: ";
$a->strings["or existing album name: "] = "oder existierender Albumname: ";
$a->strings["Do not show a status post for this upload"] = "Keine Status-Mitteilung für diesen Beitrag anzeigen";
$a->strings["Permissions"] = "Berechtigungen";
$a->strings["Show to Groups"] = "Zeige den Gruppen";
$a->strings["Show to Contacts"] = "Zeige den Kontakten";
$a->strings["Private Photo"] = "Privates Foto";
$a->strings["Public Photo"] = "Öffentliches Foto";
$a->strings["Edit Album"] = "Album bearbeiten";
@ -511,6 +1412,7 @@ $a->strings["Photo not available"] = "Foto nicht verfügbar";
$a->strings["View photo"] = "Fotos ansehen";
$a->strings["Edit photo"] = "Foto bearbeiten";
$a->strings["Use as profile photo"] = "Als Profilbild verwenden";
$a->strings["Private Message"] = "Private Nachricht";
$a->strings["View Full Size"] = "Betrachte Originalgröße";
$a->strings["Tags: "] = "Tags: ";
$a->strings["[Remove any tag]"] = "[Tag entfernen]";
@ -522,138 +1424,12 @@ $a->strings["Add a Tag"] = "Tag hinzufügen";
$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Beispiel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping";
$a->strings["Private photo"] = "Privates Foto";
$a->strings["Public photo"] = "Öffentliches Foto";
$a->strings["Share"] = "Teilen";
$a->strings["I like this (toggle)"] = "Ich mag das (toggle)";
$a->strings["I don't like this (toggle)"] = "Ich mag das nicht (toggle)";
$a->strings["This is you"] = "Das bist du";
$a->strings["Comment"] = "Kommentar";
$a->strings["View Album"] = "Album betrachten";
$a->strings["Recent Photos"] = "Neueste Fotos";
$a->strings["No profile"] = "Kein Profil";
$a->strings["Registration details for %s"] = "Details der Registration von %s";
$a->strings["Registration successful. Please check your email for further instructions."] = "Registrierung erfolgreich. Eine E-Mail mit weiteren Anweisungen wurde an dich gesendet.";
$a->strings["Failed to send email message. Here is the message that failed."] = "Konnte die E-Mail nicht versenden. Hier ist die Nachricht, die nicht gesendet werden konnte.";
$a->strings["Your registration can not be processed."] = "Deine Registrierung konnte nicht verarbeitet werden.";
$a->strings["Registration request at %s"] = "Registrierungsanfrage auf %s";
$a->strings["Your registration is pending approval by the site owner."] = "Deine Registrierung muss noch vom Betreiber der Seite freigegeben werden.";
$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Die maximale Anzahl täglicher Registrierungen auf dieser Seite wurde überschritten. Bitte versuche es morgen noch einmal.";
$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Du kannst dieses Formular auch (optional) mit deiner OpenID ausfüllen, indem du deine OpenID angibst und 'Registrieren' klickst.";
$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Wenn du nicht mit OpenID vertraut bist, lass dieses Feld bitte leer und fülle die restlichen Felder aus.";
$a->strings["Your OpenID (optional): "] = "Deine OpenID (optional): ";
$a->strings["Include your profile in member directory?"] = "Soll dein Profil im Nutzerverzeichnis angezeigt werden?";
$a->strings["Membership on this site is by invitation only."] = "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung möglich.";
$a->strings["Your invitation ID: "] = "ID deiner Einladung: ";
$a->strings["Your Full Name (e.g. Joe Smith): "] = "Vollständiger Name (z.B. Max Mustermann): ";
$a->strings["Your Email Address: "] = "Deine E-Mail-Adresse: ";
$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be '<strong>nickname@\$sitename</strong>'."] = "Wähle einen Spitznamen für dein Profil. Dieser muss mit einem Buchstaben beginnen. Die Adresse deines Profils auf dieser Seite wird '<strong>spitzname@\$sitename</strong>' sein.";
$a->strings["Choose a nickname: "] = "Spitznamen wählen: ";
$a->strings["Register"] = "Registrieren";
$a->strings["No valid account found."] = "Kein gültiges Konto gefunden.";
$a->strings["Password reset request issued. Check your email."] = "Zurücksetzen des Passworts eingeleitet. Bitte überprüfe deine E-Mail.";
$a->strings["Password reset requested at %s"] = "Anfrage zum Zurücksetzen des Passworts auf %s erhalten";
$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Anfrage konnte nicht verifiziert werden. (Eventuell hast du bereits eine ähnliche Anfrage gestellt.) Zurücksetzen des Passworts gescheitert.";
$a->strings["Password Reset"] = "Passwort zurücksetzen";
$a->strings["Your password has been reset as requested."] = "Dein Passwort wurde wie gewünscht zurückgesetzt.";
$a->strings["Your new password is"] = "Dein neues Passwort lautet";
$a->strings["Save or copy your new password - and then"] = "Speichere oder kopiere dein neues Passwort - und dann";
$a->strings["click here to login"] = "hier klicken, um dich anzumelden";
$a->strings["Your password may be changed from the <em>Settings</em> page after successful login."] = "Du kannst das Passwort in den <em>Einstellungen</em> ändern, sobald du dich erfolgreich angemeldet hast.";
$a->strings["Your password has been changed at %s"] = "Auf %s wurde dein Passwort geändert";
$a->strings["Forgot your Password?"] = "Hast du dein Passwort vergessen?";
$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Gib deine E-Mail-Adresse an und fordere ein neues Passwort an. Es werden dir dann weitere Informationen per Mail zugesendet.";
$a->strings["Nickname or Email: "] = "Spitzname oder E-Mail:";
$a->strings["Reset"] = "Zurücksetzen";
$a->strings["System down for maintenance"] = "System zur Wartung abgeschaltet";
$a->strings["Item not available."] = "Beitrag nicht verfügbar.";
$a->strings["Item was not found."] = "Beitrag konnte nicht gefunden werden.";
$a->strings["Applications"] = "Anwendungen";
$a->strings["No installed applications."] = "Keine Applikationen installiert.";
$a->strings["Help:"] = "Hilfe:";
$a->strings["Help"] = "Hilfe";
$a->strings["Could not access contact record."] = "Konnte nicht auf die Kontaktdaten zugreifen.";
$a->strings["Could not locate selected profile."] = "Konnte das ausgewählte Profil nicht finden.";
$a->strings["Contact updated."] = "Kontakt aktualisiert.";
$a->strings["Contact has been blocked"] = "Kontakt wurde blockiert";
$a->strings["Contact has been unblocked"] = "Kontakt wurde wieder freigegeben";
$a->strings["Contact has been ignored"] = "Kontakt wurde ignoriert";
$a->strings["Contact has been unignored"] = "Kontakt wird nicht mehr ignoriert";
$a->strings["Contact has been archived"] = "Kontakt wurde archiviert";
$a->strings["Contact has been unarchived"] = "Kontakt wurde aus dem Archiv geholt";
$a->strings["Do you really want to delete this contact?"] = "Möchtest du wirklich diesen Kontakt löschen?";
$a->strings["Contact has been removed."] = "Kontakt wurde entfernt.";
$a->strings["You are mutual friends with %s"] = "Du hast mit %s eine beidseitige Freundschaft";
$a->strings["You are sharing with %s"] = "Du teilst mit %s";
$a->strings["%s is sharing with you"] = "%s teilt mit Dir";
$a->strings["Private communications are not available for this contact."] = "Private Kommunikation ist für diesen Kontakt nicht verfügbar.";
$a->strings["Never"] = "Niemals";
$a->strings["(Update was successful)"] = "(Aktualisierung war erfolgreich)";
$a->strings["(Update was not successful)"] = "(Aktualisierung war nicht erfolgreich)";
$a->strings["Suggest friends"] = "Kontakte vorschlagen";
$a->strings["Network type: %s"] = "Netzwerktyp: %s";
$a->strings["%d contact in common"] = array(
0 => "%d gemeinsamer Kontakt",
1 => "%d gemeinsame Kontakte",
);
$a->strings["View all contacts"] = "Alle Kontakte anzeigen";
$a->strings["Toggle Blocked status"] = "Geblockt-Status ein-/ausschalten";
$a->strings["Unignore"] = "Ignorieren aufheben";
$a->strings["Toggle Ignored status"] = "Ignoriert-Status ein-/ausschalten";
$a->strings["Unarchive"] = "Aus Archiv zurückholen";
$a->strings["Archive"] = "Archivieren";
$a->strings["Toggle Archive status"] = "Archiviert-Status ein-/ausschalten";
$a->strings["Repair"] = "Reparieren";
$a->strings["Advanced Contact Settings"] = "Fortgeschrittene Kontakteinstellungen";
$a->strings["Communications lost with this contact!"] = "Verbindungen mit diesem Kontakt verloren!";
$a->strings["Contact Editor"] = "Kontakt Editor";
$a->strings["Profile Visibility"] = "Profil-Sichtbarkeit";
$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Bitte wähle eines deiner Profile das angezeigt werden soll, wenn %s dein Profil aufruft.";
$a->strings["Contact Information / Notes"] = "Kontakt Informationen / Notizen";
$a->strings["Edit contact notes"] = "Notizen zum Kontakt bearbeiten";
$a->strings["Block/Unblock contact"] = "Kontakt blockieren/freischalten";
$a->strings["Ignore contact"] = "Ignoriere den Kontakt";
$a->strings["Repair URL settings"] = "URL Einstellungen reparieren";
$a->strings["View conversations"] = "Unterhaltungen anzeigen";
$a->strings["Delete contact"] = "Lösche den Kontakt";
$a->strings["Last update:"] = "letzte Aktualisierung:";
$a->strings["Update public posts"] = "Öffentliche Beiträge aktualisieren";
$a->strings["Currently blocked"] = "Derzeit geblockt";
$a->strings["Currently ignored"] = "Derzeit ignoriert";
$a->strings["Currently archived"] = "Momentan archiviert";
$a->strings["Replies/likes to your public posts <strong>may</strong> still be visible"] = "Antworten/Likes auf deine öffentlichen Beiträge <strong>könnten</strong> weiterhin sichtbar sein";
$a->strings["Suggestions"] = "Kontaktvorschläge";
$a->strings["Suggest potential friends"] = "Freunde vorschlagen";
$a->strings["All Contacts"] = "Alle Kontakte";
$a->strings["Show all contacts"] = "Alle Kontakte anzeigen";
$a->strings["Unblocked"] = "Ungeblockt";
$a->strings["Only show unblocked contacts"] = "Nur nicht-blockierte Kontakte anzeigen";
$a->strings["Blocked"] = "Geblockt";
$a->strings["Only show blocked contacts"] = "Nur blockierte Kontakte anzeigen";
$a->strings["Ignored"] = "Ignoriert";
$a->strings["Only show ignored contacts"] = "Nur ignorierte Kontakte anzeigen";
$a->strings["Archived"] = "Archiviert";
$a->strings["Only show archived contacts"] = "Nur archivierte Kontakte anzeigen";
$a->strings["Hidden"] = "Verborgen";
$a->strings["Only show hidden contacts"] = "Nur verborgene Kontakte anzeigen";
$a->strings["Mutual Friendship"] = "Beidseitige Freundschaft";
$a->strings["is a fan of yours"] = "ist ein Fan von dir";
$a->strings["you are a fan of"] = "du bist Fan von";
$a->strings["Contacts"] = "Kontakte";
$a->strings["Search your contacts"] = "Suche in deinen Kontakten";
$a->strings["Finding: "] = "Funde: ";
$a->strings["Find"] = "Finde";
$a->strings["Common Friends"] = "Gemeinsame Freunde";
$a->strings["No contacts in common."] = "Keine gemeinsamen Kontakte.";
$a->strings["Contact added"] = "Kontakt hinzugefügt";
$a->strings["Import"] = "Import";
$a->strings["Move account"] = "Account umziehen";
$a->strings["You can import an account from another Friendica server."] = "Du kannst einen Account von einem anderen Friendica Server importieren.";
$a->strings["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."] = "Du musst deinen Account vom alten Server exportieren und hier hochladen. Wir stellen deinen alten Account mit all deinen Kontakten wieder her. Wir werden auch versuchen all deine Freunde darüber zu informieren, dass du hierher umgezogen bist.";
$a->strings["This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from Diaspora"] = "Dieses Feature ist experimentell. Wir können keine Kontakte vom OStatus Netzwerk (statusnet/identi.ca) oder von Diaspora importieren";
$a->strings["Account file"] = "Account Datei";
$a->strings["To export your accont, go to \"Settings->Export your porsonal data\" and select \"Export account\""] = "Um deinen Account zu exportieren, rufe \"Einstellungen -> Persönliche Daten exportieren\" auf und wähle \"Account exportieren\"";
$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s folgt %2\$s %3\$s";
$a->strings["Friends of %s"] = "Freunde von %s";
$a->strings["No friends to display."] = "Keine Freunde zum Anzeigen.";
$a->strings["Tag removed"] = "Tag entfernt";
$a->strings["Remove Item Tag"] = "Gegenstands-Tag entfernen";
$a->strings["Select a tag to remove: "] = "Wähle ein Tag zum Entfernen aus: ";
$a->strings["Remove"] = "Entfernen";
$a->strings["Welcome to Friendica"] = "Willkommen bei Friendica";
$a->strings["New Member Checklist"] = "Checkliste für neue Mitglieder";
$a->strings["We would like to offer some tips and links to help make your experience enjoyable. Click any item to visit the relevant page. A link to this page will be visible from your home page for two weeks after your initial registration and then will quietly disappear."] = "Wir möchten dir einige Tipps und Links anbieten, die dir helfen könnten, den Einstieg angenehmer zu machen. Klicke auf ein Element, um die entsprechende Seite zu besuchen. Ein Link zu dieser Seite hier bleibt für dich an Deiner Pinnwand für zwei Wochen nach dem Registrierungsdatum sichtbar und wird dann verschwinden.";
@ -663,7 +1439,6 @@ $a->strings["On your <em>Quick Start</em> page - find a brief introduction to yo
$a->strings["Go to Your Settings"] = "Gehe zu deinen Einstellungen";
$a->strings["On your <em>Settings</em> page - change your initial password. Also make a note of your Identity Address. This looks just like an email address - and will be useful in making friends on the free social web."] = "Ändere bitte unter <em>Einstellungen</em> dein Passwort. Außerdem merke dir deine Identifikationsadresse. Diese sieht aus wie eine E-Mail-Adresse und wird benötigt, um Freundschaften mit anderen im Friendica Netzwerk zu schliessen.";
$a->strings["Review the other settings, particularly the privacy settings. An unpublished directory listing is like having an unlisted phone number. In general, you should probably publish your listing - unless all of your friends and potential friends know exactly how to find you."] = "Überprüfe die restlichen Einstellungen, insbesondere die Einstellungen zur Privatsphäre. Wenn du dein Profil nicht veröffentlichst, ist das als wenn du deine Telefonnummer nicht ins Telefonbuch einträgst. Im Allgemeinen solltest du es veröffentlichen - außer all deine Freunde und potentiellen Freunde wissen genau, wie sie dich finden können.";
$a->strings["Profile"] = "Profil";
$a->strings["Upload Profile Photo"] = "Profilbild hochladen";
$a->strings["Upload a profile photo if you have not done so already. Studies have shown that people with real photos of themselves are ten times more likely to make friends than people who do not."] = "Lade ein Profilbild hoch falls du es noch nicht getan hast. Studien haben gezeigt, dass es zehnmal wahrscheinlicher ist neue Freunde zu finden, wenn du ein Bild von dir selbst verwendest, als wenn du dies nicht tust.";
$a->strings["Edit Your Profile"] = "Editiere dein Profil";
@ -671,7 +1446,6 @@ $a->strings["Edit your <strong>default</strong> profile to your liking. Review t
$a->strings["Profile Keywords"] = "Profil Schlüsselbegriffe";
$a->strings["Set some public keywords for your default profile which describe your interests. We may be able to find other people with similar interests and suggest friendships."] = "Trage ein paar öffentliche Stichwörter in dein Standardprofil ein, die deine Interessen beschreiben. Eventuell sind wir in der Lage Leute zu finden, die deine Interessen teilen und können dir dann Kontakte vorschlagen.";
$a->strings["Connecting"] = "Verbindungen knüpfen";
$a->strings["Facebook"] = "Facebook";
$a->strings["Authorise the Facebook Connector if you currently have a Facebook account and we will (optionally) import all your Facebook friends and conversations."] = "Richte die Verbindung zu Facebook ein, wenn du im Augenblick ein Facebook-Konto hast, und (optional) deine Facebook-Freunde und -Unterhaltungen importieren willst.";
$a->strings["<em>If</em> this is your own personal server, installing the Facebook addon may ease your transition to the free social web."] = "<em>Wenn</em> dies dein privater Server ist, könnte die Installation des Facebook Connectors deinen Umzug ins freie soziale Netz angenehmer gestalten.";
$a->strings["Importing Emails"] = "Emails Importieren";
@ -682,7 +1456,6 @@ $a->strings["Go to Your Site's Directory"] = "Gehe zum Verzeichnis deiner Friend
$a->strings["The Directory page lets you find other people in this network or other federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on their profile page. Provide your own Identity Address if requested."] = "Über die Verzeichnisseite kannst du andere Personen auf diesem Server oder anderen verknüpften Seiten finden. Halte nach einem <em>Verbinden</em> oder <em>Folgen</em> Link auf deren Profilseiten Ausschau und gib deine eigene Profiladresse an, falls du danach gefragt wirst.";
$a->strings["Finding New People"] = "Neue Leute kennenlernen";
$a->strings["On the side panel of the Contacts page are several tools to find new friends. We can match people by interest, look up people by name or interest, and provide suggestions based on network relationships. On a brand new site, friend suggestions will usually begin to be populated within 24 hours."] = "Im seitlichen Bedienfeld der Kontakteseite gibt es diverse Werkzeuge, um neue Freunde zu finden. Wir können Menschen mit den gleichen Interessen finden, anhand von Namen oder Interessen suchen oder aber aufgrund vorhandener Kontakte neue Freunde vorschlagen.\nAuf einer brandneuen - soeben erstellten - Seite starten die Kontaktvorschläge innerhalb von 24 Stunden.";
$a->strings["Groups"] = "Gruppen";
$a->strings["Group Your Contacts"] = "Gruppiere deine Kontakte";
$a->strings["Once you have made some friends, organize them into private conversation groups from the sidebar of your Contacts page and then you can interact with each group privately on your Network page."] = "Sobald du einige Freunde gefunden hast, organisiere sie in Gruppen zur privaten Kommunikation im Seitenmenü der Kontakte-Seite. Du kannst dann mit jeder dieser Gruppen von der Netzwerkseite aus privat interagieren.";
$a->strings["Why Aren't My Posts Public?"] = "Warum sind meine Beiträge nicht öffentlich?";
@ -690,329 +1463,10 @@ $a->strings["Friendica respects your privacy. By default, your posts will only s
$a->strings["Getting Help"] = "Hilfe bekommen";
$a->strings["Go to the Help Section"] = "Zum Hilfe Abschnitt gehen";
$a->strings["Our <strong>help</strong> pages may be consulted for detail on other program features and resources."] = "Unsere <strong>Hilfe</strong> Seiten können herangezogen werden, um weitere Einzelheiten zu andern Programm Features zu erhalten.";
$a->strings["Remove term"] = "Begriff entfernen";
$a->strings["Saved Searches"] = "Gespeicherte Suchen";
$a->strings["Search"] = "Suche";
$a->strings["No results."] = "Keine Ergebnisse.";
$a->strings["Total invitation limit exceeded."] = "Limit für Einladungen erreicht.";
$a->strings["%s : Not a valid email address."] = "%s: Keine gültige Email Adresse.";
$a->strings["Please join us on Friendica"] = "Bitte trete bei uns auf Friendica bei";
$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Limit für Einladungen erreicht. Bitte kontaktiere des Administrator der Seite.";
$a->strings["%s : Message delivery failed."] = "%s: Zustellung der Nachricht fehlgeschlagen.";
$a->strings["%d message sent."] = array(
0 => "%d Nachricht gesendet.",
1 => "%d Nachrichten gesendet.",
);
$a->strings["You have no more invitations available"] = "Du hast keine weiteren Einladungen";
$a->strings["Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks."] = "Besuche %s für eine Liste der öffentlichen Server, denen du beitreten kannst. Friendica Mitglieder unterschiedlicher Server können sich sowohl alle miteinander verbinden, als auch mit Mitgliedern anderer Sozialer Netzwerke.";
$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "Um diese Kontaktanfrage zu akzeptieren, besuche und registriere dich bitte bei %s oder einer anderen öffentlichen Friendica Website.";
$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join."] = "Friendica Server verbinden sich alle untereinander, um ein großes datenschutzorientiertes Soziales Netzwerk zu bilden, das von seinen Mitgliedern betrieben und kontrolliert wird. Sie können sich auch mit vielen üblichen Sozialen Netzwerken verbinden. Besuche %s für eine Liste alternativer Friendica Server, denen du beitreten kannst.";
$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Es tut uns leid. Dieses System ist zurzeit nicht dafür konfiguriert, sich mit anderen öffentlichen Seiten zu verbinden oder Mitglieder einzuladen.";
$a->strings["Send invitations"] = "Einladungen senden";
$a->strings["Enter email addresses, one per line:"] = "E-Mail-Adressen eingeben, eine pro Zeile:";
$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "Du bist herzlich dazu eingeladen, dich mir und anderen guten Freunden auf Friendica anzuschließen - und ein besseres Soziales Netz aufzubauen.";
$a->strings["You will need to supply this invitation code: \$invite_code"] = "Du benötigst den folgenden Einladungscode: \$invite_code";
$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Sobald du registriert bist, kontaktiere mich bitte auf meiner Profilseite:";
$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "Für weitere Informationen über das Friendica Projekt und warum wir es für ein wichtiges Projekt halten, besuche bitte http://friendica.com";
$a->strings["Account settings"] = "Kontoeinstellungen";
$a->strings["Additional features"] = "Zusätzliche Features";
$a->strings["Display settings"] = "Anzeige-Einstellungen";
$a->strings["Connector settings"] = "Connector-Einstellungen";
$a->strings["Plugin settings"] = "Plugin-Einstellungen";
$a->strings["Connected apps"] = "Verbundene Programme";
$a->strings["Export personal data"] = "Persönliche Daten exportieren";
$a->strings["Remove account"] = "Konto löschen";
$a->strings["Missing some important data!"] = "Wichtige Daten fehlen!";
$a->strings["Update"] = "Aktualisierungen";
$a->strings["Failed to connect with email account using the settings provided."] = "Verbindung zum E-Mail-Konto mit den angegebenen Einstellungen nicht möglich.";
$a->strings["Email settings updated."] = "E-Mail Einstellungen bearbeitet.";
$a->strings["Features updated"] = "Features aktualisiert";
$a->strings["Passwords do not match. Password unchanged."] = "Die Passwörter stimmen nicht überein. Das Passwort bleibt unverändert.";
$a->strings["Empty passwords are not allowed. Password unchanged."] = "Leere Passwörter sind nicht erlaubt. Passwort bleibt unverändert.";
$a->strings["Password changed."] = "Passwort ändern.";
$a->strings["Password update failed. Please try again."] = "Aktualisierung des Passworts gescheitert, bitte versuche es noch einmal.";
$a->strings[" Please use a shorter name."] = " Bitte verwende einen kürzeren Namen.";
$a->strings[" Name too short."] = " Name ist zu kurz.";
$a->strings[" Not valid email."] = " Keine gültige E-Mail.";
$a->strings[" Cannot change to that email."] = "Ändern der E-Mail nicht möglich. ";
$a->strings["Private forum has no privacy permissions. Using default privacy group."] = "Für das private Forum sind keine Zugriffsrechte eingestellt. Die voreingestellte Gruppe für neue Kontakte wird benutzt.";
$a->strings["Private forum has no privacy permissions and no default privacy group."] = "Für das private Forum sind keine Zugriffsrechte eingestellt, und es gibt keine voreingestellte Gruppe für neue Kontakte.";
$a->strings["Settings updated."] = "Einstellungen aktualisiert.";
$a->strings["Add application"] = "Programm hinzufügen";
$a->strings["Consumer Key"] = "Consumer Key";
$a->strings["Consumer Secret"] = "Consumer Secret";
$a->strings["Redirect"] = "Umleiten";
$a->strings["Icon url"] = "Icon URL";
$a->strings["You can't edit this application."] = "Du kannst dieses Programm nicht bearbeiten.";
$a->strings["Connected Apps"] = "Verbundene Programme";
$a->strings["Client key starts with"] = "Anwenderschlüssel beginnt mit";
$a->strings["No name"] = "Kein Name";
$a->strings["Remove authorization"] = "Autorisierung entziehen";
$a->strings["No Plugin settings configured"] = "Keine Plugin-Einstellungen konfiguriert";
$a->strings["Plugin Settings"] = "Plugin-Einstellungen";
$a->strings["Off"] = "Aus";
$a->strings["On"] = "An";
$a->strings["Additional Features"] = "Zusätzliche Features";
$a->strings["Built-in support for %s connectivity is %s"] = "Eingebaute Unterstützung für Verbindungen zu %s ist %s";
$a->strings["enabled"] = "eingeschaltet";
$a->strings["disabled"] = "ausgeschaltet";
$a->strings["StatusNet"] = "StatusNet";
$a->strings["Email access is disabled on this site."] = "Zugriff auf E-Mails für diese Seite deaktiviert.";
$a->strings["Connector Settings"] = "Verbindungs-Einstellungen";
$a->strings["Email/Mailbox Setup"] = "E-Mail/Postfach-Einstellungen";
$a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "Wenn du mit E-Mail-Kontakten über diesen Service kommunizieren möchtest (optional), gib bitte die Einstellungen für dein Postfach an.";
$a->strings["Last successful email check:"] = "Letzter erfolgreicher E-Mail Check";
$a->strings["IMAP server name:"] = "IMAP-Server-Name:";
$a->strings["IMAP port:"] = "IMAP-Port:";
$a->strings["Security:"] = "Sicherheit:";
$a->strings["None"] = "Keine";
$a->strings["Email login name:"] = "E-Mail-Login-Name:";
$a->strings["Email password:"] = "E-Mail-Passwort:";
$a->strings["Reply-to address:"] = "Reply-to Adresse:";
$a->strings["Send public posts to all email contacts:"] = "Sende öffentliche Beiträge an alle E-Mail-Kontakte:";
$a->strings["Action after import:"] = "Aktion nach Import:";
$a->strings["Mark as seen"] = "Als gelesen markieren";
$a->strings["Move to folder"] = "In einen Ordner verschieben";
$a->strings["Move to folder:"] = "In diesen Ordner verschieben:";
$a->strings["Display Settings"] = "Anzeige-Einstellungen";
$a->strings["Display Theme:"] = "Theme:";
$a->strings["Mobile Theme:"] = "Mobiles Theme";
$a->strings["Update browser every xx seconds"] = "Browser alle xx Sekunden aktualisieren";
$a->strings["Minimum of 10 seconds, no maximum"] = "Minimal 10 Sekunden, kein Maximum";
$a->strings["Number of items to display per page:"] = "Zahl der Beiträge, die pro Netzwerkseite angezeigt werden sollen: ";
$a->strings["Maximum of 100 items"] = "Maximal 100 Beiträge";
$a->strings["Don't show emoticons"] = "Keine Smilies anzeigen";
$a->strings["Normal Account Page"] = "Normales Konto";
$a->strings["This account is a normal personal profile"] = "Dieses Konto ist ein normales persönliches Profil";
$a->strings["Soapbox Page"] = "Marktschreier-Konto";
$a->strings["Automatically approve all connection/friend requests as read-only fans"] = "Kontaktanfragen werden automatisch als Nurlese-Fans akzeptiert";
$a->strings["Community Forum/Celebrity Account"] = "Forum/Promi-Konto";
$a->strings["Automatically approve all connection/friend requests as read-write fans"] = "Kontaktanfragen werden automatisch als Lese-und-Schreib-Fans akzeptiert";
$a->strings["Automatic Friend Page"] = "Automatische Freunde Seite";
$a->strings["Automatically approve all connection/friend requests as friends"] = "Kontaktanfragen werden automatisch als Freund akzeptiert";
$a->strings["Private Forum [Experimental]"] = "Privates Forum [Versuchsstadium]";
$a->strings["Private forum - approved members only"] = "Privates Forum, nur für Mitglieder";
$a->strings["OpenID:"] = "OpenID:";
$a->strings["(Optional) Allow this OpenID to login to this account."] = "(Optional) Erlaube die Anmeldung für dieses Konto mit dieser OpenID.";
$a->strings["Publish your default profile in your local site directory?"] = "Darf dein Standardprofil im Verzeichnis dieses Servers veröffentlicht werden?";
$a->strings["Publish your default profile in the global social directory?"] = "Darf dein Standardprofil im weltweiten Verzeichnis veröffentlicht werden?";
$a->strings["Hide your contact/friend list from viewers of your default profile?"] = "Liste der Kontakte vor Betrachtern des Standardprofils verbergen?";
$a->strings["Hide your profile details from unknown viewers?"] = "Profil-Details vor unbekannten Betrachtern verbergen?";
$a->strings["Allow friends to post to your profile page?"] = "Dürfen deine Kontakte auf deine Pinnwand schreiben?";
$a->strings["Allow friends to tag your posts?"] = "Dürfen deine Kontakte deine Beiträge mit Schlagwörtern versehen?";
$a->strings["Allow us to suggest you as a potential friend to new members?"] = "Dürfen wir dich neuen Mitgliedern als potentiellen Kontakt vorschlagen?";
$a->strings["Permit unknown people to send you private mail?"] = "Dürfen dir Unbekannte private Nachrichten schicken?";
$a->strings["Profile is <strong>not published</strong>."] = "Profil ist <strong>nicht veröffentlicht</strong>.";
$a->strings["or"] = "oder";
$a->strings["Your Identity Address is"] = "Die Adresse deines Profils lautet:";
$a->strings["Automatically expire posts after this many days:"] = "Beiträge verfallen automatisch nach dieser Anzahl von Tagen:";
$a->strings["If empty, posts will not expire. Expired posts will be deleted"] = "Wenn leer verfallen Beiträge nie automatisch. Verfallene Beiträge werden gelöscht.";
$a->strings["Advanced expiration settings"] = "Erweiterte Verfallseinstellungen";
$a->strings["Advanced Expiration"] = "Erweitertes Verfallen";
$a->strings["Expire posts:"] = "Beiträge verfallen lassen:";
$a->strings["Expire personal notes:"] = "Persönliche Notizen verfallen lassen:";
$a->strings["Expire starred posts:"] = "Markierte Beiträge verfallen lassen:";
$a->strings["Expire photos:"] = "Fotos verfallen lassen:";
$a->strings["Only expire posts by others:"] = "Nur Beiträge anderer verfallen:";
$a->strings["Account Settings"] = "Kontoeinstellungen";
$a->strings["Password Settings"] = "Passwort-Einstellungen";
$a->strings["New Password:"] = "Neues Passwort:";
$a->strings["Confirm:"] = "Bestätigen:";
$a->strings["Leave password fields blank unless changing"] = "Lass die Passwort-Felder leer, außer du willst das Passwort ändern";
$a->strings["Basic Settings"] = "Grundeinstellungen";
$a->strings["Full Name:"] = "Kompletter Name:";
$a->strings["Email Address:"] = "E-Mail-Adresse:";
$a->strings["Your Timezone:"] = "Deine Zeitzone:";
$a->strings["Default Post Location:"] = "Standardstandort:";
$a->strings["Use Browser Location:"] = "Standort des Browsers verwenden:";
$a->strings["Security and Privacy Settings"] = "Sicherheits- und Privatsphäre-Einstellungen";
$a->strings["Maximum Friend Requests/Day:"] = "Maximale Anzahl von Freundschaftsanfragen/Tag:";
$a->strings["(to prevent spam abuse)"] = "(um SPAM zu vermeiden)";
$a->strings["Default Post Permissions"] = "Standard-Zugriffsrechte für Beiträge";
$a->strings["(click to open/close)"] = "(klicke zum öffnen/schließen)";
$a->strings["Default Private Post"] = "Privater Standardbeitrag";
$a->strings["Default Public Post"] = "Öffentlicher Standardbeitrag";
$a->strings["Default Permissions for New Posts"] = "Standardberechtigungen für neue Beiträge";
$a->strings["Maximum private messages per day from unknown people:"] = "Maximale Anzahl privater Nachrichten von Unbekannten pro Tag:";
$a->strings["Notification Settings"] = "Benachrichtigungseinstellungen";
$a->strings["By default post a status message when:"] = "Standardmäßig eine Statusnachricht posten, wenn:";
$a->strings["accepting a friend request"] = " du eine Kontaktanfrage akzeptierst";
$a->strings["joining a forum/community"] = " du einem Forum/einer Gemeinschaftsseite beitrittst";
$a->strings["making an <em>interesting</em> profile change"] = " du eine <em>interessante</em> Änderung an deinem Profil durchführst";
$a->strings["Send a notification email when:"] = "Benachrichtigungs-E-Mail senden wenn:";
$a->strings["You receive an introduction"] = " du eine Kontaktanfrage erhältst";
$a->strings["Your introductions are confirmed"] = " eine deiner Kontaktanfragen akzeptiert wurde";
$a->strings["Someone writes on your profile wall"] = " jemand etwas auf deine Pinnwand schreibt";
$a->strings["Someone writes a followup comment"] = " jemand auch einen Kommentar verfasst";
$a->strings["You receive a private message"] = " du eine private Nachricht erhältst";
$a->strings["You receive a friend suggestion"] = " du eine Empfehlung erhältst";
$a->strings["You are tagged in a post"] = " du in einem Beitrag erwähnt wirst";
$a->strings["You are poked/prodded/etc. in a post"] = " du von jemandem angestupst oder sonstwie behandelt wirst";
$a->strings["Advanced Account/Page Type Settings"] = "Erweiterte Konto-/Seitentyp-Einstellungen";
$a->strings["Change the behaviour of this account for special situations"] = "Verhalten dieses Kontos in bestimmten Situationen:";
$a->strings["Requested profile is not available."] = "Das angefragte Profil ist nicht vorhanden.";
$a->strings["Access to this profile has been restricted."] = "Der Zugriff zu diesem Profil wurde eingeschränkt.";
$a->strings["Tips for New Members"] = "Tipps für neue Nutzer";
$a->strings["Item has been removed."] = "Eintrag wurde entfernt.";
$a->strings["People Search"] = "Personensuche";
$a->strings["No matches"] = "Keine Übereinstimmungen";
$a->strings["Profile deleted."] = "Profil gelöscht.";
$a->strings["Profile-"] = "Profil-";
$a->strings["New profile created."] = "Neues Profil angelegt.";
$a->strings["Profile unavailable to clone."] = "Profil nicht zum Duplizieren verfügbar.";
$a->strings["Profile Name is required."] = "Profilname ist erforderlich.";
$a->strings["Marital Status"] = "Familienstand";
$a->strings["Romantic Partner"] = "Romanze";
$a->strings["Likes"] = "Likes";
$a->strings["Dislikes"] = "Dislikes";
$a->strings["Work/Employment"] = "Arbeit / Beschäftigung";
$a->strings["Religion"] = "Religion";
$a->strings["Political Views"] = "Politische Ansichten";
$a->strings["Gender"] = "Geschlecht";
$a->strings["Sexual Preference"] = "Sexuelle Vorlieben";
$a->strings["Homepage"] = "Webseite";
$a->strings["Interests"] = "Interessen";
$a->strings["Address"] = "Adresse";
$a->strings["Location"] = "Wohnort";
$a->strings["Profile updated."] = "Profil aktualisiert.";
$a->strings[" and "] = " und ";
$a->strings["public profile"] = "öffentliches Profil";
$a->strings["%1\$s changed %2\$s to &ldquo;%3\$s&rdquo;"] = "%1\$s hat %2\$s geändert auf &ldquo;%3\$s&rdquo;";
$a->strings[" - Visit %1\$s's %2\$s"] = " %1\$ss %2\$s besuchen";
$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s hat folgendes aktualisiert %2\$s, verändert wurde %3\$s.";
$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Liste der Kontakte vor Betrachtern dieses Profils verbergen?";
$a->strings["Edit Profile Details"] = "Profil bearbeiten";
$a->strings["Change Profile Photo"] = "Profilbild ändern";
$a->strings["View this profile"] = "Dieses Profil anzeigen";
$a->strings["Create a new profile using these settings"] = "Neues Profil anlegen und diese Einstellungen verwenden";
$a->strings["Clone this profile"] = "Dieses Profil duplizieren";
$a->strings["Delete this profile"] = "Dieses Profil löschen";
$a->strings["Profile Name:"] = "Profilname:";
$a->strings["Your Full Name:"] = "Dein kompletter Name:";
$a->strings["Title/Description:"] = "Titel/Beschreibung:";
$a->strings["Your Gender:"] = "Dein Geschlecht:";
$a->strings["Birthday (%s):"] = "Geburtstag (%s):";
$a->strings["Street Address:"] = "Adresse:";
$a->strings["Locality/City:"] = "Wohnort:";
$a->strings["Postal/Zip Code:"] = "Postleitzahl:";
$a->strings["Country:"] = "Land:";
$a->strings["Region/State:"] = "Region/Bundesstaat:";
$a->strings["<span class=\"heart\">&hearts;</span> Marital Status:"] = "<span class=\"heart\">&hearts;</span> Beziehungsstatus:";
$a->strings["Who: (if applicable)"] = "Wer: (falls anwendbar)";
$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Beispiele: cathy123, Cathy Williams, cathy@example.com";
$a->strings["Since [date]:"] = "Seit [Datum]:";
$a->strings["Sexual Preference:"] = "Sexuelle Vorlieben:";
$a->strings["Homepage URL:"] = "Adresse der Homepage:";
$a->strings["Hometown:"] = "Heimatort:";
$a->strings["Political Views:"] = "Politische Ansichten:";
$a->strings["Religious Views:"] = "Religiöse Ansichten:";
$a->strings["Public Keywords:"] = "Öffentliche Schlüsselwörter:";
$a->strings["Private Keywords:"] = "Private Schlüsselwörter:";
$a->strings["Likes:"] = "Likes:";
$a->strings["Dislikes:"] = "Dislikes:";
$a->strings["Example: fishing photography software"] = "Beispiel: Fischen Fotografie Software";
$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(Wird verwendet, um potentielle Freunde zu finden, könnte von Fremden eingesehen werden)";
$a->strings["(Used for searching profiles, never shown to others)"] = "(Wird für die Suche nach Profilen verwendet und niemals veröffentlicht)";
$a->strings["Tell us about yourself..."] = "Erzähle uns ein bisschen von dir …";
$a->strings["Hobbies/Interests"] = "Hobbies/Interessen";
$a->strings["Contact information and Social Networks"] = "Kontaktinformationen und Soziale Netzwerke";
$a->strings["Musical interests"] = "Musikalische Interessen";
$a->strings["Books, literature"] = "Literatur/Bücher";
$a->strings["Television"] = "Fernsehen";
$a->strings["Film/dance/culture/entertainment"] = "Filme/Tänze/Kultur/Unterhaltung";
$a->strings["Love/romance"] = "Liebesleben";
$a->strings["Work/employment"] = "Arbeit/Beschäftigung";
$a->strings["School/education"] = "Schule/Ausbildung";
$a->strings["This is your <strong>public</strong> profile.<br />It <strong>may</strong> be visible to anybody using the internet."] = "Dies ist dein <strong>öffentliches</strong> Profil.<br />Es <strong>könnte</strong> für jeden Nutzer des Internets sichtbar sein.";
$a->strings["Age: "] = "Alter: ";
$a->strings["Edit/Manage Profiles"] = "Verwalte/Editiere Profile";
$a->strings["Change profile photo"] = "Profilbild ändern";
$a->strings["Create New Profile"] = "Neues Profil anlegen";
$a->strings["Profile Image"] = "Profilbild";
$a->strings["visible to everybody"] = "sichtbar für jeden";
$a->strings["Edit visibility"] = "Sichtbarkeit bearbeiten";
$a->strings["link"] = "Link";
$a->strings["Export account"] = "Account exportieren";
$a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = "Exportiere deine Account Informationen und die Kontakte. Verwende dies um ein Backup deines Accounts anzulegen und/oder ihn auf einen anderen Server umzuziehen.";
$a->strings["Export all"] = "Alles exportieren";
$a->strings["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)"] = "Exportiere deine Account Informationen, Kontakte und alle Einträge als JSON Datei. Dies könnte eine sehr große Datei werden und dementsprechend viel Zeit benötigen. Verwende dies um ein komplettes Backup deines Accounts anzulegen (Photos werden nicht exportiert).";
$a->strings["{0} wants to be your friend"] = "{0} möchte mit dir in Kontakt treten";
$a->strings["{0} sent you a message"] = "{0} hat dir eine Nachricht geschickt";
$a->strings["{0} requested registration"] = "{0} möchte sich registrieren";
$a->strings["{0} commented %s's post"] = "{0} kommentierte einen Beitrag von %s";
$a->strings["{0} liked %s's post"] = "{0} mag %ss Beitrag";
$a->strings["{0} disliked %s's post"] = "{0} mag %ss Beitrag nicht";
$a->strings["{0} is now friends with %s"] = "{0} ist jetzt mit %s befreundet";
$a->strings["{0} posted"] = "{0} hat etwas veröffentlicht";
$a->strings["{0} tagged %s's post with #%s"] = "{0} hat %ss Beitrag mit dem Schlagwort #%s versehen";
$a->strings["{0} mentioned you in a post"] = "{0} hat dich in einem Beitrag erwähnt";
$a->strings["Nothing new here"] = "Keine Neuigkeiten.";
$a->strings["Clear notifications"] = "Bereinige Benachrichtigungen";
$a->strings["Not available."] = "Nicht verfügbar.";
$a->strings["Community"] = "Gemeinschaft";
$a->strings["Save to Folder:"] = "In diesen Ordner verschieben:";
$a->strings["- select -"] = "- auswählen -";
$a->strings["Save"] = "Speichern";
$a->strings["File exceeds size limit of %d"] = "Die Datei ist größer als das erlaubte Limit von %d";
$a->strings["File upload failed."] = "Hochladen der Datei fehlgeschlagen.";
$a->strings["Invalid profile identifier."] = "Ungültiger Profil-Bezeichner";
$a->strings["Profile Visibility Editor"] = "Editor für die Profil-Sichtbarkeit";
$a->strings["Click on a contact to add or remove."] = "Klicke einen Kontakt an, um ihn hinzuzufügen oder zu entfernen";
$a->strings["Visible To"] = "Sichtbar für";
$a->strings["All Contacts (with secure profile access)"] = "Alle Kontakte (mit gesichertem Profilzugriff)";
$a->strings["Do you really want to delete this suggestion?"] = "Möchtest du wirklich diese Empfehlung löschen?";
$a->strings["Friend Suggestions"] = "Kontaktvorschläge";
$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Keine Vorschläge. Falls der Server frisch aufgesetzt wurde, versuche es bitte in 24 Stunden noch einmal.";
$a->strings["Connect"] = "Verbinden";
$a->strings["Ignore/Hide"] = "Ignorieren/Verbergen";
$a->strings["Access denied."] = "Zugriff verweigert.";
$a->strings["%1\$s welcomes %2\$s"] = "%1\$s heißt %2\$s herzlich willkommen";
$a->strings["Manage Identities and/or Pages"] = "Verwalte Identitäten und/oder Seiten";
$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Zwischen verschiedenen Identitäten oder Foren wechseln, die deine Zugangsdaten (E-Mail und Passwort) teilen oder zu denen du „Verwalten“-Befugnisse bekommen hast.";
$a->strings["Select an identity to manage: "] = "Wähle eine Identität zum Verwalten: ";
$a->strings["No potential page delegates located."] = "Keine potentiellen Bevollmächtigten für die Seite gefunden.";
$a->strings["Delegate Page Management"] = "Delegiere das Management für die Seite";
$a->strings["Delegates are able to manage all aspects of this account/page except for basic account settings. Please do not delegate your personal account to anybody that you do not trust completely."] = "Bevollmächtigte sind in der Lage, alle Aspekte dieses Kontos/dieser Seite zu verwalten, abgesehen von den Grundeinstellungen des Kontos. Bitte gib niemandem eine Bevollmächtigung für deinen privaten Account, dem du nicht absolut vertraust!";
$a->strings["Existing Page Managers"] = "Vorhandene Seiten Manager";
$a->strings["Existing Page Delegates"] = "Vorhandene Bevollmächtigte für die Seite";
$a->strings["Potential Delegates"] = "Potentielle Bevollmächtigte";
$a->strings["Add"] = "Hinzufügen";
$a->strings["No entries."] = "Keine Einträge";
$a->strings["No contacts."] = "Keine Kontakte.";
$a->strings["View Contacts"] = "Kontakte anzeigen";
$a->strings["Personal Notes"] = "Persönliche Notizen";
$a->strings["Poke/Prod"] = "Anstupsen etc.";
$a->strings["poke, prod or do other things to somebody"] = "Stupse Leute an oder mache anderes mit ihnen";
$a->strings["Recipient"] = "Empfänger";
$a->strings["Choose what you wish to do to recipient"] = "Was willst du mit dem Empfänger machen:";
$a->strings["Make this post private"] = "Diesen Beitrag privat machen";
$a->strings["Global Directory"] = "Weltweites Verzeichnis";
$a->strings["Find on this site"] = "Auf diesem Server suchen";
$a->strings["Site Directory"] = "Verzeichnis";
$a->strings["Gender: "] = "Geschlecht:";
$a->strings["Gender:"] = "Geschlecht:";
$a->strings["Status:"] = "Status:";
$a->strings["Homepage:"] = "Homepage:";
$a->strings["About:"] = "Über:";
$a->strings["No entries (some entries may be hidden)."] = "Keine Einträge (einige Einträge könnten versteckt sein).";
$a->strings["l F d, Y \\@ g:i A"] = "l, d. F Y\\, H:i";
$a->strings["Time Conversion"] = "Zeitumrechnung";
$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica bietet diese Funktion an, um das Teilen von Events mit Kontakten zu vereinfachen, deren Zeitzone nicht ermittelt werden kann.";
$a->strings["UTC time: %s"] = "UTC Zeit: %s";
$a->strings["Current timezone: %s"] = "Aktuelle Zeitzone: %s";
$a->strings["Converted localtime: %s"] = "Umgerechnete lokale Zeit: %s";
$a->strings["Please select your timezone:"] = "Bitte wähle deine Zeitzone.";
$a->strings["Post successful."] = "Beitrag erfolgreich veröffentlicht.";
$a->strings["Image uploaded but image cropping failed."] = "Bilder hochgeladen, aber das Zuschneiden ist fehlgeschlagen.";
$a->strings["Image size reduction [%s] failed."] = "Verkleinern der Bildgröße von [%s] ist gescheitert.";
$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Drücke Umschalt+Neu Laden oder leere den Browser-Cache, falls das neue Foto nicht gleich angezeigt wird.";
$a->strings["Unable to process image"] = "Bild konnte nicht verarbeitet werden";
$a->strings["Upload File:"] = "Datei hochladen:";
$a->strings["Select a profile:"] = "Profil auswählen";
$a->strings["Upload"] = "Hochladen";
$a->strings["skip this step"] = "diesen Schritt überspringen";
$a->strings["select a photo from your photo albums"] = "wähle ein Foto von deinen Fotoalben";
$a->strings["Crop Image"] = "Bild zurechtschneiden";
$a->strings["Please adjust the image cropping for optimum viewing."] = "Passe bitte den Bildausschnitt an, damit das Bild optimal dargestellt werden kann.";
$a->strings["Done Editing"] = "Bearbeitung abgeschlossen";
$a->strings["Image uploaded successfully."] = "Bild erfolgreich auf den Server geladen.";
$a->strings["Friendica Social Communications Server - Setup"] = "Friendica-Server für soziale Netzwerke Setup";
$a->strings["Could not connect to database."] = "Verbindung zur Datenbank gescheitert";
$a->strings["Could not create table."] = "Konnte Tabelle nicht erstellen.";
@ -1038,6 +1492,9 @@ $a->strings["If you don't have a command line version of PHP installed on server
$a->strings["PHP executable path"] = "Pfad zu PHP";
$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Gib den kompletten Pfad zur ausführbaren Datei von PHP an. Du kannst dieses Feld auch frei lassen und mit der Installation fortfahren.";
$a->strings["Command line PHP"] = "Kommandozeilen-PHP";
$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = "Die ausführbare Datei von PHP stimmt nicht mit der PHP cli Version überein (es könnte sich um die cgi-fgci Version handeln)";
$a->strings["Found PHP version: "] = "Gefundene PHP Version:";
$a->strings["PHP cli binary"] = "PHP CLI Binary";
$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "Die Kommandozeilenversion von PHP auf deinem System hat \"register_argc_argv\" nicht aktiviert.";
$a->strings["This is required for message delivery to work."] = "Dies wird für die Auslieferung von Nachrichten benötigt.";
$a->strings["PHP register_argc_argv"] = "PHP register_argc_argv";
@ -1072,122 +1529,88 @@ $a->strings["The database configuration file \".htconfig.php\" could not be writ
$a->strings["Errors encountered creating database tables."] = "Fehler aufgetreten während der Erzeugung der Datenbanktabellen.";
$a->strings["<h1>What next</h1>"] = "<h1>Wie geht es weiter?</h1>";
$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "WICHTIG: Du musst [manuell] einen Cronjob (o.ä.) für den Poller einrichten.";
$a->strings["Group created."] = "Gruppe erstellt.";
$a->strings["Could not create group."] = "Konnte die Gruppe nicht erstellen.";
$a->strings["Group not found."] = "Gruppe nicht gefunden.";
$a->strings["Group name changed."] = "Gruppenname geändert.";
$a->strings["Create a group of contacts/friends."] = "Eine Gruppe von Kontakten/Freunden anlegen.";
$a->strings["Group Name: "] = "Gruppenname:";
$a->strings["Group removed."] = "Gruppe entfernt.";
$a->strings["Unable to remove group."] = "Konnte die Gruppe nicht entfernen.";
$a->strings["Group Editor"] = "Gruppeneditor";
$a->strings["Members"] = "Mitglieder";
$a->strings["No such group"] = "Es gibt keine solche Gruppe";
$a->strings["Group is empty"] = "Gruppe ist leer";
$a->strings["Group: "] = "Gruppe: ";
$a->strings["View in context"] = "Im Zusammenhang betrachten";
$a->strings["Account approved."] = "Konto freigegeben.";
$a->strings["Registration revoked for %s"] = "Registrierung für %s wurde zurückgezogen";
$a->strings["Please login."] = "Bitte melde dich an.";
$a->strings["Profile Match"] = "Profilübereinstimmungen";
$a->strings["No keywords to match. Please add keywords to your default profile."] = "Keine Schlüsselwörter zum Abgleichen gefunden. Bitte füge einige Schlüsselwörter zu deinem Standardprofil hinzu.";
$a->strings["is interested in:"] = "ist interessiert an:";
$a->strings["Unable to locate original post."] = "Konnte den Originalbeitrag nicht finden.";
$a->strings["Empty post discarded."] = "Leerer Beitrag wurde verworfen.";
$a->strings["System error. Post not saved."] = "Systemfehler. Beitrag konnte nicht gespeichert werden.";
$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "Diese Nachricht wurde dir von %s geschickt, einem Mitglied des Sozialen Netzwerks Friendica.";
$a->strings["You may visit them online at %s"] = "Du kannst sie online unter %s besuchen";
$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Falls du diese Beiträge nicht erhalten möchtest, kontaktiere bitte den Autor, indem du auf diese Nachricht antwortest.";
$a->strings["%s posted an update."] = "%s hat ein Update veröffentlicht.";
$a->strings["%1\$s is currently %2\$s"] = "%1\$s ist momentan %2\$s";
$a->strings["Mood"] = "Stimmung";
$a->strings["Set your current mood and tell your friends"] = "Wähle deine aktuelle Stimmung und erzähle sie deinen Freunden";
$a->strings["Search Results For:"] = "Suchergebnisse für:";
$a->strings["add"] = "hinzufügen";
$a->strings["Commented Order"] = "Neueste Kommentare";
$a->strings["Sort by Comment Date"] = "Nach Kommentardatum sortieren";
$a->strings["Posted Order"] = "Neueste Beiträge";
$a->strings["Sort by Post Date"] = "Nach Beitragsdatum sortieren";
$a->strings["Posts that mention or involve you"] = "Beiträge, in denen es um dich geht";
$a->strings["New"] = "Neue";
$a->strings["Activity Stream - by date"] = "Aktivitäten-Stream - nach Datum";
$a->strings["Shared Links"] = "Geteilte Links";
$a->strings["Interesting Links"] = "Interessante Links";
$a->strings["Starred"] = "Markierte";
$a->strings["Favourite Posts"] = "Favorisierte Beiträge";
$a->strings["Warning: This group contains %s member from an insecure network."] = array(
0 => "Warnung: Diese Gruppe beinhaltet %s Person aus einem unsicheren Netzwerk.",
1 => "Warnung: Diese Gruppe beinhaltet %s Personen aus unsicheren Netzwerken.",
$a->strings["Post successful."] = "Beitrag erfolgreich veröffentlicht.";
$a->strings["OpenID protocol error. No ID returned."] = "OpenID Protokollfehler. Keine ID zurückgegeben.";
$a->strings["Account not found and OpenID registration is not permitted on this site."] = "Nutzerkonto wurde nicht gefunden, und OpenID-Registrierung ist auf diesem Server nicht gestattet.";
$a->strings["Image uploaded but image cropping failed."] = "Bilder hochgeladen, aber das Zuschneiden ist fehlgeschlagen.";
$a->strings["Image size reduction [%s] failed."] = "Verkleinern der Bildgröße von [%s] ist gescheitert.";
$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Drücke Umschalt+Neu Laden oder leere den Browser-Cache, falls das neue Foto nicht gleich angezeigt wird.";
$a->strings["Unable to process image"] = "Bild konnte nicht verarbeitet werden";
$a->strings["Upload File:"] = "Datei hochladen:";
$a->strings["Select a profile:"] = "Profil auswählen";
$a->strings["Upload"] = "Hochladen";
$a->strings["skip this step"] = "diesen Schritt überspringen";
$a->strings["select a photo from your photo albums"] = "wähle ein Foto von deinen Fotoalben";
$a->strings["Crop Image"] = "Bild zurechtschneiden";
$a->strings["Please adjust the image cropping for optimum viewing."] = "Passe bitte den Bildausschnitt an, damit das Bild optimal dargestellt werden kann.";
$a->strings["Done Editing"] = "Bearbeitung abgeschlossen";
$a->strings["Image uploaded successfully."] = "Bild erfolgreich auf den Server geladen.";
$a->strings["Not available."] = "Nicht verfügbar.";
$a->strings["%d comment"] = array(
0 => "%d Kommentar",
1 => "%d Kommentare",
);
$a->strings["Private messages to this group are at risk of public disclosure."] = "Private Nachrichten an diese Gruppe könnten an die Öffentlichkeit geraten.";
$a->strings["Contact: "] = "Kontakt: ";
$a->strings["Private messages to this person are at risk of public disclosure."] = "Private Nachrichten an diese Person könnten an die Öffentlichkeit gelangen.";
$a->strings["Invalid contact."] = "Ungültiger Kontakt.";
$a->strings["Contact settings applied."] = "Einstellungen zum Kontakt angewandt.";
$a->strings["Contact update failed."] = "Konnte den Kontakt nicht aktualisieren.";
$a->strings["Repair Contact Settings"] = "Kontakteinstellungen reparieren";
$a->strings["<strong>WARNING: This is highly advanced</strong> and if you enter incorrect information your communications with this contact may stop working."] = "<strong>ACHTUNG: Das sind Experten-Einstellungen!</strong> Wenn du etwas Falsches eingibst, funktioniert die Kommunikation mit diesem Kontakt evtl. nicht mehr.";
$a->strings["Please use your browser 'Back' button <strong>now</strong> if you are uncertain what to do on this page."] = "Bitte nutze den Zurück-Button deines Browsers <strong>jetzt</strong>, wenn du dir unsicher bist, was du tun willst.";
$a->strings["Return to contact editor"] = "Zurück zum Kontakteditor";
$a->strings["Account Nickname"] = "Konto-Spitzname";
$a->strings["@Tagname - overrides Name/Nickname"] = "@Tagname - überschreibt Name/Spitzname";
$a->strings["Account URL"] = "Konto-URL";
$a->strings["Friend Request URL"] = "URL für Freundschaftsanfragen";
$a->strings["Friend Confirm URL"] = "URL für Bestätigungen von Freundschaftsanfragen";
$a->strings["Notification Endpoint URL"] = "URL-Endpunkt für Benachrichtigungen";
$a->strings["Poll/Feed URL"] = "Pull/Feed-URL";
$a->strings["New photo from this URL"] = "Neues Foto von dieser URL";
$a->strings["Your posts and conversations"] = "Deine Beiträge und Unterhaltungen";
$a->strings["Your profile page"] = "Deine Profilseite";
$a->strings["Your contacts"] = "Deine Kontakte";
$a->strings["Your photos"] = "Deine Fotos";
$a->strings["Your events"] = "Deine Ereignisse";
$a->strings["Personal notes"] = "Persönliche Notizen";
$a->strings["Your personal photos"] = "Deine privaten Fotos";
$a->strings["Community Pages"] = "Foren";
$a->strings["Community Profiles"] = "Community-Profile";
$a->strings["Last users"] = "Letzte Nutzer";
$a->strings["Last likes"] = "Zuletzt gemocht";
$a->strings["event"] = "Veranstaltung";
$a->strings["Last photos"] = "Letzte Fotos";
$a->strings["Find Friends"] = "Freunde finden";
$a->strings["Local Directory"] = "Lokales Verzeichnis";
$a->strings["Similar Interests"] = "Ähnliche Interessen";
$a->strings["Invite Friends"] = "Freunde einladen";
$a->strings["Earth Layers"] = "Earth Layers";
$a->strings["Set zoomfactor for Earth Layers"] = "Zoomfaktor der Earth Layer";
$a->strings["Set longitude (X) for Earth Layers"] = "Longitude (X) der Earth Layer";
$a->strings["Set latitude (Y) for Earth Layers"] = "Latitude (Y) der Earth Layer";
$a->strings["Help or @NewHere ?"] = "Hilfe oder @NewHere";
$a->strings["Connect Services"] = "Verbinde Dienste";
$a->strings["Last Tweets"] = "Neueste Tweets";
$a->strings["Set twitter search term"] = "Twitter Suchbegriff";
$a->strings["don't show"] = "nicht zeigen";
$a->strings["show"] = "zeigen";
$a->strings["Show/hide boxes at right-hand column:"] = "Rahmen auf der rechten Seite anzeigen/verbergen";
$a->strings["like"] = "mag ich";
$a->strings["dislike"] = "mag ich nicht";
$a->strings["Share this"] = "Weitersagen";
$a->strings["share"] = "Teilen";
$a->strings["Bold"] = "Fett";
$a->strings["Italic"] = "Kursiv";
$a->strings["Underline"] = "Unterstrichen";
$a->strings["Quote"] = "Zitat";
$a->strings["Code"] = "Code";
$a->strings["Image"] = "Bild";
$a->strings["Link"] = "Verweis";
$a->strings["Video"] = "Video";
$a->strings["add star"] = "markieren";
$a->strings["remove star"] = "Markierung entfernen";
$a->strings["toggle star status"] = "Markierung umschalten";
$a->strings["starred"] = "markiert";
$a->strings["add tag"] = "Tag hinzufügen";
$a->strings["save to folder"] = "In Ordner speichern";
$a->strings["to"] = "zu";
$a->strings["Wall-to-Wall"] = "Wall-to-Wall";
$a->strings["via Wall-To-Wall:"] = "via Wall-To-Wall:";
$a->strings["This entry was edited"] = "Dieser Beitrag wurde bearbeitet.";
$a->strings["via"] = "via";
$a->strings["Theme settings"] = "Themeneinstellungen";
$a->strings["Set resize level for images in posts and comments (width and height)"] = "Wähle das Vergrößerungsmaß für Bilder in Beiträgen und Kommentaren (Höhe und Breite)";
$a->strings["Set font-size for posts and comments"] = "Schriftgröße für Beiträge und Kommentare festlegen";
$a->strings["Set theme width"] = "Theme Breite festlegen";
$a->strings["Color scheme"] = "Farbschema";
$a->strings["Set line-height for posts and comments"] = "Liniengröße für Beiträge und Kommantare festlegen";
$a->strings["Set resolution for middle column"] = "Auflösung für die Mittelspalte setzen";
$a->strings["Set color scheme"] = "Wähle Farbschema";
$a->strings["Set twitter search term"] = "Twitter Suchbegriff";
$a->strings["Set zoomfactor for Earth Layer"] = "Zoomfaktor der Earth Layer";
$a->strings["Set longitude (X) for Earth Layers"] = "Longitude (X) der Earth Layer";
$a->strings["Set latitude (Y) for Earth Layers"] = "Latitude (Y) der Earth Layer";
$a->strings["Community Pages"] = "Foren";
$a->strings["Earth Layers"] = "Earth Layers";
$a->strings["Community Profiles"] = "Community-Profile";
$a->strings["Help or @NewHere ?"] = "Hilfe oder @NewHere";
$a->strings["Connect Services"] = "Verbinde Dienste";
$a->strings["Find Friends"] = "Freunde finden";
$a->strings["Last tweets"] = "Neueste Tweets";
$a->strings["Last users"] = "Letzte Nutzer";
$a->strings["Last photos"] = "Letzte Fotos";
$a->strings["Last likes"] = "Zuletzt gemocht";
$a->strings["Your contacts"] = "Deine Kontakte";
$a->strings["Local Directory"] = "Lokales Verzeichnis";
$a->strings["Set zoomfactor for Earth Layers"] = "Zoomfaktor der Earth Layer";
$a->strings["Last Tweets"] = "Neueste Tweets";
$a->strings["Show/hide boxes at right-hand column:"] = "Rahmen auf der rechten Seite anzeigen/verbergen";
$a->strings["Set colour scheme"] = "Farbschema wählen";
$a->strings["Alignment"] = "Ausrichtung";
$a->strings["Left"] = "Links";
$a->strings["Center"] = "Mitte";
$a->strings["Color scheme"] = "Farbschema";
$a->strings["Posts font size"] = "Schriftgröße in Beiträgen";
$a->strings["Textareas font size"] = "Schriftgröße in Eingabefeldern";
$a->strings["Set resize level for images in posts and comments (width and height)"] = "Wähle das Vergrößerungsmaß für Bilder in Beiträgen und Kommentaren (Höhe und Breite)";
$a->strings["Set theme width"] = "Theme Breite festlegen";
$a->strings["Delete this item?"] = "Diesen Beitrag löschen?";
$a->strings["show fewer"] = "weniger anzeigen";
$a->strings["Update %s failed. See error logs."] = "Update %s fehlgeschlagen. Bitte Fehlerprotokoll überprüfen.";
$a->strings["Update Error at %s"] = "Updatefehler bei %s";
$a->strings["Create a New Account"] = "Neues Konto erstellen";
$a->strings["Logout"] = "Abmelden";
$a->strings["Login"] = "Anmeldung";
$a->strings["Nickname or Email address: "] = "Spitzname oder E-Mail-Adresse: ";
$a->strings["Password: "] = "Passwort: ";
$a->strings["Remember me"] = "Anmeldedaten merken";
@ -1200,7 +1623,6 @@ $a->strings["privacy policy"] = "Datenschutzerklärung";
$a->strings["Requested account is not available."] = "Das angefragte Profil ist nicht vorhanden.";
$a->strings["Edit profile"] = "Profil bearbeiten";
$a->strings["Message"] = "Nachricht";
$a->strings["Profiles"] = "Profile";
$a->strings["Manage/edit profiles"] = "Profile verwalten/editieren";
$a->strings["g A l F d"] = "l, d. F G \\U\\h\\r";
$a->strings["F d"] = "d. F";
@ -1210,421 +1632,8 @@ $a->strings["Birthdays this week:"] = "Geburtstage diese Woche:";
$a->strings["[No description]"] = "[keine Beschreibung]";
$a->strings["Event Reminders"] = "Veranstaltungserinnerungen";
$a->strings["Events this week:"] = "Veranstaltungen diese Woche";
$a->strings["Status"] = "Status";
$a->strings["Status Messages and Posts"] = "Statusnachrichten und Beiträge";
$a->strings["Profile Details"] = "Profildetails";
$a->strings["Events and Calendar"] = "Ereignisse und Kalender";
$a->strings["Only You Can See This"] = "Nur du kannst das sehen";
$a->strings["General Features"] = "Allgemeine Features";
$a->strings["Multiple Profiles"] = "Mehrere Profile";
$a->strings["Ability to create multiple profiles"] = "Möglichkeit mehrere Profile zu erstellen";
$a->strings["Post Composition Features"] = "Beitragserstellung Features";
$a->strings["Richtext Editor"] = "Web-Editor";
$a->strings["Enable richtext editor"] = "Den Web-Editor für neue Beiträge aktivieren";
$a->strings["Post Preview"] = "Beitragsvorschau";
$a->strings["Allow previewing posts and comments before publishing them"] = "Die Vorschau von Beiträgen und Kommentaren vor dem absenden erlauben.";
$a->strings["Network Sidebar Widgets"] = "Widgets für Netzwerk und Seitenleiste";
$a->strings["Search by Date"] = "Archiv";
$a->strings["Ability to select posts by date ranges"] = "Möglichkeit die Beiträge nach Datumsbereichen zu sortieren";
$a->strings["Group Filter"] = "Gruppen Filter";
$a->strings["Enable widget to display Network posts only from selected group"] = "Widget zur Darstellung der Beiträge nach Kontaktgruppen sortiert aktivieren.";
$a->strings["Network Filter"] = "Netzwerk Filter";
$a->strings["Enable widget to display Network posts only from selected network"] = "Widget zum filtern der Beiträge in Abhängigkeit des Netzwerks aus dem der Ersteller sendet aktivieren.";
$a->strings["Save search terms for re-use"] = "Speichere Suchanfragen für spätere Wiederholung.";
$a->strings["Network Tabs"] = "Netzwerk Reiter";
$a->strings["Network Personal Tab"] = "Netzwerk-Reiter: Persönlich";
$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Aktiviert einen Netzwerk-Reiter in dem Nachrichten angezeigt werden mit denen du interagiert hast";
$a->strings["Network New Tab"] = "Netzwerk-Reiter: Neue";
$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = "Aktiviert einen Netzwerk-Reiter in dem ausschließlich neue Beiträge (der letzten 12 Stunden) angezeigt werden";
$a->strings["Network Shared Links Tab"] = "Netzwerk-Reiter: Geteilte Links";
$a->strings["Enable tab to display only Network posts with links in them"] = "Aktiviert einen Netzwerk-Reiter der ausschließlich Nachrichten mit Links enthält";
$a->strings["Post/Comment Tools"] = "Werkzeuge für Beiträge und Kommentare";
$a->strings["Multiple Deletion"] = "Mehrere Beiträge löschen";
$a->strings["Select and delete multiple posts/comments at once"] = "Mehrere Beiträge/Kommentare markieren und gleichzeitig löschen";
$a->strings["Edit Sent Posts"] = "Gesendete Beiträge editieren";
$a->strings["Edit and correct posts and comments after sending"] = "Erlaubt es Beiträge und Kommentare nach dem Senden zu editieren bzw.zu korrigieren.";
$a->strings["Tagging"] = "Tagging";
$a->strings["Ability to tag existing posts"] = "Möglichkeit bereits existierende Beiträge nachträglich mit Tags zu versehen.";
$a->strings["Post Categories"] = "Beitragskategorien";
$a->strings["Add categories to your posts"] = "Eigene Beiträge mit Kategorien versehen";
$a->strings["Saved Folders"] = "Gespeicherte Ordner";
$a->strings["Ability to file posts under folders"] = "Beiträge in Ordnern speichern aktivieren";
$a->strings["Dislike Posts"] = "Beiträge 'nicht mögen'";
$a->strings["Ability to dislike posts/comments"] = "Ermöglicht es Beiträge mit einem Klick 'nicht zu mögen'";
$a->strings["Star Posts"] = "Beiträge Markieren";
$a->strings["Ability to mark special posts with a star indicator"] = "Erlaubt es Beiträge mit einem Stern-Indikator zu markieren";
$a->strings["Logged out."] = "Abgemeldet.";
$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Beim Versuch dich mit der von dir angegebenen OpenID anzumelden trat ein Problem auf. Bitte überprüfe, dass du die OpenID richtig geschrieben hast.";
$a->strings["The error message was:"] = "Die Fehlermeldung lautete:";
$a->strings["Starts:"] = "Beginnt:";
$a->strings["Finishes:"] = "Endet:";
$a->strings["j F, Y"] = "j F, Y";
$a->strings["j F"] = "j F";
$a->strings["Birthday:"] = "Geburtstag:";
$a->strings["Age:"] = "Alter:";
$a->strings["for %1\$d %2\$s"] = "für %1\$d %2\$s";
$a->strings["Tags:"] = "Tags";
$a->strings["Religion:"] = "Religion:";
$a->strings["Hobbies/Interests:"] = "Hobbies/Interessen:";
$a->strings["Contact information and Social Networks:"] = "Kontaktinformationen und Soziale Netzwerke:";
$a->strings["Musical interests:"] = "Musikalische Interessen:";
$a->strings["Books, literature:"] = "Literatur/Bücher:";
$a->strings["Television:"] = "Fernsehen:";
$a->strings["Film/dance/culture/entertainment:"] = "Filme/Tänze/Kultur/Unterhaltung:";
$a->strings["Love/Romance:"] = "Liebesleben:";
$a->strings["Work/employment:"] = "Arbeit/Beschäftigung:";
$a->strings["School/education:"] = "Schule/Ausbildung:";
$a->strings["[no subject]"] = "[kein Betreff]";
$a->strings[" on Last.fm"] = " bei Last.fm";
$a->strings["prev"] = "vorige";
$a->strings["first"] = "erste";
$a->strings["last"] = "letzte";
$a->strings["next"] = "nächste";
$a->strings["newer"] = "neuer";
$a->strings["older"] = "älter";
$a->strings["No contacts"] = "Keine Kontakte";
$a->strings["%d Contact"] = array(
0 => "%d Kontakt",
1 => "%d Kontakte",
);
$a->strings["poke"] = "anstupsen";
$a->strings["poked"] = "stupste";
$a->strings["ping"] = "anpingen";
$a->strings["pinged"] = "pingte";
$a->strings["prod"] = "knuffen";
$a->strings["prodded"] = "knuffte";
$a->strings["slap"] = "ohrfeigen";
$a->strings["slapped"] = "ohrfeigte";
$a->strings["finger"] = "befummeln";
$a->strings["fingered"] = "befummelte";
$a->strings["rebuff"] = "eine Abfuhr erteilen";
$a->strings["rebuffed"] = "abfuhrerteilte";
$a->strings["happy"] = "glücklich";
$a->strings["sad"] = "traurig";
$a->strings["mellow"] = "sanft";
$a->strings["tired"] = "müde";
$a->strings["perky"] = "frech";
$a->strings["angry"] = "sauer";
$a->strings["stupified"] = "verblüfft";
$a->strings["puzzled"] = "verwirrt";
$a->strings["interested"] = "interessiert";
$a->strings["bitter"] = "verbittert";
$a->strings["cheerful"] = "fröhlich";
$a->strings["alive"] = "lebendig";
$a->strings["annoyed"] = "verärgert";
$a->strings["anxious"] = "unruhig";
$a->strings["cranky"] = "schrullig";
$a->strings["disturbed"] = "verstört";
$a->strings["frustrated"] = "frustriert";
$a->strings["motivated"] = "motiviert";
$a->strings["relaxed"] = "entspannt";
$a->strings["surprised"] = "überrascht";
$a->strings["Monday"] = "Montag";
$a->strings["Tuesday"] = "Dienstag";
$a->strings["Wednesday"] = "Mittwoch";
$a->strings["Thursday"] = "Donnerstag";
$a->strings["Friday"] = "Freitag";
$a->strings["Saturday"] = "Samstag";
$a->strings["Sunday"] = "Sonntag";
$a->strings["January"] = "Januar";
$a->strings["February"] = "Februar";
$a->strings["March"] = "März";
$a->strings["April"] = "April";
$a->strings["May"] = "Mai";
$a->strings["June"] = "Juni";
$a->strings["July"] = "Juli";
$a->strings["August"] = "August";
$a->strings["September"] = "September";
$a->strings["October"] = "Oktober";
$a->strings["November"] = "November";
$a->strings["December"] = "Dezember";
$a->strings["bytes"] = "Byte";
$a->strings["Click to open/close"] = "Zum öffnen/schließen klicken";
$a->strings["default"] = "Standard";
$a->strings["Select an alternate language"] = "Alternative Sprache auswählen";
$a->strings["activity"] = "Aktivität";
$a->strings["post"] = "Beitrag";
$a->strings["Item filed"] = "Beitrag abgelegt";
$a->strings["Cannot locate DNS info for database server '%s'"] = "Kann die DNS Informationen für den Datenbankserver '%s' nicht ermitteln.";
$a->strings["%s's birthday"] = "%ss Geburtstag";
$a->strings["Happy Birthday %s"] = "Herzlichen Glückwunsch %s";
$a->strings["A new person is sharing with you at "] = "Eine neue Person teilt mit dir auf ";
$a->strings["You have a new follower at "] = "Du hast einen neuen Kontakt auf ";
$a->strings["Do you really want to delete this item?"] = "Möchtest du wirklich dieses Item löschen?";
$a->strings["Archives"] = "Archiv";
$a->strings["(no subject)"] = "(kein Betreff)";
$a->strings["noreply"] = "noreply";
$a->strings["Sharing notification from Diaspora network"] = "Freigabe-Benachrichtigung von Diaspora";
$a->strings["Attachments:"] = "Anhänge:";
$a->strings["Connect URL missing."] = "Connect-URL fehlt";
$a->strings["This site is not configured to allow communications with other networks."] = "Diese Seite ist so konfiguriert, dass keine Kommunikation mit anderen Netzwerken erfolgen kann.";
$a->strings["No compatible communication protocols or feeds were discovered."] = "Es wurden keine kompatiblen Kommunikationsprotokolle oder Feeds gefunden.";
$a->strings["The profile address specified does not provide adequate information."] = "Die angegebene Profiladresse liefert unzureichende Informationen.";
$a->strings["An author or name was not found."] = "Es wurde kein Autor oder Name gefunden.";
$a->strings["No browser URL could be matched to this address."] = "Zu dieser Adresse konnte keine passende Browser URL gefunden werden.";
$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Konnte die @-Adresse mit keinem der bekannten Protokolle oder Email-Kontakte abgleichen.";
$a->strings["Use mailto: in front of address to force email check."] = "Verwende mailto: vor der Email Adresse, um eine Überprüfung der E-Mail-Adresse zu erzwingen.";
$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "Die Adresse dieses Profils gehört zu einem Netzwerk, mit dem die Kommunikation auf dieser Seite ausgeschaltet wurde.";
$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Eingeschränktes Profil. Diese Person wird keine direkten/privaten Nachrichten von dir erhalten können.";
$a->strings["Unable to retrieve contact information."] = "Konnte die Kontaktinformationen nicht empfangen.";
$a->strings["following"] = "folgen";
$a->strings["Welcome "] = "Willkommen ";
$a->strings["Please upload a profile photo."] = "Bitte lade ein Profilbild hoch.";
$a->strings["Welcome back "] = "Willkommen zurück ";
$a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "Das Sicherheitsmerkmal war nicht korrekt. Das passiert meistens wenn das Formular vor dem Absenden zu lange geöffnet war (länger als 3 Stunden).";
$a->strings["Male"] = "Männlich";
$a->strings["Female"] = "Weiblich";
$a->strings["Currently Male"] = "Momentan männlich";
$a->strings["Currently Female"] = "Momentan weiblich";
$a->strings["Mostly Male"] = "Hauptsächlich männlich";
$a->strings["Mostly Female"] = "Hauptsächlich weiblich";
$a->strings["Transgender"] = "Transgender";
$a->strings["Intersex"] = "Intersex";
$a->strings["Transsexual"] = "Transsexuell";
$a->strings["Hermaphrodite"] = "Hermaphrodit";
$a->strings["Neuter"] = "Neuter";
$a->strings["Non-specific"] = "Nicht spezifiziert";
$a->strings["Other"] = "Andere";
$a->strings["Undecided"] = "Unentschieden";
$a->strings["Males"] = "Männer";
$a->strings["Females"] = "Frauen";
$a->strings["Gay"] = "Schwul";
$a->strings["Lesbian"] = "Lesbisch";
$a->strings["No Preference"] = "Keine Vorlieben";
$a->strings["Bisexual"] = "Bisexuell";
$a->strings["Autosexual"] = "Autosexual";
$a->strings["Abstinent"] = "Abstinent";
$a->strings["Virgin"] = "Jungfrauen";
$a->strings["Deviant"] = "Deviant";
$a->strings["Fetish"] = "Fetish";
$a->strings["Oodles"] = "Oodles";
$a->strings["Nonsexual"] = "Nonsexual";
$a->strings["Single"] = "Single";
$a->strings["Lonely"] = "Einsam";
$a->strings["Available"] = "Verfügbar";
$a->strings["Unavailable"] = "Nicht verfügbar";
$a->strings["Has crush"] = "verknallt";
$a->strings["Infatuated"] = "verliebt";
$a->strings["Dating"] = "Dating";
$a->strings["Unfaithful"] = "Untreu";
$a->strings["Sex Addict"] = "Sexbesessen";
$a->strings["Friends"] = "Freunde";
$a->strings["Friends/Benefits"] = "Freunde/Zuwendungen";
$a->strings["Casual"] = "Casual";
$a->strings["Engaged"] = "Verlobt";
$a->strings["Married"] = "Verheiratet";
$a->strings["Imaginarily married"] = "imaginär verheiratet";
$a->strings["Partners"] = "Partner";
$a->strings["Cohabiting"] = "zusammenlebend";
$a->strings["Common law"] = "wilde Ehe";
$a->strings["Happy"] = "Glücklich";
$a->strings["Not looking"] = "Nicht auf der Suche";
$a->strings["Swinger"] = "Swinger";
$a->strings["Betrayed"] = "Betrogen";
$a->strings["Separated"] = "Getrennt";
$a->strings["Unstable"] = "Unstabil";
$a->strings["Divorced"] = "Geschieden";
$a->strings["Imaginarily divorced"] = "imaginär geschieden";
$a->strings["Widowed"] = "Verwitwet";
$a->strings["Uncertain"] = "Unsicher";
$a->strings["It's complicated"] = "Ist kompliziert";
$a->strings["Don't care"] = "Ist mir nicht wichtig";
$a->strings["Ask me"] = "Frag mich";
$a->strings["Error decoding account file"] = "Fehler beim Verarbeiten der Account Datei";
$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Fehler! Keine Versionsdaten in der Datei! Ist das wirklich eine Friendica Account Datei?";
$a->strings["Error! I can't import this file: DB schema version is not compatible."] = "Fehler! Kann diese Datei nicht importieren. Die DB Schema Versionen sind nicht kompatibel.";
$a->strings["Error! Cannot check nickname"] = "Fehler! Konnte den Nickname nicht überprüfen.";
$a->strings["User '%s' already exists on this server!"] = "Nutzer '%s' existiert bereits auf diesem Server!";
$a->strings["User creation error"] = "Fehler beim Anlegen des Nutzeraccounts aufgetreten";
$a->strings["User profile creation error"] = "Fehler beim Anlegen des Nutzerkontos";
$a->strings["%d contact not imported"] = array(
0 => "%d Kontakt nicht importiert",
1 => "%d Kontakte nicht importiert",
);
$a->strings["Done. You can now login with your username and password"] = "Erledigt. Du kannst dich jetzt mit deinem Nutzernamen und Passwort anmelden";
$a->strings["Click here to upgrade."] = "Zum Upgraden hier klicken.";
$a->strings["This action exceeds the limits set by your subscription plan."] = "Diese Aktion überschreitet die Obergrenze deines Abonnements.";
$a->strings["This action is not available under your subscription plan."] = "Diese Aktion ist in deinem Abonnement nicht verfügbar.";
$a->strings["%1\$s poked %2\$s"] = "%1\$s stupste %2\$s";
$a->strings["post/item"] = "Nachricht/Beitrag";
$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "%1\$s hat %2\$s\\s %3\$s als Favorit markiert";
$a->strings["remove"] = "löschen";
$a->strings["Delete Selected Items"] = "Lösche die markierten Beiträge";
$a->strings["Follow Thread"] = "Folge der Unterhaltung";
$a->strings["View Status"] = "Pinnwand anschauen";
$a->strings["View Profile"] = "Profil anschauen";
$a->strings["View Photos"] = "Bilder anschauen";
$a->strings["Network Posts"] = "Netzwerkbeiträge";
$a->strings["Edit Contact"] = "Kontakt bearbeiten";
$a->strings["Send PM"] = "Private Nachricht senden";
$a->strings["Poke"] = "Anstupsen";
$a->strings["%s likes this."] = "%s mag das.";
$a->strings["%s doesn't like this."] = "%s mag das nicht.";
$a->strings["<span %1\$s>%2\$d people</span> like this"] = "<span %1\$s>%2\$d Personen</span> mögen das";
$a->strings["<span %1\$s>%2\$d people</span> don't like this"] = "<span %1\$s>%2\$d Personen</span> mögen das nicht";
$a->strings["and"] = "und";
$a->strings[", and %d other people"] = " und %d andere";
$a->strings["%s like this."] = "%s mögen das.";
$a->strings["%s don't like this."] = "%s mögen das nicht.";
$a->strings["Visible to <strong>everybody</strong>"] = "Für <strong>jedermann</strong> sichtbar";
$a->strings["Please enter a video link/URL:"] = "Bitte Link/URL zum Video einfügen:";
$a->strings["Please enter an audio link/URL:"] = "Bitte Link/URL zum Audio einfügen:";
$a->strings["Tag term:"] = "Tag:";
$a->strings["Where are you right now?"] = "Wo hältst du dich jetzt gerade auf?";
$a->strings["Delete item(s)?"] = "Einträge löschen?";
$a->strings["Post to Email"] = "An E-Mail senden";
$a->strings["permissions"] = "Zugriffsrechte";
$a->strings["Post to Groups"] = "Poste an Gruppe";
$a->strings["Post to Contacts"] = "Poste an Kontakte";
$a->strings["Private post"] = "Privater Beitrag";
$a->strings["Add New Contact"] = "Neuen Kontakt hinzufügen";
$a->strings["Enter address or web location"] = "Adresse oder Web-Link eingeben";
$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Beispiel: bob@example.com, http://example.com/barbara";
$a->strings["%d invitation available"] = array(
0 => "%d Einladung verfügbar",
1 => "%d Einladungen verfügbar",
);
$a->strings["Find People"] = "Leute finden";
$a->strings["Enter name or interest"] = "Name oder Interessen eingeben";
$a->strings["Connect/Follow"] = "Verbinden/Folgen";
$a->strings["Examples: Robert Morgenstein, Fishing"] = "Beispiel: Robert Morgenstein, Angeln";
$a->strings["Random Profile"] = "Zufälliges Profil";
$a->strings["Networks"] = "Netzwerke";
$a->strings["All Networks"] = "Alle Netzwerke";
$a->strings["Everything"] = "Alles";
$a->strings["Categories"] = "Kategorien";
$a->strings["End this session"] = "Diese Sitzung beenden";
$a->strings["Sign in"] = "Anmelden";
$a->strings["Home Page"] = "Homepage";
$a->strings["Create an account"] = "Nutzerkonto erstellen";
$a->strings["Help and documentation"] = "Hilfe und Dokumentation";
$a->strings["Apps"] = "Apps";
$a->strings["Addon applications, utilities, games"] = "Addon Anwendungen, Dienstprogramme, Spiele";
$a->strings["Search site content"] = "Inhalt der Seite durchsuchen";
$a->strings["Conversations on this site"] = "Unterhaltungen auf dieser Seite";
$a->strings["Directory"] = "Verzeichnis";
$a->strings["People directory"] = "Nutzerverzeichnis";
$a->strings["Conversations from your friends"] = "Unterhaltungen deiner Kontakte";
$a->strings["Network Reset"] = "Netzwerk zurücksetzen";
$a->strings["Load Network page with no filters"] = "Netzwerk-Seite ohne Filter laden";
$a->strings["Friend Requests"] = "Kontaktanfragen";
$a->strings["See all notifications"] = "Alle Benachrichtigungen anzeigen";
$a->strings["Mark all system notifications seen"] = "Markiere alle Systembenachrichtigungen als gelesen";
$a->strings["Private mail"] = "Private E-Mail";
$a->strings["Inbox"] = "Eingang";
$a->strings["Outbox"] = "Ausgang";
$a->strings["Manage"] = "Verwalten";
$a->strings["Manage other pages"] = "Andere Seiten verwalten";
$a->strings["Delegations"] = "Delegierungen";
$a->strings["Manage/Edit Profiles"] = "Profile Verwalten/Editieren";
$a->strings["Manage/edit friends and contacts"] = "Freunde und Kontakte verwalten/editieren";
$a->strings["Site setup and configuration"] = "Einstellungen der Seite und Konfiguration";
$a->strings["Navigation"] = "Navigation";
$a->strings["Site map"] = "Sitemap";
$a->strings["Unknown | Not categorised"] = "Unbekannt | Nicht kategorisiert";
$a->strings["Block immediately"] = "Sofort blockieren";
$a->strings["Shady, spammer, self-marketer"] = "Zwielichtig, Spammer, Selbstdarsteller";
$a->strings["Known to me, but no opinion"] = "Ist mir bekannt, hab aber keine Meinung";
$a->strings["OK, probably harmless"] = "OK, wahrscheinlich harmlos";
$a->strings["Reputable, has my trust"] = "Seriös, hat mein Vertrauen";
$a->strings["Frequently"] = "immer wieder";
$a->strings["Hourly"] = "Stündlich";
$a->strings["Twice daily"] = "Zweimal täglich";
$a->strings["Daily"] = "Täglich";
$a->strings["Weekly"] = "Wöchentlich";
$a->strings["Monthly"] = "Monatlich";
$a->strings["OStatus"] = "OStatus";
$a->strings["RSS/Atom"] = "RSS/Atom";
$a->strings["Zot!"] = "Zott";
$a->strings["LinkedIn"] = "LinkedIn";
$a->strings["XMPP/IM"] = "XMPP/Chat";
$a->strings["MySpace"] = "MySpace";
$a->strings["Google+"] = "Google+";
$a->strings["Friendica Notification"] = "Friendica-Benachrichtigung";
$a->strings["Thank You,"] = "Danke,";
$a->strings["%s Administrator"] = "der Administrator von %s";
$a->strings["%s <!item_type!>"] = "%s <!item_type!>";
$a->strings["[Friendica:Notify] New mail received at %s"] = "[Friendica-Meldung] Neue Nachricht erhalten von %s";
$a->strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s hat dir eine neue private Nachricht auf %2\$s geschickt.";
$a->strings["%1\$s sent you %2\$s."] = "%1\$s schickte dir %2\$s.";
$a->strings["a private message"] = "eine private Nachricht";
$a->strings["Please visit %s to view and/or reply to your private messages."] = "Bitte besuche %s, um deine privaten Nachrichten anzusehen und/oder zu beantworten.";
$a->strings["%1\$s commented on [url=%2\$s]a %3\$s[/url]"] = "%1\$s kommentierte [url=%2\$s]a %3\$s[/url]";
$a->strings["%1\$s commented on [url=%2\$s]%3\$s's %4\$s[/url]"] = "%1\$s kommentierte [url=%2\$s]%3\$ss %4\$s[/url]";
$a->strings["%1\$s commented on [url=%2\$s]your %3\$s[/url]"] = "%1\$s kommentierte [url=%2\$s]deinen %3\$s[/url]";
$a->strings["[Friendica:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Friendica-Meldung] Kommentar zum Beitrag #%1\$d von %2\$s";
$a->strings["%s commented on an item/conversation you have been following."] = "%s hat einen Beitrag kommentiert, dem du folgst.";
$a->strings["Please visit %s to view and/or reply to the conversation."] = "Bitte besuche %s, um die Konversation anzusehen und/oder zu kommentieren.";
$a->strings["[Friendica:Notify] %s posted to your profile wall"] = "[Friendica-Meldung] %s hat auf deine Pinnwand geschrieben";
$a->strings["%1\$s posted to your profile wall at %2\$s"] = "%1\$s schrieb auf %2\$s auf deine Pinnwand";
$a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = "%1\$s hat etwas auf [url=%2\$s]deiner Pinnwand[/url] gepostet";
$a->strings["[Friendica:Notify] %s tagged you"] = "[Friendica-Meldung] %s hat dich erwähnt";
$a->strings["%1\$s tagged you at %2\$s"] = "%1\$s erwähnte dich auf %2\$s";
$a->strings["%1\$s [url=%2\$s]tagged you[/url]."] = "%1\$s [url=%2\$s]erwähnte dich[/url].";
$a->strings["[Friendica:Notify] %1\$s poked you"] = "[Friendica-Meldung] %1\$s hat dich angestupst";
$a->strings["%1\$s poked you at %2\$s"] = "%1\$s hat dich auf %2\$s angestupst";
$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = "%1\$s [url=%2\$s]hat dich angestupst[/url].";
$a->strings["[Friendica:Notify] %s tagged your post"] = "[Friendica-Meldung] %s hat deinen Beitrag getaggt";
$a->strings["%1\$s tagged your post at %2\$s"] = "%1\$s erwähnte deinen Beitrag auf %2\$s";
$a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = "%1\$s erwähnte [url=%2\$s]Deinen Beitrag[/url]";
$a->strings["[Friendica:Notify] Introduction received"] = "[Friendica-Meldung] Kontaktanfrage erhalten";
$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = "Du hast eine Kontaktanfrage von '%1\$s' auf %2\$s erhalten";
$a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = "Du hast eine [url=%1\$s]Kontaktanfrage[/url] von %2\$s erhalten.";
$a->strings["You may visit their profile at %s"] = "Hier kannst du das Profil betrachten: %s";
$a->strings["Please visit %s to approve or reject the introduction."] = "Bitte besuche %s, um die Kontaktanfrage anzunehmen oder abzulehnen.";
$a->strings["[Friendica:Notify] Friend suggestion received"] = "[Friendica-Meldung] Kontaktvorschlag erhalten";
$a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "Du hast einen Freunde-Vorschlag von '%1\$s' auf %2\$s erhalten";
$a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from %3\$s."] = "Du hast einen [url=%1\$s]Freunde-Vorschlag[/url] %2\$s von %3\$s erhalten.";
$a->strings["Name:"] = "Name:";
$a->strings["Photo:"] = "Foto:";
$a->strings["Please visit %s to approve or reject the suggestion."] = "Bitte besuche %s, um den Vorschlag zu akzeptieren oder abzulehnen.";
$a->strings["An invitation is required."] = "Du benötigst eine Einladung.";
$a->strings["Invitation could not be verified."] = "Die Einladung konnte nicht überprüft werden.";
$a->strings["Invalid OpenID url"] = "Ungültige OpenID URL";
$a->strings["Please enter the required information."] = "Bitte trage die erforderlichen Informationen ein.";
$a->strings["Please use a shorter name."] = "Bitte verwende einen kürzeren Namen.";
$a->strings["Name too short."] = "Der Name ist zu kurz.";
$a->strings["That doesn't appear to be your full (First Last) name."] = "Das scheint nicht dein kompletter Name (Vor- und Nachname) zu sein.";
$a->strings["Your email domain is not among those allowed on this site."] = "Die Domain deiner E-Mail Adresse ist auf dieser Seite nicht erlaubt.";
$a->strings["Not a valid email address."] = "Keine gültige E-Mail-Adresse.";
$a->strings["Cannot use that email."] = "Konnte diese E-Mail-Adresse nicht verwenden.";
$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and must also begin with a letter."] = "Dein Spitzname darf nur aus Buchstaben und Zahlen (\"a-z\",\"0-9\", \"_\" und \"-\") bestehen, außerdem muss er mit einem Buchstaben beginnen.";
$a->strings["Nickname is already registered. Please choose another."] = "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen.";
$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen.";
$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "FATALER FEHLER: Sicherheitsschlüssel konnten nicht erzeugt werden.";
$a->strings["An error occurred during registration. Please try again."] = "Während der Anmeldung ist ein Fehler aufgetreten. Bitte versuche es noch einmal.";
$a->strings["An error occurred creating your default profile. Please try again."] = "Bei der Erstellung des Standardprofils ist ein Fehler aufgetreten. Bitte versuche es noch einmal.";
$a->strings["Visible to everybody"] = "Für jeden sichtbar";
$a->strings["Image/photo"] = "Bild/Foto";
$a->strings["<span><a href=\"%s\" target=\"external-link\">%s</a> wrote the following <a href=\"%s\" target=\"external-link\">post</a>"] = "<span><a href=\"%s\" target=\"external-link\">%s</a> schrieb den folgenden <a href=\"%s\" target=\"external-link\">Beitrag</a>";
$a->strings["$1 wrote:"] = "$1 hat geschrieben:";
$a->strings["Encrypted content"] = "Verschlüsselter Inhalt";
$a->strings["Embedded content"] = "Eingebetteter Inhalt";
$a->strings["Embedding disabled"] = "Einbettungen deaktiviert";
$a->strings["A deleted group with this name was revived. Existing item permissions <strong>may</strong> apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Eine gelöschte Gruppe mit diesem Namen wurde wiederbelebt. Bestehende Berechtigungseinstellungen <strong>könnten</strong> auf diese Gruppe oder zukünftige Mitglieder angewandt werden. Falls du dies nicht möchtest, erstelle bitte eine andere Gruppe mit einem anderen Namen.";
$a->strings["Default privacy group for new contacts"] = "Voreingestellte Gruppe für neue Kontakte";
$a->strings["Everybody"] = "Alle Kontakte";
$a->strings["edit"] = "bearbeiten";
$a->strings["Edit group"] = "Gruppe bearbeiten";
$a->strings["Create a new group"] = "Neue Gruppe erstellen";
$a->strings["Contacts not in any group"] = "Kontakte in keiner Gruppe";
$a->strings["stopped following"] = "wird nicht mehr gefolgt";
$a->strings["Miscellaneous"] = "Verschiedenes";
$a->strings["year"] = "Jahr";
$a->strings["month"] = "Monat";
$a->strings["day"] = "Tag";
$a->strings["never"] = "nie";
$a->strings["less than a second ago"] = "vor weniger als einer Sekunde";
$a->strings["years"] = "Jahre";
$a->strings["months"] = "Monate";
$a->strings["week"] = "Woche";
$a->strings["weeks"] = "Wochen";
$a->strings["days"] = "Tage";
$a->strings["hour"] = "Stunde";
$a->strings["hours"] = "Stunden";
$a->strings["minute"] = "Minute";
$a->strings["minutes"] = "Minuten";
$a->strings["second"] = "Sekunde";
$a->strings["seconds"] = "Sekunden";
$a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s her";
$a->strings["view full size"] = "Volle Größe anzeigen";
$a->strings["toggle mobile"] = "auf/von Mobile Ansicht wechseln";

View file

@ -1,9 +1,10 @@
# FRIENDICA Distributed Social Network
# Copyright (C) 2010, 2011 the Friendica Project
# Copyright (C) 2010, 2011, 2012, 2013 the Friendica Project
# This file is distributed under the same license as the Friendica package.
#
# Translators:
# <a.jurkiewicz@abix.info.pl>, 2012.
# <braknazwy@autograf.pl>, 2013.
# <braknazwy@autograf.pl>, 2012-2013.
# <charizard@autograf.pl>, 2012.
# Cyryl Sochacki <cyrylsochacki@gmail.com>, 2013.
@ -15,6 +16,8 @@
# <jawiadomokto@o2.pl>, 2012.
# <johnnywiertara@gmail.com>, 2012.
# <karolinaa9506@gmail.com>, 2012.
# Karolina <karolinaa9506@gmail.com>, 2013.
# <koalamis0@gmail.com>, 2013.
# <koalamis0@gmail.com>, 2012.
# Mariusz Pisz <mariusz.pisz@zhp.net.pl>, 2013.
# <m.dauter@tlen.pl>, 2012.
@ -28,8 +31,8 @@ msgid ""
msgstr ""
"Project-Id-Version: friendica\n"
"Report-Msgid-Bugs-To: http://bugs.friendica.com/\n"
"POT-Creation-Date: 2013-02-26 00:00-0800\n"
"PO-Revision-Date: 2013-02-26 10:30+0000\n"
"POT-Creation-Date: 2013-03-19 03:30-0700\n"
"PO-Revision-Date: 2013-04-02 08:42+0000\n"
"Last-Translator: Cyryl Sochacki <cyrylsochacki@gmail.com>\n"
"Language-Team: Polish (http://www.transifex.com/projects/p/friendica/language/pl/)\n"
"MIME-Version: 1.0\n"
@ -38,3278 +41,6 @@ msgstr ""
"Language: pl\n"
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
#: ../../addon.old/altpager/altpager.php:46
#: ../../addon/altpager/altpager.php:46
msgid "Altpager settings updated."
msgstr ""
#: ../../addon.old/altpager/altpager.php:79
#: ../../addon/altpager/altpager.php:83
msgid "Alternate Pagination Setting"
msgstr ""
#: ../../addon.old/altpager/altpager.php:81
#: ../../addon/altpager/altpager.php:85
msgid "Use links to \"newer\" and \"older\" pages in place of page numbers?"
msgstr ""
#: ../../addon.old/altpager/altpager.php:87 ../../addon.old/bg/bg.php:90
#: ../../addon.old/blackout/blackout.php:98
#: ../../addon.old/blockem/blockem.php:57
#: ../../addon.old/blogger/blogger.php:102
#: ../../addon.old/drpost/drpost.php:110 ../../addon.old/dwpost/dwpost.php:93
#: ../../addon.old/editplain/editplain.php:84
#: ../../addon.old/facebook/facebook.php:619
#: ../../addon.old/fbpost/fbpost.php:226
#: ../../addon.old/forumlist/forumlist.php:175
#: ../../addon.old/fromapp/fromapp.php:77
#: ../../addon.old/fromgplus/fromgplus.php:40
#: ../../addon.old/geonames/geonames.php:187 ../../addon.old/gnot/gnot.php:88
#: ../../addon.old/gravatar/gravatar.php:95
#: ../../addon.old/group_text/group_text.php:84
#: ../../addon.old/ijpost/ijpost.php:93
#: ../../addon.old/impressum/impressum.php:83 ../../addon.old/irc/irc.php:55
#: ../../addon.old/jappixmini/jappixmini.php:307
#: ../../addon.old/libertree/libertree.php:90
#: ../../addon.old/libravatar/libravatar.php:99
#: ../../addon.old/ljpost/ljpost.php:93 ../../addon.old/mathjax/mathjax.php:42
#: ../../addon.old/notimeline/notimeline.php:64
#: ../../addon.old/nsfw/nsfw.php:88
#: ../../addon.old/numfriends/numfriends.php:85
#: ../../addon.old/oembed.old/oembed.php:41
#: ../../addon.old/openstreetmap/openstreetmap.php:70
#: ../../addon.old/page/page.php:211
#: ../../addon.old/pageheader/pageheader.php:55
#: ../../addon.old/piwik/piwik.php:89 ../../addon.old/planets/planets.php:158
#: ../../addon.old/posterous/posterous.php:103
#: ../../addon.old/qcomment/qcomment.php:61
#: ../../addon.old/randplace/randplace.php:177
#: ../../addon.old/showmore/showmore.php:48
#: ../../addon.old/snautofollow/snautofollow.php:64
#: ../../addon.old/startpage/startpage.php:92
#: ../../addon.old/statusnet/statusnet.php:278
#: ../../addon.old/statusnet/statusnet.php:292
#: ../../addon.old/statusnet/statusnet.php:318
#: ../../addon.old/statusnet/statusnet.php:325
#: ../../addon.old/statusnet/statusnet.php:353
#: ../../addon.old/statusnet/statusnet.php:576
#: ../../addon.old/tumblr/tumblr.php:90
#: ../../addon.old/twitter/twitter.php:180
#: ../../addon.old/twitter/twitter.php:209
#: ../../addon.old/twitter/twitter.php:394
#: ../../addon.old/uhremotestorage/uhremotestorage.php:89
#: ../../addon.old/wppost/wppost.php:110 ../../addon.old/yourls/yourls.php:76
#: ../../addon/altpager/altpager.php:91 ../../addon/altpager/altpager.php:98
#: ../../addon/blackout/blackout.php:99 ../../addon/blockem/blockem.php:57
#: ../../addon/blogger/blogger.php:102 ../../addon/dwpost/dwpost.php:93
#: ../../addon/editplain/editplain.php:84
#: ../../addon/facebook/facebook.php:621 ../../addon/fbpost/fbpost.php:280
#: ../../addon/forumlist/forumlist.php:178 ../../addon/fromapp/fromapp.php:77
#: ../../addon/fromgplus/fromgplus.php:44
#: ../../addon/geonames/geonames.php:187 ../../addon/gnot/gnot.php:88
#: ../../addon/gravatar/gravatar.php:95
#: ../../addon/group_text/group_text.php:84 ../../addon/ijpost/ijpost.php:93
#: ../../addon/impressum/impressum.php:83 ../../addon/irc/irc.php:55
#: ../../addon/jappixmini/jappixmini.php:307
#: ../../addon/libertree/libertree.php:90
#: ../../addon/libravatar/libravatar.php:99 ../../addon/ljpost/ljpost.php:93
#: ../../addon/mathjax/mathjax.php:42 ../../addon/notimeline/notimeline.php:64
#: ../../addon/nsfw/nsfw.php:88 ../../addon/numfriends/numfriends.php:85
#: ../../addon/openstreetmap/openstreetmap.php:94
#: ../../addon/page/page.php:211 ../../addon/pageheader/pageheader.php:55
#: ../../addon/piwik/piwik.php:89 ../../addon/planets/planets.php:158
#: ../../addon/posterous/posterous.php:103
#: ../../addon/qcomment/qcomment.php:61
#: ../../addon/randplace/randplace.php:177
#: ../../addon/remote_permissions/remote_permissions.php:48
#: ../../addon/remote_permissions/remote_permissions.php:196
#: ../../addon/showmore/showmore.php:48
#: ../../addon/snautofollow/snautofollow.php:64
#: ../../addon/startpage/startpage.php:92
#: ../../addon/statusnet/statusnet.php:290
#: ../../addon/statusnet/statusnet.php:304
#: ../../addon/statusnet/statusnet.php:330
#: ../../addon/statusnet/statusnet.php:337
#: ../../addon/statusnet/statusnet.php:374
#: ../../addon/statusnet/statusnet.php:752 ../../addon/tumblr/tumblr.php:233
#: ../../addon/twitter/twitter.php:191 ../../addon/twitter/twitter.php:229
#: ../../addon/twitter/twitter.php:556
#: ../../addon/uhremotestorage/uhremotestorage.php:89
#: ../../addon/wppost/wppost.php:110 ../../addon/yourls/yourls.php:76
#: ../../mod/profiles.php:626 ../../mod/admin.php:475 ../../mod/admin.php:744
#: ../../mod/admin.php:882 ../../mod/admin.php:1082 ../../mod/admin.php:1169
#: ../../mod/contacts.php:386 ../../mod/settings.php:560
#: ../../mod/settings.php:670 ../../mod/settings.php:739
#: ../../mod/settings.php:811 ../../mod/settings.php:1037
#: ../../mod/crepair.php:166 ../../mod/poke.php:199 ../../mod/events.php:478
#: ../../mod/fsuggest.php:107 ../../mod/group.php:87 ../../mod/install.php:248
#: ../../mod/install.php:286 ../../mod/invite.php:140
#: ../../mod/localtime.php:45 ../../mod/manage.php:110
#: ../../mod/message.php:335 ../../mod/message.php:564 ../../mod/mood.php:137
#: ../../mod/photos.php:1078 ../../mod/photos.php:1199
#: ../../mod/photos.php:1501 ../../mod/photos.php:1552
#: ../../mod/photos.php:1596 ../../mod/photos.php:1679
#: ../../mod/content.php:733 ../../object/Item.php:643
#: ../../view/theme/cleanzero/config.php:80
#: ../../view/theme/diabook/config.php:152
#: ../../view/theme/diabook/theme.php:642 ../../view/theme/dispy/config.php:70
#: ../../view/theme/quattro/config.php:64
msgid "Submit"
msgstr "Potwierdź"
#: ../../addon.old/bg/bg.php:51
msgid "Bg settings updated."
msgstr ""
#: ../../addon.old/bg/bg.php:82
msgid "Bg Settings"
msgstr ""
#: ../../addon.old/bg/bg.php:84 ../../addon.old/numfriends/numfriends.php:79
#: ../../addon/numfriends/numfriends.php:79
msgid "How many contacts to display on profile sidebar"
msgstr ""
#: ../../addon.old/blockem/blockem.php:51 ../../addon/blockem/blockem.php:51
msgid "\"Blockem\" Settings"
msgstr ""
#: ../../addon.old/blockem/blockem.php:53 ../../addon/blockem/blockem.php:53
msgid "Comma separated profile URLS to block"
msgstr ""
#: ../../addon.old/blockem/blockem.php:70 ../../addon/blockem/blockem.php:70
msgid "BLOCKEM Settings saved."
msgstr ""
#: ../../addon.old/blockem/blockem.php:105 ../../addon/blockem/blockem.php:105
#, php-format
msgid "Blocked %s - Click to open/close"
msgstr ""
#: ../../addon.old/blockem/blockem.php:160 ../../addon/blockem/blockem.php:160
msgid "Unblock Author"
msgstr "Odblokuj autora"
#: ../../addon.old/blockem/blockem.php:162 ../../addon/blockem/blockem.php:162
msgid "Block Author"
msgstr "Zablokuj autora"
#: ../../addon.old/blockem/blockem.php:194 ../../addon/blockem/blockem.php:194
msgid "blockem settings updated"
msgstr ""
#: ../../addon.old/blogger/blogger.php:42 ../../addon/blogger/blogger.php:42
msgid "Post to blogger"
msgstr "Post na blogger"
#: ../../addon.old/blogger/blogger.php:74 ../../addon/blogger/blogger.php:74
msgid "Blogger Post Settings"
msgstr "Ustawienia postów na Blogger"
#: ../../addon.old/blogger/blogger.php:76 ../../addon/blogger/blogger.php:76
msgid "Enable Blogger Post Plugin"
msgstr ""
#: ../../addon.old/blogger/blogger.php:81 ../../addon/blogger/blogger.php:81
msgid "Blogger username"
msgstr "Nazwa użytkownika na Blogger"
#: ../../addon.old/blogger/blogger.php:86 ../../addon/blogger/blogger.php:86
msgid "Blogger password"
msgstr "Hasło do Blogger"
#: ../../addon.old/blogger/blogger.php:91 ../../addon/blogger/blogger.php:91
msgid "Blogger API URL"
msgstr "Blogger API URL"
#: ../../addon.old/blogger/blogger.php:96 ../../addon/blogger/blogger.php:96
msgid "Post to Blogger by default"
msgstr ""
#: ../../addon.old/blogger/blogger.php:172
#: ../../addon.old/drpost/drpost.php:184
#: ../../addon.old/posterous/posterous.php:189
#: ../../addon.old/wppost/wppost.php:201 ../../addon/blogger/blogger.php:172
#: ../../addon/posterous/posterous.php:189 ../../addon/wppost/wppost.php:201
msgid "Post from Friendica"
msgstr "Post z Friendica"
#: ../../addon.old/buglink/buglink.php:15 ../../addon/buglink/buglink.php:15
msgid "Report Bug"
msgstr "Zgłoś problem"
#: ../../addon.old/communityhome/twillingham/communityhome.php:28
#: ../../addon.old/communityhome/twillingham/communityhome.php:34
#: ../../addon.old/communityhome/communityhome.php:28
#: ../../addon.old/communityhome/communityhome.php:34
#: ../../addon/communityhome/communityhome.php:28
#: ../../addon/communityhome/communityhome.php:34 ../../include/nav.php:91
#: ../../boot.php:1058
msgid "Login"
msgstr "Login"
#: ../../addon.old/communityhome/twillingham/communityhome.php:29
#: ../../addon.old/communityhome/communityhome.php:29
#: ../../addon/communityhome/communityhome.php:29
msgid "OpenID"
msgstr "OpenID"
#: ../../addon.old/communityhome/twillingham/communityhome.php:38
#: ../../addon.old/communityhome/communityhome.php:38
#: ../../addon/communityhome/communityhome.php:39
msgid "Latest users"
msgstr "Ostatni użytkownicy"
#: ../../addon.old/communityhome/twillingham/communityhome.php:81
#: ../../addon.old/communityhome/communityhome.php:81
#: ../../addon/communityhome/communityhome.php:84
msgid "Most active users"
msgstr "najaktywniejsi użytkownicy"
#: ../../addon.old/communityhome/communityhome.php:98
#: ../../addon/communityhome/communityhome.php:102
msgid "Latest photos"
msgstr "Ostatnie zdjęcia"
#: ../../addon.old/communityhome/communityhome.php:110
#: ../../addon/communityhome/communityhome.php:115 ../../mod/photos.php:59
#: ../../mod/photos.php:154 ../../mod/photos.php:1058
#: ../../mod/photos.php:1183 ../../mod/photos.php:1206
#: ../../mod/photos.php:1736 ../../mod/photos.php:1748
#: ../../view/theme/diabook/theme.php:492
msgid "Contact Photos"
msgstr "Zdjęcia kontaktu"
#: ../../addon.old/communityhome/communityhome.php:111
#: ../../addon/communityhome/communityhome.php:116 ../../include/user.php:325
#: ../../include/user.php:332 ../../include/user.php:339
#: ../../mod/photos.php:154 ../../mod/photos.php:725 ../../mod/photos.php:1183
#: ../../mod/photos.php:1206 ../../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 ../../view/theme/diabook/theme.php:493
msgid "Profile Photos"
msgstr "Zdjęcia profilowe"
#: ../../addon.old/communityhome/communityhome.php:133
#: ../../addon/communityhome/communityhome.php:141
msgid "Latest likes"
msgstr "Ostatnie polubienia"
#: ../../addon.old/communityhome/communityhome.php:155
#: ../../addon/communityhome/communityhome.php:163 ../../include/text.php:1554
#: ../../include/conversation.php:118 ../../include/conversation.php:246
#: ../../view/theme/diabook/theme.php:456
msgid "event"
msgstr "wydarzenie"
#: ../../addon.old/communityhome/communityhome.php:158
#: ../../addon.old/communityhome/communityhome.php:167
#: ../../addon.old/facebook/facebook.php:1598
#: ../../addon/communityhome/communityhome.php:166
#: ../../addon/communityhome/communityhome.php:175
#: ../../addon/facebook/facebook.php:1600 ../../include/diaspora.php:1874
#: ../../include/conversation.php:121 ../../include/conversation.php:130
#: ../../include/conversation.php:249 ../../include/conversation.php:258
#: ../../mod/subthread.php:87 ../../mod/tagger.php:62 ../../mod/like.php:151
#: ../../mod/like.php:322 ../../view/theme/diabook/theme.php:459
#: ../../view/theme/diabook/theme.php:468
msgid "status"
msgstr "status"
#: ../../addon.old/communityhome/communityhome.php:163
#: ../../addon/communityhome/communityhome.php:171 ../../include/text.php:1556
#: ../../include/diaspora.php:1874 ../../include/conversation.php:126
#: ../../include/conversation.php:254 ../../mod/subthread.php:87
#: ../../mod/tagger.php:62 ../../mod/like.php:151
#: ../../view/theme/diabook/theme.php:464
msgid "photo"
msgstr "zdjęcie"
#: ../../addon.old/communityhome/communityhome.php:172
#: ../../addon.old/facebook/facebook.php:1602
#: ../../addon/communityhome/communityhome.php:180
#: ../../addon/facebook/facebook.php:1604 ../../include/diaspora.php:1890
#: ../../include/conversation.php:137 ../../mod/like.php:168
#: ../../view/theme/diabook/theme.php:473
#, php-format
msgid "%1$s likes %2$s's %3$s"
msgstr "%1$s lubi %2$s's %3$s"
#: ../../addon.old/communityhome/communityhome.php:179
#: ../../addon/communityhome/communityhome.php:189 ../../mod/home.php:34
#, php-format
msgid "Welcome to %s"
msgstr "Witamy w %s"
#: ../../addon.old/dav/common/dav_caldav_backend_private.inc.php:39
#: ../../addon/dav/common/dav_caldav_backend_private.inc.php:39
msgid "Private Events"
msgstr "Prywatne wydarzenia"
#: ../../addon.old/dav/common/dav_carddav_backend_private.inc.php:46
#: ../../addon/dav/common/dav_carddav_backend_private.inc.php:46
msgid "Private Addressbooks"
msgstr ""
#: ../../addon.old/dav/common/wdcal_backend.inc.php:92
#: ../../addon.old/dav/common/wdcal_backend.inc.php:166
#: ../../addon.old/dav/common/wdcal_backend.inc.php:178
#: ../../addon.old/dav/common/wdcal_backend.inc.php:206
#: ../../addon.old/dav/common/wdcal_backend.inc.php:214
#: ../../addon.old/dav/common/wdcal_backend.inc.php:229
#: ../../addon/dav/common/wdcal_backend.inc.php:92
#: ../../addon/dav/common/wdcal_backend.inc.php:166
#: ../../addon/dav/common/wdcal_backend.inc.php:178
#: ../../addon/dav/common/wdcal_backend.inc.php:206
#: ../../addon/dav/common/wdcal_backend.inc.php:214
#: ../../addon/dav/common/wdcal_backend.inc.php:229
msgid "No access"
msgstr "Brak dostępu"
#: ../../addon.old/dav/common/wdcal_configuration.php:148
#: ../../addon/dav/common/wdcal_configuration.php:148
msgid "U.S. Time Format (mm/dd/YYYY)"
msgstr "Amerykański format daty (mm/dd/YYYY)"
#: ../../addon.old/dav/common/wdcal_configuration.php:243
#: ../../addon/dav/common/wdcal_configuration.php:243
msgid "German Time Format (dd.mm.YYYY)"
msgstr "Niemiecki format daty (dd.mm.YYYY)"
#: ../../addon.old/dav/common/wdcal_edit.inc.php:30
#: ../../addon.old/dav/common/wdcal_edit.inc.php:738
#: ../../addon/dav/common/wdcal_edit.inc.php:30
#: ../../addon/dav/common/wdcal_edit.inc.php:738
msgid "Could not open component for editing"
msgstr ""
#: ../../addon.old/dav/common/wdcal_edit.inc.php:140
#: ../../addon.old/dav/friendica/layout.fnk.php:143
#: ../../addon.old/dav/friendica/layout.fnk.php:422
#: ../../addon/dav/common/wdcal_edit.inc.php:140
#: ../../addon/dav/friendica/layout.fnk.php:143
#: ../../addon/dav/friendica/layout.fnk.php:422
msgid "Go back to the calendar"
msgstr "Wróć do kalendarza"
#: ../../addon.old/dav/common/wdcal_edit.inc.php:144
#: ../../addon/dav/common/wdcal_edit.inc.php:144
msgid "Event data"
msgstr "Data wydarzenia"
#: ../../addon.old/dav/common/wdcal_edit.inc.php:146
#: ../../addon.old/dav/friendica/main.php:239
#: ../../addon/dav/common/wdcal_edit.inc.php:146
#: ../../addon/dav/friendica/main.php:239
msgid "Calendar"
msgstr "Kalendarz"
#: ../../addon.old/dav/common/wdcal_edit.inc.php:163
#: ../../addon/dav/common/wdcal_edit.inc.php:163
msgid "Special color"
msgstr ""
#: ../../addon.old/dav/common/wdcal_edit.inc.php:169
#: ../../addon/dav/common/wdcal_edit.inc.php:169
msgid "Subject"
msgstr "Temat"
#: ../../addon.old/dav/common/wdcal_edit.inc.php:173
#: ../../addon/dav/common/wdcal_edit.inc.php:173
msgid "Starts"
msgstr "Zaczyna się"
#: ../../addon.old/dav/common/wdcal_edit.inc.php:178
#: ../../addon/dav/common/wdcal_edit.inc.php:178
msgid "Ends"
msgstr "Kończy się"
#: ../../addon.old/dav/common/wdcal_edit.inc.php:183
#: ../../addon/dav/common/wdcal_edit.inc.php:183 ../../mod/profiles.php:367
msgid "Location"
msgstr "Położenie"
#: ../../addon.old/dav/common/wdcal_edit.inc.php:185
#: ../../addon/dav/common/wdcal_edit.inc.php:185
msgid "Description"
msgstr "Opis"
#: ../../addon.old/dav/common/wdcal_edit.inc.php:188
#: ../../addon/dav/common/wdcal_edit.inc.php:188
msgid "Recurrence"
msgstr ""
#: ../../addon.old/dav/common/wdcal_edit.inc.php:190
#: ../../addon/dav/common/wdcal_edit.inc.php:190
msgid "Frequency"
msgstr "często"
#: ../../addon.old/dav/common/wdcal_edit.inc.php:191
#: ../../addon/dav/common/wdcal_edit.inc.php:191
#: ../../addon/fbpost/fbpost.php:255 ../../addon/fbpost/fbpost.php:257
#: ../../mod/settings.php:732 ../../mod/settings.php:737
msgid "None"
msgstr "Brak"
#: ../../addon.old/dav/common/wdcal_edit.inc.php:194
#: ../../addon/dav/common/wdcal_edit.inc.php:194
#: ../../include/contact_selectors.php:59
msgid "Daily"
msgstr "Dziennie"
#: ../../addon.old/dav/common/wdcal_edit.inc.php:197
#: ../../addon/dav/common/wdcal_edit.inc.php:197
#: ../../include/contact_selectors.php:60
msgid "Weekly"
msgstr "Tygodniowo"
#: ../../addon.old/dav/common/wdcal_edit.inc.php:200
#: ../../addon/dav/common/wdcal_edit.inc.php:200
#: ../../include/contact_selectors.php:61
msgid "Monthly"
msgstr "Miesięcznie"
#: ../../addon.old/dav/common/wdcal_edit.inc.php:203
#: ../../addon/dav/common/wdcal_edit.inc.php:203
msgid "Yearly"
msgstr "raz na rok"
#: ../../addon.old/dav/common/wdcal_edit.inc.php:214
#: ../../addon/dav/common/wdcal_edit.inc.php:214
#: ../../include/datetime.php:288
msgid "days"
msgstr "dni"
#: ../../addon.old/dav/common/wdcal_edit.inc.php:215
#: ../../addon/dav/common/wdcal_edit.inc.php:215
#: ../../include/datetime.php:287
msgid "weeks"
msgstr "tygodnie"
#: ../../addon.old/dav/common/wdcal_edit.inc.php:216
#: ../../addon/dav/common/wdcal_edit.inc.php:216
#: ../../include/datetime.php:286
msgid "months"
msgstr "miesiące"
#: ../../addon.old/dav/common/wdcal_edit.inc.php:217
#: ../../addon/dav/common/wdcal_edit.inc.php:217
#: ../../include/datetime.php:285
msgid "years"
msgstr "lata"
#: ../../addon.old/dav/common/wdcal_edit.inc.php:218
#: ../../addon/dav/common/wdcal_edit.inc.php:218
msgid "Interval"
msgstr ""
#: ../../addon.old/dav/common/wdcal_edit.inc.php:218
#: ../../addon/dav/common/wdcal_edit.inc.php:218
msgid "All %select% %time%"
msgstr ""
#: ../../addon.old/dav/common/wdcal_edit.inc.php:222
#: ../../addon.old/dav/common/wdcal_edit.inc.php:260
#: ../../addon.old/dav/common/wdcal_edit.inc.php:481
#: ../../addon/dav/common/wdcal_edit.inc.php:222
#: ../../addon/dav/common/wdcal_edit.inc.php:260
#: ../../addon/dav/common/wdcal_edit.inc.php:481
msgid "Days"
msgstr "Dni"
#: ../../addon.old/dav/common/wdcal_edit.inc.php:231
#: ../../addon.old/dav/common/wdcal_edit.inc.php:254
#: ../../addon.old/dav/common/wdcal_edit.inc.php:270
#: ../../addon.old/dav/common/wdcal_edit.inc.php:293
#: ../../addon.old/dav/common/wdcal_edit.inc.php:305
#: ../../addon/dav/common/wdcal_edit.inc.php:231
#: ../../addon/dav/common/wdcal_edit.inc.php:254
#: ../../addon/dav/common/wdcal_edit.inc.php:270
#: ../../addon/dav/common/wdcal_edit.inc.php:293
#: ../../addon/dav/common/wdcal_edit.inc.php:305 ../../include/text.php:1015
msgid "Sunday"
msgstr "Niedziela"
#: ../../addon.old/dav/common/wdcal_edit.inc.php:235
#: ../../addon.old/dav/common/wdcal_edit.inc.php:274
#: ../../addon.old/dav/common/wdcal_edit.inc.php:308
#: ../../addon/dav/common/wdcal_edit.inc.php:235
#: ../../addon/dav/common/wdcal_edit.inc.php:274
#: ../../addon/dav/common/wdcal_edit.inc.php:308 ../../include/text.php:1015
msgid "Monday"
msgstr "Poniedziałek"
#: ../../addon.old/dav/common/wdcal_edit.inc.php:238
#: ../../addon.old/dav/common/wdcal_edit.inc.php:277
#: ../../addon/dav/common/wdcal_edit.inc.php:238
#: ../../addon/dav/common/wdcal_edit.inc.php:277 ../../include/text.php:1015
msgid "Tuesday"
msgstr "Wtorek"
#: ../../addon.old/dav/common/wdcal_edit.inc.php:241
#: ../../addon.old/dav/common/wdcal_edit.inc.php:280
#: ../../addon/dav/common/wdcal_edit.inc.php:241
#: ../../addon/dav/common/wdcal_edit.inc.php:280 ../../include/text.php:1015
msgid "Wednesday"
msgstr "Środa"
#: ../../addon.old/dav/common/wdcal_edit.inc.php:244
#: ../../addon.old/dav/common/wdcal_edit.inc.php:283
#: ../../addon/dav/common/wdcal_edit.inc.php:244
#: ../../addon/dav/common/wdcal_edit.inc.php:283 ../../include/text.php:1015
msgid "Thursday"
msgstr "Czwartek"
#: ../../addon.old/dav/common/wdcal_edit.inc.php:247
#: ../../addon.old/dav/common/wdcal_edit.inc.php:286
#: ../../addon/dav/common/wdcal_edit.inc.php:247
#: ../../addon/dav/common/wdcal_edit.inc.php:286 ../../include/text.php:1015
msgid "Friday"
msgstr "Piątek"
#: ../../addon.old/dav/common/wdcal_edit.inc.php:250
#: ../../addon.old/dav/common/wdcal_edit.inc.php:289
#: ../../addon/dav/common/wdcal_edit.inc.php:250
#: ../../addon/dav/common/wdcal_edit.inc.php:289 ../../include/text.php:1015
msgid "Saturday"
msgstr "Sobota"
#: ../../addon.old/dav/common/wdcal_edit.inc.php:297
#: ../../addon/dav/common/wdcal_edit.inc.php:297
msgid "First day of week:"
msgstr "Pierwszy dzień tygodnia:"
#: ../../addon.old/dav/common/wdcal_edit.inc.php:350
#: ../../addon.old/dav/common/wdcal_edit.inc.php:373
#: ../../addon/dav/common/wdcal_edit.inc.php:350
#: ../../addon/dav/common/wdcal_edit.inc.php:373
msgid "Day of month"
msgstr "Dzień miesiąca"
#: ../../addon.old/dav/common/wdcal_edit.inc.php:354
#: ../../addon/dav/common/wdcal_edit.inc.php:354
msgid "#num#th of each month"
msgstr ""
#: ../../addon.old/dav/common/wdcal_edit.inc.php:357
#: ../../addon/dav/common/wdcal_edit.inc.php:357
msgid "#num#th-last of each month"
msgstr ""
#: ../../addon.old/dav/common/wdcal_edit.inc.php:360
#: ../../addon/dav/common/wdcal_edit.inc.php:360
msgid "#num#th #wkday# of each month"
msgstr ""
#: ../../addon.old/dav/common/wdcal_edit.inc.php:363
#: ../../addon/dav/common/wdcal_edit.inc.php:363
msgid "#num#th-last #wkday# of each month"
msgstr ""
#: ../../addon.old/dav/common/wdcal_edit.inc.php:372
#: ../../addon.old/dav/friendica/layout.fnk.php:255
#: ../../addon/dav/common/wdcal_edit.inc.php:372
#: ../../addon/dav/friendica/layout.fnk.php:255
msgid "Month"
msgstr "Miesiąc"
#: ../../addon.old/dav/common/wdcal_edit.inc.php:377
#: ../../addon/dav/common/wdcal_edit.inc.php:377
msgid "#num#th of the given month"
msgstr ""
#: ../../addon.old/dav/common/wdcal_edit.inc.php:380
#: ../../addon/dav/common/wdcal_edit.inc.php:380
msgid "#num#th-last of the given month"
msgstr ""
#: ../../addon.old/dav/common/wdcal_edit.inc.php:383
#: ../../addon/dav/common/wdcal_edit.inc.php:383
msgid "#num#th #wkday# of the given month"
msgstr ""
#: ../../addon.old/dav/common/wdcal_edit.inc.php:386
#: ../../addon/dav/common/wdcal_edit.inc.php:386
msgid "#num#th-last #wkday# of the given month"
msgstr ""
#: ../../addon.old/dav/common/wdcal_edit.inc.php:413
#: ../../addon/dav/common/wdcal_edit.inc.php:413
msgid "Repeat until"
msgstr "Powtarzaj do"
#: ../../addon.old/dav/common/wdcal_edit.inc.php:417
#: ../../addon/dav/common/wdcal_edit.inc.php:417
msgid "Infinite"
msgstr ""
#: ../../addon.old/dav/common/wdcal_edit.inc.php:420
#: ../../addon/dav/common/wdcal_edit.inc.php:420
msgid "Until the following date"
msgstr "Do tej daty"
#: ../../addon.old/dav/common/wdcal_edit.inc.php:423
#: ../../addon/dav/common/wdcal_edit.inc.php:423
msgid "Number of times"
msgstr ""
#: ../../addon.old/dav/common/wdcal_edit.inc.php:429
#: ../../addon/dav/common/wdcal_edit.inc.php:429
msgid "Exceptions"
msgstr "Wyjątki"
#: ../../addon.old/dav/common/wdcal_edit.inc.php:432
#: ../../addon/dav/common/wdcal_edit.inc.php:432
msgid "none"
msgstr ""
#: ../../addon.old/dav/common/wdcal_edit.inc.php:449
#: ../../addon/dav/common/wdcal_edit.inc.php:449
msgid "Notification"
msgstr "Powiadomienie"
#: ../../addon.old/dav/common/wdcal_edit.inc.php:466
#: ../../addon/dav/common/wdcal_edit.inc.php:466
msgid "Notify by"
msgstr ""
#: ../../addon.old/dav/common/wdcal_edit.inc.php:468
#: ../../addon/dav/common/wdcal_edit.inc.php:468 ../../mod/delegate.php:130
#: ../../mod/tagrm.php:93
msgid "Remove"
msgstr "Usuń"
#: ../../addon.old/dav/common/wdcal_edit.inc.php:469
#: ../../addon/dav/common/wdcal_edit.inc.php:469
msgid "E-Mail"
msgstr "E-Mail"
#: ../../addon.old/dav/common/wdcal_edit.inc.php:470
#: ../../addon/dav/common/wdcal_edit.inc.php:470
msgid "On Friendica / Display"
msgstr ""
#: ../../addon.old/dav/common/wdcal_edit.inc.php:474
#: ../../addon/dav/common/wdcal_edit.inc.php:474
msgid "Time"
msgstr ""
#: ../../addon.old/dav/common/wdcal_edit.inc.php:478
#: ../../addon/dav/common/wdcal_edit.inc.php:478
msgid "Hours"
msgstr "Godzin"
#: ../../addon.old/dav/common/wdcal_edit.inc.php:479
#: ../../addon/dav/common/wdcal_edit.inc.php:479
msgid "Minutes"
msgstr "Minut"
#: ../../addon.old/dav/common/wdcal_edit.inc.php:480
#: ../../addon/dav/common/wdcal_edit.inc.php:480
msgid "Seconds"
msgstr ""
#: ../../addon.old/dav/common/wdcal_edit.inc.php:482
#: ../../addon/dav/common/wdcal_edit.inc.php:482
msgid "Weeks"
msgstr ""
#: ../../addon.old/dav/common/wdcal_edit.inc.php:485
#: ../../addon/dav/common/wdcal_edit.inc.php:485
msgid "before the"
msgstr ""
#: ../../addon.old/dav/common/wdcal_edit.inc.php:486
#: ../../addon/dav/common/wdcal_edit.inc.php:486
msgid "start of the event"
msgstr "rozpoczęcie wydarzenia"
#: ../../addon.old/dav/common/wdcal_edit.inc.php:487
#: ../../addon/dav/common/wdcal_edit.inc.php:487
msgid "end of the event"
msgstr "zakończenie wydarzenia"
#: ../../addon.old/dav/common/wdcal_edit.inc.php:492
#: ../../addon/dav/common/wdcal_edit.inc.php:492
msgid "Add a notification"
msgstr "Dodaj powiadomienie"
#: ../../addon.old/dav/common/wdcal_edit.inc.php:687
#: ../../addon/dav/common/wdcal_edit.inc.php:687
msgid "The event #name# will start at #date"
msgstr ""
#: ../../addon.old/dav/common/wdcal_edit.inc.php:696
#: ../../addon/dav/common/wdcal_edit.inc.php:696
msgid "#name# is about to begin."
msgstr ""
#: ../../addon.old/dav/common/wdcal_edit.inc.php:769
#: ../../addon/dav/common/wdcal_edit.inc.php:769
msgid "Saved"
msgstr "Zapisano"
#: ../../addon.old/dav/friendica/calendar.friendica.fnk.php:206
#: ../../addon/dav/friendica/calendar.friendica.fnk.php:206
msgid "Private Calendar"
msgstr "Kalendarz prywatny"
#: ../../addon.old/dav/friendica/calendar.friendica.fnk.php:207
#: ../../addon/dav/friendica/calendar.friendica.fnk.php:207
msgid "Friendica Events: Mine"
msgstr "Wydarzenia Friendici: Moje"
#: ../../addon.old/dav/friendica/calendar.friendica.fnk.php:208
#: ../../addon/dav/friendica/calendar.friendica.fnk.php:208
msgid "Friendica Events: Contacts"
msgstr "Wydarzenia Friendici: Kontakty"
#: ../../addon.old/dav/friendica/calendar.friendica.fnk.php:248
#: ../../addon/dav/friendica/calendar.friendica.fnk.php:248
msgid "Private Addresses"
msgstr ""
#: ../../addon.old/dav/friendica/calendar.friendica.fnk.php:249
#: ../../addon/dav/friendica/calendar.friendica.fnk.php:249
msgid "Friendica Contacts"
msgstr "Kontakty Friendica"
#: ../../addon.old/dav/friendica/dav_caldav_backend_virtual_friendica.inc.php:36
#: ../../addon/dav/friendica/dav_caldav_backend_virtual_friendica.inc.php:36
msgid "Friendica-Native events"
msgstr ""
#: ../../addon.old/dav/friendica/dav_carddav_backend_virtual_friendica.inc.php:36
#: ../../addon.old/dav/friendica/dav_carddav_backend_virtual_friendica.inc.php:59
#: ../../addon/dav/friendica/dav_carddav_backend_virtual_friendica.inc.php:36
#: ../../addon/dav/friendica/dav_carddav_backend_virtual_friendica.inc.php:59
msgid "Friendica-Contacts"
msgstr "Kontakty friendica"
#: ../../addon.old/dav/friendica/dav_carddav_backend_virtual_friendica.inc.php:60
#: ../../addon/dav/friendica/dav_carddav_backend_virtual_friendica.inc.php:60
msgid "Your Friendica-Contacts"
msgstr "Twoje kontakty friendica"
#: ../../addon.old/dav/friendica/layout.fnk.php:99
#: ../../addon.old/dav/friendica/layout.fnk.php:136
#: ../../addon/dav/friendica/layout.fnk.php:99
#: ../../addon/dav/friendica/layout.fnk.php:136
msgid ""
"Something went wrong when trying to import the file. Sorry. Maybe some "
"events were imported anyway."
msgstr ""
#: ../../addon.old/dav/friendica/layout.fnk.php:131
#: ../../addon/dav/friendica/layout.fnk.php:131
msgid "Something went wrong when trying to import the file. Sorry."
msgstr ""
#: ../../addon.old/dav/friendica/layout.fnk.php:134
#: ../../addon/dav/friendica/layout.fnk.php:134
msgid "The ICS-File has been imported."
msgstr ""
#: ../../addon.old/dav/friendica/layout.fnk.php:138
#: ../../addon/dav/friendica/layout.fnk.php:138
msgid "No file was uploaded."
msgstr "Nie wgrano pliku."
#: ../../addon.old/dav/friendica/layout.fnk.php:147
#: ../../addon/dav/friendica/layout.fnk.php:147
msgid "Import a ICS-file"
msgstr ""
#: ../../addon.old/dav/friendica/layout.fnk.php:150
#: ../../addon/dav/friendica/layout.fnk.php:150
msgid "ICS-File"
msgstr ""
#: ../../addon.old/dav/friendica/layout.fnk.php:151
#: ../../addon/dav/friendica/layout.fnk.php:151
msgid "Overwrite all #num# existing events"
msgstr ""
#: ../../addon.old/dav/friendica/layout.fnk.php:152
#: ../../addon/dav/friendica/layout.fnk.php:152
#: ../../mod/profile_photo.php:245
msgid "Upload"
msgstr "Załaduj"
#: ../../addon.old/dav/friendica/layout.fnk.php:225
#: ../../addon.old/mathjax/mathjax.php:36
#: ../../addon/dav/friendica/layout.fnk.php:225
#: ../../addon/mathjax/mathjax.php:36 ../../include/nav.php:167
#: ../../mod/admin.php:841 ../../mod/admin.php:1049 ../../mod/settings.php:74
#: ../../mod/uexport.php:48 ../../mod/newmember.php:22
#: ../../view/theme/diabook/theme.php:537
#: ../../view/theme/diabook/theme.php:658
msgid "Settings"
msgstr "Ustawienia"
#: ../../addon.old/dav/friendica/layout.fnk.php:225
#: ../../addon/dav/friendica/layout.fnk.php:225 ../../include/nav.php:113
#: ../../mod/help.php:84
msgid "Help"
msgstr "Pomoc"
#: ../../addon.old/dav/friendica/layout.fnk.php:228
#: ../../addon/dav/friendica/layout.fnk.php:228
msgid "New event"
msgstr "Nowe wydarzenie"
#: ../../addon.old/dav/friendica/layout.fnk.php:232
#: ../../addon/dav/friendica/layout.fnk.php:232
msgid "Today"
msgstr "Dzisiaj"
#: ../../addon.old/dav/friendica/layout.fnk.php:241
#: ../../addon/dav/friendica/layout.fnk.php:241
msgid "Day"
msgstr "Dzień"
#: ../../addon.old/dav/friendica/layout.fnk.php:248
#: ../../addon/dav/friendica/layout.fnk.php:248
msgid "Week"
msgstr "Tydzień"
#: ../../addon.old/dav/friendica/layout.fnk.php:260
#: ../../addon/dav/friendica/layout.fnk.php:260
msgid "Reload"
msgstr "Załaduj ponownie"
#: ../../addon.old/dav/friendica/layout.fnk.php:263
#: ../../addon/dav/friendica/layout.fnk.php:263 ../../mod/events.php:372
msgid "Previous"
msgstr "Poprzedni"
#: ../../addon.old/dav/friendica/layout.fnk.php:266
#: ../../addon/dav/friendica/layout.fnk.php:266 ../../mod/events.php:373
#: ../../mod/install.php:207
msgid "Next"
msgstr "Następny"
#: ../../addon.old/dav/friendica/layout.fnk.php:271
#: ../../addon/dav/friendica/layout.fnk.php:271
msgid "Date"
msgstr "Data"
#: ../../addon.old/dav/friendica/layout.fnk.php:313
#: ../../addon/dav/friendica/layout.fnk.php:313
msgid "Error"
msgstr "Błąd"
#: ../../addon.old/dav/friendica/layout.fnk.php:354
#: ../../addon.old/facebook/facebook.php:510
#: ../../addon.old/facebook/facebook.php:516
#: ../../addon.old/fbpost/fbpost.php:159 ../../addon.old/fbpost/fbpost.php:165
#: ../../addon/dav/friendica/layout.fnk.php:354
#: ../../addon/facebook/facebook.php:512 ../../addon/facebook/facebook.php:518
#: ../../addon/fbpost/fbpost.php:170 ../../addon/fbpost/fbpost.php:176
#: ../../addon/tumblr/tumblr.php:34 ../../include/items.php:4090
#: ../../mod/profiles.php:146 ../../mod/profiles.php:567
#: ../../mod/notes.php:20 ../../mod/nogroup.php:25 ../../mod/item.php:140
#: ../../mod/item.php:156 ../../mod/allfriends.php:9 ../../mod/api.php:26
#: ../../mod/api.php:31 ../../mod/register.php:40 ../../mod/regmod.php:118
#: ../../mod/attach.php:33 ../../mod/contacts.php:147
#: ../../mod/settings.php:91 ../../mod/settings.php:542
#: ../../mod/settings.php:547 ../../mod/crepair.php:115
#: ../../mod/delegate.php:6 ../../mod/poke.php:135
#: ../../mod/dfrn_confirm.php:53 ../../mod/suggest.php:56
#: ../../mod/display.php:180 ../../mod/editpost.php:10
#: ../../mod/events.php:140 ../../mod/uimport.php:23 ../../mod/follow.php:9
#: ../../mod/fsuggest.php:78 ../../mod/group.php:19
#: ../../mod/viewcontacts.php:22 ../../mod/wall_attach.php:55
#: ../../mod/install.php:151 ../../mod/wall_upload.php:66
#: ../../mod/invite.php:15 ../../mod/invite.php:101
#: ../../mod/wallmessage.php:9 ../../mod/wallmessage.php:33
#: ../../mod/wallmessage.php:79 ../../mod/wallmessage.php:103
#: ../../mod/manage.php:96 ../../mod/message.php:38 ../../mod/message.php:174
#: ../../mod/mood.php:114 ../../mod/network.php:6 ../../mod/photos.php:133
#: ../../mod/photos.php:1044 ../../mod/notifications.php:66
#: ../../mod/profile_photo.php:19 ../../mod/profile_photo.php:169
#: ../../mod/profile_photo.php:180 ../../mod/profile_photo.php:193
#: ../../index.php:341
msgid "Permission denied."
msgstr "Brak uprawnień."
#: ../../addon.old/dav/friendica/layout.fnk.php:361
#: ../../addon.old/facebook/facebook.php:799
#: ../../addon.old/fbpost/fbpost.php:282
#: ../../addon/dav/friendica/layout.fnk.php:361
#: ../../addon/facebook/facebook.php:801 ../../addon/fbpost/fbpost.php:337
msgid "The new values have been saved."
msgstr ""
#: ../../addon.old/dav/friendica/layout.fnk.php:380
#: ../../addon/dav/friendica/layout.fnk.php:380
msgid "The calendar has been updated."
msgstr ""
#: ../../addon.old/dav/friendica/layout.fnk.php:393
#: ../../addon/dav/friendica/layout.fnk.php:393
msgid "The new calendar has been created."
msgstr ""
#: ../../addon.old/dav/friendica/layout.fnk.php:417
#: ../../addon/dav/friendica/layout.fnk.php:417
msgid "The calendar has been deleted."
msgstr ""
#: ../../addon.old/dav/friendica/layout.fnk.php:424
#: ../../addon/dav/friendica/layout.fnk.php:424
msgid "Calendar Settings"
msgstr "Ustawienia kalendarza"
#: ../../addon.old/dav/friendica/layout.fnk.php:430
#: ../../addon/dav/friendica/layout.fnk.php:430
msgid "Date format"
msgstr "Format daty"
#: ../../addon.old/dav/friendica/layout.fnk.php:439
#: ../../addon/dav/friendica/layout.fnk.php:439
msgid "Time zone"
msgstr "Strefa czasowa"
#: ../../addon.old/dav/friendica/layout.fnk.php:441
#: ../../addon.old/dav/friendica/layout.fnk.php:488
#: ../../addon.old/facebook/facebook.php:770
#: ../../addon.old/fbpost/fbpost.php:267
#: ../../addon.old/privacy_image_cache/privacy_image_cache.php:263
#: ../../addon/dav/friendica/layout.fnk.php:441
#: ../../addon/dav/friendica/layout.fnk.php:488
#: ../../addon/facebook/facebook.php:772 ../../addon/fbpost/fbpost.php:322
#: ../../addon/privacy_image_cache/privacy_image_cache.php:354
#: ../../include/text.php:781 ../../mod/notes.php:63 ../../mod/filer.php:31
msgid "Save"
msgstr "Zapisz"
#: ../../addon.old/dav/friendica/layout.fnk.php:445
#: ../../addon/dav/friendica/layout.fnk.php:445
msgid "Calendars"
msgstr "Kalendarze"
#: ../../addon.old/dav/friendica/layout.fnk.php:487
#: ../../addon/dav/friendica/layout.fnk.php:487
msgid "Create a new calendar"
msgstr "Stwórz nowy kalendarz"
#: ../../addon.old/dav/friendica/layout.fnk.php:496
#: ../../addon/dav/friendica/layout.fnk.php:496
msgid "Limitations"
msgstr "Ograniczenie"
#: ../../addon.old/dav/friendica/layout.fnk.php:500
#: ../../addon.old/libravatar/libravatar.php:82
#: ../../addon/dav/friendica/layout.fnk.php:500
#: ../../addon/libravatar/libravatar.php:82
msgid "Warning"
msgstr "Ostrzeżenie"
#: ../../addon.old/dav/friendica/layout.fnk.php:504
#: ../../addon/dav/friendica/layout.fnk.php:504
msgid "Synchronization (iPhone, Thunderbird Lightning, Android, ...)"
msgstr "Synchronizacja (iPhone, Thunderbird Lightning, Android, ...)"
#: ../../addon.old/dav/friendica/layout.fnk.php:511
#: ../../addon/dav/friendica/layout.fnk.php:511
msgid "Synchronizing this calendar with the iPhone"
msgstr "Zsynchronizuj kalendarz z iPhone"
#: ../../addon.old/dav/friendica/layout.fnk.php:522
#: ../../addon/dav/friendica/layout.fnk.php:522
msgid "Synchronizing your Friendica-Contacts with the iPhone"
msgstr "Zsynchronizuj kontakty friendica z iPhone"
#: ../../addon.old/dav/friendica/main.php:202
#: ../../addon/dav/friendica/main.php:202
msgid ""
"The current version of this plugin has not been set up correctly. Please "
"contact the system administrator of your installation of friendica to fix "
"this."
msgstr ""
#: ../../addon.old/dav/friendica/main.php:242
#: ../../addon/dav/friendica/main.php:242
msgid "Extended calendar with CalDAV-support"
msgstr ""
#: ../../addon.old/dav/friendica/main.php:279
#: ../../addon.old/dav/friendica/main.php:280
#: ../../addon/dav/friendica/main.php:279
#: ../../addon/dav/friendica/main.php:280 ../../include/delivery.php:468
#: ../../include/enotify.php:28 ../../include/notifier.php:785
msgid "noreply"
msgstr "brak odpowiedzi"
#: ../../addon.old/dav/friendica/main.php:282
#: ../../addon/dav/friendica/main.php:282
msgid "Notification: "
msgstr "Potwierdzeni:"
#: ../../addon.old/dav/friendica/main.php:309
#: ../../addon/dav/friendica/main.php:309
msgid "The database tables have been installed."
msgstr ""
#: ../../addon.old/dav/friendica/main.php:310
#: ../../addon/dav/friendica/main.php:310
msgid "An error occurred during the installation."
msgstr ""
#: ../../addon.old/dav/friendica/main.php:316
#: ../../addon/dav/friendica/main.php:316
msgid "The database tables have been updated."
msgstr ""
#: ../../addon.old/dav/friendica/main.php:317
#: ../../addon/dav/friendica/main.php:317
msgid "An error occurred during the update."
msgstr ""
#: ../../addon.old/dav/friendica/main.php:333
#: ../../addon/dav/friendica/main.php:333
msgid "No system-wide settings yet."
msgstr ""
#: ../../addon.old/dav/friendica/main.php:336
#: ../../addon/dav/friendica/main.php:336
msgid "Database status"
msgstr ""
#: ../../addon.old/dav/friendica/main.php:339
#: ../../addon/dav/friendica/main.php:339
msgid "Installed"
msgstr "Zainstalowany"
#: ../../addon.old/dav/friendica/main.php:343
#: ../../addon/dav/friendica/main.php:343
msgid "Upgrade needed"
msgstr "Wymaga uaktualnienia"
#: ../../addon.old/dav/friendica/main.php:343
#: ../../addon/dav/friendica/main.php:343
msgid ""
"Please back up all calendar data (the tables beginning with dav_*) before "
"proceeding. While all calendar events <i>should</i> be converted to the new "
"database structure, it's always safe to have a backup. Below, you can have a"
" look at the database-queries that will be made when pressing the "
"'update'-button."
msgstr ""
#: ../../addon.old/dav/friendica/main.php:343
#: ../../addon/dav/friendica/main.php:343
msgid "Upgrade"
msgstr "Uaktualnienie"
#: ../../addon.old/dav/friendica/main.php:346
#: ../../addon/dav/friendica/main.php:346
msgid "Not installed"
msgstr "Nie zainstalowany"
#: ../../addon.old/dav/friendica/main.php:346
#: ../../addon/dav/friendica/main.php:346
msgid "Install"
msgstr "Zainstaluj"
#: ../../addon.old/dav/friendica/main.php:350
#: ../../addon/dav/friendica/main.php:350
msgid "Unknown"
msgstr "Nieznany"
#: ../../addon.old/dav/friendica/main.php:350
#: ../../addon/dav/friendica/main.php:350
msgid ""
"Something really went wrong. I cannot recover from this state automatically,"
" sorry. Please go to the database backend, back up the data, and delete all "
"tables beginning with 'dav_' manually. Afterwards, this installation routine"
" should be able to reinitialize the tables automatically."
msgstr ""
#: ../../addon.old/dav/friendica/main.php:355
#: ../../addon/dav/friendica/main.php:355
msgid "Troubleshooting"
msgstr "Rozwiązywanie problemów"
#: ../../addon.old/dav/friendica/main.php:356
#: ../../addon/dav/friendica/main.php:356
msgid "Manual creation of the database tables:"
msgstr ""
#: ../../addon.old/dav/friendica/main.php:357
#: ../../addon/dav/friendica/main.php:357
msgid "Show SQL-statements"
msgstr ""
#: ../../addon.old/drpost/drpost.php:35
msgid "Post to Drupal"
msgstr "Opublikuj na Drupal"
#: ../../addon.old/drpost/drpost.php:72
msgid "Drupal Post Settings"
msgstr "Ustawienia wpisów Drupala"
#: ../../addon.old/drpost/drpost.php:74
msgid "Enable Drupal Post Plugin"
msgstr "Włącz plugin wpisów Drupala"
#: ../../addon.old/drpost/drpost.php:79
msgid "Drupal username"
msgstr "Użytkownik Drupala"
#: ../../addon.old/drpost/drpost.php:84
msgid "Drupal password"
msgstr "hasło do Drupal"
#: ../../addon.old/drpost/drpost.php:89
msgid "Post Type - article,page,or blog"
msgstr ""
#: ../../addon.old/drpost/drpost.php:94
msgid "Drupal site URL"
msgstr "Adres strony Drupala"
#: ../../addon.old/drpost/drpost.php:99
msgid "Drupal site uses clean URLS"
msgstr ""
#: ../../addon.old/drpost/drpost.php:104
msgid "Post to Drupal by default"
msgstr ""
#: ../../addon.old/dwpost/dwpost.php:39 ../../addon/dwpost/dwpost.php:39
msgid "Post to Dreamwidth"
msgstr "Opublikuj na Dreamwidth"
#: ../../addon.old/dwpost/dwpost.php:70 ../../addon/dwpost/dwpost.php:70
msgid "Dreamwidth Post Settings"
msgstr ""
#: ../../addon.old/dwpost/dwpost.php:72 ../../addon/dwpost/dwpost.php:72
msgid "Enable dreamwidth Post Plugin"
msgstr ""
#: ../../addon.old/dwpost/dwpost.php:77 ../../addon/dwpost/dwpost.php:77
msgid "dreamwidth username"
msgstr ""
#: ../../addon.old/dwpost/dwpost.php:82 ../../addon/dwpost/dwpost.php:82
msgid "dreamwidth password"
msgstr ""
#: ../../addon.old/dwpost/dwpost.php:87 ../../addon/dwpost/dwpost.php:87
msgid "Post to dreamwidth by default"
msgstr ""
#: ../../addon.old/editplain/editplain.php:46
#: ../../addon.old/group_text/group_text.php:46
#: ../../addon/editplain/editplain.php:46
msgid "Editplain settings updated."
msgstr ""
#: ../../addon.old/editplain/editplain.php:76
#: ../../addon/editplain/editplain.php:76
msgid "Editplain Settings"
msgstr ""
#: ../../addon.old/editplain/editplain.php:78
#: ../../addon/editplain/editplain.php:78
msgid "Disable richtext status editor"
msgstr ""
#: ../../addon.old/facebook/facebook.php:495
#: ../../addon.old/fbpost/fbpost.php:144
#: ../../addon.old/impressum/impressum.php:78
#: ../../addon.old/mathjax/mathjax.php:66
#: ../../addon.old/openstreetmap/openstreetmap.php:80
#: ../../addon.old/piwik/piwik.php:105 ../../addon.old/twitter/twitter.php:389
#: ../../addon/altpager/altpager.php:107 ../../addon/facebook/facebook.php:497
#: ../../addon/fbpost/fbpost.php:155 ../../addon/impressum/impressum.php:78
#: ../../addon/mathjax/mathjax.php:66
#: ../../addon/openstreetmap/openstreetmap.php:104
#: ../../addon/piwik/piwik.php:105
#: ../../addon/remote_permissions/remote_permissions.php:205
#: ../../addon/twitter/twitter.php:550 ../../mod/settings.php:488
msgid "Settings updated."
msgstr "Zaktualizowano ustawienia."
#: ../../addon.old/facebook/facebook.php:523
#: ../../addon/facebook/facebook.php:525
msgid "Facebook disabled"
msgstr "Facebook wyłączony"
#: ../../addon.old/facebook/facebook.php:528
#: ../../addon/facebook/facebook.php:530
msgid "Updating contacts"
msgstr "Aktualizacja kontaktów"
#: ../../addon.old/facebook/facebook.php:551
#: ../../addon.old/fbpost/fbpost.php:192 ../../addon/facebook/facebook.php:553
#: ../../addon/fbpost/fbpost.php:203
msgid "Facebook API key is missing."
msgstr "Brakuje klucza API z facebooka."
#: ../../addon.old/facebook/facebook.php:558
#: ../../addon/facebook/facebook.php:560
msgid "Facebook Connect"
msgstr "Połącz konto z kontem Facebook"
#: ../../addon.old/facebook/facebook.php:564
#: ../../addon/facebook/facebook.php:566
msgid "Install Facebook connector for this account."
msgstr "Zainstaluj wtyczkę Facebook "
#: ../../addon.old/facebook/facebook.php:571
#: ../../addon/facebook/facebook.php:573
msgid "Remove Facebook connector"
msgstr "Usuń wtyczkę Facebook"
#: ../../addon.old/facebook/facebook.php:576
#: ../../addon.old/fbpost/fbpost.php:217 ../../addon/facebook/facebook.php:578
#: ../../addon/fbpost/fbpost.php:228
msgid ""
"Re-authenticate [This is necessary whenever your Facebook password is "
"changed.]"
msgstr "Ponowna autoryzacja [Jest wymagana jeśli twoje hasło do Facebooka jest zmienione]"
#: ../../addon.old/facebook/facebook.php:583
#: ../../addon.old/fbpost/fbpost.php:224 ../../addon/facebook/facebook.php:585
#: ../../addon/fbpost/fbpost.php:235
msgid "Post to Facebook by default"
msgstr "Domyślnie opublikuj na stronie Facebook"
#: ../../addon.old/facebook/facebook.php:589
#: ../../addon/facebook/facebook.php:591
msgid ""
"Facebook friend linking has been disabled on this site. The following "
"settings will have no effect."
msgstr ""
#: ../../addon.old/facebook/facebook.php:593
#: ../../addon/facebook/facebook.php:595
msgid ""
"Facebook friend linking has been disabled on this site. If you disable it, "
"you will be unable to re-enable it."
msgstr ""
#: ../../addon.old/facebook/facebook.php:596
#: ../../addon/facebook/facebook.php:598
msgid "Link all your Facebook friends and conversations on this website"
msgstr "Połącz wszystkie twoje kontakty i konwersacje na tej stronie z serwisem Facebook"
#: ../../addon.old/facebook/facebook.php:598
#: ../../addon/facebook/facebook.php:600
msgid ""
"Facebook conversations consist of your <em>profile wall</em> and your friend"
" <em>stream</em>."
msgstr ""
#: ../../addon.old/facebook/facebook.php:599
#: ../../addon/facebook/facebook.php:601
msgid "On this website, your Facebook friend stream is only visible to you."
msgstr ""
#: ../../addon.old/facebook/facebook.php:600
#: ../../addon/facebook/facebook.php:602
msgid ""
"The following settings determine the privacy of your Facebook profile wall "
"on this website."
msgstr ""
#: ../../addon.old/facebook/facebook.php:604
#: ../../addon/facebook/facebook.php:606
msgid ""
"On this website your Facebook profile wall conversations will only be "
"visible to you"
msgstr ""
#: ../../addon.old/facebook/facebook.php:609
#: ../../addon/facebook/facebook.php:611
msgid "Do not import your Facebook profile wall conversations"
msgstr ""
#: ../../addon.old/facebook/facebook.php:611
#: ../../addon/facebook/facebook.php:613
msgid ""
"If you choose to link conversations and leave both of these boxes unchecked,"
" your Facebook profile wall will be merged with your profile wall on this "
"website and your privacy settings on this website will be used to determine "
"who may see the conversations."
msgstr ""
#: ../../addon.old/facebook/facebook.php:616
#: ../../addon/facebook/facebook.php:618
msgid "Comma separated applications to ignore"
msgstr ""
#: ../../addon.old/facebook/facebook.php:700
#: ../../addon/facebook/facebook.php:702
msgid "Problems with Facebook Real-Time Updates"
msgstr "Problemy z aktualizacjami w czasie rzeczywistym Facebook'a"
#: ../../addon.old/facebook/facebook.php:702
#: ../../addon.old/facebook/facebook.php:1200
#: ../../addon.old/fbpost/fbpost.php:661
#: ../../addon.old/public_server/public_server.php:62
#: ../../addon.old/testdrive/testdrive.php:67
#: ../../addon/facebook/facebook.php:704
#: ../../addon/facebook/facebook.php:1202 ../../addon/fbpost/fbpost.php:821
#: ../../addon/public_server/public_server.php:62
#: ../../addon/testdrive/testdrive.php:67
msgid "Administrator"
msgstr "Administrator"
#: ../../addon.old/facebook/facebook.php:728
#: ../../addon.old/fbpost/fbpost.php:239 ../../addon/facebook/facebook.php:730
#: ../../addon/fbpost/fbpost.php:294 ../../include/contact_selectors.php:81
#: ../../mod/newmember.php:49 ../../mod/newmember.php:51
msgid "Facebook"
msgstr "Facebook"
#: ../../addon.old/facebook/facebook.php:729
#: ../../addon/facebook/facebook.php:731
msgid "Facebook Connector Settings"
msgstr "Ustawienia połączenia z Facebook"
#: ../../addon.old/facebook/facebook.php:744
#: ../../addon.old/fbpost/fbpost.php:255 ../../addon/facebook/facebook.php:746
#: ../../addon/fbpost/fbpost.php:310
msgid "Facebook API Key"
msgstr "Facebook API Key"
#: ../../addon.old/facebook/facebook.php:754
#: ../../addon.old/fbpost/fbpost.php:262 ../../addon/facebook/facebook.php:756
#: ../../addon/fbpost/fbpost.php:317
msgid ""
"Error: it appears that you have specified the App-ID and -Secret in your "
".htconfig.php file. As long as they are specified there, they cannot be set "
"using this form.<br><br>"
msgstr ""
#: ../../addon.old/facebook/facebook.php:759
#: ../../addon/facebook/facebook.php:761
msgid ""
"Error: the given API Key seems to be incorrect (the application access token"
" could not be retrieved)."
msgstr ""
#: ../../addon.old/facebook/facebook.php:761
#: ../../addon/facebook/facebook.php:763
msgid "The given API Key seems to work correctly."
msgstr ""
#: ../../addon.old/facebook/facebook.php:763
#: ../../addon/facebook/facebook.php:765
msgid ""
"The correctness of the API Key could not be detected. Something strange's "
"going on."
msgstr ""
#: ../../addon.old/facebook/facebook.php:766
#: ../../addon.old/fbpost/fbpost.php:264 ../../addon/facebook/facebook.php:768
#: ../../addon/fbpost/fbpost.php:319
msgid "App-ID / API-Key"
msgstr "App-ID / API-Key"
#: ../../addon.old/facebook/facebook.php:767
#: ../../addon.old/fbpost/fbpost.php:265 ../../addon/facebook/facebook.php:769
#: ../../addon/fbpost/fbpost.php:320
msgid "Application secret"
msgstr ""
#: ../../addon.old/facebook/facebook.php:768
#: ../../addon/facebook/facebook.php:770
#, php-format
msgid "Polling Interval in minutes (minimum %1$s minutes)"
msgstr ""
#: ../../addon.old/facebook/facebook.php:769
#: ../../addon/facebook/facebook.php:771
msgid ""
"Synchronize comments (no comments on Facebook are missed, at the cost of "
"increased system load)"
msgstr ""
#: ../../addon.old/facebook/facebook.php:773
#: ../../addon/facebook/facebook.php:775
msgid "Real-Time Updates"
msgstr "Aktualizacje w czasie rzeczywistym"
#: ../../addon.old/facebook/facebook.php:777
#: ../../addon/facebook/facebook.php:779
msgid "Real-Time Updates are activated."
msgstr "Aktualizacje w czasie rzeczywistym zostały aktywowane."
#: ../../addon.old/facebook/facebook.php:778
#: ../../addon/facebook/facebook.php:780
msgid "Deactivate Real-Time Updates"
msgstr "Zdezaktywuj aktualizacje w czasie rzeczywistym"
#: ../../addon.old/facebook/facebook.php:780
#: ../../addon/facebook/facebook.php:782
msgid "Real-Time Updates not activated."
msgstr "Aktualizacje w czasie rzeczywistym nie zostały aktywowane."
#: ../../addon.old/facebook/facebook.php:780
#: ../../addon/facebook/facebook.php:782
msgid "Activate Real-Time Updates"
msgstr "Aktywuj aktualizacje w czasie rzeczywistym"
#: ../../addon.old/facebook/facebook.php:823
#: ../../addon.old/fbpost/fbpost.php:301 ../../addon/facebook/facebook.php:825
#: ../../addon/fbpost/fbpost.php:356
msgid "Post to Facebook"
msgstr "Post na Facebook"
#: ../../addon.old/facebook/facebook.php:921
#: ../../addon.old/fbpost/fbpost.php:399 ../../addon/facebook/facebook.php:923
#: ../../addon/fbpost/fbpost.php:487
msgid ""
"Post to Facebook cancelled because of multi-network access permission "
"conflict."
msgstr "Publikacja na stronie Facebook nie powiodła się z powodu braku dostępu do sieci"
#: ../../addon.old/facebook/facebook.php:1149
#: ../../addon.old/fbpost/fbpost.php:610
#: ../../addon/facebook/facebook.php:1151 ../../addon/fbpost/fbpost.php:766
msgid "View on Friendica"
msgstr "Zobacz na Friendice"
#: ../../addon.old/facebook/facebook.php:1182
#: ../../addon.old/fbpost/fbpost.php:643
#: ../../addon/facebook/facebook.php:1184 ../../addon/fbpost/fbpost.php:803
msgid "Facebook post failed. Queued for retry."
msgstr ""
#: ../../addon.old/facebook/facebook.php:1222
#: ../../addon.old/fbpost/fbpost.php:683
#: ../../addon/facebook/facebook.php:1224 ../../addon/fbpost/fbpost.php:843
msgid "Your Facebook connection became invalid. Please Re-authenticate."
msgstr ""
#: ../../addon.old/facebook/facebook.php:1223
#: ../../addon.old/fbpost/fbpost.php:684
#: ../../addon/facebook/facebook.php:1225 ../../addon/fbpost/fbpost.php:844
msgid "Facebook connection became invalid"
msgstr "Błędne połączenie z Facebookiem"
#: ../../addon.old/facebook/facebook.php:1224
#: ../../addon.old/fbpost/fbpost.php:685
#: ../../addon/facebook/facebook.php:1226 ../../addon/fbpost/fbpost.php:845
#, php-format
msgid ""
"Hi %1$s,\n"
"\n"
"The connection between your accounts on %2$s and Facebook became invalid. This usually happens after you change your Facebook-password. To enable the connection again, you have to %3$sre-authenticate the Facebook-connector%4$s."
msgstr ""
#: ../../addon.old/fbpost/fbpost.php:172 ../../addon/fbpost/fbpost.php:183
msgid "Facebook Post disabled"
msgstr ""
#: ../../addon.old/fbpost/fbpost.php:199 ../../addon/fbpost/fbpost.php:210
msgid "Facebook Post"
msgstr "Wpis z Facebooka"
#: ../../addon.old/fbpost/fbpost.php:205 ../../addon/fbpost/fbpost.php:216
msgid "Install Facebook Post connector for this account."
msgstr ""
#: ../../addon.old/fbpost/fbpost.php:212 ../../addon/fbpost/fbpost.php:223
msgid "Remove Facebook Post connector"
msgstr ""
#: ../../addon.old/fbpost/fbpost.php:240 ../../addon/fbpost/fbpost.php:295
msgid "Facebook Post Settings"
msgstr "Ustawienia wpisu z Facebooka"
#: ../../addon.old/forumlist/forumlist.php:60 ../../addon.old/page/page.php:62
#: ../../addon.old/page/page.php:92 ../../addon/forumlist/forumlist.php:64
#: ../../addon/page/page.php:62 ../../addon/page/page.php:92
msgid "Forums"
msgstr "Fora"
#: ../../addon.old/forumlist/forumlist.php:63
#: ../../addon/forumlist/forumlist.php:67
msgid "show/hide"
msgstr "pokaż/ukryj"
#: ../../addon.old/forumlist/forumlist.php:77
#: ../../addon/forumlist/forumlist.php:81
msgid "No forum subscriptions"
msgstr ""
#: ../../addon.old/forumlist/forumlist.php:94
#: ../../addon.old/page/page.php:130 ../../addon/forumlist/forumlist.php:98
#: ../../addon/page/page.php:130
msgid "Forums:"
msgstr ""
#: ../../addon.old/forumlist/forumlist.php:131
#: ../../addon/forumlist/forumlist.php:134
msgid "Forumlist settings updated."
msgstr ""
#: ../../addon.old/forumlist/forumlist.php:159
#: ../../addon/forumlist/forumlist.php:162
msgid "Forumlist Settings"
msgstr ""
#: ../../addon.old/forumlist/forumlist.php:161
#: ../../addon/forumlist/forumlist.php:164
msgid "Randomise forum list"
msgstr ""
#: ../../addon.old/forumlist/forumlist.php:164
#: ../../addon/forumlist/forumlist.php:167
msgid "Show forums on profile page"
msgstr ""
#: ../../addon.old/forumlist/forumlist.php:167
#: ../../addon/forumlist/forumlist.php:170
msgid "Show forums on network page"
msgstr ""
#: ../../addon.old/fromapp/fromapp.php:38 ../../addon/fromapp/fromapp.php:38
msgid "Fromapp settings updated."
msgstr ""
#: ../../addon.old/fromapp/fromapp.php:64 ../../addon/fromapp/fromapp.php:64
msgid "FromApp Settings"
msgstr ""
#: ../../addon.old/fromapp/fromapp.php:66 ../../addon/fromapp/fromapp.php:66
msgid ""
"The application name you would like to show your posts originating from."
msgstr ""
#: ../../addon.old/fromapp/fromapp.php:70 ../../addon/fromapp/fromapp.php:70
msgid "Use this application name even if another application was used."
msgstr ""
#: ../../addon.old/fromgplus/fromgplus.php:29
#: ../../addon/fromgplus/fromgplus.php:33
msgid "Google+ Import Settings"
msgstr ""
#: ../../addon.old/fromgplus/fromgplus.php:32
#: ../../addon/fromgplus/fromgplus.php:36
msgid "Enable Google+ Import"
msgstr ""
#: ../../addon.old/fromgplus/fromgplus.php:35
#: ../../addon/fromgplus/fromgplus.php:39
msgid "Google Account ID"
msgstr ""
#: ../../addon.old/fromgplus/fromgplus.php:55
#: ../../addon/fromgplus/fromgplus.php:59
msgid "Google+ Import Settings saved."
msgstr ""
#: ../../addon.old/geonames/geonames.php:143
#: ../../addon/geonames/geonames.php:143
msgid "Geonames settings updated."
msgstr ""
#: ../../addon.old/geonames/geonames.php:179
#: ../../addon/geonames/geonames.php:179
msgid "Geonames Settings"
msgstr "ustawienia Geonames"
#: ../../addon.old/geonames/geonames.php:181
#: ../../addon/geonames/geonames.php:181
msgid "Enable Geonames Plugin"
msgstr ""
#: ../../addon.old/gnot/gnot.php:48 ../../addon/gnot/gnot.php:48
msgid "Gnot settings updated."
msgstr ""
#: ../../addon.old/gnot/gnot.php:79 ../../addon/gnot/gnot.php:79
msgid "Gnot Settings"
msgstr ""
#: ../../addon.old/gnot/gnot.php:81 ../../addon/gnot/gnot.php:81
msgid ""
"Allows threading of email comment notifications on Gmail and anonymising the"
" subject line."
msgstr ""
#: ../../addon.old/gnot/gnot.php:82 ../../addon/gnot/gnot.php:82
msgid "Enable this plugin/addon?"
msgstr "Umożliwić tego plugina/wtyczkę?"
#: ../../addon.old/gnot/gnot.php:97 ../../addon/gnot/gnot.php:97
#, php-format
msgid "[Friendica:Notify] Comment to conversation #%d"
msgstr ""
#: ../../addon.old/gravatar/gravatar.php:71
#: ../../addon.old/libravatar/libravatar.php:73
#: ../../addon/gravatar/gravatar.php:71
#: ../../addon/libravatar/libravatar.php:73
msgid "generic profile image"
msgstr "generuj obraz profilowy"
#: ../../addon.old/gravatar/gravatar.php:72
#: ../../addon.old/libravatar/libravatar.php:74
#: ../../addon/gravatar/gravatar.php:72
#: ../../addon/libravatar/libravatar.php:74
msgid "random geometric pattern"
msgstr "przypadkowy wzorzec geometryczny"
#: ../../addon.old/gravatar/gravatar.php:73
#: ../../addon.old/libravatar/libravatar.php:75
#: ../../addon/gravatar/gravatar.php:73
#: ../../addon/libravatar/libravatar.php:75
msgid "monster face"
msgstr "monster face"
#: ../../addon.old/gravatar/gravatar.php:74
#: ../../addon.old/libravatar/libravatar.php:76
#: ../../addon/gravatar/gravatar.php:74
#: ../../addon/libravatar/libravatar.php:76
msgid "computer generated face"
msgstr ""
#: ../../addon.old/gravatar/gravatar.php:75
#: ../../addon.old/libravatar/libravatar.php:77
#: ../../addon/gravatar/gravatar.php:75
#: ../../addon/libravatar/libravatar.php:77
msgid "retro arcade style face"
msgstr ""
#: ../../addon.old/gravatar/gravatar.php:89
#: ../../addon.old/libravatar/libravatar.php:93
#: ../../addon/gravatar/gravatar.php:89
#: ../../addon/libravatar/libravatar.php:93
msgid "Information"
msgstr ""
#: ../../addon.old/gravatar/gravatar.php:89
#: ../../addon/gravatar/gravatar.php:89
msgid ""
"Libravatar addon is installed, too. Please disable Libravatar addon or this "
"Gravatar addon.<br>The Libravatar addon will fall back to Gravatar if "
"nothing was found at Libravatar."
msgstr ""
#: ../../addon.old/gravatar/gravatar.php:96
#: ../../addon.old/libravatar/libravatar.php:100
#: ../../addon/gravatar/gravatar.php:96
#: ../../addon/libravatar/libravatar.php:100
msgid "Default avatar image"
msgstr "Domyślny awatar"
#: ../../addon.old/gravatar/gravatar.php:96
#: ../../addon/gravatar/gravatar.php:96
msgid "Select default avatar image if none was found at Gravatar. See README"
msgstr ""
#: ../../addon.old/gravatar/gravatar.php:97
#: ../../addon/gravatar/gravatar.php:97
msgid "Rating of images"
msgstr ""
#: ../../addon.old/gravatar/gravatar.php:97
#: ../../addon/gravatar/gravatar.php:97
msgid "Select the appropriate avatar rating for your site. See README"
msgstr ""
#: ../../addon.old/gravatar/gravatar.php:111
#: ../../addon/gravatar/gravatar.php:111
msgid "Gravatar settings updated."
msgstr "Zaktualizowane ustawienie Gravatara"
#: ../../addon.old/group_text/group_text.php:76
#: ../../addon/group_text/group_text.php:76
msgid "Group Text"
msgstr ""
#: ../../addon.old/group_text/group_text.php:78
#: ../../addon/group_text/group_text.php:78
msgid "Use a text only (non-image) group selector in the \"group edit\" menu"
msgstr ""
#: ../../addon.old/ijpost/ijpost.php:39 ../../addon/ijpost/ijpost.php:39
msgid "Post to Insanejournal"
msgstr "Opublikuj na Insanejournal"
#: ../../addon.old/ijpost/ijpost.php:70 ../../addon/ijpost/ijpost.php:70
msgid "InsaneJournal Post Settings"
msgstr ""
#: ../../addon.old/ijpost/ijpost.php:72 ../../addon/ijpost/ijpost.php:72
msgid "Enable InsaneJournal Post Plugin"
msgstr ""
#: ../../addon.old/ijpost/ijpost.php:77 ../../addon/ijpost/ijpost.php:77
msgid "InsaneJournal username"
msgstr ""
#: ../../addon.old/ijpost/ijpost.php:82 ../../addon/ijpost/ijpost.php:82
msgid "InsaneJournal password"
msgstr ""
#: ../../addon.old/ijpost/ijpost.php:87 ../../addon/ijpost/ijpost.php:87
msgid "Post to InsaneJournal by default"
msgstr ""
#: ../../addon.old/impressum/impressum.php:37
#: ../../addon/impressum/impressum.php:37
msgid "Impressum"
msgstr ""
#: ../../addon.old/impressum/impressum.php:50
#: ../../addon.old/impressum/impressum.php:52
#: ../../addon.old/impressum/impressum.php:84
#: ../../addon/impressum/impressum.php:50
#: ../../addon/impressum/impressum.php:52
#: ../../addon/impressum/impressum.php:84
msgid "Site Owner"
msgstr "Właściciel strony"
#: ../../addon.old/impressum/impressum.php:50
#: ../../addon.old/impressum/impressum.php:88
#: ../../addon/impressum/impressum.php:50
#: ../../addon/impressum/impressum.php:88
msgid "Email Address"
msgstr "Adres e-mail"
#: ../../addon.old/impressum/impressum.php:55
#: ../../addon.old/impressum/impressum.php:86
#: ../../addon/impressum/impressum.php:55
#: ../../addon/impressum/impressum.php:86
msgid "Postal Address"
msgstr "Adres pocztowy"
#: ../../addon.old/impressum/impressum.php:61
#: ../../addon/impressum/impressum.php:61
msgid ""
"The impressum addon needs to be configured!<br />Please add at least the "
"<tt>owner</tt> variable to your config file. For other variables please "
"refer to the README file of the addon."
msgstr ""
#: ../../addon.old/impressum/impressum.php:84
#: ../../addon/impressum/impressum.php:84
msgid "The page operators name."
msgstr ""
#: ../../addon.old/impressum/impressum.php:85
#: ../../addon/impressum/impressum.php:85
msgid "Site Owners Profile"
msgstr "Profil właściciela strony"
#: ../../addon.old/impressum/impressum.php:85
#: ../../addon/impressum/impressum.php:85
msgid "Profile address of the operator."
msgstr ""
#: ../../addon.old/impressum/impressum.php:86
#: ../../addon/impressum/impressum.php:86
msgid "How to contact the operator via snail mail. You can use BBCode here."
msgstr ""
#: ../../addon.old/impressum/impressum.php:87
#: ../../addon/impressum/impressum.php:87
msgid "Notes"
msgstr "Notatki"
#: ../../addon.old/impressum/impressum.php:87
#: ../../addon/impressum/impressum.php:87
msgid ""
"Additional notes that are displayed beneath the contact information. You can"
" use BBCode here."
msgstr ""
#: ../../addon.old/impressum/impressum.php:88
#: ../../addon/impressum/impressum.php:88
msgid "How to contact the operator via email. (will be displayed obfuscated)"
msgstr ""
#: ../../addon.old/impressum/impressum.php:89
#: ../../addon/impressum/impressum.php:89
msgid "Footer note"
msgstr "Notka w stopce"
#: ../../addon.old/impressum/impressum.php:89
#: ../../addon/impressum/impressum.php:89
msgid "Text for the footer. You can use BBCode here."
msgstr ""
#: ../../addon.old/infiniteimprobabilitydrive/infiniteimprobabilitydrive.php:19
#: ../../addon/infiniteimprobabilitydrive/infiniteimprobabilitydrive.php:19
msgid "Infinite Improbability Drive"
msgstr ""
#: ../../addon.old/irc/irc.php:44 ../../addon/irc/irc.php:44
msgid "IRC Settings"
msgstr "Ustawienia IRC"
#: ../../addon.old/irc/irc.php:46 ../../addon/irc/irc.php:46
msgid "Channel(s) to auto connect (comma separated)"
msgstr ""
#: ../../addon.old/irc/irc.php:51 ../../addon/irc/irc.php:51
msgid "Popular Channels (comma separated)"
msgstr ""
#: ../../addon.old/irc/irc.php:69 ../../addon/irc/irc.php:69
msgid "IRC settings saved."
msgstr "Zapisano ustawienia IRC."
#: ../../addon.old/irc/irc.php:74 ../../addon/irc/irc.php:74
msgid "IRC Chatroom"
msgstr "IRC Chatroom"
#: ../../addon.old/irc/irc.php:96 ../../addon/irc/irc.php:96
msgid "Popular Channels"
msgstr "Popularne kanały"
#: ../../addon.old/jappixmini/jappixmini.php:266
#: ../../addon/jappixmini/jappixmini.php:266
msgid "Jappix Mini addon settings"
msgstr ""
#: ../../addon.old/jappixmini/jappixmini.php:268
#: ../../addon/jappixmini/jappixmini.php:268
msgid "Activate addon"
msgstr ""
#: ../../addon.old/jappixmini/jappixmini.php:271
#: ../../addon/jappixmini/jappixmini.php:271
msgid ""
"Do <em>not</em> insert the Jappixmini Chat-Widget into the webinterface"
msgstr ""
#: ../../addon.old/jappixmini/jappixmini.php:274
#: ../../addon/jappixmini/jappixmini.php:274
msgid "Jabber username"
msgstr ""
#: ../../addon.old/jappixmini/jappixmini.php:277
#: ../../addon/jappixmini/jappixmini.php:277
msgid "Jabber server"
msgstr ""
#: ../../addon.old/jappixmini/jappixmini.php:281
#: ../../addon/jappixmini/jappixmini.php:281
msgid "Jabber BOSH host"
msgstr ""
#: ../../addon.old/jappixmini/jappixmini.php:285
#: ../../addon/jappixmini/jappixmini.php:285
msgid "Jabber password"
msgstr "Hasło Jabber"
#: ../../addon.old/jappixmini/jappixmini.php:290
#: ../../addon/jappixmini/jappixmini.php:290
msgid "Encrypt Jabber password with Friendica password (recommended)"
msgstr ""
#: ../../addon.old/jappixmini/jappixmini.php:293
#: ../../addon/jappixmini/jappixmini.php:293
msgid "Friendica password"
msgstr "Hasło Friendica"
#: ../../addon.old/jappixmini/jappixmini.php:296
#: ../../addon/jappixmini/jappixmini.php:296
msgid "Approve subscription requests from Friendica contacts automatically"
msgstr ""
#: ../../addon.old/jappixmini/jappixmini.php:299
#: ../../addon/jappixmini/jappixmini.php:299
msgid "Subscribe to Friendica contacts automatically"
msgstr ""
#: ../../addon.old/jappixmini/jappixmini.php:302
#: ../../addon/jappixmini/jappixmini.php:302
msgid "Purge internal list of jabber addresses of contacts"
msgstr ""
#: ../../addon.old/jappixmini/jappixmini.php:308
#: ../../addon/jappixmini/jappixmini.php:308
msgid "Add contact"
msgstr "Dodaj kontakt"
#: ../../addon.old/js_upload/js_upload.php:43
#: ../../addon/js_upload/js_upload.php:43
msgid "Upload a file"
msgstr "Załaduj plik"
#: ../../addon.old/js_upload/js_upload.php:44
#: ../../addon/js_upload/js_upload.php:44
msgid "Drop files here to upload"
msgstr "Wrzuć tu pliki by je załadować"
#: ../../addon.old/js_upload/js_upload.php:45
#: ../../addon/js_upload/js_upload.php:45 ../../include/items.php:3970
#: ../../include/conversation.php:1080 ../../mod/contacts.php:249
#: ../../mod/settings.php:561 ../../mod/settings.php:587
#: ../../mod/dfrn_request.php:848 ../../mod/suggest.php:32
#: ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 ../../mod/editpost.php:148
#: ../../mod/fbrowser.php:81 ../../mod/fbrowser.php:116
#: ../../mod/message.php:212 ../../mod/photos.php:202 ../../mod/photos.php:290
msgid "Cancel"
msgstr "Anuluj"
#: ../../addon.old/js_upload/js_upload.php:46
#: ../../addon/js_upload/js_upload.php:46
msgid "Failed"
msgstr "Niepowodzenie"
#: ../../addon.old/js_upload/js_upload.php:297
#: ../../addon/js_upload/js_upload.php:303
msgid "No files were uploaded."
msgstr "Nie załadowano żadnych plików."
#: ../../addon.old/js_upload/js_upload.php:303
#: ../../addon/js_upload/js_upload.php:309
msgid "Uploaded file is empty"
msgstr "Wysłany plik jest pusty"
#: ../../addon.old/js_upload/js_upload.php:315
#: ../../addon/js_upload/js_upload.php:321 ../../mod/photos.php:761
msgid "Image exceeds size limit of "
msgstr "obrazek przekracza limit rozmiaru"
#: ../../addon.old/js_upload/js_upload.php:326
#: ../../addon/js_upload/js_upload.php:332
msgid "File has an invalid extension, it should be one of "
msgstr "Pilk ma nieprawidłowe rozszerzenie, powinien być jednym z"
#: ../../addon.old/js_upload/js_upload.php:337
#: ../../addon/js_upload/js_upload.php:343
msgid "Upload was cancelled, or server error encountered"
msgstr "Przesyłanie zostało anulowane lub wystąpił błąd serwera."
#: ../../addon.old/libertree/libertree.php:36
#: ../../addon/libertree/libertree.php:36
msgid "Post to libertree"
msgstr ""
#: ../../addon.old/libertree/libertree.php:67
#: ../../addon/libertree/libertree.php:67
msgid "libertree Post Settings"
msgstr ""
#: ../../addon.old/libertree/libertree.php:69
#: ../../addon/libertree/libertree.php:69
msgid "Enable Libertree Post Plugin"
msgstr ""
#: ../../addon.old/libertree/libertree.php:74
#: ../../addon/libertree/libertree.php:74
msgid "Libertree API token"
msgstr ""
#: ../../addon.old/libertree/libertree.php:79
#: ../../addon/libertree/libertree.php:79
msgid "Libertree site URL"
msgstr ""
#: ../../addon.old/libertree/libertree.php:84
#: ../../addon/libertree/libertree.php:84
msgid "Post to Libertree by default"
msgstr ""
#: ../../addon.old/libravatar/libravatar.php:14
#: ../../addon/libravatar/libravatar.php:14
msgid "Could NOT install Libravatar successfully.<br>It requires PHP >= 5.3"
msgstr ""
#: ../../addon.old/libravatar/libravatar.php:83
#: ../../addon/libravatar/libravatar.php:83
#, php-format
msgid "Your PHP version %s is lower than the required PHP >= 5.3."
msgstr ""
#: ../../addon.old/libravatar/libravatar.php:84
#: ../../addon/libravatar/libravatar.php:84
msgid "This addon is not functional on your server."
msgstr ""
#: ../../addon.old/libravatar/libravatar.php:93
#: ../../addon/libravatar/libravatar.php:93
msgid ""
"Gravatar addon is installed. Please disable the Gravatar addon.<br>The "
"Libravatar addon will fall back to Gravatar if nothing was found at "
"Libravatar."
msgstr ""
#: ../../addon.old/libravatar/libravatar.php:100
#: ../../addon/libravatar/libravatar.php:100
msgid "Select default avatar image if none was found. See README"
msgstr ""
#: ../../addon.old/libravatar/libravatar.php:112
#: ../../addon/libravatar/libravatar.php:112
msgid "Libravatar settings updated."
msgstr ""
#: ../../addon.old/ljpost/ljpost.php:39 ../../addon/ljpost/ljpost.php:39
msgid "Post to LiveJournal"
msgstr "Post do LiveJournal"
#: ../../addon.old/ljpost/ljpost.php:70 ../../addon/ljpost/ljpost.php:70
msgid "LiveJournal Post Settings"
msgstr "Ustawienia postów do LiveJournal"
#: ../../addon.old/ljpost/ljpost.php:72 ../../addon/ljpost/ljpost.php:72
msgid "Enable LiveJournal Post Plugin"
msgstr ""
#: ../../addon.old/ljpost/ljpost.php:77 ../../addon/ljpost/ljpost.php:77
msgid "LiveJournal username"
msgstr "Nazwa użytkownika do LiveJournal"
#: ../../addon.old/ljpost/ljpost.php:82 ../../addon/ljpost/ljpost.php:82
msgid "LiveJournal password"
msgstr "Hasło do LiveJournal"
#: ../../addon.old/ljpost/ljpost.php:87 ../../addon/ljpost/ljpost.php:87
msgid "Post to LiveJournal by default"
msgstr "automatycznie publikuj na LiveJournal"
#: ../../addon.old/mathjax/mathjax.php:37 ../../addon/mathjax/mathjax.php:37
msgid ""
"The MathJax addon renders mathematical formulae written using the LaTeX "
"syntax surrounded by the usual $$ or an eqnarray block in the postings of "
"your wall,network tab and private mail."
msgstr ""
#: ../../addon.old/mathjax/mathjax.php:38 ../../addon/mathjax/mathjax.php:38
msgid "Use the MathJax renderer"
msgstr ""
#: ../../addon.old/mathjax/mathjax.php:74 ../../addon/mathjax/mathjax.php:75
msgid "MathJax Base URL"
msgstr ""
#: ../../addon.old/mathjax/mathjax.php:74 ../../addon/mathjax/mathjax.php:75
msgid ""
"The URL for the javascript file that should be included to use MathJax. Can "
"be either the MathJax CDN or another installation of MathJax."
msgstr ""
#: ../../addon.old/membersince/membersince.php:18
#: ../../addon/membersince/membersince.php:18
msgid "Member since:"
msgstr "Data dołączenia:"
#: ../../addon.old/morepokes/morepokes.php:19
#: ../../addon/morepokes/morepokes.php:19
msgid "bitchslap"
msgstr ""
#: ../../addon.old/morepokes/morepokes.php:19
#: ../../addon/morepokes/morepokes.php:19
msgid "bitchslapped"
msgstr ""
#: ../../addon.old/morepokes/morepokes.php:20
#: ../../addon/morepokes/morepokes.php:20
msgid "shag"
msgstr ""
#: ../../addon.old/morepokes/morepokes.php:20
#: ../../addon/morepokes/morepokes.php:20
msgid "shagged"
msgstr ""
#: ../../addon.old/morepokes/morepokes.php:21
#: ../../addon/morepokes/morepokes.php:21
msgid "do something obscenely biological to"
msgstr ""
#: ../../addon.old/morepokes/morepokes.php:21
#: ../../addon/morepokes/morepokes.php:21
msgid "did something obscenely biological to"
msgstr ""
#: ../../addon.old/morepokes/morepokes.php:22
#: ../../addon/morepokes/morepokes.php:22
msgid "point out the poke feature to"
msgstr ""
#: ../../addon.old/morepokes/morepokes.php:22
#: ../../addon/morepokes/morepokes.php:22
msgid "pointed out the poke feature to"
msgstr ""
#: ../../addon.old/morepokes/morepokes.php:23
#: ../../addon/morepokes/morepokes.php:23
msgid "declare undying love for"
msgstr ""
#: ../../addon.old/morepokes/morepokes.php:23
#: ../../addon/morepokes/morepokes.php:23
msgid "declared undying love for"
msgstr ""
#: ../../addon.old/morepokes/morepokes.php:24
#: ../../addon/morepokes/morepokes.php:24
msgid "patent"
msgstr ""
#: ../../addon.old/morepokes/morepokes.php:24
#: ../../addon/morepokes/morepokes.php:24
msgid "patented"
msgstr ""
#: ../../addon.old/morepokes/morepokes.php:25
#: ../../addon/morepokes/morepokes.php:25
msgid "stroke beard"
msgstr ""
#: ../../addon.old/morepokes/morepokes.php:25
#: ../../addon/morepokes/morepokes.php:25
msgid "stroked their beard at"
msgstr ""
#: ../../addon.old/morepokes/morepokes.php:26
#: ../../addon/morepokes/morepokes.php:26
msgid ""
"bemoan the declining standards of modern secondary and tertiary education to"
msgstr ""
#: ../../addon.old/morepokes/morepokes.php:26
#: ../../addon/morepokes/morepokes.php:26
msgid ""
"bemoans the declining standards of modern secondary and tertiary education "
"to"
msgstr ""
#: ../../addon.old/morepokes/morepokes.php:27
#: ../../addon/morepokes/morepokes.php:27
msgid "hug"
msgstr "przytul"
#: ../../addon.old/morepokes/morepokes.php:27
#: ../../addon/morepokes/morepokes.php:27
msgid "hugged"
msgstr "przytulony"
#: ../../addon.old/morepokes/morepokes.php:28
#: ../../addon/morepokes/morepokes.php:28
msgid "kiss"
msgstr "pocałuj"
#: ../../addon.old/morepokes/morepokes.php:28
#: ../../addon/morepokes/morepokes.php:28
msgid "kissed"
msgstr "pocałowany"
#: ../../addon.old/morepokes/morepokes.php:29
#: ../../addon/morepokes/morepokes.php:29
msgid "raise eyebrows at"
msgstr ""
#: ../../addon.old/morepokes/morepokes.php:29
#: ../../addon/morepokes/morepokes.php:29
msgid "raised their eyebrows at"
msgstr ""
#: ../../addon.old/morepokes/morepokes.php:30
#: ../../addon/morepokes/morepokes.php:30
msgid "insult"
msgstr ""
#: ../../addon.old/morepokes/morepokes.php:30
#: ../../addon/morepokes/morepokes.php:30
msgid "insulted"
msgstr ""
#: ../../addon.old/morepokes/morepokes.php:31
#: ../../addon/morepokes/morepokes.php:31
msgid "praise"
msgstr ""
#: ../../addon.old/morepokes/morepokes.php:31
#: ../../addon/morepokes/morepokes.php:31
msgid "praised"
msgstr ""
#: ../../addon.old/morepokes/morepokes.php:32
#: ../../addon/morepokes/morepokes.php:32
msgid "be dubious of"
msgstr ""
#: ../../addon.old/morepokes/morepokes.php:32
#: ../../addon/morepokes/morepokes.php:32
msgid "was dubious of"
msgstr ""
#: ../../addon.old/morepokes/morepokes.php:33
#: ../../addon/morepokes/morepokes.php:33
msgid "eat"
msgstr ""
#: ../../addon.old/morepokes/morepokes.php:33
#: ../../addon/morepokes/morepokes.php:33
msgid "ate"
msgstr ""
#: ../../addon.old/morepokes/morepokes.php:34
#: ../../addon/morepokes/morepokes.php:34
msgid "giggle and fawn at"
msgstr ""
#: ../../addon.old/morepokes/morepokes.php:34
#: ../../addon/morepokes/morepokes.php:34
msgid "giggled and fawned at"
msgstr ""
#: ../../addon.old/morepokes/morepokes.php:35
#: ../../addon/morepokes/morepokes.php:35
msgid "doubt"
msgstr ""
#: ../../addon.old/morepokes/morepokes.php:35
#: ../../addon/morepokes/morepokes.php:35
msgid "doubted"
msgstr ""
#: ../../addon.old/morepokes/morepokes.php:36
#: ../../addon/morepokes/morepokes.php:36
msgid "glare"
msgstr ""
#: ../../addon.old/morepokes/morepokes.php:36
#: ../../addon/morepokes/morepokes.php:36
msgid "glared at"
msgstr ""
#: ../../addon.old/notimeline/notimeline.php:32
#: ../../addon/notimeline/notimeline.php:32
msgid "No Timeline settings updated."
msgstr ""
#: ../../addon.old/notimeline/notimeline.php:56
#: ../../addon/notimeline/notimeline.php:56
msgid "No Timeline Settings"
msgstr "Brak ustawień Osi czasu"
#: ../../addon.old/notimeline/notimeline.php:58
#: ../../addon/notimeline/notimeline.php:58
msgid "Disable Archive selector on profile wall"
msgstr ""
#: ../../addon.old/nsfw/nsfw.php:78 ../../addon/nsfw/nsfw.php:78
msgid "Not Safe For Work (General Purpose Content Filter) settings"
msgstr ""
#: ../../addon.old/nsfw/nsfw.php:80 ../../addon/nsfw/nsfw.php:80
msgid ""
"This plugin looks in posts for the words/text you specify below, and "
"collapses any content containing those keywords so it is not displayed at "
"inappropriate times, such as sexual innuendo that may be improper in a work "
"setting. It is polite and recommended to tag any content containing nudity "
"with #NSFW. This filter can also match any other word/text you specify, and"
" can thereby be used as a general purpose content filter."
msgstr ""
#: ../../addon.old/nsfw/nsfw.php:81 ../../addon/nsfw/nsfw.php:81
msgid "Enable Content filter"
msgstr ""
#: ../../addon.old/nsfw/nsfw.php:84 ../../addon/nsfw/nsfw.php:84
msgid "Comma separated list of keywords to hide"
msgstr ""
#: ../../addon.old/nsfw/nsfw.php:89 ../../addon/nsfw/nsfw.php:89
msgid "Use /expression/ to provide regular expressions"
msgstr ""
#: ../../addon.old/nsfw/nsfw.php:105 ../../addon/nsfw/nsfw.php:105
msgid "NSFW Settings saved."
msgstr "NSFW Ustawienia zapisane."
#: ../../addon.old/nsfw/nsfw.php:157 ../../addon/nsfw/nsfw.php:157
#, php-format
msgid "%s - Click to open/close"
msgstr "%s - kliknij by otworzyć/zamknąć"
#: ../../addon.old/numfriends/numfriends.php:46
#: ../../addon/numfriends/numfriends.php:46
msgid "Numfriends settings updated."
msgstr ""
#: ../../addon.old/numfriends/numfriends.php:77
#: ../../addon/numfriends/numfriends.php:77
msgid "Numfriends Settings"
msgstr ""
#: ../../addon.old/oembed.old/oembed.php:30
msgid "OEmbed settings updated"
msgstr ""
#: ../../addon.old/oembed.old/oembed.php:43
msgid "Use OEmbed for YouTube videos"
msgstr ""
#: ../../addon.old/oembed.old/oembed.php:71
msgid "URL to embed:"
msgstr "URL do osadzenia"
#: ../../addon.old/openstreetmap/openstreetmap.php:71
#: ../../addon/openstreetmap/openstreetmap.php:95
msgid "Tile Server URL"
msgstr "Nazwa URL Serwera"
#: ../../addon.old/openstreetmap/openstreetmap.php:71
#: ../../addon/openstreetmap/openstreetmap.php:95
msgid ""
"A list of <a href=\"http://wiki.openstreetmap.org/wiki/TMS\" "
"target=\"_blank\">public tile servers</a>"
msgstr ""
#: ../../addon.old/openstreetmap/openstreetmap.php:72
#: ../../addon/openstreetmap/openstreetmap.php:96
msgid "Default zoom"
msgstr "Domyślne przybliżenie"
#: ../../addon.old/openstreetmap/openstreetmap.php:72
#: ../../addon/openstreetmap/openstreetmap.php:96
msgid "The default zoom level. (1:world, 18:highest)"
msgstr ""
#: ../../addon.old/page/page.php:77 ../../addon.old/page/page.php:111
#: ../../addon.old/showmore/showmore.php:119 ../../addon/page/page.php:77
#: ../../addon/page/page.php:111 ../../addon/showmore/showmore.php:119
#: ../../include/contact_widgets.php:204 ../../mod/content.php:629
#: ../../object/Item.php:355 ../../boot.php:652
msgid "show more"
msgstr "Pokaż więcej"
#: ../../addon.old/page/page.php:166 ../../addon/page/page.php:166
msgid "Page settings updated."
msgstr "Zaktualizowano ustawienia strony."
#: ../../addon.old/page/page.php:195 ../../addon/page/page.php:195
msgid "Page Settings"
msgstr "Ustawienia strony"
#: ../../addon.old/page/page.php:197 ../../addon/page/page.php:197
msgid "How many forums to display on sidebar without paging"
msgstr ""
#: ../../addon.old/page/page.php:200 ../../addon/page/page.php:200
msgid "Randomise Page/Forum list"
msgstr ""
#: ../../addon.old/page/page.php:203 ../../addon/page/page.php:203
msgid "Show pages/forums on profile page"
msgstr ""
#: ../../addon.old/pageheader/pageheader.php:50
#: ../../addon/pageheader/pageheader.php:50
msgid "\"pageheader\" Settings"
msgstr ""
#: ../../addon.old/pageheader/pageheader.php:68
#: ../../addon/pageheader/pageheader.php:68
msgid "pageheader Settings saved."
msgstr ""
#: ../../addon.old/piwik/piwik.php:79 ../../addon/piwik/piwik.php:79
msgid ""
"This website is tracked using the <a href='http://www.piwik.org'>Piwik</a> "
"analytics tool."
msgstr ""
#: ../../addon.old/piwik/piwik.php:82 ../../addon/piwik/piwik.php:82
#, php-format
msgid ""
"If you do not want that your visits are logged this way you <a href='%s'>can"
" set a cookie to prevent Piwik from tracking further visits of the site</a> "
"(opt-out)."
msgstr ""
#: ../../addon.old/piwik/piwik.php:90 ../../addon/piwik/piwik.php:90
msgid "Piwik Base URL"
msgstr "Piwik podstawowy adres URL"
#: ../../addon.old/piwik/piwik.php:90 ../../addon/piwik/piwik.php:90
msgid ""
"Absolute path to your Piwik installation. (without protocol (http/s), with "
"trailing slash)"
msgstr ""
#: ../../addon.old/piwik/piwik.php:91 ../../addon/piwik/piwik.php:91
msgid "Site ID"
msgstr "ID strony"
#: ../../addon.old/piwik/piwik.php:92 ../../addon/piwik/piwik.php:92
msgid "Show opt-out cookie link?"
msgstr ""
#: ../../addon.old/piwik/piwik.php:93 ../../addon/piwik/piwik.php:93
msgid "Asynchronous tracking"
msgstr ""
#: ../../addon.old/planets/planets.php:150 ../../addon/planets/planets.php:150
msgid "Planets Settings"
msgstr "Ustawienia Planets"
#: ../../addon.old/planets/planets.php:152 ../../addon/planets/planets.php:152
msgid "Enable Planets Plugin"
msgstr ""
#: ../../addon.old/posterous/posterous.php:37
#: ../../addon/posterous/posterous.php:37
msgid "Post to Posterous"
msgstr ""
#: ../../addon.old/posterous/posterous.php:70
#: ../../addon/posterous/posterous.php:70
msgid "Posterous Post Settings"
msgstr ""
#: ../../addon.old/posterous/posterous.php:72
#: ../../addon/posterous/posterous.php:72
msgid "Enable Posterous Post Plugin"
msgstr ""
#: ../../addon.old/posterous/posterous.php:77
#: ../../addon/posterous/posterous.php:77
msgid "Posterous login"
msgstr ""
#: ../../addon.old/posterous/posterous.php:82
#: ../../addon/posterous/posterous.php:82
msgid "Posterous password"
msgstr ""
#: ../../addon.old/posterous/posterous.php:87
#: ../../addon/posterous/posterous.php:87
msgid "Posterous site ID"
msgstr ""
#: ../../addon.old/posterous/posterous.php:92
#: ../../addon/posterous/posterous.php:92
msgid "Posterous API token"
msgstr ""
#: ../../addon.old/posterous/posterous.php:97
#: ../../addon/posterous/posterous.php:97
msgid "Post to Posterous by default"
msgstr ""
#: ../../addon.old/privacy_image_cache/privacy_image_cache.php:260
#: ../../addon/privacy_image_cache/privacy_image_cache.php:351
msgid "Lifetime of the cache (in hours)"
msgstr ""
#: ../../addon.old/privacy_image_cache/privacy_image_cache.php:265
#: ../../addon/privacy_image_cache/privacy_image_cache.php:356
msgid "Cache Statistics"
msgstr ""
#: ../../addon.old/privacy_image_cache/privacy_image_cache.php:268
#: ../../addon/privacy_image_cache/privacy_image_cache.php:359
msgid "Number of items"
msgstr "Numery elementów"
#: ../../addon.old/privacy_image_cache/privacy_image_cache.php:270
#: ../../addon/privacy_image_cache/privacy_image_cache.php:361
msgid "Size of the cache"
msgstr ""
#: ../../addon.old/privacy_image_cache/privacy_image_cache.php:272
#: ../../addon/privacy_image_cache/privacy_image_cache.php:363
msgid "Delete the whole cache"
msgstr ""
#: ../../addon.old/public_server/public_server.php:126
#: ../../addon.old/testdrive/testdrive.php:94
#: ../../addon/public_server/public_server.php:126
#: ../../addon/testdrive/testdrive.php:94
#, php-format
msgid "Your account on %s will expire in a few days."
msgstr ""
#: ../../addon.old/public_server/public_server.php:127
#: ../../addon/public_server/public_server.php:127
msgid "Your Friendica account is about to expire."
msgstr ""
#: ../../addon.old/public_server/public_server.php:128
#: ../../addon/public_server/public_server.php:128
#, php-format
msgid ""
"Hi %1$s,\n"
"\n"
"Your account on %2$s will expire in less than five days. You may keep your account by logging in at least once every 30 days"
msgstr ""
#: ../../addon.old/qcomment/qcomment.php:51
#: ../../addon/qcomment/qcomment.php:51
msgid ":-)"
msgstr ":-)"
#: ../../addon.old/qcomment/qcomment.php:51
#: ../../addon/qcomment/qcomment.php:51
msgid ":-("
msgstr ":-("
#: ../../addon.old/qcomment/qcomment.php:51
#: ../../addon/qcomment/qcomment.php:51
msgid "lol"
msgstr "lol"
#: ../../addon.old/qcomment/qcomment.php:54
#: ../../addon/qcomment/qcomment.php:54
msgid "Quick Comment Settings"
msgstr "Ustawienia szybkiego komentowania"
#: ../../addon.old/qcomment/qcomment.php:56
#: ../../addon/qcomment/qcomment.php:56
msgid ""
"Quick comments are found near comment boxes, sometimes hidden. Click them to"
" provide simple replies."
msgstr ""
#: ../../addon.old/qcomment/qcomment.php:57
#: ../../addon/qcomment/qcomment.php:57
msgid "Enter quick comments, one per line"
msgstr ""
#: ../../addon.old/qcomment/qcomment.php:75
#: ../../addon/qcomment/qcomment.php:75
msgid "Quick Comment settings saved."
msgstr ""
#: ../../addon.old/randplace/randplace.php:169
#: ../../addon/randplace/randplace.php:169
msgid "Randplace Settings"
msgstr "Ustawienia Randplace"
#: ../../addon.old/randplace/randplace.php:171
#: ../../addon/randplace/randplace.php:171
msgid "Enable Randplace Plugin"
msgstr "Włącz Randplace Plugin"
#: ../../addon.old/showmore/showmore.php:38
#: ../../addon/showmore/showmore.php:38
msgid "\"Show more\" Settings"
msgstr "\"Pokaż więcej\" ustawień"
#: ../../addon.old/showmore/showmore.php:41
#: ../../addon/showmore/showmore.php:41
msgid "Enable Show More"
msgstr ""
#: ../../addon.old/showmore/showmore.php:44
#: ../../addon/showmore/showmore.php:44
msgid "Cutting posts after how much characters"
msgstr ""
#: ../../addon.old/showmore/showmore.php:65
#: ../../addon/showmore/showmore.php:65
msgid "Show More Settings saved."
msgstr ""
#: ../../addon.old/snautofollow/snautofollow.php:32
#: ../../addon/snautofollow/snautofollow.php:32
msgid "StatusNet AutoFollow settings updated."
msgstr ""
#: ../../addon.old/snautofollow/snautofollow.php:56
#: ../../addon/snautofollow/snautofollow.php:56
msgid "StatusNet AutoFollow Settings"
msgstr ""
#: ../../addon.old/snautofollow/snautofollow.php:58
#: ../../addon/snautofollow/snautofollow.php:58
msgid "Automatically follow any StatusNet followers/mentioners"
msgstr ""
#: ../../addon.old/startpage/startpage.php:83
#: ../../addon/startpage/startpage.php:83
msgid "Startpage Settings"
msgstr "Ustawienia strony startowej"
#: ../../addon.old/startpage/startpage.php:85
#: ../../addon/startpage/startpage.php:85
msgid "Home page to load after login - leave blank for profile wall"
msgstr ""
#: ../../addon.old/startpage/startpage.php:88
#: ../../addon/startpage/startpage.php:88
msgid "Examples: &quot;network&quot; or &quot;notifications/system&quot;"
msgstr ""
#: ../../addon.old/statusnet/statusnet.php:134
#: ../../addon/statusnet/statusnet.php:138
msgid "Post to StatusNet"
msgstr "Wyślij do sieci StatusNet"
#: ../../addon.old/statusnet/statusnet.php:176
#: ../../addon/statusnet/statusnet.php:180
msgid ""
"Please contact your site administrator.<br />The provided API URL is not "
"valid."
msgstr "Proszę się skontaktować z administratorem strony. <br /> API URL nie jest poprawne"
#: ../../addon.old/statusnet/statusnet.php:204
#: ../../addon/statusnet/statusnet.php:208
msgid "We could not contact the StatusNet API with the Path you entered."
msgstr ""
#: ../../addon.old/statusnet/statusnet.php:232
#: ../../addon/statusnet/statusnet.php:238
msgid "StatusNet settings updated."
msgstr "Ustawienia StatusNet zaktualizowane"
#: ../../addon.old/statusnet/statusnet.php:257
#: ../../addon/statusnet/statusnet.php:269
msgid "StatusNet Posting Settings"
msgstr "Ustawienia StatusNet"
#: ../../addon.old/statusnet/statusnet.php:271
#: ../../addon/statusnet/statusnet.php:283
msgid "Globally Available StatusNet OAuthKeys"
msgstr ""
#: ../../addon.old/statusnet/statusnet.php:272
#: ../../addon/statusnet/statusnet.php:284
msgid ""
"There are preconfigured OAuth key pairs for some StatusNet servers "
"available. If you are useing one of them, please use these credentials. If "
"not feel free to connect to any other StatusNet instance (see below)."
msgstr ""
#: ../../addon.old/statusnet/statusnet.php:280
#: ../../addon/statusnet/statusnet.php:292
msgid "Provide your own OAuth Credentials"
msgstr ""
#: ../../addon.old/statusnet/statusnet.php:281
#: ../../addon/statusnet/statusnet.php:293
msgid ""
"No consumer key pair for StatusNet found. Register your Friendica Account as"
" an desktop client on your StatusNet account, copy the consumer key pair "
"here and enter the API base root.<br />Before you register your own OAuth "
"key pair ask the administrator if there is already a key pair for this "
"Friendica installation at your favorited StatusNet installation."
msgstr ""
#: ../../addon.old/statusnet/statusnet.php:283
#: ../../addon/statusnet/statusnet.php:295
msgid "OAuth Consumer Key"
msgstr ""
#: ../../addon.old/statusnet/statusnet.php:286
#: ../../addon/statusnet/statusnet.php:298
msgid "OAuth Consumer Secret"
msgstr ""
#: ../../addon.old/statusnet/statusnet.php:289
#: ../../addon/statusnet/statusnet.php:301
msgid "Base API Path (remember the trailing /)"
msgstr ""
#: ../../addon.old/statusnet/statusnet.php:310
#: ../../addon/statusnet/statusnet.php:322
msgid ""
"To connect to your StatusNet account click the button below to get a "
"security code from StatusNet which you have to copy into the input box below"
" and submit the form. Only your <strong>public</strong> posts will be posted"
" to StatusNet."
msgstr "Aby uzyskać połączenie z kontem w serwisie StatusNet naciśnij przycisk poniżej aby otrzymać kod bezpieczeństwa od StatusNet, który musisz skopiować do pola poniżej i wysłać formularz. Tylko twoje <strong>publiczne</strong> posty będą publikowane na StatusNet."
#: ../../addon.old/statusnet/statusnet.php:311
#: ../../addon/statusnet/statusnet.php:323
msgid "Log in with StatusNet"
msgstr "Zaloguj się przez StatusNet"
#: ../../addon.old/statusnet/statusnet.php:313
#: ../../addon/statusnet/statusnet.php:325
msgid "Copy the security code from StatusNet here"
msgstr "Tutaj skopiuj kod bezpieczeństwa z StatusNet"
#: ../../addon.old/statusnet/statusnet.php:319
#: ../../addon/statusnet/statusnet.php:331
msgid "Cancel Connection Process"
msgstr "Anuluj proces łączenia"
#: ../../addon.old/statusnet/statusnet.php:321
#: ../../addon/statusnet/statusnet.php:333
msgid "Current StatusNet API is"
msgstr "Aktualnym StatusNet API jest"
#: ../../addon.old/statusnet/statusnet.php:322
#: ../../addon/statusnet/statusnet.php:334
msgid "Cancel StatusNet Connection"
msgstr "Anuluj połączenie StatusNet"
#: ../../addon.old/statusnet/statusnet.php:333
#: ../../addon.old/twitter/twitter.php:189
#: ../../addon/statusnet/statusnet.php:345 ../../addon/twitter/twitter.php:200
msgid "Currently connected to: "
msgstr "Obecnie połączone z:"
#: ../../addon.old/statusnet/statusnet.php:334
#: ../../addon/statusnet/statusnet.php:346
msgid ""
"If enabled all your <strong>public</strong> postings can be posted to the "
"associated StatusNet account. You can choose to do so by default (here) or "
"for every posting separately in the posting options when writing the entry."
msgstr ""
#: ../../addon.old/statusnet/statusnet.php:336
#: ../../addon/statusnet/statusnet.php:348
msgid ""
"<strong>Note</strong>: Due your privacy settings (<em>Hide your profile "
"details from unknown viewers?</em>) the link potentially included in public "
"postings relayed to StatusNet will lead the visitor to a blank page "
"informing the visitor that the access to your profile has been restricted."
msgstr ""
#: ../../addon.old/statusnet/statusnet.php:339
#: ../../addon/statusnet/statusnet.php:351
msgid "Allow posting to StatusNet"
msgstr "Pozwól zamieszczać posty na StatusNet"
#: ../../addon.old/statusnet/statusnet.php:342
#: ../../addon/statusnet/statusnet.php:354
msgid "Send public postings to StatusNet by default"
msgstr ""
#: ../../addon.old/statusnet/statusnet.php:345
#: ../../addon/statusnet/statusnet.php:366
msgid "Send linked #-tags and @-names to StatusNet"
msgstr ""
#: ../../addon.old/statusnet/statusnet.php:350
#: ../../addon.old/twitter/twitter.php:206
#: ../../addon/statusnet/statusnet.php:371 ../../addon/twitter/twitter.php:226
msgid "Clear OAuth configuration"
msgstr ""
#: ../../addon.old/statusnet/statusnet.php:567
#: ../../addon/statusnet/statusnet.php:744 ../../mod/admin.php:484
msgid "Site name"
msgstr "Nazwa strony"
#: ../../addon.old/statusnet/statusnet.php:568
#: ../../addon/statusnet/statusnet.php:745
msgid "API URL"
msgstr "Adres API"
#: ../../addon.old/statusnet/statusnet.php:569
#: ../../addon/statusnet/statusnet.php:746 ../../mod/settings.php:564
#: ../../mod/settings.php:590
msgid "Consumer Secret"
msgstr "Sekret konsumenta"
#: ../../addon.old/statusnet/statusnet.php:570
#: ../../addon/statusnet/statusnet.php:747 ../../mod/settings.php:563
#: ../../mod/settings.php:589
msgid "Consumer Key"
msgstr "Klucz konsumenta"
#: ../../addon.old/testdrive/testdrive.php:95
#: ../../addon/testdrive/testdrive.php:95
msgid "Your Friendica test account is about to expire."
msgstr ""
#: ../../addon.old/testdrive/testdrive.php:96
#: ../../addon/testdrive/testdrive.php:96
#, php-format
msgid ""
"Hi %1$s,\n"
"\n"
"Your test account on %2$s will expire in less than five days. We hope you enjoyed this test drive and use this opportunity to find a permanent Friendica website for your integrated social communications. A list of public sites is available at http://dir.friendica.com/siteinfo - and for more information on setting up your own Friendica server please see the Friendica project website at http://friendica.com."
msgstr ""
#: ../../addon.old/tictac/tictac.php:20 ../../addon/tictac/tictac.php:20
msgid "Three Dimensional Tic-Tac-Toe"
msgstr "Trójwymiarowy Kółko i krzyżyk"
#: ../../addon.old/tictac/tictac.php:53 ../../addon/tictac/tictac.php:53
msgid "3D Tic-Tac-Toe"
msgstr "Kółko i krzyżyk 3D"
#: ../../addon.old/tictac/tictac.php:58 ../../addon/tictac/tictac.php:58
msgid "New game"
msgstr "Nowa gra"
#: ../../addon.old/tictac/tictac.php:59 ../../addon/tictac/tictac.php:59
msgid "New game with handicap"
msgstr "Nowa gra z utrudnieniem"
#: ../../addon.old/tictac/tictac.php:60 ../../addon/tictac/tictac.php:60
msgid ""
"Three dimensional tic-tac-toe is just like the traditional game except that "
"it is played on multiple levels simultaneously. "
msgstr "Trójwymiarowy tic-tac-toe jest taki sam jak tradycyjna gra, nie licząc tego, że jest grana na kilku poziomach jednocześnie."
#: ../../addon.old/tictac/tictac.php:61 ../../addon/tictac/tictac.php:61
msgid ""
"In this case there are three levels. You win by getting three in a row on "
"any level, as well as up, down, and diagonally across the different levels."
msgstr "W tym przypadku są trzy poziomy. Wygrywasz poprzez zdobycie trójki w szeregu na którymkolwiek z poziomów zarówno u góry, na dole, jak i na ukos poprzez kilka różnych poziomów."
#: ../../addon.old/tictac/tictac.php:63 ../../addon/tictac/tictac.php:63
msgid ""
"The handicap game disables the center position on the middle level because "
"the player claiming this square often has an unfair advantage."
msgstr ""
#: ../../addon.old/tictac/tictac.php:182 ../../addon/tictac/tictac.php:182
msgid "You go first..."
msgstr "Ty pierwszy..."
#: ../../addon.old/tictac/tictac.php:187 ../../addon/tictac/tictac.php:187
msgid "I'm going first this time..."
msgstr "Zaczynam..."
#: ../../addon.old/tictac/tictac.php:193 ../../addon/tictac/tictac.php:193
msgid "You won!"
msgstr "Wygrałeś!"
#: ../../addon.old/tictac/tictac.php:199 ../../addon.old/tictac/tictac.php:224
#: ../../addon/tictac/tictac.php:199 ../../addon/tictac/tictac.php:224
msgid "\"Cat\" game!"
msgstr "Gra \"Kot\"!"
#: ../../addon.old/tictac/tictac.php:222 ../../addon/tictac/tictac.php:222
msgid "I won!"
msgstr "Wygrałem!"
#: ../../addon.old/tumblr/tumblr.php:36 ../../addon/tumblr/tumblr.php:158
msgid "Post to Tumblr"
msgstr "Opublikuj na Tumblrze"
#: ../../addon.old/tumblr/tumblr.php:67 ../../addon/tumblr/tumblr.php:185
msgid "Tumblr Post Settings"
msgstr "Ustawienia postu Tumblr"
#: ../../addon.old/tumblr/tumblr.php:69 ../../addon/tumblr/tumblr.php:192
msgid "Enable Tumblr Post Plugin"
msgstr "Zezwól na wtyczkę postu Tumblr"
#: ../../addon.old/tumblr/tumblr.php:74
msgid "Tumblr login"
msgstr "Login Tumblr"
#: ../../addon.old/tumblr/tumblr.php:79
msgid "Tumblr password"
msgstr "Hasło do twojego Tumblra"
#: ../../addon.old/tumblr/tumblr.php:84 ../../addon/tumblr/tumblr.php:197
msgid "Post to Tumblr by default"
msgstr "Post do Tumblr przez standard"
#: ../../addon.old/twitter/twitter.php:73 ../../addon/twitter/twitter.php:77
msgid "Post to Twitter"
msgstr "Post na Twitter"
#: ../../addon.old/twitter/twitter.php:122 ../../addon/twitter/twitter.php:129
msgid "Twitter settings updated."
msgstr "Zaktualizowano ustawienia Twittera."
#: ../../addon.old/twitter/twitter.php:146 ../../addon/twitter/twitter.php:157
msgid "Twitter Posting Settings"
msgstr "Ustawienia wpisów z Twittera"
#: ../../addon.old/twitter/twitter.php:153 ../../addon/twitter/twitter.php:164
msgid ""
"No consumer key pair for Twitter found. Please contact your site "
"administrator."
msgstr "Nie znaleziono pary dla Twittera. Proszę skontaktować się z admininstratorem strony."
#: ../../addon.old/twitter/twitter.php:172 ../../addon/twitter/twitter.php:183
msgid ""
"At this Friendica instance the Twitter plugin was enabled but you have not "
"yet connected your account to your Twitter account. To do so click the "
"button below to get a PIN from Twitter which you have to copy into the input"
" box below and submit the form. Only your <strong>public</strong> posts will"
" be posted to Twitter."
msgstr ""
#: ../../addon.old/twitter/twitter.php:173 ../../addon/twitter/twitter.php:184
msgid "Log in with Twitter"
msgstr "Zaloguj się przez Twitter"
#: ../../addon.old/twitter/twitter.php:175 ../../addon/twitter/twitter.php:186
msgid "Copy the PIN from Twitter here"
msgstr "Skopiuj tutaj PIN z Twittera"
#: ../../addon.old/twitter/twitter.php:190 ../../addon/twitter/twitter.php:201
msgid ""
"If enabled all your <strong>public</strong> postings can be posted to the "
"associated Twitter account. You can choose to do so by default (here) or for"
" every posting separately in the posting options when writing the entry."
msgstr ""
#: ../../addon.old/twitter/twitter.php:192 ../../addon/twitter/twitter.php:203
msgid ""
"<strong>Note</strong>: Due your privacy settings (<em>Hide your profile "
"details from unknown viewers?</em>) the link potentially included in public "
"postings relayed to Twitter will lead the visitor to a blank page informing "
"the visitor that the access to your profile has been restricted."
msgstr ""
#: ../../addon.old/twitter/twitter.php:195 ../../addon/twitter/twitter.php:206
msgid "Allow posting to Twitter"
msgstr "Zezwól na opublikowanie w serwisie Twitter"
#: ../../addon.old/twitter/twitter.php:198 ../../addon/twitter/twitter.php:209
msgid "Send public postings to Twitter by default"
msgstr ""
#: ../../addon.old/twitter/twitter.php:201 ../../addon/twitter/twitter.php:221
msgid "Send linked #-tags and @-names to Twitter"
msgstr ""
#: ../../addon.old/twitter/twitter.php:396 ../../addon/twitter/twitter.php:558
msgid "Consumer key"
msgstr "Klucz konsumenta"
#: ../../addon.old/twitter/twitter.php:397 ../../addon/twitter/twitter.php:559
msgid "Consumer secret"
msgstr "Sekret konsumenta"
#: ../../addon.old/uhremotestorage/uhremotestorage.php:84
#: ../../addon/uhremotestorage/uhremotestorage.php:84
#, php-format
msgid ""
"Allow to use your friendica id (%s) to connecto to external unhosted-enabled"
" storage (like ownCloud). See <a "
"href=\"http://www.w3.org/community/unhosted/wiki/RemoteStorage#WebFinger\">RemoteStorage"
" WebFinger</a>"
msgstr ""
#: ../../addon.old/uhremotestorage/uhremotestorage.php:85
#: ../../addon/uhremotestorage/uhremotestorage.php:85
msgid "Template URL (with {category})"
msgstr ""
#: ../../addon.old/uhremotestorage/uhremotestorage.php:86
#: ../../addon/uhremotestorage/uhremotestorage.php:86
msgid "OAuth end-point"
msgstr ""
#: ../../addon.old/uhremotestorage/uhremotestorage.php:87
#: ../../addon/uhremotestorage/uhremotestorage.php:87
msgid "Api"
msgstr "Api"
#: ../../addon.old/viewsrc/viewsrc.php:37 ../../addon/viewsrc/viewsrc.php:39
msgid "View Source"
msgstr "Podgląd źródła"
#: ../../addon.old/widgets/widget_friendheader.php:40
#: ../../addon/widgets/widget_friendheader.php:40
msgid "Get added to this list!"
msgstr "Zostań dodany do listy!"
#: ../../addon.old/widgets/widget_friends.php:40
#: ../../addon/widgets/widget_friends.php:40
msgid "Connect on Friendica!"
msgstr "Połączono z Friendica!"
#: ../../addon.old/widgets/widget_like.php:58
#: ../../addon/widgets/widget_like.php:59
#, php-format
msgid "%d person likes this"
msgid_plural "%d people like this"
msgstr[0] " %d osoba lubi to"
msgstr[1] " %d osób lubi to"
msgstr[2] " %d osób lubi to"
#: ../../addon.old/widgets/widget_like.php:61
#: ../../addon/widgets/widget_like.php:62
#, php-format
msgid "%d person doesn't like this"
msgid_plural "%d people don't like this"
msgstr[0] " %d osoba nie lubi tego"
msgstr[1] " %d osób tego nie lubi"
msgstr[2] " %d osób tego nie lubi"
#: ../../addon.old/widgets/widgets.php:56 ../../addon/widgets/widgets.php:57
msgid "Generate new key"
msgstr "Stwórz nowy klucz"
#: ../../addon.old/widgets/widgets.php:59 ../../addon/widgets/widgets.php:60
msgid "Widgets key"
msgstr ""
#: ../../addon.old/widgets/widgets.php:61 ../../addon/widgets/widgets.php:62
msgid "Widgets available"
msgstr "Widgety są dostępne"
#: ../../addon.old/widgets/widgets.php:123 ../../addon/widgets/widgets.php:124
#: ../../mod/settings.php:646
msgid "Plugin Settings"
msgstr "Ustawienia wtyczki"
#: ../../addon.old/wppost/wppost.php:42 ../../addon/wppost/wppost.php:42
msgid "Post to Wordpress"
msgstr "Opublikuj na Wordpress"
#: ../../addon.old/wppost/wppost.php:76 ../../addon/wppost/wppost.php:76
msgid "WordPress Post Settings"
msgstr "Ustawienia wpisów WorldPress"
#: ../../addon.old/wppost/wppost.php:78 ../../addon/wppost/wppost.php:78
msgid "Enable WordPress Post Plugin"
msgstr "Włącz plugin wpisów WorldPress"
#: ../../addon.old/wppost/wppost.php:83 ../../addon/wppost/wppost.php:83
msgid "WordPress username"
msgstr "nazwa użytkownika WordPress"
#: ../../addon.old/wppost/wppost.php:88 ../../addon/wppost/wppost.php:88
msgid "WordPress password"
msgstr "hasło WordPress"
#: ../../addon.old/wppost/wppost.php:93 ../../addon/wppost/wppost.php:93
msgid "WordPress API URL"
msgstr "WordPress API URL"
#: ../../addon.old/wppost/wppost.php:98 ../../addon/wppost/wppost.php:98
msgid "Post to WordPress by default"
msgstr "Domyślnie opublikuj na Wordpress"
#: ../../addon.old/wppost/wppost.php:103 ../../addon/wppost/wppost.php:103
msgid "Provide a backlink to the Friendica post"
msgstr ""
#: ../../addon.old/wppost/wppost.php:207 ../../addon/wppost/wppost.php:207
msgid "Read the original post and comment stream on Friendica"
msgstr ""
#: ../../addon.old/yourls/yourls.php:55 ../../addon/yourls/yourls.php:55
msgid "YourLS Settings"
msgstr ""
#: ../../addon.old/yourls/yourls.php:57 ../../addon/yourls/yourls.php:57
msgid "URL: http://"
msgstr "URL: http://"
#: ../../addon.old/yourls/yourls.php:62 ../../addon/yourls/yourls.php:62
msgid "Username:"
msgstr "Nazwa użytkownika:"
#: ../../addon.old/yourls/yourls.php:67 ../../addon/yourls/yourls.php:67
msgid "Password:"
msgstr "Hasło:"
#: ../../addon.old/yourls/yourls.php:72 ../../addon/yourls/yourls.php:72
msgid "Use SSL "
msgstr "Użyj SSL"
#: ../../addon.old/yourls/yourls.php:92 ../../addon/yourls/yourls.php:92
msgid "yourls Settings saved."
msgstr ""
#: ../../addon/altpager/altpager.php:99
#: ../../addon/remote_permissions/remote_permissions.php:197
msgid "Global"
msgstr "Ogólne"
#: ../../addon/altpager/altpager.php:99
msgid "Force global use of the alternate pager"
msgstr ""
#: ../../addon/altpager/altpager.php:100
#: ../../addon/remote_permissions/remote_permissions.php:198
msgid "Individual"
msgstr "Indywidualne"
#: ../../addon/altpager/altpager.php:100
msgid "Each user chooses whether to use the alternate pager"
msgstr ""
#: ../../addon/fbpost/fbpost.php:239
msgid "Suppress \"View on friendica\""
msgstr ""
#: ../../addon/fbpost/fbpost.php:243
msgid "Mirror wall posts from facebook to friendica."
msgstr ""
#: ../../addon/fbpost/fbpost.php:253
msgid "Post to page/group:"
msgstr "Napisz na stronę/grupę:"
#: ../../addon/fbpost/fbpost.php:375
#, php-format
msgid "%s:"
msgstr ""
#: ../../addon/forumdirectory/forumdirectory.php:22
msgid "Forum Directory"
msgstr "Katalog Forum"
#: ../../addon/forumdirectory/forumdirectory.php:53 ../../mod/search.php:89
#: ../../mod/dfrn_request.php:761 ../../mod/directory.php:31
#: ../../mod/display.php:19 ../../mod/viewcontacts.php:17
#: ../../mod/community.php:18 ../../mod/photos.php:914
msgid "Public access denied."
msgstr "Publiczny dostęp zabroniony"
#: ../../addon/forumdirectory/forumdirectory.php:71 ../../mod/directory.php:49
#: ../../view/theme/diabook/theme.php:518
msgid "Global Directory"
msgstr "Globalne Położenie"
#: ../../addon/forumdirectory/forumdirectory.php:79 ../../mod/directory.php:57
msgid "Find on this site"
msgstr "Znajdź na tej stronie"
#: ../../addon/forumdirectory/forumdirectory.php:81 ../../mod/contacts.php:612
#: ../../mod/directory.php:59
msgid "Finding: "
msgstr "Znalezione:"
#: ../../addon/forumdirectory/forumdirectory.php:82 ../../mod/directory.php:60
msgid "Site Directory"
msgstr "Katalog Strony"
#: ../../addon/forumdirectory/forumdirectory.php:83
#: ../../include/contact_widgets.php:33 ../../mod/contacts.php:613
#: ../../mod/directory.php:61
msgid "Find"
msgstr "Znajdź"
#: ../../addon/forumdirectory/forumdirectory.php:133
#: ../../mod/profiles.php:682 ../../mod/directory.php:111
msgid "Age: "
msgstr "Wiek: "
#: ../../addon/forumdirectory/forumdirectory.php:136
#: ../../mod/directory.php:114
msgid "Gender: "
msgstr "Płeć: "
#: ../../addon/forumdirectory/forumdirectory.php:156
#: ../../include/bb2diaspora.php:415 ../../include/event.php:40
#: ../../mod/directory.php:134 ../../mod/events.php:471 ../../boot.php:1406
msgid "Location:"
msgstr "Lokalizacja"
#: ../../addon/forumdirectory/forumdirectory.php:158
#: ../../include/profile_advanced.php:17 ../../mod/directory.php:136
#: ../../boot.php:1408
msgid "Gender:"
msgstr "Płeć:"
#: ../../addon/forumdirectory/forumdirectory.php:160
#: ../../include/profile_advanced.php:37 ../../mod/directory.php:138
#: ../../boot.php:1411
msgid "Status:"
msgstr "Status"
#: ../../addon/forumdirectory/forumdirectory.php:162
#: ../../include/profile_advanced.php:48 ../../mod/directory.php:140
#: ../../boot.php:1413
msgid "Homepage:"
msgstr "Strona główna:"
#: ../../addon/forumdirectory/forumdirectory.php:164
#: ../../include/profile_advanced.php:58 ../../mod/directory.php:142
msgid "About:"
msgstr "O:"
#: ../../addon/forumdirectory/forumdirectory.php:201
#: ../../mod/directory.php:187
msgid "No entries (some entries may be hidden)."
msgstr "Brak odwiedzin (niektóre odwiedziny mogą być ukryte)."
#: ../../addon/group_text/group_text.php:46
msgid "Group Text settings updated."
msgstr ""
#: ../../addon/remote_permissions/remote_permissions.php:45
msgid "Remote Permissions Settings"
msgstr ""
#: ../../addon/remote_permissions/remote_permissions.php:46
msgid ""
"Allow recipients of your private posts to see the other recipients of the "
"posts"
msgstr ""
#: ../../addon/remote_permissions/remote_permissions.php:58
msgid "Remote Permissions settings updated."
msgstr ""
#: ../../addon/remote_permissions/remote_permissions.php:124
#: ../../mod/lockview.php:48
msgid "Visible to:"
msgstr "Widoczne dla:"
#: ../../addon/remote_permissions/remote_permissions.php:178
msgid "Visible to"
msgstr "Widoczne dla"
#: ../../addon/remote_permissions/remote_permissions.php:178
msgid "may only be a partial list"
msgstr ""
#: ../../addon/remote_permissions/remote_permissions.php:197
msgid "The posts of every user on this server show the post recipients"
msgstr ""
#: ../../addon/remote_permissions/remote_permissions.php:198
msgid "Each user chooses whether his/her posts show the post recipients"
msgstr ""
#: ../../addon/statusnet/statusnet.php:358
msgid ""
"Mirror all posts from statusnet that are no replies or repeated messages"
msgstr ""
#: ../../addon/statusnet/statusnet.php:362
msgid "Shortening method that optimizes the post"
msgstr ""
#: ../../addon/tumblr/tumblr.php:144
msgid "You are now authenticated to tumblr."
msgstr ""
#: ../../addon/tumblr/tumblr.php:145
msgid "return to the connector page"
msgstr ""
#: ../../addon/tumblr/tumblr.php:188
msgid "(Re-)Authenticate your tumblr page"
msgstr ""
#: ../../addon/tumblr/tumblr.php:217
msgid "Post to page:"
msgstr "Napisz na stronę:"
#: ../../addon/tumblr/tumblr.php:228
msgid "You are not authenticated to tumblr"
msgstr ""
#: ../../addon/twitter/twitter.php:213
msgid "Mirror all posts from twitter that are no replies or retweets"
msgstr ""
#: ../../addon/twitter/twitter.php:217
msgid "Shortening method that optimizes the tweet"
msgstr ""
#: ../../addon/twitter/twitter.php:560
msgid "Name of the Twitter Application"
msgstr ""
#: ../../addon/twitter/twitter.php:560
msgid ""
"set this to avoid mirroring postings from ~friendica back to ~friendica"
msgstr ""
#: ../../include/profile_advanced.php:7 ../../include/profile_advanced.php:84
#: ../../include/nav.php:77 ../../mod/profperm.php:103
#: ../../mod/newmember.php:32 ../../view/theme/diabook/theme.php:88
@ -3321,6 +52,11 @@ msgstr "Profil"
msgid "Full Name:"
msgstr "Imię i nazwisko:"
#: ../../include/profile_advanced.php:17 ../../mod/directory.php:136
#: ../../boot.php:1408
msgid "Gender:"
msgstr "Płeć:"
#: ../../include/profile_advanced.php:22
msgid "j F, Y"
msgstr "d M, R"
@ -3337,6 +73,11 @@ msgstr "Urodziny:"
msgid "Age:"
msgstr "Wiek:"
#: ../../include/profile_advanced.php:37 ../../mod/directory.php:138
#: ../../boot.php:1411
msgid "Status:"
msgstr "Status"
#: ../../include/profile_advanced.php:43
#, php-format
msgid "for %1$d %2$s"
@ -3346,6 +87,11 @@ msgstr "od %1$d %2$s"
msgid "Sexual Preference:"
msgstr "Interesują mnie:"
#: ../../include/profile_advanced.php:48 ../../mod/directory.php:140
#: ../../boot.php:1413
msgid "Homepage:"
msgstr "Strona główna:"
#: ../../include/profile_advanced.php:50 ../../mod/profiles.php:648
msgid "Hometown:"
msgstr "Miasto rodzinne:"
@ -3362,6 +108,10 @@ msgstr "Poglądy polityczne:"
msgid "Religion:"
msgstr "Religia:"
#: ../../include/profile_advanced.php:58 ../../mod/directory.php:142
msgid "About:"
msgstr "O:"
#: ../../include/profile_advanced.php:60
msgid "Hobbies/Interests:"
msgstr "Hobby/Zainteresowania:"
@ -3719,6 +469,10 @@ msgstr "widok kontaktów"
msgid "Search"
msgstr "Szukaj"
#: ../../include/text.php:781 ../../mod/notes.php:63 ../../mod/filer.php:31
msgid "Save"
msgstr "Zapisz"
#: ../../include/text.php:819
msgid "poke"
msgstr "zaczep"
@ -3729,7 +483,7 @@ msgstr "zaczepiony"
#: ../../include/text.php:820
msgid "ping"
msgstr ""
msgstr "ping"
#: ../../include/text.php:820
msgid "pinged"
@ -3847,6 +601,34 @@ msgstr "zrelaksowany"
msgid "surprised"
msgstr "zaskoczony"
#: ../../include/text.php:1015
msgid "Monday"
msgstr "Poniedziałek"
#: ../../include/text.php:1015
msgid "Tuesday"
msgstr "Wtorek"
#: ../../include/text.php:1015
msgid "Wednesday"
msgstr "Środa"
#: ../../include/text.php:1015
msgid "Thursday"
msgstr "Czwartek"
#: ../../include/text.php:1015
msgid "Friday"
msgstr "Piątek"
#: ../../include/text.php:1015
msgid "Saturday"
msgstr "Sobota"
#: ../../include/text.php:1015
msgid "Sunday"
msgstr "Niedziela"
#: ../../include/text.php:1019
msgid "January"
msgstr "Styczeń"
@ -3895,43 +677,55 @@ msgstr "Listopad"
msgid "December"
msgstr "Grudzień"
#: ../../include/text.php:1124
#: ../../include/text.php:1153
msgid "bytes"
msgstr "bajty"
#: ../../include/text.php:1151 ../../include/text.php:1163
#: ../../include/text.php:1180 ../../include/text.php:1192
msgid "Click to open/close"
msgstr "Kliknij aby otworzyć/zamknąć"
#: ../../include/text.php:1304 ../../mod/events.php:335
#: ../../include/text.php:1333 ../../mod/events.php:335
msgid "link to source"
msgstr "link do źródła"
#: ../../include/text.php:1336 ../../include/user.php:237
#: ../../include/text.php:1365 ../../include/user.php:237
msgid "default"
msgstr "standardowe"
#: ../../include/text.php:1348
#: ../../include/text.php:1377
msgid "Select an alternate language"
msgstr "Wybierz alternatywny język"
#: ../../include/text.php:1558
#: ../../include/text.php:1583 ../../include/conversation.php:118
#: ../../include/conversation.php:246 ../../view/theme/diabook/theme.php:456
msgid "event"
msgstr "wydarzenie"
#: ../../include/text.php:1585 ../../include/diaspora.php:1874
#: ../../include/conversation.php:126 ../../include/conversation.php:254
#: ../../mod/subthread.php:87 ../../mod/tagger.php:62 ../../mod/like.php:151
#: ../../view/theme/diabook/theme.php:464
msgid "photo"
msgstr "zdjęcie"
#: ../../include/text.php:1587
msgid "activity"
msgstr "aktywność"
#: ../../include/text.php:1560 ../../mod/content.php:628
#: ../../object/Item.php:354 ../../object/Item.php:367
#: ../../include/text.php:1589 ../../mod/content.php:628
#: ../../object/Item.php:364 ../../object/Item.php:377
msgid "comment"
msgid_plural "comments"
msgstr[0] ""
msgstr[1] ""
msgstr[2] "komentarz"
#: ../../include/text.php:1561
#: ../../include/text.php:1590
msgid "post"
msgstr "post"
#: ../../include/text.php:1716
#: ../../include/text.php:1745
msgid "Item filed"
msgstr ""
@ -4022,6 +816,11 @@ msgstr "Start:"
msgid "Finishes:"
msgstr "Wykończenia:"
#: ../../include/bb2diaspora.php:415 ../../include/event.php:40
#: ../../mod/directory.php:134 ../../mod/events.php:471 ../../boot.php:1406
msgid "Location:"
msgstr "Lokalizacja"
#: ../../include/follow.php:27 ../../mod/dfrn_request.php:502
msgid "Disallowed profile URL."
msgstr "Nie dozwolony adres URL profilu."
@ -4149,6 +948,16 @@ msgstr "Wystąpił bład podczas rejestracji, Spróbuj ponownie."
msgid "An error occurred creating your default profile. Please try again."
msgstr "Wystąpił błąd podczas tworzenia profilu. Spróbuj ponownie."
#: ../../include/user.php:325 ../../include/user.php:332
#: ../../include/user.php:339 ../../mod/photos.php:154
#: ../../mod/photos.php:725 ../../mod/photos.php:1183
#: ../../mod/photos.php:1206 ../../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 ../../view/theme/diabook/theme.php:493
msgid "Profile Photos"
msgstr "Zdjęcia profilowe"
#: ../../include/contact_selectors.php:32
msgid "Unknown | Not categorised"
msgstr "Nieznany | Bez kategori"
@ -4185,6 +994,18 @@ msgstr "Godzinowo"
msgid "Twice daily"
msgstr "Dwa razy dziennie"
#: ../../include/contact_selectors.php:59
msgid "Daily"
msgstr "Dziennie"
#: ../../include/contact_selectors.php:60
msgid "Weekly"
msgstr "Tygodniowo"
#: ../../include/contact_selectors.php:61
msgid "Monthly"
msgstr "Miesięcznie"
#: ../../include/contact_selectors.php:76 ../../mod/dfrn_request.php:840
msgid "Friendica"
msgstr "Friendica"
@ -4198,8 +1019,8 @@ msgid "RSS/Atom"
msgstr "RSS/Atom"
#: ../../include/contact_selectors.php:79
#: ../../include/contact_selectors.php:86 ../../mod/admin.php:747
#: ../../mod/admin.php:757
#: ../../include/contact_selectors.php:86 ../../mod/admin.php:754
#: ../../mod/admin.php:765
msgid "Email"
msgstr "E-mail"
@ -4208,6 +1029,11 @@ msgstr "E-mail"
msgid "Diaspora"
msgstr "Diaspora"
#: ../../include/contact_selectors.php:81 ../../mod/newmember.php:49
#: ../../mod/newmember.php:51
msgid "Facebook"
msgstr "Facebook"
#: ../../include/contact_selectors.php:82
msgid "Zot!"
msgstr ""
@ -4226,7 +1052,7 @@ msgstr "MySpace"
#: ../../include/contact_selectors.php:87
msgid "Google+"
msgstr ""
msgstr "Google+"
#: ../../include/contact_widgets.php:6
msgid "Add New Contact"
@ -4269,6 +1095,11 @@ msgstr "Połącz/Obserwuj"
msgid "Examples: Robert Morgenstein, Fishing"
msgstr "Przykładowo: Jan Kowalski, Wędkarstwo"
#: ../../include/contact_widgets.php:33 ../../mod/contacts.php:613
#: ../../mod/directory.php:61
msgid "Find"
msgstr "Znajdź"
#: ../../include/contact_widgets.php:34 ../../mod/suggest.php:66
#: ../../view/theme/diabook/theme.php:520
msgid "Friend Suggestions"
@ -4314,6 +1145,11 @@ msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
#: ../../include/contact_widgets.php:204 ../../mod/content.php:629
#: ../../object/Item.php:365 ../../boot.php:652
msgid "show more"
msgstr "Pokaż więcej"
#: ../../include/Scrape.php:583
msgid " on Last.fm"
msgstr "na Last.fm"
@ -4361,10 +1197,26 @@ msgstr "nigdy"
msgid "less than a second ago"
msgstr "mniej niż sekundę temu"
#: ../../include/datetime.php:285
msgid "years"
msgstr "lata"
#: ../../include/datetime.php:286
msgid "months"
msgstr "miesiące"
#: ../../include/datetime.php:287
msgid "week"
msgstr "tydzień"
#: ../../include/datetime.php:287
msgid "weeks"
msgstr "tygodnie"
#: ../../include/datetime.php:288
msgid "days"
msgstr "dni"
#: ../../include/datetime.php:289
msgid "hour"
msgstr "godzina"
@ -4394,55 +1246,16 @@ msgstr "sekundy"
msgid "%1$d %2$s ago"
msgstr ""
#: ../../include/datetime.php:472 ../../include/items.php:1764
#: ../../include/datetime.php:472 ../../include/items.php:1771
#, php-format
msgid "%s's birthday"
msgstr ""
msgstr "Urodziny %s"
#: ../../include/datetime.php:473 ../../include/items.php:1765
#: ../../include/datetime.php:473 ../../include/items.php:1772
#, php-format
msgid "Happy Birthday %s"
msgstr ""
#: ../../include/items.php:3439 ../../mod/dfrn_request.php:716
msgid "[Name Withheld]"
msgstr "[Nazwa wstrzymana]"
#: ../../include/items.php:3446
msgid "A new person is sharing with you at "
msgstr ""
#: ../../include/items.php:3446
msgid "You have a new follower at "
msgstr ""
#: ../../include/items.php:3926 ../../mod/admin.php:158
#: ../../mod/admin.php:789 ../../mod/admin.php:989 ../../mod/display.php:51
#: ../../mod/display.php:184 ../../mod/viewsrc.php:15 ../../mod/notice.php:15
msgid "Item not found."
msgstr "Element nie znaleziony."
#: ../../include/items.php:3965
msgid "Do you really want to delete this item?"
msgstr ""
#: ../../include/items.php:3967 ../../mod/profiles.php:606
#: ../../mod/api.php:105 ../../mod/register.php:239 ../../mod/contacts.php:246
#: ../../mod/settings.php:934 ../../mod/settings.php:940
#: ../../mod/settings.php:948 ../../mod/settings.php:952
#: ../../mod/settings.php:957 ../../mod/settings.php:963
#: ../../mod/settings.php:969 ../../mod/settings.php:975
#: ../../mod/settings.php:1005 ../../mod/settings.php:1006
#: ../../mod/settings.php:1007 ../../mod/settings.php:1008
#: ../../mod/settings.php:1009 ../../mod/dfrn_request.php:836
#: ../../mod/suggest.php:29 ../../mod/message.php:209
msgid "Yes"
msgstr "Tak"
#: ../../include/items.php:4160
msgid "Archives"
msgstr "Archiwum"
#: ../../include/plugin.php:439 ../../include/plugin.php:441
msgid "Click here to upgrade."
msgstr "Kliknij tu, aby zaktualizować."
@ -4459,6 +1272,11 @@ msgstr ""
msgid "(no subject)"
msgstr "(bez tematu)"
#: ../../include/delivery.php:468 ../../include/enotify.php:28
#: ../../include/notifier.php:785
msgid "noreply"
msgstr "brak odpowiedzi"
#: ../../include/diaspora.php:621 ../../include/conversation.php:172
#: ../../mod/dfrn_confirm.php:477
#, php-format
@ -4469,10 +1287,508 @@ msgstr "%1$s jest teraz znajomym z %2$s"
msgid "Sharing notification from Diaspora network"
msgstr "Wspólne powiadomienie z sieci Diaspora"
#: ../../include/diaspora.php:1874 ../../include/conversation.php:121
#: ../../include/conversation.php:130 ../../include/conversation.php:249
#: ../../include/conversation.php:258 ../../mod/subthread.php:87
#: ../../mod/tagger.php:62 ../../mod/like.php:151 ../../mod/like.php:322
#: ../../view/theme/diabook/theme.php:459
#: ../../view/theme/diabook/theme.php:468
msgid "status"
msgstr "status"
#: ../../include/diaspora.php:1890 ../../include/conversation.php:137
#: ../../mod/like.php:168 ../../view/theme/diabook/theme.php:473
#, php-format
msgid "%1$s likes %2$s's %3$s"
msgstr "%1$s lubi %2$s's %3$s"
#: ../../include/diaspora.php:2262
msgid "Attachments:"
msgstr "Załączniki:"
#: ../../include/features.php:23
msgid "General Features"
msgstr ""
#: ../../include/features.php:25
msgid "Multiple Profiles"
msgstr ""
#: ../../include/features.php:25
msgid "Ability to create multiple profiles"
msgstr ""
#: ../../include/features.php:30
msgid "Post Composition Features"
msgstr ""
#: ../../include/features.php:31
msgid "Richtext Editor"
msgstr ""
#: ../../include/features.php:31
msgid "Enable richtext editor"
msgstr ""
#: ../../include/features.php:32
msgid "Post Preview"
msgstr "Podgląd posta"
#: ../../include/features.php:32
msgid "Allow previewing posts and comments before publishing them"
msgstr ""
#: ../../include/features.php:37
msgid "Network Sidebar Widgets"
msgstr ""
#: ../../include/features.php:38
msgid "Search by Date"
msgstr "Szukanie wg daty"
#: ../../include/features.php:38
msgid "Ability to select posts by date ranges"
msgstr ""
#: ../../include/features.php:39
msgid "Group Filter"
msgstr "Filtrowanie grupowe"
#: ../../include/features.php:39
msgid "Enable widget to display Network posts only from selected group"
msgstr ""
#: ../../include/features.php:40
msgid "Network Filter"
msgstr ""
#: ../../include/features.php:40
msgid "Enable widget to display Network posts only from selected network"
msgstr ""
#: ../../include/features.php:41 ../../mod/search.php:30
#: ../../mod/network.php:233
msgid "Saved Searches"
msgstr "Zapisane wyszukiwania"
#: ../../include/features.php:41
msgid "Save search terms for re-use"
msgstr ""
#: ../../include/features.php:46
msgid "Network Tabs"
msgstr ""
#: ../../include/features.php:47
msgid "Network Personal Tab"
msgstr ""
#: ../../include/features.php:47
msgid "Enable tab to display only Network posts that you've interacted on"
msgstr ""
#: ../../include/features.php:48
msgid "Network New Tab"
msgstr ""
#: ../../include/features.php:48
msgid "Enable tab to display only new Network posts (from the last 12 hours)"
msgstr ""
#: ../../include/features.php:49
msgid "Network Shared Links Tab"
msgstr ""
#: ../../include/features.php:49
msgid "Enable tab to display only Network posts with links in them"
msgstr ""
#: ../../include/features.php:54
msgid "Post/Comment Tools"
msgstr ""
#: ../../include/features.php:55
msgid "Multiple Deletion"
msgstr ""
#: ../../include/features.php:55
msgid "Select and delete multiple posts/comments at once"
msgstr ""
#: ../../include/features.php:56
msgid "Edit Sent Posts"
msgstr ""
#: ../../include/features.php:56
msgid "Edit and correct posts and comments after sending"
msgstr ""
#: ../../include/features.php:57
msgid "Tagging"
msgstr ""
#: ../../include/features.php:57
msgid "Ability to tag existing posts"
msgstr ""
#: ../../include/features.php:58
msgid "Post Categories"
msgstr ""
#: ../../include/features.php:58
msgid "Add categories to your posts"
msgstr "Dodaj kategorie do twoich postów"
#: ../../include/features.php:59
msgid "Ability to file posts under folders"
msgstr ""
#: ../../include/features.php:60
msgid "Dislike Posts"
msgstr ""
#: ../../include/features.php:60
msgid "Ability to dislike posts/comments"
msgstr ""
#: ../../include/features.php:61
msgid "Star Posts"
msgstr ""
#: ../../include/features.php:61
msgid "Ability to mark special posts with a star indicator"
msgstr ""
#: ../../include/dba.php:44
#, php-format
msgid "Cannot locate DNS info for database server '%s'"
msgstr "Nie można zlokalizować serwera DNS dla bazy danych '%s'"
#: ../../include/group.php:25
msgid ""
"A deleted group with this name was revived. Existing item permissions "
"<strong>may</strong> 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 "Domyślne ustawienia prywatności dla nowych kontaktów"
#: ../../include/group.php:226
msgid "Everybody"
msgstr "Wszyscy"
#: ../../include/group.php:249
msgid "edit"
msgstr "edytuj"
#: ../../include/group.php:270 ../../mod/newmember.php:66
msgid "Groups"
msgstr "Grupy"
#: ../../include/group.php:271
msgid "Edit group"
msgstr "Edytuj grupy"
#: ../../include/group.php:272
msgid "Create a new group"
msgstr "Stwórz nową grupę"
#: ../../include/group.php:273
msgid "Contacts not in any group"
msgstr "Kontakt nie jest w żadnej grupie"
#: ../../include/group.php:275 ../../mod/network.php:234
msgid "add"
msgstr "dodaj"
#: ../../include/conversation.php:140 ../../mod/like.php:170
#, php-format
msgid "%1$s doesn't like %2$s's %3$s"
msgstr "%1$s nie lubi %2$s's %3$s"
#: ../../include/conversation.php:207
#, php-format
msgid "%1$s poked %2$s"
msgstr ""
#: ../../include/conversation.php:227 ../../mod/mood.php:62
#, php-format
msgid "%1$s is currently %2$s"
msgstr ""
#: ../../include/conversation.php:266 ../../mod/tagger.php:95
#, php-format
msgid "%1$s tagged %2$s's %3$s with %4$s"
msgstr "%1$s zaznaczył %2$s'go %3$s przy użyciu %4$s"
#: ../../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:587 ../../mod/content.php:461
#: ../../mod/content.php:763 ../../object/Item.php:126
msgid "Select"
msgstr "Wybierz"
#: ../../include/conversation.php:588 ../../mod/settings.php:623
#: ../../mod/admin.php:758 ../../mod/group.php:171 ../../mod/photos.php:1637
#: ../../mod/content.php:462 ../../mod/content.php:764
#: ../../object/Item.php:127
msgid "Delete"
msgstr "Usuń"
#: ../../include/conversation.php:627 ../../mod/content.php:495
#: ../../mod/content.php:875 ../../mod/content.php:876
#: ../../object/Item.php:306 ../../object/Item.php:307
#, php-format
msgid "View %s's profile @ %s"
msgstr "Pokaż %s's profil @ %s"
#: ../../include/conversation.php:639 ../../object/Item.php:297
msgid "Categories:"
msgstr "Kategorie:"
#: ../../include/conversation.php:640 ../../object/Item.php:298
msgid "Filed under:"
msgstr ""
#: ../../include/conversation.php:647 ../../mod/content.php:505
#: ../../mod/content.php:887 ../../object/Item.php:320
#, php-format
msgid "%s from %s"
msgstr "%s od %s"
#: ../../include/conversation.php:662 ../../mod/content.php:520
msgid "View in context"
msgstr "Zobacz w kontekście"
#: ../../include/conversation.php:664 ../../include/conversation.php:1060
#: ../../mod/editpost.php:124 ../../mod/wallmessage.php:156
#: ../../mod/message.php:334 ../../mod/message.php:565
#: ../../mod/photos.php:1532 ../../mod/content.php:522
#: ../../mod/content.php:906 ../../object/Item.php:341
msgid "Please wait"
msgstr "Proszę czekać"
#: ../../include/conversation.php:728
msgid "remove"
msgstr "usuń"
#: ../../include/conversation.php:732
msgid "Delete Selected Items"
msgstr "Usuń zaznaczone elementy"
#: ../../include/conversation.php:831
msgid "Follow Thread"
msgstr "Śledź wątek"
#: ../../include/conversation.php:900
#, php-format
msgid "%s likes this."
msgstr "%s lubi to."
#: ../../include/conversation.php:900
#, php-format
msgid "%s doesn't like this."
msgstr "%s nie lubi tego."
#: ../../include/conversation.php:905
#, php-format
msgid "<span %1$s>%2$d people</span> like this"
msgstr ""
#: ../../include/conversation.php:908
#, php-format
msgid "<span %1$s>%2$d people</span> don't like this"
msgstr ""
#: ../../include/conversation.php:922
msgid "and"
msgstr "i"
#: ../../include/conversation.php:928
#, php-format
msgid ", and %d other people"
msgstr ", i %d innych ludzi"
#: ../../include/conversation.php:930
#, php-format
msgid "%s like this."
msgstr "%s lubi to."
#: ../../include/conversation.php:930
#, php-format
msgid "%s don't like this."
msgstr "%s nie lubi tego."
#: ../../include/conversation.php:957 ../../include/conversation.php:975
msgid "Visible to <strong>everybody</strong>"
msgstr "Widoczne dla <strong>wszystkich</strong>"
#: ../../include/conversation.php:958 ../../include/conversation.php:976
#: ../../mod/wallmessage.php:127 ../../mod/wallmessage.php:135
#: ../../mod/message.php:283 ../../mod/message.php:291
#: ../../mod/message.php:466 ../../mod/message.php:474
msgid "Please enter a link URL:"
msgstr "Proszę wpisać adres URL:"
#: ../../include/conversation.php:959 ../../include/conversation.php:977
msgid "Please enter a video link/URL:"
msgstr "Podaj link do filmu"
#: ../../include/conversation.php:960 ../../include/conversation.php:978
msgid "Please enter an audio link/URL:"
msgstr "Podaj link do muzyki"
#: ../../include/conversation.php:961 ../../include/conversation.php:979
msgid "Tag term:"
msgstr ""
#: ../../include/conversation.php:962 ../../include/conversation.php:980
#: ../../mod/filer.php:30
msgid "Save to Folder:"
msgstr "Zapisz w folderze:"
#: ../../include/conversation.php:963 ../../include/conversation.php:981
msgid "Where are you right now?"
msgstr "Gdzie teraz jesteś?"
#: ../../include/conversation.php:964
msgid "Delete item(s)?"
msgstr ""
#: ../../include/conversation.php:1006
msgid "Post to Email"
msgstr "Wyślij poprzez email"
#: ../../include/conversation.php:1041 ../../mod/photos.php:1531
msgid "Share"
msgstr "Podziel się"
#: ../../include/conversation.php:1042 ../../mod/editpost.php:110
#: ../../mod/wallmessage.php:154 ../../mod/message.php:332
#: ../../mod/message.php:562
msgid "Upload photo"
msgstr "Wyślij zdjęcie"
#: ../../include/conversation.php:1043 ../../mod/editpost.php:111
msgid "upload photo"
msgstr "dodaj zdjęcie"
#: ../../include/conversation.php:1044 ../../mod/editpost.php:112
msgid "Attach file"
msgstr "Przyłącz plik"
#: ../../include/conversation.php:1045 ../../mod/editpost.php:113
msgid "attach file"
msgstr "załącz plik"
#: ../../include/conversation.php:1046 ../../mod/editpost.php:114
#: ../../mod/wallmessage.php:155 ../../mod/message.php:333
#: ../../mod/message.php:563
msgid "Insert web link"
msgstr "Wstaw link"
#: ../../include/conversation.php:1047 ../../mod/editpost.php:115
msgid "web link"
msgstr "Adres www"
#: ../../include/conversation.php:1048 ../../mod/editpost.php:116
msgid "Insert video link"
msgstr "Wstaw link wideo"
#: ../../include/conversation.php:1049 ../../mod/editpost.php:117
msgid "video link"
msgstr "link do filmu"
#: ../../include/conversation.php:1050 ../../mod/editpost.php:118
msgid "Insert audio link"
msgstr "Wstaw link audio"
#: ../../include/conversation.php:1051 ../../mod/editpost.php:119
msgid "audio link"
msgstr "Link audio"
#: ../../include/conversation.php:1052 ../../mod/editpost.php:120
msgid "Set your location"
msgstr "Ustaw swoje położenie"
#: ../../include/conversation.php:1053 ../../mod/editpost.php:121
msgid "set location"
msgstr "wybierz lokalizację"
#: ../../include/conversation.php:1054 ../../mod/editpost.php:122
msgid "Clear browser location"
msgstr "Wyczyść położenie przeglądarki"
#: ../../include/conversation.php:1055 ../../mod/editpost.php:123
msgid "clear location"
msgstr "wyczyść lokalizację"
#: ../../include/conversation.php:1057 ../../mod/editpost.php:137
msgid "Set title"
msgstr "Ustaw tytuł"
#: ../../include/conversation.php:1059 ../../mod/editpost.php:139
msgid "Categories (comma-separated list)"
msgstr ""
#: ../../include/conversation.php:1061 ../../mod/editpost.php:125
msgid "Permission settings"
msgstr "Ustawienia uprawnień"
#: ../../include/conversation.php:1062
msgid "permissions"
msgstr "zezwolenia"
#: ../../include/conversation.php:1070 ../../mod/editpost.php:133
msgid "CC: email addresses"
msgstr "CC: adresy e-mail"
#: ../../include/conversation.php:1071 ../../mod/editpost.php:134
msgid "Public post"
msgstr "Publiczny post"
#: ../../include/conversation.php:1073 ../../mod/editpost.php:140
msgid "Example: bob@example.com, mary@example.com"
msgstr "Przykład: bob@example.com, mary@example.com"
#: ../../include/conversation.php:1077 ../../mod/editpost.php:145
#: ../../mod/photos.php:1553 ../../mod/photos.php:1597
#: ../../mod/photos.php:1680 ../../mod/content.php:742
#: ../../object/Item.php:662
msgid "Preview"
msgstr "Podgląd"
#: ../../include/conversation.php:1080 ../../include/items.php:3981
#: ../../mod/contacts.php:249 ../../mod/settings.php:561
#: ../../mod/settings.php:587 ../../mod/dfrn_request.php:848
#: ../../mod/suggest.php:32 ../../mod/tagrm.php:11 ../../mod/tagrm.php:94
#: ../../mod/editpost.php:148 ../../mod/fbrowser.php:81
#: ../../mod/fbrowser.php:116 ../../mod/message.php:212
#: ../../mod/photos.php:202 ../../mod/photos.php:290
msgid "Cancel"
msgstr "Anuluj"
#: ../../include/conversation.php:1086
msgid "Post to Groups"
msgstr ""
#: ../../include/conversation.php:1087
msgid "Post to Contacts"
msgstr ""
#: ../../include/conversation.php:1088
msgid "Private post"
msgstr "Prywatne posty"
#: ../../include/enotify.php:16
msgid "Friendica Notification"
msgstr "Powiadomienia Friendica"
@ -4659,479 +1975,6 @@ msgstr "Zdjęcie:"
msgid "Please visit %s to approve or reject the suggestion."
msgstr ""
#: ../../include/features.php:23
msgid "General Features"
msgstr ""
#: ../../include/features.php:25
msgid "Multiple Profiles"
msgstr ""
#: ../../include/features.php:25
msgid "Ability to create multiple profiles"
msgstr ""
#: ../../include/features.php:30
msgid "Post Composition Features"
msgstr ""
#: ../../include/features.php:31
msgid "Richtext Editor"
msgstr ""
#: ../../include/features.php:31
msgid "Enable richtext editor"
msgstr ""
#: ../../include/features.php:32
msgid "Post Preview"
msgstr ""
#: ../../include/features.php:32
msgid "Allow previewing posts and comments before publishing them"
msgstr ""
#: ../../include/features.php:37
msgid "Network Sidebar Widgets"
msgstr ""
#: ../../include/features.php:38
msgid "Search by Date"
msgstr "Szukanie wg daty"
#: ../../include/features.php:38
msgid "Ability to select posts by date ranges"
msgstr ""
#: ../../include/features.php:39
msgid "Group Filter"
msgstr ""
#: ../../include/features.php:39
msgid "Enable widget to display Network posts only from selected group"
msgstr ""
#: ../../include/features.php:40
msgid "Network Filter"
msgstr ""
#: ../../include/features.php:40
msgid "Enable widget to display Network posts only from selected network"
msgstr ""
#: ../../include/features.php:41 ../../mod/search.php:30
#: ../../mod/network.php:233
msgid "Saved Searches"
msgstr "Zapisane wyszukiwania"
#: ../../include/features.php:41
msgid "Save search terms for re-use"
msgstr ""
#: ../../include/features.php:46
msgid "Network Tabs"
msgstr ""
#: ../../include/features.php:47
msgid "Network Personal Tab"
msgstr ""
#: ../../include/features.php:47
msgid "Enable tab to display only Network posts that you've interacted on"
msgstr ""
#: ../../include/features.php:48
msgid "Network New Tab"
msgstr ""
#: ../../include/features.php:48
msgid "Enable tab to display only new Network posts (from the last 12 hours)"
msgstr ""
#: ../../include/features.php:49
msgid "Network Shared Links Tab"
msgstr ""
#: ../../include/features.php:49
msgid "Enable tab to display only Network posts with links in them"
msgstr ""
#: ../../include/features.php:54
msgid "Post/Comment Tools"
msgstr ""
#: ../../include/features.php:55
msgid "Multiple Deletion"
msgstr ""
#: ../../include/features.php:55
msgid "Select and delete multiple posts/comments at once"
msgstr ""
#: ../../include/features.php:56
msgid "Edit Sent Posts"
msgstr ""
#: ../../include/features.php:56
msgid "Edit and correct posts and comments after sending"
msgstr ""
#: ../../include/features.php:57
msgid "Tagging"
msgstr ""
#: ../../include/features.php:57
msgid "Ability to tag existing posts"
msgstr ""
#: ../../include/features.php:58
msgid "Post Categories"
msgstr ""
#: ../../include/features.php:58
msgid "Add categories to your posts"
msgstr ""
#: ../../include/features.php:59
msgid "Ability to file posts under folders"
msgstr ""
#: ../../include/features.php:60
msgid "Dislike Posts"
msgstr ""
#: ../../include/features.php:60
msgid "Ability to dislike posts/comments"
msgstr ""
#: ../../include/features.php:61
msgid "Star Posts"
msgstr ""
#: ../../include/features.php:61
msgid "Ability to mark special posts with a star indicator"
msgstr ""
#: ../../include/dba.php:44
#, php-format
msgid "Cannot locate DNS info for database server '%s'"
msgstr "Nie można zlokalizować serwera DNS dla bazy danych '%s'"
#: ../../include/group.php:25
msgid ""
"A deleted group with this name was revived. Existing item permissions "
"<strong>may</strong> 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 "Domyślne ustawienia prywatności dla nowych kontaktów"
#: ../../include/group.php:226
msgid "Everybody"
msgstr "Wszyscy"
#: ../../include/group.php:249
msgid "edit"
msgstr "edytuj"
#: ../../include/group.php:270 ../../mod/newmember.php:66
msgid "Groups"
msgstr "Grupy"
#: ../../include/group.php:271
msgid "Edit group"
msgstr "Edytuj grupy"
#: ../../include/group.php:272
msgid "Create a new group"
msgstr "Stwórz nową grupę"
#: ../../include/group.php:273
msgid "Contacts not in any group"
msgstr "Kontakt nie jest w żadnej grupie"
#: ../../include/group.php:275 ../../mod/network.php:234
msgid "add"
msgstr "dodaj"
#: ../../include/conversation.php:140 ../../mod/like.php:170
#, php-format
msgid "%1$s doesn't like %2$s's %3$s"
msgstr "%1$s nie lubi %2$s's %3$s"
#: ../../include/conversation.php:207
#, php-format
msgid "%1$s poked %2$s"
msgstr ""
#: ../../include/conversation.php:227 ../../mod/mood.php:62
#, php-format
msgid "%1$s is currently %2$s"
msgstr ""
#: ../../include/conversation.php:266 ../../mod/tagger.php:95
#, php-format
msgid "%1$s tagged %2$s's %3$s with %4$s"
msgstr "%1$s zaznaczył %2$s'go %3$s przy użyciu %4$s"
#: ../../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:587 ../../mod/content.php:461
#: ../../mod/content.php:763 ../../object/Item.php:119
msgid "Select"
msgstr "Wybierz"
#: ../../include/conversation.php:588 ../../mod/admin.php:751
#: ../../mod/settings.php:623 ../../mod/group.php:171
#: ../../mod/photos.php:1637 ../../mod/content.php:462
#: ../../mod/content.php:764 ../../object/Item.php:120
msgid "Delete"
msgstr "Usuń"
#: ../../include/conversation.php:627 ../../mod/content.php:495
#: ../../mod/content.php:875 ../../mod/content.php:876
#: ../../object/Item.php:297 ../../object/Item.php:298
#, php-format
msgid "View %s's profile @ %s"
msgstr "Pokaż %s's profil @ %s"
#: ../../include/conversation.php:639 ../../object/Item.php:288
msgid "Categories:"
msgstr "Kategorie:"
#: ../../include/conversation.php:640 ../../object/Item.php:289
msgid "Filed under:"
msgstr ""
#: ../../include/conversation.php:647 ../../mod/content.php:505
#: ../../mod/content.php:887 ../../object/Item.php:311
#, php-format
msgid "%s from %s"
msgstr "%s od %s"
#: ../../include/conversation.php:662 ../../mod/content.php:520
msgid "View in context"
msgstr "Zobacz w kontekście"
#: ../../include/conversation.php:664 ../../include/conversation.php:1060
#: ../../mod/editpost.php:124 ../../mod/wallmessage.php:156
#: ../../mod/message.php:334 ../../mod/message.php:565
#: ../../mod/photos.php:1532 ../../mod/content.php:522
#: ../../mod/content.php:906 ../../object/Item.php:332
msgid "Please wait"
msgstr "Proszę czekać"
#: ../../include/conversation.php:728
msgid "remove"
msgstr "usuń"
#: ../../include/conversation.php:732
msgid "Delete Selected Items"
msgstr "Usuń zaznaczone elementy"
#: ../../include/conversation.php:831
msgid "Follow Thread"
msgstr ""
#: ../../include/conversation.php:900
#, php-format
msgid "%s likes this."
msgstr "%s lubi to."
#: ../../include/conversation.php:900
#, php-format
msgid "%s doesn't like this."
msgstr "%s nie lubi tego."
#: ../../include/conversation.php:905
#, php-format
msgid "<span %1$s>%2$d people</span> like this"
msgstr ""
#: ../../include/conversation.php:908
#, php-format
msgid "<span %1$s>%2$d people</span> don't like this"
msgstr ""
#: ../../include/conversation.php:922
msgid "and"
msgstr "i"
#: ../../include/conversation.php:928
#, php-format
msgid ", and %d other people"
msgstr ", i %d innych ludzi"
#: ../../include/conversation.php:930
#, php-format
msgid "%s like this."
msgstr "%s lubi to."
#: ../../include/conversation.php:930
#, php-format
msgid "%s don't like this."
msgstr "%s nie lubi tego."
#: ../../include/conversation.php:957 ../../include/conversation.php:975
msgid "Visible to <strong>everybody</strong>"
msgstr "Widoczne dla <strong>wszystkich</strong>"
#: ../../include/conversation.php:958 ../../include/conversation.php:976
#: ../../mod/wallmessage.php:127 ../../mod/wallmessage.php:135
#: ../../mod/message.php:283 ../../mod/message.php:291
#: ../../mod/message.php:466 ../../mod/message.php:474
msgid "Please enter a link URL:"
msgstr "Proszę wpisać adres URL:"
#: ../../include/conversation.php:959 ../../include/conversation.php:977
msgid "Please enter a video link/URL:"
msgstr "Podaj link do filmu"
#: ../../include/conversation.php:960 ../../include/conversation.php:978
msgid "Please enter an audio link/URL:"
msgstr "Podaj link do muzyki"
#: ../../include/conversation.php:961 ../../include/conversation.php:979
msgid "Tag term:"
msgstr ""
#: ../../include/conversation.php:962 ../../include/conversation.php:980
#: ../../mod/filer.php:30
msgid "Save to Folder:"
msgstr "Zapisz w folderze:"
#: ../../include/conversation.php:963 ../../include/conversation.php:981
msgid "Where are you right now?"
msgstr "Gdzie teraz jesteś?"
#: ../../include/conversation.php:964
msgid "Delete item(s)?"
msgstr ""
#: ../../include/conversation.php:1006
msgid "Post to Email"
msgstr "Wyślij poprzez email"
#: ../../include/conversation.php:1041 ../../mod/photos.php:1531
msgid "Share"
msgstr "Podziel się"
#: ../../include/conversation.php:1042 ../../mod/editpost.php:110
#: ../../mod/wallmessage.php:154 ../../mod/message.php:332
#: ../../mod/message.php:562
msgid "Upload photo"
msgstr "Wyślij zdjęcie"
#: ../../include/conversation.php:1043 ../../mod/editpost.php:111
msgid "upload photo"
msgstr "dodaj zdjęcie"
#: ../../include/conversation.php:1044 ../../mod/editpost.php:112
msgid "Attach file"
msgstr "Przyłącz plik"
#: ../../include/conversation.php:1045 ../../mod/editpost.php:113
msgid "attach file"
msgstr "załącz plik"
#: ../../include/conversation.php:1046 ../../mod/editpost.php:114
#: ../../mod/wallmessage.php:155 ../../mod/message.php:333
#: ../../mod/message.php:563
msgid "Insert web link"
msgstr "Wstaw link"
#: ../../include/conversation.php:1047 ../../mod/editpost.php:115
msgid "web link"
msgstr "Adres www"
#: ../../include/conversation.php:1048 ../../mod/editpost.php:116
msgid "Insert video link"
msgstr "Wstaw link wideo"
#: ../../include/conversation.php:1049 ../../mod/editpost.php:117
msgid "video link"
msgstr "link do filmu"
#: ../../include/conversation.php:1050 ../../mod/editpost.php:118
msgid "Insert audio link"
msgstr "Wstaw link audio"
#: ../../include/conversation.php:1051 ../../mod/editpost.php:119
msgid "audio link"
msgstr "Link audio"
#: ../../include/conversation.php:1052 ../../mod/editpost.php:120
msgid "Set your location"
msgstr "Ustaw swoje położenie"
#: ../../include/conversation.php:1053 ../../mod/editpost.php:121
msgid "set location"
msgstr "wybierz lokalizację"
#: ../../include/conversation.php:1054 ../../mod/editpost.php:122
msgid "Clear browser location"
msgstr "Wyczyść położenie przeglądarki"
#: ../../include/conversation.php:1055 ../../mod/editpost.php:123
msgid "clear location"
msgstr "wyczyść lokalizację"
#: ../../include/conversation.php:1057 ../../mod/editpost.php:137
msgid "Set title"
msgstr "Ustaw tytuł"
#: ../../include/conversation.php:1059 ../../mod/editpost.php:139
msgid "Categories (comma-separated list)"
msgstr ""
#: ../../include/conversation.php:1061 ../../mod/editpost.php:125
msgid "Permission settings"
msgstr "Ustawienia uprawnień"
#: ../../include/conversation.php:1062
msgid "permissions"
msgstr "zezwolenia"
#: ../../include/conversation.php:1070 ../../mod/editpost.php:133
msgid "CC: email addresses"
msgstr "CC: adresy e-mail"
#: ../../include/conversation.php:1071 ../../mod/editpost.php:134
msgid "Public post"
msgstr "Publiczny post"
#: ../../include/conversation.php:1073 ../../mod/editpost.php:140
msgid "Example: bob@example.com, mary@example.com"
msgstr "Przykład: bob@example.com, mary@example.com"
#: ../../include/conversation.php:1077 ../../mod/editpost.php:145
#: ../../mod/photos.php:1553 ../../mod/photos.php:1597
#: ../../mod/photos.php:1680 ../../mod/content.php:742
#: ../../object/Item.php:652
msgid "Preview"
msgstr "Podgląd"
#: ../../include/conversation.php:1086
msgid "Post to Groups"
msgstr ""
#: ../../include/conversation.php:1087
msgid "Post to Contacts"
msgstr ""
#: ../../include/conversation.php:1088
msgid "Private post"
msgstr ""
#: ../../include/message.php:15 ../../include/message.php:172
msgid "[no subject]"
msgstr "[bez tematu]"
@ -5148,7 +1991,7 @@ msgstr "Brak nowych zdarzeń"
#: ../../include/nav.php:38 ../../mod/navigation.php:24
msgid "Clear notifications"
msgstr ""
msgstr "Wyczyść powiadomienia"
#: ../../include/nav.php:73 ../../boot.php:1057
msgid "Logout"
@ -5197,6 +2040,10 @@ msgstr "Osobiste notatki"
msgid "Your personal photos"
msgstr "Twoje osobiste zdjęcia"
#: ../../include/nav.php:91 ../../boot.php:1058
msgid "Login"
msgstr "Login"
#: ../../include/nav.php:91
msgid "Sign in"
msgstr "Zaloguj się"
@ -5218,6 +2065,10 @@ msgstr "Zarejestruj"
msgid "Create an account"
msgstr "Załóż konto"
#: ../../include/nav.php:113 ../../mod/help.php:84
msgid "Help"
msgstr "Pomoc"
#: ../../include/nav.php:113
msgid "Help and documentation"
msgstr "Pomoc i dokumentacja"
@ -5324,6 +2175,13 @@ msgstr ""
msgid "Delegate Page Management"
msgstr ""
#: ../../include/nav.php:167 ../../mod/settings.php:74 ../../mod/admin.php:849
#: ../../mod/admin.php:1057 ../../mod/uexport.php:48
#: ../../mod/newmember.php:22 ../../view/theme/diabook/theme.php:537
#: ../../view/theme/diabook/theme.php:658
msgid "Settings"
msgstr "Ustawienia"
#: ../../include/nav.php:167 ../../mod/settings.php:30 ../../mod/uexport.php:9
msgid "Account settings"
msgstr "Ustawienia konta"
@ -5359,7 +2217,7 @@ msgstr ""
#: ../../include/nav.php:182
msgid "Site map"
msgstr ""
msgstr "Mapa strony"
#: ../../include/network.php:875
msgid "view full size"
@ -5373,6 +2231,71 @@ msgstr "Osadzona zawartość"
msgid "Embedding disabled"
msgstr "Osadzanie wyłączone"
#: ../../include/items.php:3446 ../../mod/dfrn_request.php:716
msgid "[Name Withheld]"
msgstr "[Nazwa wstrzymana]"
#: ../../include/items.php:3453
msgid "A new person is sharing with you at "
msgstr ""
#: ../../include/items.php:3453
msgid "You have a new follower at "
msgstr ""
#: ../../include/items.php:3937 ../../mod/admin.php:158
#: ../../mod/admin.php:797 ../../mod/admin.php:997 ../../mod/viewsrc.php:15
#: ../../mod/notice.php:15 ../../mod/display.php:51 ../../mod/display.php:213
msgid "Item not found."
msgstr "Element nie znaleziony."
#: ../../include/items.php:3976
msgid "Do you really want to delete this item?"
msgstr ""
#: ../../include/items.php:3978 ../../mod/profiles.php:606
#: ../../mod/api.php:105 ../../mod/register.php:239 ../../mod/contacts.php:246
#: ../../mod/settings.php:934 ../../mod/settings.php:940
#: ../../mod/settings.php:948 ../../mod/settings.php:952
#: ../../mod/settings.php:957 ../../mod/settings.php:963
#: ../../mod/settings.php:969 ../../mod/settings.php:975
#: ../../mod/settings.php:1005 ../../mod/settings.php:1006
#: ../../mod/settings.php:1007 ../../mod/settings.php:1008
#: ../../mod/settings.php:1009 ../../mod/dfrn_request.php:836
#: ../../mod/suggest.php:29 ../../mod/message.php:209
msgid "Yes"
msgstr "Tak"
#: ../../include/items.php:4101 ../../mod/profiles.php:146
#: ../../mod/profiles.php:567 ../../mod/notes.php:20 ../../mod/nogroup.php:25
#: ../../mod/item.php:140 ../../mod/item.php:156 ../../mod/allfriends.php:9
#: ../../mod/api.php:26 ../../mod/api.php:31 ../../mod/register.php:40
#: ../../mod/regmod.php:118 ../../mod/attach.php:33 ../../mod/contacts.php:147
#: ../../mod/settings.php:91 ../../mod/settings.php:542
#: ../../mod/settings.php:547 ../../mod/crepair.php:115
#: ../../mod/delegate.php:6 ../../mod/poke.php:135
#: ../../mod/dfrn_confirm.php:53 ../../mod/suggest.php:56
#: ../../mod/editpost.php:10 ../../mod/events.php:140 ../../mod/uimport.php:23
#: ../../mod/follow.php:9 ../../mod/fsuggest.php:78 ../../mod/group.php:19
#: ../../mod/viewcontacts.php:22 ../../mod/wall_attach.php:55
#: ../../mod/wall_upload.php:66 ../../mod/invite.php:15
#: ../../mod/invite.php:101 ../../mod/wallmessage.php:9
#: ../../mod/wallmessage.php:33 ../../mod/wallmessage.php:79
#: ../../mod/wallmessage.php:103 ../../mod/manage.php:96
#: ../../mod/message.php:38 ../../mod/message.php:174 ../../mod/mood.php:114
#: ../../mod/network.php:6 ../../mod/notifications.php:66
#: ../../mod/photos.php:133 ../../mod/photos.php:1044
#: ../../mod/display.php:209 ../../mod/install.php:151
#: ../../mod/profile_photo.php:19 ../../mod/profile_photo.php:169
#: ../../mod/profile_photo.php:180 ../../mod/profile_photo.php:193
#: ../../index.php:346
msgid "Permission denied."
msgstr "Brak uprawnień."
#: ../../include/items.php:4171
msgid "Archives"
msgstr "Archiwum"
#: ../../include/security.php:22
msgid "Welcome "
msgstr "Witaj "
@ -5427,11 +2350,11 @@ msgstr ""
#: ../../mod/profiles.php:325
msgid "Likes"
msgstr ""
msgstr "Polubień"
#: ../../mod/profiles.php:329
msgid "Dislikes"
msgstr ""
msgstr "Nie lubień"
#: ../../mod/profiles.php:333
msgid "Work/Employment"
@ -5465,6 +2388,10 @@ msgstr "Zainteresowania"
msgid "Address"
msgstr "Adres"
#: ../../mod/profiles.php:367
msgid "Location"
msgstr "Położenie"
#: ../../mod/profiles.php:450
msgid "Profile updated."
msgstr "Konto zaktualizowane."
@ -5511,6 +2438,27 @@ msgstr "Nie"
msgid "Edit Profile Details"
msgstr "Edytuj profil."
#: ../../mod/profiles.php:626 ../../mod/contacts.php:386
#: ../../mod/settings.php:560 ../../mod/settings.php:670
#: ../../mod/settings.php:739 ../../mod/settings.php:811
#: ../../mod/settings.php:1037 ../../mod/crepair.php:166
#: ../../mod/poke.php:199 ../../mod/admin.php:480 ../../mod/admin.php:751
#: ../../mod/admin.php:890 ../../mod/admin.php:1090 ../../mod/admin.php:1177
#: ../../mod/events.php:478 ../../mod/fsuggest.php:107 ../../mod/group.php:87
#: ../../mod/invite.php:140 ../../mod/localtime.php:45
#: ../../mod/manage.php:110 ../../mod/message.php:335
#: ../../mod/message.php:564 ../../mod/mood.php:137 ../../mod/photos.php:1078
#: ../../mod/photos.php:1199 ../../mod/photos.php:1501
#: ../../mod/photos.php:1552 ../../mod/photos.php:1596
#: ../../mod/photos.php:1679 ../../mod/install.php:248
#: ../../mod/install.php:286 ../../mod/content.php:733
#: ../../object/Item.php:653 ../../view/theme/cleanzero/config.php:80
#: ../../view/theme/diabook/config.php:152
#: ../../view/theme/diabook/theme.php:642 ../../view/theme/dispy/config.php:70
#: ../../view/theme/quattro/config.php:64
msgid "Submit"
msgstr "Potwierdź"
#: ../../mod/profiles.php:627
msgid "Change Profile Photo"
msgstr "Zmień profilowe zdjęcie"
@ -5662,6 +2610,10 @@ msgid ""
"be visible to anybody using the internet."
msgstr "To jest Twój <strong> publiczny </strong> profil. <br/><strong>Może </strong> zostać wyświetlony przez każdego kto używa internetu."
#: ../../mod/profiles.php:682 ../../mod/directory.php:111
msgid "Age: "
msgstr "Wiek: "
#: ../../mod/profiles.php:721
msgid "Edit/Manage Profiles"
msgstr "Edytuj/Zarządzaj Profilami"
@ -5686,7 +2638,7 @@ msgstr "widoczne dla wszystkich"
msgid "Edit visibility"
msgstr "Edytuj widoczność"
#: ../../mod/profperm.php:19 ../../mod/group.php:72 ../../index.php:340
#: ../../mod/profperm.php:19 ../../mod/group.php:72 ../../index.php:345
msgid "Permission denied"
msgstr "Odmowa dostępu"
@ -5773,752 +2725,6 @@ msgstr "{0} zaznaczony %s'go post z #%s"
msgid "{0} mentioned you in a post"
msgstr "{0} wspomniał Cię w swoim wpisie"
#: ../../mod/admin.php:55
msgid "Theme settings updated."
msgstr ""
#: ../../mod/admin.php:96 ../../mod/admin.php:474
msgid "Site"
msgstr "Strona"
#: ../../mod/admin.php:97 ../../mod/admin.php:743 ../../mod/admin.php:756
msgid "Users"
msgstr "Użytkownicy"
#: ../../mod/admin.php:98 ../../mod/admin.php:839 ../../mod/admin.php:881
msgid "Plugins"
msgstr "Wtyczki"
#: ../../mod/admin.php:99 ../../mod/admin.php:1047 ../../mod/admin.php:1081
msgid "Themes"
msgstr "Temat"
#: ../../mod/admin.php:100
msgid "DB updates"
msgstr ""
#: ../../mod/admin.php:115 ../../mod/admin.php:122 ../../mod/admin.php:1168
msgid "Logs"
msgstr "Logi"
#: ../../mod/admin.php:121
msgid "Plugin Features"
msgstr "Polecane wtyczki"
#: ../../mod/admin.php:123
msgid "User registrations waiting for confirmation"
msgstr "Rejestracje użytkownika czekają na potwierdzenie."
#: ../../mod/admin.php:182 ../../mod/admin.php:714
msgid "Normal Account"
msgstr "Konto normalne"
#: ../../mod/admin.php:183 ../../mod/admin.php:715
msgid "Soapbox Account"
msgstr "Konto Soapbox"
#: ../../mod/admin.php:184 ../../mod/admin.php:716
msgid "Community/Celebrity Account"
msgstr "Konto społeczności/gwiazdy"
#: ../../mod/admin.php:185 ../../mod/admin.php:717
msgid "Automatic Friend Account"
msgstr "Automatyczny przyjaciel konta"
#: ../../mod/admin.php:186
msgid "Blog Account"
msgstr ""
#: ../../mod/admin.php:187
msgid "Private Forum"
msgstr "Forum Prywatne"
#: ../../mod/admin.php:206
msgid "Message queues"
msgstr ""
#: ../../mod/admin.php:211 ../../mod/admin.php:473 ../../mod/admin.php:742
#: ../../mod/admin.php:838 ../../mod/admin.php:880 ../../mod/admin.php:1046
#: ../../mod/admin.php:1080 ../../mod/admin.php:1167
msgid "Administration"
msgstr "Administracja"
#: ../../mod/admin.php:212
msgid "Summary"
msgstr "Skrót"
#: ../../mod/admin.php:214
msgid "Registered users"
msgstr "Zarejestrowani użytkownicy"
#: ../../mod/admin.php:216
msgid "Pending registrations"
msgstr "Rejestracje w toku."
#: ../../mod/admin.php:217
msgid "Version"
msgstr "Wersja"
#: ../../mod/admin.php:219
msgid "Active plugins"
msgstr "Aktywne pluginy"
#: ../../mod/admin.php:398
msgid "Site settings updated."
msgstr "Ustawienia strony zaktualizowane"
#: ../../mod/admin.php:427 ../../mod/settings.php:769
msgid "No special theme for mobile devices"
msgstr ""
#: ../../mod/admin.php:444
msgid "Multi user instance"
msgstr ""
#: ../../mod/admin.php:460
msgid "Closed"
msgstr "Zamknięty"
#: ../../mod/admin.php:461
msgid "Requires approval"
msgstr "Wymagane zatwierdzenie."
#: ../../mod/admin.php:462
msgid "Open"
msgstr "Otwórz"
#: ../../mod/admin.php:466
msgid "No SSL policy, links will track page SSL state"
msgstr ""
#: ../../mod/admin.php:467
msgid "Force all links to use SSL"
msgstr ""
#: ../../mod/admin.php:468
msgid "Self-signed certificate, use SSL for local links only (discouraged)"
msgstr ""
#: ../../mod/admin.php:476 ../../mod/register.php:261
msgid "Registration"
msgstr "Rejestracja"
#: ../../mod/admin.php:477
msgid "File upload"
msgstr "Plik załadowano"
#: ../../mod/admin.php:478
msgid "Policies"
msgstr "zasady"
#: ../../mod/admin.php:479
msgid "Advanced"
msgstr "Zaawansowany"
#: ../../mod/admin.php:480
msgid "Performance"
msgstr ""
#: ../../mod/admin.php:485
msgid "Banner/Logo"
msgstr "Logo"
#: ../../mod/admin.php:486
msgid "System language"
msgstr "Język systemu"
#: ../../mod/admin.php:487
msgid "System theme"
msgstr "Motyw systemowy"
#: ../../mod/admin.php:487
msgid ""
"Default system theme - may be over-ridden by user profiles - <a href='#' "
"id='cnftheme'>change theme settings</a>"
msgstr ""
#: ../../mod/admin.php:488
msgid "Mobile system theme"
msgstr ""
#: ../../mod/admin.php:488
msgid "Theme for mobile devices"
msgstr ""
#: ../../mod/admin.php:489
msgid "SSL link policy"
msgstr ""
#: ../../mod/admin.php:489
msgid "Determines whether generated links should be forced to use SSL"
msgstr ""
#: ../../mod/admin.php:490
msgid "'Share' element"
msgstr ""
#: ../../mod/admin.php:490
msgid "Activates the bbcode element 'share' for repeating items."
msgstr ""
#: ../../mod/admin.php:491
msgid "Hide help entry from navigation menu"
msgstr ""
#: ../../mod/admin.php:491
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:492
msgid "Single user instance"
msgstr ""
#: ../../mod/admin.php:492
msgid "Make this instance multi-user or single-user for the named user"
msgstr ""
#: ../../mod/admin.php:493
msgid "Maximum image size"
msgstr "Maksymalny rozmiar zdjęcia"
#: ../../mod/admin.php:493
msgid ""
"Maximum size in bytes of uploaded images. Default is 0, which means no "
"limits."
msgstr ""
#: ../../mod/admin.php:494
msgid "Maximum image length"
msgstr "Maksymalna długość obrazu"
#: ../../mod/admin.php:494
msgid ""
"Maximum length in pixels of the longest side of uploaded images. Default is "
"-1, which means no limits."
msgstr "Maksymalna długość najdłuższej strony przesyłanego obrazu w pikselach.\nDomyślnie jest to -1, co oznacza brak limitu."
#: ../../mod/admin.php:495
msgid "JPEG image quality"
msgstr "jakość obrazu JPEG"
#: ../../mod/admin.php:495
msgid ""
"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
"100, which is full quality."
msgstr ""
#: ../../mod/admin.php:497
msgid "Register policy"
msgstr "Zarejestruj polisę"
#: ../../mod/admin.php:498
msgid "Maximum Daily Registrations"
msgstr ""
#: ../../mod/admin.php:498
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:499
msgid "Register text"
msgstr "Zarejestruj tekst"
#: ../../mod/admin.php:499
msgid "Will be displayed prominently on the registration page."
msgstr ""
#: ../../mod/admin.php:500
msgid "Accounts abandoned after x days"
msgstr "Konto porzucone od x dni."
#: ../../mod/admin.php:500
msgid ""
"Will not waste system resources polling external sites for abandonded "
"accounts. Enter 0 for no time limit."
msgstr ""
#: ../../mod/admin.php:501
msgid "Allowed friend domains"
msgstr "Dozwolone domeny przyjaciół"
#: ../../mod/admin.php:501
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:502
msgid "Allowed email domains"
msgstr "Dozwolone domeny e-mailowe"
#: ../../mod/admin.php:502
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:503
msgid "Block public"
msgstr "Blokuj publicznie"
#: ../../mod/admin.php:503
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:504
msgid "Force publish"
msgstr "Wymuś publikację"
#: ../../mod/admin.php:504
msgid ""
"Check to force all profiles on this site to be listed in the site directory."
msgstr ""
#: ../../mod/admin.php:505
msgid "Global directory update URL"
msgstr ""
#: ../../mod/admin.php:505
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:506
msgid "Allow threaded items"
msgstr ""
#: ../../mod/admin.php:506
msgid "Allow infinite level threading for items on this site."
msgstr ""
#: ../../mod/admin.php:507
msgid "Private posts by default for new users"
msgstr ""
#: ../../mod/admin.php:507
msgid ""
"Set default post permissions for all new members to the default privacy "
"group rather than public."
msgstr ""
#: ../../mod/admin.php:509
msgid "Block multiple registrations"
msgstr ""
#: ../../mod/admin.php:509
msgid "Disallow users to register additional accounts for use as pages."
msgstr ""
#: ../../mod/admin.php:510
msgid "OpenID support"
msgstr "Wsparcie OpenID"
#: ../../mod/admin.php:510
msgid "OpenID support for registration and logins."
msgstr ""
#: ../../mod/admin.php:511
msgid "Fullname check"
msgstr "Sprawdzanie pełnej nazwy"
#: ../../mod/admin.php:511
msgid ""
"Force users to register with a space between firstname and lastname in Full "
"name, as an antispam measure"
msgstr ""
#: ../../mod/admin.php:512
msgid "UTF-8 Regular expressions"
msgstr ""
#: ../../mod/admin.php:512
msgid "Use PHP UTF8 regular expressions"
msgstr ""
#: ../../mod/admin.php:513
msgid "Show Community Page"
msgstr "Pokaż stronę społeczności"
#: ../../mod/admin.php:513
msgid ""
"Display a Community page showing all recent public postings on this site."
msgstr ""
#: ../../mod/admin.php:514
msgid "Enable OStatus support"
msgstr "Włącz wsparcie OStatus"
#: ../../mod/admin.php:514
msgid ""
"Provide built-in OStatus (identi.ca, status.net, etc.) compatibility. All "
"communications in OStatus are public, so privacy warnings will be "
"occasionally displayed."
msgstr ""
#: ../../mod/admin.php:515
msgid "Enable Diaspora support"
msgstr "Włączyć obsługę Diaspory"
#: ../../mod/admin.php:515
msgid "Provide built-in Diaspora network compatibility."
msgstr ""
#: ../../mod/admin.php:516
msgid "Only allow Friendica contacts"
msgstr "Dopuść tylko kontakty Friendrica"
#: ../../mod/admin.php:516
msgid ""
"All contacts must use Friendica protocols. All other built-in communication "
"protocols disabled."
msgstr ""
#: ../../mod/admin.php:517
msgid "Verify SSL"
msgstr "Weryfikacja SSL"
#: ../../mod/admin.php:517
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:518
msgid "Proxy user"
msgstr "Użytkownik proxy"
#: ../../mod/admin.php:519
msgid "Proxy URL"
msgstr "URL Proxy"
#: ../../mod/admin.php:520
msgid "Network timeout"
msgstr "Network timeout"
#: ../../mod/admin.php:520
msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
msgstr ""
#: ../../mod/admin.php:521
msgid "Delivery interval"
msgstr ""
#: ../../mod/admin.php:521
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:522
msgid "Poll interval"
msgstr ""
#: ../../mod/admin.php:522
msgid ""
"Delay background polling processes by this many seconds to reduce system "
"load. If 0, use delivery interval."
msgstr ""
#: ../../mod/admin.php:523
msgid "Maximum Load Average"
msgstr ""
#: ../../mod/admin.php:523
msgid ""
"Maximum system load before delivery and poll processes are deferred - "
"default 50."
msgstr ""
#: ../../mod/admin.php:525
msgid "Use MySQL full text engine"
msgstr ""
#: ../../mod/admin.php:525
msgid ""
"Activates the full text engine. Speeds up search - but can only search for "
"four and more characters."
msgstr ""
#: ../../mod/admin.php:526
msgid "Path to item cache"
msgstr ""
#: ../../mod/admin.php:527
msgid "Cache duration in seconds"
msgstr ""
#: ../../mod/admin.php:527
msgid ""
"How long should the cache files be hold? Default value is 86400 seconds (One"
" day)."
msgstr ""
#: ../../mod/admin.php:528
msgid "Path for lock file"
msgstr ""
#: ../../mod/admin.php:529
msgid "Temp path"
msgstr ""
#: ../../mod/admin.php:530
msgid "Base path to installation"
msgstr ""
#: ../../mod/admin.php:548
msgid "Update has been marked successful"
msgstr ""
#: ../../mod/admin.php:558
#, php-format
msgid "Executing %s failed. Check system logs."
msgstr ""
#: ../../mod/admin.php:561
#, php-format
msgid "Update %s was successfully applied."
msgstr ""
#: ../../mod/admin.php:565
#, php-format
msgid "Update %s did not return a status. Unknown if it succeeded."
msgstr ""
#: ../../mod/admin.php:568
#, php-format
msgid "Update function %s could not be found."
msgstr ""
#: ../../mod/admin.php:583
msgid "No failed updates."
msgstr "Brak błędów aktualizacji."
#: ../../mod/admin.php:587
msgid "Failed Updates"
msgstr "Błąd aktualizacji"
#: ../../mod/admin.php:588
msgid ""
"This does not include updates prior to 1139, which did not return a status."
msgstr ""
#: ../../mod/admin.php:589
msgid "Mark success (if update was manually applied)"
msgstr ""
#: ../../mod/admin.php:590
msgid "Attempt to execute this update step automatically"
msgstr ""
#: ../../mod/admin.php:615
#, php-format
msgid "%s user blocked/unblocked"
msgid_plural "%s users blocked/unblocked"
msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
#: ../../mod/admin.php:622
#, php-format
msgid "%s user deleted"
msgid_plural "%s users deleted"
msgstr[0] " %s użytkownik usunięty"
msgstr[1] " %s użytkownicy usunięci"
msgstr[2] " %s usuniętych użytkowników "
#: ../../mod/admin.php:661
#, php-format
msgid "User '%s' deleted"
msgstr "Użytkownik '%s' usunięty"
#: ../../mod/admin.php:669
#, php-format
msgid "User '%s' unblocked"
msgstr "Użytkownik '%s' odblokowany"
#: ../../mod/admin.php:669
#, php-format
msgid "User '%s' blocked"
msgstr "Użytkownik '%s' zablokowany"
#: ../../mod/admin.php:745
msgid "select all"
msgstr "Zaznacz wszystko"
#: ../../mod/admin.php:746
msgid "User registrations waiting for confirm"
msgstr "zarejestrowany użytkownik czeka na potwierdzenie"
#: ../../mod/admin.php:747
msgid "Request date"
msgstr "Data prośby"
#: ../../mod/admin.php:747 ../../mod/admin.php:757 ../../mod/settings.php:562
#: ../../mod/settings.php:588 ../../mod/crepair.php:148
msgid "Name"
msgstr "Imię"
#: ../../mod/admin.php:748
msgid "No registrations."
msgstr "brak rejestracji"
#: ../../mod/admin.php:749 ../../mod/notifications.php:161
#: ../../mod/notifications.php:208
msgid "Approve"
msgstr "Zatwierdź"
#: ../../mod/admin.php:750
msgid "Deny"
msgstr "Odmów"
#: ../../mod/admin.php:752 ../../mod/contacts.php:353
#: ../../mod/contacts.php:412
msgid "Block"
msgstr "Zablokuj"
#: ../../mod/admin.php:753 ../../mod/contacts.php:353
#: ../../mod/contacts.php:412
msgid "Unblock"
msgstr "Odblokuj"
#: ../../mod/admin.php:754
msgid "Site admin"
msgstr "Administracja stroną"
#: ../../mod/admin.php:757
msgid "Register date"
msgstr "Data rejestracji"
#: ../../mod/admin.php:757
msgid "Last login"
msgstr "Ostatnie logowanie"
#: ../../mod/admin.php:757
msgid "Last item"
msgstr "Ostatni element"
#: ../../mod/admin.php:757
msgid "Account"
msgstr "Konto"
#: ../../mod/admin.php:759
msgid ""
"Selected users will be deleted!\\n\\nEverything these users had posted on "
"this site will be permanently deleted!\\n\\nAre you sure?"
msgstr "Zaznaczeni użytkownicy zostaną usunięci!\\n\\nWszystko co zamieścili na tej stronie będzie trwale skasowane!\\n\\nJesteś pewien?"
#: ../../mod/admin.php:760
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 "Użytkownik {0} zostanie usunięty!\\n\\nWszystko co zamieścił na tej stronie będzie trwale skasowane!\\n\\nJesteś pewien?"
#: ../../mod/admin.php:801
#, php-format
msgid "Plugin %s disabled."
msgstr "Wtyczka %s wyłączona."
#: ../../mod/admin.php:805
#, php-format
msgid "Plugin %s enabled."
msgstr "Wtyczka %s właczona."
#: ../../mod/admin.php:815 ../../mod/admin.php:1018
msgid "Disable"
msgstr "Wyłącz"
#: ../../mod/admin.php:817 ../../mod/admin.php:1020
msgid "Enable"
msgstr "Zezwól"
#: ../../mod/admin.php:840 ../../mod/admin.php:1048
msgid "Toggle"
msgstr "Włącz"
#: ../../mod/admin.php:848 ../../mod/admin.php:1058
msgid "Author: "
msgstr "Autor: "
#: ../../mod/admin.php:849 ../../mod/admin.php:1059
msgid "Maintainer: "
msgstr ""
#: ../../mod/admin.php:978
msgid "No themes found."
msgstr "Nie znaleziono tematu."
#: ../../mod/admin.php:1040
msgid "Screenshot"
msgstr "Zrzut ekranu"
#: ../../mod/admin.php:1086
msgid "[Experimental]"
msgstr "[Eksperymentalne]"
#: ../../mod/admin.php:1087
msgid "[Unsupported]"
msgstr "[Niewspieralne]"
#: ../../mod/admin.php:1114
msgid "Log settings updated."
msgstr ""
#: ../../mod/admin.php:1170
msgid "Clear"
msgstr "Wyczyść"
#: ../../mod/admin.php:1176
msgid "Debugging"
msgstr "Naprawianie"
#: ../../mod/admin.php:1177
msgid "Log file"
msgstr "Plik logów"
#: ../../mod/admin.php:1177
msgid ""
"Must be writable by web server. Relative to your Friendica top-level "
"directory."
msgstr ""
#: ../../mod/admin.php:1178
msgid "Log level"
msgstr "Poziom logów"
#: ../../mod/admin.php:1227 ../../mod/contacts.php:409
msgid "Update now"
msgstr "Aktualizuj teraz"
#: ../../mod/admin.php:1228
msgid "Close"
msgstr "Zamknij"
#: ../../mod/admin.php:1234
msgid "FTP Host"
msgstr "Założyciel FTP"
#: ../../mod/admin.php:1235
msgid "FTP Path"
msgstr "Ścieżka FTP"
#: ../../mod/admin.php:1236
msgid "FTP User"
msgstr "Użytkownik FTP"
#: ../../mod/admin.php:1237
msgid "FTP Password"
msgstr "FTP Hasło"
#: ../../mod/item.php:105
msgid "Unable to locate original post."
msgstr "Nie można zlokalizować oryginalnej wiadomości."
@ -6567,8 +2773,15 @@ msgstr "Brak znajomych do wyświetlenia"
msgid "Remove term"
msgstr "Usuń wpis"
#: ../../mod/search.php:89 ../../mod/dfrn_request.php:761
#: ../../mod/directory.php:31 ../../mod/viewcontacts.php:17
#: ../../mod/photos.php:914 ../../mod/display.php:19
#: ../../mod/community.php:18
msgid "Public access denied."
msgstr "Publiczny dostęp zabroniony"
#: ../../mod/search.php:180 ../../mod/search.php:206
#: ../../mod/community.php:61 ../../mod/community.php:88
#: ../../mod/community.php:61 ../../mod/community.php:89
msgid "No results."
msgstr "Brak wyników."
@ -6651,6 +2864,10 @@ msgstr "Członkostwo na tej stronie możliwe tylko dzięki zaproszeniu."
msgid "Your invitation ID: "
msgstr "Twoje zaproszenia ID:"
#: ../../mod/register.php:261 ../../mod/admin.php:481
msgid "Registration"
msgstr "Rejestracja"
#: ../../mod/register.php:269
msgid "Your Full Name (e.g. Joe Smith): "
msgstr "Imię i nazwisko (np. Jan Kowalski):"
@ -6670,14 +2887,6 @@ msgstr "Wybierz login. Login musi zaczynać się literą. Adres twojego profilu
msgid "Choose a nickname: "
msgstr "Wybierz pseudonim:"
#: ../../mod/apps.php:4
msgid "Applications"
msgstr "Aplikacje"
#: ../../mod/apps.php:7
msgid "No installed applications."
msgstr "Brak zainstalowanych aplikacji."
#: ../../mod/regmod.php:63
msgid "Account approved."
msgstr "Konto zatwierdzone."
@ -6731,27 +2940,27 @@ msgstr ""
#: ../../mod/babel.php:39
msgid "bb2html: "
msgstr ""
msgstr "bb2html: "
#: ../../mod/babel.php:43
msgid "bb2html2bb: "
msgstr ""
msgstr "bb2html2bb: "
#: ../../mod/babel.php:47
msgid "bb2md: "
msgstr ""
msgstr "bb2md: "
#: ../../mod/babel.php:51
msgid "bb2md2html: "
msgstr ""
msgstr "bb2md2html: "
#: ../../mod/babel.php:55
msgid "bb2dia2bb: "
msgstr ""
msgstr "bb2dia2bb: "
#: ../../mod/babel.php:59
msgid "bb2md2html2bb: "
msgstr ""
msgstr "bb2md2html2bb: "
#: ../../mod/babel.php:69
msgid "Source input (Diaspora format): "
@ -6759,7 +2968,7 @@ msgstr ""
#: ../../mod/babel.php:74
msgid "diaspora2bb: "
msgstr ""
msgstr "diaspora2bb: "
#: ../../mod/common.php:42
msgid "Common Friends"
@ -6769,6 +2978,18 @@ msgstr "Wspólni znajomi"
msgid "No contacts in common."
msgstr ""
#: ../../mod/apps.php:7
msgid "You must be logged in to use addons. "
msgstr ""
#: ../../mod/apps.php:11
msgid "Applications"
msgstr "Aplikacje"
#: ../../mod/apps.php:14
msgid "No installed applications."
msgstr "Brak zainstalowanych aplikacji."
#: ../../mod/contacts.php:85 ../../mod/contacts.php:165
msgid "Could not access contact record."
msgstr "Nie można uzyskać dostępu do rejestru kontaktów."
@ -6861,6 +3082,16 @@ msgstr "Typ sieci: %s"
msgid "View all contacts"
msgstr "Zobacz wszystkie kontakty"
#: ../../mod/contacts.php:353 ../../mod/contacts.php:412
#: ../../mod/admin.php:760
msgid "Unblock"
msgstr "Odblokuj"
#: ../../mod/contacts.php:353 ../../mod/contacts.php:412
#: ../../mod/admin.php:759
msgid "Block"
msgstr "Zablokuj"
#: ../../mod/contacts.php:356
msgid "Toggle Blocked status"
msgstr ""
@ -6954,6 +3185,10 @@ msgstr "Ostatnia aktualizacja:"
msgid "Update public posts"
msgstr "Zaktualizuj publiczne posty"
#: ../../mod/contacts.php:409 ../../mod/admin.php:1235
msgid "Update now"
msgstr "Aktualizuj teraz"
#: ../../mod/contacts.php:416
msgid "Currently blocked"
msgstr "Obecnie zablokowany"
@ -7018,7 +3253,7 @@ msgstr "Pokaż tylko ignorowane kontakty"
#: ../../mod/contacts.php:503
msgid "Archived"
msgstr ""
msgstr "Zarchiwizowane"
#: ../../mod/contacts.php:506
msgid "Only show archived contacts"
@ -7048,6 +3283,10 @@ msgstr "jesteś fanem"
msgid "Search your contacts"
msgstr "Wyszukaj w kontaktach"
#: ../../mod/contacts.php:612 ../../mod/directory.php:59
msgid "Finding: "
msgstr "Znalezione:"
#: ../../mod/settings.php:23 ../../mod/photos.php:79
msgid "everybody"
msgstr "wszyscy"
@ -7070,7 +3309,7 @@ msgstr "Ustawienia wtyczek"
#: ../../mod/settings.php:56 ../../mod/uexport.php:30
msgid "Connected apps"
msgstr ""
msgstr "Powiązane aplikacje"
#: ../../mod/settings.php:61 ../../mod/uexport.php:35 ../../mod/uexport.php:80
msgid "Export personal data"
@ -7140,11 +3379,28 @@ msgstr ""
msgid "Private forum has no privacy permissions and no default privacy group."
msgstr ""
#: ../../mod/settings.php:488
msgid "Settings updated."
msgstr "Zaktualizowano ustawienia."
#: ../../mod/settings.php:559 ../../mod/settings.php:585
#: ../../mod/settings.php:621
msgid "Add application"
msgstr "Dodaj aplikacje"
#: ../../mod/settings.php:562 ../../mod/settings.php:588
#: ../../mod/crepair.php:148 ../../mod/admin.php:754 ../../mod/admin.php:765
msgid "Name"
msgstr "Imię"
#: ../../mod/settings.php:563 ../../mod/settings.php:589
msgid "Consumer Key"
msgstr "Klucz konsumenta"
#: ../../mod/settings.php:564 ../../mod/settings.php:590
msgid "Consumer Secret"
msgstr "Sekret konsumenta"
#: ../../mod/settings.php:565 ../../mod/settings.php:591
msgid "Redirect"
msgstr "Przekierowanie"
@ -7162,7 +3418,7 @@ msgid "Connected Apps"
msgstr "Powiązane aplikacje"
#: ../../mod/settings.php:622 ../../mod/editpost.php:109
#: ../../mod/content.php:751 ../../object/Item.php:110
#: ../../mod/content.php:751 ../../object/Item.php:117
msgid "Edit"
msgstr "Edytuj"
@ -7182,6 +3438,10 @@ msgstr "Odwołaj upoważnienie"
msgid "No Plugin settings configured"
msgstr "Ustawienia wtyczki nieskonfigurowane"
#: ../../mod/settings.php:646
msgid "Plugin Settings"
msgstr "Ustawienia wtyczki"
#: ../../mod/settings.php:660
msgid "Off"
msgstr "Wyłącz"
@ -7245,6 +3505,10 @@ msgstr "Port IMAP:"
msgid "Security:"
msgstr "Ochrona:"
#: ../../mod/settings.php:732 ../../mod/settings.php:737
msgid "None"
msgstr "Brak"
#: ../../mod/settings.php:733
msgid "Email login name:"
msgstr "Login emaila:"
@ -7277,6 +3541,10 @@ msgstr "Przenieś do folderu"
msgid "Move to folder:"
msgstr "Przenieś do folderu:"
#: ../../mod/settings.php:769 ../../mod/admin.php:432
msgid "No special theme for mobile devices"
msgstr ""
#: ../../mod/settings.php:809
msgid "Display Settings"
msgstr "Wyświetl ustawienia"
@ -7287,7 +3555,7 @@ msgstr "Wyświetl motyw:"
#: ../../mod/settings.php:816
msgid "Mobile Theme:"
msgstr ""
msgstr "Mobilny motyw:"
#: ../../mod/settings.php:817
msgid "Update browser every xx seconds"
@ -7590,7 +3858,7 @@ msgstr ""
#: ../../mod/share.php:44
msgid "link"
msgstr ""
msgstr "Link"
#: ../../mod/crepair.php:102
msgid "Contact settings applied."
@ -7680,6 +3948,10 @@ msgstr ""
msgid "Potential Delegates"
msgstr ""
#: ../../mod/delegate.php:130 ../../mod/tagrm.php:93
msgid "Remove"
msgstr "Usuń"
#: ../../mod/delegate.php:131
msgid "Add"
msgstr "Dodaj"
@ -7792,7 +4064,7 @@ msgstr ""
#: ../../mod/dfrn_poll.php:101 ../../mod/dfrn_poll.php:534
#, php-format
msgid "%1$s welcomes %2$s"
msgstr ""
msgstr "%1$s witamy %2$s"
#: ../../mod/dfrn_request.php:93
msgid "This introduction has already been accepted."
@ -7968,9 +4240,29 @@ msgstr "Wyślij zgłoszenie"
msgid "%1$s is following %2$s's %3$s"
msgstr ""
#: ../../mod/directory.php:49 ../../view/theme/diabook/theme.php:518
msgid "Global Directory"
msgstr "Globalne Położenie"
#: ../../mod/directory.php:57
msgid "Find on this site"
msgstr "Znajdź na tej stronie"
#: ../../mod/directory.php:60
msgid "Site Directory"
msgstr "Katalog Strony"
#: ../../mod/directory.php:114
msgid "Gender: "
msgstr "Płeć: "
#: ../../mod/directory.php:187
msgid "No entries (some entries may be hidden)."
msgstr "Brak odwiedzin (niektóre odwiedziny mogą być ukryte)."
#: ../../mod/suggest.php:27
msgid "Do you really want to delete this suggestion?"
msgstr ""
msgstr "Czy na pewno chcesz usunąć te sugestie ?"
#: ../../mod/suggest.php:72
msgid ""
@ -7990,13 +4282,764 @@ msgstr "Szukaj osób"
msgid "No matches"
msgstr "brak dopasowań"
#: ../../mod/display.php:99 ../../mod/profile.php:155
msgid "Access to this profile has been restricted."
msgstr "Ograniczony dostęp do tego konta"
#: ../../mod/admin.php:55
msgid "Theme settings updated."
msgstr "Ustawienia szablonu zmienione."
#: ../../mod/display.php:177
msgid "Item has been removed."
msgstr "Przedmiot został usunięty"
#: ../../mod/admin.php:96 ../../mod/admin.php:479
msgid "Site"
msgstr "Strona"
#: ../../mod/admin.php:97 ../../mod/admin.php:750 ../../mod/admin.php:764
msgid "Users"
msgstr "Użytkownicy"
#: ../../mod/admin.php:98 ../../mod/admin.php:847 ../../mod/admin.php:889
msgid "Plugins"
msgstr "Wtyczki"
#: ../../mod/admin.php:99 ../../mod/admin.php:1055 ../../mod/admin.php:1089
msgid "Themes"
msgstr "Temat"
#: ../../mod/admin.php:100
msgid "DB updates"
msgstr "Aktualizacje DB"
#: ../../mod/admin.php:115 ../../mod/admin.php:122 ../../mod/admin.php:1176
msgid "Logs"
msgstr "Logi"
#: ../../mod/admin.php:121
msgid "Plugin Features"
msgstr "Polecane wtyczki"
#: ../../mod/admin.php:123
msgid "User registrations waiting for confirmation"
msgstr "Rejestracje użytkownika czekają na potwierdzenie."
#: ../../mod/admin.php:182 ../../mod/admin.php:721
msgid "Normal Account"
msgstr "Konto normalne"
#: ../../mod/admin.php:183 ../../mod/admin.php:722
msgid "Soapbox Account"
msgstr "Konto Soapbox"
#: ../../mod/admin.php:184 ../../mod/admin.php:723
msgid "Community/Celebrity Account"
msgstr "Konto społeczności/gwiazdy"
#: ../../mod/admin.php:185 ../../mod/admin.php:724
msgid "Automatic Friend Account"
msgstr "Automatyczny przyjaciel konta"
#: ../../mod/admin.php:186
msgid "Blog Account"
msgstr "Konto Bloga"
#: ../../mod/admin.php:187
msgid "Private Forum"
msgstr "Forum Prywatne"
#: ../../mod/admin.php:206
msgid "Message queues"
msgstr ""
#: ../../mod/admin.php:211 ../../mod/admin.php:478 ../../mod/admin.php:749
#: ../../mod/admin.php:846 ../../mod/admin.php:888 ../../mod/admin.php:1054
#: ../../mod/admin.php:1088 ../../mod/admin.php:1175
msgid "Administration"
msgstr "Administracja"
#: ../../mod/admin.php:212
msgid "Summary"
msgstr "Skrót"
#: ../../mod/admin.php:214
msgid "Registered users"
msgstr "Zarejestrowani użytkownicy"
#: ../../mod/admin.php:216
msgid "Pending registrations"
msgstr "Rejestracje w toku."
#: ../../mod/admin.php:217
msgid "Version"
msgstr "Wersja"
#: ../../mod/admin.php:219
msgid "Active plugins"
msgstr "Aktywne pluginy"
#: ../../mod/admin.php:403
msgid "Site settings updated."
msgstr "Ustawienia strony zaktualizowane"
#: ../../mod/admin.php:449
msgid "Multi user instance"
msgstr ""
#: ../../mod/admin.php:465
msgid "Closed"
msgstr "Zamknięty"
#: ../../mod/admin.php:466
msgid "Requires approval"
msgstr "Wymagane zatwierdzenie."
#: ../../mod/admin.php:467
msgid "Open"
msgstr "Otwórz"
#: ../../mod/admin.php:471
msgid "No SSL policy, links will track page SSL state"
msgstr ""
#: ../../mod/admin.php:472
msgid "Force all links to use SSL"
msgstr ""
#: ../../mod/admin.php:473
msgid "Self-signed certificate, use SSL for local links only (discouraged)"
msgstr ""
#: ../../mod/admin.php:482
msgid "File upload"
msgstr "Plik załadowano"
#: ../../mod/admin.php:483
msgid "Policies"
msgstr "zasady"
#: ../../mod/admin.php:484
msgid "Advanced"
msgstr "Zaawansowany"
#: ../../mod/admin.php:485
msgid "Performance"
msgstr ""
#: ../../mod/admin.php:489
msgid "Site name"
msgstr "Nazwa strony"
#: ../../mod/admin.php:490
msgid "Banner/Logo"
msgstr "Logo"
#: ../../mod/admin.php:491
msgid "System language"
msgstr "Język systemu"
#: ../../mod/admin.php:492
msgid "System theme"
msgstr "Motyw systemowy"
#: ../../mod/admin.php:492
msgid ""
"Default system theme - may be over-ridden by user profiles - <a href='#' "
"id='cnftheme'>change theme settings</a>"
msgstr ""
#: ../../mod/admin.php:493
msgid "Mobile system theme"
msgstr ""
#: ../../mod/admin.php:493
msgid "Theme for mobile devices"
msgstr "Szablon dla mobilnych urządzeń"
#: ../../mod/admin.php:494
msgid "SSL link policy"
msgstr ""
#: ../../mod/admin.php:494
msgid "Determines whether generated links should be forced to use SSL"
msgstr ""
#: ../../mod/admin.php:495
msgid "'Share' element"
msgstr "'Udostępnij' element"
#: ../../mod/admin.php:495
msgid "Activates the bbcode element 'share' for repeating items."
msgstr ""
#: ../../mod/admin.php:496
msgid "Hide help entry from navigation menu"
msgstr ""
#: ../../mod/admin.php:496
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:497
msgid "Single user instance"
msgstr ""
#: ../../mod/admin.php:497
msgid "Make this instance multi-user or single-user for the named user"
msgstr ""
#: ../../mod/admin.php:498
msgid "Maximum image size"
msgstr "Maksymalny rozmiar zdjęcia"
#: ../../mod/admin.php:498
msgid ""
"Maximum size in bytes of uploaded images. Default is 0, which means no "
"limits."
msgstr ""
#: ../../mod/admin.php:499
msgid "Maximum image length"
msgstr "Maksymalna długość obrazu"
#: ../../mod/admin.php:499
msgid ""
"Maximum length in pixels of the longest side of uploaded images. Default is "
"-1, which means no limits."
msgstr "Maksymalna długość najdłuższej strony przesyłanego obrazu w pikselach.\nDomyślnie jest to -1, co oznacza brak limitu."
#: ../../mod/admin.php:500
msgid "JPEG image quality"
msgstr "jakość obrazu JPEG"
#: ../../mod/admin.php:500
msgid ""
"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
"100, which is full quality."
msgstr ""
#: ../../mod/admin.php:502
msgid "Register policy"
msgstr "Zarejestruj polisę"
#: ../../mod/admin.php:503
msgid "Maximum Daily Registrations"
msgstr "Maksymalnie dziennych rejestracji"
#: ../../mod/admin.php:503
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:504
msgid "Register text"
msgstr "Zarejestruj tekst"
#: ../../mod/admin.php:504
msgid "Will be displayed prominently on the registration page."
msgstr ""
#: ../../mod/admin.php:505
msgid "Accounts abandoned after x days"
msgstr "Konto porzucone od x dni."
#: ../../mod/admin.php:505
msgid ""
"Will not waste system resources polling external sites for abandonded "
"accounts. Enter 0 for no time limit."
msgstr ""
#: ../../mod/admin.php:506
msgid "Allowed friend domains"
msgstr "Dozwolone domeny przyjaciół"
#: ../../mod/admin.php:506
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:507
msgid "Allowed email domains"
msgstr "Dozwolone domeny e-mailowe"
#: ../../mod/admin.php:507
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:508
msgid "Block public"
msgstr "Blokuj publicznie"
#: ../../mod/admin.php:508
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:509
msgid "Force publish"
msgstr "Wymuś publikację"
#: ../../mod/admin.php:509
msgid ""
"Check to force all profiles on this site to be listed in the site directory."
msgstr ""
#: ../../mod/admin.php:510
msgid "Global directory update URL"
msgstr ""
#: ../../mod/admin.php:510
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:511
msgid "Allow threaded items"
msgstr ""
#: ../../mod/admin.php:511
msgid "Allow infinite level threading for items on this site."
msgstr ""
#: ../../mod/admin.php:512
msgid "Private posts by default for new users"
msgstr ""
#: ../../mod/admin.php:512
msgid ""
"Set default post permissions for all new members to the default privacy "
"group rather than public."
msgstr ""
#: ../../mod/admin.php:513
msgid "Don't include post content in email notifications"
msgstr ""
#: ../../mod/admin.php:513
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:514
msgid "Disallow public access to addons listed in the apps menu."
msgstr ""
#: ../../mod/admin.php:514
msgid ""
"Checking this box will restrict addons listed in the apps menu to members "
"only."
msgstr ""
#: ../../mod/admin.php:515
msgid "Don't embed private images in posts"
msgstr ""
#: ../../mod/admin.php:515
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:517
msgid "Block multiple registrations"
msgstr ""
#: ../../mod/admin.php:517
msgid "Disallow users to register additional accounts for use as pages."
msgstr ""
#: ../../mod/admin.php:518
msgid "OpenID support"
msgstr "Wsparcie OpenID"
#: ../../mod/admin.php:518
msgid "OpenID support for registration and logins."
msgstr ""
#: ../../mod/admin.php:519
msgid "Fullname check"
msgstr "Sprawdzanie pełnej nazwy"
#: ../../mod/admin.php:519
msgid ""
"Force users to register with a space between firstname and lastname in Full "
"name, as an antispam measure"
msgstr ""
#: ../../mod/admin.php:520
msgid "UTF-8 Regular expressions"
msgstr ""
#: ../../mod/admin.php:520
msgid "Use PHP UTF8 regular expressions"
msgstr ""
#: ../../mod/admin.php:521
msgid "Show Community Page"
msgstr "Pokaż stronę społeczności"
#: ../../mod/admin.php:521
msgid ""
"Display a Community page showing all recent public postings on this site."
msgstr ""
#: ../../mod/admin.php:522
msgid "Enable OStatus support"
msgstr "Włącz wsparcie OStatus"
#: ../../mod/admin.php:522
msgid ""
"Provide built-in OStatus (identi.ca, status.net, etc.) compatibility. All "
"communications in OStatus are public, so privacy warnings will be "
"occasionally displayed."
msgstr ""
#: ../../mod/admin.php:523
msgid "Enable Diaspora support"
msgstr "Włączyć obsługę Diaspory"
#: ../../mod/admin.php:523
msgid "Provide built-in Diaspora network compatibility."
msgstr ""
#: ../../mod/admin.php:524
msgid "Only allow Friendica contacts"
msgstr "Dopuść tylko kontakty Friendrica"
#: ../../mod/admin.php:524
msgid ""
"All contacts must use Friendica protocols. All other built-in communication "
"protocols disabled."
msgstr ""
#: ../../mod/admin.php:525
msgid "Verify SSL"
msgstr "Weryfikacja SSL"
#: ../../mod/admin.php:525
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:526
msgid "Proxy user"
msgstr "Użytkownik proxy"
#: ../../mod/admin.php:527
msgid "Proxy URL"
msgstr "URL Proxy"
#: ../../mod/admin.php:528
msgid "Network timeout"
msgstr "Network timeout"
#: ../../mod/admin.php:528
msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
msgstr ""
#: ../../mod/admin.php:529
msgid "Delivery interval"
msgstr ""
#: ../../mod/admin.php:529
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:530
msgid "Poll interval"
msgstr ""
#: ../../mod/admin.php:530
msgid ""
"Delay background polling processes by this many seconds to reduce system "
"load. If 0, use delivery interval."
msgstr ""
#: ../../mod/admin.php:531
msgid "Maximum Load Average"
msgstr ""
#: ../../mod/admin.php:531
msgid ""
"Maximum system load before delivery and poll processes are deferred - "
"default 50."
msgstr ""
#: ../../mod/admin.php:533
msgid "Use MySQL full text engine"
msgstr ""
#: ../../mod/admin.php:533
msgid ""
"Activates the full text engine. Speeds up search - but can only search for "
"four and more characters."
msgstr ""
#: ../../mod/admin.php:534
msgid "Path to item cache"
msgstr ""
#: ../../mod/admin.php:535
msgid "Cache duration in seconds"
msgstr ""
#: ../../mod/admin.php:535
msgid ""
"How long should the cache files be hold? Default value is 86400 seconds (One"
" day)."
msgstr ""
#: ../../mod/admin.php:536
msgid "Path for lock file"
msgstr ""
#: ../../mod/admin.php:537
msgid "Temp path"
msgstr ""
#: ../../mod/admin.php:538
msgid "Base path to installation"
msgstr ""
#: ../../mod/admin.php:555
msgid "Update has been marked successful"
msgstr ""
#: ../../mod/admin.php:565
#, php-format
msgid "Executing %s failed. Check system logs."
msgstr ""
#: ../../mod/admin.php:568
#, php-format
msgid "Update %s was successfully applied."
msgstr ""
#: ../../mod/admin.php:572
#, php-format
msgid "Update %s did not return a status. Unknown if it succeeded."
msgstr ""
#: ../../mod/admin.php:575
#, php-format
msgid "Update function %s could not be found."
msgstr ""
#: ../../mod/admin.php:590
msgid "No failed updates."
msgstr "Brak błędów aktualizacji."
#: ../../mod/admin.php:594
msgid "Failed Updates"
msgstr "Błąd aktualizacji"
#: ../../mod/admin.php:595
msgid ""
"This does not include updates prior to 1139, which did not return a status."
msgstr ""
#: ../../mod/admin.php:596
msgid "Mark success (if update was manually applied)"
msgstr ""
#: ../../mod/admin.php:597
msgid "Attempt to execute this update step automatically"
msgstr ""
#: ../../mod/admin.php:622
#, php-format
msgid "%s user blocked/unblocked"
msgid_plural "%s users blocked/unblocked"
msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
#: ../../mod/admin.php:629
#, php-format
msgid "%s user deleted"
msgid_plural "%s users deleted"
msgstr[0] " %s użytkownik usunięty"
msgstr[1] " %s użytkownicy usunięci"
msgstr[2] " %s usuniętych użytkowników "
#: ../../mod/admin.php:668
#, php-format
msgid "User '%s' deleted"
msgstr "Użytkownik '%s' usunięty"
#: ../../mod/admin.php:676
#, php-format
msgid "User '%s' unblocked"
msgstr "Użytkownik '%s' odblokowany"
#: ../../mod/admin.php:676
#, php-format
msgid "User '%s' blocked"
msgstr "Użytkownik '%s' zablokowany"
#: ../../mod/admin.php:752
msgid "select all"
msgstr "Zaznacz wszystko"
#: ../../mod/admin.php:753
msgid "User registrations waiting for confirm"
msgstr "zarejestrowany użytkownik czeka na potwierdzenie"
#: ../../mod/admin.php:754
msgid "Request date"
msgstr "Data prośby"
#: ../../mod/admin.php:755
msgid "No registrations."
msgstr "brak rejestracji"
#: ../../mod/admin.php:756 ../../mod/notifications.php:161
#: ../../mod/notifications.php:208
msgid "Approve"
msgstr "Zatwierdź"
#: ../../mod/admin.php:757
msgid "Deny"
msgstr "Odmów"
#: ../../mod/admin.php:761
msgid "Site admin"
msgstr "Administracja stroną"
#: ../../mod/admin.php:762
msgid "Account expired"
msgstr ""
#: ../../mod/admin.php:765
msgid "Register date"
msgstr "Data rejestracji"
#: ../../mod/admin.php:765
msgid "Last login"
msgstr "Ostatnie logowanie"
#: ../../mod/admin.php:765
msgid "Last item"
msgstr "Ostatni element"
#: ../../mod/admin.php:765
msgid "Account"
msgstr "Konto"
#: ../../mod/admin.php:767
msgid ""
"Selected users will be deleted!\\n\\nEverything these users had posted on "
"this site will be permanently deleted!\\n\\nAre you sure?"
msgstr "Zaznaczeni użytkownicy zostaną usunięci!\\n\\nWszystko co zamieścili na tej stronie będzie trwale skasowane!\\n\\nJesteś pewien?"
#: ../../mod/admin.php:768
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 "Użytkownik {0} zostanie usunięty!\\n\\nWszystko co zamieścił na tej stronie będzie trwale skasowane!\\n\\nJesteś pewien?"
#: ../../mod/admin.php:809
#, php-format
msgid "Plugin %s disabled."
msgstr "Wtyczka %s wyłączona."
#: ../../mod/admin.php:813
#, php-format
msgid "Plugin %s enabled."
msgstr "Wtyczka %s właczona."
#: ../../mod/admin.php:823 ../../mod/admin.php:1026
msgid "Disable"
msgstr "Wyłącz"
#: ../../mod/admin.php:825 ../../mod/admin.php:1028
msgid "Enable"
msgstr "Zezwól"
#: ../../mod/admin.php:848 ../../mod/admin.php:1056
msgid "Toggle"
msgstr "Włącz"
#: ../../mod/admin.php:856 ../../mod/admin.php:1066
msgid "Author: "
msgstr "Autor: "
#: ../../mod/admin.php:857 ../../mod/admin.php:1067
msgid "Maintainer: "
msgstr ""
#: ../../mod/admin.php:986
msgid "No themes found."
msgstr "Nie znaleziono tematu."
#: ../../mod/admin.php:1048
msgid "Screenshot"
msgstr "Zrzut ekranu"
#: ../../mod/admin.php:1094
msgid "[Experimental]"
msgstr "[Eksperymentalne]"
#: ../../mod/admin.php:1095
msgid "[Unsupported]"
msgstr "[Niewspieralne]"
#: ../../mod/admin.php:1122
msgid "Log settings updated."
msgstr ""
#: ../../mod/admin.php:1178
msgid "Clear"
msgstr "Wyczyść"
#: ../../mod/admin.php:1184
msgid "Debugging"
msgstr "Naprawianie"
#: ../../mod/admin.php:1185
msgid "Log file"
msgstr "Plik logów"
#: ../../mod/admin.php:1185
msgid ""
"Must be writable by web server. Relative to your Friendica top-level "
"directory."
msgstr ""
#: ../../mod/admin.php:1186
msgid "Log level"
msgstr "Poziom logów"
#: ../../mod/admin.php:1236
msgid "Close"
msgstr "Zamknij"
#: ../../mod/admin.php:1242
msgid "FTP Host"
msgstr "Założyciel FTP"
#: ../../mod/admin.php:1243
msgid "FTP Path"
msgstr "Ścieżka FTP"
#: ../../mod/admin.php:1244
msgid "FTP User"
msgstr "Użytkownik FTP"
#: ../../mod/admin.php:1245
msgid "FTP Password"
msgstr "FTP Hasło"
#: ../../mod/tagrm.php:41
msgid "Tag removed"
@ -8034,6 +5077,14 @@ msgstr "Edytuj wydarzenie"
msgid "Create New Event"
msgstr "Stwórz nowe wydarzenie"
#: ../../mod/events.php:372
msgid "Previous"
msgstr "Poprzedni"
#: ../../mod/events.php:373 ../../mod/install.php:207
msgid "Next"
msgstr "Następny"
#: ../../mod/events.php:446
msgid "hour:minute"
msgstr "godzina:minuta"
@ -8095,7 +5146,7 @@ msgstr ""
#: ../../mod/uexport.php:73
msgid "Export all"
msgstr ""
msgstr "Eksportuj wszystko"
#: ../../mod/uexport.php:73
msgid ""
@ -8110,7 +5161,7 @@ msgstr "- wybierz -"
#: ../../mod/uimport.php:64
msgid "Import"
msgstr ""
msgstr "Import"
#: ../../mod/uimport.php:66
msgid "Move account"
@ -8246,11 +5297,11 @@ msgstr "Brak profilu"
msgid "Help:"
msgstr "Pomoc:"
#: ../../mod/help.php:90 ../../index.php:226
#: ../../mod/help.php:90 ../../index.php:231
msgid "Not Found"
msgstr "Nie znaleziono"
#: ../../mod/help.php:93 ../../index.php:229
#: ../../mod/help.php:93 ../../index.php:234
msgid "Page not found."
msgstr "Strona nie znaleziona."
@ -8258,6 +5309,11 @@ msgstr "Strona nie znaleziona."
msgid "No contacts."
msgstr "brak kontaktów"
#: ../../mod/home.php:34
#, php-format
msgid "Welcome to %s"
msgstr "Witamy w %s"
#: ../../mod/viewsrc.php:7
msgid "Access denied."
msgstr "Brak dostępu"
@ -8271,289 +5327,6 @@ msgstr "Plik przekracza dozwolony rozmiar %d"
msgid "File upload failed."
msgstr "Przesyłanie pliku nie powiodło się."
#: ../../mod/install.php:117
msgid "Friendica Social Communications Server - Setup"
msgstr ""
#: ../../mod/install.php:123
msgid "Could not connect to database."
msgstr "Nie można nawiązać połączenia z bazą danych"
#: ../../mod/install.php:127
msgid "Could not create table."
msgstr "Nie mogę stworzyć tabeli."
#: ../../mod/install.php:133
msgid "Your Friendica site database has been installed."
msgstr ""
#: ../../mod/install.php:138
msgid ""
"You may need to import the file \"database.sql\" manually using phpmyadmin "
"or mysql."
msgstr "Może być konieczne zaimportowanie pliku \"database.sql\" ręcznie, używając phpmyadmin lub mysql."
#: ../../mod/install.php:139 ../../mod/install.php:206
#: ../../mod/install.php:506
msgid "Please see the file \"INSTALL.txt\"."
msgstr "Proszę przejrzeć plik \"INSTALL.txt\"."
#: ../../mod/install.php:203
msgid "System check"
msgstr "Sprawdzanie systemu"
#: ../../mod/install.php:208
msgid "Check again"
msgstr "Sprawdź ponownie"
#: ../../mod/install.php:227
msgid "Database connection"
msgstr "Połączenie z bazą danych"
#: ../../mod/install.php:228
msgid ""
"In order to install Friendica we need to know how to connect to your "
"database."
msgstr "W celu zainstalowania Friendica musimy wiedzieć jak połączyć się z twoją bazą danych."
#: ../../mod/install.php:229
msgid ""
"Please contact your hosting provider or site administrator if you have "
"questions about these settings."
msgstr "Proszę skontaktuj się ze swoim dostawcą usług hostingowych bądź administratorem strony jeśli masz pytania co do tych ustawień ."
#: ../../mod/install.php:230
msgid ""
"The database you specify below should already exist. If it does not, please "
"create it before continuing."
msgstr "Wymieniona przez Ciebie baza danych powinna już istnieć. Jeżeli nie, utwórz ją przed kontynuacją."
#: ../../mod/install.php:234
msgid "Database Server Name"
msgstr "Baza danych - Nazwa serwera"
#: ../../mod/install.php:235
msgid "Database Login Name"
msgstr "Baza danych - Nazwa loginu"
#: ../../mod/install.php:236
msgid "Database Login Password"
msgstr "Baza danych - Hasło loginu"
#: ../../mod/install.php:237
msgid "Database Name"
msgstr "Baza danych - Nazwa"
#: ../../mod/install.php:238 ../../mod/install.php:277
msgid "Site administrator email address"
msgstr "Adres e-mail administratora strony"
#: ../../mod/install.php:238 ../../mod/install.php:277
msgid ""
"Your account email address must match this in order to use the web admin "
"panel."
msgstr ""
#: ../../mod/install.php:242 ../../mod/install.php:280
msgid "Please select a default timezone for your website"
msgstr "Proszę wybrać domyślną strefę czasową dla swojej strony"
#: ../../mod/install.php:267
msgid "Site settings"
msgstr "Ustawienia strony"
#: ../../mod/install.php:320
msgid "Could not find a command line version of PHP in the web server PATH."
msgstr "Nie można znaleźć wersji PHP komendy w serwerze PATH"
#: ../../mod/install.php:321
msgid ""
"If you don't have a command line version of PHP installed on server, you "
"will not be able to run background polling via cron. See <a "
"href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>"
msgstr ""
#: ../../mod/install.php:325
msgid "PHP executable path"
msgstr ""
#: ../../mod/install.php:325
msgid ""
"Enter full path to php executable. You can leave this blank to continue the "
"installation."
msgstr ""
#: ../../mod/install.php:330
msgid "Command line PHP"
msgstr "Linia komend PHP"
#: ../../mod/install.php:339
msgid ""
"The command line version of PHP on your system does not have "
"\"register_argc_argv\" enabled."
msgstr "Wersja linii poleceń PHP w twoim systemie nie ma aktywowanego \"register_argc_argv\"."
#: ../../mod/install.php:340
msgid "This is required for message delivery to work."
msgstr "To jest wymagane do dostarczenia wiadomości do pracy."
#: ../../mod/install.php:342
msgid "PHP register_argc_argv"
msgstr ""
#: ../../mod/install.php:363
msgid ""
"Error: the \"openssl_pkey_new\" function on this system is not able to "
"generate encryption keys"
msgstr "Błąd : funkcja systemu \"openssl_pkey_new\" nie jest w stanie wygenerować klucza szyfrującego ."
#: ../../mod/install.php:364
msgid ""
"If running under Windows, please see "
"\"http://www.php.net/manual/en/openssl.installation.php\"."
msgstr "Jeśli korzystasz z Windowsa, proszę odwiedzić \"http://www.php.net/manual/en/openssl.installation.php\"."
#: ../../mod/install.php:366
msgid "Generate encryption keys"
msgstr "Generuj klucz kodowania"
#: ../../mod/install.php:373
msgid "libCurl PHP module"
msgstr "Moduł libCurl PHP"
#: ../../mod/install.php:374
msgid "GD graphics PHP module"
msgstr "Moduł PHP-GD"
#: ../../mod/install.php:375
msgid "OpenSSL PHP module"
msgstr ""
#: ../../mod/install.php:376
msgid "mysqli PHP module"
msgstr "Moduł mysql PHP"
#: ../../mod/install.php:377
msgid "mb_string PHP module"
msgstr "Moduł mb_string PHP"
#: ../../mod/install.php:382 ../../mod/install.php:384
msgid "Apache mod_rewrite module"
msgstr ""
#: ../../mod/install.php:382
msgid ""
"Error: Apache webserver mod-rewrite module is required but not installed."
msgstr "Błąd: moduł Apache webserver mod-rewrite jest potrzebny, jednakże nie jest zainstalowany."
#: ../../mod/install.php:390
msgid "Error: libCURL PHP module required but not installed."
msgstr "Błąd: libCURL PHP wymagany moduł, lecz nie zainstalowany."
#: ../../mod/install.php:394
msgid ""
"Error: GD graphics PHP module with JPEG support required but not installed."
msgstr "Błąd: moduł graficzny GD z PHP potrzebuje wsparcia technicznego JPEG, jednakże on nie jest zainstalowany."
#: ../../mod/install.php:398
msgid "Error: openssl PHP module required but not installed."
msgstr "Błąd: openssl PHP wymagany moduł, lecz nie zainstalowany."
#: ../../mod/install.php:402
msgid "Error: mysqli PHP module required but not installed."
msgstr "Błąd: mysqli PHP wymagany moduł, lecz nie zainstalowany."
#: ../../mod/install.php:406
msgid "Error: mb_string PHP module required but not installed."
msgstr "Błąd: moduł PHP mb_string jest wymagany ale nie jest zainstalowany"
#: ../../mod/install.php:423
msgid ""
"The web installer needs to be able to create a file called \".htconfig.php\""
" in the top folder of your web server and it is unable to do so."
msgstr "Instalator WWW musi być w stanie utworzyć plik o nazwie \". Htconfig.php\" i nie jest w stanie tego zrobić."
#: ../../mod/install.php:424
msgid ""
"This is most often a permission setting, as the web server may not be able "
"to write files in your folder - even if you can."
msgstr ""
#: ../../mod/install.php:425
msgid ""
"At the end of this procedure, we will give you a text to save in a file "
"named .htconfig.php in your Friendica top folder."
msgstr ""
#: ../../mod/install.php:426
msgid ""
"You can alternatively skip this procedure and perform a manual installation."
" Please see the file \"INSTALL.txt\" for instructions."
msgstr ""
#: ../../mod/install.php:429
msgid ".htconfig.php is writable"
msgstr ".htconfig.php jest zapisywalny"
#: ../../mod/install.php:439
msgid ""
"Friendica uses the Smarty3 template engine to render its web views. Smarty3 "
"compiles templates to PHP to speed up rendering."
msgstr ""
#: ../../mod/install.php:440
msgid ""
"In order to store these compiled templates, the web server needs to have "
"write access to the directory view/smarty3/ under the Friendica top level "
"folder."
msgstr ""
#: ../../mod/install.php:441
msgid ""
"Please ensure that the user that your web server runs as (e.g. www-data) has"
" write access to this folder."
msgstr ""
#: ../../mod/install.php:442
msgid ""
"Note: as a security measure, you should give the web server write access to "
"view/smarty3/ only--not the template files (.tpl) that it contains."
msgstr ""
#: ../../mod/install.php:445
msgid "view/smarty3 is writable"
msgstr ""
#: ../../mod/install.php:457
msgid ""
"Url rewrite in .htaccess is not working. Check your server configuration."
msgstr ""
#: ../../mod/install.php:459
msgid "Url rewrite is working"
msgstr ""
#: ../../mod/install.php:469
msgid ""
"The database configuration file \".htconfig.php\" could not be written. "
"Please use the enclosed text to create a configuration file in your web "
"server root."
msgstr "Konfiguracja bazy danych pliku \".htconfig.php\" nie mogła zostać zapisana. Proszę użyć załączonego tekstu, aby utworzyć folder konfiguracyjny w sieci serwera."
#: ../../mod/install.php:493
msgid "Errors encountered creating database tables."
msgstr "Zostały napotkane błędy przy tworzeniu tabeli bazy danych."
#: ../../mod/install.php:504
msgid "<h1>What next</h1>"
msgstr "<h1>Co dalej</h1>"
#: ../../mod/install.php:505
msgid ""
"IMPORTANT: You will need to [manually] setup a scheduled task for the "
"poller."
msgstr "WAŻNE: Musisz [ręcznie] skonfigurowć zaplanowane zadanie dla poller."
#: ../../mod/wall_upload.php:90 ../../mod/profile_photo.php:144
#, php-format
msgid "Image exceeds size limit of %d"
@ -8750,6 +5523,10 @@ msgstr "Wybierz swoją strefę czasową:"
msgid "Remote privacy information not available."
msgstr "Dane prywatne nie są dostępne zdalnie "
#: ../../mod/lockview.php:48
msgid "Visible to:"
msgstr "Widoczne dla:"
#: ../../mod/lostpass.php:17
msgid "No valid account found."
msgstr "Nie znaleziono ważnego konta."
@ -8871,7 +5648,7 @@ msgstr "Brak wiadomości."
#: ../../mod/message.php:378
#, php-format
msgid "Unknown sender - %s"
msgstr ""
msgstr "Nieznany wysyłający - %s"
#: ../../mod/message.php:381
#, php-format
@ -9014,14 +5791,160 @@ msgstr "Prywatne wiadomości do tej osoby mogą zostać publicznie ujawnione "
msgid "Invalid contact."
msgstr "Zły kontakt"
#: ../../mod/community.php:23
msgid "Not available."
msgstr "Niedostępne."
#: ../../mod/notifications.php:26
msgid "Invalid request identifier."
msgstr "Niewłaściwy identyfikator wymagania."
#: ../../mod/notifications.php:35 ../../mod/notifications.php:165
#: ../../mod/notifications.php:211
msgid "Discard"
msgstr "Odrzuć"
#: ../../mod/notifications.php:78
msgid "System"
msgstr "System"
#: ../../mod/notifications.php:122
msgid "Show Ignored Requests"
msgstr "Pokaż ignorowane żądania"
#: ../../mod/notifications.php:122
msgid "Hide Ignored Requests"
msgstr "Ukryj ignorowane żądania"
#: ../../mod/notifications.php:149 ../../mod/notifications.php:195
msgid "Notification type: "
msgstr "Typ zawiadomień:"
#: ../../mod/notifications.php:150
msgid "Friend Suggestion"
msgstr "Propozycja znajomych"
#: ../../mod/notifications.php:152
#, php-format
msgid "suggested by %s"
msgstr "zaproponowane przez %s"
#: ../../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 "jeśli odpowiednie"
#: ../../mod/notifications.php:181
msgid "Claims to be known to you: "
msgstr "Twierdzi, że go znasz:"
#: ../../mod/notifications.php:181
msgid "yes"
msgstr "tak"
#: ../../mod/notifications.php:181
msgid "no"
msgstr "nie"
#: ../../mod/notifications.php:188
msgid "Approve as: "
msgstr "Zatwierdź jako:"
#: ../../mod/notifications.php:189
msgid "Friend"
msgstr "Znajomy"
#: ../../mod/notifications.php:190
msgid "Sharer"
msgstr ""
#: ../../mod/notifications.php:190
msgid "Fan/Admirer"
msgstr "Fan"
#: ../../mod/notifications.php:196
msgid "Friend/Connect Request"
msgstr "Prośba o dodanie do przyjaciół/powiązanych"
#: ../../mod/notifications.php:196
msgid "New Follower"
msgstr "Nowy obserwator"
#: ../../mod/notifications.php:217
msgid "No introductions."
msgstr "Brak wstępu."
#: ../../mod/notifications.php:257 ../../mod/notifications.php:382
#: ../../mod/notifications.php:469
#, php-format
msgid "%s liked %s's post"
msgstr "%s polubił wpis %s"
#: ../../mod/notifications.php:266 ../../mod/notifications.php:391
#: ../../mod/notifications.php:478
#, php-format
msgid "%s disliked %s's post"
msgstr "%s przestał lubić post %s"
#: ../../mod/notifications.php:280 ../../mod/notifications.php:405
#: ../../mod/notifications.php:492
#, php-format
msgid "%s is now friends with %s"
msgstr "%s jest teraz znajomym %s"
#: ../../mod/notifications.php:287 ../../mod/notifications.php:412
#, php-format
msgid "%s created a new post"
msgstr "%s dodał nowy wpis"
#: ../../mod/notifications.php:288 ../../mod/notifications.php:413
#: ../../mod/notifications.php:501
#, php-format
msgid "%s commented on %s's post"
msgstr "%s skomentował wpis %s"
#: ../../mod/notifications.php:302
msgid "No more network notifications."
msgstr "Nie ma więcej powiadomień sieciowych"
#: ../../mod/notifications.php:306
msgid "Network Notifications"
msgstr "Powiadomienia z sieci"
#: ../../mod/notifications.php:332 ../../mod/notify.php:61
msgid "No more system notifications."
msgstr "Nie ma więcej powiadomień systemowych."
#: ../../mod/notifications.php:336 ../../mod/notify.php:65
msgid "System Notifications"
msgstr "Powiadomienia systemowe"
#: ../../mod/notifications.php:427
msgid "No more personal notifications."
msgstr "Nie ma więcej powiadomień osobistych"
#: ../../mod/notifications.php:431
msgid "Personal Notifications"
msgstr "Prywatne powiadomienia"
#: ../../mod/notifications.php:508
msgid "No more home notifications."
msgstr "Nie ma więcej powiadomień domu"
#: ../../mod/notifications.php:512
msgid "Home Notifications"
msgstr "Powiadomienia z instancji"
#: ../../mod/photos.php:51 ../../boot.php:1878
msgid "Photo Albums"
msgstr "Albumy zdjęć"
#: ../../mod/photos.php:59 ../../mod/photos.php:154 ../../mod/photos.php:1058
#: ../../mod/photos.php:1183 ../../mod/photos.php:1206
#: ../../mod/photos.php:1736 ../../mod/photos.php:1748
#: ../../view/theme/diabook/theme.php:492
msgid "Contact Photos"
msgstr "Zdjęcia kontaktu"
#: ../../mod/photos.php:66 ../../mod/photos.php:1222 ../../mod/photos.php:1795
msgid "Upload New Photos"
msgstr "Wyślij nowe zdjęcie"
@ -9040,7 +5963,7 @@ msgstr "Usuń album"
#: ../../mod/photos.php:197
msgid "Do you really want to delete this photo album and all its photos?"
msgstr ""
msgstr "Czy na pewno chcesz usunąć ten album i wszystkie zdjęcia z tego albumu?"
#: ../../mod/photos.php:276 ../../mod/photos.php:287 ../../mod/photos.php:1502
msgid "Delete Photo"
@ -9048,7 +5971,7 @@ msgstr "Usuń zdjęcie"
#: ../../mod/photos.php:285
msgid "Do you really want to delete this photo?"
msgstr ""
msgstr "Czy na pewno chcesz usunąć to zdjęcie ?"
#: ../../mod/photos.php:656
#, php-format
@ -9059,6 +5982,10 @@ msgstr ""
msgid "a photo"
msgstr "zdjęcie"
#: ../../mod/photos.php:761
msgid "Image exceeds size limit of "
msgstr "obrazek przekracza limit rozmiaru"
#: ../../mod/photos.php:769
msgid "Image file is empty."
msgstr "Plik obrazka jest pusty."
@ -9098,11 +6025,11 @@ msgstr "Uprawnienia"
#: ../../mod/photos.php:1142
msgid "Private Photo"
msgstr ""
msgstr "Zdjęcie prywatne"
#: ../../mod/photos.php:1143
msgid "Public Photo"
msgstr ""
msgstr "Zdjęcie publiczne"
#: ../../mod/photos.php:1210
msgid "Edit Album"
@ -9141,7 +6068,7 @@ msgid "Use as profile photo"
msgstr "Ustaw jako zdjęcie profilowe"
#: ../../mod/photos.php:1351 ../../mod/content.php:643
#: ../../object/Item.php:106
#: ../../object/Item.php:113
msgid "Private Message"
msgstr "Wiadomość prywatna"
@ -9184,31 +6111,31 @@ msgstr "Przykładowo: @bob, @Barbara_Jensen, @jim@example.com, #California, #cam
#: ../../mod/photos.php:1508
msgid "Private photo"
msgstr ""
msgstr "Prywatne zdjęcie."
#: ../../mod/photos.php:1509
msgid "Public photo"
msgstr ""
msgstr "Zdjęcie publiczne"
#: ../../mod/photos.php:1529 ../../mod/content.php:707
#: ../../object/Item.php:223
#: ../../object/Item.php:232
msgid "I like this (toggle)"
msgstr "Lubię to (zmień)"
#: ../../mod/photos.php:1530 ../../mod/content.php:708
#: ../../object/Item.php:224
#: ../../object/Item.php:233
msgid "I don't like this (toggle)"
msgstr "Nie lubię (zmień)"
#: ../../mod/photos.php:1549 ../../mod/photos.php:1593
#: ../../mod/photos.php:1676 ../../mod/content.php:730
#: ../../object/Item.php:640
#: ../../object/Item.php:650
msgid "This is you"
msgstr "To jesteś ty"
#: ../../mod/photos.php:1551 ../../mod/photos.php:1595
#: ../../mod/photos.php:1678 ../../mod/content.php:732
#: ../../object/Item.php:329 ../../object/Item.php:642 ../../boot.php:651
#: ../../object/Item.php:338 ../../object/Item.php:652 ../../boot.php:651
msgid "Comment"
msgstr "Komentarz"
@ -9405,152 +6332,312 @@ msgstr ""
msgid "Requested profile is not available."
msgstr "Żądany profil jest niedostępny"
#: ../../mod/profile.php:155 ../../mod/display.php:99
msgid "Access to this profile has been restricted."
msgstr "Ograniczony dostęp do tego konta"
#: ../../mod/profile.php:180
msgid "Tips for New Members"
msgstr "Wskazówki dla nowych użytkowników"
#: ../../mod/notifications.php:26
msgid "Invalid request identifier."
msgstr "Niewłaściwy identyfikator wymagania."
#: ../../mod/display.php:206
msgid "Item has been removed."
msgstr "Przedmiot został usunięty"
#: ../../mod/notifications.php:35 ../../mod/notifications.php:165
#: ../../mod/notifications.php:211
msgid "Discard"
msgstr "Odrzuć"
#: ../../mod/notifications.php:78
msgid "System"
msgstr "System"
#: ../../mod/notifications.php:122
msgid "Show Ignored Requests"
msgstr "Pokaż ignorowane żądania"
#: ../../mod/notifications.php:122
msgid "Hide Ignored Requests"
msgstr "Ukryj ignorowane żądania"
#: ../../mod/notifications.php:149 ../../mod/notifications.php:195
msgid "Notification type: "
msgstr "Typ zawiadomień:"
#: ../../mod/notifications.php:150
msgid "Friend Suggestion"
msgstr "Propozycja znajomych"
#: ../../mod/notifications.php:152
#, php-format
msgid "suggested by %s"
msgstr "zaproponowane przez %s"
#: ../../mod/notifications.php:158 ../../mod/notifications.php:205
msgid "Post a new friend activity"
#: ../../mod/install.php:117
msgid "Friendica Social Communications Server - Setup"
msgstr ""
#: ../../mod/notifications.php:158 ../../mod/notifications.php:205
msgid "if applicable"
msgstr "jeśli odpowiednie"
#: ../../mod/install.php:123
msgid "Could not connect to database."
msgstr "Nie można nawiązać połączenia z bazą danych"
#: ../../mod/notifications.php:181
msgid "Claims to be known to you: "
msgstr "Twierdzi, że go znasz:"
#: ../../mod/install.php:127
msgid "Could not create table."
msgstr "Nie mogę stworzyć tabeli."
#: ../../mod/notifications.php:181
msgid "yes"
msgstr "tak"
#: ../../mod/notifications.php:181
msgid "no"
msgstr "nie"
#: ../../mod/notifications.php:188
msgid "Approve as: "
msgstr "Zatwierdź jako:"
#: ../../mod/notifications.php:189
msgid "Friend"
msgstr "Znajomy"
#: ../../mod/notifications.php:190
msgid "Sharer"
#: ../../mod/install.php:133
msgid "Your Friendica site database has been installed."
msgstr ""
#: ../../mod/notifications.php:190
msgid "Fan/Admirer"
msgstr "Fan"
#: ../../mod/install.php:138
msgid ""
"You may need to import the file \"database.sql\" manually using phpmyadmin "
"or mysql."
msgstr "Może być konieczne zaimportowanie pliku \"database.sql\" ręcznie, używając phpmyadmin lub mysql."
#: ../../mod/notifications.php:196
msgid "Friend/Connect Request"
msgstr "Prośba o dodanie do przyjaciół/powiązanych"
#: ../../mod/install.php:139 ../../mod/install.php:206
#: ../../mod/install.php:521
msgid "Please see the file \"INSTALL.txt\"."
msgstr "Proszę przejrzeć plik \"INSTALL.txt\"."
#: ../../mod/notifications.php:196
msgid "New Follower"
msgstr "Nowy obserwator"
#: ../../mod/install.php:203
msgid "System check"
msgstr "Sprawdzanie systemu"
#: ../../mod/notifications.php:217
msgid "No introductions."
msgstr "Brak wstępu."
#: ../../mod/install.php:208
msgid "Check again"
msgstr "Sprawdź ponownie"
#: ../../mod/notifications.php:257 ../../mod/notifications.php:382
#: ../../mod/notifications.php:469
#, php-format
msgid "%s liked %s's post"
msgstr "%s polubił wpis %s"
#: ../../mod/install.php:227
msgid "Database connection"
msgstr "Połączenie z bazą danych"
#: ../../mod/notifications.php:266 ../../mod/notifications.php:391
#: ../../mod/notifications.php:478
#, php-format
msgid "%s disliked %s's post"
msgstr "%s przestał lubić post %s"
#: ../../mod/install.php:228
msgid ""
"In order to install Friendica we need to know how to connect to your "
"database."
msgstr "W celu zainstalowania Friendica musimy wiedzieć jak połączyć się z twoją bazą danych."
#: ../../mod/notifications.php:280 ../../mod/notifications.php:405
#: ../../mod/notifications.php:492
#, php-format
msgid "%s is now friends with %s"
msgstr "%s jest teraz znajomym %s"
#: ../../mod/install.php:229
msgid ""
"Please contact your hosting provider or site administrator if you have "
"questions about these settings."
msgstr "Proszę skontaktuj się ze swoim dostawcą usług hostingowych bądź administratorem strony jeśli masz pytania co do tych ustawień ."
#: ../../mod/notifications.php:287 ../../mod/notifications.php:412
#, php-format
msgid "%s created a new post"
msgstr "%s dodał nowy wpis"
#: ../../mod/install.php:230
msgid ""
"The database you specify below should already exist. If it does not, please "
"create it before continuing."
msgstr "Wymieniona przez Ciebie baza danych powinna już istnieć. Jeżeli nie, utwórz ją przed kontynuacją."
#: ../../mod/notifications.php:288 ../../mod/notifications.php:413
#: ../../mod/notifications.php:501
#, php-format
msgid "%s commented on %s's post"
msgstr "%s skomentował wpis %s"
#: ../../mod/install.php:234
msgid "Database Server Name"
msgstr "Baza danych - Nazwa serwera"
#: ../../mod/notifications.php:302
msgid "No more network notifications."
msgstr "Nie ma więcej powiadomień sieciowych"
#: ../../mod/install.php:235
msgid "Database Login Name"
msgstr "Baza danych - Nazwa loginu"
#: ../../mod/notifications.php:306
msgid "Network Notifications"
msgstr "Powiadomienia z sieci"
#: ../../mod/install.php:236
msgid "Database Login Password"
msgstr "Baza danych - Hasło loginu"
#: ../../mod/notifications.php:332 ../../mod/notify.php:61
msgid "No more system notifications."
msgstr "Nie ma więcej powiadomień systemowych."
#: ../../mod/install.php:237
msgid "Database Name"
msgstr "Baza danych - Nazwa"
#: ../../mod/notifications.php:336 ../../mod/notify.php:65
msgid "System Notifications"
msgstr "Powiadomienia systemowe"
#: ../../mod/install.php:238 ../../mod/install.php:277
msgid "Site administrator email address"
msgstr "Adres e-mail administratora strony"
#: ../../mod/notifications.php:427
msgid "No more personal notifications."
msgstr "Nie ma więcej powiadomień osobistych"
#: ../../mod/install.php:238 ../../mod/install.php:277
msgid ""
"Your account email address must match this in order to use the web admin "
"panel."
msgstr ""
#: ../../mod/notifications.php:431
msgid "Personal Notifications"
msgstr "Prywatne powiadomienia"
#: ../../mod/install.php:242 ../../mod/install.php:280
msgid "Please select a default timezone for your website"
msgstr "Proszę wybrać domyślną strefę czasową dla swojej strony"
#: ../../mod/notifications.php:508
msgid "No more home notifications."
msgstr "Nie ma więcej powiadomień domu"
#: ../../mod/install.php:267
msgid "Site settings"
msgstr "Ustawienia strony"
#: ../../mod/notifications.php:512
msgid "Home Notifications"
msgstr "Powiadomienia z instancji"
#: ../../mod/install.php:321
msgid "Could not find a command line version of PHP in the web server PATH."
msgstr "Nie można znaleźć wersji PHP komendy w serwerze PATH"
#: ../../mod/install.php:322
msgid ""
"If you don't have a command line version of PHP installed on server, you "
"will not be able to run background polling via cron. See <a "
"href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>"
msgstr ""
#: ../../mod/install.php:326
msgid "PHP executable path"
msgstr ""
#: ../../mod/install.php:326
msgid ""
"Enter full path to php executable. You can leave this blank to continue the "
"installation."
msgstr ""
#: ../../mod/install.php:331
msgid "Command line PHP"
msgstr "Linia komend PHP"
#: ../../mod/install.php:340
msgid "PHP executable is not the php cli binary (could be cgi-fgci version)"
msgstr ""
#: ../../mod/install.php:341
msgid "Found PHP version: "
msgstr "Znaleziono wersje PHP:"
#: ../../mod/install.php:343
msgid "PHP cli binary"
msgstr ""
#: ../../mod/install.php:354
msgid ""
"The command line version of PHP on your system does not have "
"\"register_argc_argv\" enabled."
msgstr "Wersja linii poleceń PHP w twoim systemie nie ma aktywowanego \"register_argc_argv\"."
#: ../../mod/install.php:355
msgid "This is required for message delivery to work."
msgstr "To jest wymagane do dostarczenia wiadomości do pracy."
#: ../../mod/install.php:357
msgid "PHP register_argc_argv"
msgstr ""
#: ../../mod/install.php:378
msgid ""
"Error: the \"openssl_pkey_new\" function on this system is not able to "
"generate encryption keys"
msgstr "Błąd : funkcja systemu \"openssl_pkey_new\" nie jest w stanie wygenerować klucza szyfrującego ."
#: ../../mod/install.php:379
msgid ""
"If running under Windows, please see "
"\"http://www.php.net/manual/en/openssl.installation.php\"."
msgstr "Jeśli korzystasz z Windowsa, proszę odwiedzić \"http://www.php.net/manual/en/openssl.installation.php\"."
#: ../../mod/install.php:381
msgid "Generate encryption keys"
msgstr "Generuj klucz kodowania"
#: ../../mod/install.php:388
msgid "libCurl PHP module"
msgstr "Moduł libCurl PHP"
#: ../../mod/install.php:389
msgid "GD graphics PHP module"
msgstr "Moduł PHP-GD"
#: ../../mod/install.php:390
msgid "OpenSSL PHP module"
msgstr "Moduł PHP OpenSSL"
#: ../../mod/install.php:391
msgid "mysqli PHP module"
msgstr "Moduł mysql PHP"
#: ../../mod/install.php:392
msgid "mb_string PHP module"
msgstr "Moduł mb_string PHP"
#: ../../mod/install.php:397 ../../mod/install.php:399
msgid "Apache mod_rewrite module"
msgstr "Moduł Apache mod_rewrite"
#: ../../mod/install.php:397
msgid ""
"Error: Apache webserver mod-rewrite module is required but not installed."
msgstr "Błąd: moduł Apache webserver mod-rewrite jest potrzebny, jednakże nie jest zainstalowany."
#: ../../mod/install.php:405
msgid "Error: libCURL PHP module required but not installed."
msgstr "Błąd: libCURL PHP wymagany moduł, lecz nie zainstalowany."
#: ../../mod/install.php:409
msgid ""
"Error: GD graphics PHP module with JPEG support required but not installed."
msgstr "Błąd: moduł graficzny GD z PHP potrzebuje wsparcia technicznego JPEG, jednakże on nie jest zainstalowany."
#: ../../mod/install.php:413
msgid "Error: openssl PHP module required but not installed."
msgstr "Błąd: openssl PHP wymagany moduł, lecz nie zainstalowany."
#: ../../mod/install.php:417
msgid "Error: mysqli PHP module required but not installed."
msgstr "Błąd: mysqli PHP wymagany moduł, lecz nie zainstalowany."
#: ../../mod/install.php:421
msgid "Error: mb_string PHP module required but not installed."
msgstr "Błąd: moduł PHP mb_string jest wymagany ale nie jest zainstalowany"
#: ../../mod/install.php:438
msgid ""
"The web installer needs to be able to create a file called \".htconfig.php\""
" in the top folder of your web server and it is unable to do so."
msgstr "Instalator WWW musi być w stanie utworzyć plik o nazwie \". Htconfig.php\" i nie jest w stanie tego zrobić."
#: ../../mod/install.php:439
msgid ""
"This is most often a permission setting, as the web server may not be able "
"to write files in your folder - even if you can."
msgstr ""
#: ../../mod/install.php:440
msgid ""
"At the end of this procedure, we will give you a text to save in a file "
"named .htconfig.php in your Friendica top folder."
msgstr ""
#: ../../mod/install.php:441
msgid ""
"You can alternatively skip this procedure and perform a manual installation."
" Please see the file \"INSTALL.txt\" for instructions."
msgstr ""
#: ../../mod/install.php:444
msgid ".htconfig.php is writable"
msgstr ".htconfig.php jest zapisywalny"
#: ../../mod/install.php:454
msgid ""
"Friendica uses the Smarty3 template engine to render its web views. Smarty3 "
"compiles templates to PHP to speed up rendering."
msgstr ""
#: ../../mod/install.php:455
msgid ""
"In order to store these compiled templates, the web server needs to have "
"write access to the directory view/smarty3/ under the Friendica top level "
"folder."
msgstr ""
#: ../../mod/install.php:456
msgid ""
"Please ensure that the user that your web server runs as (e.g. www-data) has"
" write access to this folder."
msgstr ""
#: ../../mod/install.php:457
msgid ""
"Note: as a security measure, you should give the web server write access to "
"view/smarty3/ only--not the template files (.tpl) that it contains."
msgstr ""
#: ../../mod/install.php:460
msgid "view/smarty3 is writable"
msgstr ""
#: ../../mod/install.php:472
msgid ""
"Url rewrite in .htaccess is not working. Check your server configuration."
msgstr ""
#: ../../mod/install.php:474
msgid "Url rewrite is working"
msgstr ""
#: ../../mod/install.php:484
msgid ""
"The database configuration file \".htconfig.php\" could not be written. "
"Please use the enclosed text to create a configuration file in your web "
"server root."
msgstr "Konfiguracja bazy danych pliku \".htconfig.php\" nie mogła zostać zapisana. Proszę użyć załączonego tekstu, aby utworzyć folder konfiguracyjny w sieci serwera."
#: ../../mod/install.php:508
msgid "Errors encountered creating database tables."
msgstr "Zostały napotkane błędy przy tworzeniu tabeli bazy danych."
#: ../../mod/install.php:519
msgid "<h1>What next</h1>"
msgstr "<h1>Co dalej</h1>"
#: ../../mod/install.php:520
msgid ""
"IMPORTANT: You will need to [manually] setup a scheduled task for the "
"poller."
msgstr "WAŻNE: Musisz [ręcznie] skonfigurowć zaplanowane zadanie dla poller."
#: ../../mod/oexchange.php:25
msgid "Post successful."
@ -9593,6 +6680,10 @@ msgstr "Wyślij plik:"
msgid "Select a profile:"
msgstr "Wybierz profil:"
#: ../../mod/profile_photo.php:245
msgid "Upload"
msgstr "Załaduj"
#: ../../mod/profile_photo.php:248
msgid "skip this step"
msgstr "Pomiń ten krok"
@ -9617,7 +6708,11 @@ msgstr "Zakończ Edycję "
msgid "Image uploaded successfully."
msgstr "Zdjęcie wczytano pomyślnie "
#: ../../mod/content.php:626 ../../object/Item.php:352
#: ../../mod/community.php:23
msgid "Not available."
msgstr "Niedostępne."
#: ../../mod/content.php:626 ../../object/Item.php:362
#, php-format
msgid "%d comment"
msgid_plural "%d comments"
@ -9625,94 +6720,98 @@ msgstr[0] " %d komentarz"
msgstr[1] " %d komentarzy"
msgstr[2] " %d komentarzy"
#: ../../mod/content.php:707 ../../object/Item.php:223
#: ../../mod/content.php:707 ../../object/Item.php:232
msgid "like"
msgstr "polub"
#: ../../mod/content.php:708 ../../object/Item.php:224
#: ../../mod/content.php:708 ../../object/Item.php:233
msgid "dislike"
msgstr "Nie lubię"
#: ../../mod/content.php:710 ../../object/Item.php:226
#: ../../mod/content.php:710 ../../object/Item.php:235
msgid "Share this"
msgstr "Udostępnij to"
#: ../../mod/content.php:710 ../../object/Item.php:226
#: ../../mod/content.php:710 ../../object/Item.php:235
msgid "share"
msgstr "udostępnij"
#: ../../mod/content.php:734 ../../object/Item.php:644
#: ../../mod/content.php:734 ../../object/Item.php:654
msgid "Bold"
msgstr "Pogrubienie"
#: ../../mod/content.php:735 ../../object/Item.php:645
#: ../../mod/content.php:735 ../../object/Item.php:655
msgid "Italic"
msgstr "Kursywa"
#: ../../mod/content.php:736 ../../object/Item.php:646
#: ../../mod/content.php:736 ../../object/Item.php:656
msgid "Underline"
msgstr "Podkreślenie"
#: ../../mod/content.php:737 ../../object/Item.php:647
#: ../../mod/content.php:737 ../../object/Item.php:657
msgid "Quote"
msgstr "Cytat"
#: ../../mod/content.php:738 ../../object/Item.php:648
#: ../../mod/content.php:738 ../../object/Item.php:658
msgid "Code"
msgstr "Kod"
#: ../../mod/content.php:739 ../../object/Item.php:649
#: ../../mod/content.php:739 ../../object/Item.php:659
msgid "Image"
msgstr "Obraz"
#: ../../mod/content.php:740 ../../object/Item.php:650
#: ../../mod/content.php:740 ../../object/Item.php:660
msgid "Link"
msgstr "Link"
#: ../../mod/content.php:741 ../../object/Item.php:651
#: ../../mod/content.php:741 ../../object/Item.php:661
msgid "Video"
msgstr "Video"
#: ../../mod/content.php:776 ../../object/Item.php:202
#: ../../mod/content.php:776 ../../object/Item.php:211
msgid "add star"
msgstr "dodaj gwiazdkę"
#: ../../mod/content.php:777 ../../object/Item.php:203
#: ../../mod/content.php:777 ../../object/Item.php:212
msgid "remove star"
msgstr "anuluj gwiazdkę"
#: ../../mod/content.php:778 ../../object/Item.php:204
#: ../../mod/content.php:778 ../../object/Item.php:213
msgid "toggle star status"
msgstr "włącz status gwiazdy"
#: ../../mod/content.php:781 ../../object/Item.php:207
#: ../../mod/content.php:781 ../../object/Item.php:216
msgid "starred"
msgstr ""
msgstr "gwiazdką"
#: ../../mod/content.php:782 ../../object/Item.php:212
#: ../../mod/content.php:782 ../../object/Item.php:221
msgid "add tag"
msgstr "dodaj tag"
#: ../../mod/content.php:786 ../../object/Item.php:123
#: ../../mod/content.php:786 ../../object/Item.php:130
msgid "save to folder"
msgstr "zapisz w folderze"
#: ../../mod/content.php:877 ../../object/Item.php:299
#: ../../mod/content.php:877 ../../object/Item.php:308
msgid "to"
msgstr "do"
#: ../../mod/content.php:878 ../../object/Item.php:301
#: ../../mod/content.php:878 ../../object/Item.php:310
msgid "Wall-to-Wall"
msgstr "Wall-to-Wall"
#: ../../mod/content.php:879 ../../object/Item.php:302
#: ../../mod/content.php:879 ../../object/Item.php:311
msgid "via Wall-To-Wall:"
msgstr "via Wall-To-Wall:"
#: ../../object/Item.php:300
msgid "via"
#: ../../object/Item.php:92
msgid "This entry was edited"
msgstr ""
#: ../../object/Item.php:309
msgid "via"
msgstr "przez"
#: ../../view/theme/cleanzero/config.php:82
#: ../../view/theme/diabook/config.php:154
#: ../../view/theme/dispy/config.php:72 ../../view/theme/quattro/config.php:66
@ -9874,10 +6973,6 @@ msgstr ""
msgid "Textareas font size"
msgstr ""
#: ../../index.php:400
msgid "toggle mobile"
msgstr ""
#: ../../boot.php:650
msgid "Delete this item?"
msgstr "Usunąć ten element?"
@ -9934,7 +7029,7 @@ msgstr ""
#: ../../boot.php:1078
msgid "privacy policy"
msgstr ""
msgstr "polityka prywatności"
#: ../../boot.php:1207
msgid "Requested account is not available."
@ -9999,3 +7094,7 @@ msgstr "Wydarzenia i kalendarz"
#: ../../boot.php:1895
msgid "Only You Can See This"
msgstr "Tylko ty możesz to zobaczyć"
#: ../../index.php:405
msgid "toggle mobile"
msgstr "przełącz na mobilny"

View file

@ -5,615 +5,22 @@ function string_plural_select_pl($n){
return ($n==1 ? 0 : $n%10>=2 && $n%10<=4 && ($n%100<10 || $n%100>=20) ? 1 : 2);;
}}
;
$a->strings["Altpager settings updated."] = "";
$a->strings["Alternate Pagination Setting"] = "";
$a->strings["Use links to \"newer\" and \"older\" pages in place of page numbers?"] = "";
$a->strings["Submit"] = "Potwierdź";
$a->strings["Bg settings updated."] = "";
$a->strings["Bg Settings"] = "";
$a->strings["How many contacts to display on profile sidebar"] = "";
$a->strings["\"Blockem\" Settings"] = "";
$a->strings["Comma separated profile URLS to block"] = "";
$a->strings["BLOCKEM Settings saved."] = "";
$a->strings["Blocked %s - Click to open/close"] = "";
$a->strings["Unblock Author"] = "Odblokuj autora";
$a->strings["Block Author"] = "Zablokuj autora";
$a->strings["blockem settings updated"] = "";
$a->strings["Post to blogger"] = "Post na blogger";
$a->strings["Blogger Post Settings"] = "Ustawienia postów na Blogger";
$a->strings["Enable Blogger Post Plugin"] = "";
$a->strings["Blogger username"] = "Nazwa użytkownika na Blogger";
$a->strings["Blogger password"] = "Hasło do Blogger";
$a->strings["Blogger API URL"] = "Blogger API URL";
$a->strings["Post to Blogger by default"] = "";
$a->strings["Post from Friendica"] = "Post z Friendica";
$a->strings["Report Bug"] = "Zgłoś problem";
$a->strings["Login"] = "Login";
$a->strings["OpenID"] = "OpenID";
$a->strings["Latest users"] = "Ostatni użytkownicy";
$a->strings["Most active users"] = "najaktywniejsi użytkownicy";
$a->strings["Latest photos"] = "Ostatnie zdjęcia";
$a->strings["Contact Photos"] = "Zdjęcia kontaktu";
$a->strings["Profile Photos"] = "Zdjęcia profilowe";
$a->strings["Latest likes"] = "Ostatnie polubienia";
$a->strings["event"] = "wydarzenie";
$a->strings["status"] = "status";
$a->strings["photo"] = "zdjęcie";
$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s lubi %2\$s's %3\$s";
$a->strings["Welcome to %s"] = "Witamy w %s";
$a->strings["Private Events"] = "Prywatne wydarzenia";
$a->strings["Private Addressbooks"] = "";
$a->strings["No access"] = "Brak dostępu";
$a->strings["U.S. Time Format (mm/dd/YYYY)"] = "Amerykański format daty (mm/dd/YYYY)";
$a->strings["German Time Format (dd.mm.YYYY)"] = "Niemiecki format daty (dd.mm.YYYY)";
$a->strings["Could not open component for editing"] = "";
$a->strings["Go back to the calendar"] = "Wróć do kalendarza";
$a->strings["Event data"] = "Data wydarzenia";
$a->strings["Calendar"] = "Kalendarz";
$a->strings["Special color"] = "";
$a->strings["Subject"] = "Temat";
$a->strings["Starts"] = "Zaczyna się";
$a->strings["Ends"] = "Kończy się";
$a->strings["Location"] = "Położenie";
$a->strings["Description"] = "Opis";
$a->strings["Recurrence"] = "";
$a->strings["Frequency"] = "często";
$a->strings["None"] = "Brak";
$a->strings["Daily"] = "Dziennie";
$a->strings["Weekly"] = "Tygodniowo";
$a->strings["Monthly"] = "Miesięcznie";
$a->strings["Yearly"] = "raz na rok";
$a->strings["days"] = "dni";
$a->strings["weeks"] = "tygodnie";
$a->strings["months"] = "miesiące";
$a->strings["years"] = "lata";
$a->strings["Interval"] = "";
$a->strings["All %select% %time%"] = "";
$a->strings["Days"] = "Dni";
$a->strings["Sunday"] = "Niedziela";
$a->strings["Monday"] = "Poniedziałek";
$a->strings["Tuesday"] = "Wtorek";
$a->strings["Wednesday"] = "Środa";
$a->strings["Thursday"] = "Czwartek";
$a->strings["Friday"] = "Piątek";
$a->strings["Saturday"] = "Sobota";
$a->strings["First day of week:"] = "Pierwszy dzień tygodnia:";
$a->strings["Day of month"] = "Dzień miesiąca";
$a->strings["#num#th of each month"] = "";
$a->strings["#num#th-last of each month"] = "";
$a->strings["#num#th #wkday# of each month"] = "";
$a->strings["#num#th-last #wkday# of each month"] = "";
$a->strings["Month"] = "Miesiąc";
$a->strings["#num#th of the given month"] = "";
$a->strings["#num#th-last of the given month"] = "";
$a->strings["#num#th #wkday# of the given month"] = "";
$a->strings["#num#th-last #wkday# of the given month"] = "";
$a->strings["Repeat until"] = "Powtarzaj do";
$a->strings["Infinite"] = "";
$a->strings["Until the following date"] = "Do tej daty";
$a->strings["Number of times"] = "";
$a->strings["Exceptions"] = "Wyjątki";
$a->strings["none"] = "";
$a->strings["Notification"] = "Powiadomienie";
$a->strings["Notify by"] = "";
$a->strings["Remove"] = "Usuń";
$a->strings["E-Mail"] = "E-Mail";
$a->strings["On Friendica / Display"] = "";
$a->strings["Time"] = "";
$a->strings["Hours"] = "Godzin";
$a->strings["Minutes"] = "Minut";
$a->strings["Seconds"] = "";
$a->strings["Weeks"] = "";
$a->strings["before the"] = "";
$a->strings["start of the event"] = "rozpoczęcie wydarzenia";
$a->strings["end of the event"] = "zakończenie wydarzenia";
$a->strings["Add a notification"] = "Dodaj powiadomienie";
$a->strings["The event #name# will start at #date"] = "";
$a->strings["#name# is about to begin."] = "";
$a->strings["Saved"] = "Zapisano";
$a->strings["Private Calendar"] = "Kalendarz prywatny";
$a->strings["Friendica Events: Mine"] = "Wydarzenia Friendici: Moje";
$a->strings["Friendica Events: Contacts"] = "Wydarzenia Friendici: Kontakty";
$a->strings["Private Addresses"] = "";
$a->strings["Friendica Contacts"] = "Kontakty Friendica";
$a->strings["Friendica-Native events"] = "";
$a->strings["Friendica-Contacts"] = "Kontakty friendica";
$a->strings["Your Friendica-Contacts"] = "Twoje kontakty friendica";
$a->strings["Something went wrong when trying to import the file. Sorry. Maybe some events were imported anyway."] = "";
$a->strings["Something went wrong when trying to import the file. Sorry."] = "";
$a->strings["The ICS-File has been imported."] = "";
$a->strings["No file was uploaded."] = "Nie wgrano pliku.";
$a->strings["Import a ICS-file"] = "";
$a->strings["ICS-File"] = "";
$a->strings["Overwrite all #num# existing events"] = "";
$a->strings["Upload"] = "Załaduj";
$a->strings["Settings"] = "Ustawienia";
$a->strings["Help"] = "Pomoc";
$a->strings["New event"] = "Nowe wydarzenie";
$a->strings["Today"] = "Dzisiaj";
$a->strings["Day"] = "Dzień";
$a->strings["Week"] = "Tydzień";
$a->strings["Reload"] = "Załaduj ponownie";
$a->strings["Previous"] = "Poprzedni";
$a->strings["Next"] = "Następny";
$a->strings["Date"] = "Data";
$a->strings["Error"] = "Błąd";
$a->strings["Permission denied."] = "Brak uprawnień.";
$a->strings["The new values have been saved."] = "";
$a->strings["The calendar has been updated."] = "";
$a->strings["The new calendar has been created."] = "";
$a->strings["The calendar has been deleted."] = "";
$a->strings["Calendar Settings"] = "Ustawienia kalendarza";
$a->strings["Date format"] = "Format daty";
$a->strings["Time zone"] = "Strefa czasowa";
$a->strings["Save"] = "Zapisz";
$a->strings["Calendars"] = "Kalendarze";
$a->strings["Create a new calendar"] = "Stwórz nowy kalendarz";
$a->strings["Limitations"] = "Ograniczenie";
$a->strings["Warning"] = "Ostrzeżenie";
$a->strings["Synchronization (iPhone, Thunderbird Lightning, Android, ...)"] = "Synchronizacja (iPhone, Thunderbird Lightning, Android, ...)";
$a->strings["Synchronizing this calendar with the iPhone"] = "Zsynchronizuj kalendarz z iPhone";
$a->strings["Synchronizing your Friendica-Contacts with the iPhone"] = "Zsynchronizuj kontakty friendica z iPhone";
$a->strings["The current version of this plugin has not been set up correctly. Please contact the system administrator of your installation of friendica to fix this."] = "";
$a->strings["Extended calendar with CalDAV-support"] = "";
$a->strings["noreply"] = "brak odpowiedzi";
$a->strings["Notification: "] = "Potwierdzeni:";
$a->strings["The database tables have been installed."] = "";
$a->strings["An error occurred during the installation."] = "";
$a->strings["The database tables have been updated."] = "";
$a->strings["An error occurred during the update."] = "";
$a->strings["No system-wide settings yet."] = "";
$a->strings["Database status"] = "";
$a->strings["Installed"] = "Zainstalowany";
$a->strings["Upgrade needed"] = "Wymaga uaktualnienia";
$a->strings["Please back up all calendar data (the tables beginning with dav_*) before proceeding. While all calendar events <i>should</i> be converted to the new database structure, it's always safe to have a backup. Below, you can have a look at the database-queries that will be made when pressing the 'update'-button."] = "";
$a->strings["Upgrade"] = "Uaktualnienie";
$a->strings["Not installed"] = "Nie zainstalowany";
$a->strings["Install"] = "Zainstaluj";
$a->strings["Unknown"] = "Nieznany";
$a->strings["Something really went wrong. I cannot recover from this state automatically, sorry. Please go to the database backend, back up the data, and delete all tables beginning with 'dav_' manually. Afterwards, this installation routine should be able to reinitialize the tables automatically."] = "";
$a->strings["Troubleshooting"] = "Rozwiązywanie problemów";
$a->strings["Manual creation of the database tables:"] = "";
$a->strings["Show SQL-statements"] = "";
$a->strings["Post to Drupal"] = "Opublikuj na Drupal";
$a->strings["Drupal Post Settings"] = "Ustawienia wpisów Drupala";
$a->strings["Enable Drupal Post Plugin"] = "Włącz plugin wpisów Drupala";
$a->strings["Drupal username"] = "Użytkownik Drupala";
$a->strings["Drupal password"] = "hasło do Drupal";
$a->strings["Post Type - article,page,or blog"] = "";
$a->strings["Drupal site URL"] = "Adres strony Drupala";
$a->strings["Drupal site uses clean URLS"] = "";
$a->strings["Post to Drupal by default"] = "";
$a->strings["Post to Dreamwidth"] = "Opublikuj na Dreamwidth";
$a->strings["Dreamwidth Post Settings"] = "";
$a->strings["Enable dreamwidth Post Plugin"] = "";
$a->strings["dreamwidth username"] = "";
$a->strings["dreamwidth password"] = "";
$a->strings["Post to dreamwidth by default"] = "";
$a->strings["Editplain settings updated."] = "";
$a->strings["Editplain Settings"] = "";
$a->strings["Disable richtext status editor"] = "";
$a->strings["Settings updated."] = "Zaktualizowano ustawienia.";
$a->strings["Facebook disabled"] = "Facebook wyłączony";
$a->strings["Updating contacts"] = "Aktualizacja kontaktów";
$a->strings["Facebook API key is missing."] = "Brakuje klucza API z facebooka.";
$a->strings["Facebook Connect"] = "Połącz konto z kontem Facebook";
$a->strings["Install Facebook connector for this account."] = "Zainstaluj wtyczkę Facebook ";
$a->strings["Remove Facebook connector"] = "Usuń wtyczkę Facebook";
$a->strings["Re-authenticate [This is necessary whenever your Facebook password is changed.]"] = "Ponowna autoryzacja [Jest wymagana jeśli twoje hasło do Facebooka jest zmienione]";
$a->strings["Post to Facebook by default"] = "Domyślnie opublikuj na stronie Facebook";
$a->strings["Facebook friend linking has been disabled on this site. The following settings will have no effect."] = "";
$a->strings["Facebook friend linking has been disabled on this site. If you disable it, you will be unable to re-enable it."] = "";
$a->strings["Link all your Facebook friends and conversations on this website"] = "Połącz wszystkie twoje kontakty i konwersacje na tej stronie z serwisem Facebook";
$a->strings["Facebook conversations consist of your <em>profile wall</em> and your friend <em>stream</em>."] = "";
$a->strings["On this website, your Facebook friend stream is only visible to you."] = "";
$a->strings["The following settings determine the privacy of your Facebook profile wall on this website."] = "";
$a->strings["On this website your Facebook profile wall conversations will only be visible to you"] = "";
$a->strings["Do not import your Facebook profile wall conversations"] = "";
$a->strings["If you choose to link conversations and leave both of these boxes unchecked, your Facebook profile wall will be merged with your profile wall on this website and your privacy settings on this website will be used to determine who may see the conversations."] = "";
$a->strings["Comma separated applications to ignore"] = "";
$a->strings["Problems with Facebook Real-Time Updates"] = "Problemy z aktualizacjami w czasie rzeczywistym Facebook'a";
$a->strings["Administrator"] = "Administrator";
$a->strings["Facebook"] = "Facebook";
$a->strings["Facebook Connector Settings"] = "Ustawienia połączenia z Facebook";
$a->strings["Facebook API Key"] = "Facebook API Key";
$a->strings["Error: it appears that you have specified the App-ID and -Secret in your .htconfig.php file. As long as they are specified there, they cannot be set using this form.<br><br>"] = "";
$a->strings["Error: the given API Key seems to be incorrect (the application access token could not be retrieved)."] = "";
$a->strings["The given API Key seems to work correctly."] = "";
$a->strings["The correctness of the API Key could not be detected. Something strange's going on."] = "";
$a->strings["App-ID / API-Key"] = "App-ID / API-Key";
$a->strings["Application secret"] = "";
$a->strings["Polling Interval in minutes (minimum %1\$s minutes)"] = "";
$a->strings["Synchronize comments (no comments on Facebook are missed, at the cost of increased system load)"] = "";
$a->strings["Real-Time Updates"] = "Aktualizacje w czasie rzeczywistym";
$a->strings["Real-Time Updates are activated."] = "Aktualizacje w czasie rzeczywistym zostały aktywowane.";
$a->strings["Deactivate Real-Time Updates"] = "Zdezaktywuj aktualizacje w czasie rzeczywistym";
$a->strings["Real-Time Updates not activated."] = "Aktualizacje w czasie rzeczywistym nie zostały aktywowane.";
$a->strings["Activate Real-Time Updates"] = "Aktywuj aktualizacje w czasie rzeczywistym";
$a->strings["Post to Facebook"] = "Post na Facebook";
$a->strings["Post to Facebook cancelled because of multi-network access permission conflict."] = "Publikacja na stronie Facebook nie powiodła się z powodu braku dostępu do sieci";
$a->strings["View on Friendica"] = "Zobacz na Friendice";
$a->strings["Facebook post failed. Queued for retry."] = "";
$a->strings["Your Facebook connection became invalid. Please Re-authenticate."] = "";
$a->strings["Facebook connection became invalid"] = "Błędne połączenie z Facebookiem";
$a->strings["Hi %1\$s,\n\nThe connection between your accounts on %2\$s and Facebook became invalid. This usually happens after you change your Facebook-password. To enable the connection again, you have to %3\$sre-authenticate the Facebook-connector%4\$s."] = "";
$a->strings["Facebook Post disabled"] = "";
$a->strings["Facebook Post"] = "Wpis z Facebooka";
$a->strings["Install Facebook Post connector for this account."] = "";
$a->strings["Remove Facebook Post connector"] = "";
$a->strings["Facebook Post Settings"] = "Ustawienia wpisu z Facebooka";
$a->strings["Forums"] = "Fora";
$a->strings["show/hide"] = "pokaż/ukryj";
$a->strings["No forum subscriptions"] = "";
$a->strings["Forums:"] = "";
$a->strings["Forumlist settings updated."] = "";
$a->strings["Forumlist Settings"] = "";
$a->strings["Randomise forum list"] = "";
$a->strings["Show forums on profile page"] = "";
$a->strings["Show forums on network page"] = "";
$a->strings["Fromapp settings updated."] = "";
$a->strings["FromApp Settings"] = "";
$a->strings["The application name you would like to show your posts originating from."] = "";
$a->strings["Use this application name even if another application was used."] = "";
$a->strings["Google+ Import Settings"] = "";
$a->strings["Enable Google+ Import"] = "";
$a->strings["Google Account ID"] = "";
$a->strings["Google+ Import Settings saved."] = "";
$a->strings["Geonames settings updated."] = "";
$a->strings["Geonames Settings"] = "ustawienia Geonames";
$a->strings["Enable Geonames Plugin"] = "";
$a->strings["Gnot settings updated."] = "";
$a->strings["Gnot Settings"] = "";
$a->strings["Allows threading of email comment notifications on Gmail and anonymising the subject line."] = "";
$a->strings["Enable this plugin/addon?"] = "Umożliwić tego plugina/wtyczkę?";
$a->strings["[Friendica:Notify] Comment to conversation #%d"] = "";
$a->strings["generic profile image"] = "generuj obraz profilowy";
$a->strings["random geometric pattern"] = "przypadkowy wzorzec geometryczny";
$a->strings["monster face"] = "monster face";
$a->strings["computer generated face"] = "";
$a->strings["retro arcade style face"] = "";
$a->strings["Information"] = "";
$a->strings["Libravatar addon is installed, too. Please disable Libravatar addon or this Gravatar addon.<br>The Libravatar addon will fall back to Gravatar if nothing was found at Libravatar."] = "";
$a->strings["Default avatar image"] = "Domyślny awatar";
$a->strings["Select default avatar image if none was found at Gravatar. See README"] = "";
$a->strings["Rating of images"] = "";
$a->strings["Select the appropriate avatar rating for your site. See README"] = "";
$a->strings["Gravatar settings updated."] = "Zaktualizowane ustawienie Gravatara";
$a->strings["Group Text"] = "";
$a->strings["Use a text only (non-image) group selector in the \"group edit\" menu"] = "";
$a->strings["Post to Insanejournal"] = "Opublikuj na Insanejournal";
$a->strings["InsaneJournal Post Settings"] = "";
$a->strings["Enable InsaneJournal Post Plugin"] = "";
$a->strings["InsaneJournal username"] = "";
$a->strings["InsaneJournal password"] = "";
$a->strings["Post to InsaneJournal by default"] = "";
$a->strings["Impressum"] = "";
$a->strings["Site Owner"] = "Właściciel strony";
$a->strings["Email Address"] = "Adres e-mail";
$a->strings["Postal Address"] = "Adres pocztowy";
$a->strings["The impressum addon needs to be configured!<br />Please add at least the <tt>owner</tt> variable to your config file. For other variables please refer to the README file of the addon."] = "";
$a->strings["The page operators name."] = "";
$a->strings["Site Owners Profile"] = "Profil właściciela strony";
$a->strings["Profile address of the operator."] = "";
$a->strings["How to contact the operator via snail mail. You can use BBCode here."] = "";
$a->strings["Notes"] = "Notatki";
$a->strings["Additional notes that are displayed beneath the contact information. You can use BBCode here."] = "";
$a->strings["How to contact the operator via email. (will be displayed obfuscated)"] = "";
$a->strings["Footer note"] = "Notka w stopce";
$a->strings["Text for the footer. You can use BBCode here."] = "";
$a->strings["Infinite Improbability Drive"] = "";
$a->strings["IRC Settings"] = "Ustawienia IRC";
$a->strings["Channel(s) to auto connect (comma separated)"] = "";
$a->strings["Popular Channels (comma separated)"] = "";
$a->strings["IRC settings saved."] = "Zapisano ustawienia IRC.";
$a->strings["IRC Chatroom"] = "IRC Chatroom";
$a->strings["Popular Channels"] = "Popularne kanały";
$a->strings["Jappix Mini addon settings"] = "";
$a->strings["Activate addon"] = "";
$a->strings["Do <em>not</em> insert the Jappixmini Chat-Widget into the webinterface"] = "";
$a->strings["Jabber username"] = "";
$a->strings["Jabber server"] = "";
$a->strings["Jabber BOSH host"] = "";
$a->strings["Jabber password"] = "Hasło Jabber";
$a->strings["Encrypt Jabber password with Friendica password (recommended)"] = "";
$a->strings["Friendica password"] = "Hasło Friendica";
$a->strings["Approve subscription requests from Friendica contacts automatically"] = "";
$a->strings["Subscribe to Friendica contacts automatically"] = "";
$a->strings["Purge internal list of jabber addresses of contacts"] = "";
$a->strings["Add contact"] = "Dodaj kontakt";
$a->strings["Upload a file"] = "Załaduj plik";
$a->strings["Drop files here to upload"] = "Wrzuć tu pliki by je załadować";
$a->strings["Cancel"] = "Anuluj";
$a->strings["Failed"] = "Niepowodzenie";
$a->strings["No files were uploaded."] = "Nie załadowano żadnych plików.";
$a->strings["Uploaded file is empty"] = "Wysłany plik jest pusty";
$a->strings["Image exceeds size limit of "] = "obrazek przekracza limit rozmiaru";
$a->strings["File has an invalid extension, it should be one of "] = "Pilk ma nieprawidłowe rozszerzenie, powinien być jednym z";
$a->strings["Upload was cancelled, or server error encountered"] = "Przesyłanie zostało anulowane lub wystąpił błąd serwera.";
$a->strings["Post to libertree"] = "";
$a->strings["libertree Post Settings"] = "";
$a->strings["Enable Libertree Post Plugin"] = "";
$a->strings["Libertree API token"] = "";
$a->strings["Libertree site URL"] = "";
$a->strings["Post to Libertree by default"] = "";
$a->strings["Could NOT install Libravatar successfully.<br>It requires PHP >= 5.3"] = "";
$a->strings["Your PHP version %s is lower than the required PHP >= 5.3."] = "";
$a->strings["This addon is not functional on your server."] = "";
$a->strings["Gravatar addon is installed. Please disable the Gravatar addon.<br>The Libravatar addon will fall back to Gravatar if nothing was found at Libravatar."] = "";
$a->strings["Select default avatar image if none was found. See README"] = "";
$a->strings["Libravatar settings updated."] = "";
$a->strings["Post to LiveJournal"] = "Post do LiveJournal";
$a->strings["LiveJournal Post Settings"] = "Ustawienia postów do LiveJournal";
$a->strings["Enable LiveJournal Post Plugin"] = "";
$a->strings["LiveJournal username"] = "Nazwa użytkownika do LiveJournal";
$a->strings["LiveJournal password"] = "Hasło do LiveJournal";
$a->strings["Post to LiveJournal by default"] = "automatycznie publikuj na LiveJournal";
$a->strings["The MathJax addon renders mathematical formulae written using the LaTeX syntax surrounded by the usual $$ or an eqnarray block in the postings of your wall,network tab and private mail."] = "";
$a->strings["Use the MathJax renderer"] = "";
$a->strings["MathJax Base URL"] = "";
$a->strings["The URL for the javascript file that should be included to use MathJax. Can be either the MathJax CDN or another installation of MathJax."] = "";
$a->strings["Member since:"] = "Data dołączenia:";
$a->strings["bitchslap"] = "";
$a->strings["bitchslapped"] = "";
$a->strings["shag"] = "";
$a->strings["shagged"] = "";
$a->strings["do something obscenely biological to"] = "";
$a->strings["did something obscenely biological to"] = "";
$a->strings["point out the poke feature to"] = "";
$a->strings["pointed out the poke feature to"] = "";
$a->strings["declare undying love for"] = "";
$a->strings["declared undying love for"] = "";
$a->strings["patent"] = "";
$a->strings["patented"] = "";
$a->strings["stroke beard"] = "";
$a->strings["stroked their beard at"] = "";
$a->strings["bemoan the declining standards of modern secondary and tertiary education to"] = "";
$a->strings["bemoans the declining standards of modern secondary and tertiary education to"] = "";
$a->strings["hug"] = "przytul";
$a->strings["hugged"] = "przytulony";
$a->strings["kiss"] = "pocałuj";
$a->strings["kissed"] = "pocałowany";
$a->strings["raise eyebrows at"] = "";
$a->strings["raised their eyebrows at"] = "";
$a->strings["insult"] = "";
$a->strings["insulted"] = "";
$a->strings["praise"] = "";
$a->strings["praised"] = "";
$a->strings["be dubious of"] = "";
$a->strings["was dubious of"] = "";
$a->strings["eat"] = "";
$a->strings["ate"] = "";
$a->strings["giggle and fawn at"] = "";
$a->strings["giggled and fawned at"] = "";
$a->strings["doubt"] = "";
$a->strings["doubted"] = "";
$a->strings["glare"] = "";
$a->strings["glared at"] = "";
$a->strings["No Timeline settings updated."] = "";
$a->strings["No Timeline Settings"] = "Brak ustawień Osi czasu";
$a->strings["Disable Archive selector on profile wall"] = "";
$a->strings["Not Safe For Work (General Purpose Content Filter) settings"] = "";
$a->strings["This plugin looks in posts for the words/text you specify below, and collapses any content containing those keywords so it is not displayed at inappropriate times, such as sexual innuendo that may be improper in a work setting. It is polite and recommended to tag any content containing nudity with #NSFW. This filter can also match any other word/text you specify, and can thereby be used as a general purpose content filter."] = "";
$a->strings["Enable Content filter"] = "";
$a->strings["Comma separated list of keywords to hide"] = "";
$a->strings["Use /expression/ to provide regular expressions"] = "";
$a->strings["NSFW Settings saved."] = "NSFW Ustawienia zapisane.";
$a->strings["%s - Click to open/close"] = "%s - kliknij by otworzyć/zamknąć";
$a->strings["Numfriends settings updated."] = "";
$a->strings["Numfriends Settings"] = "";
$a->strings["OEmbed settings updated"] = "";
$a->strings["Use OEmbed for YouTube videos"] = "";
$a->strings["URL to embed:"] = "URL do osadzenia";
$a->strings["Tile Server URL"] = "Nazwa URL Serwera";
$a->strings["A list of <a href=\"http://wiki.openstreetmap.org/wiki/TMS\" target=\"_blank\">public tile servers</a>"] = "";
$a->strings["Default zoom"] = "Domyślne przybliżenie";
$a->strings["The default zoom level. (1:world, 18:highest)"] = "";
$a->strings["show more"] = "Pokaż więcej";
$a->strings["Page settings updated."] = "Zaktualizowano ustawienia strony.";
$a->strings["Page Settings"] = "Ustawienia strony";
$a->strings["How many forums to display on sidebar without paging"] = "";
$a->strings["Randomise Page/Forum list"] = "";
$a->strings["Show pages/forums on profile page"] = "";
$a->strings["\"pageheader\" Settings"] = "";
$a->strings["pageheader Settings saved."] = "";
$a->strings["This website is tracked using the <a href='http://www.piwik.org'>Piwik</a> analytics tool."] = "";
$a->strings["If you do not want that your visits are logged this way you <a href='%s'>can set a cookie to prevent Piwik from tracking further visits of the site</a> (opt-out)."] = "";
$a->strings["Piwik Base URL"] = "Piwik podstawowy adres URL";
$a->strings["Absolute path to your Piwik installation. (without protocol (http/s), with trailing slash)"] = "";
$a->strings["Site ID"] = "ID strony";
$a->strings["Show opt-out cookie link?"] = "";
$a->strings["Asynchronous tracking"] = "";
$a->strings["Planets Settings"] = "Ustawienia Planets";
$a->strings["Enable Planets Plugin"] = "";
$a->strings["Post to Posterous"] = "";
$a->strings["Posterous Post Settings"] = "";
$a->strings["Enable Posterous Post Plugin"] = "";
$a->strings["Posterous login"] = "";
$a->strings["Posterous password"] = "";
$a->strings["Posterous site ID"] = "";
$a->strings["Posterous API token"] = "";
$a->strings["Post to Posterous by default"] = "";
$a->strings["Lifetime of the cache (in hours)"] = "";
$a->strings["Cache Statistics"] = "";
$a->strings["Number of items"] = "Numery elementów";
$a->strings["Size of the cache"] = "";
$a->strings["Delete the whole cache"] = "";
$a->strings["Your account on %s will expire in a few days."] = "";
$a->strings["Your Friendica account is about to expire."] = "";
$a->strings["Hi %1\$s,\n\nYour account on %2\$s will expire in less than five days. You may keep your account by logging in at least once every 30 days"] = "";
$a->strings[":-)"] = ":-)";
$a->strings[":-("] = ":-(";
$a->strings["lol"] = "lol";
$a->strings["Quick Comment Settings"] = "Ustawienia szybkiego komentowania";
$a->strings["Quick comments are found near comment boxes, sometimes hidden. Click them to provide simple replies."] = "";
$a->strings["Enter quick comments, one per line"] = "";
$a->strings["Quick Comment settings saved."] = "";
$a->strings["Randplace Settings"] = "Ustawienia Randplace";
$a->strings["Enable Randplace Plugin"] = "Włącz Randplace Plugin";
$a->strings["\"Show more\" Settings"] = "\"Pokaż więcej\" ustawień";
$a->strings["Enable Show More"] = "";
$a->strings["Cutting posts after how much characters"] = "";
$a->strings["Show More Settings saved."] = "";
$a->strings["StatusNet AutoFollow settings updated."] = "";
$a->strings["StatusNet AutoFollow Settings"] = "";
$a->strings["Automatically follow any StatusNet followers/mentioners"] = "";
$a->strings["Startpage Settings"] = "Ustawienia strony startowej";
$a->strings["Home page to load after login - leave blank for profile wall"] = "";
$a->strings["Examples: &quot;network&quot; or &quot;notifications/system&quot;"] = "";
$a->strings["Post to StatusNet"] = "Wyślij do sieci StatusNet";
$a->strings["Please contact your site administrator.<br />The provided API URL is not valid."] = "Proszę się skontaktować z administratorem strony. <br /> API URL nie jest poprawne";
$a->strings["We could not contact the StatusNet API with the Path you entered."] = "";
$a->strings["StatusNet settings updated."] = "Ustawienia StatusNet zaktualizowane";
$a->strings["StatusNet Posting Settings"] = "Ustawienia StatusNet";
$a->strings["Globally Available StatusNet OAuthKeys"] = "";
$a->strings["There are preconfigured OAuth key pairs for some StatusNet servers available. If you are useing one of them, please use these credentials. If not feel free to connect to any other StatusNet instance (see below)."] = "";
$a->strings["Provide your own OAuth Credentials"] = "";
$a->strings["No consumer key pair for StatusNet found. Register your Friendica Account as an desktop client on your StatusNet account, copy the consumer key pair here and enter the API base root.<br />Before you register your own OAuth key pair ask the administrator if there is already a key pair for this Friendica installation at your favorited StatusNet installation."] = "";
$a->strings["OAuth Consumer Key"] = "";
$a->strings["OAuth Consumer Secret"] = "";
$a->strings["Base API Path (remember the trailing /)"] = "";
$a->strings["To connect to your StatusNet account click the button below to get a security code from StatusNet which you have to copy into the input box below and submit the form. Only your <strong>public</strong> posts will be posted to StatusNet."] = "Aby uzyskać połączenie z kontem w serwisie StatusNet naciśnij przycisk poniżej aby otrzymać kod bezpieczeństwa od StatusNet, który musisz skopiować do pola poniżej i wysłać formularz. Tylko twoje <strong>publiczne</strong> posty będą publikowane na StatusNet.";
$a->strings["Log in with StatusNet"] = "Zaloguj się przez StatusNet";
$a->strings["Copy the security code from StatusNet here"] = "Tutaj skopiuj kod bezpieczeństwa z StatusNet";
$a->strings["Cancel Connection Process"] = "Anuluj proces łączenia";
$a->strings["Current StatusNet API is"] = "Aktualnym StatusNet API jest";
$a->strings["Cancel StatusNet Connection"] = "Anuluj połączenie StatusNet";
$a->strings["Currently connected to: "] = "Obecnie połączone z:";
$a->strings["If enabled all your <strong>public</strong> postings can be posted to the associated StatusNet account. You can choose to do so by default (here) or for every posting separately in the posting options when writing the entry."] = "";
$a->strings["<strong>Note</strong>: Due your privacy settings (<em>Hide your profile details from unknown viewers?</em>) the link potentially included in public postings relayed to StatusNet will lead the visitor to a blank page informing the visitor that the access to your profile has been restricted."] = "";
$a->strings["Allow posting to StatusNet"] = "Pozwól zamieszczać posty na StatusNet";
$a->strings["Send public postings to StatusNet by default"] = "";
$a->strings["Send linked #-tags and @-names to StatusNet"] = "";
$a->strings["Clear OAuth configuration"] = "";
$a->strings["Site name"] = "Nazwa strony";
$a->strings["API URL"] = "Adres API";
$a->strings["Consumer Secret"] = "Sekret konsumenta";
$a->strings["Consumer Key"] = "Klucz konsumenta";
$a->strings["Your Friendica test account is about to expire."] = "";
$a->strings["Hi %1\$s,\n\nYour test account on %2\$s will expire in less than five days. We hope you enjoyed this test drive and use this opportunity to find a permanent Friendica website for your integrated social communications. A list of public sites is available at http://dir.friendica.com/siteinfo - and for more information on setting up your own Friendica server please see the Friendica project website at http://friendica.com."] = "";
$a->strings["Three Dimensional Tic-Tac-Toe"] = "Trójwymiarowy Kółko i krzyżyk";
$a->strings["3D Tic-Tac-Toe"] = "Kółko i krzyżyk 3D";
$a->strings["New game"] = "Nowa gra";
$a->strings["New game with handicap"] = "Nowa gra z utrudnieniem";
$a->strings["Three dimensional tic-tac-toe is just like the traditional game except that it is played on multiple levels simultaneously. "] = "Trójwymiarowy tic-tac-toe jest taki sam jak tradycyjna gra, nie licząc tego, że jest grana na kilku poziomach jednocześnie.";
$a->strings["In this case there are three levels. You win by getting three in a row on any level, as well as up, down, and diagonally across the different levels."] = "W tym przypadku są trzy poziomy. Wygrywasz poprzez zdobycie trójki w szeregu na którymkolwiek z poziomów zarówno u góry, na dole, jak i na ukos poprzez kilka różnych poziomów.";
$a->strings["The handicap game disables the center position on the middle level because the player claiming this square often has an unfair advantage."] = "";
$a->strings["You go first..."] = "Ty pierwszy...";
$a->strings["I'm going first this time..."] = "Zaczynam...";
$a->strings["You won!"] = "Wygrałeś!";
$a->strings["\"Cat\" game!"] = "Gra \"Kot\"!";
$a->strings["I won!"] = "Wygrałem!";
$a->strings["Post to Tumblr"] = "Opublikuj na Tumblrze";
$a->strings["Tumblr Post Settings"] = "Ustawienia postu Tumblr";
$a->strings["Enable Tumblr Post Plugin"] = "Zezwól na wtyczkę postu Tumblr";
$a->strings["Tumblr login"] = "Login Tumblr";
$a->strings["Tumblr password"] = "Hasło do twojego Tumblra";
$a->strings["Post to Tumblr by default"] = "Post do Tumblr przez standard";
$a->strings["Post to Twitter"] = "Post na Twitter";
$a->strings["Twitter settings updated."] = "Zaktualizowano ustawienia Twittera.";
$a->strings["Twitter Posting Settings"] = "Ustawienia wpisów z Twittera";
$a->strings["No consumer key pair for Twitter found. Please contact your site administrator."] = "Nie znaleziono pary dla Twittera. Proszę skontaktować się z admininstratorem strony.";
$a->strings["At this Friendica instance the Twitter plugin was enabled but you have not yet connected your account to your Twitter account. To do so click the button below to get a PIN from Twitter which you have to copy into the input box below and submit the form. Only your <strong>public</strong> posts will be posted to Twitter."] = "";
$a->strings["Log in with Twitter"] = "Zaloguj się przez Twitter";
$a->strings["Copy the PIN from Twitter here"] = "Skopiuj tutaj PIN z Twittera";
$a->strings["If enabled all your <strong>public</strong> postings can be posted to the associated Twitter account. You can choose to do so by default (here) or for every posting separately in the posting options when writing the entry."] = "";
$a->strings["<strong>Note</strong>: Due your privacy settings (<em>Hide your profile details from unknown viewers?</em>) the link potentially included in public postings relayed to Twitter will lead the visitor to a blank page informing the visitor that the access to your profile has been restricted."] = "";
$a->strings["Allow posting to Twitter"] = "Zezwól na opublikowanie w serwisie Twitter";
$a->strings["Send public postings to Twitter by default"] = "";
$a->strings["Send linked #-tags and @-names to Twitter"] = "";
$a->strings["Consumer key"] = "Klucz konsumenta";
$a->strings["Consumer secret"] = "Sekret konsumenta";
$a->strings["Allow to use your friendica id (%s) to connecto to external unhosted-enabled storage (like ownCloud). See <a href=\"http://www.w3.org/community/unhosted/wiki/RemoteStorage#WebFinger\">RemoteStorage WebFinger</a>"] = "";
$a->strings["Template URL (with {category})"] = "";
$a->strings["OAuth end-point"] = "";
$a->strings["Api"] = "Api";
$a->strings["View Source"] = "Podgląd źródła";
$a->strings["Get added to this list!"] = "Zostań dodany do listy!";
$a->strings["Connect on Friendica!"] = "Połączono z Friendica!";
$a->strings["%d person likes this"] = array(
0 => " %d osoba lubi to",
1 => " %d osób lubi to",
2 => " %d osób lubi to",
);
$a->strings["%d person doesn't like this"] = array(
0 => " %d osoba nie lubi tego",
1 => " %d osób tego nie lubi",
2 => " %d osób tego nie lubi",
);
$a->strings["Generate new key"] = "Stwórz nowy klucz";
$a->strings["Widgets key"] = "";
$a->strings["Widgets available"] = "Widgety są dostępne";
$a->strings["Plugin Settings"] = "Ustawienia wtyczki";
$a->strings["Post to Wordpress"] = "Opublikuj na Wordpress";
$a->strings["WordPress Post Settings"] = "Ustawienia wpisów WorldPress";
$a->strings["Enable WordPress Post Plugin"] = "Włącz plugin wpisów WorldPress";
$a->strings["WordPress username"] = "nazwa użytkownika WordPress";
$a->strings["WordPress password"] = "hasło WordPress";
$a->strings["WordPress API URL"] = "WordPress API URL";
$a->strings["Post to WordPress by default"] = "Domyślnie opublikuj na Wordpress";
$a->strings["Provide a backlink to the Friendica post"] = "";
$a->strings["Read the original post and comment stream on Friendica"] = "";
$a->strings["YourLS Settings"] = "";
$a->strings["URL: http://"] = "URL: http://";
$a->strings["Username:"] = "Nazwa użytkownika:";
$a->strings["Password:"] = "Hasło:";
$a->strings["Use SSL "] = "Użyj SSL";
$a->strings["yourls Settings saved."] = "";
$a->strings["Global"] = "Ogólne";
$a->strings["Force global use of the alternate pager"] = "";
$a->strings["Individual"] = "Indywidualne";
$a->strings["Each user chooses whether to use the alternate pager"] = "";
$a->strings["Suppress \"View on friendica\""] = "";
$a->strings["Mirror wall posts from facebook to friendica."] = "";
$a->strings["Post to page/group:"] = "Napisz na stronę/grupę:";
$a->strings["%s:"] = "";
$a->strings["Forum Directory"] = "Katalog Forum";
$a->strings["Public access denied."] = "Publiczny dostęp zabroniony";
$a->strings["Global Directory"] = "Globalne Położenie";
$a->strings["Find on this site"] = "Znajdź na tej stronie";
$a->strings["Finding: "] = "Znalezione:";
$a->strings["Site Directory"] = "Katalog Strony";
$a->strings["Find"] = "Znajdź";
$a->strings["Age: "] = "Wiek: ";
$a->strings["Gender: "] = "Płeć: ";
$a->strings["Location:"] = "Lokalizacja";
$a->strings["Gender:"] = "Płeć:";
$a->strings["Status:"] = "Status";
$a->strings["Homepage:"] = "Strona główna:";
$a->strings["About:"] = "O:";
$a->strings["No entries (some entries may be hidden)."] = "Brak odwiedzin (niektóre odwiedziny mogą być ukryte).";
$a->strings["Group Text settings updated."] = "";
$a->strings["Remote Permissions Settings"] = "";
$a->strings["Allow recipients of your private posts to see the other recipients of the posts"] = "";
$a->strings["Remote Permissions settings updated."] = "";
$a->strings["Visible to:"] = "Widoczne dla:";
$a->strings["Visible to"] = "Widoczne dla";
$a->strings["may only be a partial list"] = "";
$a->strings["The posts of every user on this server show the post recipients"] = "";
$a->strings["Each user chooses whether his/her posts show the post recipients"] = "";
$a->strings["Mirror all posts from statusnet that are no replies or repeated messages"] = "";
$a->strings["Shortening method that optimizes the post"] = "";
$a->strings["You are now authenticated to tumblr."] = "";
$a->strings["return to the connector page"] = "";
$a->strings["(Re-)Authenticate your tumblr page"] = "";
$a->strings["Post to page:"] = "Napisz na stronę:";
$a->strings["You are not authenticated to tumblr"] = "";
$a->strings["Mirror all posts from twitter that are no replies or retweets"] = "";
$a->strings["Shortening method that optimizes the tweet"] = "";
$a->strings["Name of the Twitter Application"] = "";
$a->strings["set this to avoid mirroring postings from ~friendica back to ~friendica"] = "";
$a->strings["Profile"] = "Profil";
$a->strings["Full Name:"] = "Imię i nazwisko:";
$a->strings["Gender:"] = "Płeć:";
$a->strings["j F, Y"] = "d M, R";
$a->strings["j F"] = "d M";
$a->strings["Birthday:"] = "Urodziny:";
$a->strings["Age:"] = "Wiek:";
$a->strings["Status:"] = "Status";
$a->strings["for %1\$d %2\$s"] = "od %1\$d %2\$s";
$a->strings["Sexual Preference:"] = "Interesują mnie:";
$a->strings["Homepage:"] = "Strona główna:";
$a->strings["Hometown:"] = "Miasto rodzinne:";
$a->strings["Tags:"] = "Tagi:";
$a->strings["Political Views:"] = "Poglądy polityczne:";
$a->strings["Religion:"] = "Religia:";
$a->strings["About:"] = "O:";
$a->strings["Hobbies/Interests:"] = "Hobby/Zainteresowania:";
$a->strings["Likes:"] = "Lubi:";
$a->strings["Dislikes:"] = "";
@ -705,9 +112,10 @@ $a->strings["%d Contact"] = array(
);
$a->strings["View Contacts"] = "widok kontaktów";
$a->strings["Search"] = "Szukaj";
$a->strings["Save"] = "Zapisz";
$a->strings["poke"] = "zaczep";
$a->strings["poked"] = "zaczepiony";
$a->strings["ping"] = "";
$a->strings["ping"] = "ping";
$a->strings["pinged"] = "";
$a->strings["prod"] = "";
$a->strings["prodded"] = "";
@ -737,6 +145,13 @@ $a->strings["frustrated"] = "rozbity";
$a->strings["motivated"] = "zmotywowany";
$a->strings["relaxed"] = "zrelaksowany";
$a->strings["surprised"] = "zaskoczony";
$a->strings["Monday"] = "Poniedziałek";
$a->strings["Tuesday"] = "Wtorek";
$a->strings["Wednesday"] = "Środa";
$a->strings["Thursday"] = "Czwartek";
$a->strings["Friday"] = "Piątek";
$a->strings["Saturday"] = "Sobota";
$a->strings["Sunday"] = "Niedziela";
$a->strings["January"] = "Styczeń";
$a->strings["February"] = "Luty";
$a->strings["March"] = "Marzec";
@ -754,6 +169,8 @@ $a->strings["Click to open/close"] = "Kliknij aby otworzyć/zamknąć";
$a->strings["link to source"] = "link do źródła";
$a->strings["default"] = "standardowe";
$a->strings["Select an alternate language"] = "Wybierz alternatywny język";
$a->strings["event"] = "wydarzenie";
$a->strings["photo"] = "zdjęcie";
$a->strings["activity"] = "aktywność";
$a->strings["comment"] = array(
0 => "",
@ -785,6 +202,7 @@ $a->strings["Done. You can now login with your username and password"] = "Wykona
$a->strings["l F d, Y \\@ g:i A"] = "";
$a->strings["Starts:"] = "Start:";
$a->strings["Finishes:"] = "Wykończenia:";
$a->strings["Location:"] = "Lokalizacja";
$a->strings["Disallowed profile URL."] = "Nie dozwolony adres URL profilu.";
$a->strings["Connect URL missing."] = "Brak adresu URL połączenia.";
$a->strings["This site is not configured to allow communications with other networks."] = "Ta strona nie jest skonfigurowana do pozwalania na komunikację z innymi sieciami";
@ -814,6 +232,7 @@ $a->strings["Nickname was once registered here and may not be re-used. Please ch
$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "POWAŻNY BŁĄD: niepowodzenie podczas tworzenia kluczy zabezpieczeń.";
$a->strings["An error occurred during registration. Please try again."] = "Wystąpił bład podczas rejestracji, Spróbuj ponownie.";
$a->strings["An error occurred creating your default profile. Please try again."] = "Wystąpił błąd podczas tworzenia profilu. Spróbuj ponownie.";
$a->strings["Profile Photos"] = "Zdjęcia profilowe";
$a->strings["Unknown | Not categorised"] = "Nieznany | Bez kategori";
$a->strings["Block immediately"] = "Zablokować natychmiast ";
$a->strings["Shady, spammer, self-marketer"] = "";
@ -823,16 +242,20 @@ $a->strings["Reputable, has my trust"] = "Zaufane, ma moje poparcie";
$a->strings["Frequently"] = "Jak najczęściej";
$a->strings["Hourly"] = "Godzinowo";
$a->strings["Twice daily"] = "Dwa razy dziennie";
$a->strings["Daily"] = "Dziennie";
$a->strings["Weekly"] = "Tygodniowo";
$a->strings["Monthly"] = "Miesięcznie";
$a->strings["Friendica"] = "Friendica";
$a->strings["OStatus"] = "OStatus";
$a->strings["RSS/Atom"] = "RSS/Atom";
$a->strings["Email"] = "E-mail";
$a->strings["Diaspora"] = "Diaspora";
$a->strings["Facebook"] = "Facebook";
$a->strings["Zot!"] = "";
$a->strings["LinkedIn"] = "LinkedIn";
$a->strings["XMPP/IM"] = "XMPP/IM";
$a->strings["MySpace"] = "MySpace";
$a->strings["Google+"] = "";
$a->strings["Google+"] = "Google+";
$a->strings["Add New Contact"] = "Dodaj nowy kontakt";
$a->strings["Enter address or web location"] = "Wpisz adres lub lokalizację sieciową";
$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Przykład: bob@przykład.com, http://przykład.com/barbara";
@ -846,6 +269,7 @@ $a->strings["Find People"] = "Znajdź ludzi";
$a->strings["Enter name or interest"] = "Wpisz nazwę lub zainteresowanie";
$a->strings["Connect/Follow"] = "Połącz/Obserwuj";
$a->strings["Examples: Robert Morgenstein, Fishing"] = "Przykładowo: Jan Kowalski, Wędkarstwo";
$a->strings["Find"] = "Znajdź";
$a->strings["Friend Suggestions"] = "Osoby, które możesz znać";
$a->strings["Similar Interests"] = "Podobne zainteresowania";
$a->strings["Random Profile"] = "Domyślny profil";
@ -860,6 +284,7 @@ $a->strings["%d contact in common"] = array(
1 => "",
2 => "",
);
$a->strings["show more"] = "Pokaż więcej";
$a->strings[" on Last.fm"] = "na Last.fm";
$a->strings["Image/photo"] = "Obrazek/zdjęcie";
$a->strings["<span><a href=\"%s\" target=\"external-link\">%s</a> wrote the following <a href=\"%s\" target=\"external-link\">post</a>"] = "";
@ -871,7 +296,11 @@ $a->strings["month"] = "miesiąc";
$a->strings["day"] = "dzień";
$a->strings["never"] = "nigdy";
$a->strings["less than a second ago"] = "mniej niż sekundę temu";
$a->strings["years"] = "lata";
$a->strings["months"] = "miesiące";
$a->strings["week"] = "tydzień";
$a->strings["weeks"] = "tygodnie";
$a->strings["days"] = "dni";
$a->strings["hour"] = "godzina";
$a->strings["hours"] = "godziny";
$a->strings["minute"] = "minuta";
@ -879,72 +308,30 @@ $a->strings["minutes"] = "minuty";
$a->strings["second"] = "sekunda";
$a->strings["seconds"] = "sekundy";
$a->strings["%1\$d %2\$s ago"] = "";
$a->strings["%s's birthday"] = "";
$a->strings["%s's birthday"] = "Urodziny %s";
$a->strings["Happy Birthday %s"] = "";
$a->strings["[Name Withheld]"] = "[Nazwa wstrzymana]";
$a->strings["A new person is sharing with you at "] = "";
$a->strings["You have a new follower at "] = "";
$a->strings["Item not found."] = "Element nie znaleziony.";
$a->strings["Do you really want to delete this item?"] = "";
$a->strings["Yes"] = "Tak";
$a->strings["Archives"] = "Archiwum";
$a->strings["Click here to upgrade."] = "Kliknij tu, aby zaktualizować.";
$a->strings["This action exceeds the limits set by your subscription plan."] = "";
$a->strings["This action is not available under your subscription plan."] = "";
$a->strings["(no subject)"] = "(bez tematu)";
$a->strings["noreply"] = "brak odpowiedzi";
$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s jest teraz znajomym z %2\$s";
$a->strings["Sharing notification from Diaspora network"] = "Wspólne powiadomienie z sieci Diaspora";
$a->strings["status"] = "status";
$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s lubi %2\$s's %3\$s";
$a->strings["Attachments:"] = "Załączniki:";
$a->strings["Friendica Notification"] = "Powiadomienia Friendica";
$a->strings["Thank You,"] = "Dziękuję,";
$a->strings["%s Administrator"] = "%s administrator";
$a->strings["%s <!item_type!>"] = "";
$a->strings["[Friendica:Notify] New mail received at %s"] = "[Friendica:Notify] Nowa wiadomość otrzymana od %s";
$a->strings["%1\$s sent you a new private message at %2\$s."] = "";
$a->strings["%1\$s sent you %2\$s."] = "%1\$s wysyła ci %2\$s";
$a->strings["a private message"] = "prywatna wiadomość";
$a->strings["Please visit %s to view and/or reply to your private messages."] = "Odwiedź %s żeby zobaczyć i/lub odpowiedzieć na twoje prywatne wiadomości";
$a->strings["%1\$s commented on [url=%2\$s]a %3\$s[/url]"] = "";
$a->strings["%1\$s commented on [url=%2\$s]%3\$s's %4\$s[/url]"] = "";
$a->strings["%1\$s commented on [url=%2\$s]your %3\$s[/url]"] = "";
$a->strings["[Friendica:Notify] Comment to conversation #%1\$d by %2\$s"] = "";
$a->strings["%s commented on an item/conversation you have been following."] = "%s skomentował rozmowę którą śledzisz";
$a->strings["Please visit %s to view and/or reply to the conversation."] = "Odwiedź %s żeby zobaczyć i/lub odpowiedzieć na rozmowę";
$a->strings["[Friendica:Notify] %s posted to your profile wall"] = "[Friendica:Notify] %s napisał na twoim profilu";
$a->strings["%1\$s posted to your profile wall at %2\$s"] = "";
$a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = "";
$a->strings["[Friendica:Notify] %s tagged you"] = "[Friendica:Notify] %s oznaczył cię";
$a->strings["%1\$s tagged you at %2\$s"] = "";
$a->strings["%1\$s [url=%2\$s]tagged you[/url]."] = "";
$a->strings["[Friendica:Notify] %1\$s poked you"] = "";
$a->strings["%1\$s poked you at %2\$s"] = "";
$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = "";
$a->strings["[Friendica:Notify] %s tagged your post"] = "";
$a->strings["%1\$s tagged your post at %2\$s"] = "";
$a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = "";
$a->strings["[Friendica:Notify] Introduction received"] = "";
$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = "";
$a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = "";
$a->strings["You may visit their profile at %s"] = "Możesz obejrzeć ich profile na %s";
$a->strings["Please visit %s to approve or reject the introduction."] = "Odwiedż %s aby zatwierdzić lub odrzucić przedstawienie.";
$a->strings["[Friendica:Notify] Friend suggestion received"] = "";
$a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "";
$a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from %3\$s."] = "";
$a->strings["Name:"] = "Imię:";
$a->strings["Photo:"] = "Zdjęcie:";
$a->strings["Please visit %s to approve or reject the suggestion."] = "";
$a->strings["General Features"] = "";
$a->strings["Multiple Profiles"] = "";
$a->strings["Ability to create multiple profiles"] = "";
$a->strings["Post Composition Features"] = "";
$a->strings["Richtext Editor"] = "";
$a->strings["Enable richtext editor"] = "";
$a->strings["Post Preview"] = "";
$a->strings["Post Preview"] = "Podgląd posta";
$a->strings["Allow previewing posts and comments before publishing them"] = "";
$a->strings["Network Sidebar Widgets"] = "";
$a->strings["Search by Date"] = "Szukanie wg daty";
$a->strings["Ability to select posts by date ranges"] = "";
$a->strings["Group Filter"] = "";
$a->strings["Group Filter"] = "Filtrowanie grupowe";
$a->strings["Enable widget to display Network posts only from selected group"] = "";
$a->strings["Network Filter"] = "";
$a->strings["Enable widget to display Network posts only from selected network"] = "";
@ -965,7 +352,7 @@ $a->strings["Edit and correct posts and comments after sending"] = "";
$a->strings["Tagging"] = "";
$a->strings["Ability to tag existing posts"] = "";
$a->strings["Post Categories"] = "";
$a->strings["Add categories to your posts"] = "";
$a->strings["Add categories to your posts"] = "Dodaj kategorie do twoich postów";
$a->strings["Ability to file posts under folders"] = "";
$a->strings["Dislike Posts"] = "";
$a->strings["Ability to dislike posts/comments"] = "";
@ -997,7 +384,7 @@ $a->strings["View in context"] = "Zobacz w kontekście";
$a->strings["Please wait"] = "Proszę czekać";
$a->strings["remove"] = "usuń";
$a->strings["Delete Selected Items"] = "Usuń zaznaczone elementy";
$a->strings["Follow Thread"] = "";
$a->strings["Follow Thread"] = "Śledź wątek";
$a->strings["%s likes this."] = "%s lubi to.";
$a->strings["%s doesn't like this."] = "%s nie lubi tego.";
$a->strings["<span %1\$s>%2\$d people</span> like this"] = "";
@ -1038,13 +425,52 @@ $a->strings["CC: email addresses"] = "CC: adresy e-mail";
$a->strings["Public post"] = "Publiczny post";
$a->strings["Example: bob@example.com, mary@example.com"] = "Przykład: bob@example.com, mary@example.com";
$a->strings["Preview"] = "Podgląd";
$a->strings["Cancel"] = "Anuluj";
$a->strings["Post to Groups"] = "";
$a->strings["Post to Contacts"] = "";
$a->strings["Private post"] = "";
$a->strings["Private post"] = "Prywatne posty";
$a->strings["Friendica Notification"] = "Powiadomienia Friendica";
$a->strings["Thank You,"] = "Dziękuję,";
$a->strings["%s Administrator"] = "%s administrator";
$a->strings["%s <!item_type!>"] = "";
$a->strings["[Friendica:Notify] New mail received at %s"] = "[Friendica:Notify] Nowa wiadomość otrzymana od %s";
$a->strings["%1\$s sent you a new private message at %2\$s."] = "";
$a->strings["%1\$s sent you %2\$s."] = "%1\$s wysyła ci %2\$s";
$a->strings["a private message"] = "prywatna wiadomość";
$a->strings["Please visit %s to view and/or reply to your private messages."] = "Odwiedź %s żeby zobaczyć i/lub odpowiedzieć na twoje prywatne wiadomości";
$a->strings["%1\$s commented on [url=%2\$s]a %3\$s[/url]"] = "";
$a->strings["%1\$s commented on [url=%2\$s]%3\$s's %4\$s[/url]"] = "";
$a->strings["%1\$s commented on [url=%2\$s]your %3\$s[/url]"] = "";
$a->strings["[Friendica:Notify] Comment to conversation #%1\$d by %2\$s"] = "";
$a->strings["%s commented on an item/conversation you have been following."] = "%s skomentował rozmowę którą śledzisz";
$a->strings["Please visit %s to view and/or reply to the conversation."] = "Odwiedź %s żeby zobaczyć i/lub odpowiedzieć na rozmowę";
$a->strings["[Friendica:Notify] %s posted to your profile wall"] = "[Friendica:Notify] %s napisał na twoim profilu";
$a->strings["%1\$s posted to your profile wall at %2\$s"] = "";
$a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = "";
$a->strings["[Friendica:Notify] %s tagged you"] = "[Friendica:Notify] %s oznaczył cię";
$a->strings["%1\$s tagged you at %2\$s"] = "";
$a->strings["%1\$s [url=%2\$s]tagged you[/url]."] = "";
$a->strings["[Friendica:Notify] %1\$s poked you"] = "";
$a->strings["%1\$s poked you at %2\$s"] = "";
$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = "";
$a->strings["[Friendica:Notify] %s tagged your post"] = "";
$a->strings["%1\$s tagged your post at %2\$s"] = "";
$a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = "";
$a->strings["[Friendica:Notify] Introduction received"] = "";
$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = "";
$a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = "";
$a->strings["You may visit their profile at %s"] = "Możesz obejrzeć ich profile na %s";
$a->strings["Please visit %s to approve or reject the introduction."] = "Odwiedż %s aby zatwierdzić lub odrzucić przedstawienie.";
$a->strings["[Friendica:Notify] Friend suggestion received"] = "";
$a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "";
$a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from %3\$s."] = "";
$a->strings["Name:"] = "Imię:";
$a->strings["Photo:"] = "Zdjęcie:";
$a->strings["Please visit %s to approve or reject the suggestion."] = "";
$a->strings["[no subject]"] = "[bez tematu]";
$a->strings["Wall Photos"] = "Tablica zdjęć";
$a->strings["Nothing new here"] = "Brak nowych zdarzeń";
$a->strings["Clear notifications"] = "";
$a->strings["Clear notifications"] = "Wyczyść powiadomienia";
$a->strings["Logout"] = "Wyloguj się";
$a->strings["End this session"] = "Zakończ sesję";
$a->strings["Status"] = "Status";
@ -1056,11 +482,13 @@ $a->strings["Events"] = "Wydarzenia";
$a->strings["Your events"] = "Twoje wydarzenia";
$a->strings["Personal notes"] = "Osobiste notatki";
$a->strings["Your personal photos"] = "Twoje osobiste zdjęcia";
$a->strings["Login"] = "Login";
$a->strings["Sign in"] = "Zaloguj się";
$a->strings["Home"] = "Dom";
$a->strings["Home Page"] = "Strona startowa";
$a->strings["Register"] = "Zarejestruj";
$a->strings["Create an account"] = "Załóż konto";
$a->strings["Help"] = "Pomoc";
$a->strings["Help and documentation"] = "Pomoc i dokumentacja";
$a->strings["Apps"] = "Aplikacje";
$a->strings["Addon applications, utilities, games"] = "Wtyczki, aplikacje, narzędzia, gry";
@ -1087,6 +515,7 @@ $a->strings["Manage"] = "Zarządzaj";
$a->strings["Manage other pages"] = "Zarządzaj innymi stronami";
$a->strings["Delegations"] = "";
$a->strings["Delegate Page Management"] = "";
$a->strings["Settings"] = "Ustawienia";
$a->strings["Account settings"] = "Ustawienia konta";
$a->strings["Profiles"] = "Profile";
$a->strings["Manage/Edit Profiles"] = "";
@ -1095,10 +524,18 @@ $a->strings["Manage/edit friends and contacts"] = "Zarządzaj listą przyjació
$a->strings["Admin"] = "Administator";
$a->strings["Site setup and configuration"] = "Konfiguracja i ustawienia instancji";
$a->strings["Navigation"] = "";
$a->strings["Site map"] = "";
$a->strings["Site map"] = "Mapa strony";
$a->strings["view full size"] = "Zobacz pełen rozmiar";
$a->strings["Embedded content"] = "Osadzona zawartość";
$a->strings["Embedding disabled"] = "Osadzanie wyłączone";
$a->strings["[Name Withheld]"] = "[Nazwa wstrzymana]";
$a->strings["A new person is sharing with you at "] = "";
$a->strings["You have a new follower at "] = "";
$a->strings["Item not found."] = "Element nie znaleziony.";
$a->strings["Do you really want to delete this item?"] = "";
$a->strings["Yes"] = "Tak";
$a->strings["Permission denied."] = "Brak uprawnień.";
$a->strings["Archives"] = "Archiwum";
$a->strings["Welcome "] = "Witaj ";
$a->strings["Please upload a profile photo."] = "Proszę dodać zdjęcie profilowe.";
$a->strings["Welcome back "] = "Witaj ponownie ";
@ -1111,8 +548,8 @@ $a->strings["Profile unavailable to clone."] = "Nie można powileić profilu ";
$a->strings["Profile Name is required."] = "Nazwa Profilu jest wymagana";
$a->strings["Marital Status"] = "";
$a->strings["Romantic Partner"] = "";
$a->strings["Likes"] = "";
$a->strings["Dislikes"] = "";
$a->strings["Likes"] = "Polubień";
$a->strings["Dislikes"] = "Nie lubień";
$a->strings["Work/Employment"] = "Praca/Zatrudnienie";
$a->strings["Religion"] = "Religia";
$a->strings["Political Views"] = "Poglądy polityczne";
@ -1121,6 +558,7 @@ $a->strings["Sexual Preference"] = "Orientacja seksualna";
$a->strings["Homepage"] = "Strona Główna";
$a->strings["Interests"] = "Zainteresowania";
$a->strings["Address"] = "Adres";
$a->strings["Location"] = "Położenie";
$a->strings["Profile updated."] = "Konto zaktualizowane.";
$a->strings[" and "] = " i ";
$a->strings["public profile"] = "profil publiczny";
@ -1130,6 +568,7 @@ $a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "";
$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Czy chcesz ukryć listę kontaktów dla przeglądających to konto?";
$a->strings["No"] = "Nie";
$a->strings["Edit Profile Details"] = "Edytuj profil.";
$a->strings["Submit"] = "Potwierdź";
$a->strings["Change Profile Photo"] = "Zmień profilowe zdjęcie";
$a->strings["View this profile"] = "Zobacz ten profil";
$a->strings["Create a new profile using these settings"] = "Stwórz nowy profil wykorzystując te ustawienia";
@ -1167,6 +606,7 @@ $a->strings["Love/romance"] = "Miłość/romans";
$a->strings["Work/employment"] = "Praca/zatrudnienie";
$a->strings["School/education"] = "Szkoła/edukacja";
$a->strings["This is your <strong>public</strong> profile.<br />It <strong>may</strong> be visible to anybody using the internet."] = "To jest Twój <strong> publiczny </strong> profil. <br/><strong>Może </strong> zostać wyświetlony przez każdego kto używa internetu.";
$a->strings["Age: "] = "Wiek: ";
$a->strings["Edit/Manage Profiles"] = "Edytuj/Zarządzaj Profilami";
$a->strings["Change profile photo"] = "Zmień zdjęcie profilowe";
$a->strings["Create New Profile"] = "Stwórz nowy profil";
@ -1193,181 +633,6 @@ $a->strings["{0} is now friends with %s"] = "{0} jest teraz znajomym %s";
$a->strings["{0} posted"] = "{0} utworzony";
$a->strings["{0} tagged %s's post with #%s"] = "{0} zaznaczony %s'go post z #%s";
$a->strings["{0} mentioned you in a post"] = "{0} wspomniał Cię w swoim wpisie";
$a->strings["Theme settings updated."] = "";
$a->strings["Site"] = "Strona";
$a->strings["Users"] = "Użytkownicy";
$a->strings["Plugins"] = "Wtyczki";
$a->strings["Themes"] = "Temat";
$a->strings["DB updates"] = "";
$a->strings["Logs"] = "Logi";
$a->strings["Plugin Features"] = "Polecane wtyczki";
$a->strings["User registrations waiting for confirmation"] = "Rejestracje użytkownika czekają na potwierdzenie.";
$a->strings["Normal Account"] = "Konto normalne";
$a->strings["Soapbox Account"] = "Konto Soapbox";
$a->strings["Community/Celebrity Account"] = "Konto społeczności/gwiazdy";
$a->strings["Automatic Friend Account"] = "Automatyczny przyjaciel konta";
$a->strings["Blog Account"] = "";
$a->strings["Private Forum"] = "Forum Prywatne";
$a->strings["Message queues"] = "";
$a->strings["Administration"] = "Administracja";
$a->strings["Summary"] = "Skrót";
$a->strings["Registered users"] = "Zarejestrowani użytkownicy";
$a->strings["Pending registrations"] = "Rejestracje w toku.";
$a->strings["Version"] = "Wersja";
$a->strings["Active plugins"] = "Aktywne pluginy";
$a->strings["Site settings updated."] = "Ustawienia strony zaktualizowane";
$a->strings["No special theme for mobile devices"] = "";
$a->strings["Multi user instance"] = "";
$a->strings["Closed"] = "Zamknięty";
$a->strings["Requires approval"] = "Wymagane zatwierdzenie.";
$a->strings["Open"] = "Otwórz";
$a->strings["No SSL policy, links will track page SSL state"] = "";
$a->strings["Force all links to use SSL"] = "";
$a->strings["Self-signed certificate, use SSL for local links only (discouraged)"] = "";
$a->strings["Registration"] = "Rejestracja";
$a->strings["File upload"] = "Plik załadowano";
$a->strings["Policies"] = "zasady";
$a->strings["Advanced"] = "Zaawansowany";
$a->strings["Performance"] = "";
$a->strings["Banner/Logo"] = "Logo";
$a->strings["System language"] = "Język systemu";
$a->strings["System theme"] = "Motyw systemowy";
$a->strings["Default system theme - may be over-ridden by user profiles - <a href='#' id='cnftheme'>change theme settings</a>"] = "";
$a->strings["Mobile system theme"] = "";
$a->strings["Theme for mobile devices"] = "";
$a->strings["SSL link policy"] = "";
$a->strings["Determines whether generated links should be forced to use SSL"] = "";
$a->strings["'Share' element"] = "";
$a->strings["Activates the bbcode element 'share' for repeating items."] = "";
$a->strings["Hide help entry from navigation menu"] = "";
$a->strings["Hides the menu entry for the Help pages from the navigation menu. You can still access it calling /help directly."] = "";
$a->strings["Single user instance"] = "";
$a->strings["Make this instance multi-user or single-user for the named user"] = "";
$a->strings["Maximum image size"] = "Maksymalny rozmiar zdjęcia";
$a->strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "";
$a->strings["Maximum image length"] = "Maksymalna długość obrazu";
$a->strings["Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits."] = "Maksymalna długość najdłuższej strony przesyłanego obrazu w pikselach.\nDomyślnie jest to -1, co oznacza brak limitu.";
$a->strings["JPEG image quality"] = "jakość obrazu JPEG";
$a->strings["Uploaded JPEGS will be saved at this quality setting [0-100]. Default is 100, which is full quality."] = "";
$a->strings["Register policy"] = "Zarejestruj polisę";
$a->strings["Maximum Daily Registrations"] = "";
$a->strings["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."] = "";
$a->strings["Register text"] = "Zarejestruj tekst";
$a->strings["Will be displayed prominently on the registration page."] = "";
$a->strings["Accounts abandoned after x days"] = "Konto porzucone od x dni.";
$a->strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "";
$a->strings["Allowed friend domains"] = "Dozwolone domeny przyjaciół";
$a->strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "";
$a->strings["Allowed email domains"] = "Dozwolone domeny e-mailowe";
$a->strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "";
$a->strings["Block public"] = "Blokuj publicznie";
$a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = "";
$a->strings["Force publish"] = "Wymuś publikację";
$a->strings["Check to force all profiles on this site to be listed in the site directory."] = "";
$a->strings["Global directory update URL"] = "";
$a->strings["URL to update the global directory. If this is not set, the global directory is completely unavailable to the application."] = "";
$a->strings["Allow threaded items"] = "";
$a->strings["Allow infinite level threading for items on this site."] = "";
$a->strings["Private posts by default for new users"] = "";
$a->strings["Set default post permissions for all new members to the default privacy group rather than public."] = "";
$a->strings["Block multiple registrations"] = "";
$a->strings["Disallow users to register additional accounts for use as pages."] = "";
$a->strings["OpenID support"] = "Wsparcie OpenID";
$a->strings["OpenID support for registration and logins."] = "";
$a->strings["Fullname check"] = "Sprawdzanie pełnej nazwy";
$a->strings["Force users to register with a space between firstname and lastname in Full name, as an antispam measure"] = "";
$a->strings["UTF-8 Regular expressions"] = "";
$a->strings["Use PHP UTF8 regular expressions"] = "";
$a->strings["Show Community Page"] = "Pokaż stronę społeczności";
$a->strings["Display a Community page showing all recent public postings on this site."] = "";
$a->strings["Enable OStatus support"] = "Włącz wsparcie OStatus";
$a->strings["Provide built-in OStatus (identi.ca, status.net, etc.) compatibility. All communications in OStatus are public, so privacy warnings will be occasionally displayed."] = "";
$a->strings["Enable Diaspora support"] = "Włączyć obsługę Diaspory";
$a->strings["Provide built-in Diaspora network compatibility."] = "";
$a->strings["Only allow Friendica contacts"] = "Dopuść tylko kontakty Friendrica";
$a->strings["All contacts must use Friendica protocols. All other built-in communication protocols disabled."] = "";
$a->strings["Verify SSL"] = "Weryfikacja SSL";
$a->strings["If you wish, you can turn on strict certificate checking. This will mean you cannot connect (at all) to self-signed SSL sites."] = "";
$a->strings["Proxy user"] = "Użytkownik proxy";
$a->strings["Proxy URL"] = "URL Proxy";
$a->strings["Network timeout"] = "Network timeout";
$a->strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "";
$a->strings["Delivery interval"] = "";
$a->strings["Delay background delivery processes by this many seconds to reduce system load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 for large dedicated servers."] = "";
$a->strings["Poll interval"] = "";
$a->strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "";
$a->strings["Maximum Load Average"] = "";
$a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "";
$a->strings["Use MySQL full text engine"] = "";
$a->strings["Activates the full text engine. Speeds up search - but can only search for four and more characters."] = "";
$a->strings["Path to item cache"] = "";
$a->strings["Cache duration in seconds"] = "";
$a->strings["How long should the cache files be hold? Default value is 86400 seconds (One day)."] = "";
$a->strings["Path for lock file"] = "";
$a->strings["Temp path"] = "";
$a->strings["Base path to installation"] = "";
$a->strings["Update has been marked successful"] = "";
$a->strings["Executing %s failed. Check system logs."] = "";
$a->strings["Update %s was successfully applied."] = "";
$a->strings["Update %s did not return a status. Unknown if it succeeded."] = "";
$a->strings["Update function %s could not be found."] = "";
$a->strings["No failed updates."] = "Brak błędów aktualizacji.";
$a->strings["Failed Updates"] = "Błąd aktualizacji";
$a->strings["This does not include updates prior to 1139, which did not return a status."] = "";
$a->strings["Mark success (if update was manually applied)"] = "";
$a->strings["Attempt to execute this update step automatically"] = "";
$a->strings["%s user blocked/unblocked"] = array(
0 => "",
1 => "",
2 => "",
);
$a->strings["%s user deleted"] = array(
0 => " %s użytkownik usunięty",
1 => " %s użytkownicy usunięci",
2 => " %s usuniętych użytkowników ",
);
$a->strings["User '%s' deleted"] = "Użytkownik '%s' usunięty";
$a->strings["User '%s' unblocked"] = "Użytkownik '%s' odblokowany";
$a->strings["User '%s' blocked"] = "Użytkownik '%s' zablokowany";
$a->strings["select all"] = "Zaznacz wszystko";
$a->strings["User registrations waiting for confirm"] = "zarejestrowany użytkownik czeka na potwierdzenie";
$a->strings["Request date"] = "Data prośby";
$a->strings["Name"] = "Imię";
$a->strings["No registrations."] = "brak rejestracji";
$a->strings["Approve"] = "Zatwierdź";
$a->strings["Deny"] = "Odmów";
$a->strings["Block"] = "Zablokuj";
$a->strings["Unblock"] = "Odblokuj";
$a->strings["Site admin"] = "Administracja stroną";
$a->strings["Register date"] = "Data rejestracji";
$a->strings["Last login"] = "Ostatnie logowanie";
$a->strings["Last item"] = "Ostatni element";
$a->strings["Account"] = "Konto";
$a->strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Zaznaczeni użytkownicy zostaną usunięci!\\n\\nWszystko co zamieścili na tej stronie będzie trwale skasowane!\\n\\nJesteś pewien?";
$a->strings["The user {0} will be deleted!\\n\\nEverything this user has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Użytkownik {0} zostanie usunięty!\\n\\nWszystko co zamieścił na tej stronie będzie trwale skasowane!\\n\\nJesteś pewien?";
$a->strings["Plugin %s disabled."] = "Wtyczka %s wyłączona.";
$a->strings["Plugin %s enabled."] = "Wtyczka %s właczona.";
$a->strings["Disable"] = "Wyłącz";
$a->strings["Enable"] = "Zezwól";
$a->strings["Toggle"] = "Włącz";
$a->strings["Author: "] = "Autor: ";
$a->strings["Maintainer: "] = "";
$a->strings["No themes found."] = "Nie znaleziono tematu.";
$a->strings["Screenshot"] = "Zrzut ekranu";
$a->strings["[Experimental]"] = "[Eksperymentalne]";
$a->strings["[Unsupported]"] = "[Niewspieralne]";
$a->strings["Log settings updated."] = "";
$a->strings["Clear"] = "Wyczyść";
$a->strings["Debugging"] = "Naprawianie";
$a->strings["Log file"] = "Plik logów";
$a->strings["Must be writable by web server. Relative to your Friendica top-level directory."] = "";
$a->strings["Log level"] = "Poziom logów";
$a->strings["Update now"] = "Aktualizuj teraz";
$a->strings["Close"] = "Zamknij";
$a->strings["FTP Host"] = "Założyciel FTP";
$a->strings["FTP Path"] = "Ścieżka FTP";
$a->strings["FTP User"] = "Użytkownik FTP";
$a->strings["FTP Password"] = "FTP Hasło";
$a->strings["Unable to locate original post."] = "Nie można zlokalizować oryginalnej wiadomości.";
$a->strings["Empty post discarded."] = "Pusty wpis wyrzucony.";
$a->strings["System error. Post not saved."] = "Błąd. Post niezapisany.";
@ -1378,6 +643,7 @@ $a->strings["%s posted an update."] = "%s zaktualizował wpis.";
$a->strings["Friends of %s"] = "Znajomy %s";
$a->strings["No friends to display."] = "Brak znajomych do wyświetlenia";
$a->strings["Remove term"] = "Usuń wpis";
$a->strings["Public access denied."] = "Publiczny dostęp zabroniony";
$a->strings["No results."] = "Brak wyników.";
$a->strings["Authorize application connection"] = "Autoryzacja połączenia aplikacji";
$a->strings["Return to your app and insert this Securty Code:"] = "Powróć do swojej aplikacji i wpisz ten Kod Bezpieczeństwa:";
@ -1396,12 +662,11 @@ $a->strings["Your OpenID (optional): "] = "Twój OpenID (opcjonalnie):";
$a->strings["Include your profile in member directory?"] = "Czy dołączyć twój profil do katalogu członków?";
$a->strings["Membership on this site is by invitation only."] = "Członkostwo na tej stronie możliwe tylko dzięki zaproszeniu.";
$a->strings["Your invitation ID: "] = "Twoje zaproszenia ID:";
$a->strings["Registration"] = "Rejestracja";
$a->strings["Your Full Name (e.g. Joe Smith): "] = "Imię i nazwisko (np. Jan Kowalski):";
$a->strings["Your Email Address: "] = "Twój adres email:";
$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be '<strong>nickname@\$sitename</strong>'."] = "Wybierz login. Login musi zaczynać się literą. Adres twojego profilu na tej stronie będzie wyglądać następująco '<strong>login@\$nazwastrony</strong>'.";
$a->strings["Choose a nickname: "] = "Wybierz pseudonim:";
$a->strings["Applications"] = "Aplikacje";
$a->strings["No installed applications."] = "Brak zainstalowanych aplikacji.";
$a->strings["Account approved."] = "Konto zatwierdzone.";
$a->strings["Registration revoked for %s"] = "Rejestracja dla %s odwołana";
$a->strings["Please login."] = "Proszę się zalogować.";
@ -1414,16 +679,19 @@ $a->strings["Source (bbcode) text:"] = "";
$a->strings["Source (Diaspora) text to convert to BBcode:"] = "";
$a->strings["Source input: "] = "";
$a->strings["bb2html (raw HTML): "] = "";
$a->strings["bb2html: "] = "";
$a->strings["bb2html2bb: "] = "";
$a->strings["bb2md: "] = "";
$a->strings["bb2md2html: "] = "";
$a->strings["bb2dia2bb: "] = "";
$a->strings["bb2md2html2bb: "] = "";
$a->strings["bb2html: "] = "bb2html: ";
$a->strings["bb2html2bb: "] = "bb2html2bb: ";
$a->strings["bb2md: "] = "bb2md: ";
$a->strings["bb2md2html: "] = "bb2md2html: ";
$a->strings["bb2dia2bb: "] = "bb2dia2bb: ";
$a->strings["bb2md2html2bb: "] = "bb2md2html2bb: ";
$a->strings["Source input (Diaspora format): "] = "";
$a->strings["diaspora2bb: "] = "";
$a->strings["diaspora2bb: "] = "diaspora2bb: ";
$a->strings["Common Friends"] = "Wspólni znajomi";
$a->strings["No contacts in common."] = "";
$a->strings["You must be logged in to use addons. "] = "";
$a->strings["Applications"] = "Aplikacje";
$a->strings["No installed applications."] = "Brak zainstalowanych aplikacji.";
$a->strings["Could not access contact record."] = "Nie można uzyskać dostępu do rejestru kontaktów.";
$a->strings["Could not locate selected profile."] = "Nie można znaleźć wybranego profilu.";
$a->strings["Contact updated."] = "Kontakt zaktualizowany";
@ -1446,6 +714,8 @@ $a->strings["(Update was not successful)"] = "(Aktualizacja nie powiodła się)"
$a->strings["Suggest friends"] = "Osoby, które możesz znać";
$a->strings["Network type: %s"] = "Typ sieci: %s";
$a->strings["View all contacts"] = "Zobacz wszystkie kontakty";
$a->strings["Unblock"] = "Odblokuj";
$a->strings["Block"] = "Zablokuj";
$a->strings["Toggle Blocked status"] = "";
$a->strings["Unignore"] = "Odblokuj";
$a->strings["Ignore"] = "Ignoruj";
@ -1468,6 +738,7 @@ $a->strings["View conversations"] = "Zobacz rozmowę";
$a->strings["Delete contact"] = "Usuń kontakt";
$a->strings["Last update:"] = "Ostatnia aktualizacja:";
$a->strings["Update public posts"] = "Zaktualizuj publiczne posty";
$a->strings["Update now"] = "Aktualizuj teraz";
$a->strings["Currently blocked"] = "Obecnie zablokowany";
$a->strings["Currently ignored"] = "Obecnie zignorowany";
$a->strings["Currently archived"] = "Obecnie zarchiwizowany";
@ -1483,7 +754,7 @@ $a->strings["Blocked"] = "Zablokowany";
$a->strings["Only show blocked contacts"] = "Pokaż tylko zablokowane kontakty";
$a->strings["Ignored"] = "Zignorowany";
$a->strings["Only show ignored contacts"] = "Pokaż tylko ignorowane kontakty";
$a->strings["Archived"] = "";
$a->strings["Archived"] = "Zarchiwizowane";
$a->strings["Only show archived contacts"] = "Pokaż tylko zarchiwizowane kontakty";
$a->strings["Hidden"] = "Ukryty";
$a->strings["Only show hidden contacts"] = "Pokaż tylko ukryte kontakty";
@ -1491,12 +762,13 @@ $a->strings["Mutual Friendship"] = "Wzajemna przyjaźń";
$a->strings["is a fan of yours"] = "jest twoim fanem";
$a->strings["you are a fan of"] = "jesteś fanem";
$a->strings["Search your contacts"] = "Wyszukaj w kontaktach";
$a->strings["Finding: "] = "Znalezione:";
$a->strings["everybody"] = "wszyscy";
$a->strings["Additional features"] = "";
$a->strings["Display settings"] = "Wyświetl ustawienia";
$a->strings["Connector settings"] = "Ustawienia konektora";
$a->strings["Plugin settings"] = "Ustawienia wtyczek";
$a->strings["Connected apps"] = "";
$a->strings["Connected apps"] = "Powiązane aplikacje";
$a->strings["Export personal data"] = "Eksportuje dane personalne";
$a->strings["Remove account"] = "Usuń konto";
$a->strings["Missing some important data!"] = "Brakuje ważnych danych!";
@ -1514,7 +786,11 @@ $a->strings[" Not valid email."] = "Zły email.";
$a->strings[" Cannot change to that email."] = "Nie mogę zmienić na ten email.";
$a->strings["Private forum has no privacy permissions. Using default privacy group."] = "";
$a->strings["Private forum has no privacy permissions and no default privacy group."] = "";
$a->strings["Settings updated."] = "Zaktualizowano ustawienia.";
$a->strings["Add application"] = "Dodaj aplikacje";
$a->strings["Name"] = "Imię";
$a->strings["Consumer Key"] = "Klucz konsumenta";
$a->strings["Consumer Secret"] = "Sekret konsumenta";
$a->strings["Redirect"] = "Przekierowanie";
$a->strings["Icon url"] = "Adres ikony";
$a->strings["You can't edit this application."] = "Nie możesz edytować tej aplikacji.";
@ -1524,6 +800,7 @@ $a->strings["Client key starts with"] = "Klucz klienta zaczyna się od";
$a->strings["No name"] = "Bez nazwy";
$a->strings["Remove authorization"] = "Odwołaj upoważnienie";
$a->strings["No Plugin settings configured"] = "Ustawienia wtyczki nieskonfigurowane";
$a->strings["Plugin Settings"] = "Ustawienia wtyczki";
$a->strings["Off"] = "Wyłącz";
$a->strings["On"] = "Włącz";
$a->strings["Additional Features"] = "";
@ -1539,6 +816,7 @@ $a->strings["Last successful email check:"] = "Ostatni sprawdzony e-mail:";
$a->strings["IMAP server name:"] = "Nazwa serwera IMAP:";
$a->strings["IMAP port:"] = "Port IMAP:";
$a->strings["Security:"] = "Ochrona:";
$a->strings["None"] = "Brak";
$a->strings["Email login name:"] = "Login emaila:";
$a->strings["Email password:"] = "Hasło emaila:";
$a->strings["Reply-to address:"] = "Odpowiedz na adres:";
@ -1547,9 +825,10 @@ $a->strings["Action after import:"] = "Akcja po zaimportowaniu:";
$a->strings["Mark as seen"] = "Oznacz jako przeczytane";
$a->strings["Move to folder"] = "Przenieś do folderu";
$a->strings["Move to folder:"] = "Przenieś do folderu:";
$a->strings["No special theme for mobile devices"] = "";
$a->strings["Display Settings"] = "Wyświetl ustawienia";
$a->strings["Display Theme:"] = "Wyświetl motyw:";
$a->strings["Mobile Theme:"] = "";
$a->strings["Mobile Theme:"] = "Mobilny motyw:";
$a->strings["Update browser every xx seconds"] = "Odświeżaj stronę co xx sekund";
$a->strings["Minimum of 10 seconds, no maximum"] = "Dolny limit 10 sekund, brak górnego limitu";
$a->strings["Number of items to display per page:"] = "";
@ -1624,7 +903,7 @@ $a->strings["You are tagged in a post"] = "Jesteś oznaczony w poście";
$a->strings["You are poked/prodded/etc. in a post"] = "";
$a->strings["Advanced Account/Page Type Settings"] = "";
$a->strings["Change the behaviour of this account for special situations"] = "";
$a->strings["link"] = "";
$a->strings["link"] = "Link";
$a->strings["Contact settings applied."] = "Ustawienia kontaktu zaktualizowane.";
$a->strings["Contact update failed."] = "Nie udało się zaktualizować kontaktu.";
$a->strings["Contact not found."] = "Kontakt nie znaleziony";
@ -1645,6 +924,7 @@ $a->strings["Delegates are able to manage all aspects of this account/page excep
$a->strings["Existing Page Managers"] = "";
$a->strings["Existing Page Delegates"] = "";
$a->strings["Potential Delegates"] = "";
$a->strings["Remove"] = "Usuń";
$a->strings["Add"] = "Dodaj";
$a->strings["No entries."] = "Brak wpisów.";
$a->strings["Poke/Prod"] = "";
@ -1670,7 +950,7 @@ $a->strings["Unable to set your contact credentials on our system."] = "Niezdoln
$a->strings["Unable to update your contact profile details on our system"] = "Niezdolny do aktualizacji szczegółowych danych profilowych twoich kontaktów w naszym systemie";
$a->strings["Connection accepted at %s"] = "Połączenie zaakceptowane %s";
$a->strings["%1\$s has joined %2\$s"] = "";
$a->strings["%1\$s welcomes %2\$s"] = "";
$a->strings["%1\$s welcomes %2\$s"] = "%1\$s witamy %2\$s";
$a->strings["This introduction has already been accepted."] = "To wprowadzenie zostało już zaakceptowane.";
$a->strings["Profile location is not valid or does not contain profile information."] = "Położenie profilu jest niepoprawne lub nie zawiera żadnych informacji.";
$a->strings["Warning: profile location has no identifiable owner name."] = "Ostrzeżenie: położenie profilu ma taką samą nazwę jak użytkownik.";
@ -1713,13 +993,193 @@ $a->strings[" - please do not use this form. Instead, enter %s into your Diaspo
$a->strings["Your Identity Address:"] = "Twój zidentyfikowany adres:";
$a->strings["Submit Request"] = "Wyślij zgłoszenie";
$a->strings["%1\$s is following %2\$s's %3\$s"] = "";
$a->strings["Do you really want to delete this suggestion?"] = "";
$a->strings["Global Directory"] = "Globalne Położenie";
$a->strings["Find on this site"] = "Znajdź na tej stronie";
$a->strings["Site Directory"] = "Katalog Strony";
$a->strings["Gender: "] = "Płeć: ";
$a->strings["No entries (some entries may be hidden)."] = "Brak odwiedzin (niektóre odwiedziny mogą być ukryte).";
$a->strings["Do you really want to delete this suggestion?"] = "Czy na pewno chcesz usunąć te sugestie ?";
$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "";
$a->strings["Ignore/Hide"] = "Ignoruj/Ukryj";
$a->strings["People Search"] = "Szukaj osób";
$a->strings["No matches"] = "brak dopasowań";
$a->strings["Access to this profile has been restricted."] = "Ograniczony dostęp do tego konta";
$a->strings["Item has been removed."] = "Przedmiot został usunięty";
$a->strings["Theme settings updated."] = "Ustawienia szablonu zmienione.";
$a->strings["Site"] = "Strona";
$a->strings["Users"] = "Użytkownicy";
$a->strings["Plugins"] = "Wtyczki";
$a->strings["Themes"] = "Temat";
$a->strings["DB updates"] = "Aktualizacje DB";
$a->strings["Logs"] = "Logi";
$a->strings["Plugin Features"] = "Polecane wtyczki";
$a->strings["User registrations waiting for confirmation"] = "Rejestracje użytkownika czekają na potwierdzenie.";
$a->strings["Normal Account"] = "Konto normalne";
$a->strings["Soapbox Account"] = "Konto Soapbox";
$a->strings["Community/Celebrity Account"] = "Konto społeczności/gwiazdy";
$a->strings["Automatic Friend Account"] = "Automatyczny przyjaciel konta";
$a->strings["Blog Account"] = "Konto Bloga";
$a->strings["Private Forum"] = "Forum Prywatne";
$a->strings["Message queues"] = "";
$a->strings["Administration"] = "Administracja";
$a->strings["Summary"] = "Skrót";
$a->strings["Registered users"] = "Zarejestrowani użytkownicy";
$a->strings["Pending registrations"] = "Rejestracje w toku.";
$a->strings["Version"] = "Wersja";
$a->strings["Active plugins"] = "Aktywne pluginy";
$a->strings["Site settings updated."] = "Ustawienia strony zaktualizowane";
$a->strings["Multi user instance"] = "";
$a->strings["Closed"] = "Zamknięty";
$a->strings["Requires approval"] = "Wymagane zatwierdzenie.";
$a->strings["Open"] = "Otwórz";
$a->strings["No SSL policy, links will track page SSL state"] = "";
$a->strings["Force all links to use SSL"] = "";
$a->strings["Self-signed certificate, use SSL for local links only (discouraged)"] = "";
$a->strings["File upload"] = "Plik załadowano";
$a->strings["Policies"] = "zasady";
$a->strings["Advanced"] = "Zaawansowany";
$a->strings["Performance"] = "";
$a->strings["Site name"] = "Nazwa strony";
$a->strings["Banner/Logo"] = "Logo";
$a->strings["System language"] = "Język systemu";
$a->strings["System theme"] = "Motyw systemowy";
$a->strings["Default system theme - may be over-ridden by user profiles - <a href='#' id='cnftheme'>change theme settings</a>"] = "";
$a->strings["Mobile system theme"] = "";
$a->strings["Theme for mobile devices"] = "Szablon dla mobilnych urządzeń";
$a->strings["SSL link policy"] = "";
$a->strings["Determines whether generated links should be forced to use SSL"] = "";
$a->strings["'Share' element"] = "'Udostępnij' element";
$a->strings["Activates the bbcode element 'share' for repeating items."] = "";
$a->strings["Hide help entry from navigation menu"] = "";
$a->strings["Hides the menu entry for the Help pages from the navigation menu. You can still access it calling /help directly."] = "";
$a->strings["Single user instance"] = "";
$a->strings["Make this instance multi-user or single-user for the named user"] = "";
$a->strings["Maximum image size"] = "Maksymalny rozmiar zdjęcia";
$a->strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "";
$a->strings["Maximum image length"] = "Maksymalna długość obrazu";
$a->strings["Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits."] = "Maksymalna długość najdłuższej strony przesyłanego obrazu w pikselach.\nDomyślnie jest to -1, co oznacza brak limitu.";
$a->strings["JPEG image quality"] = "jakość obrazu JPEG";
$a->strings["Uploaded JPEGS will be saved at this quality setting [0-100]. Default is 100, which is full quality."] = "";
$a->strings["Register policy"] = "Zarejestruj polisę";
$a->strings["Maximum Daily Registrations"] = "Maksymalnie dziennych rejestracji";
$a->strings["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."] = "";
$a->strings["Register text"] = "Zarejestruj tekst";
$a->strings["Will be displayed prominently on the registration page."] = "";
$a->strings["Accounts abandoned after x days"] = "Konto porzucone od x dni.";
$a->strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "";
$a->strings["Allowed friend domains"] = "Dozwolone domeny przyjaciół";
$a->strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "";
$a->strings["Allowed email domains"] = "Dozwolone domeny e-mailowe";
$a->strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "";
$a->strings["Block public"] = "Blokuj publicznie";
$a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = "";
$a->strings["Force publish"] = "Wymuś publikację";
$a->strings["Check to force all profiles on this site to be listed in the site directory."] = "";
$a->strings["Global directory update URL"] = "";
$a->strings["URL to update the global directory. If this is not set, the global directory is completely unavailable to the application."] = "";
$a->strings["Allow threaded items"] = "";
$a->strings["Allow infinite level threading for items on this site."] = "";
$a->strings["Private posts by default for new users"] = "";
$a->strings["Set default post permissions for all new members to the default privacy group rather than public."] = "";
$a->strings["Don't include post content in email notifications"] = "";
$a->strings["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."] = "";
$a->strings["Disallow public access to addons listed in the apps menu."] = "";
$a->strings["Checking this box will restrict addons listed in the apps menu to members only."] = "";
$a->strings["Don't embed private images in posts"] = "";
$a->strings["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."] = "";
$a->strings["Block multiple registrations"] = "";
$a->strings["Disallow users to register additional accounts for use as pages."] = "";
$a->strings["OpenID support"] = "Wsparcie OpenID";
$a->strings["OpenID support for registration and logins."] = "";
$a->strings["Fullname check"] = "Sprawdzanie pełnej nazwy";
$a->strings["Force users to register with a space between firstname and lastname in Full name, as an antispam measure"] = "";
$a->strings["UTF-8 Regular expressions"] = "";
$a->strings["Use PHP UTF8 regular expressions"] = "";
$a->strings["Show Community Page"] = "Pokaż stronę społeczności";
$a->strings["Display a Community page showing all recent public postings on this site."] = "";
$a->strings["Enable OStatus support"] = "Włącz wsparcie OStatus";
$a->strings["Provide built-in OStatus (identi.ca, status.net, etc.) compatibility. All communications in OStatus are public, so privacy warnings will be occasionally displayed."] = "";
$a->strings["Enable Diaspora support"] = "Włączyć obsługę Diaspory";
$a->strings["Provide built-in Diaspora network compatibility."] = "";
$a->strings["Only allow Friendica contacts"] = "Dopuść tylko kontakty Friendrica";
$a->strings["All contacts must use Friendica protocols. All other built-in communication protocols disabled."] = "";
$a->strings["Verify SSL"] = "Weryfikacja SSL";
$a->strings["If you wish, you can turn on strict certificate checking. This will mean you cannot connect (at all) to self-signed SSL sites."] = "";
$a->strings["Proxy user"] = "Użytkownik proxy";
$a->strings["Proxy URL"] = "URL Proxy";
$a->strings["Network timeout"] = "Network timeout";
$a->strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "";
$a->strings["Delivery interval"] = "";
$a->strings["Delay background delivery processes by this many seconds to reduce system load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 for large dedicated servers."] = "";
$a->strings["Poll interval"] = "";
$a->strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "";
$a->strings["Maximum Load Average"] = "";
$a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "";
$a->strings["Use MySQL full text engine"] = "";
$a->strings["Activates the full text engine. Speeds up search - but can only search for four and more characters."] = "";
$a->strings["Path to item cache"] = "";
$a->strings["Cache duration in seconds"] = "";
$a->strings["How long should the cache files be hold? Default value is 86400 seconds (One day)."] = "";
$a->strings["Path for lock file"] = "";
$a->strings["Temp path"] = "";
$a->strings["Base path to installation"] = "";
$a->strings["Update has been marked successful"] = "";
$a->strings["Executing %s failed. Check system logs."] = "";
$a->strings["Update %s was successfully applied."] = "";
$a->strings["Update %s did not return a status. Unknown if it succeeded."] = "";
$a->strings["Update function %s could not be found."] = "";
$a->strings["No failed updates."] = "Brak błędów aktualizacji.";
$a->strings["Failed Updates"] = "Błąd aktualizacji";
$a->strings["This does not include updates prior to 1139, which did not return a status."] = "";
$a->strings["Mark success (if update was manually applied)"] = "";
$a->strings["Attempt to execute this update step automatically"] = "";
$a->strings["%s user blocked/unblocked"] = array(
0 => "",
1 => "",
2 => "",
);
$a->strings["%s user deleted"] = array(
0 => " %s użytkownik usunięty",
1 => " %s użytkownicy usunięci",
2 => " %s usuniętych użytkowników ",
);
$a->strings["User '%s' deleted"] = "Użytkownik '%s' usunięty";
$a->strings["User '%s' unblocked"] = "Użytkownik '%s' odblokowany";
$a->strings["User '%s' blocked"] = "Użytkownik '%s' zablokowany";
$a->strings["select all"] = "Zaznacz wszystko";
$a->strings["User registrations waiting for confirm"] = "zarejestrowany użytkownik czeka na potwierdzenie";
$a->strings["Request date"] = "Data prośby";
$a->strings["No registrations."] = "brak rejestracji";
$a->strings["Approve"] = "Zatwierdź";
$a->strings["Deny"] = "Odmów";
$a->strings["Site admin"] = "Administracja stroną";
$a->strings["Account expired"] = "";
$a->strings["Register date"] = "Data rejestracji";
$a->strings["Last login"] = "Ostatnie logowanie";
$a->strings["Last item"] = "Ostatni element";
$a->strings["Account"] = "Konto";
$a->strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Zaznaczeni użytkownicy zostaną usunięci!\\n\\nWszystko co zamieścili na tej stronie będzie trwale skasowane!\\n\\nJesteś pewien?";
$a->strings["The user {0} will be deleted!\\n\\nEverything this user has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Użytkownik {0} zostanie usunięty!\\n\\nWszystko co zamieścił na tej stronie będzie trwale skasowane!\\n\\nJesteś pewien?";
$a->strings["Plugin %s disabled."] = "Wtyczka %s wyłączona.";
$a->strings["Plugin %s enabled."] = "Wtyczka %s właczona.";
$a->strings["Disable"] = "Wyłącz";
$a->strings["Enable"] = "Zezwól";
$a->strings["Toggle"] = "Włącz";
$a->strings["Author: "] = "Autor: ";
$a->strings["Maintainer: "] = "";
$a->strings["No themes found."] = "Nie znaleziono tematu.";
$a->strings["Screenshot"] = "Zrzut ekranu";
$a->strings["[Experimental]"] = "[Eksperymentalne]";
$a->strings["[Unsupported]"] = "[Niewspieralne]";
$a->strings["Log settings updated."] = "";
$a->strings["Clear"] = "Wyczyść";
$a->strings["Debugging"] = "Naprawianie";
$a->strings["Log file"] = "Plik logów";
$a->strings["Must be writable by web server. Relative to your Friendica top-level directory."] = "";
$a->strings["Log level"] = "Poziom logów";
$a->strings["Close"] = "Zamknij";
$a->strings["FTP Host"] = "Założyciel FTP";
$a->strings["FTP Path"] = "Ścieżka FTP";
$a->strings["FTP User"] = "Użytkownik FTP";
$a->strings["FTP Password"] = "FTP Hasło";
$a->strings["Tag removed"] = "Tag usunięty";
$a->strings["Remove Item Tag"] = "Usuń pozycję Tag";
$a->strings["Select a tag to remove: "] = "Wybierz tag do usunięcia";
@ -1729,6 +1189,8 @@ $a->strings["Event title and start time are required."] = "";
$a->strings["l, F j"] = "d, M d ";
$a->strings["Edit event"] = "Edytuj wydarzenie";
$a->strings["Create New Event"] = "Stwórz nowe wydarzenie";
$a->strings["Previous"] = "Poprzedni";
$a->strings["Next"] = "Następny";
$a->strings["hour:minute"] = "godzina:minuta";
$a->strings["Event details"] = "Szczegóły wydarzenia";
$a->strings["Format is %s %s. Starting date and Title are required."] = "";
@ -1743,10 +1205,10 @@ $a->strings["Share this event"] = "Udostępnij te wydarzenie";
$a->strings["Files"] = "Pliki";
$a->strings["Export account"] = "";
$a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = "";
$a->strings["Export all"] = "";
$a->strings["Export all"] = "Eksportuj wszystko";
$a->strings["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)"] = "";
$a->strings["- select -"] = "- wybierz -";
$a->strings["Import"] = "";
$a->strings["Import"] = "Import";
$a->strings["Move account"] = "Przenieś konto";
$a->strings["You can import an account from another Friendica server."] = "";
$a->strings["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."] = "";
@ -1780,68 +1242,10 @@ $a->strings["Help:"] = "Pomoc:";
$a->strings["Not Found"] = "Nie znaleziono";
$a->strings["Page not found."] = "Strona nie znaleziona.";
$a->strings["No contacts."] = "brak kontaktów";
$a->strings["Welcome to %s"] = "Witamy w %s";
$a->strings["Access denied."] = "Brak dostępu";
$a->strings["File exceeds size limit of %d"] = "Plik przekracza dozwolony rozmiar %d";
$a->strings["File upload failed."] = "Przesyłanie pliku nie powiodło się.";
$a->strings["Friendica Social Communications Server - Setup"] = "";
$a->strings["Could not connect to database."] = "Nie można nawiązać połączenia z bazą danych";
$a->strings["Could not create table."] = "Nie mogę stworzyć tabeli.";
$a->strings["Your Friendica site database has been installed."] = "";
$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Może być konieczne zaimportowanie pliku \"database.sql\" ręcznie, używając phpmyadmin lub mysql.";
$a->strings["Please see the file \"INSTALL.txt\"."] = "Proszę przejrzeć plik \"INSTALL.txt\".";
$a->strings["System check"] = "Sprawdzanie systemu";
$a->strings["Check again"] = "Sprawdź ponownie";
$a->strings["Database connection"] = "Połączenie z bazą danych";
$a->strings["In order to install Friendica we need to know how to connect to your database."] = "W celu zainstalowania Friendica musimy wiedzieć jak połączyć się z twoją bazą danych.";
$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Proszę skontaktuj się ze swoim dostawcą usług hostingowych bądź administratorem strony jeśli masz pytania co do tych ustawień .";
$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Wymieniona przez Ciebie baza danych powinna już istnieć. Jeżeli nie, utwórz ją przed kontynuacją.";
$a->strings["Database Server Name"] = "Baza danych - Nazwa serwera";
$a->strings["Database Login Name"] = "Baza danych - Nazwa loginu";
$a->strings["Database Login Password"] = "Baza danych - Hasło loginu";
$a->strings["Database Name"] = "Baza danych - Nazwa";
$a->strings["Site administrator email address"] = "Adres e-mail administratora strony";
$a->strings["Your account email address must match this in order to use the web admin panel."] = "";
$a->strings["Please select a default timezone for your website"] = "Proszę wybrać domyślną strefę czasową dla swojej strony";
$a->strings["Site settings"] = "Ustawienia strony";
$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Nie można znaleźć wersji PHP komendy w serwerze PATH";
$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron. See <a href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>"] = "";
$a->strings["PHP executable path"] = "";
$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "";
$a->strings["Command line PHP"] = "Linia komend PHP";
$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "Wersja linii poleceń PHP w twoim systemie nie ma aktywowanego \"register_argc_argv\".";
$a->strings["This is required for message delivery to work."] = "To jest wymagane do dostarczenia wiadomości do pracy.";
$a->strings["PHP register_argc_argv"] = "";
$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Błąd : funkcja systemu \"openssl_pkey_new\" nie jest w stanie wygenerować klucza szyfrującego .";
$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Jeśli korzystasz z Windowsa, proszę odwiedzić \"http://www.php.net/manual/en/openssl.installation.php\".";
$a->strings["Generate encryption keys"] = "Generuj klucz kodowania";
$a->strings["libCurl PHP module"] = "Moduł libCurl PHP";
$a->strings["GD graphics PHP module"] = "Moduł PHP-GD";
$a->strings["OpenSSL PHP module"] = "";
$a->strings["mysqli PHP module"] = "Moduł mysql PHP";
$a->strings["mb_string PHP module"] = "Moduł mb_string PHP";
$a->strings["Apache mod_rewrite module"] = "";
$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Błąd: moduł Apache webserver mod-rewrite jest potrzebny, jednakże nie jest zainstalowany.";
$a->strings["Error: libCURL PHP module required but not installed."] = "Błąd: libCURL PHP wymagany moduł, lecz nie zainstalowany.";
$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Błąd: moduł graficzny GD z PHP potrzebuje wsparcia technicznego JPEG, jednakże on nie jest zainstalowany.";
$a->strings["Error: openssl PHP module required but not installed."] = "Błąd: openssl PHP wymagany moduł, lecz nie zainstalowany.";
$a->strings["Error: mysqli PHP module required but not installed."] = "Błąd: mysqli PHP wymagany moduł, lecz nie zainstalowany.";
$a->strings["Error: mb_string PHP module required but not installed."] = "Błąd: moduł PHP mb_string jest wymagany ale nie jest zainstalowany";
$a->strings["The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."] = "Instalator WWW musi być w stanie utworzyć plik o nazwie \". Htconfig.php\" i nie jest w stanie tego zrobić.";
$a->strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "";
$a->strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Friendica top folder."] = "";
$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "";
$a->strings[".htconfig.php is writable"] = ".htconfig.php jest zapisywalny";
$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "";
$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory view/smarty3/ under the Friendica top level folder."] = "";
$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "";
$a->strings["Note: as a security measure, you should give the web server write access to view/smarty3/ only--not the template files (.tpl) that it contains."] = "";
$a->strings["view/smarty3 is writable"] = "";
$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "";
$a->strings["Url rewrite is working"] = "";
$a->strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "Konfiguracja bazy danych pliku \".htconfig.php\" nie mogła zostać zapisana. Proszę użyć załączonego tekstu, aby utworzyć folder konfiguracyjny w sieci serwera.";
$a->strings["Errors encountered creating database tables."] = "Zostały napotkane błędy przy tworzeniu tabeli bazy danych.";
$a->strings["<h1>What next</h1>"] = "<h1>Co dalej</h1>";
$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "WAŻNE: Musisz [ręcznie] skonfigurowć zaplanowane zadanie dla poller.";
$a->strings["Image exceeds size limit of %d"] = "Rozmiar obrazka przekracza limit %d";
$a->strings["Unable to process image."] = "Przetwarzanie obrazu nie powiodło się.";
$a->strings["Image upload failed."] = "Przesyłanie obrazu nie powiodło się";
@ -1885,6 +1289,7 @@ $a->strings["Current timezone: %s"] = "Obecna strefa czasowa: %s";
$a->strings["Converted localtime: %s"] = "Zmień strefę czasową: %s";
$a->strings["Please select your timezone:"] = "Wybierz swoją strefę czasową:";
$a->strings["Remote privacy information not available."] = "Dane prywatne nie są dostępne zdalnie ";
$a->strings["Visible to:"] = "Widoczne dla:";
$a->strings["No valid account found."] = "Nie znaleziono ważnego konta.";
$a->strings["Password reset request issued. Check your email."] = "Prośba o zresetowanie hasła została zatwierdzona. Sprawdź swój adres email.";
$a->strings["Password reset requested at %s"] = "Prośba o reset hasła na %s";
@ -1912,7 +1317,7 @@ $a->strings["Do you really want to delete this message?"] = "";
$a->strings["Message deleted."] = "Wiadomość usunięta.";
$a->strings["Conversation removed."] = "Rozmowa usunięta.";
$a->strings["No messages."] = "Brak wiadomości.";
$a->strings["Unknown sender - %s"] = "";
$a->strings["Unknown sender - %s"] = "Nieznany wysyłający - %s";
$a->strings["You and %s"] = "Ty i %s";
$a->strings["%s and You"] = "%s i ty";
$a->strings["Delete conversation"] = "Usuń rozmowę";
@ -1953,17 +1358,51 @@ $a->strings["Group: "] = "Grupa:";
$a->strings["Contact: "] = "Kontakt: ";
$a->strings["Private messages to this person are at risk of public disclosure."] = "Prywatne wiadomości do tej osoby mogą zostać publicznie ujawnione ";
$a->strings["Invalid contact."] = "Zły kontakt";
$a->strings["Not available."] = "Niedostępne.";
$a->strings["Invalid request identifier."] = "Niewłaściwy identyfikator wymagania.";
$a->strings["Discard"] = "Odrzuć";
$a->strings["System"] = "System";
$a->strings["Show Ignored Requests"] = "Pokaż ignorowane żądania";
$a->strings["Hide Ignored Requests"] = "Ukryj ignorowane żądania";
$a->strings["Notification type: "] = "Typ zawiadomień:";
$a->strings["Friend Suggestion"] = "Propozycja znajomych";
$a->strings["suggested by %s"] = "zaproponowane przez %s";
$a->strings["Post a new friend activity"] = "";
$a->strings["if applicable"] = "jeśli odpowiednie";
$a->strings["Claims to be known to you: "] = "Twierdzi, że go znasz:";
$a->strings["yes"] = "tak";
$a->strings["no"] = "nie";
$a->strings["Approve as: "] = "Zatwierdź jako:";
$a->strings["Friend"] = "Znajomy";
$a->strings["Sharer"] = "";
$a->strings["Fan/Admirer"] = "Fan";
$a->strings["Friend/Connect Request"] = "Prośba o dodanie do przyjaciół/powiązanych";
$a->strings["New Follower"] = "Nowy obserwator";
$a->strings["No introductions."] = "Brak wstępu.";
$a->strings["%s liked %s's post"] = "%s polubił wpis %s";
$a->strings["%s disliked %s's post"] = "%s przestał lubić post %s";
$a->strings["%s is now friends with %s"] = "%s jest teraz znajomym %s";
$a->strings["%s created a new post"] = "%s dodał nowy wpis";
$a->strings["%s commented on %s's post"] = "%s skomentował wpis %s";
$a->strings["No more network notifications."] = "Nie ma więcej powiadomień sieciowych";
$a->strings["Network Notifications"] = "Powiadomienia z sieci";
$a->strings["No more system notifications."] = "Nie ma więcej powiadomień systemowych.";
$a->strings["System Notifications"] = "Powiadomienia systemowe";
$a->strings["No more personal notifications."] = "Nie ma więcej powiadomień osobistych";
$a->strings["Personal Notifications"] = "Prywatne powiadomienia";
$a->strings["No more home notifications."] = "Nie ma więcej powiadomień domu";
$a->strings["Home Notifications"] = "Powiadomienia z instancji";
$a->strings["Photo Albums"] = "Albumy zdjęć";
$a->strings["Contact Photos"] = "Zdjęcia kontaktu";
$a->strings["Upload New Photos"] = "Wyślij nowe zdjęcie";
$a->strings["Contact information unavailable"] = "Informacje o kontakcie nie dostępne.";
$a->strings["Album not found."] = "Album nie znaleziony";
$a->strings["Delete Album"] = "Usuń album";
$a->strings["Do you really want to delete this photo album and all its photos?"] = "";
$a->strings["Do you really want to delete this photo album and all its photos?"] = "Czy na pewno chcesz usunąć ten album i wszystkie zdjęcia z tego albumu?";
$a->strings["Delete Photo"] = "Usuń zdjęcie";
$a->strings["Do you really want to delete this photo?"] = "";
$a->strings["Do you really want to delete this photo?"] = "Czy na pewno chcesz usunąć to zdjęcie ?";
$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "";
$a->strings["a photo"] = "zdjęcie";
$a->strings["Image exceeds size limit of "] = "obrazek przekracza limit rozmiaru";
$a->strings["Image file is empty."] = "Plik obrazka jest pusty.";
$a->strings["No photos selected"] = "Nie zaznaczono zdjęć";
$a->strings["Access to this item is restricted."] = "Dostęp do tego obiektu jest ograniczony.";
@ -1973,8 +1412,8 @@ $a->strings["New album name: "] = "Nazwa nowego albumu:";
$a->strings["or existing album name: "] = "lub istniejąca nazwa albumu:";
$a->strings["Do not show a status post for this upload"] = "Nie pokazuj postów statusu dla tego wysłania";
$a->strings["Permissions"] = "Uprawnienia";
$a->strings["Private Photo"] = "";
$a->strings["Public Photo"] = "";
$a->strings["Private Photo"] = "Zdjęcie prywatne";
$a->strings["Public Photo"] = "Zdjęcie publiczne";
$a->strings["Edit Album"] = "Edytuj album";
$a->strings["Show Newest First"] = "Najpierw pokaż najnowsze";
$a->strings["Show Oldest First"] = "Najpierw pokaż najstarsze";
@ -1994,8 +1433,8 @@ $a->strings["New album name"] = "Nazwa nowego albumu";
$a->strings["Caption"] = "Zawartość";
$a->strings["Add a Tag"] = "Dodaj tag";
$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Przykładowo: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping";
$a->strings["Private photo"] = "";
$a->strings["Public photo"] = "";
$a->strings["Private photo"] = "Prywatne zdjęcie.";
$a->strings["Public photo"] = "Zdjęcie publiczne";
$a->strings["I like this (toggle)"] = "Lubię to (zmień)";
$a->strings["I don't like this (toggle)"] = "Nie lubię (zmień)";
$a->strings["This is you"] = "To jesteś ty";
@ -2036,40 +1475,71 @@ $a->strings["Getting Help"] = "Otrzymywanie pomocy";
$a->strings["Go to the Help Section"] = "Idź do części o pomocy";
$a->strings["Our <strong>help</strong> pages may be consulted for detail on other program features and resources."] = "";
$a->strings["Requested profile is not available."] = "Żądany profil jest niedostępny";
$a->strings["Access to this profile has been restricted."] = "Ograniczony dostęp do tego konta";
$a->strings["Tips for New Members"] = "Wskazówki dla nowych użytkowników";
$a->strings["Invalid request identifier."] = "Niewłaściwy identyfikator wymagania.";
$a->strings["Discard"] = "Odrzuć";
$a->strings["System"] = "System";
$a->strings["Show Ignored Requests"] = "Pokaż ignorowane żądania";
$a->strings["Hide Ignored Requests"] = "Ukryj ignorowane żądania";
$a->strings["Notification type: "] = "Typ zawiadomień:";
$a->strings["Friend Suggestion"] = "Propozycja znajomych";
$a->strings["suggested by %s"] = "zaproponowane przez %s";
$a->strings["Post a new friend activity"] = "";
$a->strings["if applicable"] = "jeśli odpowiednie";
$a->strings["Claims to be known to you: "] = "Twierdzi, że go znasz:";
$a->strings["yes"] = "tak";
$a->strings["no"] = "nie";
$a->strings["Approve as: "] = "Zatwierdź jako:";
$a->strings["Friend"] = "Znajomy";
$a->strings["Sharer"] = "";
$a->strings["Fan/Admirer"] = "Fan";
$a->strings["Friend/Connect Request"] = "Prośba o dodanie do przyjaciół/powiązanych";
$a->strings["New Follower"] = "Nowy obserwator";
$a->strings["No introductions."] = "Brak wstępu.";
$a->strings["%s liked %s's post"] = "%s polubił wpis %s";
$a->strings["%s disliked %s's post"] = "%s przestał lubić post %s";
$a->strings["%s is now friends with %s"] = "%s jest teraz znajomym %s";
$a->strings["%s created a new post"] = "%s dodał nowy wpis";
$a->strings["%s commented on %s's post"] = "%s skomentował wpis %s";
$a->strings["No more network notifications."] = "Nie ma więcej powiadomień sieciowych";
$a->strings["Network Notifications"] = "Powiadomienia z sieci";
$a->strings["No more system notifications."] = "Nie ma więcej powiadomień systemowych.";
$a->strings["System Notifications"] = "Powiadomienia systemowe";
$a->strings["No more personal notifications."] = "Nie ma więcej powiadomień osobistych";
$a->strings["Personal Notifications"] = "Prywatne powiadomienia";
$a->strings["No more home notifications."] = "Nie ma więcej powiadomień domu";
$a->strings["Home Notifications"] = "Powiadomienia z instancji";
$a->strings["Item has been removed."] = "Przedmiot został usunięty";
$a->strings["Friendica Social Communications Server - Setup"] = "";
$a->strings["Could not connect to database."] = "Nie można nawiązać połączenia z bazą danych";
$a->strings["Could not create table."] = "Nie mogę stworzyć tabeli.";
$a->strings["Your Friendica site database has been installed."] = "";
$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Może być konieczne zaimportowanie pliku \"database.sql\" ręcznie, używając phpmyadmin lub mysql.";
$a->strings["Please see the file \"INSTALL.txt\"."] = "Proszę przejrzeć plik \"INSTALL.txt\".";
$a->strings["System check"] = "Sprawdzanie systemu";
$a->strings["Check again"] = "Sprawdź ponownie";
$a->strings["Database connection"] = "Połączenie z bazą danych";
$a->strings["In order to install Friendica we need to know how to connect to your database."] = "W celu zainstalowania Friendica musimy wiedzieć jak połączyć się z twoją bazą danych.";
$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Proszę skontaktuj się ze swoim dostawcą usług hostingowych bądź administratorem strony jeśli masz pytania co do tych ustawień .";
$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Wymieniona przez Ciebie baza danych powinna już istnieć. Jeżeli nie, utwórz ją przed kontynuacją.";
$a->strings["Database Server Name"] = "Baza danych - Nazwa serwera";
$a->strings["Database Login Name"] = "Baza danych - Nazwa loginu";
$a->strings["Database Login Password"] = "Baza danych - Hasło loginu";
$a->strings["Database Name"] = "Baza danych - Nazwa";
$a->strings["Site administrator email address"] = "Adres e-mail administratora strony";
$a->strings["Your account email address must match this in order to use the web admin panel."] = "";
$a->strings["Please select a default timezone for your website"] = "Proszę wybrać domyślną strefę czasową dla swojej strony";
$a->strings["Site settings"] = "Ustawienia strony";
$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Nie można znaleźć wersji PHP komendy w serwerze PATH";
$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron. See <a href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>"] = "";
$a->strings["PHP executable path"] = "";
$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "";
$a->strings["Command line PHP"] = "Linia komend PHP";
$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = "";
$a->strings["Found PHP version: "] = "Znaleziono wersje PHP:";
$a->strings["PHP cli binary"] = "";
$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "Wersja linii poleceń PHP w twoim systemie nie ma aktywowanego \"register_argc_argv\".";
$a->strings["This is required for message delivery to work."] = "To jest wymagane do dostarczenia wiadomości do pracy.";
$a->strings["PHP register_argc_argv"] = "";
$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Błąd : funkcja systemu \"openssl_pkey_new\" nie jest w stanie wygenerować klucza szyfrującego .";
$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Jeśli korzystasz z Windowsa, proszę odwiedzić \"http://www.php.net/manual/en/openssl.installation.php\".";
$a->strings["Generate encryption keys"] = "Generuj klucz kodowania";
$a->strings["libCurl PHP module"] = "Moduł libCurl PHP";
$a->strings["GD graphics PHP module"] = "Moduł PHP-GD";
$a->strings["OpenSSL PHP module"] = "Moduł PHP OpenSSL";
$a->strings["mysqli PHP module"] = "Moduł mysql PHP";
$a->strings["mb_string PHP module"] = "Moduł mb_string PHP";
$a->strings["Apache mod_rewrite module"] = "Moduł Apache mod_rewrite";
$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Błąd: moduł Apache webserver mod-rewrite jest potrzebny, jednakże nie jest zainstalowany.";
$a->strings["Error: libCURL PHP module required but not installed."] = "Błąd: libCURL PHP wymagany moduł, lecz nie zainstalowany.";
$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Błąd: moduł graficzny GD z PHP potrzebuje wsparcia technicznego JPEG, jednakże on nie jest zainstalowany.";
$a->strings["Error: openssl PHP module required but not installed."] = "Błąd: openssl PHP wymagany moduł, lecz nie zainstalowany.";
$a->strings["Error: mysqli PHP module required but not installed."] = "Błąd: mysqli PHP wymagany moduł, lecz nie zainstalowany.";
$a->strings["Error: mb_string PHP module required but not installed."] = "Błąd: moduł PHP mb_string jest wymagany ale nie jest zainstalowany";
$a->strings["The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."] = "Instalator WWW musi być w stanie utworzyć plik o nazwie \". Htconfig.php\" i nie jest w stanie tego zrobić.";
$a->strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "";
$a->strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Friendica top folder."] = "";
$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "";
$a->strings[".htconfig.php is writable"] = ".htconfig.php jest zapisywalny";
$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "";
$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory view/smarty3/ under the Friendica top level folder."] = "";
$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "";
$a->strings["Note: as a security measure, you should give the web server write access to view/smarty3/ only--not the template files (.tpl) that it contains."] = "";
$a->strings["view/smarty3 is writable"] = "";
$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "";
$a->strings["Url rewrite is working"] = "";
$a->strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "Konfiguracja bazy danych pliku \".htconfig.php\" nie mogła zostać zapisana. Proszę użyć załączonego tekstu, aby utworzyć folder konfiguracyjny w sieci serwera.";
$a->strings["Errors encountered creating database tables."] = "Zostały napotkane błędy przy tworzeniu tabeli bazy danych.";
$a->strings["<h1>What next</h1>"] = "<h1>Co dalej</h1>";
$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "WAŻNE: Musisz [ręcznie] skonfigurowć zaplanowane zadanie dla poller.";
$a->strings["Post successful."] = "Post dodany pomyślnie";
$a->strings["OpenID protocol error. No ID returned."] = "";
$a->strings["Account not found and OpenID registration is not permitted on this site."] = "";
@ -2079,12 +1549,14 @@ $a->strings["Shift-reload the page or clear browser cache if the new photo does
$a->strings["Unable to process image"] = "Nie udało się przetworzyć obrazu.";
$a->strings["Upload File:"] = "Wyślij plik:";
$a->strings["Select a profile:"] = "Wybierz profil:";
$a->strings["Upload"] = "Załaduj";
$a->strings["skip this step"] = "Pomiń ten krok";
$a->strings["select a photo from your photo albums"] = "wybierz zdjęcie z twojego albumu";
$a->strings["Crop Image"] = "Przytnij zdjęcie";
$a->strings["Please adjust the image cropping for optimum viewing."] = "Proszę dostosować oprawę obrazka w celu optymalizacji oglądania.";
$a->strings["Done Editing"] = "Zakończ Edycję ";
$a->strings["Image uploaded successfully."] = "Zdjęcie wczytano pomyślnie ";
$a->strings["Not available."] = "Niedostępne.";
$a->strings["%d comment"] = array(
0 => " %d komentarz",
1 => " %d komentarzy",
@ -2105,13 +1577,14 @@ $a->strings["Video"] = "Video";
$a->strings["add star"] = "dodaj gwiazdkę";
$a->strings["remove star"] = "anuluj gwiazdkę";
$a->strings["toggle star status"] = "włącz status gwiazdy";
$a->strings["starred"] = "";
$a->strings["starred"] = "gwiazdką";
$a->strings["add tag"] = "dodaj tag";
$a->strings["save to folder"] = "zapisz w folderze";
$a->strings["to"] = "do";
$a->strings["Wall-to-Wall"] = "Wall-to-Wall";
$a->strings["via Wall-To-Wall:"] = "via Wall-To-Wall:";
$a->strings["via"] = "";
$a->strings["This entry was edited"] = "";
$a->strings["via"] = "przez";
$a->strings["Theme settings"] = "Ustawienia motywu";
$a->strings["Set resize level for images in posts and comments (width and height)"] = "";
$a->strings["Set font-size for posts and comments"] = "Ustaw rozmiar fontów dla postów i komentarzy";
@ -2145,7 +1618,6 @@ $a->strings["Left"] = "Lewo";
$a->strings["Center"] = "Środek";
$a->strings["Posts font size"] = "";
$a->strings["Textareas font size"] = "";
$a->strings["toggle mobile"] = "";
$a->strings["Delete this item?"] = "Usunąć ten element?";
$a->strings["show fewer"] = "Pokaż mniej";
$a->strings["Update %s failed. See error logs."] = "";
@ -2159,7 +1631,7 @@ $a->strings["Forgot your password?"] = "Zapomniałeś swojego hasła?";
$a->strings["Website Terms of Service"] = "";
$a->strings["terms of service"] = "";
$a->strings["Website Privacy Policy"] = "";
$a->strings["privacy policy"] = "";
$a->strings["privacy policy"] = "polityka prywatności";
$a->strings["Requested account is not available."] = "";
$a->strings["Edit profile"] = "Edytuj profil";
$a->strings["Message"] = "Wiadomość";
@ -2176,3 +1648,4 @@ $a->strings["Status Messages and Posts"] = "Status wiadomości i postów";
$a->strings["Profile Details"] = "Szczegóły profilu";
$a->strings["Events and Calendar"] = "Wydarzenia i kalendarz";
$a->strings["Only You Can See This"] = "Tylko ty możesz to zobaczyć";
$a->strings["toggle mobile"] = "przełącz na mobilny";

View file

@ -1,19 +1,22 @@
# FRIENDICA Distributed Social Network
# Copyright (C) 2010, 2011 the Friendica Project
# Copyright (C) 2010, 2011, 2012, 2013 the Friendica Project
# This file is distributed under the same license as the Friendica package.
#
# Translators:
# Alex <info@pixelbits.de>, 2013.
# <info@pixelbits.de>, 2013.
# <info@pixelbits.de>, 2012.
# <mobilpress@gmail.com>, 2011.
# Pavel Morozov <mobilpress@gmail.com>, 2011.
# <pztrn@pztrn.ru>, 2012.
# Михаил <muhas@muhas.ru>, 2013.
msgid ""
msgstr ""
"Project-Id-Version: friendica\n"
"Report-Msgid-Bugs-To: http://bugs.friendica.com/\n"
"POT-Creation-Date: 2012-12-03 10:00-0800\n"
"PO-Revision-Date: 2012-12-03 16:13+0000\n"
"Last-Translator: pztrn <pztrn@pztrn.ru>\n"
"POT-Creation-Date: 2013-03-19 03:30-0700\n"
"PO-Revision-Date: 2013-03-22 11:40+0000\n"
"Last-Translator: alexej <info@pixelbits.de>\n"
"Language-Team: Russian (http://www.transifex.com/projects/p/friendica/language/ru/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@ -21,7849 +24,22 @@ msgstr ""
"Language: ru\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
#: ../../mod/oexchange.php:25
msgid "Post successful."
msgstr "Успешно добавлено."
#: ../../mod/update_notes.php:41 ../../mod/update_community.php:18
#: ../../mod/update_network.php:22 ../../mod/update_profile.php:41
#: ../../mod/update_display.php:22
msgid "[Embedded content - reload page to view]"
msgstr "[Встроенное содержание - перезагрузите страницу для просмотра]"
#: ../../mod/crepair.php:102
msgid "Contact settings applied."
msgstr "Установки контакта приняты."
#: ../../mod/crepair.php:104
msgid "Contact update failed."
msgstr "Обновление контакта неудачное."
#: ../../mod/crepair.php:115 ../../mod/wall_attach.php:55
#: ../../mod/fsuggest.php:78 ../../mod/events.php:140 ../../mod/api.php:26
#: ../../mod/api.php:31 ../../mod/photos.php:133 ../../mod/photos.php:995
#: ../../mod/editpost.php:10 ../../mod/install.php:151 ../../mod/poke.php:135
#: ../../mod/notifications.php:66 ../../mod/contacts.php:147
#: ../../mod/settings.php:91 ../../mod/settings.php:541
#: ../../mod/settings.php:546 ../../mod/manage.php:90 ../../mod/network.php:6
#: ../../mod/notes.php:20 ../../mod/uimport.php:23 ../../mod/wallmessage.php:9
#: ../../mod/wallmessage.php:33 ../../mod/wallmessage.php:79
#: ../../mod/wallmessage.php:103 ../../mod/attach.php:33
#: ../../mod/group.php:19 ../../mod/viewcontacts.php:22
#: ../../mod/register.php:38 ../../mod/regmod.php:116 ../../mod/item.php:139
#: ../../mod/item.php:155 ../../mod/mood.php:114
#: ../../mod/profile_photo.php:19 ../../mod/profile_photo.php:169
#: ../../mod/profile_photo.php:180 ../../mod/profile_photo.php:193
#: ../../mod/message.php:38 ../../mod/message.php:172
#: ../../mod/allfriends.php:9 ../../mod/nogroup.php:25
#: ../../mod/wall_upload.php:66 ../../mod/follow.php:9
#: ../../mod/display.php:165 ../../mod/profiles.php:7
#: ../../mod/profiles.php:431 ../../mod/delegate.php:6
#: ../../mod/suggest.php:28 ../../mod/invite.php:13 ../../mod/invite.php:81
#: ../../mod/dfrn_confirm.php:53 ../../addon/facebook/facebook.php:510
#: ../../addon/facebook/facebook.php:516 ../../addon/fbpost/fbpost.php:159
#: ../../addon/fbpost/fbpost.php:165
#: ../../addon/dav/friendica/layout.fnk.php:354 ../../include/items.php:3977
#: ../../index.php:333 ../../addon.old/facebook/facebook.php:510
#: ../../addon.old/facebook/facebook.php:516
#: ../../addon.old/fbpost/fbpost.php:159 ../../addon.old/fbpost/fbpost.php:165
#: ../../addon.old/dav/friendica/layout.fnk.php:354
msgid "Permission denied."
msgstr "Нет разрешения."
#: ../../mod/crepair.php:129 ../../mod/fsuggest.php:20
#: ../../mod/fsuggest.php:92 ../../mod/dfrn_confirm.php:118
msgid "Contact not found."
msgstr "Контакт не найден."
#: ../../mod/crepair.php:135
msgid "Repair Contact Settings"
msgstr "Восстановить установки контакта"
#: ../../mod/crepair.php:137
msgid ""
"<strong>WARNING: This is highly advanced</strong> and if you enter incorrect"
" information your communications with this contact may stop working."
msgstr "<strong>ВНИМАНИЕ: Это крайне важно!</strong> Если вы введете неверную информацию, ваша связь с этим контактом перестанет работать."
#: ../../mod/crepair.php:138
msgid ""
"Please use your browser 'Back' button <strong>now</strong> if you are "
"uncertain what to do on this page."
msgstr "Пожалуйста, нажмите клавишу вашего браузера 'Back' или 'Назад' <strong>сейчас</strong>, если вы не уверены, что делаете на этой странице."
#: ../../mod/crepair.php:144
msgid "Return to contact editor"
msgstr ""
#: ../../mod/crepair.php:148 ../../mod/settings.php:561
#: ../../mod/settings.php:587 ../../mod/admin.php:695 ../../mod/admin.php:705
msgid "Name"
msgstr "Имя"
#: ../../mod/crepair.php:149
msgid "Account Nickname"
msgstr "Ник аккаунта"
#: ../../mod/crepair.php:150
msgid "@Tagname - overrides Name/Nickname"
msgstr ""
#: ../../mod/crepair.php:151
msgid "Account URL"
msgstr "URL аккаунта"
#: ../../mod/crepair.php:152
msgid "Friend Request URL"
msgstr "URL запроса в друзья"
#: ../../mod/crepair.php:153
msgid "Friend Confirm URL"
msgstr "URL подтверждения друга"
#: ../../mod/crepair.php:154
msgid "Notification Endpoint URL"
msgstr "URL эндпоинта уведомления"
#: ../../mod/crepair.php:155
msgid "Poll/Feed URL"
msgstr "URL опроса/ленты"
#: ../../mod/crepair.php:156
msgid "New photo from this URL"
msgstr "Новое фото из этой URL"
#: ../../mod/crepair.php:166 ../../mod/fsuggest.php:107
#: ../../mod/events.php:455 ../../mod/photos.php:1028
#: ../../mod/photos.php:1100 ../../mod/photos.php:1363
#: ../../mod/photos.php:1403 ../../mod/photos.php:1447
#: ../../mod/photos.php:1519 ../../mod/install.php:246
#: ../../mod/install.php:284 ../../mod/localtime.php:45 ../../mod/poke.php:199
#: ../../mod/content.php:693 ../../mod/contacts.php:352
#: ../../mod/settings.php:559 ../../mod/settings.php:669
#: ../../mod/settings.php:738 ../../mod/settings.php:810
#: ../../mod/settings.php:1017 ../../mod/group.php:85 ../../mod/mood.php:137
#: ../../mod/message.php:301 ../../mod/message.php:487 ../../mod/admin.php:445
#: ../../mod/admin.php:692 ../../mod/admin.php:829 ../../mod/admin.php:1028
#: ../../mod/admin.php:1115 ../../mod/profiles.php:604
#: ../../mod/invite.php:119 ../../addon/fromgplus/fromgplus.php:40
#: ../../addon/facebook/facebook.php:619
#: ../../addon/snautofollow/snautofollow.php:64
#: ../../addon/fbpost/fbpost.php:226 ../../addon/yourls/yourls.php:76
#: ../../addon/ljpost/ljpost.php:93 ../../addon/nsfw/nsfw.php:88
#: ../../addon/page/page.php:211 ../../addon/planets/planets.php:158
#: ../../addon/uhremotestorage/uhremotestorage.php:89
#: ../../addon/randplace/randplace.php:177 ../../addon/dwpost/dwpost.php:93
#: ../../addon/remote_permissions/remote_permissions.php:47
#: ../../addon/remote_permissions/remote_permissions.php:195
#: ../../addon/startpage/startpage.php:92
#: ../../addon/geonames/geonames.php:187
#: ../../addon/forumlist/forumlist.php:175
#: ../../addon/impressum/impressum.php:83
#: ../../addon/notimeline/notimeline.php:64 ../../addon/blockem/blockem.php:57
#: ../../addon/qcomment/qcomment.php:61
#: ../../addon/openstreetmap/openstreetmap.php:70
#: ../../addon/group_text/group_text.php:84
#: ../../addon/libravatar/libravatar.php:99
#: ../../addon/libertree/libertree.php:90 ../../addon/altpager/altpager.php:87
#: ../../addon/mathjax/mathjax.php:42 ../../addon/editplain/editplain.php:84
#: ../../addon/blackout/blackout.php:98 ../../addon/gravatar/gravatar.php:95
#: ../../addon/pageheader/pageheader.php:55 ../../addon/ijpost/ijpost.php:93
#: ../../addon/jappixmini/jappixmini.php:307
#: ../../addon/statusnet/statusnet.php:278
#: ../../addon/statusnet/statusnet.php:292
#: ../../addon/statusnet/statusnet.php:318
#: ../../addon/statusnet/statusnet.php:325
#: ../../addon/statusnet/statusnet.php:353
#: ../../addon/statusnet/statusnet.php:685 ../../addon/tumblr/tumblr.php:90
#: ../../addon/numfriends/numfriends.php:85 ../../addon/gnot/gnot.php:88
#: ../../addon/wppost/wppost.php:110 ../../addon/showmore/showmore.php:48
#: ../../addon/piwik/piwik.php:89 ../../addon/twitter/twitter.php:180
#: ../../addon/twitter/twitter.php:209 ../../addon/twitter/twitter.php:506
#: ../../addon/irc/irc.php:55 ../../addon/fromapp/fromapp.php:77
#: ../../addon/blogger/blogger.php:102 ../../addon/posterous/posterous.php:103
#: ../../view/theme/cleanzero/config.php:80
#: ../../view/theme/diabook/theme.php:642
#: ../../view/theme/diabook/config.php:152
#: ../../view/theme/quattro/config.php:64 ../../view/theme/dispy/config.php:70
#: ../../object/Item.php:570 ../../addon.old/fromgplus/fromgplus.php:40
#: ../../addon.old/facebook/facebook.php:619
#: ../../addon.old/snautofollow/snautofollow.php:64
#: ../../addon.old/bg/bg.php:90 ../../addon.old/fbpost/fbpost.php:226
#: ../../addon.old/yourls/yourls.php:76 ../../addon.old/ljpost/ljpost.php:93
#: ../../addon.old/nsfw/nsfw.php:88 ../../addon.old/page/page.php:211
#: ../../addon.old/planets/planets.php:158
#: ../../addon.old/uhremotestorage/uhremotestorage.php:89
#: ../../addon.old/randplace/randplace.php:177
#: ../../addon.old/dwpost/dwpost.php:93 ../../addon.old/drpost/drpost.php:110
#: ../../addon.old/startpage/startpage.php:92
#: ../../addon.old/geonames/geonames.php:187
#: ../../addon.old/oembed.old/oembed.php:41
#: ../../addon.old/forumlist/forumlist.php:175
#: ../../addon.old/impressum/impressum.php:83
#: ../../addon.old/notimeline/notimeline.php:64
#: ../../addon.old/blockem/blockem.php:57
#: ../../addon.old/qcomment/qcomment.php:61
#: ../../addon.old/openstreetmap/openstreetmap.php:70
#: ../../addon.old/group_text/group_text.php:84
#: ../../addon.old/libravatar/libravatar.php:99
#: ../../addon.old/libertree/libertree.php:90
#: ../../addon.old/altpager/altpager.php:87
#: ../../addon.old/mathjax/mathjax.php:42
#: ../../addon.old/editplain/editplain.php:84
#: ../../addon.old/blackout/blackout.php:98
#: ../../addon.old/gravatar/gravatar.php:95
#: ../../addon.old/pageheader/pageheader.php:55
#: ../../addon.old/ijpost/ijpost.php:93
#: ../../addon.old/jappixmini/jappixmini.php:307
#: ../../addon.old/statusnet/statusnet.php:278
#: ../../addon.old/statusnet/statusnet.php:292
#: ../../addon.old/statusnet/statusnet.php:318
#: ../../addon.old/statusnet/statusnet.php:325
#: ../../addon.old/statusnet/statusnet.php:353
#: ../../addon.old/statusnet/statusnet.php:576
#: ../../addon.old/tumblr/tumblr.php:90
#: ../../addon.old/numfriends/numfriends.php:85
#: ../../addon.old/gnot/gnot.php:88 ../../addon.old/wppost/wppost.php:110
#: ../../addon.old/showmore/showmore.php:48 ../../addon.old/piwik/piwik.php:89
#: ../../addon.old/twitter/twitter.php:180
#: ../../addon.old/twitter/twitter.php:209
#: ../../addon.old/twitter/twitter.php:394 ../../addon.old/irc/irc.php:55
#: ../../addon.old/fromapp/fromapp.php:77
#: ../../addon.old/blogger/blogger.php:102
#: ../../addon.old/posterous/posterous.php:103
msgid "Submit"
msgstr "Подтвердить"
#: ../../mod/help.php:79
msgid "Help:"
msgstr "Помощь:"
#: ../../mod/help.php:84 ../../addon/dav/friendica/layout.fnk.php:225
#: ../../include/nav.php:86 ../../addon.old/dav/friendica/layout.fnk.php:225
msgid "Help"
msgstr "Помощь"
#: ../../mod/help.php:90 ../../index.php:218
msgid "Not Found"
msgstr "Не найдено"
#: ../../mod/help.php:93 ../../index.php:221
msgid "Page not found."
msgstr "Страница не найдена."
#: ../../mod/wall_attach.php:69
#, php-format
msgid "File exceeds size limit of %d"
msgstr "Файл превышает предельный размер %d"
#: ../../mod/wall_attach.php:110 ../../mod/wall_attach.php:121
msgid "File upload failed."
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 "Предложить друга для %s."
#: ../../mod/events.php:66
msgid "Event title and start time are required."
msgstr ""
#: ../../mod/events.php:279
msgid "l, F j"
msgstr "l, j F"
#: ../../mod/events.php:301
msgid "Edit event"
msgstr "Редактировать мероприятие"
#: ../../mod/events.php:323 ../../include/text.php:1190
msgid "link to source"
msgstr "ссылка на источник"
#: ../../mod/events.php:347 ../../view/theme/diabook/theme.php:91
#: ../../include/nav.php:52 ../../boot.php:1748
msgid "Events"
msgstr "Мероприятия"
#: ../../mod/events.php:348
msgid "Create New Event"
msgstr "Создать новое мероприятие"
#: ../../mod/events.php:349 ../../addon/dav/friendica/layout.fnk.php:263
#: ../../addon.old/dav/friendica/layout.fnk.php:263
msgid "Previous"
msgstr "Назад"
#: ../../mod/events.php:350 ../../mod/install.php:205
#: ../../addon/dav/friendica/layout.fnk.php:266
#: ../../addon.old/dav/friendica/layout.fnk.php:266
msgid "Next"
msgstr "Далее"
#: ../../mod/events.php:423
msgid "hour:minute"
msgstr "час:минута"
#: ../../mod/events.php:433
msgid "Event details"
msgstr "Сведения о мероприятии"
#: ../../mod/events.php:434
#, php-format
msgid "Format is %s %s. Starting date and Title are required."
msgstr ""
#: ../../mod/events.php:436
msgid "Event Starts:"
msgstr "Начало мероприятия:"
#: ../../mod/events.php:436 ../../mod/events.php:450
msgid "Required"
msgstr ""
#: ../../mod/events.php:439
msgid "Finish date/time is not known or not relevant"
msgstr "Дата/время окончания не известны, или не указаны"
#: ../../mod/events.php:441
msgid "Event Finishes:"
msgstr "Окончание мероприятия:"
#: ../../mod/events.php:444
msgid "Adjust for viewer timezone"
msgstr "Настройка часового пояса"
#: ../../mod/events.php:446
msgid "Description:"
msgstr "Описание:"
#: ../../mod/events.php:448 ../../mod/directory.php:134
#: ../../addon/forumdirectory/forumdirectory.php:156
#: ../../include/event.php:40 ../../include/bb2diaspora.php:412
#: ../../boot.php:1278
msgid "Location:"
msgstr "Откуда:"
#: ../../mod/events.php:450
msgid "Title:"
msgstr ""
#: ../../mod/events.php:452
msgid "Share this event"
msgstr "Поделитесь этим мероприятием"
#: ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 ../../mod/editpost.php:145
#: ../../mod/dfrn_request.php:847 ../../mod/settings.php:560
#: ../../mod/settings.php:586 ../../addon/js_upload/js_upload.php:45
#: ../../include/conversation.php:1009
#: ../../addon.old/js_upload/js_upload.php:45
msgid "Cancel"
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:130
#: ../../addon/dav/common/wdcal_edit.inc.php:468
#: ../../addon.old/dav/common/wdcal_edit.inc.php:468
msgid "Remove"
msgstr "Удалить"
#: ../../mod/dfrn_poll.php:99 ../../mod/dfrn_poll.php:530
#, php-format
msgid "%1$s welcomes %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/api.php:105 ../../mod/dfrn_request.php:835
#: ../../mod/settings.php:933 ../../mod/settings.php:939
#: ../../mod/settings.php:947 ../../mod/settings.php:951
#: ../../mod/settings.php:956 ../../mod/settings.php:962
#: ../../mod/settings.php:968 ../../mod/settings.php:974
#: ../../mod/settings.php:1004 ../../mod/settings.php:1005
#: ../../mod/settings.php:1006 ../../mod/settings.php:1007
#: ../../mod/settings.php:1008 ../../mod/register.php:237
#: ../../mod/profiles.php:584
msgid "Yes"
msgstr "Да"
#: ../../mod/api.php:106 ../../mod/dfrn_request.php:836
#: ../../mod/settings.php:933 ../../mod/settings.php:939
#: ../../mod/settings.php:947 ../../mod/settings.php:951
#: ../../mod/settings.php:956 ../../mod/settings.php:962
#: ../../mod/settings.php:968 ../../mod/settings.php:974
#: ../../mod/settings.php:1004 ../../mod/settings.php:1005
#: ../../mod/settings.php:1006 ../../mod/settings.php:1007
#: ../../mod/settings.php:1008 ../../mod/register.php:238
#: ../../mod/profiles.php:585
msgid "No"
msgstr "Нет"
#: ../../mod/photos.php:51 ../../boot.php:1741
msgid "Photo Albums"
msgstr "Фотоальбомы"
#: ../../mod/photos.php:59 ../../mod/photos.php:154 ../../mod/photos.php:1009
#: ../../mod/photos.php:1092 ../../mod/photos.php:1107
#: ../../mod/photos.php:1562 ../../mod/photos.php:1574
#: ../../addon/communityhome/communityhome.php:110
#: ../../view/theme/diabook/theme.php:492
#: ../../addon.old/communityhome/communityhome.php:110
msgid "Contact Photos"
msgstr "Фотографии контакта"
#: ../../mod/photos.php:66 ../../mod/photos.php:1123 ../../mod/photos.php:1612
msgid "Upload New Photos"
msgstr "Загрузить новые фото"
#: ../../mod/photos.php:79 ../../mod/settings.php:23
msgid "everybody"
msgstr "каждый"
#: ../../mod/photos.php:143
msgid "Contact information unavailable"
msgstr "Информация о контакте недоступна"
#: ../../mod/photos.php:154 ../../mod/photos.php:676 ../../mod/photos.php:1092
#: ../../mod/photos.php:1107 ../../mod/profile_photo.php:74
#: ../../mod/profile_photo.php:81 ../../mod/profile_photo.php:88
#: ../../mod/profile_photo.php:204 ../../mod/profile_photo.php:296
#: ../../mod/profile_photo.php:305
#: ../../addon/communityhome/communityhome.php:111
#: ../../view/theme/diabook/theme.php:493 ../../include/user.php:324
#: ../../include/user.php:331 ../../include/user.php:338
#: ../../addon.old/communityhome/communityhome.php:111
msgid "Profile Photos"
msgstr "Фотографии профиля"
#: ../../mod/photos.php:164
msgid "Album not found."
msgstr "Альбом не найден."
#: ../../mod/photos.php:182 ../../mod/photos.php:1101
msgid "Delete Album"
msgstr "Удалить альбом"
#: ../../mod/photos.php:245 ../../mod/photos.php:1364
msgid "Delete Photo"
msgstr "Удалить фото"
#: ../../mod/photos.php:607
#, php-format
msgid "%1$s was tagged in %2$s by %3$s"
msgstr ""
#: ../../mod/photos.php:607
msgid "a photo"
msgstr ""
#: ../../mod/photos.php:712 ../../addon/js_upload/js_upload.php:321
#: ../../addon.old/js_upload/js_upload.php:315
msgid "Image exceeds size limit of "
msgstr "Размер фото превышает лимит "
#: ../../mod/photos.php:720
msgid "Image file is empty."
msgstr "Файл изображения пуст."
#: ../../mod/photos.php:752 ../../mod/profile_photo.php:153
#: ../../mod/wall_upload.php:112
msgid "Unable to process image."
msgstr "Невозможно обработать фото."
#: ../../mod/photos.php:779 ../../mod/profile_photo.php:301
#: ../../mod/wall_upload.php:138
msgid "Image upload failed."
msgstr "Загрузка фото неудачная."
#: ../../mod/photos.php:865 ../../mod/community.php:18
#: ../../mod/dfrn_request.php:760 ../../mod/viewcontacts.php:17
#: ../../mod/display.php:7 ../../mod/search.php:89 ../../mod/directory.php:31
#: ../../addon/forumdirectory/forumdirectory.php:53
msgid "Public access denied."
msgstr "Свободный доступ закрыт."
#: ../../mod/photos.php:875
msgid "No photos selected"
msgstr "Не выбрано фото."
#: ../../mod/photos.php:976
msgid "Access to this item is restricted."
msgstr "Доступ к этому пункту ограничен."
#: ../../mod/photos.php:1037
#, php-format
msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."
msgstr ""
#: ../../mod/photos.php:1043
msgid "Upload Photos"
msgstr "Загрузить фото"
#: ../../mod/photos.php:1047 ../../mod/photos.php:1096
msgid "New album name: "
msgstr "Название нового альбома: "
#: ../../mod/photos.php:1048
msgid "or existing album name: "
msgstr "или название существующего альбома: "
#: ../../mod/photos.php:1049
msgid "Do not show a status post for this upload"
msgstr "Не показывать статус-сообщение для этой закачки"
#: ../../mod/photos.php:1051 ../../mod/photos.php:1359
msgid "Permissions"
msgstr "Разрешения"
#: ../../mod/photos.php:1111
msgid "Edit Album"
msgstr "Редактировать альбом"
#: ../../mod/photos.php:1117
msgid "Show Newest First"
msgstr ""
#: ../../mod/photos.php:1119
msgid "Show Oldest First"
msgstr ""
#: ../../mod/photos.php:1143 ../../mod/photos.php:1595
msgid "View Photo"
msgstr "Просмотр фото"
#: ../../mod/photos.php:1178
msgid "Permission denied. Access to this item may be restricted."
msgstr "Нет разрешения. Доступ к этому элементу ограничен."
#: ../../mod/photos.php:1180
msgid "Photo not available"
msgstr "Фото недоступно"
#: ../../mod/photos.php:1236
msgid "View photo"
msgstr "Просмотр фото"
#: ../../mod/photos.php:1236
msgid "Edit photo"
msgstr "Редактировать фото"
#: ../../mod/photos.php:1237
msgid "Use as profile photo"
msgstr "Использовать как фото профиля"
#: ../../mod/photos.php:1243 ../../mod/content.php:603
#: ../../object/Item.php:104
msgid "Private Message"
msgstr "Личное сообщение"
#: ../../mod/photos.php:1262
msgid "View Full Size"
msgstr "Просмотреть полный размер"
#: ../../mod/photos.php:1336
msgid "Tags: "
msgstr "Ключевые слова: "
#: ../../mod/photos.php:1339
msgid "[Remove any tag]"
msgstr "[Удалить любое ключевое слово]"
#: ../../mod/photos.php:1349
msgid "Rotate CW (right)"
msgstr ""
#: ../../mod/photos.php:1350
msgid "Rotate CCW (left)"
msgstr ""
#: ../../mod/photos.php:1352
msgid "New album name"
msgstr "Название нового альбома"
#: ../../mod/photos.php:1355
msgid "Caption"
msgstr "Подпись"
#: ../../mod/photos.php:1357
msgid "Add a Tag"
msgstr "Добавить ключевое слово (таг)"
#: ../../mod/photos.php:1361
msgid ""
"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
msgstr "Пример: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
#: ../../mod/photos.php:1381 ../../mod/content.php:667
#: ../../object/Item.php:202
msgid "I like this (toggle)"
msgstr "Нравится"
#: ../../mod/photos.php:1382 ../../mod/content.php:668
#: ../../object/Item.php:203
msgid "I don't like this (toggle)"
msgstr "Не нравится"
#: ../../mod/photos.php:1383 ../../include/conversation.php:969
msgid "Share"
msgstr "Поделиться"
#: ../../mod/photos.php:1384 ../../mod/editpost.php:121
#: ../../mod/content.php:482 ../../mod/content.php:848
#: ../../mod/wallmessage.php:152 ../../mod/message.php:300
#: ../../mod/message.php:488 ../../include/conversation.php:624
#: ../../include/conversation.php:988 ../../object/Item.php:269
msgid "Please wait"
msgstr "Пожалуйста, подождите"
#: ../../mod/photos.php:1400 ../../mod/photos.php:1444
#: ../../mod/photos.php:1516 ../../mod/content.php:690
#: ../../object/Item.php:567
msgid "This is you"
msgstr "Это вы"
#: ../../mod/photos.php:1402 ../../mod/photos.php:1446
#: ../../mod/photos.php:1518 ../../mod/content.php:692 ../../boot.php:608
#: ../../object/Item.php:266 ../../object/Item.php:569
msgid "Comment"
msgstr "Комментарий"
#: ../../mod/photos.php:1404 ../../mod/photos.php:1448
#: ../../mod/photos.php:1520 ../../mod/editpost.php:142
#: ../../mod/content.php:702 ../../include/conversation.php:1006
#: ../../object/Item.php:579
msgid "Preview"
msgstr "предварительный просмотр"
#: ../../mod/photos.php:1488 ../../mod/content.php:439
#: ../../mod/content.php:724 ../../mod/settings.php:622
#: ../../mod/group.php:168 ../../mod/admin.php:699
#: ../../include/conversation.php:569 ../../object/Item.php:118
msgid "Delete"
msgstr "Удалить"
#: ../../mod/photos.php:1601
msgid "View Album"
msgstr "Просмотреть альбом"
#: ../../mod/photos.php:1610
msgid "Recent Photos"
msgstr "Последние фото"
#: ../../mod/community.php:23
msgid "Not available."
msgstr "Недоступно."
#: ../../mod/community.php:32 ../../view/theme/diabook/theme.php:93
#: ../../include/nav.php:101
msgid "Community"
msgstr "Сообщество"
#: ../../mod/community.php:61 ../../mod/community.php:86
#: ../../mod/search.php:162 ../../mod/search.php:188
msgid "No results."
msgstr "Нет результатов."
#: ../../mod/friendica.php:55
msgid "This is Friendica, version"
msgstr "Это Friendica, версия"
#: ../../mod/friendica.php:56
msgid "running at web location"
msgstr "работает на веб-узле"
#: ../../mod/friendica.php:58
msgid ""
"Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn "
"more about the Friendica project."
msgstr ""
#: ../../mod/friendica.php:60
msgid "Bug reports and issues: please visit"
msgstr "Отчет об ошибках и проблемах: пожалуйста, посетите"
#: ../../mod/friendica.php:61
msgid ""
"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - "
"dot com"
msgstr "Предложения, похвала, пожертвования? Пишите на \"info\" на Friendica - точка com"
#: ../../mod/friendica.php:75
msgid "Installed plugins/addons/apps:"
msgstr ""
#: ../../mod/friendica.php:88
msgid "No installed plugins/addons/apps"
msgstr "Нет установленных плагинов / добавок / приложений"
#: ../../mod/editpost.php:17 ../../mod/editpost.php:27
msgid "Item not found"
msgstr "Элемент не найден"
#: ../../mod/editpost.php:39
msgid "Edit post"
msgstr "Редактировать сообщение"
#: ../../mod/editpost.php:91 ../../include/conversation.php:955
msgid "Post to Email"
msgstr "Отправить на Email"
#: ../../mod/editpost.php:106 ../../mod/content.php:711
#: ../../mod/settings.php:621 ../../object/Item.php:108
msgid "Edit"
msgstr "Редактировать"
#: ../../mod/editpost.php:107 ../../mod/wallmessage.php:150
#: ../../mod/message.php:298 ../../mod/message.php:485
#: ../../include/conversation.php:970
msgid "Upload photo"
msgstr "Загрузить фото"
#: ../../mod/editpost.php:108 ../../include/conversation.php:971
msgid "upload photo"
msgstr "загрузить фото"
#: ../../mod/editpost.php:109 ../../include/conversation.php:972
msgid "Attach file"
msgstr "Приложить файл"
#: ../../mod/editpost.php:110 ../../include/conversation.php:973
msgid "attach file"
msgstr "приложить файл"
#: ../../mod/editpost.php:111 ../../mod/wallmessage.php:151
#: ../../mod/message.php:299 ../../mod/message.php:486
#: ../../include/conversation.php:974
msgid "Insert web link"
msgstr "Вставить веб-ссылку"
#: ../../mod/editpost.php:112 ../../include/conversation.php:975
msgid "web link"
msgstr "веб-ссылка"
#: ../../mod/editpost.php:113 ../../include/conversation.php:976
msgid "Insert video link"
msgstr "Вставить ссылку видео"
#: ../../mod/editpost.php:114 ../../include/conversation.php:977
msgid "video link"
msgstr "видео-ссылка"
#: ../../mod/editpost.php:115 ../../include/conversation.php:978
msgid "Insert audio link"
msgstr "Вставить ссылку аудио"
#: ../../mod/editpost.php:116 ../../include/conversation.php:979
msgid "audio link"
msgstr "аудио-ссылка"
#: ../../mod/editpost.php:117 ../../include/conversation.php:980
msgid "Set your location"
msgstr "Задать ваше местоположение"
#: ../../mod/editpost.php:118 ../../include/conversation.php:981
msgid "set location"
msgstr "установить местонахождение"
#: ../../mod/editpost.php:119 ../../include/conversation.php:982
msgid "Clear browser location"
msgstr "Очистить местонахождение браузера"
#: ../../mod/editpost.php:120 ../../include/conversation.php:983
msgid "clear location"
msgstr "убрать местонахождение"
#: ../../mod/editpost.php:122 ../../include/conversation.php:989
msgid "Permission settings"
msgstr "Настройки разрешений"
#: ../../mod/editpost.php:130 ../../include/conversation.php:998
msgid "CC: email addresses"
msgstr "Копии на email адреса"
#: ../../mod/editpost.php:131 ../../include/conversation.php:999
msgid "Public post"
msgstr "Публичное сообщение"
#: ../../mod/editpost.php:134 ../../include/conversation.php:985
msgid "Set title"
msgstr "Установить заголовок"
#: ../../mod/editpost.php:136 ../../include/conversation.php:987
msgid "Categories (comma-separated list)"
msgstr "Категории (список через запятую)"
#: ../../mod/editpost.php:137 ../../include/conversation.php:1001
msgid "Example: bob@example.com, mary@example.com"
msgstr "Пример: bob@example.com, mary@example.com"
#: ../../mod/dfrn_request.php:93
msgid "This introduction has already been accepted."
msgstr "Этот запрос был уже принят."
#: ../../mod/dfrn_request.php:118 ../../mod/dfrn_request.php:512
msgid "Profile location is not valid or does not contain profile information."
msgstr "Местоположение профиля является недопустимым или не содержит информацию о профиле."
#: ../../mod/dfrn_request.php:123 ../../mod/dfrn_request.php:517
msgid "Warning: profile location has no identifiable owner name."
msgstr "Внимание: местоположение профиля не имеет идентифицируемого имени владельца."
#: ../../mod/dfrn_request.php:125 ../../mod/dfrn_request.php:519
msgid "Warning: profile location has no profile photo."
msgstr "Внимание: местоположение профиля не имеет еще фотографии профиля."
#: ../../mod/dfrn_request.php:128 ../../mod/dfrn_request.php:522
#, php-format
msgid "%d required parameter was not found at the given location"
msgid_plural "%d required parameters were not found at the given location"
msgstr[0] "%d требуемый параметр не был найден в заданном месте"
msgstr[1] "%d требуемых параметров не были найдены в заданном месте"
msgstr[2] "%d требуемых параметров не были найдены в заданном месте"
#: ../../mod/dfrn_request.php:170
msgid "Introduction complete."
msgstr "Запрос создан."
#: ../../mod/dfrn_request.php:209
msgid "Unrecoverable protocol error."
msgstr "Неисправимая ошибка протокола."
#: ../../mod/dfrn_request.php:237
msgid "Profile unavailable."
msgstr "Профиль недоступен."
#: ../../mod/dfrn_request.php:262
#, php-format
msgid "%s has received too many connection requests today."
msgstr "К %s пришло сегодня слишком много запросов на подключение."
#: ../../mod/dfrn_request.php:263
msgid "Spam protection measures have been invoked."
msgstr "Были применены меры защиты от спама."
#: ../../mod/dfrn_request.php:264
msgid "Friends are advised to please try again in 24 hours."
msgstr "Друзья советуют попробовать еще раз в ближайшие 24 часа."
#: ../../mod/dfrn_request.php:326
msgid "Invalid locator"
msgstr "Недопустимый локатор"
#: ../../mod/dfrn_request.php:335
msgid "Invalid email address."
msgstr ""
#: ../../mod/dfrn_request.php:361
msgid "This account has not been configured for email. Request failed."
msgstr ""
#: ../../mod/dfrn_request.php:457
msgid "Unable to resolve your name at the provided location."
msgstr "Не удается установить ваше имя на предложенном местоположении."
#: ../../mod/dfrn_request.php:470
msgid "You have already introduced yourself here."
msgstr "Вы уже ввели информацию о себе здесь."
#: ../../mod/dfrn_request.php:474
#, php-format
msgid "Apparently you are already friends with %s."
msgstr "Похоже, что вы уже друзья с %s."
#: ../../mod/dfrn_request.php:495
msgid "Invalid profile URL."
msgstr "Неверный URL профиля."
#: ../../mod/dfrn_request.php:501 ../../include/follow.php:27
msgid "Disallowed profile URL."
msgstr "Запрещенный URL профиля."
#: ../../mod/dfrn_request.php:570 ../../mod/contacts.php:124
msgid "Failed to update contact record."
msgstr "Не удалось обновить запись контакта."
#: ../../mod/dfrn_request.php:591
msgid "Your introduction has been sent."
msgstr "Ваш запрос отправлен."
#: ../../mod/dfrn_request.php:644
msgid "Please login to confirm introduction."
msgstr "Для подтверждения запроса войдите пожалуйста с паролем."
#: ../../mod/dfrn_request.php:658
msgid ""
"Incorrect identity currently logged in. Please login to "
"<strong>this</strong> profile."
msgstr "Неверно идентифицирован вход. Пожалуйста, войдите в <strong>этот</strong> профиль."
#: ../../mod/dfrn_request.php:669
msgid "Hide this contact"
msgstr ""
#: ../../mod/dfrn_request.php:672
#, php-format
msgid "Welcome home %s."
msgstr "Добро пожаловать домой, %s!"
#: ../../mod/dfrn_request.php:673
#, php-format
msgid "Please confirm your introduction/connection request to %s."
msgstr "Пожалуйста, подтвердите краткую информацию / запрос на подключение к %s."
#: ../../mod/dfrn_request.php:674
msgid "Confirm"
msgstr "Подтвердить"
#: ../../mod/dfrn_request.php:715 ../../include/items.php:3356
msgid "[Name Withheld]"
msgstr "[Имя не разглашается]"
#: ../../mod/dfrn_request.php:810
msgid ""
"Please enter your 'Identity Address' from one of the following supported "
"communications networks:"
msgstr ""
#: ../../mod/dfrn_request.php:826
msgid "<strike>Connect as an email follower</strike> (Coming soon)"
msgstr ""
#: ../../mod/dfrn_request.php:828
msgid ""
"If you are not yet a member of the free social web, <a "
"href=\"http://dir.friendica.com/siteinfo\">follow this link to find a public"
" Friendica site and join us today</a>."
msgstr ""
#: ../../mod/dfrn_request.php:831
msgid "Friend/Connection Request"
msgstr "Запрос в друзья / на подключение"
#: ../../mod/dfrn_request.php:832
msgid ""
"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, "
"testuser@identi.ca"
msgstr "Примеры: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"
#: ../../mod/dfrn_request.php:833
msgid "Please answer the following:"
msgstr "Пожалуйста, ответьте следующее:"
#: ../../mod/dfrn_request.php:834
#, php-format
msgid "Does %s know you?"
msgstr "%s знает вас?"
#: ../../mod/dfrn_request.php:837
msgid "Add a personal note:"
msgstr "Добавить личную заметку:"
#: ../../mod/dfrn_request.php:839 ../../include/contact_selectors.php:76
msgid "Friendica"
msgstr "Friendica"
#: ../../mod/dfrn_request.php:840
msgid "StatusNet/Federated Social Web"
msgstr "StatusNet / Federated Social Web"
#: ../../mod/dfrn_request.php:841 ../../mod/settings.php:681
#: ../../include/contact_selectors.php:80
msgid "Diaspora"
msgstr "Diaspora"
#: ../../mod/dfrn_request.php:842
#, php-format
msgid ""
" - please do not use this form. Instead, enter %s into your Diaspora search"
" bar."
msgstr ""
#: ../../mod/dfrn_request.php:843
msgid "Your Identity Address:"
msgstr "Ваш идентификационный адрес:"
#: ../../mod/dfrn_request.php:846
msgid "Submit Request"
msgstr "Отправить запрос"
#: ../../mod/uexport.php:9 ../../mod/settings.php:30 ../../include/nav.php:138
msgid "Account settings"
msgstr "Настройки аккаунта"
#: ../../mod/uexport.php:14 ../../mod/settings.php:40
msgid "Display settings"
msgstr "Параметры дисплея"
#: ../../mod/uexport.php:20 ../../mod/settings.php:46
msgid "Connector settings"
msgstr "Настройки соединителя"
#: ../../mod/uexport.php:25 ../../mod/settings.php:51
msgid "Plugin settings"
msgstr "Настройки плагина"
#: ../../mod/uexport.php:30 ../../mod/settings.php:56
msgid "Connected apps"
msgstr ""
#: ../../mod/uexport.php:35 ../../mod/uexport.php:80 ../../mod/settings.php:61
msgid "Export personal data"
msgstr "Экспорт личных данных"
#: ../../mod/uexport.php:40 ../../mod/settings.php:66
msgid "Remove account"
msgstr ""
#: ../../mod/uexport.php:48 ../../mod/settings.php:74
#: ../../mod/newmember.php:22 ../../mod/admin.php:788 ../../mod/admin.php:993
#: ../../addon/dav/friendica/layout.fnk.php:225
#: ../../addon/mathjax/mathjax.php:36 ../../view/theme/diabook/theme.php:537
#: ../../view/theme/diabook/theme.php:658 ../../include/nav.php:138
#: ../../addon.old/dav/friendica/layout.fnk.php:225
#: ../../addon.old/mathjax/mathjax.php:36
msgid "Settings"
msgstr "Настройки"
#: ../../mod/uexport.php:72
msgid "Export account"
msgstr ""
#: ../../mod/uexport.php:72
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:73
msgid "Export all"
msgstr ""
#: ../../mod/uexport.php:73
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/install.php:117
msgid "Friendica Social Communications Server - Setup"
msgstr ""
#: ../../mod/install.php:123
msgid "Could not connect to database."
msgstr "Не удалось подключиться к базе данных."
#: ../../mod/install.php:127
msgid "Could not create table."
msgstr "Не удалось создать таблицу."
#: ../../mod/install.php:133
msgid "Your Friendica site database has been installed."
msgstr "База данных сайта установлена."
#: ../../mod/install.php:138
msgid ""
"You may need to import the file \"database.sql\" manually using phpmyadmin "
"or mysql."
msgstr "Вам может понадобиться импортировать файл \"database.sql\" вручную с помощью PhpMyAdmin или MySQL."
#: ../../mod/install.php:139 ../../mod/install.php:204
#: ../../mod/install.php:488
msgid "Please see the file \"INSTALL.txt\"."
msgstr "Пожалуйста, смотрите файл \"INSTALL.txt\"."
#: ../../mod/install.php:201
msgid "System check"
msgstr ""
#: ../../mod/install.php:206
msgid "Check again"
msgstr "Проверить еще раз"
#: ../../mod/install.php:225
msgid "Database connection"
msgstr "Подключение к базе данных"
#: ../../mod/install.php:226
msgid ""
"In order to install Friendica we need to know how to connect to your "
"database."
msgstr ""
#: ../../mod/install.php:227
msgid ""
"Please contact your hosting provider or site administrator if you have "
"questions about these settings."
msgstr "Пожалуйста, свяжитесь с вашим хостинг-провайдером или администратором сайта, если у вас есть вопросы об этих параметрах."
#: ../../mod/install.php:228
msgid ""
"The database you specify below should already exist. If it does not, please "
"create it before continuing."
msgstr "Базы данных, указанная ниже, должна уже существовать. Если этого нет, пожалуйста, создайте ее перед продолжением."
#: ../../mod/install.php:232
msgid "Database Server Name"
msgstr "Имя сервера базы данных"
#: ../../mod/install.php:233
msgid "Database Login Name"
msgstr "Логин базы данных"
#: ../../mod/install.php:234
msgid "Database Login Password"
msgstr "Пароль базы данных"
#: ../../mod/install.php:235
msgid "Database Name"
msgstr "Имя базы данных"
#: ../../mod/install.php:236 ../../mod/install.php:275
msgid "Site administrator email address"
msgstr "Адрес электронной почты администратора сайта"
#: ../../mod/install.php:236 ../../mod/install.php:275
msgid ""
"Your account email address must match this in order to use the web admin "
"panel."
msgstr ""
#: ../../mod/install.php:240 ../../mod/install.php:278
msgid "Please select a default timezone for your website"
msgstr "Пожалуйста, выберите часовой пояс по умолчанию для вашего сайта"
#: ../../mod/install.php:265
msgid "Site settings"
msgstr "Настройки сайта"
#: ../../mod/install.php:318
msgid "Could not find a command line version of PHP in the web server PATH."
msgstr "Не удалось найти PATH веб-сервера в установках PHP."
#: ../../mod/install.php:319
msgid ""
"If you don't have a command line version of PHP installed on server, you "
"will not be able to run background polling via cron. See <a "
"href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>"
msgstr ""
#: ../../mod/install.php:323
msgid "PHP executable path"
msgstr "PHP executable path"
#: ../../mod/install.php:323
msgid ""
"Enter full path to php executable. You can leave this blank to continue the "
"installation."
msgstr ""
#: ../../mod/install.php:328
msgid "Command line PHP"
msgstr "Command line PHP"
#: ../../mod/install.php:337
msgid ""
"The command line version of PHP on your system does not have "
"\"register_argc_argv\" enabled."
msgstr "Не включено \"register_argc_argv\" в установках PHP."
#: ../../mod/install.php:338
msgid "This is required for message delivery to work."
msgstr "Это необходимо для работы доставки сообщений."
#: ../../mod/install.php:340
msgid "PHP register_argc_argv"
msgstr ""
#: ../../mod/install.php:361
msgid ""
"Error: the \"openssl_pkey_new\" function on this system is not able to "
"generate encryption keys"
msgstr "Ошибка: функция \"openssl_pkey_new\" в этой системе не в состоянии генерировать ключи шифрования"
#: ../../mod/install.php:362
msgid ""
"If running under Windows, please see "
"\"http://www.php.net/manual/en/openssl.installation.php\"."
msgstr "Если вы работаете под Windows, см. \"http://www.php.net/manual/en/openssl.installation.php\"."
#: ../../mod/install.php:364
msgid "Generate encryption keys"
msgstr "Генерация шифрованых ключей"
#: ../../mod/install.php:371
msgid "libCurl PHP module"
msgstr "libCurl PHP модуль"
#: ../../mod/install.php:372
msgid "GD graphics PHP module"
msgstr "GD graphics PHP модуль"
#: ../../mod/install.php:373
msgid "OpenSSL PHP module"
msgstr "OpenSSL PHP модуль"
#: ../../mod/install.php:374
msgid "mysqli PHP module"
msgstr "mysqli PHP модуль"
#: ../../mod/install.php:375
msgid "mb_string PHP module"
msgstr "mb_string PHP модуль"
#: ../../mod/install.php:380 ../../mod/install.php:382
msgid "Apache mod_rewrite module"
msgstr ""
#: ../../mod/install.php:380
msgid ""
"Error: Apache webserver mod-rewrite module is required but not installed."
msgstr "Ошибка: необходим модуль веб-сервера Apache mod-rewrite, но он не установлен."
#: ../../mod/install.php:388
msgid "Error: libCURL PHP module required but not installed."
msgstr "Ошибка: необходим libCURL PHP модуль, но он не установлен."
#: ../../mod/install.php:392
msgid ""
"Error: GD graphics PHP module with JPEG support required but not installed."
msgstr "Ошибка: необходим PHP модуль GD графики с поддержкой JPEG, но он не установлен."
#: ../../mod/install.php:396
msgid "Error: openssl PHP module required but not installed."
msgstr "Ошибка: необходим PHP модуль OpenSSL, но он не установлен."
#: ../../mod/install.php:400
msgid "Error: mysqli PHP module required but not installed."
msgstr "Ошибка: необходим PHP модуль MySQLi, но он не установлен."
#: ../../mod/install.php:404
msgid "Error: mb_string PHP module required but not installed."
msgstr "Ошибка: необходим PHP модуль mb_string, но он не установлен."
#: ../../mod/install.php:421
msgid ""
"The web installer needs to be able to create a file called \".htconfig.php\""
" in the top folder of your web server and it is unable to do so."
msgstr "Веб-инсталлятору требуется создать файл с именем \". htconfig.php\" в верхней папке веб-сервера, но он не в состоянии это сделать."
#: ../../mod/install.php:422
msgid ""
"This is most often a permission setting, as the web server may not be able "
"to write files in your folder - even if you can."
msgstr "Это наиболее частые параметры разрешений, когда веб-сервер не может записать файлы в папке - даже если вы можете."
#: ../../mod/install.php:423
msgid ""
"At the end of this procedure, we will give you a text to save in a file "
"named .htconfig.php in your Friendica top folder."
msgstr ""
#: ../../mod/install.php:424
msgid ""
"You can alternatively skip this procedure and perform a manual installation."
" Please see the file \"INSTALL.txt\" for instructions."
msgstr ""
#: ../../mod/install.php:427
msgid ".htconfig.php is writable"
msgstr ".htconfig.php is writable"
#: ../../mod/install.php:439
msgid ""
"Url rewrite in .htaccess is not working. Check your server configuration."
msgstr ""
#: ../../mod/install.php:441
msgid "Url rewrite is working"
msgstr ""
#: ../../mod/install.php:451
msgid ""
"The database configuration file \".htconfig.php\" could not be written. "
"Please use the enclosed text to create a configuration file in your web "
"server root."
msgstr "Файл конфигурации базы данных \".htconfig.php\" не могла быть записан. Пожалуйста, используйте приложенный текст, чтобы создать конфигурационный файл в корневом каталоге веб-сервера."
#: ../../mod/install.php:475
msgid "Errors encountered creating database tables."
msgstr "Обнаружены ошибки при создании таблиц базы данных."
#: ../../mod/install.php:486
msgid "<h1>What next</h1>"
msgstr ""
#: ../../mod/install.php:487
msgid ""
"IMPORTANT: You will need to [manually] setup a scheduled task for the "
"poller."
msgstr "ВАЖНО: Вам нужно будет [вручную] установить запланированное задание для регистратора."
#: ../../mod/localtime.php:12 ../../include/event.php:11
#: ../../include/bb2diaspora.php:390
msgid "l F d, Y \\@ g:i A"
msgstr "l F d, Y \\@ g:i A"
#: ../../mod/localtime.php:24
msgid "Time Conversion"
msgstr "История общения"
#: ../../mod/localtime.php:26
msgid ""
"Friendica provides this service for sharing events with other networks and "
"friends in unknown timezones."
msgstr ""
#: ../../mod/localtime.php:30
#, php-format
msgid "UTC time: %s"
msgstr "UTC время: %s"
#: ../../mod/localtime.php:33
#, php-format
msgid "Current timezone: %s"
msgstr "Ваш часовой пояс: %s"
#: ../../mod/localtime.php:36
#, php-format
msgid "Converted localtime: %s"
msgstr "Ваше изменённое время: %s"
#: ../../mod/localtime.php:41
msgid "Please select your timezone:"
msgstr "Выберите пожалуйста ваш часовой пояс:"
#: ../../mod/poke.php:192
msgid "Poke/Prod"
msgstr ""
#: ../../mod/poke.php:193
msgid "poke, prod or do other things to somebody"
msgstr ""
#: ../../mod/poke.php:194
msgid "Recipient"
msgstr ""
#: ../../mod/poke.php:195
msgid "Choose what you wish to do to recipient"
msgstr ""
#: ../../mod/poke.php:198
msgid "Make this post private"
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/match.php:58 ../../mod/suggest.php:59
#: ../../include/contact_widgets.php:9 ../../boot.php:1216
msgid "Connect"
msgstr "Подключить"
#: ../../mod/match.php:65 ../../mod/dirfind.php:60
msgid "No matches"
msgstr "Нет соответствий"
#: ../../mod/lockview.php:31 ../../mod/lockview.php:39
msgid "Remote privacy information not available."
msgstr "Личная информация удаленно недоступна."
#: ../../mod/lockview.php:48
#: ../../addon/remote_permissions/remote_permissions.php:123
msgid "Visible to:"
msgstr "Кто может видеть:"
#: ../../mod/content.php:119 ../../mod/network.php:594
msgid "No such group"
msgstr "Нет такой группы"
#: ../../mod/content.php:130 ../../mod/network.php:605
msgid "Group is empty"
msgstr "Группа пуста"
#: ../../mod/content.php:134 ../../mod/network.php:609
msgid "Group: "
msgstr "Группа: "
#: ../../mod/content.php:438 ../../mod/content.php:723
#: ../../include/conversation.php:568 ../../object/Item.php:117
msgid "Select"
msgstr "Выберите"
#: ../../mod/content.php:455 ../../mod/content.php:817
#: ../../mod/content.php:818 ../../include/conversation.php:587
#: ../../object/Item.php:234 ../../object/Item.php:235
#, php-format
msgid "View %s's profile @ %s"
msgstr ""
#: ../../mod/content.php:465 ../../mod/content.php:829
#: ../../include/conversation.php:607 ../../object/Item.php:248
#, php-format
msgid "%s from %s"
msgstr "%s с %s"
#: ../../mod/content.php:480 ../../include/conversation.php:622
msgid "View in context"
msgstr "Смотреть в контексте"
#: ../../mod/content.php:586 ../../object/Item.php:288
#, php-format
msgid "%d comment"
msgid_plural "%d comments"
msgstr[0] "%d комментарий"
msgstr[1] "%d комментариев"
msgstr[2] "%d комментариев"
#: ../../mod/content.php:588 ../../include/text.php:1446
#: ../../object/Item.php:290 ../../object/Item.php:303
msgid "comment"
msgid_plural "comments"
msgstr[0] ""
msgstr[1] ""
msgstr[2] "комментарий"
#: ../../mod/content.php:589 ../../addon/page/page.php:77
#: ../../addon/page/page.php:111 ../../addon/showmore/showmore.php:119
#: ../../include/contact_widgets.php:204 ../../boot.php:609
#: ../../object/Item.php:291 ../../addon.old/page/page.php:77
#: ../../addon.old/page/page.php:111 ../../addon.old/showmore/showmore.php:119
msgid "show more"
msgstr "показать больше"
#: ../../mod/content.php:667 ../../object/Item.php:202
msgid "like"
msgstr ""
#: ../../mod/content.php:668 ../../object/Item.php:203
msgid "dislike"
msgstr "не нравитса"
#: ../../mod/content.php:670 ../../object/Item.php:205
msgid "Share this"
msgstr ""
#: ../../mod/content.php:670 ../../object/Item.php:205
msgid "share"
msgstr "делиться"
#: ../../mod/content.php:694 ../../object/Item.php:571
msgid "Bold"
msgstr ""
#: ../../mod/content.php:695 ../../object/Item.php:572
msgid "Italic"
msgstr ""
#: ../../mod/content.php:696 ../../object/Item.php:573
msgid "Underline"
msgstr ""
#: ../../mod/content.php:697 ../../object/Item.php:574
msgid "Quote"
msgstr ""
#: ../../mod/content.php:698 ../../object/Item.php:575
msgid "Code"
msgstr ""
#: ../../mod/content.php:699 ../../object/Item.php:576
msgid "Image"
msgstr ""
#: ../../mod/content.php:700 ../../object/Item.php:577
msgid "Link"
msgstr ""
#: ../../mod/content.php:701 ../../object/Item.php:578
msgid "Video"
msgstr ""
#: ../../mod/content.php:736 ../../object/Item.php:181
msgid "add star"
msgstr "пометить"
#: ../../mod/content.php:737 ../../object/Item.php:182
msgid "remove star"
msgstr "убрать метку"
#: ../../mod/content.php:738 ../../object/Item.php:183
msgid "toggle star status"
msgstr "переключить статус"
#: ../../mod/content.php:741 ../../object/Item.php:186
msgid "starred"
msgstr "помечено"
#: ../../mod/content.php:742 ../../object/Item.php:191
msgid "add tag"
msgstr "добавить ключевое слово (таг)"
#: ../../mod/content.php:746 ../../object/Item.php:121
msgid "save to folder"
msgstr "сохранить в папке"
#: ../../mod/content.php:819 ../../object/Item.php:236
msgid "to"
msgstr "к"
#: ../../mod/content.php:820 ../../object/Item.php:238
msgid "Wall-to-Wall"
msgstr "Стена-на-Стену"
#: ../../mod/content.php:821 ../../object/Item.php:239
msgid "via Wall-To-Wall:"
msgstr "через Стена-на-Стену:"
#: ../../mod/home.php:30 ../../addon/communityhome/communityhome.php:179
#: ../../addon.old/communityhome/communityhome.php:179
#, php-format
msgid "Welcome to %s"
msgstr "Добро пожаловать на %s!"
#: ../../mod/notifications.php:26
msgid "Invalid request identifier."
msgstr "Неверный идентификатор запроса."
#: ../../mod/notifications.php:35 ../../mod/notifications.php:164
#: ../../mod/notifications.php:210
msgid "Discard"
msgstr "Отказаться"
#: ../../mod/notifications.php:51 ../../mod/notifications.php:163
#: ../../mod/notifications.php:209 ../../mod/contacts.php:325
#: ../../mod/contacts.php:379
msgid "Ignore"
msgstr "Игнорировать"
#: ../../mod/notifications.php:78
msgid "System"
msgstr "Система"
#: ../../mod/notifications.php:83 ../../include/nav.php:113
msgid "Network"
msgstr "Сеть"
#: ../../mod/notifications.php:88 ../../mod/network.php:444
msgid "Personal"
msgstr "Персонал"
#: ../../mod/notifications.php:93 ../../view/theme/diabook/theme.php:87
#: ../../include/nav.php:77 ../../include/nav.php:116
msgid "Home"
msgstr "Главная"
#: ../../mod/notifications.php:98 ../../include/nav.php:122
msgid "Introductions"
msgstr "Запросы"
#: ../../mod/notifications.php:103 ../../mod/message.php:180
#: ../../include/nav.php:129
msgid "Messages"
msgstr "Сообщения"
#: ../../mod/notifications.php:122
msgid "Show Ignored Requests"
msgstr "Показать проигнорированные запросы"
#: ../../mod/notifications.php:122
msgid "Hide Ignored Requests"
msgstr "Скрыть проигнорированные запросы"
#: ../../mod/notifications.php:148 ../../mod/notifications.php:194
msgid "Notification type: "
msgstr "Тип уведомления: "
#: ../../mod/notifications.php:149
msgid "Friend Suggestion"
msgstr "Предложение в друзья"
#: ../../mod/notifications.php:151
#, php-format
msgid "suggested by %s"
msgstr "предложено юзером %s"
#: ../../mod/notifications.php:156 ../../mod/notifications.php:203
#: ../../mod/contacts.php:385
msgid "Hide this contact from others"
msgstr "Скрыть этот контакт от других"
#: ../../mod/notifications.php:157 ../../mod/notifications.php:204
msgid "Post a new friend activity"
msgstr ""
#: ../../mod/notifications.php:157 ../../mod/notifications.php:204
msgid "if applicable"
msgstr ""
#: ../../mod/notifications.php:160 ../../mod/notifications.php:207
#: ../../mod/admin.php:697
msgid "Approve"
msgstr "Одобрить"
#: ../../mod/notifications.php:180
msgid "Claims to be known to you: "
msgstr "Утверждения, о которых должно быть вам известно: "
#: ../../mod/notifications.php:180
msgid "yes"
msgstr "да"
#: ../../mod/notifications.php:180
msgid "no"
msgstr "нет"
#: ../../mod/notifications.php:187
msgid "Approve as: "
msgstr "Утвердить как: "
#: ../../mod/notifications.php:188
msgid "Friend"
msgstr "Друг"
#: ../../mod/notifications.php:189
msgid "Sharer"
msgstr "Участник"
#: ../../mod/notifications.php:189
msgid "Fan/Admirer"
msgstr "Фанат / Поклонник"
#: ../../mod/notifications.php:195
msgid "Friend/Connect Request"
msgstr "Запрос в друзья / на подключение"
#: ../../mod/notifications.php:195
msgid "New Follower"
msgstr "Новый фолловер"
#: ../../mod/notifications.php:216
msgid "No introductions."
msgstr "Запросов нет."
#: ../../mod/notifications.php:219 ../../include/nav.php:123
msgid "Notifications"
msgstr "Уведомления"
#: ../../mod/notifications.php:256 ../../mod/notifications.php:381
#: ../../mod/notifications.php:468
#, php-format
msgid "%s liked %s's post"
msgstr "%s нравится %s сообшение"
#: ../../mod/notifications.php:265 ../../mod/notifications.php:390
#: ../../mod/notifications.php:477
#, php-format
msgid "%s disliked %s's post"
msgstr "%s не нравится %s сообшение"
#: ../../mod/notifications.php:279 ../../mod/notifications.php:404
#: ../../mod/notifications.php:491
#, php-format
msgid "%s is now friends with %s"
msgstr "%s теперь друзья с %s"
#: ../../mod/notifications.php:286 ../../mod/notifications.php:411
#, php-format
msgid "%s created a new post"
msgstr "%s написал новое сообщение"
#: ../../mod/notifications.php:287 ../../mod/notifications.php:412
#: ../../mod/notifications.php:500
#, php-format
msgid "%s commented on %s's post"
msgstr "%s прокомментировал %s сообщение"
#: ../../mod/notifications.php:301
msgid "No more network notifications."
msgstr "Уведомлений из сети больше нет."
#: ../../mod/notifications.php:305
msgid "Network Notifications"
msgstr "Уведомления сети"
#: ../../mod/notifications.php:331 ../../mod/notify.php:61
msgid "No more system notifications."
msgstr "Системных уведомлений больше нет."
#: ../../mod/notifications.php:335 ../../mod/notify.php:65
msgid "System Notifications"
msgstr "Уведомления системы"
#: ../../mod/notifications.php:426
msgid "No more personal notifications."
msgstr "Персональных уведомлений больше нет."
#: ../../mod/notifications.php:430
msgid "Personal Notifications"
msgstr "Личные уведомления"
#: ../../mod/notifications.php:507
msgid "No more home notifications."
msgstr ""
#: ../../mod/notifications.php:511
msgid "Home Notifications"
msgstr ""
#: ../../mod/contacts.php:85 ../../mod/contacts.php:165
msgid "Could not access contact record."
msgstr "Не удалось получить доступ к записи контакта."
#: ../../mod/contacts.php:99
msgid "Could not locate selected profile."
msgstr "Не удалось найти выбранный профиль."
#: ../../mod/contacts.php:122
msgid "Contact updated."
msgstr "Контакт обновлен."
#: ../../mod/contacts.php:187
msgid "Contact has been blocked"
msgstr "Контакт заблокирован"
#: ../../mod/contacts.php:187
msgid "Contact has been unblocked"
msgstr "Контакт разблокирован"
#: ../../mod/contacts.php:201
msgid "Contact has been ignored"
msgstr "Контакт проигнорирован"
#: ../../mod/contacts.php:201
msgid "Contact has been unignored"
msgstr "У контакта отменено игнорирование"
#: ../../mod/contacts.php:220
msgid "Contact has been archived"
msgstr ""
#: ../../mod/contacts.php:220
msgid "Contact has been unarchived"
msgstr ""
#: ../../mod/contacts.php:233
msgid "Contact has been removed."
msgstr "Контакт удален."
#: ../../mod/contacts.php:267
#, php-format
msgid "You are mutual friends with %s"
msgstr "У Вас взаимная дружба с %s"
#: ../../mod/contacts.php:271
#, php-format
msgid "You are sharing with %s"
msgstr "Вы делитесь с %s"
#: ../../mod/contacts.php:276
#, php-format
msgid "%s is sharing with you"
msgstr "%s делитса с Вами"
#: ../../mod/contacts.php:293
msgid "Private communications are not available for this contact."
msgstr "Личные коммуникации недоступны для этого контакта."
#: ../../mod/contacts.php:296
msgid "Never"
msgstr "Никогда"
#: ../../mod/contacts.php:300
msgid "(Update was successful)"
msgstr "(Обновление было успешно)"
#: ../../mod/contacts.php:300
msgid "(Update was not successful)"
msgstr "(Обновление не удалось)"
#: ../../mod/contacts.php:302
msgid "Suggest friends"
msgstr "Предложить друзей"
#: ../../mod/contacts.php:306
#, php-format
msgid "Network type: %s"
msgstr "Сеть: %s"
#: ../../mod/contacts.php:309 ../../include/contact_widgets.php:199
#, php-format
msgid "%d contact in common"
msgid_plural "%d contacts in common"
msgstr[0] "%d Контакт"
msgstr[1] "%d Контактов"
msgstr[2] "%d Контактов"
#: ../../mod/contacts.php:314
msgid "View all contacts"
msgstr "Показать все контакты"
#: ../../mod/contacts.php:319 ../../mod/contacts.php:378
#: ../../mod/admin.php:701
msgid "Unblock"
msgstr "Разблокировать"
#: ../../mod/contacts.php:319 ../../mod/contacts.php:378
#: ../../mod/admin.php:700
msgid "Block"
msgstr "Заблокировать"
#: ../../mod/contacts.php:322
msgid "Toggle Blocked status"
msgstr "Изменить статус блокированности (заблокировать/разблокировать)"
#: ../../mod/contacts.php:325 ../../mod/contacts.php:379
msgid "Unignore"
msgstr "Не игнорировать"
#: ../../mod/contacts.php:328
msgid "Toggle Ignored status"
msgstr "Изменить статус игнорирования"
#: ../../mod/contacts.php:332
msgid "Unarchive"
msgstr "Разархивировать"
#: ../../mod/contacts.php:332
msgid "Archive"
msgstr "Архивировать"
#: ../../mod/contacts.php:335
msgid "Toggle Archive status"
msgstr "Сменить статус архивации (архивирова/не архивировать)"
#: ../../mod/contacts.php:338
msgid "Repair"
msgstr "Восстановить"
#: ../../mod/contacts.php:341
msgid "Advanced Contact Settings"
msgstr "Дополнительные Настройки Контакта"
#: ../../mod/contacts.php:347
msgid "Communications lost with this contact!"
msgstr "Связь с контактом утеряна!"
#: ../../mod/contacts.php:350
msgid "Contact Editor"
msgstr "Редактор контакта"
#: ../../mod/contacts.php:353
msgid "Profile Visibility"
msgstr "Видимость профиля"
#: ../../mod/contacts.php:354
#, php-format
msgid ""
"Please choose the profile you would like to display to %s when viewing your "
"profile securely."
msgstr "Пожалуйста, выберите профиль, который вы хотите отображать %s, когда просмотр вашего профиля безопасен."
#: ../../mod/contacts.php:355
msgid "Contact Information / Notes"
msgstr "Информация о контакте / Заметки"
#: ../../mod/contacts.php:356
msgid "Edit contact notes"
msgstr "Редактировать заметки контакта"
#: ../../mod/contacts.php:361 ../../mod/contacts.php:553
#: ../../mod/viewcontacts.php:62 ../../mod/nogroup.php:40
#, php-format
msgid "Visit %s's profile [%s]"
msgstr "Посетить профиль %s [%s]"
#: ../../mod/contacts.php:362
msgid "Block/Unblock contact"
msgstr "Блокировать / Разблокировать контакт"
#: ../../mod/contacts.php:363
msgid "Ignore contact"
msgstr "Игнорировать контакт"
#: ../../mod/contacts.php:364
msgid "Repair URL settings"
msgstr "Восстановить настройки URL"
#: ../../mod/contacts.php:365
msgid "View conversations"
msgstr "Просмотр бесед"
#: ../../mod/contacts.php:367
msgid "Delete contact"
msgstr "Удалить контакт"
#: ../../mod/contacts.php:371
msgid "Last update:"
msgstr "Последнее обновление: "
#: ../../mod/contacts.php:373
msgid "Update public posts"
msgstr "Обновить публичные сообщения"
#: ../../mod/contacts.php:375 ../../mod/admin.php:1173
msgid "Update now"
msgstr "Обновить сейчас"
#: ../../mod/contacts.php:382
msgid "Currently blocked"
msgstr "В настоящее время заблокирован"
#: ../../mod/contacts.php:383
msgid "Currently ignored"
msgstr "В настоящее время игнорируется"
#: ../../mod/contacts.php:384
msgid "Currently archived"
msgstr "В данный момент архивирован"
#: ../../mod/contacts.php:385
msgid ""
"Replies/likes to your public posts <strong>may</strong> still be visible"
msgstr ""
#: ../../mod/contacts.php:438
msgid "Suggestions"
msgstr ""
#: ../../mod/contacts.php:441
msgid "Suggest potential friends"
msgstr "Предложить потенциального знакомого"
#: ../../mod/contacts.php:444 ../../mod/group.php:191
msgid "All Contacts"
msgstr "Все контакты"
#: ../../mod/contacts.php:447
msgid "Show all contacts"
msgstr "Показать все контакты"
#: ../../mod/contacts.php:450
msgid "Unblocked"
msgstr "Не блокирован"
#: ../../mod/contacts.php:453
msgid "Only show unblocked contacts"
msgstr "Показать только не блокированные контакты"
#: ../../mod/contacts.php:457
msgid "Blocked"
msgstr "Заблокирован"
#: ../../mod/contacts.php:460
msgid "Only show blocked contacts"
msgstr "Показать только блокированные контакты"
#: ../../mod/contacts.php:464
msgid "Ignored"
msgstr "Игнорирован"
#: ../../mod/contacts.php:467
msgid "Only show ignored contacts"
msgstr "Показать только игнорируемые контакты"
#: ../../mod/contacts.php:471
msgid "Archived"
msgstr "Архивированные"
#: ../../mod/contacts.php:474
msgid "Only show archived contacts"
msgstr ""
#: ../../mod/contacts.php:478
msgid "Hidden"
msgstr "Скрытые"
#: ../../mod/contacts.php:481
msgid "Only show hidden contacts"
msgstr ""
#: ../../mod/contacts.php:529
msgid "Mutual Friendship"
msgstr "Взаимная дружба"
#: ../../mod/contacts.php:533
msgid "is a fan of yours"
msgstr "является вашим поклонником"
#: ../../mod/contacts.php:537
msgid "you are a fan of"
msgstr "Вы - поклонник"
#: ../../mod/contacts.php:554 ../../mod/nogroup.php:41
msgid "Edit contact"
msgstr "Редактировать контакт"
#: ../../mod/contacts.php:575 ../../view/theme/diabook/theme.php:89
#: ../../include/nav.php:142
msgid "Contacts"
msgstr "Контакты"
#: ../../mod/contacts.php:579
msgid "Search your contacts"
msgstr "Поиск ваших контактов"
#: ../../mod/contacts.php:580 ../../mod/directory.php:59
#: ../../addon/forumdirectory/forumdirectory.php:81
msgid "Finding: "
msgstr "Результат поиска: "
#: ../../mod/contacts.php:581 ../../mod/directory.php:61
#: ../../addon/forumdirectory/forumdirectory.php:83
#: ../../include/contact_widgets.php:33
msgid "Find"
msgstr "Найти"
#: ../../mod/lostpass.php:16
msgid "No valid account found."
msgstr "Не найдено действительного аккаунта."
#: ../../mod/lostpass.php:32
msgid "Password reset request issued. Check your email."
msgstr "Запрос на сброс пароля принят. Проверьте вашу электронную почту."
#: ../../mod/lostpass.php:43
#, php-format
msgid "Password reset requested at %s"
msgstr "Запрос на сброс пароля получен %s"
#: ../../mod/lostpass.php:45 ../../mod/lostpass.php:107
#: ../../mod/register.php:91 ../../mod/register.php:145
#: ../../mod/regmod.php:54 ../../mod/dfrn_confirm.php:752
#: ../../addon/facebook/facebook.php:702
#: ../../addon/facebook/facebook.php:1200 ../../addon/fbpost/fbpost.php:661
#: ../../addon/public_server/public_server.php:62
#: ../../addon/testdrive/testdrive.php:67 ../../include/items.php:3365
#: ../../boot.php:824 ../../addon.old/facebook/facebook.php:702
#: ../../addon.old/facebook/facebook.php:1200
#: ../../addon.old/fbpost/fbpost.php:661
#: ../../addon.old/public_server/public_server.php:62
#: ../../addon.old/testdrive/testdrive.php:67
msgid "Administrator"
msgstr "Администратор"
#: ../../mod/lostpass.php:65
msgid ""
"Request could not be verified. (You may have previously submitted it.) "
"Password reset failed."
msgstr "Запрос не может быть проверен. (Вы, возможно, ранее представляли его.) Попытка сброса пароля неудачная."
#: ../../mod/lostpass.php:83 ../../boot.php:963
msgid "Password Reset"
msgstr "Сброс пароля"
#: ../../mod/lostpass.php:84
msgid "Your password has been reset as requested."
msgstr "Ваш пароль был сброшен по требованию."
#: ../../mod/lostpass.php:85
msgid "Your new password is"
msgstr "Ваш новый пароль"
#: ../../mod/lostpass.php:86
msgid "Save or copy your new password - and then"
msgstr "Сохраните или скопируйте новый пароль - и затем"
#: ../../mod/lostpass.php:87
msgid "click here to login"
msgstr "нажмите здесь для входа"
#: ../../mod/lostpass.php:88
msgid ""
"Your password may be changed from the <em>Settings</em> page after "
"successful login."
msgstr "Ваш пароль может быть изменен на странице <em>Настройки</em> после успешного входа."
#: ../../mod/lostpass.php:119
msgid "Forgot your Password?"
msgstr "Забыли пароль?"
#: ../../mod/lostpass.php:120
msgid ""
"Enter your email address and submit to have your password reset. Then check "
"your email for further instructions."
msgstr "Введите адрес электронной почты и подтвердите, что вы хотите сбросить ваш пароль. Затем проверьте свою электронную почту для получения дальнейших инструкций."
#: ../../mod/lostpass.php:121
msgid "Nickname or Email: "
msgstr "Ник или E-mail: "
#: ../../mod/lostpass.php:122
msgid "Reset"
msgstr "Сброс"
#: ../../mod/settings.php:35
msgid "Additional features"
msgstr ""
#: ../../mod/settings.php:118
msgid "Missing some important data!"
msgstr "Не хватает важных данных!"
#: ../../mod/settings.php:121 ../../mod/settings.php:585
msgid "Update"
msgstr "Обновление"
#: ../../mod/settings.php:226
msgid "Failed to connect with email account using the settings provided."
msgstr "Не удалось подключиться к аккаунту e-mail, используя указанные настройки."
#: ../../mod/settings.php:231
msgid "Email settings updated."
msgstr "Настройки эл. почты обновлены."
#: ../../mod/settings.php:246
msgid "Features updated"
msgstr ""
#: ../../mod/settings.php:306
msgid "Passwords do not match. Password unchanged."
msgstr "Пароли не совпадают. Пароль не изменен."
#: ../../mod/settings.php:311
msgid "Empty passwords are not allowed. Password unchanged."
msgstr "Пустые пароли не допускаются. Пароль не изменен."
#: ../../mod/settings.php:322
msgid "Password changed."
msgstr "Пароль изменен."
#: ../../mod/settings.php:324
msgid "Password update failed. Please try again."
msgstr "Обновление пароля не удалось. Пожалуйста, попробуйте еще раз."
#: ../../mod/settings.php:389
msgid " Please use a shorter name."
msgstr " Пожалуйста, используйте более короткое имя."
#: ../../mod/settings.php:391
msgid " Name too short."
msgstr " Имя слишком короткое."
#: ../../mod/settings.php:397
msgid " Not valid email."
msgstr " Неверный e-mail."
#: ../../mod/settings.php:399
msgid " Cannot change to that email."
msgstr " Невозможно изменить на этот e-mail."
#: ../../mod/settings.php:453
msgid "Private forum has no privacy permissions. Using default privacy group."
msgstr ""
#: ../../mod/settings.php:457
msgid "Private forum has no privacy permissions and no default privacy group."
msgstr ""
#: ../../mod/settings.php:487 ../../addon/facebook/facebook.php:495
#: ../../addon/fbpost/fbpost.php:144
#: ../../addon/remote_permissions/remote_permissions.php:204
#: ../../addon/impressum/impressum.php:78
#: ../../addon/openstreetmap/openstreetmap.php:80
#: ../../addon/mathjax/mathjax.php:66 ../../addon/piwik/piwik.php:105
#: ../../addon/twitter/twitter.php:501
#: ../../addon.old/facebook/facebook.php:495
#: ../../addon.old/fbpost/fbpost.php:144
#: ../../addon.old/impressum/impressum.php:78
#: ../../addon.old/openstreetmap/openstreetmap.php:80
#: ../../addon.old/mathjax/mathjax.php:66 ../../addon.old/piwik/piwik.php:105
#: ../../addon.old/twitter/twitter.php:389
msgid "Settings updated."
msgstr "Настройки обновлены."
#: ../../mod/settings.php:558 ../../mod/settings.php:584
#: ../../mod/settings.php:620
msgid "Add application"
msgstr "Добавить приложения"
#: ../../mod/settings.php:562 ../../mod/settings.php:588
#: ../../addon/statusnet/statusnet.php:679
#: ../../addon.old/statusnet/statusnet.php:570
msgid "Consumer Key"
msgstr "Consumer Key"
#: ../../mod/settings.php:563 ../../mod/settings.php:589
#: ../../addon/statusnet/statusnet.php:678
#: ../../addon.old/statusnet/statusnet.php:569
msgid "Consumer Secret"
msgstr "Consumer Secret"
#: ../../mod/settings.php:564 ../../mod/settings.php:590
msgid "Redirect"
msgstr "Перенаправление"
#: ../../mod/settings.php:565 ../../mod/settings.php:591
msgid "Icon url"
msgstr "URL символа"
#: ../../mod/settings.php:576
msgid "You can't edit this application."
msgstr "Вы не можете изменить это приложение."
#: ../../mod/settings.php:619
msgid "Connected Apps"
msgstr "Подключенные приложения"
#: ../../mod/settings.php:623
msgid "Client key starts with"
msgstr "Ключ клиента начинается с"
#: ../../mod/settings.php:624
msgid "No name"
msgstr "Нет имени"
#: ../../mod/settings.php:625
msgid "Remove authorization"
msgstr "Удалить авторизацию"
#: ../../mod/settings.php:637
msgid "No Plugin settings configured"
msgstr "Нет сконфигурированных настроек плагина"
#: ../../mod/settings.php:645 ../../addon/widgets/widgets.php:123
#: ../../addon.old/widgets/widgets.php:123
msgid "Plugin Settings"
msgstr "Настройки плагина"
#: ../../mod/settings.php:659
msgid "Off"
msgstr ""
#: ../../mod/settings.php:659
msgid "On"
msgstr ""
#: ../../mod/settings.php:667
msgid "Additional Features"
msgstr ""
#: ../../mod/settings.php:681 ../../mod/settings.php:682
#, php-format
msgid "Built-in support for %s connectivity is %s"
msgstr "Встроенная поддержка для %s подключение %s"
#: ../../mod/settings.php:681 ../../mod/settings.php:682
msgid "enabled"
msgstr "подключено"
#: ../../mod/settings.php:681 ../../mod/settings.php:682
msgid "disabled"
msgstr "отключено"
#: ../../mod/settings.php:682
msgid "StatusNet"
msgstr "StatusNet"
#: ../../mod/settings.php:714
msgid "Email access is disabled on this site."
msgstr "Доступ эл. почты отключен на этом сайте."
#: ../../mod/settings.php:720
msgid "Connector Settings"
msgstr "Настройки соединителя"
#: ../../mod/settings.php:725
msgid "Email/Mailbox Setup"
msgstr "Настройка эл. почты / почтового ящика"
#: ../../mod/settings.php:726
msgid ""
"If you wish to communicate with email contacts using this service "
"(optional), please specify how to connect to your mailbox."
msgstr "Если вы хотите общаться с Email контактами, используя этот сервис (по желанию), пожалуйста, уточните, как подключиться к вашему почтовому ящику."
#: ../../mod/settings.php:727
msgid "Last successful email check:"
msgstr "Последняя успешная проверка электронной почты:"
#: ../../mod/settings.php:729
msgid "IMAP server name:"
msgstr "Имя IMAP сервера:"
#: ../../mod/settings.php:730
msgid "IMAP port:"
msgstr "Порт IMAP:"
#: ../../mod/settings.php:731
msgid "Security:"
msgstr "Безопасность:"
#: ../../mod/settings.php:731 ../../mod/settings.php:736
#: ../../addon/dav/common/wdcal_edit.inc.php:191
#: ../../addon.old/dav/common/wdcal_edit.inc.php:191
msgid "None"
msgstr "Ничего"
#: ../../mod/settings.php:732
msgid "Email login name:"
msgstr "Логин эл. почты:"
#: ../../mod/settings.php:733
msgid "Email password:"
msgstr "Пароль эл. почты:"
#: ../../mod/settings.php:734
msgid "Reply-to address:"
msgstr "Адрес для ответа:"
#: ../../mod/settings.php:735
msgid "Send public posts to all email contacts:"
msgstr "Отправлять открытые сообщения на все контакты электронной почты:"
#: ../../mod/settings.php:736
msgid "Action after import:"
msgstr "Действие после импорта:"
#: ../../mod/settings.php:736
msgid "Mark as seen"
msgstr ""
#: ../../mod/settings.php:736
msgid "Move to folder"
msgstr ""
#: ../../mod/settings.php:737
msgid "Move to folder:"
msgstr ""
#: ../../mod/settings.php:768 ../../mod/admin.php:404
msgid "No special theme for mobile devices"
msgstr ""
#: ../../mod/settings.php:808
msgid "Display Settings"
msgstr "Параметры дисплея"
#: ../../mod/settings.php:814 ../../mod/settings.php:825
msgid "Display Theme:"
msgstr "Показать тему:"
#: ../../mod/settings.php:815
msgid "Mobile Theme:"
msgstr ""
#: ../../mod/settings.php:816
msgid "Update browser every xx seconds"
msgstr "Обновление браузера каждые хх секунд"
#: ../../mod/settings.php:816
msgid "Minimum of 10 seconds, no maximum"
msgstr "Минимум 10 секунд, максимума нет"
#: ../../mod/settings.php:817
msgid "Number of items to display per page:"
msgstr ""
#: ../../mod/settings.php:817
msgid "Maximum of 100 items"
msgstr ""
#: ../../mod/settings.php:818
msgid "Don't show emoticons"
msgstr "не показывать emoticons"
#: ../../mod/settings.php:894
msgid "Normal Account Page"
msgstr ""
#: ../../mod/settings.php:895
msgid "This account is a normal personal profile"
msgstr "Этот аккаунт является обычным персональным профилем"
#: ../../mod/settings.php:898
msgid "Soapbox Page"
msgstr ""
#: ../../mod/settings.php:899
msgid "Automatically approve all connection/friend requests as read-only fans"
msgstr "Автоматически одобряются все подключения / запросы в друзья, \"только для чтения\" поклонниками"
#: ../../mod/settings.php:902
msgid "Community Forum/Celebrity Account"
msgstr ""
#: ../../mod/settings.php:903
msgid ""
"Automatically approve all connection/friend requests as read-write fans"
msgstr "Автоматически одобряются все подключения / запросы в друзья, \"для чтения и записей\" поклонников"
#: ../../mod/settings.php:906
msgid "Automatic Friend Page"
msgstr ""
#: ../../mod/settings.php:907
msgid "Automatically approve all connection/friend requests as friends"
msgstr "Автоматически одобряются все подключения / запросы в друзья, расширяется список друзей"
#: ../../mod/settings.php:910
msgid "Private Forum [Experimental]"
msgstr ""
#: ../../mod/settings.php:911
msgid "Private forum - approved members only"
msgstr ""
#: ../../mod/settings.php:923
msgid "OpenID:"
msgstr "OpenID:"
#: ../../mod/settings.php:923
msgid "(Optional) Allow this OpenID to login to this account."
msgstr "(Необязательно) Разрешить этому OpenID входить в этот аккаунт"
#: ../../mod/settings.php:933
msgid "Publish your default profile in your local site directory?"
msgstr "Публиковать ваш профиль по умолчанию в вашем локальном каталоге на сайте?"
#: ../../mod/settings.php:939
msgid "Publish your default profile in the global social directory?"
msgstr "Публиковать ваш профиль по умолчанию в глобальном социальном каталоге?"
#: ../../mod/settings.php:947
msgid "Hide your contact/friend list from viewers of your default profile?"
msgstr "Скрывать ваш список контактов/друзей от посетителей вашего профиля по умолчанию?"
#: ../../mod/settings.php:951
msgid "Hide your profile details from unknown viewers?"
msgstr "Скрыть данные профиля из неизвестных зрителей?"
#: ../../mod/settings.php:956
msgid "Allow friends to post to your profile page?"
msgstr "Разрешить друзьям оставлять сообщения на страницу вашего профиля?"
#: ../../mod/settings.php:962
msgid "Allow friends to tag your posts?"
msgstr "Разрешить друзьям отмечять ваши сообщения?"
#: ../../mod/settings.php:968
msgid "Allow us to suggest you as a potential friend to new members?"
msgstr "Позвольть предлогать Вам потенциальных друзей?"
#: ../../mod/settings.php:974
msgid "Permit unknown people to send you private mail?"
msgstr ""
#: ../../mod/settings.php:982
msgid "Profile is <strong>not published</strong>."
msgstr "Профиль <strong>не публикуется</strong>."
#: ../../mod/settings.php:985 ../../mod/profile_photo.php:248
msgid "or"
msgstr "или"
#: ../../mod/settings.php:990
msgid "Your Identity Address is"
msgstr "Ваш идентификационный адрес"
#: ../../mod/settings.php:1001
msgid "Automatically expire posts after this many days:"
msgstr "Автоматическое истекание срока действия сообщения после стольких дней:"
#: ../../mod/settings.php:1001
msgid "If empty, posts will not expire. Expired posts will be deleted"
msgstr "Если пусто, срок действия сообщений не будет ограничен. Сообщения с истекшим сроком действия будут удалены"
#: ../../mod/settings.php:1002
msgid "Advanced expiration settings"
msgstr "Настройки расширенного окончания срока действия"
#: ../../mod/settings.php:1003
msgid "Advanced Expiration"
msgstr "Расширенное окончание срока действия"
#: ../../mod/settings.php:1004
msgid "Expire posts:"
msgstr "Срок хранения сообщений:"
#: ../../mod/settings.php:1005
msgid "Expire personal notes:"
msgstr "Срок хранения личных заметок:"
#: ../../mod/settings.php:1006
msgid "Expire starred posts:"
msgstr "Срок хранения усеянных сообщений:"
#: ../../mod/settings.php:1007
msgid "Expire photos:"
msgstr "Срок хранения фотографий:"
#: ../../mod/settings.php:1008
msgid "Only expire posts by others:"
msgstr ""
#: ../../mod/settings.php:1015
msgid "Account Settings"
msgstr "Настройки аккаунта"
#: ../../mod/settings.php:1023
msgid "Password Settings"
msgstr "Настройка пароля"
#: ../../mod/settings.php:1024
msgid "New Password:"
msgstr "Новый пароль:"
#: ../../mod/settings.php:1025
msgid "Confirm:"
msgstr "Подтвердите:"
#: ../../mod/settings.php:1025
msgid "Leave password fields blank unless changing"
msgstr "Оставьте поля пароля пустыми, если он не изменяется"
#: ../../mod/settings.php:1029
msgid "Basic Settings"
msgstr "Основные параметры"
#: ../../mod/settings.php:1030 ../../include/profile_advanced.php:15
msgid "Full Name:"
msgstr "Полное имя:"
#: ../../mod/settings.php:1031
msgid "Email Address:"
msgstr "Адрес электронной почты:"
#: ../../mod/settings.php:1032
msgid "Your Timezone:"
msgstr "Ваш часовой пояс:"
#: ../../mod/settings.php:1033
msgid "Default Post Location:"
msgstr "Местонахождение по умолчанию:"
#: ../../mod/settings.php:1034
msgid "Use Browser Location:"
msgstr "Использовать определение местоположения браузером:"
#: ../../mod/settings.php:1037
msgid "Security and Privacy Settings"
msgstr "Параметры безопасности и конфиденциальности"
#: ../../mod/settings.php:1039
msgid "Maximum Friend Requests/Day:"
msgstr "Максимум запросов в друзья в день:"
#: ../../mod/settings.php:1039 ../../mod/settings.php:1058
msgid "(to prevent spam abuse)"
msgstr "(для предотвращения спама)"
#: ../../mod/settings.php:1040
msgid "Default Post Permissions"
msgstr "Разрешение на сообщения по умолчанию"
#: ../../mod/settings.php:1041
msgid "(click to open/close)"
msgstr "(нажмите, чтобы открыть / закрыть)"
#: ../../mod/settings.php:1058
msgid "Maximum private messages per day from unknown people:"
msgstr ""
#: ../../mod/settings.php:1061
msgid "Notification Settings"
msgstr "Настройка уведомлений"
#: ../../mod/settings.php:1062
msgid "By default post a status message when:"
msgstr ""
#: ../../mod/settings.php:1063
msgid "accepting a friend request"
msgstr ""
#: ../../mod/settings.php:1064
msgid "joining a forum/community"
msgstr ""
#: ../../mod/settings.php:1065
msgid "making an <em>interesting</em> profile change"
msgstr ""
#: ../../mod/settings.php:1066
msgid "Send a notification email when:"
msgstr "Отправлять уведомление по электронной почте, когда:"
#: ../../mod/settings.php:1067
msgid "You receive an introduction"
msgstr "Вы получили запрос"
#: ../../mod/settings.php:1068
msgid "Your introductions are confirmed"
msgstr "Ваши запросы подтверждены"
#: ../../mod/settings.php:1069
msgid "Someone writes on your profile wall"
msgstr "Кто-то пишет на стене вашего профиля"
#: ../../mod/settings.php:1070
msgid "Someone writes a followup comment"
msgstr "Кто-то пишет последующий комментарий"
#: ../../mod/settings.php:1071
msgid "You receive a private message"
msgstr "Вы получаете личное сообщение"
#: ../../mod/settings.php:1072
msgid "You receive a friend suggestion"
msgstr ""
#: ../../mod/settings.php:1073
msgid "You are tagged in a post"
msgstr ""
#: ../../mod/settings.php:1074
msgid "You are poked/prodded/etc. in a post"
msgstr ""
#: ../../mod/settings.php:1077
msgid "Advanced Account/Page Type Settings"
msgstr ""
#: ../../mod/settings.php:1078
msgid "Change the behaviour of this account for special situations"
msgstr ""
#: ../../mod/manage.php:94
msgid "Manage Identities and/or Pages"
msgstr "Управление идентификацией и / или страницами"
#: ../../mod/manage.php:97
msgid ""
"Toggle between different identities or community/group pages which share "
"your account details or which you have been granted \"manage\" permissions"
msgstr ""
#: ../../mod/manage.php:99
msgid "Select an identity to manage: "
msgstr "Выберите идентификацию для управления: "
#: ../../mod/network.php:181
msgid "Search Results For:"
msgstr ""
#: ../../mod/network.php:224 ../../mod/search.php:21
msgid "Remove term"
msgstr "Удалить элемент"
#: ../../mod/network.php:233 ../../mod/search.php:30
#: ../../include/features.php:41
msgid "Saved Searches"
msgstr "запомненные поиски"
#: ../../mod/network.php:234 ../../include/group.php:275
msgid "add"
msgstr "добавить"
#: ../../mod/network.php:397
msgid "Commented Order"
msgstr "Прокомментированный запрос"
#: ../../mod/network.php:400
msgid "Sort by Comment Date"
msgstr ""
#: ../../mod/network.php:403
msgid "Posted Order"
msgstr "Отправленный запрос"
#: ../../mod/network.php:406
msgid "Sort by Post Date"
msgstr ""
#: ../../mod/network.php:447
msgid "Posts that mention or involve you"
msgstr ""
#: ../../mod/network.php:453
msgid "New"
msgstr "Новый"
#: ../../mod/network.php:456
msgid "Activity Stream - by date"
msgstr ""
#: ../../mod/network.php:462
msgid "Shared Links"
msgstr ""
#: ../../mod/network.php:465
msgid "Interesting Links"
msgstr ""
#: ../../mod/network.php:471
msgid "Starred"
msgstr "Помеченный"
#: ../../mod/network.php:474
msgid "Favourite Posts"
msgstr ""
#: ../../mod/network.php:546
#, php-format
msgid "Warning: This group contains %s member from an insecure network."
msgid_plural ""
"Warning: This group contains %s members from an insecure network."
msgstr[0] "Внимание: Эта группа содержит %s участника с незащищенной сети."
msgstr[1] "Внимание: Эта группа содержит %s участников с незащищенной сети."
msgstr[2] "Внимание: Эта группа содержит %s участников с незащищенной сети."
#: ../../mod/network.php:549
msgid "Private messages to this group are at risk of public disclosure."
msgstr "Личные сообщения к этой группе находятся под угрозой обнародования."
#: ../../mod/network.php:619
msgid "Contact: "
msgstr "Контакт: "
#: ../../mod/network.php:621
msgid "Private messages to this person are at risk of public disclosure."
msgstr "Личные сообщения этому человеку находятся под угрозой обнародования."
#: ../../mod/network.php:626
msgid "Invalid contact."
msgstr "Недопустимый контакт."
#: ../../mod/notes.php:44 ../../boot.php:1755
msgid "Personal Notes"
msgstr "Личные заметки"
#: ../../mod/notes.php:63 ../../mod/filer.php:30
#: ../../addon/facebook/facebook.php:770
#: ../../addon/privacy_image_cache/privacy_image_cache.php:281
#: ../../addon/fbpost/fbpost.php:267
#: ../../addon/dav/friendica/layout.fnk.php:441
#: ../../addon/dav/friendica/layout.fnk.php:488 ../../include/text.php:688
#: ../../addon.old/facebook/facebook.php:770
#: ../../addon.old/privacy_image_cache/privacy_image_cache.php:263
#: ../../addon.old/fbpost/fbpost.php:267
#: ../../addon.old/dav/friendica/layout.fnk.php:441
#: ../../addon.old/dav/friendica/layout.fnk.php:488
msgid "Save"
msgstr "Сохранить"
#: ../../mod/uimport.php:50 ../../mod/register.php:190
msgid ""
"This site has exceeded the number of allowed daily account registrations. "
"Please try again tomorrow."
msgstr ""
#: ../../mod/uimport.php:64
msgid "Import"
msgstr ""
#: ../../mod/uimport.php:66
msgid "Move account"
msgstr ""
#: ../../mod/uimport.php:67
msgid ""
"You can import an account from another Friendica server. <br>\r\n"
" 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.<br>\r\n"
" <b>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 accont, go to \"Settings->Export your porsonal data\" and "
"select \"Export account\""
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:123 ../../mod/wallmessage.php:131
#: ../../mod/message.php:249 ../../mod/message.php:257
#: ../../include/conversation.php:905 ../../include/conversation.php:923
msgid "Please enter a link URL:"
msgstr "Пожалуйста, введите URL ссылки:"
#: ../../mod/wallmessage.php:138 ../../mod/message.php:285
msgid "Send Private Message"
msgstr "Отправить личное сообщение"
#: ../../mod/wallmessage.php:139
#, php-format
msgid ""
"If you wish for %s to respond, please check that the privacy settings on "
"your site allow private mail from unknown senders."
msgstr ""
#: ../../mod/wallmessage.php:140 ../../mod/message.php:286
#: ../../mod/message.php:476
msgid "To:"
msgstr "Кому:"
#: ../../mod/wallmessage.php:141 ../../mod/message.php:291
#: ../../mod/message.php:478
msgid "Subject:"
msgstr "Тема:"
#: ../../mod/wallmessage.php:147 ../../mod/message.php:295
#: ../../mod/message.php:481 ../../mod/invite.php:113
msgid "Your message:"
msgstr "Ваше сообщение:"
#: ../../mod/newmember.php:6
msgid "Welcome to Friendica"
msgstr "Добро пожаловать в Friendica"
#: ../../mod/newmember.php:8
msgid "New Member Checklist"
msgstr "Новый контрольный список участников"
#: ../../mod/newmember.php:12
msgid ""
"We would like to offer some tips and links to help make your experience "
"enjoyable. Click any item to visit the relevant page. A link to this page "
"will be visible from your home page for two weeks after your initial "
"registration and then will quietly disappear."
msgstr ""
#: ../../mod/newmember.php:14
msgid "Getting Started"
msgstr ""
#: ../../mod/newmember.php:18
msgid "Friendica Walk-Through"
msgstr ""
#: ../../mod/newmember.php:18
msgid ""
"On your <em>Quick Start</em> page - find a brief introduction to your "
"profile and network tabs, make some new connections, and find some groups to"
" join."
msgstr ""
#: ../../mod/newmember.php:26
msgid "Go to Your Settings"
msgstr ""
#: ../../mod/newmember.php:26
msgid ""
"On your <em>Settings</em> page - change your initial password. Also make a "
"note of your Identity Address. This looks just like an email address - and "
"will be useful in making friends on the free social web."
msgstr ""
#: ../../mod/newmember.php:28
msgid ""
"Review the other settings, particularly the privacy settings. An unpublished"
" directory listing is like having an unlisted phone number. In general, you "
"should probably publish your listing - unless all of your friends and "
"potential friends know exactly how to find you."
msgstr "Просмотрите другие установки, в частности, параметры конфиденциальности. Неопубликованные пункты каталога с частными номерами телефона. В общем, вам, вероятно, следует опубликовать свою информацию - если все ваши друзья и потенциальные друзья точно знают, как вас найти."
#: ../../mod/newmember.php:32 ../../mod/profperm.php:103
#: ../../view/theme/diabook/theme.php:88 ../../include/profile_advanced.php:7
#: ../../include/profile_advanced.php:84 ../../include/nav.php:50
#: ../../boot.php:1731
#: ../../include/profile_advanced.php:7 ../../include/profile_advanced.php:84
#: ../../include/nav.php:77 ../../mod/profperm.php:103
#: ../../mod/newmember.php:32 ../../view/theme/diabook/theme.php:88
#: ../../boot.php:1868
msgid "Profile"
msgstr "Профиль"
#: ../../mod/newmember.php:36 ../../mod/profile_photo.php:244
msgid "Upload Profile Photo"
msgstr "Загрузить фото профиля"
#: ../../include/profile_advanced.php:15 ../../mod/settings.php:1050
msgid "Full Name:"
msgstr "Полное имя:"
#: ../../mod/newmember.php:36
msgid ""
"Upload a profile photo if you have not done so already. Studies have shown "
"that people with real photos of themselves are ten times more likely to make"
" friends than people who do not."
msgstr "Загрузите фотографию профиля, если вы еще не сделали это. Исследования показали, что люди с реальными фотографиями имеют в десять раз больше шансов подружиться, чем люди, которые этого не делают."
#: ../../mod/newmember.php:38
msgid "Edit Your Profile"
msgstr ""
#: ../../mod/newmember.php:38
msgid ""
"Edit your <strong>default</strong> profile to your liking. Review the "
"settings for hiding your list of friends and hiding the profile from unknown"
" visitors."
msgstr "Отредактируйте профиль <strong>по умолчанию</strong> на свой ​​вкус. Просмотрите установки для сокрытия вашего списка друзей и сокрытия профиля от неизвестных посетителей."
#: ../../mod/newmember.php:40
msgid "Profile Keywords"
msgstr ""
#: ../../mod/newmember.php:40
msgid ""
"Set some public keywords for your default profile which describe your "
"interests. We may be able to find other people with similar interests and "
"suggest friendships."
msgstr "Установите некоторые публичные ключевые слова для вашего профиля по умолчанию, которые описывают ваши интересы. Мы можем быть в состоянии найти других людей со схожими интересами и предложить дружбу."
#: ../../mod/newmember.php:44
msgid "Connecting"
msgstr ""
#: ../../mod/newmember.php:49 ../../mod/newmember.php:51
#: ../../addon/facebook/facebook.php:728 ../../addon/fbpost/fbpost.php:239
#: ../../include/contact_selectors.php:81
#: ../../addon.old/facebook/facebook.php:728
#: ../../addon.old/fbpost/fbpost.php:239
msgid "Facebook"
msgstr "Facebook"
#: ../../mod/newmember.php:49
msgid ""
"Authorise the Facebook Connector if you currently have a Facebook account "
"and we will (optionally) import all your Facebook friends and conversations."
msgstr "Авторизуйте Facebook Connector , если у вас уже есть аккаунт на Facebook, и мы (по желанию) импортируем всех ваших друзей и беседы с Facebook."
#: ../../mod/newmember.php:51
msgid ""
"<em>If</em> this is your own personal server, installing the Facebook addon "
"may ease your transition to the free social web."
msgstr ""
#: ../../mod/newmember.php:56
msgid "Importing Emails"
msgstr ""
#: ../../mod/newmember.php:56
msgid ""
"Enter your email access information on your Connector Settings page if you "
"wish to import and interact with friends or mailing lists from your email "
"INBOX"
msgstr ""
#: ../../mod/newmember.php:58
msgid "Go to Your Contacts Page"
msgstr ""
#: ../../mod/newmember.php:58
msgid ""
"Your Contacts page is your gateway to managing friendships and connecting "
"with friends on other networks. Typically you enter their address or site "
"URL in the <em>Add New Contact</em> dialog."
msgstr ""
#: ../../mod/newmember.php:60
msgid "Go to Your Site's Directory"
msgstr ""
#: ../../mod/newmember.php:60
msgid ""
"The Directory page lets you find other people in this network or other "
"federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on "
"their profile page. Provide your own Identity Address if requested."
msgstr "На странице каталога вы можете найти других людей в этой сети или на других похожих сайтах. Ищите ссылки <em>Подключить</em> или <em>Следовать</em> на страницах их профилей. Укажите свой собственный адрес идентификации, если требуется."
#: ../../mod/newmember.php:62
msgid "Finding New People"
msgstr ""
#: ../../mod/newmember.php:62
msgid ""
"On the side panel of the Contacts page are several tools to find new "
"friends. We can match people by interest, look up people by name or "
"interest, and provide suggestions based on network relationships. On a brand"
" new site, friend suggestions will usually begin to be populated within 24 "
"hours."
msgstr ""
#: ../../mod/newmember.php:66 ../../include/group.php:270
msgid "Groups"
msgstr "Группы"
#: ../../mod/newmember.php:70
msgid "Group Your Contacts"
msgstr ""
#: ../../mod/newmember.php:70
msgid ""
"Once you have made some friends, organize them into private conversation "
"groups from the sidebar of your Contacts page and then you can interact with"
" each group privately on your Network page."
msgstr "После того, как вы найдете несколько друзей, организуйте их в группы частных бесед в боковой панели на странице Контакты, а затем вы можете взаимодействовать с каждой группой приватно или на вашей странице Сеть."
#: ../../mod/newmember.php:73
msgid "Why Aren't My Posts Public?"
msgstr ""
#: ../../mod/newmember.php:73
msgid ""
"Friendica respects your privacy. By default, your posts will only show up to"
" people you've added as friends. For more information, see the help section "
"from the link above."
msgstr ""
#: ../../mod/newmember.php:78
msgid "Getting Help"
msgstr ""
#: ../../mod/newmember.php:82
msgid "Go to the Help Section"
msgstr ""
#: ../../mod/newmember.php:82
msgid ""
"Our <strong>help</strong> pages may be consulted for detail on other program"
" features and resources."
msgstr "Наши страницы <strong>помощи</strong> могут проконсультировать о подробностях и возможностях программы и ресурса."
#: ../../mod/attach.php:8
msgid "Item not available."
msgstr "Пункт не доступен."
#: ../../mod/attach.php:20
msgid "Item was not found."
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:137
msgid "Group not found."
msgstr "Группа не найдена."
#: ../../mod/group.php:60
msgid "Group name changed."
msgstr "Название группы изменено."
#: ../../mod/group.php:72 ../../mod/profperm.php:19 ../../index.php:332
msgid "Permission denied"
msgstr "Доступ запрещен"
#: ../../mod/group.php:90
msgid "Create a group of contacts/friends."
msgstr "Создать группу контактов / друзей."
#: ../../mod/group.php:91 ../../mod/group.php:177
msgid "Group Name: "
msgstr "Название группы: "
#: ../../mod/group.php:110
msgid "Group removed."
msgstr "Группа удалена."
#: ../../mod/group.php:112
msgid "Unable to remove group."
msgstr "Не удается удалить группу."
#: ../../mod/group.php:176
msgid "Group Editor"
msgstr "Редактор групп"
#: ../../mod/group.php:189
msgid "Members"
msgstr "Участники"
#: ../../mod/group.php:221 ../../mod/profperm.php:105
msgid "Click on a contact to add or remove."
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:625
msgid "View Contacts"
msgstr "Просмотр контактов"
#: ../../mod/register.php:89 ../../mod/regmod.php:52
#, php-format
msgid "Registration details for %s"
msgstr "Подробности регистрации для %s"
#: ../../mod/register.php:97
msgid ""
"Registration successful. Please check your email for further instructions."
msgstr "Регистрация успешна. Пожалуйста, проверьте свою электронную почту для получения дальнейших инструкций."
#: ../../mod/register.php:101
msgid "Failed to send email message. Here is the message that failed."
msgstr "Невозможно отправить сообщение электронной почтой. Вот сообщение, которое не удалось."
#: ../../mod/register.php:106
msgid "Your registration can not be processed."
msgstr "Ваша регистрация не может быть обработана."
#: ../../mod/register.php:143
#, php-format
msgid "Registration request at %s"
msgstr "Запрос на регистрацию на %s"
#: ../../mod/register.php:152
msgid "Your registration is pending approval by the site owner."
msgstr "Ваша регистрация в ожидании одобрения владельцем сайта."
#: ../../mod/register.php:218
msgid ""
"You may (optionally) fill in this form via OpenID by supplying your OpenID "
"and clicking 'Register'."
msgstr "Вы можете (по желанию), заполнить эту форму с помощью OpenID, поддерживая ваш OpenID и нажав клавишу \"Регистрация\"."
#: ../../mod/register.php:219
msgid ""
"If you are not familiar with OpenID, please leave that field blank and fill "
"in the rest of the items."
msgstr "Если вы не знакомы с OpenID, пожалуйста, оставьте это поле пустым и заполните остальные элементы."
#: ../../mod/register.php:220
msgid "Your OpenID (optional): "
msgstr "Ваш OpenID (необязательно):"
#: ../../mod/register.php:234
msgid "Include your profile in member directory?"
msgstr "Включить ваш профиль в каталог участников?"
#: ../../mod/register.php:256
msgid "Membership on this site is by invitation only."
msgstr "Членство на сайте только по приглашению."
#: ../../mod/register.php:257
msgid "Your invitation ID: "
msgstr "ID вашего приглашения:"
#: ../../mod/register.php:260 ../../mod/admin.php:446
msgid "Registration"
msgstr "Регистрация"
#: ../../mod/register.php:268
msgid "Your Full Name (e.g. Joe Smith): "
msgstr "Ваше полное имя (например, Joe Smith): "
#: ../../mod/register.php:269
msgid "Your Email Address: "
msgstr "Ваш адрес электронной почты: "
#: ../../mod/register.php:270
msgid ""
"Choose a profile nickname. This must begin with a text character. Your "
"profile address on this site will then be "
"'<strong>nickname@$sitename</strong>'."
msgstr "Выбор псевдонима профиля. Он должен начинаться с буквы. Адрес вашего профиля на данном сайте будет в этом случае '<strong>nickname@$sitename</strong>'."
#: ../../mod/register.php:271
msgid "Choose a nickname: "
msgstr "Выберите псевдоним: "
#: ../../mod/register.php:274 ../../include/nav.php:81 ../../boot.php:923
msgid "Register"
msgstr "Регистрация"
#: ../../mod/dirfind.php:26
msgid "People Search"
msgstr "Поиск людей"
#: ../../mod/like.php:145 ../../mod/subthread.php:87 ../../mod/tagger.php:62
#: ../../addon/communityhome/communityhome.php:163
#: ../../view/theme/diabook/theme.php:464 ../../include/text.php:1442
#: ../../include/diaspora.php:1848 ../../include/conversation.php:125
#: ../../include/conversation.php:253
#: ../../addon.old/communityhome/communityhome.php:163
msgid "photo"
msgstr "фото"
#: ../../mod/like.php:145 ../../mod/like.php:298 ../../mod/subthread.php:87
#: ../../mod/tagger.php:62 ../../addon/facebook/facebook.php:1598
#: ../../addon/communityhome/communityhome.php:158
#: ../../addon/communityhome/communityhome.php:167
#: ../../view/theme/diabook/theme.php:459
#: ../../view/theme/diabook/theme.php:468 ../../include/diaspora.php:1848
#: ../../include/conversation.php:120 ../../include/conversation.php:129
#: ../../include/conversation.php:248 ../../include/conversation.php:257
#: ../../addon.old/facebook/facebook.php:1598
#: ../../addon.old/communityhome/communityhome.php:158
#: ../../addon.old/communityhome/communityhome.php:167
msgid "status"
msgstr "статус"
#: ../../mod/like.php:162 ../../addon/facebook/facebook.php:1602
#: ../../addon/communityhome/communityhome.php:172
#: ../../view/theme/diabook/theme.php:473 ../../include/diaspora.php:1864
#: ../../include/conversation.php:136
#: ../../addon.old/facebook/facebook.php:1602
#: ../../addon.old/communityhome/communityhome.php:172
#, php-format
msgid "%1$s likes %2$s's %3$s"
msgstr "%1$s нравится %3$s от %2$s "
#: ../../mod/like.php:164 ../../include/conversation.php:139
#, php-format
msgid "%1$s doesn't like %2$s's %3$s"
msgstr "%1$s не нравится %3$s от %2$s "
#: ../../mod/notice.php:15 ../../mod/viewsrc.php:15 ../../mod/admin.php:159
#: ../../mod/admin.php:737 ../../mod/admin.php:936 ../../mod/display.php:39
#: ../../mod/display.php:169 ../../include/items.php:3843
msgid "Item not found."
msgstr "Пункт не найден."
#: ../../mod/viewsrc.php:7
msgid "Access denied."
msgstr "Доступ запрещен."
#: ../../mod/fbrowser.php:25 ../../view/theme/diabook/theme.php:90
#: ../../include/nav.php:51 ../../boot.php:1738
msgid "Photos"
msgstr "Фото"
#: ../../mod/fbrowser.php:96
msgid "Files"
msgstr ""
#: ../../mod/regmod.php:61
msgid "Account approved."
msgstr "Аккаунт утвержден."
#: ../../mod/regmod.php:98
#, php-format
msgid "Registration revoked for %s"
msgstr "Регистрация отменена для %s"
#: ../../mod/regmod.php:110
msgid "Please login."
msgstr "Пожалуйста, войдите с паролем."
#: ../../mod/item.php:104
msgid "Unable to locate original post."
msgstr "Не удалось найти оригинальный пост."
#: ../../mod/item.php:288
msgid "Empty post discarded."
msgstr "Пустое сообщение отбрасывается."
#: ../../mod/item.php:424 ../../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:837
msgid "System error. Post not saved."
msgstr "Системная ошибка. Сообщение не сохранено."
#: ../../mod/item.php:862
#, php-format
msgid ""
"This message was sent to you by %s, a member of the Friendica social "
"network."
msgstr ""
#: ../../mod/item.php:864
#, php-format
msgid "You may visit them online at %s"
msgstr "Вы можете посетить их в онлайне на %s"
#: ../../mod/item.php:865
msgid ""
"Please contact the sender by replying to this post if you do not wish to "
"receive these messages."
msgstr "Пожалуйста, свяжитесь с отправителем, ответив на это сообщение, если вы не хотите получать эти сообщения."
#: ../../mod/item.php:867
#, php-format
msgid "%s posted an update."
msgstr "%s отправил/а/ обновление."
#: ../../mod/mood.php:62 ../../include/conversation.php:226
#, php-format
msgid "%1$s is currently %2$s"
msgstr ""
#: ../../mod/mood.php:133
msgid "Mood"
msgstr ""
#: ../../mod/mood.php:134
msgid "Set your current mood and tell your friends"
msgstr ""
#: ../../mod/profile_photo.php:44
msgid "Image uploaded but image cropping failed."
msgstr "Изображение загружено, но обрезка изображения не удалась."
#: ../../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 "Уменьшение размера изображения [%s] не удалось."
#: ../../mod/profile_photo.php:118
msgid ""
"Shift-reload the page or clear browser cache if the new photo does not "
"display immediately."
msgstr "Перезагрузите страницу с зажатой клавишей \"Shift\" для того, чтобы увидеть свое новое фото немедленно."
#: ../../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 "Изображение превышает предельный размер %d"
#: ../../mod/profile_photo.php:242
msgid "Upload File:"
msgstr "Загрузить файл:"
#: ../../mod/profile_photo.php:243
msgid "Select a profile:"
msgstr ""
#: ../../mod/profile_photo.php:245
#: ../../addon/dav/friendica/layout.fnk.php:152
#: ../../addon.old/dav/friendica/layout.fnk.php:152
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/hcard.php:10
msgid "No profile"
msgstr "Нет профиля"
#: ../../mod/removeme.php:45 ../../mod/removeme.php:48
msgid "Remove My Account"
msgstr "Удалить мой аккаунт"
#: ../../mod/removeme.php:46
msgid ""
"This will completely remove your account. Once this has been done it is not "
"recoverable."
msgstr "Это позволит полностью удалить ваш аккаунт. Как только это будет сделано, аккаунт восстановлению не подлежит."
#: ../../mod/removeme.php:47
msgid "Please enter your password for verification:"
msgstr "Пожалуйста, введите свой пароль для проверки:"
#: ../../mod/message.php:9 ../../include/nav.php:132
msgid "New Message"
msgstr "Новое сообщение"
#: ../../mod/message.php:67
msgid "Unable to locate contact information."
msgstr "Не удалось найти контактную информацию."
#: ../../mod/message.php:195
msgid "Message deleted."
msgstr "Сообщение удалено."
#: ../../mod/message.php:225
msgid "Conversation removed."
msgstr "Беседа удалена."
#: ../../mod/message.php:334
msgid "No messages."
msgstr "Нет сообщений."
#: ../../mod/message.php:341
#, php-format
msgid "Unknown sender - %s"
msgstr ""
#: ../../mod/message.php:344
#, php-format
msgid "You and %s"
msgstr ""
#: ../../mod/message.php:347
#, php-format
msgid "%s and You"
msgstr "%s и Вы"
#: ../../mod/message.php:357 ../../mod/message.php:469
msgid "Delete conversation"
msgstr "Удалить историю общения"
#: ../../mod/message.php:360
msgid "D, d M Y - g:i A"
msgstr "D, d M Y - g:i A"
#: ../../mod/message.php:363
#, php-format
msgid "%d message"
msgid_plural "%d messages"
msgstr[0] "%d сообщение"
msgstr[1] "%d сообщений"
msgstr[2] "%d сообщений"
#: ../../mod/message.php:398
msgid "Message not available."
msgstr "Сообщение не доступно."
#: ../../mod/message.php:451
msgid "Delete message"
msgstr "Удалить сообщение"
#: ../../mod/message.php:471
msgid ""
"No secure communications available. You <strong>may</strong> be able to "
"respond from the sender's profile page."
msgstr ""
#: ../../mod/message.php:475
msgid "Send Reply"
msgstr "Отправить ответ"
#: ../../mod/allfriends.php:34
#, php-format
msgid "Friends of %s"
msgstr "%s Друзья"
#: ../../mod/allfriends.php:40
msgid "No friends to display."
msgstr "Нет друзей."
#: ../../mod/admin.php:55
msgid "Theme settings updated."
msgstr ""
#: ../../mod/admin.php:96 ../../mod/admin.php:444
msgid "Site"
msgstr "Сайт"
#: ../../mod/admin.php:97 ../../mod/admin.php:691 ../../mod/admin.php:704
msgid "Users"
msgstr "Пользователи"
#: ../../mod/admin.php:98 ../../mod/admin.php:786 ../../mod/admin.php:828
msgid "Plugins"
msgstr "Плагины"
#: ../../mod/admin.php:99 ../../mod/admin.php:991 ../../mod/admin.php:1027
msgid "Themes"
msgstr ""
#: ../../mod/admin.php:100
msgid "DB updates"
msgstr ""
#: ../../mod/admin.php:115 ../../mod/admin.php:122 ../../mod/admin.php:1114
msgid "Logs"
msgstr "Журналы"
#: ../../mod/admin.php:120 ../../include/nav.php:149
msgid "Admin"
msgstr "Администратор"
#: ../../mod/admin.php:121
msgid "Plugin Features"
msgstr ""
#: ../../mod/admin.php:123
msgid "User registrations waiting for confirmation"
msgstr "Регистрации пользователей, ожидающие подтверждения"
#: ../../mod/admin.php:183 ../../mod/admin.php:672
msgid "Normal Account"
msgstr "Обычный аккаунт"
#: ../../mod/admin.php:184 ../../mod/admin.php:673
msgid "Soapbox Account"
msgstr "Аккаунт Витрина"
#: ../../mod/admin.php:185 ../../mod/admin.php:674
msgid "Community/Celebrity Account"
msgstr "Аккаунт Сообщество / Знаменитость"
#: ../../mod/admin.php:186 ../../mod/admin.php:675
msgid "Automatic Friend Account"
msgstr "\"Автоматический друг\" Аккаунт"
#: ../../mod/admin.php:187
msgid "Blog Account"
msgstr ""
#: ../../mod/admin.php:188
msgid "Private Forum"
msgstr ""
#: ../../mod/admin.php:207
msgid "Message queues"
msgstr ""
#: ../../mod/admin.php:212 ../../mod/admin.php:443 ../../mod/admin.php:690
#: ../../mod/admin.php:785 ../../mod/admin.php:827 ../../mod/admin.php:990
#: ../../mod/admin.php:1026 ../../mod/admin.php:1113
msgid "Administration"
msgstr "Администрация"
#: ../../mod/admin.php:213
msgid "Summary"
msgstr "Резюме"
#: ../../mod/admin.php:215
msgid "Registered users"
msgstr "Зарегистрированные пользователи"
#: ../../mod/admin.php:217
msgid "Pending registrations"
msgstr "Ожидающие регистрации"
#: ../../mod/admin.php:218
msgid "Version"
msgstr "Версия"
#: ../../mod/admin.php:220
msgid "Active plugins"
msgstr "Активные плагины"
#: ../../mod/admin.php:375
msgid "Site settings updated."
msgstr "Установки сайта обновлены."
#: ../../mod/admin.php:430
msgid "Closed"
msgstr "Закрыто"
#: ../../mod/admin.php:431
msgid "Requires approval"
msgstr "Требуется подтверждение"
#: ../../mod/admin.php:432
msgid "Open"
msgstr "Открыто"
#: ../../mod/admin.php:436
msgid "No SSL policy, links will track page SSL state"
msgstr ""
#: ../../mod/admin.php:437
msgid "Force all links to use SSL"
msgstr "Заставить все ссылки использовать SSL"
#: ../../mod/admin.php:438
msgid "Self-signed certificate, use SSL for local links only (discouraged)"
msgstr ""
#: ../../mod/admin.php:447
msgid "File upload"
msgstr "Загрузка файлов"
#: ../../mod/admin.php:448
msgid "Policies"
msgstr "Политики"
#: ../../mod/admin.php:449
msgid "Advanced"
msgstr "Расширенный"
#: ../../mod/admin.php:453 ../../addon/statusnet/statusnet.php:676
#: ../../addon.old/statusnet/statusnet.php:567
msgid "Site name"
msgstr "Название сайта"
#: ../../mod/admin.php:454
msgid "Banner/Logo"
msgstr "Баннер/Логотип"
#: ../../mod/admin.php:455
msgid "System language"
msgstr "Системный язык"
#: ../../mod/admin.php:456
msgid "System theme"
msgstr "Системная тема"
#: ../../mod/admin.php:456
msgid ""
"Default system theme - may be over-ridden by user profiles - <a href='#' "
"id='cnftheme'>change theme settings</a>"
msgstr ""
#: ../../mod/admin.php:457
msgid "Mobile system theme"
msgstr ""
#: ../../mod/admin.php:457
msgid "Theme for mobile devices"
msgstr ""
#: ../../mod/admin.php:458
msgid "SSL link policy"
msgstr ""
#: ../../mod/admin.php:458
msgid "Determines whether generated links should be forced to use SSL"
msgstr "Ссылки должны быть вынуждены использовать SSL"
#: ../../mod/admin.php:459
msgid "Maximum image size"
msgstr "Максимальный размер изображения"
#: ../../mod/admin.php:459
msgid ""
"Maximum size in bytes of uploaded images. Default is 0, which means no "
"limits."
msgstr ""
#: ../../mod/admin.php:460
msgid "Maximum image length"
msgstr ""
#: ../../mod/admin.php:460
msgid ""
"Maximum length in pixels of the longest side of uploaded images. Default is "
"-1, which means no limits."
msgstr ""
#: ../../mod/admin.php:461
msgid "JPEG image quality"
msgstr ""
#: ../../mod/admin.php:461
msgid ""
"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
"100, which is full quality."
msgstr ""
#: ../../mod/admin.php:463
msgid "Register policy"
msgstr "Политика регистрация"
#: ../../mod/admin.php:464
msgid "Maximum Daily Registrations"
msgstr ""
#: ../../mod/admin.php:464
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:465
msgid "Register text"
msgstr "Текст регистрации"
#: ../../mod/admin.php:465
msgid "Will be displayed prominently on the registration page."
msgstr ""
#: ../../mod/admin.php:466
msgid "Accounts abandoned after x days"
msgstr "Аккаунт считается после x дней не воспользованным"
#: ../../mod/admin.php:466
msgid ""
"Will not waste system resources polling external sites for abandonded "
"accounts. Enter 0 for no time limit."
msgstr "Не будет тратить ресурсы для опроса сайтов для бесхозных контактов. Введите 0 для отключения лимита времени."
#: ../../mod/admin.php:467
msgid "Allowed friend domains"
msgstr "Разрешенные домены друзей"
#: ../../mod/admin.php:467
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:468
msgid "Allowed email domains"
msgstr "Разрешенные почтовые домены"
#: ../../mod/admin.php:468
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:469
msgid "Block public"
msgstr "Блокировать общественный доступ"
#: ../../mod/admin.php:469
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:470
msgid "Force publish"
msgstr "Принудительная публикация"
#: ../../mod/admin.php:470
msgid ""
"Check to force all profiles on this site to be listed in the site directory."
msgstr ""
#: ../../mod/admin.php:471
msgid "Global directory update URL"
msgstr "URL обновления глобального каталога"
#: ../../mod/admin.php:471
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:472
msgid "Allow threaded items"
msgstr ""
#: ../../mod/admin.php:472
msgid "Allow infinite level threading for items on this site."
msgstr ""
#: ../../mod/admin.php:473
msgid "Private posts by default for new users"
msgstr ""
#: ../../mod/admin.php:473
msgid ""
"Set default post permissions for all new members to the default privacy "
"group rather than public."
msgstr ""
#: ../../mod/admin.php:475
msgid "Block multiple registrations"
msgstr "Блокировать множественные регистрации"
#: ../../mod/admin.php:475
msgid "Disallow users to register additional accounts for use as pages."
msgstr "Запретить пользователям регистрировать дополнительные аккаунты для использования в качестве страниц."
#: ../../mod/admin.php:476
msgid "OpenID support"
msgstr "Поддержка OpenID"
#: ../../mod/admin.php:476
msgid "OpenID support for registration and logins."
msgstr ""
#: ../../mod/admin.php:477
msgid "Fullname check"
msgstr "Проверка полного имени"
#: ../../mod/admin.php:477
msgid ""
"Force users to register with a space between firstname and lastname in Full "
"name, as an antispam measure"
msgstr ""
#: ../../mod/admin.php:478
msgid "UTF-8 Regular expressions"
msgstr "UTF-8 регулярные выражения"
#: ../../mod/admin.php:478
msgid "Use PHP UTF8 regular expressions"
msgstr ""
#: ../../mod/admin.php:479
msgid "Show Community Page"
msgstr "Показать страницу сообщества"
#: ../../mod/admin.php:479
msgid ""
"Display a Community page showing all recent public postings on this site."
msgstr "Показывать страницу сообщества с указанием всех последних публичных сообщений на этом сайте."
#: ../../mod/admin.php:480
msgid "Enable OStatus support"
msgstr "Включить поддержку OStatus"
#: ../../mod/admin.php:480
msgid ""
"Provide built-in OStatus (identi.ca, status.net, etc.) compatibility. All "
"communications in OStatus are public, so privacy warnings will be "
"occasionally displayed."
msgstr ""
#: ../../mod/admin.php:481
msgid "Enable Diaspora support"
msgstr "Включить поддержку Diaspora"
#: ../../mod/admin.php:481
msgid "Provide built-in Diaspora network compatibility."
msgstr ""
#: ../../mod/admin.php:482
msgid "Only allow Friendica contacts"
msgstr "Позвольть только Friendica контакты"
#: ../../mod/admin.php:482
msgid ""
"All contacts must use Friendica protocols. All other built-in communication "
"protocols disabled."
msgstr "Все контакты должны использовать только Friendica протоколы. Все другие встроенные коммуникационные протоколы отключены."
#: ../../mod/admin.php:483
msgid "Verify SSL"
msgstr "Проверка SSL"
#: ../../mod/admin.php:483
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:484
msgid "Proxy user"
msgstr "Прокси пользователь"
#: ../../mod/admin.php:485
msgid "Proxy URL"
msgstr "Прокси URL"
#: ../../mod/admin.php:486
msgid "Network timeout"
msgstr "Тайм-аут сети"
#: ../../mod/admin.php:486
msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
msgstr ""
#: ../../mod/admin.php:487
msgid "Delivery interval"
msgstr ""
#: ../../mod/admin.php:487
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:488
msgid "Poll interval"
msgstr ""
#: ../../mod/admin.php:488
msgid ""
"Delay background polling processes by this many seconds to reduce system "
"load. If 0, use delivery interval."
msgstr ""
#: ../../mod/admin.php:489
msgid "Maximum Load Average"
msgstr ""
#: ../../mod/admin.php:489
msgid ""
"Maximum system load before delivery and poll processes are deferred - "
"default 50."
msgstr ""
#: ../../mod/admin.php:506
msgid "Update has been marked successful"
msgstr ""
#: ../../mod/admin.php:516
#, php-format
msgid "Executing %s failed. Check system logs."
msgstr ""
#: ../../mod/admin.php:519
#, php-format
msgid "Update %s was successfully applied."
msgstr ""
#: ../../mod/admin.php:523
#, php-format
msgid "Update %s did not return a status. Unknown if it succeeded."
msgstr ""
#: ../../mod/admin.php:526
#, php-format
msgid "Update function %s could not be found."
msgstr ""
#: ../../mod/admin.php:541
msgid "No failed updates."
msgstr ""
#: ../../mod/admin.php:545
msgid "Failed Updates"
msgstr ""
#: ../../mod/admin.php:546
msgid ""
"This does not include updates prior to 1139, which did not return a status."
msgstr ""
#: ../../mod/admin.php:547
msgid "Mark success (if update was manually applied)"
msgstr ""
#: ../../mod/admin.php:548
msgid "Attempt to execute this update step automatically"
msgstr ""
#: ../../mod/admin.php:573
#, php-format
msgid "%s user blocked/unblocked"
msgid_plural "%s users blocked/unblocked"
msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
#: ../../mod/admin.php:580
#, php-format
msgid "%s user deleted"
msgid_plural "%s users deleted"
msgstr[0] "%s человек удален"
msgstr[1] "%s чел. удалено"
msgstr[2] "%s чел. удалено"
#: ../../mod/admin.php:619
#, php-format
msgid "User '%s' deleted"
msgstr "Пользователь '%s' удален"
#: ../../mod/admin.php:627
#, php-format
msgid "User '%s' unblocked"
msgstr "Пользователь '%s' разблокирован"
#: ../../mod/admin.php:627
#, php-format
msgid "User '%s' blocked"
msgstr "Пользователь '%s' блокирован"
#: ../../mod/admin.php:693
msgid "select all"
msgstr "выбрать все"
#: ../../mod/admin.php:694
msgid "User registrations waiting for confirm"
msgstr "Регистрации пользователей, ожидающие подтверждения"
#: ../../mod/admin.php:695
msgid "Request date"
msgstr "Запрос даты"
#: ../../mod/admin.php:695 ../../mod/admin.php:705
#: ../../include/contact_selectors.php:79
#: ../../include/contact_selectors.php:86
msgid "Email"
msgstr "Эл. почта"
#: ../../mod/admin.php:696
msgid "No registrations."
msgstr "Нет регистраций."
#: ../../mod/admin.php:698
msgid "Deny"
msgstr "Отклонить"
#: ../../mod/admin.php:702
msgid "Site admin"
msgstr ""
#: ../../mod/admin.php:705
msgid "Register date"
msgstr "Дата регистрации"
#: ../../mod/admin.php:705
msgid "Last login"
msgstr "Последний вход"
#: ../../mod/admin.php:705
msgid "Last item"
msgstr "Последний пункт"
#: ../../mod/admin.php:705
msgid "Account"
msgstr "Аккаунт"
#: ../../mod/admin.php:707
msgid ""
"Selected users will be deleted!\\n\\nEverything these users had posted on "
"this site will be permanently deleted!\\n\\nAre you sure?"
msgstr "Выбранные пользователи будут удалены!\\n\\nВсе, что эти пользователи написали на этом сайте, будет удалено!\\n\\nВы уверены в вашем действии?"
#: ../../mod/admin.php:708
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 "Пользователь {0} будет удален!\\n\\nВсе, что этот пользователь написал на этом сайте, будет удалено!\\n\\nВы уверены в вашем действии?"
#: ../../mod/admin.php:749
#, php-format
msgid "Plugin %s disabled."
msgstr "Плагин %s отключен."
#: ../../mod/admin.php:753
#, php-format
msgid "Plugin %s enabled."
msgstr "Плагин %s включен."
#: ../../mod/admin.php:763 ../../mod/admin.php:961
msgid "Disable"
msgstr "Отключить"
#: ../../mod/admin.php:765 ../../mod/admin.php:963
msgid "Enable"
msgstr "Включить"
#: ../../mod/admin.php:787 ../../mod/admin.php:992
msgid "Toggle"
msgstr "Переключить"
#: ../../mod/admin.php:795 ../../mod/admin.php:1002
msgid "Author: "
msgstr "Автор:"
#: ../../mod/admin.php:796 ../../mod/admin.php:1003
msgid "Maintainer: "
msgstr ""
#: ../../mod/admin.php:925
msgid "No themes found."
msgstr ""
#: ../../mod/admin.php:984
msgid "Screenshot"
msgstr "Скриншот"
#: ../../mod/admin.php:1032
msgid "[Experimental]"
msgstr "[экспериментально]"
#: ../../mod/admin.php:1033
msgid "[Unsupported]"
msgstr "[Неподдерживаемое]"
#: ../../mod/admin.php:1060
msgid "Log settings updated."
msgstr "Настройки журнала обновлены."
#: ../../mod/admin.php:1116
msgid "Clear"
msgstr "Очистить"
#: ../../mod/admin.php:1122
msgid "Debugging"
msgstr "Отладка"
#: ../../mod/admin.php:1123
msgid "Log file"
msgstr "Лог-файл"
#: ../../mod/admin.php:1123
msgid ""
"Must be writable by web server. Relative to your Friendica top-level "
"directory."
msgstr ""
#: ../../mod/admin.php:1124
msgid "Log level"
msgstr "Уровень лога"
#: ../../mod/admin.php:1174
msgid "Close"
msgstr "Закрыть"
#: ../../mod/admin.php:1180
msgid "FTP Host"
msgstr "FTP хост"
#: ../../mod/admin.php:1181
msgid "FTP Path"
msgstr "Путь FTP"
#: ../../mod/admin.php:1182
msgid "FTP User"
msgstr "FTP пользователь"
#: ../../mod/admin.php:1183
msgid "FTP Password"
msgstr "FTP пароль"
#: ../../mod/profile.php:21 ../../boot.php:1126
msgid "Requested profile is not available."
msgstr "Запрашиваемый профиль недоступен."
#: ../../mod/profile.php:155 ../../mod/display.php:87
msgid "Access to this profile has been restricted."
msgstr "Доступ к этому профилю ограничен."
#: ../../mod/profile.php:180
msgid "Tips for New Members"
msgstr "Советы для новых участников"
#: ../../mod/ping.php:238
msgid "{0} wants to be your friend"
msgstr "{0} хочет стать Вашим другом"
#: ../../mod/ping.php:243
msgid "{0} sent you a message"
msgstr "{0} отправил Вам сообщение"
#: ../../mod/ping.php:248
msgid "{0} requested registration"
msgstr "{0} требуемая регистрация"
#: ../../mod/ping.php:254
#, php-format
msgid "{0} commented %s's post"
msgstr "{0} прокомментировал сообщение от %s"
#: ../../mod/ping.php:259
#, php-format
msgid "{0} liked %s's post"
msgstr "{0} нравится сообщение от %s"
#: ../../mod/ping.php:264
#, php-format
msgid "{0} disliked %s's post"
msgstr "{0} не нравится сообщение от %s"
#: ../../mod/ping.php:269
#, php-format
msgid "{0} is now friends with %s"
msgstr "{0} теперь друзья с %s"
#: ../../mod/ping.php:274
msgid "{0} posted"
msgstr "{0} опубликовано"
#: ../../mod/ping.php:279
#, php-format
msgid "{0} tagged %s's post with #%s"
msgstr "{0} пометил сообщение %s с #%s"
#: ../../mod/ping.php:285
msgid "{0} mentioned you in a post"
msgstr "{0} упоменул Вас в сообщение"
#: ../../mod/nogroup.php:58
msgid "Contacts who are not members of a group"
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 "Аккаунт не найден и OpenID регистрация не допускается на этом сайте."
#: ../../mod/openid.php:93 ../../include/auth.php:110
#: ../../include/auth.php:173
msgid "Login failed."
msgstr "Войти не удалось."
#: ../../mod/follow.php:27
msgid "Contact added"
msgstr ""
#: ../../mod/common.php:42
msgid "Common Friends"
msgstr "Общие друзья"
#: ../../mod/common.php:78
msgid "No contacts in common."
msgstr ""
#: ../../mod/subthread.php:103
#, php-format
msgid "%1$s is following %2$s's %3$s"
msgstr ""
#: ../../mod/share.php:28
msgid "link"
msgstr ""
#: ../../mod/display.php:162
msgid "Item has been removed."
msgstr "Пункт был удален."
#: ../../mod/apps.php:4
msgid "Applications"
msgstr "Приложения"
#: ../../mod/apps.php:7
msgid "No installed applications."
msgstr "Нет установленных приложений."
#: ../../mod/search.php:99 ../../include/text.php:685
#: ../../include/text.php:686 ../../include/nav.php:91
msgid "Search"
msgstr "Поиск"
#: ../../mod/profiles.php:21 ../../mod/profiles.php:441
#: ../../mod/profiles.php:555 ../../mod/dfrn_confirm.php:62
msgid "Profile not found."
msgstr "Профиль не найден."
#: ../../mod/profiles.php:31
msgid "Profile Name is required."
msgstr "Необходимо имя профиля."
#: ../../mod/profiles.php:178
msgid "Marital Status"
msgstr ""
#: ../../mod/profiles.php:182
msgid "Romantic Partner"
msgstr ""
#: ../../mod/profiles.php:186
msgid "Likes"
msgstr ""
#: ../../mod/profiles.php:190
msgid "Dislikes"
msgstr ""
#: ../../mod/profiles.php:194
msgid "Work/Employment"
msgstr ""
#: ../../mod/profiles.php:197
msgid "Religion"
msgstr ""
#: ../../mod/profiles.php:201
msgid "Political Views"
msgstr ""
#: ../../mod/profiles.php:205
msgid "Gender"
msgstr ""
#: ../../mod/profiles.php:209
msgid "Sexual Preference"
msgstr ""
#: ../../mod/profiles.php:213
msgid "Homepage"
msgstr ""
#: ../../mod/profiles.php:217
msgid "Interests"
msgstr ""
#: ../../mod/profiles.php:221
msgid "Address"
msgstr ""
#: ../../mod/profiles.php:228 ../../addon/dav/common/wdcal_edit.inc.php:183
#: ../../addon.old/dav/common/wdcal_edit.inc.php:183
msgid "Location"
msgstr ""
#: ../../mod/profiles.php:311
msgid "Profile updated."
msgstr "Профиль обновлен."
#: ../../mod/profiles.php:378
msgid " and "
msgstr ""
#: ../../mod/profiles.php:386
msgid "public profile"
msgstr ""
#: ../../mod/profiles.php:389
#, php-format
msgid "%1$s changed %2$s to &ldquo;%3$s&rdquo;"
msgstr ""
#: ../../mod/profiles.php:390
#, php-format
msgid " - Visit %1$s's %2$s"
msgstr ""
#: ../../mod/profiles.php:393
#, php-format
msgid "%1$s has an updated %2$s, changing %3$s."
msgstr ""
#: ../../mod/profiles.php:460
msgid "Profile deleted."
msgstr "Профиль удален."
#: ../../mod/profiles.php:478 ../../mod/profiles.php:512
msgid "Profile-"
msgstr "Профиль-"
#: ../../mod/profiles.php:497 ../../mod/profiles.php:539
msgid "New profile created."
msgstr "Новый профиль создан."
#: ../../mod/profiles.php:518
msgid "Profile unavailable to clone."
msgstr "Профиль недоступен для клонирования."
#: ../../mod/profiles.php:583
msgid "Hide your contact/friend list from viewers of this profile?"
msgstr "Скрывать ваш список контактов / друзей от посетителей этого профиля?"
#: ../../mod/profiles.php:603
msgid "Edit Profile Details"
msgstr "Редактировать детали профиля"
#: ../../mod/profiles.php:605
msgid "View this profile"
msgstr "Просмотреть этот профиль"
#: ../../mod/profiles.php:606
msgid "Create a new profile using these settings"
msgstr "Создать новый профиль, используя эти настройки"
#: ../../mod/profiles.php:607
msgid "Clone this profile"
msgstr "Клонировать этот профиль"
#: ../../mod/profiles.php:608
msgid "Delete this profile"
msgstr "Удалить этот профиль"
#: ../../mod/profiles.php:609
msgid "Profile Name:"
msgstr "Имя профиля:"
#: ../../mod/profiles.php:610
msgid "Your Full Name:"
msgstr "Ваше полное имя:"
#: ../../mod/profiles.php:611
msgid "Title/Description:"
msgstr "Заголовок / Описание:"
#: ../../mod/profiles.php:612
msgid "Your Gender:"
msgstr "Ваш пол:"
#: ../../mod/profiles.php:613
#, php-format
msgid "Birthday (%s):"
msgstr "День рождения (%s):"
#: ../../mod/profiles.php:614
msgid "Street Address:"
msgstr "Адрес:"
#: ../../mod/profiles.php:615
msgid "Locality/City:"
msgstr "Город / Населенный пункт:"
#: ../../mod/profiles.php:616
msgid "Postal/Zip Code:"
msgstr "Почтовый индекс:"
#: ../../mod/profiles.php:617
msgid "Country:"
msgstr "Страна:"
#: ../../mod/profiles.php:618
msgid "Region/State:"
msgstr "Район / Область:"
#: ../../mod/profiles.php:619
msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
msgstr "<span class=\"heart\">&hearts;</span> Семейное положение:"
#: ../../mod/profiles.php:620
msgid "Who: (if applicable)"
msgstr "Кто: (если требуется)"
#: ../../mod/profiles.php:621
msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
msgstr "Примеры: cathy123, Кэти Уильямс, cathy@example.com"
#: ../../mod/profiles.php:622
msgid "Since [date]:"
msgstr ""
#: ../../mod/profiles.php:623 ../../include/profile_advanced.php:46
msgid "Sexual Preference:"
msgstr "Сексуальные предпочтения:"
#: ../../mod/profiles.php:624
msgid "Homepage URL:"
msgstr "Адрес домашней странички:"
#: ../../mod/profiles.php:625 ../../include/profile_advanced.php:50
msgid "Hometown:"
msgstr ""
#: ../../mod/profiles.php:626 ../../include/profile_advanced.php:54
msgid "Political Views:"
msgstr "Политические взгляды:"
#: ../../mod/profiles.php:627
msgid "Religious Views:"
msgstr "Религиозные взгляды:"
#: ../../mod/profiles.php:628
msgid "Public Keywords:"
msgstr "Общественные ключевые слова:"
#: ../../mod/profiles.php:629
msgid "Private Keywords:"
msgstr "Личные ключевые слова:"
#: ../../mod/profiles.php:630 ../../include/profile_advanced.php:62
msgid "Likes:"
msgstr ""
#: ../../mod/profiles.php:631 ../../include/profile_advanced.php:64
msgid "Dislikes:"
msgstr ""
#: ../../mod/profiles.php:632
msgid "Example: fishing photography software"
msgstr "Пример: рыбалка фотографии программное обеспечение"
#: ../../mod/profiles.php:633
msgid "(Used for suggesting potential friends, can be seen by others)"
msgstr "(Используется для предложения потенциальным друзьям, могут увидеть другие)"
#: ../../mod/profiles.php:634
msgid "(Used for searching profiles, never shown to others)"
msgstr "(Используется для поиска профилей, никогда не показывается другим)"
#: ../../mod/profiles.php:635
msgid "Tell us about yourself..."
msgstr "Расскажите нам о себе ..."
#: ../../mod/profiles.php:636
msgid "Hobbies/Interests"
msgstr "Хобби / Интересы"
#: ../../mod/profiles.php:637
msgid "Contact information and Social Networks"
msgstr "Контактная информация и социальные сети"
#: ../../mod/profiles.php:638
msgid "Musical interests"
msgstr "Музыкальные интересы"
#: ../../mod/profiles.php:639
msgid "Books, literature"
msgstr "Книги, литература"
#: ../../mod/profiles.php:640
msgid "Television"
msgstr "Телевидение"
#: ../../mod/profiles.php:641
msgid "Film/dance/culture/entertainment"
msgstr "Кино / танцы / культура / развлечения"
#: ../../mod/profiles.php:642
msgid "Love/romance"
msgstr "Любовь / романтика"
#: ../../mod/profiles.php:643
msgid "Work/employment"
msgstr "Работа / занятость"
#: ../../mod/profiles.php:644
msgid "School/education"
msgstr "Школа / образование"
#: ../../mod/profiles.php:649
msgid ""
"This is your <strong>public</strong> profile.<br />It <strong>may</strong> "
"be visible to anybody using the internet."
msgstr "Это ваш <strong>публичный</strong> профиль. <br /> Он <strong>может</strong> быть виден каждому, используя Интернет."
#: ../../mod/profiles.php:659 ../../mod/directory.php:111
#: ../../addon/forumdirectory/forumdirectory.php:133
msgid "Age: "
msgstr "Возраст: "
#: ../../mod/profiles.php:698
msgid "Edit/Manage Profiles"
msgstr "Редактировать профиль"
#: ../../mod/profiles.php:699 ../../boot.php:1244
msgid "Change profile photo"
msgstr "Изменить фото профиля"
#: ../../mod/profiles.php:700 ../../boot.php:1245
msgid "Create New Profile"
msgstr "Создать новый профиль"
#: ../../mod/profiles.php:711 ../../boot.php:1255
msgid "Profile Image"
msgstr "Фото профиля"
#: ../../mod/profiles.php:713 ../../boot.php:1258
msgid "visible to everybody"
msgstr "видимый всем"
#: ../../mod/profiles.php:714 ../../boot.php:1259
msgid "Edit visibility"
msgstr "Редактировать видимость"
#: ../../mod/filer.php:29 ../../include/conversation.php:909
#: ../../include/conversation.php:927
msgid "Save to Folder:"
msgstr "Сохранить в папку:"
#: ../../mod/filer.php:29
msgid "- select -"
msgstr ""
#: ../../mod/tagger.php:95 ../../include/conversation.php:265
#, php-format
msgid "%1$s tagged %2$s's %3$s with %4$s"
msgstr "%1$s tagged %2$s's %3$s в %4$s"
#: ../../mod/delegate.php:95
msgid "No potential page delegates located."
msgstr ""
#: ../../mod/delegate.php:121
msgid "Delegate Page Management"
msgstr "Делегировать управление страницей"
#: ../../mod/delegate.php:123
msgid ""
"Delegates are able to manage all aspects of this account/page except for "
"basic account settings. Please do not delegate your personal account to "
"anybody that you do not trust completely."
msgstr ""
#: ../../mod/delegate.php:124
msgid "Existing Page Managers"
msgstr "Существующие менеджеры страницы"
#: ../../mod/delegate.php:126
msgid "Existing Page Delegates"
msgstr "Существующие уполномоченные страницы"
#: ../../mod/delegate.php:128
msgid "Potential Delegates"
msgstr ""
#: ../../mod/delegate.php:131
msgid "Add"
msgstr "Добавить"
#: ../../mod/delegate.php:132
msgid "No entries."
msgstr "Нет записей."
#: ../../mod/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: "
msgstr ""
#: ../../mod/babel.php:39
msgid "bb2html2bb: "
msgstr ""
#: ../../mod/babel.php:43
msgid "bb2md: "
msgstr ""
#: ../../mod/babel.php:47
msgid "bb2md2html: "
msgstr ""
#: ../../mod/babel.php:51
msgid "bb2dia2bb: "
msgstr ""
#: ../../mod/babel.php:55
msgid "bb2md2html2bb: "
msgstr ""
#: ../../mod/babel.php:65
msgid "Source input (Diaspora format): "
msgstr ""
#: ../../mod/babel.php:70
msgid "diaspora2bb: "
msgstr ""
#: ../../mod/suggest.php:38 ../../view/theme/diabook/theme.php:520
#: ../../include/contact_widgets.php:34
msgid "Friend Suggestions"
msgstr "Предложения друзей"
#: ../../mod/suggest.php:44
msgid ""
"No suggestions available. If this is a new site, please try again in 24 "
"hours."
msgstr ""
#: ../../mod/suggest.php:61
msgid "Ignore/Hide"
msgstr "Проигнорировать/Скрыть"
#: ../../mod/directory.php:49 ../../addon/forumdirectory/forumdirectory.php:71
#: ../../view/theme/diabook/theme.php:518
msgid "Global Directory"
msgstr "Глобальный каталог"
#: ../../mod/directory.php:57 ../../addon/forumdirectory/forumdirectory.php:79
msgid "Find on this site"
msgstr "Найти на этом сайте"
#: ../../mod/directory.php:60 ../../addon/forumdirectory/forumdirectory.php:82
msgid "Site Directory"
msgstr "Каталог сайта"
#: ../../mod/directory.php:114
#: ../../addon/forumdirectory/forumdirectory.php:136
msgid "Gender: "
msgstr "Пол: "
#: ../../mod/directory.php:136
#: ../../addon/forumdirectory/forumdirectory.php:158
#: ../../include/profile_advanced.php:17 ../../boot.php:1280
#: ../../include/profile_advanced.php:17 ../../mod/directory.php:136
#: ../../boot.php:1408
msgid "Gender:"
msgstr "Пол:"
#: ../../mod/directory.php:138
#: ../../addon/forumdirectory/forumdirectory.php:160
#: ../../include/profile_advanced.php:37 ../../boot.php:1283
msgid "Status:"
msgstr "Статус:"
#: ../../mod/directory.php:140
#: ../../addon/forumdirectory/forumdirectory.php:162
#: ../../include/profile_advanced.php:48 ../../boot.php:1285
msgid "Homepage:"
msgstr "Домашняя страничка:"
#: ../../mod/directory.php:142
#: ../../addon/forumdirectory/forumdirectory.php:164
#: ../../include/profile_advanced.php:58
msgid "About:"
msgstr "О себе:"
#: ../../mod/directory.php:180
#: ../../addon/forumdirectory/forumdirectory.php:202
msgid "No entries (some entries may be hidden)."
msgstr "Нет записей (некоторые записи могут быть скрыты)."
#: ../../mod/invite.php:35
#, php-format
msgid "%s : Not a valid email address."
msgstr "%s: Неверный адрес электронной почты."
#: ../../mod/invite.php:59
msgid "Please join us on Friendica"
msgstr ""
#: ../../mod/invite.php:69
#, php-format
msgid "%s : Message delivery failed."
msgstr "%s: Доставка сообщения не удалась."
#: ../../mod/invite.php:73
#, php-format
msgid "%d message sent."
msgid_plural "%d messages sent."
msgstr[0] "%d сообщение отправлено."
msgstr[1] "%d сообщений отправлено."
msgstr[2] "%d сообщений отправлено."
#: ../../mod/invite.php:92
msgid "You have no more invitations available"
msgstr "У вас нет больше приглашений"
#: ../../mod/invite.php:100
#, php-format
msgid ""
"Visit %s for a list of public sites that you can join. Friendica members on "
"other sites can all connect with each other, as well as with members of many"
" other social networks."
msgstr ""
#: ../../mod/invite.php:102
#, php-format
msgid ""
"To accept this invitation, please visit and register at %s or any other "
"public Friendica website."
msgstr ""
#: ../../mod/invite.php:103
#, php-format
msgid ""
"Friendica sites all inter-connect to create a huge privacy-enhanced social "
"web that is owned and controlled by its members. They can also connect with "
"many traditional social networks. See %s for a list of alternate Friendica "
"sites you can join."
msgstr ""
#: ../../mod/invite.php:106
msgid ""
"Our apologies. This system is not currently configured to connect with other"
" public sites or invite members."
msgstr ""
#: ../../mod/invite.php:111
msgid "Send invitations"
msgstr "Отправить приглашения"
#: ../../mod/invite.php:112
msgid "Enter email addresses, one per line:"
msgstr "Введите адреса электронной почты, по одному в строке:"
#: ../../mod/invite.php:114
msgid ""
"You are cordially invited to join me and other close friends on Friendica - "
"and help us to create a better social web."
msgstr ""
#: ../../mod/invite.php:116
msgid "You will need to supply this invitation code: $invite_code"
msgstr "Вам нужно будет предоставить этот код приглашения: $invite_code"
#: ../../mod/invite.php:116
msgid ""
"Once you have registered, please connect with me via my profile page at:"
msgstr "После того как вы зарегистрировались, пожалуйста, свяжитесь со мной через мою страницу профиля по адресу:"
#: ../../mod/invite.php:118
msgid ""
"For more information about the Friendica project and why we feel it is "
"important, please visit http://friendica.com"
msgstr ""
#: ../../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/diaspora.php:619
#: ../../include/conversation.php:171
#, php-format
msgid "%1$s is now friends with %2$s"
msgstr "%1$s и %2$s теперь друзья"
#: ../../mod/dfrn_confirm.php:562
#, php-format
msgid "No user record found for '%s' "
msgstr "Не найдено записи пользователя для '%s' "
#: ../../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 "Был предоставлен пустой URL сайта ​​или URL не может быть расшифрован нами."
#: ../../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 "Публичный ключ недоступен в записи о контакте по ссылке %s"
#: ../../mod/dfrn_confirm.php:638
msgid ""
"The ID provided by your system is a duplicate on our system. It should work "
"if you try again."
msgstr "ID, предложенный вашей системой, является дубликатом в нашей системе. Он должен работать, если вы повторите попытку."
#: ../../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:750
#, php-format
msgid "Connection accepted at %s"
msgstr "Подключение принято в %s"
#: ../../mod/dfrn_confirm.php:799
#, php-format
msgid "%1$s has joined %2$s"
msgstr ""
#: ../../addon/fromgplus/fromgplus.php:29
#: ../../addon.old/fromgplus/fromgplus.php:29
msgid "Google+ Import Settings"
msgstr ""
#: ../../addon/fromgplus/fromgplus.php:32
#: ../../addon.old/fromgplus/fromgplus.php:32
msgid "Enable Google+ Import"
msgstr ""
#: ../../addon/fromgplus/fromgplus.php:35
#: ../../addon.old/fromgplus/fromgplus.php:35
msgid "Google Account ID"
msgstr ""
#: ../../addon/fromgplus/fromgplus.php:55
#: ../../addon.old/fromgplus/fromgplus.php:55
msgid "Google+ Import Settings saved."
msgstr ""
#: ../../addon/facebook/facebook.php:523
#: ../../addon.old/facebook/facebook.php:523
msgid "Facebook disabled"
msgstr "Facebook отключен"
#: ../../addon/facebook/facebook.php:528
#: ../../addon.old/facebook/facebook.php:528
msgid "Updating contacts"
msgstr "Обновление контактов"
#: ../../addon/facebook/facebook.php:551 ../../addon/fbpost/fbpost.php:192
#: ../../addon.old/facebook/facebook.php:551
#: ../../addon.old/fbpost/fbpost.php:192
msgid "Facebook API key is missing."
msgstr "Отсутствует ключ Facebook API."
#: ../../addon/facebook/facebook.php:558
#: ../../addon.old/facebook/facebook.php:558
msgid "Facebook Connect"
msgstr "Facebook подключение"
#: ../../addon/facebook/facebook.php:564
#: ../../addon.old/facebook/facebook.php:564
msgid "Install Facebook connector for this account."
msgstr "Установить Facebook Connector для этого аккаунта."
#: ../../addon/facebook/facebook.php:571
#: ../../addon.old/facebook/facebook.php:571
msgid "Remove Facebook connector"
msgstr "Удалить Facebook Connector"
#: ../../addon/facebook/facebook.php:576 ../../addon/fbpost/fbpost.php:217
#: ../../addon.old/facebook/facebook.php:576
#: ../../addon.old/fbpost/fbpost.php:217
msgid ""
"Re-authenticate [This is necessary whenever your Facebook password is "
"changed.]"
msgstr "Переаутентификация [Это необходимо, если вы изменили пароль на Facebook.]"
#: ../../addon/facebook/facebook.php:583 ../../addon/fbpost/fbpost.php:224
#: ../../addon.old/facebook/facebook.php:583
#: ../../addon.old/fbpost/fbpost.php:224
msgid "Post to Facebook by default"
msgstr "Отправлять на Facebook по умолчанию"
#: ../../addon/facebook/facebook.php:589
#: ../../addon.old/facebook/facebook.php:589
msgid ""
"Facebook friend linking has been disabled on this site. The following "
"settings will have no effect."
msgstr ""
#: ../../addon/facebook/facebook.php:593
#: ../../addon.old/facebook/facebook.php:593
msgid ""
"Facebook friend linking has been disabled on this site. If you disable it, "
"you will be unable to re-enable it."
msgstr ""
#: ../../addon/facebook/facebook.php:596
#: ../../addon.old/facebook/facebook.php:596
msgid "Link all your Facebook friends and conversations on this website"
msgstr "Прикрепите своих друзей и общение с Facebook на этот сайт"
#: ../../addon/facebook/facebook.php:598
#: ../../addon.old/facebook/facebook.php:598
msgid ""
"Facebook conversations consist of your <em>profile wall</em> and your friend"
" <em>stream</em>."
msgstr ""
#: ../../addon/facebook/facebook.php:599
#: ../../addon.old/facebook/facebook.php:599
msgid "On this website, your Facebook friend stream is only visible to you."
msgstr "Facebook-лента друзей видна только вам."
#: ../../addon/facebook/facebook.php:600
#: ../../addon.old/facebook/facebook.php:600
msgid ""
"The following settings determine the privacy of your Facebook profile wall "
"on this website."
msgstr "Следующие настройки определяют параметры приватности вашей стены с Facebook на этом сайте."
#: ../../addon/facebook/facebook.php:604
#: ../../addon.old/facebook/facebook.php:604
msgid ""
"On this website your Facebook profile wall conversations will only be "
"visible to you"
msgstr "Ваша лента профиля Facebook будет видна только вам"
#: ../../addon/facebook/facebook.php:609
#: ../../addon.old/facebook/facebook.php:609
msgid "Do not import your Facebook profile wall conversations"
msgstr "Не импортировать Facebook разговоров с Вашей страницы"
#: ../../addon/facebook/facebook.php:611
#: ../../addon.old/facebook/facebook.php:611
msgid ""
"If you choose to link conversations and leave both of these boxes unchecked,"
" your Facebook profile wall will be merged with your profile wall on this "
"website and your privacy settings on this website will be used to determine "
"who may see the conversations."
msgstr ""
#: ../../addon/facebook/facebook.php:616
#: ../../addon.old/facebook/facebook.php:616
msgid "Comma separated applications to ignore"
msgstr "Игнорировать приложения (список через запятую)"
#: ../../addon/facebook/facebook.php:700
#: ../../addon.old/facebook/facebook.php:700
msgid "Problems with Facebook Real-Time Updates"
msgstr ""
#: ../../addon/facebook/facebook.php:729
#: ../../addon.old/facebook/facebook.php:729
msgid "Facebook Connector Settings"
msgstr "Настройки подключения Facebook"
#: ../../addon/facebook/facebook.php:744 ../../addon/fbpost/fbpost.php:255
#: ../../addon.old/facebook/facebook.php:744
#: ../../addon.old/fbpost/fbpost.php:255
msgid "Facebook API Key"
msgstr "Facebook API Key"
#: ../../addon/facebook/facebook.php:754 ../../addon/fbpost/fbpost.php:262
#: ../../addon.old/facebook/facebook.php:754
#: ../../addon.old/fbpost/fbpost.php:262
msgid ""
"Error: it appears that you have specified the App-ID and -Secret in your "
".htconfig.php file. As long as they are specified there, they cannot be set "
"using this form.<br><br>"
msgstr ""
#: ../../addon/facebook/facebook.php:759
#: ../../addon.old/facebook/facebook.php:759
msgid ""
"Error: the given API Key seems to be incorrect (the application access token"
" could not be retrieved)."
msgstr ""
#: ../../addon/facebook/facebook.php:761
#: ../../addon.old/facebook/facebook.php:761
msgid "The given API Key seems to work correctly."
msgstr ""
#: ../../addon/facebook/facebook.php:763
#: ../../addon.old/facebook/facebook.php:763
msgid ""
"The correctness of the API Key could not be detected. Something strange's "
"going on."
msgstr ""
#: ../../addon/facebook/facebook.php:766 ../../addon/fbpost/fbpost.php:264
#: ../../addon.old/facebook/facebook.php:766
#: ../../addon.old/fbpost/fbpost.php:264
msgid "App-ID / API-Key"
msgstr "App-ID / API-Key"
#: ../../addon/facebook/facebook.php:767 ../../addon/fbpost/fbpost.php:265
#: ../../addon.old/facebook/facebook.php:767
#: ../../addon.old/fbpost/fbpost.php:265
msgid "Application secret"
msgstr "Секрет приложения"
#: ../../addon/facebook/facebook.php:768
#: ../../addon.old/facebook/facebook.php:768
#, php-format
msgid "Polling Interval in minutes (minimum %1$s minutes)"
msgstr ""
#: ../../addon/facebook/facebook.php:769
#: ../../addon.old/facebook/facebook.php:769
msgid ""
"Synchronize comments (no comments on Facebook are missed, at the cost of "
"increased system load)"
msgstr ""
#: ../../addon/facebook/facebook.php:773
#: ../../addon.old/facebook/facebook.php:773
msgid "Real-Time Updates"
msgstr ""
#: ../../addon/facebook/facebook.php:777
#: ../../addon.old/facebook/facebook.php:777
msgid "Real-Time Updates are activated."
msgstr ""
#: ../../addon/facebook/facebook.php:778
#: ../../addon.old/facebook/facebook.php:778
msgid "Deactivate Real-Time Updates"
msgstr "Отключить Real-Time обновления"
#: ../../addon/facebook/facebook.php:780
#: ../../addon.old/facebook/facebook.php:780
msgid "Real-Time Updates not activated."
msgstr ""
#: ../../addon/facebook/facebook.php:780
#: ../../addon.old/facebook/facebook.php:780
msgid "Activate Real-Time Updates"
msgstr "Активировать Real-Time обновления"
#: ../../addon/facebook/facebook.php:799 ../../addon/fbpost/fbpost.php:282
#: ../../addon/dav/friendica/layout.fnk.php:361
#: ../../addon.old/facebook/facebook.php:799
#: ../../addon.old/fbpost/fbpost.php:282
#: ../../addon.old/dav/friendica/layout.fnk.php:361
msgid "The new values have been saved."
msgstr ""
#: ../../addon/facebook/facebook.php:823 ../../addon/fbpost/fbpost.php:301
#: ../../addon.old/facebook/facebook.php:823
#: ../../addon.old/fbpost/fbpost.php:301
msgid "Post to Facebook"
msgstr "Отправить на Facebook"
#: ../../addon/facebook/facebook.php:921 ../../addon/fbpost/fbpost.php:399
#: ../../addon.old/facebook/facebook.php:921
#: ../../addon.old/fbpost/fbpost.php:399
msgid ""
"Post to Facebook cancelled because of multi-network access permission "
"conflict."
msgstr "Отправка на Facebook отменена из-за конфликта разрешений доступа разных сетей."
#: ../../addon/facebook/facebook.php:1149 ../../addon/fbpost/fbpost.php:610
#: ../../addon.old/facebook/facebook.php:1149
#: ../../addon.old/fbpost/fbpost.php:610
msgid "View on Friendica"
msgstr ""
#: ../../addon/facebook/facebook.php:1182 ../../addon/fbpost/fbpost.php:643
#: ../../addon.old/facebook/facebook.php:1182
#: ../../addon.old/fbpost/fbpost.php:643
msgid "Facebook post failed. Queued for retry."
msgstr "Ошибка отправки сообщения на Facebook. В очереди на еще одну попытку."
#: ../../addon/facebook/facebook.php:1222 ../../addon/fbpost/fbpost.php:683
#: ../../addon.old/facebook/facebook.php:1222
#: ../../addon.old/fbpost/fbpost.php:683
msgid "Your Facebook connection became invalid. Please Re-authenticate."
msgstr ""
#: ../../addon/facebook/facebook.php:1223 ../../addon/fbpost/fbpost.php:684
#: ../../addon.old/facebook/facebook.php:1223
#: ../../addon.old/fbpost/fbpost.php:684
msgid "Facebook connection became invalid"
msgstr "Facebook подключение не удалось"
#: ../../addon/facebook/facebook.php:1224 ../../addon/fbpost/fbpost.php:685
#: ../../addon.old/facebook/facebook.php:1224
#: ../../addon.old/fbpost/fbpost.php:685
#, php-format
msgid ""
"Hi %1$s,\n"
"\n"
"The connection between your accounts on %2$s and Facebook became invalid. This usually happens after you change your Facebook-password. To enable the connection again, you have to %3$sre-authenticate the Facebook-connector%4$s."
msgstr ""
#: ../../addon/snautofollow/snautofollow.php:32
#: ../../addon.old/snautofollow/snautofollow.php:32
msgid "StatusNet AutoFollow settings updated."
msgstr ""
#: ../../addon/snautofollow/snautofollow.php:56
#: ../../addon.old/snautofollow/snautofollow.php:56
msgid "StatusNet AutoFollow Settings"
msgstr ""
#: ../../addon/snautofollow/snautofollow.php:58
#: ../../addon.old/snautofollow/snautofollow.php:58
msgid "Automatically follow any StatusNet followers/mentioners"
msgstr ""
#: ../../addon/privacy_image_cache/privacy_image_cache.php:278
#: ../../addon.old/privacy_image_cache/privacy_image_cache.php:260
msgid "Lifetime of the cache (in hours)"
msgstr ""
#: ../../addon/privacy_image_cache/privacy_image_cache.php:283
#: ../../addon.old/privacy_image_cache/privacy_image_cache.php:265
msgid "Cache Statistics"
msgstr ""
#: ../../addon/privacy_image_cache/privacy_image_cache.php:286
#: ../../addon.old/privacy_image_cache/privacy_image_cache.php:268
msgid "Number of items"
msgstr ""
#: ../../addon/privacy_image_cache/privacy_image_cache.php:288
#: ../../addon.old/privacy_image_cache/privacy_image_cache.php:270
msgid "Size of the cache"
msgstr ""
#: ../../addon/privacy_image_cache/privacy_image_cache.php:290
#: ../../addon.old/privacy_image_cache/privacy_image_cache.php:272
msgid "Delete the whole cache"
msgstr ""
#: ../../addon/fbpost/fbpost.php:172 ../../addon.old/fbpost/fbpost.php:172
msgid "Facebook Post disabled"
msgstr ""
#: ../../addon/fbpost/fbpost.php:199 ../../addon.old/fbpost/fbpost.php:199
msgid "Facebook Post"
msgstr ""
#: ../../addon/fbpost/fbpost.php:205 ../../addon.old/fbpost/fbpost.php:205
msgid "Install Facebook Post connector for this account."
msgstr ""
#: ../../addon/fbpost/fbpost.php:212 ../../addon.old/fbpost/fbpost.php:212
msgid "Remove Facebook Post connector"
msgstr ""
#: ../../addon/fbpost/fbpost.php:240 ../../addon.old/fbpost/fbpost.php:240
msgid "Facebook Post Settings"
msgstr ""
#: ../../addon/widgets/widget_like.php:58
#: ../../addon.old/widgets/widget_like.php:58
#, php-format
msgid "%d person likes this"
msgid_plural "%d people like this"
msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
#: ../../addon/widgets/widget_like.php:61
#: ../../addon.old/widgets/widget_like.php:61
#, php-format
msgid "%d person doesn't like this"
msgid_plural "%d people don't like this"
msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
#: ../../addon/widgets/widget_friendheader.php:40
#: ../../addon.old/widgets/widget_friendheader.php:40
msgid "Get added to this list!"
msgstr ""
#: ../../addon/widgets/widgets.php:56 ../../addon.old/widgets/widgets.php:56
msgid "Generate new key"
msgstr "Сгенерировать новый ключ"
#: ../../addon/widgets/widgets.php:59 ../../addon.old/widgets/widgets.php:59
msgid "Widgets key"
msgstr "Ключ виджетов"
#: ../../addon/widgets/widgets.php:61 ../../addon.old/widgets/widgets.php:61
msgid "Widgets available"
msgstr "Виджеты доступны"
#: ../../addon/widgets/widget_friends.php:40
#: ../../addon.old/widgets/widget_friends.php:40
msgid "Connect on Friendica!"
msgstr "Подключены к Friendica!"
#: ../../addon/morepokes/morepokes.php:19
#: ../../addon.old/morepokes/morepokes.php:19
msgid "bitchslap"
msgstr ""
#: ../../addon/morepokes/morepokes.php:19
#: ../../addon.old/morepokes/morepokes.php:19
msgid "bitchslapped"
msgstr ""
#: ../../addon/morepokes/morepokes.php:20
#: ../../addon.old/morepokes/morepokes.php:20
msgid "shag"
msgstr ""
#: ../../addon/morepokes/morepokes.php:20
#: ../../addon.old/morepokes/morepokes.php:20
msgid "shagged"
msgstr ""
#: ../../addon/morepokes/morepokes.php:21
#: ../../addon.old/morepokes/morepokes.php:21
msgid "do something obscenely biological to"
msgstr ""
#: ../../addon/morepokes/morepokes.php:21
#: ../../addon.old/morepokes/morepokes.php:21
msgid "did something obscenely biological to"
msgstr ""
#: ../../addon/morepokes/morepokes.php:22
#: ../../addon.old/morepokes/morepokes.php:22
msgid "point out the poke feature to"
msgstr ""
#: ../../addon/morepokes/morepokes.php:22
#: ../../addon.old/morepokes/morepokes.php:22
msgid "pointed out the poke feature to"
msgstr ""
#: ../../addon/morepokes/morepokes.php:23
#: ../../addon.old/morepokes/morepokes.php:23
msgid "declare undying love for"
msgstr ""
#: ../../addon/morepokes/morepokes.php:23
#: ../../addon.old/morepokes/morepokes.php:23
msgid "declared undying love for"
msgstr ""
#: ../../addon/morepokes/morepokes.php:24
#: ../../addon.old/morepokes/morepokes.php:24
msgid "patent"
msgstr ""
#: ../../addon/morepokes/morepokes.php:24
#: ../../addon.old/morepokes/morepokes.php:24
msgid "patented"
msgstr ""
#: ../../addon/morepokes/morepokes.php:25
#: ../../addon.old/morepokes/morepokes.php:25
msgid "stroke beard"
msgstr ""
#: ../../addon/morepokes/morepokes.php:25
#: ../../addon.old/morepokes/morepokes.php:25
msgid "stroked their beard at"
msgstr ""
#: ../../addon/morepokes/morepokes.php:26
#: ../../addon.old/morepokes/morepokes.php:26
msgid ""
"bemoan the declining standards of modern secondary and tertiary education to"
msgstr ""
#: ../../addon/morepokes/morepokes.php:26
#: ../../addon.old/morepokes/morepokes.php:26
msgid ""
"bemoans the declining standards of modern secondary and tertiary education "
"to"
msgstr ""
#: ../../addon/morepokes/morepokes.php:27
#: ../../addon.old/morepokes/morepokes.php:27
msgid "hug"
msgstr ""
#: ../../addon/morepokes/morepokes.php:27
#: ../../addon.old/morepokes/morepokes.php:27
msgid "hugged"
msgstr ""
#: ../../addon/morepokes/morepokes.php:28
#: ../../addon.old/morepokes/morepokes.php:28
msgid "kiss"
msgstr ""
#: ../../addon/morepokes/morepokes.php:28
#: ../../addon.old/morepokes/morepokes.php:28
msgid "kissed"
msgstr ""
#: ../../addon/morepokes/morepokes.php:29
#: ../../addon.old/morepokes/morepokes.php:29
msgid "raise eyebrows at"
msgstr ""
#: ../../addon/morepokes/morepokes.php:29
#: ../../addon.old/morepokes/morepokes.php:29
msgid "raised their eyebrows at"
msgstr ""
#: ../../addon/morepokes/morepokes.php:30
#: ../../addon.old/morepokes/morepokes.php:30
msgid "insult"
msgstr ""
#: ../../addon/morepokes/morepokes.php:30
#: ../../addon.old/morepokes/morepokes.php:30
msgid "insulted"
msgstr ""
#: ../../addon/morepokes/morepokes.php:31
#: ../../addon.old/morepokes/morepokes.php:31
msgid "praise"
msgstr ""
#: ../../addon/morepokes/morepokes.php:31
#: ../../addon.old/morepokes/morepokes.php:31
msgid "praised"
msgstr ""
#: ../../addon/morepokes/morepokes.php:32
#: ../../addon.old/morepokes/morepokes.php:32
msgid "be dubious of"
msgstr ""
#: ../../addon/morepokes/morepokes.php:32
#: ../../addon.old/morepokes/morepokes.php:32
msgid "was dubious of"
msgstr ""
#: ../../addon/morepokes/morepokes.php:33
#: ../../addon.old/morepokes/morepokes.php:33
msgid "eat"
msgstr ""
#: ../../addon/morepokes/morepokes.php:33
#: ../../addon.old/morepokes/morepokes.php:33
msgid "ate"
msgstr ""
#: ../../addon/morepokes/morepokes.php:34
#: ../../addon.old/morepokes/morepokes.php:34
msgid "giggle and fawn at"
msgstr ""
#: ../../addon/morepokes/morepokes.php:34
#: ../../addon.old/morepokes/morepokes.php:34
msgid "giggled and fawned at"
msgstr ""
#: ../../addon/morepokes/morepokes.php:35
#: ../../addon.old/morepokes/morepokes.php:35
msgid "doubt"
msgstr ""
#: ../../addon/morepokes/morepokes.php:35
#: ../../addon.old/morepokes/morepokes.php:35
msgid "doubted"
msgstr ""
#: ../../addon/morepokes/morepokes.php:36
#: ../../addon.old/morepokes/morepokes.php:36
msgid "glare"
msgstr ""
#: ../../addon/morepokes/morepokes.php:36
#: ../../addon.old/morepokes/morepokes.php:36
msgid "glared at"
msgstr ""
#: ../../addon/yourls/yourls.php:55 ../../addon.old/yourls/yourls.php:55
msgid "YourLS Settings"
msgstr ""
#: ../../addon/yourls/yourls.php:57 ../../addon.old/yourls/yourls.php:57
msgid "URL: http://"
msgstr "URL: http://"
#: ../../addon/yourls/yourls.php:62 ../../addon.old/yourls/yourls.php:62
msgid "Username:"
msgstr "Имя:"
#: ../../addon/yourls/yourls.php:67 ../../addon.old/yourls/yourls.php:67
msgid "Password:"
msgstr "Пароль:"
#: ../../addon/yourls/yourls.php:72 ../../addon.old/yourls/yourls.php:72
msgid "Use SSL "
msgstr "Использовать SSL"
#: ../../addon/yourls/yourls.php:92 ../../addon.old/yourls/yourls.php:92
msgid "yourls Settings saved."
msgstr "Настройки сохранены."
#: ../../addon/ljpost/ljpost.php:39 ../../addon.old/ljpost/ljpost.php:39
msgid "Post to LiveJournal"
msgstr ""
#: ../../addon/ljpost/ljpost.php:70 ../../addon.old/ljpost/ljpost.php:70
msgid "LiveJournal Post Settings"
msgstr ""
#: ../../addon/ljpost/ljpost.php:72 ../../addon.old/ljpost/ljpost.php:72
msgid "Enable LiveJournal Post Plugin"
msgstr "Включить LiveJournal плагин сообщений"
#: ../../addon/ljpost/ljpost.php:77 ../../addon.old/ljpost/ljpost.php:77
msgid "LiveJournal username"
msgstr ""
#: ../../addon/ljpost/ljpost.php:82 ../../addon.old/ljpost/ljpost.php:82
msgid "LiveJournal password"
msgstr ""
#: ../../addon/ljpost/ljpost.php:87 ../../addon.old/ljpost/ljpost.php:87
msgid "Post to LiveJournal by default"
msgstr ""
#: ../../addon/nsfw/nsfw.php:78 ../../addon.old/nsfw/nsfw.php:78
msgid "Not Safe For Work (General Purpose Content Filter) settings"
msgstr ""
#: ../../addon/nsfw/nsfw.php:80 ../../addon.old/nsfw/nsfw.php:80
msgid ""
"This plugin looks in posts for the words/text you specify below, and "
"collapses any content containing those keywords so it is not displayed at "
"inappropriate times, such as sexual innuendo that may be improper in a work "
"setting. It is polite and recommended to tag any content containing nudity "
"with #NSFW. This filter can also match any other word/text you specify, and"
" can thereby be used as a general purpose content filter."
msgstr ""
#: ../../addon/nsfw/nsfw.php:81 ../../addon.old/nsfw/nsfw.php:81
msgid "Enable Content filter"
msgstr "Включить фильтр содержимого"
#: ../../addon/nsfw/nsfw.php:84 ../../addon.old/nsfw/nsfw.php:84
msgid "Comma separated list of keywords to hide"
msgstr "ключевые слова, которые скрыть (список через запятую)"
#: ../../addon/nsfw/nsfw.php:89 ../../addon.old/nsfw/nsfw.php:89
msgid "Use /expression/ to provide regular expressions"
msgstr ""
#: ../../addon/nsfw/nsfw.php:105 ../../addon.old/nsfw/nsfw.php:105
msgid "NSFW Settings saved."
msgstr "NSFW Настройки сохранены."
#: ../../addon/nsfw/nsfw.php:157 ../../addon.old/nsfw/nsfw.php:157
#, php-format
msgid "%s - Click to open/close"
msgstr "%s - Нажмите для открытия / закрытия"
#: ../../addon/page/page.php:62 ../../addon/page/page.php:92
#: ../../addon/forumlist/forumlist.php:60 ../../addon.old/page/page.php:62
#: ../../addon.old/page/page.php:92 ../../addon.old/forumlist/forumlist.php:60
msgid "Forums"
msgstr "Форумы"
#: ../../addon/page/page.php:130 ../../addon/forumlist/forumlist.php:94
#: ../../addon.old/page/page.php:130
#: ../../addon.old/forumlist/forumlist.php:94
msgid "Forums:"
msgstr ""
#: ../../addon/page/page.php:166 ../../addon.old/page/page.php:166
msgid "Page settings updated."
msgstr ""
#: ../../addon/page/page.php:195 ../../addon.old/page/page.php:195
msgid "Page Settings"
msgstr ""
#: ../../addon/page/page.php:197 ../../addon.old/page/page.php:197
msgid "How many forums to display on sidebar without paging"
msgstr ""
#: ../../addon/page/page.php:200 ../../addon.old/page/page.php:200
msgid "Randomise Page/Forum list"
msgstr ""
#: ../../addon/page/page.php:203 ../../addon.old/page/page.php:203
msgid "Show pages/forums on profile page"
msgstr ""
#: ../../addon/planets/planets.php:150 ../../addon.old/planets/planets.php:150
msgid "Planets Settings"
msgstr ""
#: ../../addon/planets/planets.php:152 ../../addon.old/planets/planets.php:152
msgid "Enable Planets Plugin"
msgstr ""
#: ../../addon/forumdirectory/forumdirectory.php:22
msgid "Forum Directory"
msgstr ""
#: ../../addon/communityhome/communityhome.php:28
#: ../../addon/communityhome/communityhome.php:34
#: ../../addon/communityhome/twillingham/communityhome.php:28
#: ../../addon/communityhome/twillingham/communityhome.php:34
#: ../../include/nav.php:64 ../../boot.php:949
#: ../../addon.old/communityhome/communityhome.php:28
#: ../../addon.old/communityhome/communityhome.php:34
#: ../../addon.old/communityhome/twillingham/communityhome.php:28
#: ../../addon.old/communityhome/twillingham/communityhome.php:34
msgid "Login"
msgstr "Вход"
#: ../../addon/communityhome/communityhome.php:29
#: ../../addon/communityhome/twillingham/communityhome.php:29
#: ../../addon.old/communityhome/communityhome.php:29
#: ../../addon.old/communityhome/twillingham/communityhome.php:29
msgid "OpenID"
msgstr "OpenID"
#: ../../addon/communityhome/communityhome.php:38
#: ../../addon/communityhome/twillingham/communityhome.php:38
#: ../../addon.old/communityhome/communityhome.php:38
#: ../../addon.old/communityhome/twillingham/communityhome.php:38
msgid "Latest users"
msgstr ""
#: ../../addon/communityhome/communityhome.php:81
#: ../../addon/communityhome/twillingham/communityhome.php:81
#: ../../addon.old/communityhome/communityhome.php:81
#: ../../addon.old/communityhome/twillingham/communityhome.php:81
msgid "Most active users"
msgstr "Самые активные пользователи"
#: ../../addon/communityhome/communityhome.php:98
#: ../../addon.old/communityhome/communityhome.php:98
msgid "Latest photos"
msgstr ""
#: ../../addon/communityhome/communityhome.php:133
#: ../../addon.old/communityhome/communityhome.php:133
msgid "Latest likes"
msgstr ""
#: ../../addon/communityhome/communityhome.php:155
#: ../../view/theme/diabook/theme.php:456 ../../include/text.php:1440
#: ../../include/conversation.php:117 ../../include/conversation.php:245
#: ../../addon.old/communityhome/communityhome.php:155
msgid "event"
msgstr "мероприятие"
#: ../../addon/dav/common/wdcal_backend.inc.php:92
#: ../../addon/dav/common/wdcal_backend.inc.php:166
#: ../../addon/dav/common/wdcal_backend.inc.php:178
#: ../../addon/dav/common/wdcal_backend.inc.php:206
#: ../../addon/dav/common/wdcal_backend.inc.php:214
#: ../../addon/dav/common/wdcal_backend.inc.php:229
#: ../../addon.old/dav/common/wdcal_backend.inc.php:92
#: ../../addon.old/dav/common/wdcal_backend.inc.php:166
#: ../../addon.old/dav/common/wdcal_backend.inc.php:178
#: ../../addon.old/dav/common/wdcal_backend.inc.php:206
#: ../../addon.old/dav/common/wdcal_backend.inc.php:214
#: ../../addon.old/dav/common/wdcal_backend.inc.php:229
msgid "No access"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:30
#: ../../addon/dav/common/wdcal_edit.inc.php:738
#: ../../addon.old/dav/common/wdcal_edit.inc.php:30
#: ../../addon.old/dav/common/wdcal_edit.inc.php:738
msgid "Could not open component for editing"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:140
#: ../../addon/dav/friendica/layout.fnk.php:143
#: ../../addon/dav/friendica/layout.fnk.php:422
#: ../../addon.old/dav/common/wdcal_edit.inc.php:140
#: ../../addon.old/dav/friendica/layout.fnk.php:143
#: ../../addon.old/dav/friendica/layout.fnk.php:422
msgid "Go back to the calendar"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:144
#: ../../addon.old/dav/common/wdcal_edit.inc.php:144
msgid "Event data"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:146
#: ../../addon/dav/friendica/main.php:239
#: ../../addon.old/dav/common/wdcal_edit.inc.php:146
#: ../../addon.old/dav/friendica/main.php:239
msgid "Calendar"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:163
#: ../../addon.old/dav/common/wdcal_edit.inc.php:163
msgid "Special color"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:169
#: ../../addon.old/dav/common/wdcal_edit.inc.php:169
msgid "Subject"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:173
#: ../../addon.old/dav/common/wdcal_edit.inc.php:173
msgid "Starts"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:178
#: ../../addon.old/dav/common/wdcal_edit.inc.php:178
msgid "Ends"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:185
#: ../../addon.old/dav/common/wdcal_edit.inc.php:185
msgid "Description"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:188
#: ../../addon.old/dav/common/wdcal_edit.inc.php:188
msgid "Recurrence"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:190
#: ../../addon.old/dav/common/wdcal_edit.inc.php:190
msgid "Frequency"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:194
#: ../../include/contact_selectors.php:59
#: ../../addon.old/dav/common/wdcal_edit.inc.php:194
msgid "Daily"
msgstr "Ежедневно"
#: ../../addon/dav/common/wdcal_edit.inc.php:197
#: ../../include/contact_selectors.php:60
#: ../../addon.old/dav/common/wdcal_edit.inc.php:197
msgid "Weekly"
msgstr "Еженедельно"
#: ../../addon/dav/common/wdcal_edit.inc.php:200
#: ../../include/contact_selectors.php:61
#: ../../addon.old/dav/common/wdcal_edit.inc.php:200
msgid "Monthly"
msgstr "Ежемесячно"
#: ../../addon/dav/common/wdcal_edit.inc.php:203
#: ../../addon.old/dav/common/wdcal_edit.inc.php:203
msgid "Yearly"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:214
#: ../../include/datetime.php:288
#: ../../addon.old/dav/common/wdcal_edit.inc.php:214
msgid "days"
msgstr "дней"
#: ../../addon/dav/common/wdcal_edit.inc.php:215
#: ../../include/datetime.php:287
#: ../../addon.old/dav/common/wdcal_edit.inc.php:215
msgid "weeks"
msgstr "недель"
#: ../../addon/dav/common/wdcal_edit.inc.php:216
#: ../../include/datetime.php:286
#: ../../addon.old/dav/common/wdcal_edit.inc.php:216
msgid "months"
msgstr "мес."
#: ../../addon/dav/common/wdcal_edit.inc.php:217
#: ../../include/datetime.php:285
#: ../../addon.old/dav/common/wdcal_edit.inc.php:217
msgid "years"
msgstr "лет"
#: ../../addon/dav/common/wdcal_edit.inc.php:218
#: ../../addon.old/dav/common/wdcal_edit.inc.php:218
msgid "Interval"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:218
#: ../../addon.old/dav/common/wdcal_edit.inc.php:218
msgid "All %select% %time%"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:222
#: ../../addon/dav/common/wdcal_edit.inc.php:260
#: ../../addon/dav/common/wdcal_edit.inc.php:481
#: ../../addon.old/dav/common/wdcal_edit.inc.php:222
#: ../../addon.old/dav/common/wdcal_edit.inc.php:260
#: ../../addon.old/dav/common/wdcal_edit.inc.php:481
msgid "Days"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:231
#: ../../addon/dav/common/wdcal_edit.inc.php:254
#: ../../addon/dav/common/wdcal_edit.inc.php:270
#: ../../addon/dav/common/wdcal_edit.inc.php:293
#: ../../addon/dav/common/wdcal_edit.inc.php:305 ../../include/text.php:922
#: ../../addon.old/dav/common/wdcal_edit.inc.php:231
#: ../../addon.old/dav/common/wdcal_edit.inc.php:254
#: ../../addon.old/dav/common/wdcal_edit.inc.php:270
#: ../../addon.old/dav/common/wdcal_edit.inc.php:293
#: ../../addon.old/dav/common/wdcal_edit.inc.php:305
msgid "Sunday"
msgstr "Воскресенье"
#: ../../addon/dav/common/wdcal_edit.inc.php:235
#: ../../addon/dav/common/wdcal_edit.inc.php:274
#: ../../addon/dav/common/wdcal_edit.inc.php:308 ../../include/text.php:922
#: ../../addon.old/dav/common/wdcal_edit.inc.php:235
#: ../../addon.old/dav/common/wdcal_edit.inc.php:274
#: ../../addon.old/dav/common/wdcal_edit.inc.php:308
msgid "Monday"
msgstr "Понедельник"
#: ../../addon/dav/common/wdcal_edit.inc.php:238
#: ../../addon/dav/common/wdcal_edit.inc.php:277 ../../include/text.php:922
#: ../../addon.old/dav/common/wdcal_edit.inc.php:238
#: ../../addon.old/dav/common/wdcal_edit.inc.php:277
msgid "Tuesday"
msgstr "Вторник"
#: ../../addon/dav/common/wdcal_edit.inc.php:241
#: ../../addon/dav/common/wdcal_edit.inc.php:280 ../../include/text.php:922
#: ../../addon.old/dav/common/wdcal_edit.inc.php:241
#: ../../addon.old/dav/common/wdcal_edit.inc.php:280
msgid "Wednesday"
msgstr "Среда"
#: ../../addon/dav/common/wdcal_edit.inc.php:244
#: ../../addon/dav/common/wdcal_edit.inc.php:283 ../../include/text.php:922
#: ../../addon.old/dav/common/wdcal_edit.inc.php:244
#: ../../addon.old/dav/common/wdcal_edit.inc.php:283
msgid "Thursday"
msgstr "Четверг"
#: ../../addon/dav/common/wdcal_edit.inc.php:247
#: ../../addon/dav/common/wdcal_edit.inc.php:286 ../../include/text.php:922
#: ../../addon.old/dav/common/wdcal_edit.inc.php:247
#: ../../addon.old/dav/common/wdcal_edit.inc.php:286
msgid "Friday"
msgstr "Пятница"
#: ../../addon/dav/common/wdcal_edit.inc.php:250
#: ../../addon/dav/common/wdcal_edit.inc.php:289 ../../include/text.php:922
#: ../../addon.old/dav/common/wdcal_edit.inc.php:250
#: ../../addon.old/dav/common/wdcal_edit.inc.php:289
msgid "Saturday"
msgstr "Суббота"
#: ../../addon/dav/common/wdcal_edit.inc.php:297
#: ../../addon.old/dav/common/wdcal_edit.inc.php:297
msgid "First day of week:"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:350
#: ../../addon/dav/common/wdcal_edit.inc.php:373
#: ../../addon.old/dav/common/wdcal_edit.inc.php:350
#: ../../addon.old/dav/common/wdcal_edit.inc.php:373
msgid "Day of month"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:354
#: ../../addon.old/dav/common/wdcal_edit.inc.php:354
msgid "#num#th of each month"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:357
#: ../../addon.old/dav/common/wdcal_edit.inc.php:357
msgid "#num#th-last of each month"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:360
#: ../../addon.old/dav/common/wdcal_edit.inc.php:360
msgid "#num#th #wkday# of each month"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:363
#: ../../addon.old/dav/common/wdcal_edit.inc.php:363
msgid "#num#th-last #wkday# of each month"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:372
#: ../../addon/dav/friendica/layout.fnk.php:255
#: ../../addon.old/dav/common/wdcal_edit.inc.php:372
#: ../../addon.old/dav/friendica/layout.fnk.php:255
msgid "Month"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:377
#: ../../addon.old/dav/common/wdcal_edit.inc.php:377
msgid "#num#th of the given month"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:380
#: ../../addon.old/dav/common/wdcal_edit.inc.php:380
msgid "#num#th-last of the given month"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:383
#: ../../addon.old/dav/common/wdcal_edit.inc.php:383
msgid "#num#th #wkday# of the given month"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:386
#: ../../addon.old/dav/common/wdcal_edit.inc.php:386
msgid "#num#th-last #wkday# of the given month"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:413
#: ../../addon.old/dav/common/wdcal_edit.inc.php:413
msgid "Repeat until"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:417
#: ../../addon.old/dav/common/wdcal_edit.inc.php:417
msgid "Infinite"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:420
#: ../../addon.old/dav/common/wdcal_edit.inc.php:420
msgid "Until the following date"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:423
#: ../../addon.old/dav/common/wdcal_edit.inc.php:423
msgid "Number of times"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:429
#: ../../addon.old/dav/common/wdcal_edit.inc.php:429
msgid "Exceptions"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:432
#: ../../addon.old/dav/common/wdcal_edit.inc.php:432
msgid "none"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:449
#: ../../addon.old/dav/common/wdcal_edit.inc.php:449
msgid "Notification"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:466
#: ../../addon.old/dav/common/wdcal_edit.inc.php:466
msgid "Notify by"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:469
#: ../../addon.old/dav/common/wdcal_edit.inc.php:469
msgid "E-Mail"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:470
#: ../../addon.old/dav/common/wdcal_edit.inc.php:470
msgid "On Friendica / Display"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:474
#: ../../addon.old/dav/common/wdcal_edit.inc.php:474
msgid "Time"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:478
#: ../../addon.old/dav/common/wdcal_edit.inc.php:478
msgid "Hours"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:479
#: ../../addon.old/dav/common/wdcal_edit.inc.php:479
msgid "Minutes"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:480
#: ../../addon.old/dav/common/wdcal_edit.inc.php:480
msgid "Seconds"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:482
#: ../../addon.old/dav/common/wdcal_edit.inc.php:482
msgid "Weeks"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:485
#: ../../addon.old/dav/common/wdcal_edit.inc.php:485
msgid "before the"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:486
#: ../../addon.old/dav/common/wdcal_edit.inc.php:486
msgid "start of the event"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:487
#: ../../addon.old/dav/common/wdcal_edit.inc.php:487
msgid "end of the event"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:492
#: ../../addon.old/dav/common/wdcal_edit.inc.php:492
msgid "Add a notification"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:687
#: ../../addon.old/dav/common/wdcal_edit.inc.php:687
msgid "The event #name# will start at #date"
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:696
#: ../../addon.old/dav/common/wdcal_edit.inc.php:696
msgid "#name# is about to begin."
msgstr ""
#: ../../addon/dav/common/wdcal_edit.inc.php:769
#: ../../addon.old/dav/common/wdcal_edit.inc.php:769
msgid "Saved"
msgstr ""
#: ../../addon/dav/common/wdcal_configuration.php:148
#: ../../addon.old/dav/common/wdcal_configuration.php:148
msgid "U.S. Time Format (mm/dd/YYYY)"
msgstr ""
#: ../../addon/dav/common/wdcal_configuration.php:243
#: ../../addon.old/dav/common/wdcal_configuration.php:243
msgid "German Time Format (dd.mm.YYYY)"
msgstr ""
#: ../../addon/dav/common/dav_caldav_backend_private.inc.php:39
#: ../../addon.old/dav/common/dav_caldav_backend_private.inc.php:39
msgid "Private Events"
msgstr ""
#: ../../addon/dav/common/dav_carddav_backend_private.inc.php:46
#: ../../addon.old/dav/common/dav_carddav_backend_private.inc.php:46
msgid "Private Addressbooks"
msgstr ""
#: ../../addon/dav/friendica/dav_caldav_backend_virtual_friendica.inc.php:36
#: ../../addon.old/dav/friendica/dav_caldav_backend_virtual_friendica.inc.php:36
msgid "Friendica-Native events"
msgstr ""
#: ../../addon/dav/friendica/dav_carddav_backend_virtual_friendica.inc.php:36
#: ../../addon/dav/friendica/dav_carddav_backend_virtual_friendica.inc.php:59
#: ../../addon.old/dav/friendica/dav_carddav_backend_virtual_friendica.inc.php:36
#: ../../addon.old/dav/friendica/dav_carddav_backend_virtual_friendica.inc.php:59
msgid "Friendica-Contacts"
msgstr ""
#: ../../addon/dav/friendica/dav_carddav_backend_virtual_friendica.inc.php:60
#: ../../addon.old/dav/friendica/dav_carddav_backend_virtual_friendica.inc.php:60
msgid "Your Friendica-Contacts"
msgstr ""
#: ../../addon/dav/friendica/layout.fnk.php:99
#: ../../addon/dav/friendica/layout.fnk.php:136
#: ../../addon.old/dav/friendica/layout.fnk.php:99
#: ../../addon.old/dav/friendica/layout.fnk.php:136
msgid ""
"Something went wrong when trying to import the file. Sorry. Maybe some "
"events were imported anyway."
msgstr ""
#: ../../addon/dav/friendica/layout.fnk.php:131
#: ../../addon.old/dav/friendica/layout.fnk.php:131
msgid "Something went wrong when trying to import the file. Sorry."
msgstr ""
#: ../../addon/dav/friendica/layout.fnk.php:134
#: ../../addon.old/dav/friendica/layout.fnk.php:134
msgid "The ICS-File has been imported."
msgstr ""
#: ../../addon/dav/friendica/layout.fnk.php:138
#: ../../addon.old/dav/friendica/layout.fnk.php:138
msgid "No file was uploaded."
msgstr ""
#: ../../addon/dav/friendica/layout.fnk.php:147
#: ../../addon.old/dav/friendica/layout.fnk.php:147
msgid "Import a ICS-file"
msgstr ""
#: ../../addon/dav/friendica/layout.fnk.php:150
#: ../../addon.old/dav/friendica/layout.fnk.php:150
msgid "ICS-File"
msgstr ""
#: ../../addon/dav/friendica/layout.fnk.php:151
#: ../../addon.old/dav/friendica/layout.fnk.php:151
msgid "Overwrite all #num# existing events"
msgstr ""
#: ../../addon/dav/friendica/layout.fnk.php:228
#: ../../addon.old/dav/friendica/layout.fnk.php:228
msgid "New event"
msgstr ""
#: ../../addon/dav/friendica/layout.fnk.php:232
#: ../../addon.old/dav/friendica/layout.fnk.php:232
msgid "Today"
msgstr ""
#: ../../addon/dav/friendica/layout.fnk.php:241
#: ../../addon.old/dav/friendica/layout.fnk.php:241
msgid "Day"
msgstr ""
#: ../../addon/dav/friendica/layout.fnk.php:248
#: ../../addon.old/dav/friendica/layout.fnk.php:248
msgid "Week"
msgstr ""
#: ../../addon/dav/friendica/layout.fnk.php:260
#: ../../addon.old/dav/friendica/layout.fnk.php:260
msgid "Reload"
msgstr ""
#: ../../addon/dav/friendica/layout.fnk.php:271
#: ../../addon.old/dav/friendica/layout.fnk.php:271
msgid "Date"
msgstr ""
#: ../../addon/dav/friendica/layout.fnk.php:313
#: ../../addon.old/dav/friendica/layout.fnk.php:313
msgid "Error"
msgstr ""
#: ../../addon/dav/friendica/layout.fnk.php:380
#: ../../addon.old/dav/friendica/layout.fnk.php:380
msgid "The calendar has been updated."
msgstr ""
#: ../../addon/dav/friendica/layout.fnk.php:393
#: ../../addon.old/dav/friendica/layout.fnk.php:393
msgid "The new calendar has been created."
msgstr ""
#: ../../addon/dav/friendica/layout.fnk.php:417
#: ../../addon.old/dav/friendica/layout.fnk.php:417
msgid "The calendar has been deleted."
msgstr ""
#: ../../addon/dav/friendica/layout.fnk.php:424
#: ../../addon.old/dav/friendica/layout.fnk.php:424
msgid "Calendar Settings"
msgstr ""
#: ../../addon/dav/friendica/layout.fnk.php:430
#: ../../addon.old/dav/friendica/layout.fnk.php:430
msgid "Date format"
msgstr ""
#: ../../addon/dav/friendica/layout.fnk.php:439
#: ../../addon.old/dav/friendica/layout.fnk.php:439
msgid "Time zone"
msgstr ""
#: ../../addon/dav/friendica/layout.fnk.php:445
#: ../../addon.old/dav/friendica/layout.fnk.php:445
msgid "Calendars"
msgstr ""
#: ../../addon/dav/friendica/layout.fnk.php:487
#: ../../addon.old/dav/friendica/layout.fnk.php:487
msgid "Create a new calendar"
msgstr ""
#: ../../addon/dav/friendica/layout.fnk.php:496
#: ../../addon.old/dav/friendica/layout.fnk.php:496
msgid "Limitations"
msgstr ""
#: ../../addon/dav/friendica/layout.fnk.php:500
#: ../../addon/libravatar/libravatar.php:82
#: ../../addon.old/dav/friendica/layout.fnk.php:500
#: ../../addon.old/libravatar/libravatar.php:82
msgid "Warning"
msgstr ""
#: ../../addon/dav/friendica/layout.fnk.php:504
#: ../../addon.old/dav/friendica/layout.fnk.php:504
msgid "Synchronization (iPhone, Thunderbird Lightning, Android, ...)"
msgstr ""
#: ../../addon/dav/friendica/layout.fnk.php:511
#: ../../addon.old/dav/friendica/layout.fnk.php:511
msgid "Synchronizing this calendar with the iPhone"
msgstr ""
#: ../../addon/dav/friendica/layout.fnk.php:522
#: ../../addon.old/dav/friendica/layout.fnk.php:522
msgid "Synchronizing your Friendica-Contacts with the iPhone"
msgstr ""
#: ../../addon/dav/friendica/main.php:202
#: ../../addon.old/dav/friendica/main.php:202
msgid ""
"The current version of this plugin has not been set up correctly. Please "
"contact the system administrator of your installation of friendica to fix "
"this."
msgstr ""
#: ../../addon/dav/friendica/main.php:242
#: ../../addon.old/dav/friendica/main.php:242
msgid "Extended calendar with CalDAV-support"
msgstr ""
#: ../../addon/dav/friendica/main.php:279
#: ../../addon/dav/friendica/main.php:280 ../../include/delivery.php:464
#: ../../include/enotify.php:28 ../../include/notifier.php:778
#: ../../addon.old/dav/friendica/main.php:279
#: ../../addon.old/dav/friendica/main.php:280
msgid "noreply"
msgstr "без ответа"
#: ../../addon/dav/friendica/main.php:282
#: ../../addon.old/dav/friendica/main.php:282
msgid "Notification: "
msgstr ""
#: ../../addon/dav/friendica/main.php:309
#: ../../addon.old/dav/friendica/main.php:309
msgid "The database tables have been installed."
msgstr ""
#: ../../addon/dav/friendica/main.php:310
#: ../../addon.old/dav/friendica/main.php:310
msgid "An error occurred during the installation."
msgstr ""
#: ../../addon/dav/friendica/main.php:316
#: ../../addon.old/dav/friendica/main.php:316
msgid "The database tables have been updated."
msgstr ""
#: ../../addon/dav/friendica/main.php:317
#: ../../addon.old/dav/friendica/main.php:317
msgid "An error occurred during the update."
msgstr ""
#: ../../addon/dav/friendica/main.php:333
#: ../../addon.old/dav/friendica/main.php:333
msgid "No system-wide settings yet."
msgstr ""
#: ../../addon/dav/friendica/main.php:336
#: ../../addon.old/dav/friendica/main.php:336
msgid "Database status"
msgstr ""
#: ../../addon/dav/friendica/main.php:339
#: ../../addon.old/dav/friendica/main.php:339
msgid "Installed"
msgstr ""
#: ../../addon/dav/friendica/main.php:343
#: ../../addon.old/dav/friendica/main.php:343
msgid "Upgrade needed"
msgstr ""
#: ../../addon/dav/friendica/main.php:343
#: ../../addon.old/dav/friendica/main.php:343
msgid ""
"Please back up all calendar data (the tables beginning with dav_*) before "
"proceeding. While all calendar events <i>should</i> be converted to the new "
"database structure, it's always safe to have a backup. Below, you can have a"
" look at the database-queries that will be made when pressing the "
"'update'-button."
msgstr ""
#: ../../addon/dav/friendica/main.php:343
#: ../../addon.old/dav/friendica/main.php:343
msgid "Upgrade"
msgstr ""
#: ../../addon/dav/friendica/main.php:346
#: ../../addon.old/dav/friendica/main.php:346
msgid "Not installed"
msgstr ""
#: ../../addon/dav/friendica/main.php:346
#: ../../addon.old/dav/friendica/main.php:346
msgid "Install"
msgstr ""
#: ../../addon/dav/friendica/main.php:350
#: ../../addon.old/dav/friendica/main.php:350
msgid "Unknown"
msgstr ""
#: ../../addon/dav/friendica/main.php:350
#: ../../addon.old/dav/friendica/main.php:350
msgid ""
"Something really went wrong. I cannot recover from this state automatically,"
" sorry. Please go to the database backend, back up the data, and delete all "
"tables beginning with 'dav_' manually. Afterwards, this installation routine"
" should be able to reinitialize the tables automatically."
msgstr ""
#: ../../addon/dav/friendica/main.php:355
#: ../../addon.old/dav/friendica/main.php:355
msgid "Troubleshooting"
msgstr ""
#: ../../addon/dav/friendica/main.php:356
#: ../../addon.old/dav/friendica/main.php:356
msgid "Manual creation of the database tables:"
msgstr ""
#: ../../addon/dav/friendica/main.php:357
#: ../../addon.old/dav/friendica/main.php:357
msgid "Show SQL-statements"
msgstr ""
#: ../../addon/dav/friendica/calendar.friendica.fnk.php:206
#: ../../addon.old/dav/friendica/calendar.friendica.fnk.php:206
msgid "Private Calendar"
msgstr ""
#: ../../addon/dav/friendica/calendar.friendica.fnk.php:207
#: ../../addon.old/dav/friendica/calendar.friendica.fnk.php:207
msgid "Friendica Events: Mine"
msgstr ""
#: ../../addon/dav/friendica/calendar.friendica.fnk.php:208
#: ../../addon.old/dav/friendica/calendar.friendica.fnk.php:208
msgid "Friendica Events: Contacts"
msgstr ""
#: ../../addon/dav/friendica/calendar.friendica.fnk.php:248
#: ../../addon.old/dav/friendica/calendar.friendica.fnk.php:248
msgid "Private Addresses"
msgstr ""
#: ../../addon/dav/friendica/calendar.friendica.fnk.php:249
#: ../../addon.old/dav/friendica/calendar.friendica.fnk.php:249
msgid "Friendica Contacts"
msgstr ""
#: ../../addon/uhremotestorage/uhremotestorage.php:84
#: ../../addon.old/uhremotestorage/uhremotestorage.php:84
#, php-format
msgid ""
"Allow to use your friendica id (%s) to connecto to external unhosted-enabled"
" storage (like ownCloud). See <a "
"href=\"http://www.w3.org/community/unhosted/wiki/RemoteStorage#WebFinger\">RemoteStorage"
" WebFinger</a>"
msgstr ""
#: ../../addon/uhremotestorage/uhremotestorage.php:85
#: ../../addon.old/uhremotestorage/uhremotestorage.php:85
msgid "Template URL (with {category})"
msgstr ""
#: ../../addon/uhremotestorage/uhremotestorage.php:86
#: ../../addon.old/uhremotestorage/uhremotestorage.php:86
msgid "OAuth end-point"
msgstr ""
#: ../../addon/uhremotestorage/uhremotestorage.php:87
#: ../../addon.old/uhremotestorage/uhremotestorage.php:87
msgid "Api"
msgstr "Api"
#: ../../addon/membersince/membersince.php:18
#: ../../addon.old/membersince/membersince.php:18
msgid "Member since:"
msgstr "Зарегистрирован с:"
#: ../../addon/tictac/tictac.php:20 ../../addon.old/tictac/tictac.php:20
msgid "Three Dimensional Tic-Tac-Toe"
msgstr "Трехмерные крестики-нолики"
#: ../../addon/tictac/tictac.php:53 ../../addon.old/tictac/tictac.php:53
msgid "3D Tic-Tac-Toe"
msgstr "3D Tic-Tac-Toe"
#: ../../addon/tictac/tictac.php:58 ../../addon.old/tictac/tictac.php:58
msgid "New game"
msgstr "Новая игра"
#: ../../addon/tictac/tictac.php:59 ../../addon.old/tictac/tictac.php:59
msgid "New game with handicap"
msgstr "Новая игра с гандикапом"
#: ../../addon/tictac/tictac.php:60 ../../addon.old/tictac/tictac.php:60
msgid ""
"Three dimensional tic-tac-toe is just like the traditional game except that "
"it is played on multiple levels simultaneously. "
msgstr "Трехмерная игра в крестики-нолики точно такая же, как традиционная игра, за исключением того, что она играется на нескольких уровнях одновременно."
#: ../../addon/tictac/tictac.php:61 ../../addon.old/tictac/tictac.php:61
msgid ""
"In this case there are three levels. You win by getting three in a row on "
"any level, as well as up, down, and diagonally across the different levels."
msgstr "В этом случае существуют три уровня. Вы выиграете, поставив три в ряд на любом уровне, а также вверх, вниз и по диагонали на разных уровнях."
#: ../../addon/tictac/tictac.php:63 ../../addon.old/tictac/tictac.php:63
msgid ""
"The handicap game disables the center position on the middle level because "
"the player claiming this square often has an unfair advantage."
msgstr "Игра с гандикапом отключает центральное положение на среднем уровне, потому что игрок, занимающий эту площадь, часто имеет несправедливое преимущество."
#: ../../addon/tictac/tictac.php:182 ../../addon.old/tictac/tictac.php:182
msgid "You go first..."
msgstr "Вы хотите первым..."
#: ../../addon/tictac/tictac.php:187 ../../addon.old/tictac/tictac.php:187
msgid "I'm going first this time..."
msgstr "Я буду первым на этот раз..."
#: ../../addon/tictac/tictac.php:193 ../../addon.old/tictac/tictac.php:193
msgid "You won!"
msgstr "Вы выиграли!"
#: ../../addon/tictac/tictac.php:199 ../../addon/tictac/tictac.php:224
#: ../../addon.old/tictac/tictac.php:199 ../../addon.old/tictac/tictac.php:224
msgid "\"Cat\" game!"
msgstr "Игра \"Кошка\"!"
#: ../../addon/tictac/tictac.php:222 ../../addon.old/tictac/tictac.php:222
msgid "I won!"
msgstr "Я выиграл!"
#: ../../addon/randplace/randplace.php:169
#: ../../addon.old/randplace/randplace.php:169
msgid "Randplace Settings"
msgstr "Настройки Случайного места"
#: ../../addon/randplace/randplace.php:171
#: ../../addon.old/randplace/randplace.php:171
msgid "Enable Randplace Plugin"
msgstr "Включить Randplace плагин"
#: ../../addon/dwpost/dwpost.php:39 ../../addon.old/dwpost/dwpost.php:39
msgid "Post to Dreamwidth"
msgstr ""
#: ../../addon/dwpost/dwpost.php:70 ../../addon.old/dwpost/dwpost.php:70
msgid "Dreamwidth Post Settings"
msgstr "Dreamwidth настройки сообщений"
#: ../../addon/dwpost/dwpost.php:72 ../../addon.old/dwpost/dwpost.php:72
msgid "Enable dreamwidth Post Plugin"
msgstr "Включить dreamwidth плагин сообщений"
#: ../../addon/dwpost/dwpost.php:77 ../../addon.old/dwpost/dwpost.php:77
msgid "dreamwidth username"
msgstr "dreamwidth имя пользователя"
#: ../../addon/dwpost/dwpost.php:82 ../../addon.old/dwpost/dwpost.php:82
msgid "dreamwidth password"
msgstr "dreamwidth пароль"
#: ../../addon/dwpost/dwpost.php:87 ../../addon.old/dwpost/dwpost.php:87
msgid "Post to dreamwidth by default"
msgstr ""
#: ../../addon/remote_permissions/remote_permissions.php:44
msgid "Remote Permissions Settings"
msgstr ""
#: ../../addon/remote_permissions/remote_permissions.php:45
msgid ""
"Allow recipients of your private posts to see the other recipients of the "
"posts"
msgstr ""
#: ../../addon/remote_permissions/remote_permissions.php:57
msgid "Remote Permissions settings updated."
msgstr ""
#: ../../addon/remote_permissions/remote_permissions.php:177
msgid "Visible to"
msgstr ""
#: ../../addon/remote_permissions/remote_permissions.php:177
msgid "may only be a partial list"
msgstr ""
#: ../../addon/remote_permissions/remote_permissions.php:196
msgid "Global"
msgstr ""
#: ../../addon/remote_permissions/remote_permissions.php:196
msgid "The posts of every user on this server show the post recipients"
msgstr ""
#: ../../addon/remote_permissions/remote_permissions.php:197
msgid "Individual"
msgstr ""
#: ../../addon/remote_permissions/remote_permissions.php:197
msgid "Each user chooses whether his/her posts show the post recipients"
msgstr ""
#: ../../addon/startpage/startpage.php:83
#: ../../addon.old/startpage/startpage.php:83
msgid "Startpage Settings"
msgstr ""
#: ../../addon/startpage/startpage.php:85
#: ../../addon.old/startpage/startpage.php:85
msgid "Home page to load after login - leave blank for profile wall"
msgstr ""
#: ../../addon/startpage/startpage.php:88
#: ../../addon.old/startpage/startpage.php:88
msgid "Examples: &quot;network&quot; or &quot;notifications/system&quot;"
msgstr ""
#: ../../addon/geonames/geonames.php:143
#: ../../addon.old/geonames/geonames.php:143
msgid "Geonames settings updated."
msgstr ""
#: ../../addon/geonames/geonames.php:179
#: ../../addon.old/geonames/geonames.php:179
msgid "Geonames Settings"
msgstr ""
#: ../../addon/geonames/geonames.php:181
#: ../../addon.old/geonames/geonames.php:181
msgid "Enable Geonames Plugin"
msgstr "Включить Geonames плагин"
#: ../../addon/public_server/public_server.php:126
#: ../../addon/testdrive/testdrive.php:94
#: ../../addon.old/public_server/public_server.php:126
#: ../../addon.old/testdrive/testdrive.php:94
#, php-format
msgid "Your account on %s will expire in a few days."
msgstr ""
#: ../../addon/public_server/public_server.php:127
#: ../../addon.old/public_server/public_server.php:127
msgid "Your Friendica account is about to expire."
msgstr ""
#: ../../addon/public_server/public_server.php:128
#: ../../addon.old/public_server/public_server.php:128
#, php-format
msgid ""
"Hi %1$s,\n"
"\n"
"Your account on %2$s will expire in less than five days. You may keep your account by logging in at least once every 30 days"
msgstr ""
#: ../../addon/js_upload/js_upload.php:43
#: ../../addon.old/js_upload/js_upload.php:43
msgid "Upload a file"
msgstr "Загрузить файл"
#: ../../addon/js_upload/js_upload.php:44
#: ../../addon.old/js_upload/js_upload.php:44
msgid "Drop files here to upload"
msgstr "Перетащите файлы сюда для загрузки"
#: ../../addon/js_upload/js_upload.php:46
#: ../../addon.old/js_upload/js_upload.php:46
msgid "Failed"
msgstr "Ошибка"
#: ../../addon/js_upload/js_upload.php:303
#: ../../addon.old/js_upload/js_upload.php:297
msgid "No files were uploaded."
msgstr "Нет загруженных файлов."
#: ../../addon/js_upload/js_upload.php:309
#: ../../addon.old/js_upload/js_upload.php:303
msgid "Uploaded file is empty"
msgstr "Загруженный файл пустой"
#: ../../addon/js_upload/js_upload.php:332
#: ../../addon.old/js_upload/js_upload.php:326
msgid "File has an invalid extension, it should be one of "
msgstr "Файл имеет недопустимое расширение, оно должно быть одним из следующих "
#: ../../addon/js_upload/js_upload.php:343
#: ../../addon.old/js_upload/js_upload.php:337
msgid "Upload was cancelled, or server error encountered"
msgstr "Загрузка была отменена, или произошла ошибка сервера"
#: ../../addon/forumlist/forumlist.php:63
#: ../../addon.old/forumlist/forumlist.php:63
msgid "show/hide"
msgstr ""
#: ../../addon/forumlist/forumlist.php:77
#: ../../addon.old/forumlist/forumlist.php:77
msgid "No forum subscriptions"
msgstr ""
#: ../../addon/forumlist/forumlist.php:131
#: ../../addon.old/forumlist/forumlist.php:131
msgid "Forumlist settings updated."
msgstr ""
#: ../../addon/forumlist/forumlist.php:159
#: ../../addon.old/forumlist/forumlist.php:159
msgid "Forumlist Settings"
msgstr ""
#: ../../addon/forumlist/forumlist.php:161
#: ../../addon.old/forumlist/forumlist.php:161
msgid "Randomise forum list"
msgstr ""
#: ../../addon/forumlist/forumlist.php:164
#: ../../addon.old/forumlist/forumlist.php:164
msgid "Show forums on profile page"
msgstr ""
#: ../../addon/forumlist/forumlist.php:167
#: ../../addon.old/forumlist/forumlist.php:167
msgid "Show forums on network page"
msgstr ""
#: ../../addon/impressum/impressum.php:37
#: ../../addon.old/impressum/impressum.php:37
msgid "Impressum"
msgstr "Impressum"
#: ../../addon/impressum/impressum.php:50
#: ../../addon/impressum/impressum.php:52
#: ../../addon/impressum/impressum.php:84
#: ../../addon.old/impressum/impressum.php:50
#: ../../addon.old/impressum/impressum.php:52
#: ../../addon.old/impressum/impressum.php:84
msgid "Site Owner"
msgstr "Владелец сайта"
#: ../../addon/impressum/impressum.php:50
#: ../../addon/impressum/impressum.php:88
#: ../../addon.old/impressum/impressum.php:50
#: ../../addon.old/impressum/impressum.php:88
msgid "Email Address"
msgstr "Адрес электронной почты"
#: ../../addon/impressum/impressum.php:55
#: ../../addon/impressum/impressum.php:86
#: ../../addon.old/impressum/impressum.php:55
#: ../../addon.old/impressum/impressum.php:86
msgid "Postal Address"
msgstr "Почтовый адрес"
#: ../../addon/impressum/impressum.php:61
#: ../../addon.old/impressum/impressum.php:61
msgid ""
"The impressum addon needs to be configured!<br />Please add at least the "
"<tt>owner</tt> variable to your config file. For other variables please "
"refer to the README file of the addon."
msgstr "Расширение Impressum должно быть настроено!<br /> Пожалуйста, добавьте по крайней мере переменную <tt>владельца</tt> в ваш конфигурационный файл. Описание других переменных можно найти в файле README для расширения."
#: ../../addon/impressum/impressum.php:84
#: ../../addon.old/impressum/impressum.php:84
msgid "The page operators name."
msgstr ""
#: ../../addon/impressum/impressum.php:85
#: ../../addon.old/impressum/impressum.php:85
msgid "Site Owners Profile"
msgstr "Профиль владельцев сайта"
#: ../../addon/impressum/impressum.php:85
#: ../../addon.old/impressum/impressum.php:85
msgid "Profile address of the operator."
msgstr ""
#: ../../addon/impressum/impressum.php:86
#: ../../addon.old/impressum/impressum.php:86
msgid "How to contact the operator via snail mail. You can use BBCode here."
msgstr ""
#: ../../addon/impressum/impressum.php:87
#: ../../addon.old/impressum/impressum.php:87
msgid "Notes"
msgstr "Заметки"
#: ../../addon/impressum/impressum.php:87
#: ../../addon.old/impressum/impressum.php:87
msgid ""
"Additional notes that are displayed beneath the contact information. You can"
" use BBCode here."
msgstr ""
#: ../../addon/impressum/impressum.php:88
#: ../../addon.old/impressum/impressum.php:88
msgid "How to contact the operator via email. (will be displayed obfuscated)"
msgstr ""
#: ../../addon/impressum/impressum.php:89
#: ../../addon.old/impressum/impressum.php:89
msgid "Footer note"
msgstr ""
#: ../../addon/impressum/impressum.php:89
#: ../../addon.old/impressum/impressum.php:89
msgid "Text for the footer. You can use BBCode here."
msgstr ""
#: ../../addon/buglink/buglink.php:15 ../../addon.old/buglink/buglink.php:15
msgid "Report Bug"
msgstr "Сообщить об ошибке"
#: ../../addon/notimeline/notimeline.php:32
#: ../../addon.old/notimeline/notimeline.php:32
msgid "No Timeline settings updated."
msgstr ""
#: ../../addon/notimeline/notimeline.php:56
#: ../../addon.old/notimeline/notimeline.php:56
msgid "No Timeline Settings"
msgstr ""
#: ../../addon/notimeline/notimeline.php:58
#: ../../addon.old/notimeline/notimeline.php:58
msgid "Disable Archive selector on profile wall"
msgstr ""
#: ../../addon/blockem/blockem.php:51 ../../addon.old/blockem/blockem.php:51
msgid "\"Blockem\" Settings"
msgstr "\"Blockem\" настройки"
#: ../../addon/blockem/blockem.php:53 ../../addon.old/blockem/blockem.php:53
msgid "Comma separated profile URLS to block"
msgstr "URLS, которые заблокировать (список через запятую)"
#: ../../addon/blockem/blockem.php:70 ../../addon.old/blockem/blockem.php:70
msgid "BLOCKEM Settings saved."
msgstr "BLOCKEM-Настройки сохранены."
#: ../../addon/blockem/blockem.php:105 ../../addon.old/blockem/blockem.php:105
#, php-format
msgid "Blocked %s - Click to open/close"
msgstr "Заблокированные %s - Нажмите, чтобы открыть/закрыть"
#: ../../addon/blockem/blockem.php:160 ../../addon.old/blockem/blockem.php:160
msgid "Unblock Author"
msgstr ""
#: ../../addon/blockem/blockem.php:162 ../../addon.old/blockem/blockem.php:162
msgid "Block Author"
msgstr "Блокировать Автора"
#: ../../addon/blockem/blockem.php:194 ../../addon.old/blockem/blockem.php:194
msgid "blockem settings updated"
msgstr "\"Blockem\" настройки обновлены"
#: ../../addon/qcomment/qcomment.php:51
#: ../../addon.old/qcomment/qcomment.php:51
msgid ":-)"
msgstr ":-)"
#: ../../addon/qcomment/qcomment.php:51
#: ../../addon.old/qcomment/qcomment.php:51
msgid ":-("
msgstr ":-("
#: ../../addon/qcomment/qcomment.php:51
#: ../../addon.old/qcomment/qcomment.php:51
msgid "lol"
msgstr "lol"
#: ../../addon/qcomment/qcomment.php:54
#: ../../addon.old/qcomment/qcomment.php:54
msgid "Quick Comment Settings"
msgstr ""
#: ../../addon/qcomment/qcomment.php:56
#: ../../addon.old/qcomment/qcomment.php:56
msgid ""
"Quick comments are found near comment boxes, sometimes hidden. Click them to"
" provide simple replies."
msgstr ""
#: ../../addon/qcomment/qcomment.php:57
#: ../../addon.old/qcomment/qcomment.php:57
msgid "Enter quick comments, one per line"
msgstr "Введите короткие комментарии, по одному в строке:"
#: ../../addon/qcomment/qcomment.php:75
#: ../../addon.old/qcomment/qcomment.php:75
msgid "Quick Comment settings saved."
msgstr ""
#: ../../addon/openstreetmap/openstreetmap.php:71
#: ../../addon.old/openstreetmap/openstreetmap.php:71
msgid "Tile Server URL"
msgstr ""
#: ../../addon/openstreetmap/openstreetmap.php:71
#: ../../addon.old/openstreetmap/openstreetmap.php:71
msgid ""
"A list of <a href=\"http://wiki.openstreetmap.org/wiki/TMS\" "
"target=\"_blank\">public tile servers</a>"
msgstr "Список <a href=\"http://wiki.openstreetmap.org/wiki/TMS\" target=\"_blank\">общедоступных серверов</a>"
#: ../../addon/openstreetmap/openstreetmap.php:72
#: ../../addon.old/openstreetmap/openstreetmap.php:72
msgid "Default zoom"
msgstr "zoom по умолчанию"
#: ../../addon/openstreetmap/openstreetmap.php:72
#: ../../addon.old/openstreetmap/openstreetmap.php:72
msgid "The default zoom level. (1:world, 18:highest)"
msgstr ""
#: ../../addon/group_text/group_text.php:46
#: ../../addon/editplain/editplain.php:46
#: ../../addon.old/group_text/group_text.php:46
#: ../../addon.old/editplain/editplain.php:46
msgid "Editplain settings updated."
msgstr "Editplain настройки обновлены."
#: ../../addon/group_text/group_text.php:76
#: ../../addon.old/group_text/group_text.php:76
msgid "Group Text"
msgstr ""
#: ../../addon/group_text/group_text.php:78
#: ../../addon.old/group_text/group_text.php:78
msgid "Use a text only (non-image) group selector in the \"group edit\" menu"
msgstr ""
#: ../../addon/libravatar/libravatar.php:14
#: ../../addon.old/libravatar/libravatar.php:14
msgid "Could NOT install Libravatar successfully.<br>It requires PHP >= 5.3"
msgstr ""
#: ../../addon/libravatar/libravatar.php:73
#: ../../addon/gravatar/gravatar.php:71
#: ../../addon.old/libravatar/libravatar.php:73
#: ../../addon.old/gravatar/gravatar.php:71
msgid "generic profile image"
msgstr ""
#: ../../addon/libravatar/libravatar.php:74
#: ../../addon/gravatar/gravatar.php:72
#: ../../addon.old/libravatar/libravatar.php:74
#: ../../addon.old/gravatar/gravatar.php:72
msgid "random geometric pattern"
msgstr ""
#: ../../addon/libravatar/libravatar.php:75
#: ../../addon/gravatar/gravatar.php:73
#: ../../addon.old/libravatar/libravatar.php:75
#: ../../addon.old/gravatar/gravatar.php:73
msgid "monster face"
msgstr ""
#: ../../addon/libravatar/libravatar.php:76
#: ../../addon/gravatar/gravatar.php:74
#: ../../addon.old/libravatar/libravatar.php:76
#: ../../addon.old/gravatar/gravatar.php:74
msgid "computer generated face"
msgstr ""
#: ../../addon/libravatar/libravatar.php:77
#: ../../addon/gravatar/gravatar.php:75
#: ../../addon.old/libravatar/libravatar.php:77
#: ../../addon.old/gravatar/gravatar.php:75
msgid "retro arcade style face"
msgstr ""
#: ../../addon/libravatar/libravatar.php:83
#: ../../addon.old/libravatar/libravatar.php:83
#, php-format
msgid "Your PHP version %s is lower than the required PHP >= 5.3."
msgstr ""
#: ../../addon/libravatar/libravatar.php:84
#: ../../addon.old/libravatar/libravatar.php:84
msgid "This addon is not functional on your server."
msgstr ""
#: ../../addon/libravatar/libravatar.php:93
#: ../../addon/gravatar/gravatar.php:89
#: ../../addon.old/libravatar/libravatar.php:93
#: ../../addon.old/gravatar/gravatar.php:89
msgid "Information"
msgstr ""
#: ../../addon/libravatar/libravatar.php:93
#: ../../addon.old/libravatar/libravatar.php:93
msgid ""
"Gravatar addon is installed. Please disable the Gravatar addon.<br>The "
"Libravatar addon will fall back to Gravatar if nothing was found at "
"Libravatar."
msgstr ""
#: ../../addon/libravatar/libravatar.php:100
#: ../../addon/gravatar/gravatar.php:96
#: ../../addon.old/libravatar/libravatar.php:100
#: ../../addon.old/gravatar/gravatar.php:96
msgid "Default avatar image"
msgstr ""
#: ../../addon/libravatar/libravatar.php:100
#: ../../addon.old/libravatar/libravatar.php:100
msgid "Select default avatar image if none was found. See README"
msgstr ""
#: ../../addon/libravatar/libravatar.php:112
#: ../../addon.old/libravatar/libravatar.php:112
msgid "Libravatar settings updated."
msgstr ""
#: ../../addon/libertree/libertree.php:36
#: ../../addon.old/libertree/libertree.php:36
msgid "Post to libertree"
msgstr ""
#: ../../addon/libertree/libertree.php:67
#: ../../addon.old/libertree/libertree.php:67
msgid "libertree Post Settings"
msgstr ""
#: ../../addon/libertree/libertree.php:69
#: ../../addon.old/libertree/libertree.php:69
msgid "Enable Libertree Post Plugin"
msgstr ""
#: ../../addon/libertree/libertree.php:74
#: ../../addon.old/libertree/libertree.php:74
msgid "Libertree API token"
msgstr ""
#: ../../addon/libertree/libertree.php:79
#: ../../addon.old/libertree/libertree.php:79
msgid "Libertree site URL"
msgstr ""
#: ../../addon/libertree/libertree.php:84
#: ../../addon.old/libertree/libertree.php:84
msgid "Post to Libertree by default"
msgstr ""
#: ../../addon/altpager/altpager.php:46
#: ../../addon.old/altpager/altpager.php:46
msgid "Altpager settings updated."
msgstr ""
#: ../../addon/altpager/altpager.php:79
#: ../../addon.old/altpager/altpager.php:79
msgid "Alternate Pagination Setting"
msgstr ""
#: ../../addon/altpager/altpager.php:81
#: ../../addon.old/altpager/altpager.php:81
msgid "Use links to \"newer\" and \"older\" pages in place of page numbers?"
msgstr ""
#: ../../addon/mathjax/mathjax.php:37 ../../addon.old/mathjax/mathjax.php:37
msgid ""
"The MathJax addon renders mathematical formulae written using the LaTeX "
"syntax surrounded by the usual $$ or an eqnarray block in the postings of "
"your wall,network tab and private mail."
msgstr ""
#: ../../addon/mathjax/mathjax.php:38 ../../addon.old/mathjax/mathjax.php:38
msgid "Use the MathJax renderer"
msgstr ""
#: ../../addon/mathjax/mathjax.php:74 ../../addon.old/mathjax/mathjax.php:74
msgid "MathJax Base URL"
msgstr ""
#: ../../addon/mathjax/mathjax.php:74 ../../addon.old/mathjax/mathjax.php:74
msgid ""
"The URL for the javascript file that should be included to use MathJax. Can "
"be either the MathJax CDN or another installation of MathJax."
msgstr ""
#: ../../addon/editplain/editplain.php:76
#: ../../addon.old/editplain/editplain.php:76
msgid "Editplain Settings"
msgstr "Editplain настройки"
#: ../../addon/editplain/editplain.php:78
#: ../../addon.old/editplain/editplain.php:78
msgid "Disable richtext status editor"
msgstr "Отключить richtext status editor"
#: ../../addon/gravatar/gravatar.php:89
#: ../../addon.old/gravatar/gravatar.php:89
msgid ""
"Libravatar addon is installed, too. Please disable Libravatar addon or this "
"Gravatar addon.<br>The Libravatar addon will fall back to Gravatar if "
"nothing was found at Libravatar."
msgstr ""
#: ../../addon/gravatar/gravatar.php:96
#: ../../addon.old/gravatar/gravatar.php:96
msgid "Select default avatar image if none was found at Gravatar. See README"
msgstr ""
#: ../../addon/gravatar/gravatar.php:97
#: ../../addon.old/gravatar/gravatar.php:97
msgid "Rating of images"
msgstr ""
#: ../../addon/gravatar/gravatar.php:97
#: ../../addon.old/gravatar/gravatar.php:97
msgid "Select the appropriate avatar rating for your site. See README"
msgstr ""
#: ../../addon/gravatar/gravatar.php:111
#: ../../addon.old/gravatar/gravatar.php:111
msgid "Gravatar settings updated."
msgstr ""
#: ../../addon/testdrive/testdrive.php:95
#: ../../addon.old/testdrive/testdrive.php:95
msgid "Your Friendica test account is about to expire."
msgstr ""
#: ../../addon/testdrive/testdrive.php:96
#: ../../addon.old/testdrive/testdrive.php:96
#, php-format
msgid ""
"Hi %1$s,\n"
"\n"
"Your test account on %2$s will expire in less than five days. We hope you enjoyed this test drive and use this opportunity to find a permanent Friendica website for your integrated social communications. A list of public sites is available at http://dir.friendica.com/siteinfo - and for more information on setting up your own Friendica server please see the Friendica project website at http://friendica.com."
msgstr ""
#: ../../addon/pageheader/pageheader.php:50
#: ../../addon.old/pageheader/pageheader.php:50
msgid "\"pageheader\" Settings"
msgstr ""
#: ../../addon/pageheader/pageheader.php:68
#: ../../addon.old/pageheader/pageheader.php:68
msgid "pageheader Settings saved."
msgstr ""
#: ../../addon/ijpost/ijpost.php:39 ../../addon.old/ijpost/ijpost.php:39
msgid "Post to Insanejournal"
msgstr ""
#: ../../addon/ijpost/ijpost.php:70 ../../addon.old/ijpost/ijpost.php:70
msgid "InsaneJournal Post Settings"
msgstr ""
#: ../../addon/ijpost/ijpost.php:72 ../../addon.old/ijpost/ijpost.php:72
msgid "Enable InsaneJournal Post Plugin"
msgstr "Включить InsaneJournal плагин сообщений"
#: ../../addon/ijpost/ijpost.php:77 ../../addon.old/ijpost/ijpost.php:77
msgid "InsaneJournal username"
msgstr ""
#: ../../addon/ijpost/ijpost.php:82 ../../addon.old/ijpost/ijpost.php:82
msgid "InsaneJournal password"
msgstr ""
#: ../../addon/ijpost/ijpost.php:87 ../../addon.old/ijpost/ijpost.php:87
msgid "Post to InsaneJournal by default"
msgstr ""
#: ../../addon/jappixmini/jappixmini.php:266
#: ../../addon.old/jappixmini/jappixmini.php:266
msgid "Jappix Mini addon settings"
msgstr ""
#: ../../addon/jappixmini/jappixmini.php:268
#: ../../addon.old/jappixmini/jappixmini.php:268
msgid "Activate addon"
msgstr ""
#: ../../addon/jappixmini/jappixmini.php:271
#: ../../addon.old/jappixmini/jappixmini.php:271
msgid ""
"Do <em>not</em> insert the Jappixmini Chat-Widget into the webinterface"
msgstr ""
#: ../../addon/jappixmini/jappixmini.php:274
#: ../../addon.old/jappixmini/jappixmini.php:274
msgid "Jabber username"
msgstr ""
#: ../../addon/jappixmini/jappixmini.php:277
#: ../../addon.old/jappixmini/jappixmini.php:277
msgid "Jabber server"
msgstr ""
#: ../../addon/jappixmini/jappixmini.php:281
#: ../../addon.old/jappixmini/jappixmini.php:281
msgid "Jabber BOSH host"
msgstr ""
#: ../../addon/jappixmini/jappixmini.php:285
#: ../../addon.old/jappixmini/jappixmini.php:285
msgid "Jabber password"
msgstr ""
#: ../../addon/jappixmini/jappixmini.php:290
#: ../../addon.old/jappixmini/jappixmini.php:290
msgid "Encrypt Jabber password with Friendica password (recommended)"
msgstr ""
#: ../../addon/jappixmini/jappixmini.php:293
#: ../../addon.old/jappixmini/jappixmini.php:293
msgid "Friendica password"
msgstr ""
#: ../../addon/jappixmini/jappixmini.php:296
#: ../../addon.old/jappixmini/jappixmini.php:296
msgid "Approve subscription requests from Friendica contacts automatically"
msgstr ""
#: ../../addon/jappixmini/jappixmini.php:299
#: ../../addon.old/jappixmini/jappixmini.php:299
msgid "Subscribe to Friendica contacts automatically"
msgstr ""
#: ../../addon/jappixmini/jappixmini.php:302
#: ../../addon.old/jappixmini/jappixmini.php:302
msgid "Purge internal list of jabber addresses of contacts"
msgstr ""
#: ../../addon/jappixmini/jappixmini.php:308
#: ../../addon.old/jappixmini/jappixmini.php:308
msgid "Add contact"
msgstr ""
#: ../../addon/viewsrc/viewsrc.php:37 ../../addon.old/viewsrc/viewsrc.php:37
msgid "View Source"
msgstr "Просмотр HTML-кода"
#: ../../addon/statusnet/statusnet.php:134
#: ../../addon.old/statusnet/statusnet.php:134
msgid "Post to StatusNet"
msgstr "Отправить на StatusNet"
#: ../../addon/statusnet/statusnet.php:176
#: ../../addon.old/statusnet/statusnet.php:176
msgid ""
"Please contact your site administrator.<br />The provided API URL is not "
"valid."
msgstr "Пожалуйста, обратитесь к администратору сайта. <br /> Предложенный URL API недействителен."
#: ../../addon/statusnet/statusnet.php:204
#: ../../addon.old/statusnet/statusnet.php:204
msgid "We could not contact the StatusNet API with the Path you entered."
msgstr "Мы не смогли связаться с API StatusNet с маршрутом, который вы ввели."
#: ../../addon/statusnet/statusnet.php:232
#: ../../addon.old/statusnet/statusnet.php:232
msgid "StatusNet settings updated."
msgstr "Настройки StatusNet обновлены."
#: ../../addon/statusnet/statusnet.php:257
#: ../../addon.old/statusnet/statusnet.php:257
msgid "StatusNet Posting Settings"
msgstr "Настройка отправки сообщений на StatusNet"
#: ../../addon/statusnet/statusnet.php:271
#: ../../addon.old/statusnet/statusnet.php:271
msgid "Globally Available StatusNet OAuthKeys"
msgstr "Глобально доступные StatusNet OAuthKeys"
#: ../../addon/statusnet/statusnet.php:272
#: ../../addon.old/statusnet/statusnet.php:272
msgid ""
"There are preconfigured OAuth key pairs for some StatusNet servers "
"available. If you are useing one of them, please use these credentials. If "
"not feel free to connect to any other StatusNet instance (see below)."
msgstr "Доступны предварительно сконфигурированные OAuth пары ключей для некоторых серверов StatusNet. Если вы используете один из них, пожалуйста, используйте эти учетные данные. Если нет, не стесняйтесь подключиться к любому другому экземпляру StatusNet (см. ниже)."
#: ../../addon/statusnet/statusnet.php:280
#: ../../addon.old/statusnet/statusnet.php:280
msgid "Provide your own OAuth Credentials"
msgstr "Укажите свои собственные полномочия OAuth"
#: ../../addon/statusnet/statusnet.php:281
#: ../../addon.old/statusnet/statusnet.php:281
msgid ""
"No consumer key pair for StatusNet found. Register your Friendica Account as"
" an desktop client on your StatusNet account, copy the consumer key pair "
"here and enter the API base root.<br />Before you register your own OAuth "
"key pair ask the administrator if there is already a key pair for this "
"Friendica installation at your favorited StatusNet installation."
msgstr ""
#: ../../addon/statusnet/statusnet.php:283
#: ../../addon.old/statusnet/statusnet.php:283
msgid "OAuth Consumer Key"
msgstr "OAuth Consumer Key"
#: ../../addon/statusnet/statusnet.php:286
#: ../../addon.old/statusnet/statusnet.php:286
msgid "OAuth Consumer Secret"
msgstr "OAuth Consumer Secret"
#: ../../addon/statusnet/statusnet.php:289
#: ../../addon.old/statusnet/statusnet.php:289
msgid "Base API Path (remember the trailing /)"
msgstr "Путь базы API (помните о слеше /)"
#: ../../addon/statusnet/statusnet.php:310
#: ../../addon.old/statusnet/statusnet.php:310
msgid ""
"To connect to your StatusNet account click the button below to get a "
"security code from StatusNet which you have to copy into the input box below"
" and submit the form. Only your <strong>public</strong> posts will be posted"
" to StatusNet."
msgstr "Чтобы подключиться к StatusNet аккаунту, нажмите на кнопку ниже, чтобы получить код безопасности от StatusNet, который нужно скопировать в поле ввода ниже, и отправить форму. Только ваши <strong>публичные сообщения</strong> будут отправляться на StatusNet."
#: ../../addon/statusnet/statusnet.php:311
#: ../../addon.old/statusnet/statusnet.php:311
msgid "Log in with StatusNet"
msgstr "Войдите со StatusNet"
#: ../../addon/statusnet/statusnet.php:313
#: ../../addon.old/statusnet/statusnet.php:313
msgid "Copy the security code from StatusNet here"
msgstr "Скопируйте код безопасности от StatusNet здесь"
#: ../../addon/statusnet/statusnet.php:319
#: ../../addon.old/statusnet/statusnet.php:319
msgid "Cancel Connection Process"
msgstr "Отмена процесса подключения"
#: ../../addon/statusnet/statusnet.php:321
#: ../../addon.old/statusnet/statusnet.php:321
msgid "Current StatusNet API is"
msgstr "Текущим StatusNet API является"
#: ../../addon/statusnet/statusnet.php:322
#: ../../addon.old/statusnet/statusnet.php:322
msgid "Cancel StatusNet Connection"
msgstr "Отмена StatusNet подключения"
#: ../../addon/statusnet/statusnet.php:333 ../../addon/twitter/twitter.php:189
#: ../../addon.old/statusnet/statusnet.php:333
#: ../../addon.old/twitter/twitter.php:189
msgid "Currently connected to: "
msgstr "В настоящее время соединены с: "
#: ../../addon/statusnet/statusnet.php:334
#: ../../addon.old/statusnet/statusnet.php:334
msgid ""
"If enabled all your <strong>public</strong> postings can be posted to the "
"associated StatusNet account. You can choose to do so by default (here) or "
"for every posting separately in the posting options when writing the entry."
msgstr "Если включено, то все ваши <strong>общественные сообщения</strong> могут быть отправлены на соответствующий аккаунт StatusNet. Вы можете сделать это по умолчанию (здесь) или для каждого сообщения отдельно при написании записи."
#: ../../addon/statusnet/statusnet.php:336
#: ../../addon.old/statusnet/statusnet.php:336
msgid ""
"<strong>Note</strong>: Due your privacy settings (<em>Hide your profile "
"details from unknown viewers?</em>) the link potentially included in public "
"postings relayed to StatusNet will lead the visitor to a blank page "
"informing the visitor that the access to your profile has been restricted."
msgstr ""
#: ../../addon/statusnet/statusnet.php:339
#: ../../addon.old/statusnet/statusnet.php:339
msgid "Allow posting to StatusNet"
msgstr "Разрешить отправку на StatusNet"
#: ../../addon/statusnet/statusnet.php:342
#: ../../addon.old/statusnet/statusnet.php:342
msgid "Send public postings to StatusNet by default"
msgstr "Отправлять публичные сообщения на StatusNet по умолчанию"
#: ../../addon/statusnet/statusnet.php:345
#: ../../addon.old/statusnet/statusnet.php:345
msgid "Send linked #-tags and @-names to StatusNet"
msgstr ""
#: ../../addon/statusnet/statusnet.php:350 ../../addon/twitter/twitter.php:206
#: ../../addon.old/statusnet/statusnet.php:350
#: ../../addon.old/twitter/twitter.php:206
msgid "Clear OAuth configuration"
msgstr "Очистить конфигурацию OAuth"
#: ../../addon/statusnet/statusnet.php:677
#: ../../addon.old/statusnet/statusnet.php:568
msgid "API URL"
msgstr "API URL"
#: ../../addon/infiniteimprobabilitydrive/infiniteimprobabilitydrive.php:19
#: ../../addon.old/infiniteimprobabilitydrive/infiniteimprobabilitydrive.php:19
msgid "Infinite Improbability Drive"
msgstr ""
#: ../../addon/tumblr/tumblr.php:36 ../../addon.old/tumblr/tumblr.php:36
msgid "Post to Tumblr"
msgstr "Написать в Tumblr"
#: ../../addon/tumblr/tumblr.php:67 ../../addon.old/tumblr/tumblr.php:67
msgid "Tumblr Post Settings"
msgstr "Tumblr Настройки сообщения"
#: ../../addon/tumblr/tumblr.php:69 ../../addon.old/tumblr/tumblr.php:69
msgid "Enable Tumblr Post Plugin"
msgstr "Включить Tumblr плагин сообщений"
#: ../../addon/tumblr/tumblr.php:74 ../../addon.old/tumblr/tumblr.php:74
msgid "Tumblr login"
msgstr "Tumblr вход"
#: ../../addon/tumblr/tumblr.php:79 ../../addon.old/tumblr/tumblr.php:79
msgid "Tumblr password"
msgstr "Tumblr пароль"
#: ../../addon/tumblr/tumblr.php:84 ../../addon.old/tumblr/tumblr.php:84
msgid "Post to Tumblr by default"
msgstr "Сообщение Tumblr по умолчанию"
#: ../../addon/numfriends/numfriends.php:46
#: ../../addon.old/numfriends/numfriends.php:46
msgid "Numfriends settings updated."
msgstr ""
#: ../../addon/numfriends/numfriends.php:77
#: ../../addon.old/numfriends/numfriends.php:77
msgid "Numfriends Settings"
msgstr ""
#: ../../addon/numfriends/numfriends.php:79 ../../addon.old/bg/bg.php:84
#: ../../addon.old/numfriends/numfriends.php:79
msgid "How many contacts to display on profile sidebar"
msgstr ""
#: ../../addon/gnot/gnot.php:48 ../../addon.old/gnot/gnot.php:48
msgid "Gnot settings updated."
msgstr ""
#: ../../addon/gnot/gnot.php:79 ../../addon.old/gnot/gnot.php:79
msgid "Gnot Settings"
msgstr ""
#: ../../addon/gnot/gnot.php:81 ../../addon.old/gnot/gnot.php:81
msgid ""
"Allows threading of email comment notifications on Gmail and anonymising the"
" subject line."
msgstr ""
#: ../../addon/gnot/gnot.php:82 ../../addon.old/gnot/gnot.php:82
msgid "Enable this plugin/addon?"
msgstr "Включить этот плагин / аддон?"
#: ../../addon/gnot/gnot.php:97 ../../addon.old/gnot/gnot.php:97
#, php-format
msgid "[Friendica:Notify] Comment to conversation #%d"
msgstr ""
#: ../../addon/wppost/wppost.php:42 ../../addon.old/wppost/wppost.php:42
msgid "Post to Wordpress"
msgstr "Сообщение для Wordpress"
#: ../../addon/wppost/wppost.php:76 ../../addon.old/wppost/wppost.php:76
msgid "WordPress Post Settings"
msgstr "Настройки сообщений для Wordpress"
#: ../../addon/wppost/wppost.php:78 ../../addon.old/wppost/wppost.php:78
msgid "Enable WordPress Post Plugin"
msgstr "Включить WordPress плагин сообщений"
#: ../../addon/wppost/wppost.php:83 ../../addon.old/wppost/wppost.php:83
msgid "WordPress username"
msgstr "WordPress Имя пользователя"
#: ../../addon/wppost/wppost.php:88 ../../addon.old/wppost/wppost.php:88
msgid "WordPress password"
msgstr "WordPress паролъ"
#: ../../addon/wppost/wppost.php:93 ../../addon.old/wppost/wppost.php:93
msgid "WordPress API URL"
msgstr "WordPress API URL"
#: ../../addon/wppost/wppost.php:98 ../../addon.old/wppost/wppost.php:98
msgid "Post to WordPress by default"
msgstr "Сообщение WordPress по умолчанию"
#: ../../addon/wppost/wppost.php:103 ../../addon.old/wppost/wppost.php:103
msgid "Provide a backlink to the Friendica post"
msgstr ""
#: ../../addon/wppost/wppost.php:201 ../../addon/blogger/blogger.php:172
#: ../../addon/posterous/posterous.php:189
#: ../../addon.old/drpost/drpost.php:184 ../../addon.old/wppost/wppost.php:201
#: ../../addon.old/blogger/blogger.php:172
#: ../../addon.old/posterous/posterous.php:189
msgid "Post from Friendica"
msgstr "Сообщение от Friendica"
#: ../../addon/wppost/wppost.php:207 ../../addon.old/wppost/wppost.php:207
msgid "Read the original post and comment stream on Friendica"
msgstr ""
#: ../../addon/showmore/showmore.php:38
#: ../../addon.old/showmore/showmore.php:38
msgid "\"Show more\" Settings"
msgstr ""
#: ../../addon/showmore/showmore.php:41
#: ../../addon.old/showmore/showmore.php:41
msgid "Enable Show More"
msgstr "Включить Показать больше"
#: ../../addon/showmore/showmore.php:44
#: ../../addon.old/showmore/showmore.php:44
msgid "Cutting posts after how much characters"
msgstr "Обрезание сообщения после превывения числа символов"
#: ../../addon/showmore/showmore.php:65
#: ../../addon.old/showmore/showmore.php:65
msgid "Show More Settings saved."
msgstr ""
#: ../../addon/piwik/piwik.php:79 ../../addon.old/piwik/piwik.php:79
msgid ""
"This website is tracked using the <a href='http://www.piwik.org'>Piwik</a> "
"analytics tool."
msgstr "Этот веб-сайт отслеживается с помощью <a href='http://www.piwik.org'> Piwik </ a> инструмент аналитики."
#: ../../addon/piwik/piwik.php:82 ../../addon.old/piwik/piwik.php:82
#, php-format
msgid ""
"If you do not want that your visits are logged this way you <a href='%s'>can"
" set a cookie to prevent Piwik from tracking further visits of the site</a> "
"(opt-out)."
msgstr "Если вы не хотите, чтобы ваши посещения записывались таким образом, вы <a href='%s'> можете установить куки для предотвращения отслеживания Piwik от дальнейших посещений сайта </a> (opt-out)."
#: ../../addon/piwik/piwik.php:90 ../../addon.old/piwik/piwik.php:90
msgid "Piwik Base URL"
msgstr "Piwik основной URL"
#: ../../addon/piwik/piwik.php:90 ../../addon.old/piwik/piwik.php:90
msgid ""
"Absolute path to your Piwik installation. (without protocol (http/s), with "
"trailing slash)"
msgstr ""
#: ../../addon/piwik/piwik.php:91 ../../addon.old/piwik/piwik.php:91
msgid "Site ID"
msgstr "ID сайта"
#: ../../addon/piwik/piwik.php:92 ../../addon.old/piwik/piwik.php:92
msgid "Show opt-out cookie link?"
msgstr "Показать ссылку opt-out cookie?"
#: ../../addon/piwik/piwik.php:93 ../../addon.old/piwik/piwik.php:93
msgid "Asynchronous tracking"
msgstr "Асинхронное отслеживание"
#: ../../addon/twitter/twitter.php:73 ../../addon.old/twitter/twitter.php:73
msgid "Post to Twitter"
msgstr "Отправить в Твиттер"
#: ../../addon/twitter/twitter.php:122 ../../addon.old/twitter/twitter.php:122
msgid "Twitter settings updated."
msgstr "Настройки Твиттера обновлены."
#: ../../addon/twitter/twitter.php:146 ../../addon.old/twitter/twitter.php:146
msgid "Twitter Posting Settings"
msgstr "Настройка отправки сообщений в Твиттер"
#: ../../addon/twitter/twitter.php:153 ../../addon.old/twitter/twitter.php:153
msgid ""
"No consumer key pair for Twitter found. Please contact your site "
"administrator."
msgstr "Не найдено пары потребительских ключей для Твиттера. Пожалуйста, обратитесь к администратору сайта."
#: ../../addon/twitter/twitter.php:172 ../../addon.old/twitter/twitter.php:172
msgid ""
"At this Friendica instance the Twitter plugin was enabled but you have not "
"yet connected your account to your Twitter account. To do so click the "
"button below to get a PIN from Twitter which you have to copy into the input"
" box below and submit the form. Only your <strong>public</strong> posts will"
" be posted to Twitter."
msgstr ""
#: ../../addon/twitter/twitter.php:173 ../../addon.old/twitter/twitter.php:173
msgid "Log in with Twitter"
msgstr "Войдите с Твиттером"
#: ../../addon/twitter/twitter.php:175 ../../addon.old/twitter/twitter.php:175
msgid "Copy the PIN from Twitter here"
msgstr "Скопируйте PIN с Twitter здесь"
#: ../../addon/twitter/twitter.php:190 ../../addon.old/twitter/twitter.php:190
msgid ""
"If enabled all your <strong>public</strong> postings can be posted to the "
"associated Twitter account. You can choose to do so by default (here) or for"
" every posting separately in the posting options when writing the entry."
msgstr "Если включено, то все ваши <strong>общественные сообщения</strong> могут быть отправлены на связанный аккаунт Твиттер. Вы можете сделать это по умолчанию (здесь) или для каждого сообщения отдельно при написании записи."
#: ../../addon/twitter/twitter.php:192 ../../addon.old/twitter/twitter.php:192
msgid ""
"<strong>Note</strong>: Due your privacy settings (<em>Hide your profile "
"details from unknown viewers?</em>) the link potentially included in public "
"postings relayed to Twitter will lead the visitor to a blank page informing "
"the visitor that the access to your profile has been restricted."
msgstr ""
#: ../../addon/twitter/twitter.php:195 ../../addon.old/twitter/twitter.php:195
msgid "Allow posting to Twitter"
msgstr "Разрешить отправку сообщений на Twitter"
#: ../../addon/twitter/twitter.php:198 ../../addon.old/twitter/twitter.php:198
msgid "Send public postings to Twitter by default"
msgstr "Отправлять сообщения для всех на Твиттер по умолчанию"
#: ../../addon/twitter/twitter.php:201 ../../addon.old/twitter/twitter.php:201
msgid "Send linked #-tags and @-names to Twitter"
msgstr ""
#: ../../addon/twitter/twitter.php:508 ../../addon.old/twitter/twitter.php:396
msgid "Consumer key"
msgstr "Consumer key"
#: ../../addon/twitter/twitter.php:509 ../../addon.old/twitter/twitter.php:397
msgid "Consumer secret"
msgstr "Consumer secret"
#: ../../addon/irc/irc.php:44 ../../addon.old/irc/irc.php:44
msgid "IRC Settings"
msgstr ""
#: ../../addon/irc/irc.php:46 ../../addon.old/irc/irc.php:46
msgid "Channel(s) to auto connect (comma separated)"
msgstr ""
#: ../../addon/irc/irc.php:51 ../../addon.old/irc/irc.php:51
msgid "Popular Channels (comma separated)"
msgstr ""
#: ../../addon/irc/irc.php:69 ../../addon.old/irc/irc.php:69
msgid "IRC settings saved."
msgstr ""
#: ../../addon/irc/irc.php:74 ../../addon.old/irc/irc.php:74
msgid "IRC Chatroom"
msgstr ""
#: ../../addon/irc/irc.php:96 ../../addon.old/irc/irc.php:96
msgid "Popular Channels"
msgstr ""
#: ../../addon/fromapp/fromapp.php:38 ../../addon.old/fromapp/fromapp.php:38
msgid "Fromapp settings updated."
msgstr ""
#: ../../addon/fromapp/fromapp.php:64 ../../addon.old/fromapp/fromapp.php:64
msgid "FromApp Settings"
msgstr ""
#: ../../addon/fromapp/fromapp.php:66 ../../addon.old/fromapp/fromapp.php:66
msgid ""
"The application name you would like to show your posts originating from."
msgstr ""
#: ../../addon/fromapp/fromapp.php:70 ../../addon.old/fromapp/fromapp.php:70
msgid "Use this application name even if another application was used."
msgstr ""
#: ../../addon/blogger/blogger.php:42 ../../addon.old/blogger/blogger.php:42
msgid "Post to blogger"
msgstr ""
#: ../../addon/blogger/blogger.php:74 ../../addon.old/blogger/blogger.php:74
msgid "Blogger Post Settings"
msgstr ""
#: ../../addon/blogger/blogger.php:76 ../../addon.old/blogger/blogger.php:76
msgid "Enable Blogger Post Plugin"
msgstr ""
#: ../../addon/blogger/blogger.php:81 ../../addon.old/blogger/blogger.php:81
msgid "Blogger username"
msgstr ""
#: ../../addon/blogger/blogger.php:86 ../../addon.old/blogger/blogger.php:86
msgid "Blogger password"
msgstr ""
#: ../../addon/blogger/blogger.php:91 ../../addon.old/blogger/blogger.php:91
msgid "Blogger API URL"
msgstr ""
#: ../../addon/blogger/blogger.php:96 ../../addon.old/blogger/blogger.php:96
msgid "Post to Blogger by default"
msgstr ""
#: ../../addon/posterous/posterous.php:37
#: ../../addon.old/posterous/posterous.php:37
msgid "Post to Posterous"
msgstr ""
#: ../../addon/posterous/posterous.php:70
#: ../../addon.old/posterous/posterous.php:70
msgid "Posterous Post Settings"
msgstr ""
#: ../../addon/posterous/posterous.php:72
#: ../../addon.old/posterous/posterous.php:72
msgid "Enable Posterous Post Plugin"
msgstr "Включить Posterous плагин сообщений"
#: ../../addon/posterous/posterous.php:77
#: ../../addon.old/posterous/posterous.php:77
msgid "Posterous login"
msgstr ""
#: ../../addon/posterous/posterous.php:82
#: ../../addon.old/posterous/posterous.php:82
msgid "Posterous password"
msgstr ""
#: ../../addon/posterous/posterous.php:87
#: ../../addon.old/posterous/posterous.php:87
msgid "Posterous site ID"
msgstr ""
#: ../../addon/posterous/posterous.php:92
#: ../../addon.old/posterous/posterous.php:92
msgid "Posterous API token"
msgstr ""
#: ../../addon/posterous/posterous.php:97
#: ../../addon.old/posterous/posterous.php:97
msgid "Post to Posterous by default"
msgstr ""
#: ../../view/theme/cleanzero/config.php:82
#: ../../view/theme/diabook/config.php:154
#: ../../view/theme/quattro/config.php:66 ../../view/theme/dispy/config.php:72
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/diabook/config.php:155
#: ../../view/theme/dispy/config.php:73
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/diabook/theme.php:87 ../../include/nav.php:49
#: ../../include/nav.php:116
msgid "Your posts and conversations"
msgstr "Ваши сообщения и беседы"
#: ../../view/theme/diabook/theme.php:88 ../../include/nav.php:50
msgid "Your profile page"
msgstr "Страница Вашего профиля"
#: ../../view/theme/diabook/theme.php:89
msgid "Your contacts"
msgstr "Ваши контакты"
#: ../../view/theme/diabook/theme.php:90 ../../include/nav.php:51
msgid "Your photos"
msgstr "Ваши фотографии"
#: ../../view/theme/diabook/theme.php:91 ../../include/nav.php:52
msgid "Your events"
msgstr "Ваши события"
#: ../../view/theme/diabook/theme.php:92 ../../include/nav.php:53
msgid "Personal notes"
msgstr "Личные заметки"
#: ../../view/theme/diabook/theme.php:92 ../../include/nav.php:53
msgid "Your personal photos"
msgstr "Ваши личные фотографии"
#: ../../view/theme/diabook/theme.php:94
#: ../../view/theme/diabook/theme.php:537
#: ../../view/theme/diabook/theme.php:632
#: ../../view/theme/diabook/config.php:163
msgid "Community Pages"
msgstr "Страницы сообщества"
#: ../../view/theme/diabook/theme.php:384
#: ../../view/theme/diabook/theme.php:634
#: ../../view/theme/diabook/config.php:165
msgid "Community Profiles"
msgstr ""
#: ../../view/theme/diabook/theme.php:405
#: ../../view/theme/diabook/theme.php:639
#: ../../view/theme/diabook/config.php:170
msgid "Last users"
msgstr "Последние пользователи"
#: ../../view/theme/diabook/theme.php:434
#: ../../view/theme/diabook/theme.php:641
#: ../../view/theme/diabook/config.php:172
msgid "Last likes"
msgstr "Последние likes"
#: ../../view/theme/diabook/theme.php:479
#: ../../view/theme/diabook/theme.php:640
#: ../../view/theme/diabook/config.php:171
msgid "Last photos"
msgstr "Последние фото"
#: ../../view/theme/diabook/theme.php:516
#: ../../view/theme/diabook/theme.php:637
#: ../../view/theme/diabook/config.php:168
msgid "Find Friends"
msgstr "Найти друзей"
#: ../../view/theme/diabook/theme.php:517
msgid "Local Directory"
msgstr ""
#: ../../view/theme/diabook/theme.php:519 ../../include/contact_widgets.php:35
msgid "Similar Interests"
msgstr "Похожие интересы"
#: ../../view/theme/diabook/theme.php:521 ../../include/contact_widgets.php:37
msgid "Invite Friends"
msgstr "Пригласить друзей"
#: ../../view/theme/diabook/theme.php:572
#: ../../view/theme/diabook/theme.php:633
#: ../../view/theme/diabook/config.php:164
msgid "Earth Layers"
msgstr ""
#: ../../view/theme/diabook/theme.php:577
msgid "Set zoomfactor for Earth Layers"
msgstr ""
#: ../../view/theme/diabook/theme.php:578
#: ../../view/theme/diabook/config.php:161
msgid "Set longitude (X) for Earth Layers"
msgstr ""
#: ../../view/theme/diabook/theme.php:579
#: ../../view/theme/diabook/config.php:162
msgid "Set latitude (Y) for Earth Layers"
msgstr ""
#: ../../view/theme/diabook/theme.php:592
#: ../../view/theme/diabook/theme.php:635
#: ../../view/theme/diabook/config.php:166
msgid "Help or @NewHere ?"
msgstr ""
#: ../../view/theme/diabook/theme.php:599
#: ../../view/theme/diabook/theme.php:636
#: ../../view/theme/diabook/config.php:167
msgid "Connect Services"
msgstr "Подключить службы"
#: ../../view/theme/diabook/theme.php:606
#: ../../view/theme/diabook/theme.php:638
msgid "Last Tweets"
msgstr ""
#: ../../view/theme/diabook/theme.php:609
#: ../../view/theme/diabook/config.php:159
msgid "Set twitter search term"
msgstr ""
#: ../../view/theme/diabook/theme.php:629
#: ../../view/theme/diabook/config.php:146 ../../include/acl_selectors.php:288
msgid "don't show"
msgstr "не показывать"
#: ../../view/theme/diabook/theme.php:629
#: ../../view/theme/diabook/config.php:146 ../../include/acl_selectors.php:287
msgid "show"
msgstr "показывать"
#: ../../view/theme/diabook/theme.php:630
msgid "Show/hide boxes at right-hand column:"
msgstr ""
#: ../../view/theme/diabook/config.php:156
#: ../../view/theme/dispy/config.php:74
msgid "Set line-height for posts and comments"
msgstr ""
#: ../../view/theme/diabook/config.php:157
msgid "Set resolution for middle column"
msgstr ""
#: ../../view/theme/diabook/config.php:158
msgid "Set color scheme"
msgstr ""
#: ../../view/theme/diabook/config.php:160
msgid "Set zoomfactor for Earth Layer"
msgstr ""
#: ../../view/theme/diabook/config.php:169
msgid "Last tweets"
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/dispy/config.php:75
msgid "Set colour scheme"
msgstr ""
#: ../../include/profile_advanced.php:22
msgid "j F, Y"
msgstr "j F, Y"
@ -7880,23 +56,57 @@ msgstr "День рождения:"
msgid "Age:"
msgstr "Возраст:"
#: ../../include/profile_advanced.php:37 ../../mod/directory.php:138
#: ../../boot.php:1411
msgid "Status:"
msgstr "Статус:"
#: ../../include/profile_advanced.php:43
#, php-format
msgid "for %1$d %2$s"
msgstr ""
#: ../../include/profile_advanced.php:46 ../../mod/profiles.php:646
msgid "Sexual Preference:"
msgstr "Сексуальные предпочтения:"
#: ../../include/profile_advanced.php:48 ../../mod/directory.php:140
#: ../../boot.php:1413
msgid "Homepage:"
msgstr "Домашняя страничка:"
#: ../../include/profile_advanced.php:50 ../../mod/profiles.php:648
msgid "Hometown:"
msgstr ""
#: ../../include/profile_advanced.php:52
msgid "Tags:"
msgstr ""
msgstr "Ключевые слова: "
#: ../../include/profile_advanced.php:54 ../../mod/profiles.php:649
msgid "Political Views:"
msgstr "Политические взгляды:"
#: ../../include/profile_advanced.php:56
msgid "Religion:"
msgstr "Религия:"
#: ../../include/profile_advanced.php:58 ../../mod/directory.php:142
msgid "About:"
msgstr "О себе:"
#: ../../include/profile_advanced.php:60
msgid "Hobbies/Interests:"
msgstr "Хобби / Интересы:"
#: ../../include/profile_advanced.php:62 ../../mod/profiles.php:653
msgid "Likes:"
msgstr ""
#: ../../include/profile_advanced.php:64 ../../mod/profiles.php:654
msgid "Dislikes:"
msgstr ""
#: ../../include/profile_advanced.php:67
msgid "Contact information and Social Networks:"
msgstr "Информация о контакте и социальных сетях:"
@ -7929,70 +139,6 @@ msgstr "Работа / Занятость:"
msgid "School/education:"
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:56
msgid "Frequently"
msgstr "Часто"
#: ../../include/contact_selectors.php:57
msgid "Hourly"
msgstr "Раз в час"
#: ../../include/contact_selectors.php:58
msgid "Twice daily"
msgstr "Два раза в день"
#: ../../include/contact_selectors.php:77
msgid "OStatus"
msgstr "OStatus"
#: ../../include/contact_selectors.php:78
msgid "RSS/Atom"
msgstr "RSS/Atom"
#: ../../include/contact_selectors.php:82
msgid "Zot!"
msgstr "Zot!"
#: ../../include/contact_selectors.php:83
msgid "LinkedIn"
msgstr "LinkedIn"
#: ../../include/contact_selectors.php:84
msgid "XMPP/IM"
msgstr "XMPP/IM"
#: ../../include/contact_selectors.php:85
msgid "MySpace"
msgstr "MySpace"
#: ../../include/contact_selectors.php:87
msgid "Google+"
msgstr ""
#: ../../include/profile_selectors.php:6
msgid "Male"
msgstr "Мужчина"
@ -8137,8 +283,8 @@ msgstr "Изменяю супругу"
msgid "Sex Addict"
msgstr "Люблю секс"
#: ../../include/profile_selectors.php:42 ../../include/user.php:278
#: ../../include/user.php:282
#: ../../include/profile_selectors.php:42 ../../include/user.php:279
#: ../../include/user.php:283
msgid "Friends"
msgstr "Друзья"
@ -8216,7 +362,7 @@ msgstr "Неопределенный"
#: ../../include/profile_selectors.php:42
msgid "It's complicated"
msgstr ""
msgstr "влишком сложно"
#: ../../include/profile_selectors.php:42
msgid "Don't care"
@ -8226,51 +372,70 @@ msgstr "Не беспокоить"
msgid "Ask me"
msgstr "Спросите меня"
#: ../../include/event.php:20 ../../include/bb2diaspora.php:396
msgid "Starts:"
msgstr "Начало:"
#: ../../include/Contact.php:115
msgid "stopped following"
msgstr "остановлено следование"
#: ../../include/event.php:30 ../../include/bb2diaspora.php:404
msgid "Finishes:"
msgstr "Окончание:"
#: ../../include/delivery.php:457 ../../include/notifier.php:771
msgid "(no subject)"
msgstr "(без темы)"
#: ../../include/Scrape.php:583
msgid " on Last.fm"
#: ../../include/Contact.php:225 ../../include/conversation.php:838
msgid "Poke"
msgstr ""
#: ../../include/text.php:243
#: ../../include/Contact.php:226 ../../include/conversation.php:832
msgid "View Status"
msgstr "Просмотреть статус"
#: ../../include/Contact.php:227 ../../include/conversation.php:833
msgid "View Profile"
msgstr ""
#: ../../include/Contact.php:228 ../../include/conversation.php:834
msgid "View Photos"
msgstr ""
#: ../../include/Contact.php:229 ../../include/Contact.php:251
#: ../../include/conversation.php:835
msgid "Network Posts"
msgstr ""
#: ../../include/Contact.php:230 ../../include/Contact.php:251
#: ../../include/conversation.php:836
msgid "Edit Contact"
msgstr "Редактировать контакт"
#: ../../include/Contact.php:231 ../../include/Contact.php:251
#: ../../include/conversation.php:837
msgid "Send PM"
msgstr "Отправить ЛС"
#: ../../include/text.php:276
msgid "prev"
msgstr "пред."
#: ../../include/text.php:245
#: ../../include/text.php:278
msgid "first"
msgstr "первый"
#: ../../include/text.php:274
#: ../../include/text.php:307
msgid "last"
msgstr "последний"
#: ../../include/text.php:277
#: ../../include/text.php:310
msgid "next"
msgstr "след."
#: ../../include/text.php:295
#: ../../include/text.php:328
msgid "newer"
msgstr ""
msgstr "новее"
#: ../../include/text.php:299
#: ../../include/text.php:332
msgid "older"
msgstr ""
msgstr "старее"
#: ../../include/text.php:604
#: ../../include/text.php:697
msgid "No contacts"
msgstr "Нет контактов"
#: ../../include/text.php:613
#: ../../include/text.php:706
#, php-format
msgid "%d Contact"
msgid_plural "%d Contacts"
@ -8278,229 +443,307 @@ msgstr[0] "%d контакт"
msgstr[1] "%d контактов"
msgstr[2] "%d контактов"
#: ../../include/text.php:726
msgid "poke"
msgstr ""
#: ../../include/text.php:718 ../../mod/viewcontacts.php:76
msgid "View Contacts"
msgstr "Просмотр контактов"
#: ../../include/text.php:726 ../../include/conversation.php:210
#: ../../include/text.php:778 ../../include/text.php:779
#: ../../include/nav.php:118 ../../mod/search.php:99
msgid "Search"
msgstr "Поиск"
#: ../../include/text.php:781 ../../mod/notes.php:63 ../../mod/filer.php:31
msgid "Save"
msgstr "Сохранить"
#: ../../include/text.php:819
msgid "poke"
msgstr "poke"
#: ../../include/text.php:819 ../../include/conversation.php:211
msgid "poked"
msgstr ""
#: ../../include/text.php:727
#: ../../include/text.php:820
msgid "ping"
msgstr ""
#: ../../include/text.php:727
#: ../../include/text.php:820
msgid "pinged"
msgstr ""
#: ../../include/text.php:728
#: ../../include/text.php:821
msgid "prod"
msgstr ""
#: ../../include/text.php:728
#: ../../include/text.php:821
msgid "prodded"
msgstr ""
#: ../../include/text.php:729
#: ../../include/text.php:822
msgid "slap"
msgstr ""
#: ../../include/text.php:729
#: ../../include/text.php:822
msgid "slapped"
msgstr ""
#: ../../include/text.php:730
#: ../../include/text.php:823
msgid "finger"
msgstr ""
#: ../../include/text.php:730
#: ../../include/text.php:823
msgid "fingered"
msgstr ""
#: ../../include/text.php:731
#: ../../include/text.php:824
msgid "rebuff"
msgstr ""
#: ../../include/text.php:731
#: ../../include/text.php:824
msgid "rebuffed"
msgstr ""
#: ../../include/text.php:743
#: ../../include/text.php:836
msgid "happy"
msgstr ""
#: ../../include/text.php:744
#: ../../include/text.php:837
msgid "sad"
msgstr ""
#: ../../include/text.php:745
#: ../../include/text.php:838
msgid "mellow"
msgstr ""
#: ../../include/text.php:746
#: ../../include/text.php:839
msgid "tired"
msgstr ""
#: ../../include/text.php:747
#: ../../include/text.php:840
msgid "perky"
msgstr ""
#: ../../include/text.php:748
#: ../../include/text.php:841
msgid "angry"
msgstr ""
#: ../../include/text.php:749
#: ../../include/text.php:842
msgid "stupified"
msgstr ""
#: ../../include/text.php:750
#: ../../include/text.php:843
msgid "puzzled"
msgstr ""
#: ../../include/text.php:751
#: ../../include/text.php:844
msgid "interested"
msgstr ""
#: ../../include/text.php:752
#: ../../include/text.php:845
msgid "bitter"
msgstr ""
#: ../../include/text.php:753
#: ../../include/text.php:846
msgid "cheerful"
msgstr ""
#: ../../include/text.php:754
#: ../../include/text.php:847
msgid "alive"
msgstr ""
#: ../../include/text.php:755
#: ../../include/text.php:848
msgid "annoyed"
msgstr ""
#: ../../include/text.php:756
#: ../../include/text.php:849
msgid "anxious"
msgstr ""
#: ../../include/text.php:757
#: ../../include/text.php:850
msgid "cranky"
msgstr ""
#: ../../include/text.php:758
#: ../../include/text.php:851
msgid "disturbed"
msgstr ""
#: ../../include/text.php:759
#: ../../include/text.php:852
msgid "frustrated"
msgstr ""
#: ../../include/text.php:760
#: ../../include/text.php:853
msgid "motivated"
msgstr ""
#: ../../include/text.php:761
#: ../../include/text.php:854
msgid "relaxed"
msgstr ""
#: ../../include/text.php:762
#: ../../include/text.php:855
msgid "surprised"
msgstr ""
#: ../../include/text.php:926
#: ../../include/text.php:1015
msgid "Monday"
msgstr "Понедельник"
#: ../../include/text.php:1015
msgid "Tuesday"
msgstr "Вторник"
#: ../../include/text.php:1015
msgid "Wednesday"
msgstr "Среда"
#: ../../include/text.php:1015
msgid "Thursday"
msgstr "Четверг"
#: ../../include/text.php:1015
msgid "Friday"
msgstr "Пятница"
#: ../../include/text.php:1015
msgid "Saturday"
msgstr "Суббота"
#: ../../include/text.php:1015
msgid "Sunday"
msgstr "Воскресенье"
#: ../../include/text.php:1019
msgid "January"
msgstr "Январь"
#: ../../include/text.php:926
#: ../../include/text.php:1019
msgid "February"
msgstr "Февраль"
#: ../../include/text.php:926
#: ../../include/text.php:1019
msgid "March"
msgstr "Март"
#: ../../include/text.php:926
#: ../../include/text.php:1019
msgid "April"
msgstr "Апрель"
#: ../../include/text.php:926
#: ../../include/text.php:1019
msgid "May"
msgstr "Май"
#: ../../include/text.php:926
#: ../../include/text.php:1019
msgid "June"
msgstr "Июнь"
#: ../../include/text.php:926
#: ../../include/text.php:1019
msgid "July"
msgstr "Июль"
#: ../../include/text.php:926
#: ../../include/text.php:1019
msgid "August"
msgstr "Август"
#: ../../include/text.php:926
#: ../../include/text.php:1019
msgid "September"
msgstr "Сентябрь"
#: ../../include/text.php:926
#: ../../include/text.php:1019
msgid "October"
msgstr "Октябрь"
#: ../../include/text.php:926
#: ../../include/text.php:1019
msgid "November"
msgstr "Ноябрь"
#: ../../include/text.php:926
#: ../../include/text.php:1019
msgid "December"
msgstr "Декабрь"
#: ../../include/text.php:1010
#: ../../include/text.php:1153
msgid "bytes"
msgstr "байт"
#: ../../include/text.php:1037 ../../include/text.php:1049
#: ../../include/text.php:1180 ../../include/text.php:1192
msgid "Click to open/close"
msgstr "Нажмите, чтобы открыть / закрыть"
#: ../../include/text.php:1222 ../../include/user.php:236
#: ../../include/text.php:1333 ../../mod/events.php:335
msgid "link to source"
msgstr "ссылка на источник"
#: ../../include/text.php:1365 ../../include/user.php:237
msgid "default"
msgstr "значение по умолчанию"
#: ../../include/text.php:1234
#: ../../include/text.php:1377
msgid "Select an alternate language"
msgstr "Выбор альтернативного языка"
#: ../../include/text.php:1444
#: ../../include/text.php:1583 ../../include/conversation.php:118
#: ../../include/conversation.php:246 ../../view/theme/diabook/theme.php:456
msgid "event"
msgstr "мероприятие"
#: ../../include/text.php:1585 ../../include/diaspora.php:1874
#: ../../include/conversation.php:126 ../../include/conversation.php:254
#: ../../mod/subthread.php:87 ../../mod/tagger.php:62 ../../mod/like.php:151
#: ../../view/theme/diabook/theme.php:464
msgid "photo"
msgstr "фото"
#: ../../include/text.php:1587
msgid "activity"
msgstr "активность"
#: ../../include/text.php:1447
msgid "post"
msgstr ""
#: ../../include/text.php:1589 ../../mod/content.php:628
#: ../../object/Item.php:364 ../../object/Item.php:377
msgid "comment"
msgid_plural "comments"
msgstr[0] ""
msgstr[1] ""
msgstr[2] "комментарий"
#: ../../include/text.php:1602
#: ../../include/text.php:1590
msgid "post"
msgstr "сообщение"
#: ../../include/text.php:1745
msgid "Item filed"
msgstr ""
#: ../../include/diaspora.php:702
msgid "Sharing notification from Diaspora network"
msgstr "Делиться уведомлениями из сети Diaspora"
#: ../../include/acl_selectors.php:325
msgid "Visible to everybody"
msgstr "Видимо всем"
#: ../../include/diaspora.php:2236
msgid "Attachments:"
msgstr "Вложения:"
#: ../../include/acl_selectors.php:326 ../../view/theme/diabook/config.php:146
#: ../../view/theme/diabook/theme.php:629
msgid "show"
msgstr "показывать"
#: ../../include/network.php:847
msgid "view full size"
msgstr "посмотреть в полный размер"
#: ../../include/acl_selectors.php:327 ../../view/theme/diabook/config.php:146
#: ../../view/theme/diabook/theme.php:629
msgid "don't show"
msgstr "не показывать"
#: ../../include/oembed.php:137
msgid "Embedded content"
msgstr "Встроенное содержание"
#: ../../include/auth.php:38
msgid "Logged out."
msgstr "Выход из системы."
#: ../../include/oembed.php:146
msgid "Embedding disabled"
msgstr "Встраивание отключено"
#: ../../include/auth.php:112 ../../include/auth.php:175
#: ../../mod/openid.php:93
msgid "Login failed."
msgstr "Войти не удалось."
#: ../../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/auth.php:128
msgid "The error message was:"
msgstr ""
#: ../../include/uimport.php:61
msgid "Error decoding account file"
@ -8543,152 +786,256 @@ msgstr[2] ""
msgid "Done. You can now login with your username and password"
msgstr ""
#: ../../include/group.php:25
#: ../../include/bb2diaspora.php:393 ../../include/event.php:11
#: ../../mod/localtime.php:12
msgid "l F d, Y \\@ g:i A"
msgstr "l F d, Y \\@ g:i A"
#: ../../include/bb2diaspora.php:399 ../../include/event.php:20
msgid "Starts:"
msgstr "Начало:"
#: ../../include/bb2diaspora.php:407 ../../include/event.php:30
msgid "Finishes:"
msgstr "Окончание:"
#: ../../include/bb2diaspora.php:415 ../../include/event.php:40
#: ../../mod/directory.php:134 ../../mod/events.php:471 ../../boot.php:1406
msgid "Location:"
msgstr "Откуда:"
#: ../../include/follow.php:27 ../../mod/dfrn_request.php:502
msgid "Disallowed profile URL."
msgstr "Запрещенный URL профиля."
#: ../../include/follow.php:32
msgid "Connect URL missing."
msgstr "Connect-URL отсутствует."
#: ../../include/follow.php:59
msgid ""
"A deleted group with this name was revived. Existing item permissions "
"<strong>may</strong> apply to this group and any future members. If this is "
"not what you intended, please create another group with a different name."
"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 "Нет URL браузера, который соответствует этому адресу."
#: ../../include/follow.php:86
msgid ""
"Unable to match @-style Identity Address with a known protocol or email "
"contact."
msgstr ""
#: ../../include/group.php:207
msgid "Default privacy group for new contacts"
#: ../../include/follow.php:87
msgid "Use mailto: in front of address to force email check."
msgstr ""
#: ../../include/group.php:226
msgid "Everybody"
msgstr "Каждый"
#: ../../include/follow.php:93
msgid ""
"The profile address specified belongs to a network which has been disabled "
"on this site."
msgstr "Указанный адрес профиля принадлежит сети, недоступной на этом сайта."
#: ../../include/group.php:249
msgid "edit"
msgstr "редактировать"
#: ../../include/follow.php:103
msgid ""
"Limited profile. This person will be unable to receive direct/personal "
"notifications from you."
msgstr "Ограниченный профиль. Этот человек не сможет получить прямые / личные уведомления от вас."
#: ../../include/group.php:271
msgid "Edit group"
msgstr "Редактировать группу"
#: ../../include/follow.php:205
msgid "Unable to retrieve contact information."
msgstr "Невозможно получить контактную информацию."
#: ../../include/group.php:272
msgid "Create a new group"
msgstr "Создать новую группу"
#: ../../include/follow.php:259
msgid "following"
msgstr "следует"
#: ../../include/group.php:273
msgid "Contacts not in any group"
#: ../../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 "Неверный URL OpenID"
#: ../../include/user.php:67
msgid "Please enter the required information."
msgstr "Пожалуйста, введите необходимую информацию."
#: ../../include/user.php:81
msgid "Please use a shorter name."
msgstr "Пожалуйста, используйте более короткое имя."
#: ../../include/user.php:83
msgid "Name too short."
msgstr "Имя слишком короткое."
#: ../../include/user.php:98
msgid "That doesn't appear to be your full (First Last) name."
msgstr "Кажется, что это ваше неполное (Имя Фамилия) имя."
#: ../../include/user.php:103
msgid "Your email domain is not among those allowed on this site."
msgstr "Домен вашего адреса электронной почты не относится к числу разрешенных на этом сайте."
#: ../../include/user.php:106
msgid "Not a valid email address."
msgstr "Неверный адрес электронной почты."
#: ../../include/user.php:116
msgid "Cannot use that email."
msgstr "Нельзя использовать этот Email."
#: ../../include/user.php:122
msgid ""
"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and "
"must also begin with a letter."
msgstr "Ваш \"ник\" может содержать только \"a-z\", \"0-9\", \"-\", и \"_\", а также должен начинаться с буквы."
#: ../../include/user.php:128 ../../include/user.php:226
msgid "Nickname is already registered. Please choose another."
msgstr "Такой ник уже зарегистрирован. Пожалуйста, выберите другой."
#: ../../include/user.php:138
msgid ""
"Nickname was once registered here and may not be re-used. Please choose "
"another."
msgstr ""
#: ../../include/nav.php:46 ../../boot.php:948
msgid "Logout"
msgstr "Выход"
#: ../../include/user.php:154
msgid "SERIOUS ERROR: Generation of security keys failed."
msgstr "СЕРЬЕЗНАЯ ОШИБКА: генерация ключей безопасности не удалась."
#: ../../include/nav.php:46
msgid "End this session"
msgstr "Конец этой сессии"
#: ../../include/user.php:212
msgid "An error occurred during registration. Please try again."
msgstr "Ошибка при регистрации. Пожалуйста, попробуйте еще раз."
#: ../../include/nav.php:49 ../../boot.php:1724
msgid "Status"
msgstr "Статус"
#: ../../include/user.php:247
msgid "An error occurred creating your default profile. Please try again."
msgstr "Ошибка создания вашего профиля. Пожалуйста, попробуйте еще раз."
#: ../../include/nav.php:64
msgid "Sign in"
msgstr "Вход"
#: ../../include/user.php:325 ../../include/user.php:332
#: ../../include/user.php:339 ../../mod/photos.php:154
#: ../../mod/photos.php:725 ../../mod/photos.php:1183
#: ../../mod/photos.php:1206 ../../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 ../../view/theme/diabook/theme.php:493
msgid "Profile Photos"
msgstr "Фотографии профиля"
#: ../../include/nav.php:77
msgid "Home Page"
msgstr "Главная страница"
#: ../../include/contact_selectors.php:32
msgid "Unknown | Not categorised"
msgstr "Неизвестно | Не определено"
#: ../../include/nav.php:81
msgid "Create an account"
msgstr "Создать аккаунт"
#: ../../include/contact_selectors.php:33
msgid "Block immediately"
msgstr "Блокировать немедленно"
#: ../../include/nav.php:86
msgid "Help and documentation"
msgstr "Помощь и документация"
#: ../../include/contact_selectors.php:34
msgid "Shady, spammer, self-marketer"
msgstr "Тролль, спаммер, рассылает рекламу"
#: ../../include/nav.php:89
msgid "Apps"
msgstr "Приложения"
#: ../../include/contact_selectors.php:35
msgid "Known to me, but no opinion"
msgstr "Известные мне, но нет определенного мнения"
#: ../../include/nav.php:89
msgid "Addon applications, utilities, games"
msgstr "Дополнительные приложения, утилиты, игры"
#: ../../include/contact_selectors.php:36
msgid "OK, probably harmless"
msgstr "Хорошо, наверное, безвредные"
#: ../../include/nav.php:91
msgid "Search site content"
msgstr "Поиск по сайту"
#: ../../include/contact_selectors.php:37
msgid "Reputable, has my trust"
msgstr "Уважаемые, есть мое доверие"
#: ../../include/nav.php:101
msgid "Conversations on this site"
msgstr "Беседы на этом сайте"
#: ../../include/contact_selectors.php:56
msgid "Frequently"
msgstr "Часто"
#: ../../include/nav.php:103
msgid "Directory"
msgstr "Каталог"
#: ../../include/contact_selectors.php:57
msgid "Hourly"
msgstr "Раз в час"
#: ../../include/nav.php:103
msgid "People directory"
msgstr "Каталог участников"
#: ../../include/contact_selectors.php:58
msgid "Twice daily"
msgstr "Два раза в день"
#: ../../include/nav.php:113
msgid "Conversations from your friends"
msgstr "Беседы с друзьями"
#: ../../include/contact_selectors.php:59
msgid "Daily"
msgstr "Ежедневно"
#: ../../include/nav.php:114
msgid "Network Reset"
msgstr ""
#: ../../include/contact_selectors.php:60
msgid "Weekly"
msgstr "Еженедельно"
#: ../../include/nav.php:114
msgid "Load Network page with no filters"
msgstr ""
#: ../../include/contact_selectors.php:61
msgid "Monthly"
msgstr "Ежемесячно"
#: ../../include/nav.php:122
msgid "Friend Requests"
msgstr "Запросы на добавление в список друзей"
#: ../../include/contact_selectors.php:76 ../../mod/dfrn_request.php:840
msgid "Friendica"
msgstr "Friendica"
#: ../../include/nav.php:124
msgid "See all notifications"
msgstr "Посмотреть все уведомления"
#: ../../include/contact_selectors.php:77
msgid "OStatus"
msgstr "OStatus"
#: ../../include/nav.php:125
msgid "Mark all system notifications seen"
msgstr ""
#: ../../include/contact_selectors.php:78
msgid "RSS/Atom"
msgstr "RSS/Atom"
#: ../../include/nav.php:129
msgid "Private mail"
msgstr "Личная почта"
#: ../../include/contact_selectors.php:79
#: ../../include/contact_selectors.php:86 ../../mod/admin.php:754
#: ../../mod/admin.php:765
msgid "Email"
msgstr "Эл. почта"
#: ../../include/nav.php:130
msgid "Inbox"
msgstr "Входящие"
#: ../../include/contact_selectors.php:80 ../../mod/settings.php:681
#: ../../mod/dfrn_request.php:842
msgid "Diaspora"
msgstr "Diaspora"
#: ../../include/nav.php:131
msgid "Outbox"
msgstr "Исходящие"
#: ../../include/contact_selectors.php:81 ../../mod/newmember.php:49
#: ../../mod/newmember.php:51
msgid "Facebook"
msgstr "Facebook"
#: ../../include/nav.php:135
msgid "Manage"
msgstr "Управлять"
#: ../../include/contact_selectors.php:82
msgid "Zot!"
msgstr "Zot!"
#: ../../include/nav.php:135
msgid "Manage other pages"
msgstr "Управление другими страницами"
#: ../../include/contact_selectors.php:83
msgid "LinkedIn"
msgstr "LinkedIn"
#: ../../include/nav.php:140 ../../boot.php:1238
msgid "Profiles"
msgstr "Профили"
#: ../../include/contact_selectors.php:84
msgid "XMPP/IM"
msgstr "XMPP/IM"
#: ../../include/nav.php:140
msgid "Manage/Edit Profiles"
msgstr ""
#: ../../include/contact_selectors.php:85
msgid "MySpace"
msgstr "MySpace"
#: ../../include/nav.php:142
msgid "Manage/edit friends and contacts"
msgstr "Управление / редактирование друзей и контактов"
#: ../../include/nav.php:149
msgid "Site setup and configuration"
msgstr "Установка и конфигурация сайта"
#: ../../include/nav.php:173
msgid "Nothing new here"
msgstr "Ничего нового здесь"
#: ../../include/contact_selectors.php:87
msgid "Google+"
msgstr "Google+"
#: ../../include/contact_widgets.php:6
msgid "Add New Contact"
@ -8702,6 +1049,11 @@ msgstr "Введите адрес или веб-местонахождение"
msgid "Example: bob@example.com, http://example.com/barbara"
msgstr "Пример: bob@example.com, http://example.com/barbara"
#: ../../include/contact_widgets.php:9 ../../mod/suggest.php:88
#: ../../mod/match.php:58 ../../boot.php:1338
msgid "Connect"
msgstr "Подключить"
#: ../../include/contact_widgets.php:23
#, php-format
msgid "%d invitation available"
@ -8726,10 +1078,28 @@ msgstr "Подключиться/Следовать"
msgid "Examples: Robert Morgenstein, Fishing"
msgstr "Примеры: Роберт Morgenstein, Рыбалка"
#: ../../include/contact_widgets.php:33 ../../mod/contacts.php:613
#: ../../mod/directory.php:61
msgid "Find"
msgstr "Найти"
#: ../../include/contact_widgets.php:34 ../../mod/suggest.php:66
#: ../../view/theme/diabook/theme.php:520
msgid "Friend Suggestions"
msgstr "Предложения друзей"
#: ../../include/contact_widgets.php:35 ../../view/theme/diabook/theme.php:519
msgid "Similar Interests"
msgstr "Похожие интересы"
#: ../../include/contact_widgets.php:36
msgid "Random Profile"
msgstr ""
#: ../../include/contact_widgets.php:37 ../../view/theme/diabook/theme.php:521
msgid "Invite Friends"
msgstr "Пригласить друзей"
#: ../../include/contact_widgets.php:70
msgid "Networks"
msgstr "Сети"
@ -8750,18 +1120,40 @@ msgstr "Всё"
msgid "Categories"
msgstr "Категории"
#: ../../include/auth.php:36
msgid "Logged out."
msgstr "Выход из системы."
#: ../../include/contact_widgets.php:199 ../../mod/contacts.php:343
#, php-format
msgid "%d contact in common"
msgid_plural "%d contacts in common"
msgstr[0] "%d Контакт"
msgstr[1] "%d Контактов"
msgstr[2] "%d Контактов"
#: ../../include/auth.php:126
msgid ""
"We encountered a problem while logging in with the OpenID you provided. "
"Please check the correct spelling of the ID."
#: ../../include/contact_widgets.php:204 ../../mod/content.php:629
#: ../../object/Item.php:365 ../../boot.php:652
msgid "show more"
msgstr "показать больше"
#: ../../include/Scrape.php:583
msgid " on Last.fm"
msgstr ""
#: ../../include/auth.php:126
msgid "The error message was:"
#: ../../include/bbcode.php:210 ../../include/bbcode.php:545
msgid "Image/photo"
msgstr "Изображение / Фото"
#: ../../include/bbcode.php:272
#, php-format
msgid ""
"<span><a href=\"%s\" target=\"external-link\">%s</a> wrote the following <a "
"href=\"%s\" target=\"external-link\">post</a>"
msgstr ""
#: ../../include/bbcode.php:510 ../../include/bbcode.php:530
msgid "$1 wrote:"
msgstr "$1 написал:"
#: ../../include/bbcode.php:553 ../../include/bbcode.php:554
msgid "Encrypted content"
msgstr ""
#: ../../include/datetime.php:43 ../../include/datetime.php:45
@ -8788,10 +1180,26 @@ msgstr "никогда"
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 "час"
@ -8821,32 +1229,66 @@ msgstr "сек."
msgid "%1$d %2$s ago"
msgstr "%1$d %2$s назад"
#: ../../include/datetime.php:472 ../../include/items.php:1695
#: ../../include/datetime.php:472 ../../include/items.php:1771
#, php-format
msgid "%s's birthday"
msgstr ""
#: ../../include/datetime.php:473 ../../include/items.php:1696
#: ../../include/datetime.php:473 ../../include/items.php:1772
#, php-format
msgid "Happy Birthday %s"
msgstr ""
#: ../../include/onepoll.php:414
msgid "From: "
msgstr "От: "
#: ../../include/bbcode.php:202 ../../include/bbcode.php:423
msgid "Image/photo"
msgstr "Изображение / Фото"
#: ../../include/bbcode.php:388 ../../include/bbcode.php:408
msgid "$1 wrote:"
msgstr "$1 написал:"
#: ../../include/bbcode.php:427 ../../include/bbcode.php:428
msgid "Encrypted content"
#: ../../include/plugin.php:439 ../../include/plugin.php:441
msgid "Click here to upgrade."
msgstr ""
#: ../../include/plugin.php:447
msgid "This action exceeds the limits set by your subscription plan."
msgstr ""
#: ../../include/plugin.php:452
msgid "This action is not available under your subscription plan."
msgstr ""
#: ../../include/delivery.php:457 ../../include/notifier.php:775
msgid "(no subject)"
msgstr "(без темы)"
#: ../../include/delivery.php:468 ../../include/enotify.php:28
#: ../../include/notifier.php:785
msgid "noreply"
msgstr "без ответа"
#: ../../include/diaspora.php:621 ../../include/conversation.php:172
#: ../../mod/dfrn_confirm.php:477
#, php-format
msgid "%1$s is now friends with %2$s"
msgstr "%1$s и %2$s теперь друзья"
#: ../../include/diaspora.php:704
msgid "Sharing notification from Diaspora network"
msgstr "Делиться уведомлениями из сети Diaspora"
#: ../../include/diaspora.php:1874 ../../include/conversation.php:121
#: ../../include/conversation.php:130 ../../include/conversation.php:249
#: ../../include/conversation.php:258 ../../mod/subthread.php:87
#: ../../mod/tagger.php:62 ../../mod/like.php:151 ../../mod/like.php:322
#: ../../view/theme/diabook/theme.php:459
#: ../../view/theme/diabook/theme.php:468
msgid "status"
msgstr "статус"
#: ../../include/diaspora.php:1890 ../../include/conversation.php:137
#: ../../mod/like.php:168 ../../view/theme/diabook/theme.php:473
#, php-format
msgid "%1$s likes %2$s's %3$s"
msgstr "%1$s нравится %3$s от %2$s "
#: ../../include/diaspora.php:2262
msgid "Attachments:"
msgstr "Вложения:"
#: ../../include/features.php:23
msgid "General Features"
msgstr ""
@ -8873,7 +1315,7 @@ msgstr ""
#: ../../include/features.php:32
msgid "Post Preview"
msgstr ""
msgstr "предварительный просмотр"
#: ../../include/features.php:32
msgid "Allow previewing posts and comments before publishing them"
@ -8885,7 +1327,7 @@ msgstr ""
#: ../../include/features.php:38
msgid "Search by Date"
msgstr ""
msgstr "Поиск по датам"
#: ../../include/features.php:38
msgid "Ability to select posts by date ranges"
@ -8901,12 +1343,17 @@ msgstr ""
#: ../../include/features.php:40
msgid "Network Filter"
msgstr ""
msgstr "Фильтр сети"
#: ../../include/features.php:40
msgid "Enable widget to display Network posts only from selected network"
msgstr ""
#: ../../include/features.php:41 ../../mod/search.php:30
#: ../../mod/network.php:233
msgid "Saved Searches"
msgstr "запомненные поиски"
#: ../../include/features.php:41
msgid "Save search terms for re-use"
msgstr ""
@ -8995,18 +1442,335 @@ msgstr ""
msgid "Ability to mark special posts with a star indicator"
msgstr ""
#: ../../include/dba.php:41
#: ../../include/dba.php:44
#, php-format
msgid "Cannot locate DNS info for database server '%s'"
msgstr "Не могу найти информацию для DNS-сервера базы данных '%s'"
#: ../../include/message.php:15 ../../include/message.php:172
msgid "[no subject]"
msgstr "[без темы]"
#: ../../include/group.php:25
msgid ""
"A deleted group with this name was revived. Existing item permissions "
"<strong>may</strong> 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/acl_selectors.php:286
msgid "Visible to everybody"
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:270 ../../mod/newmember.php:66
msgid "Groups"
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/group.php:275 ../../mod/network.php:234
msgid "add"
msgstr "добавить"
#: ../../include/conversation.php:140 ../../mod/like.php:170
#, php-format
msgid "%1$s doesn't like %2$s's %3$s"
msgstr "%1$s не нравится %3$s от %2$s "
#: ../../include/conversation.php:207
#, php-format
msgid "%1$s poked %2$s"
msgstr ""
#: ../../include/conversation.php:227 ../../mod/mood.php:62
#, php-format
msgid "%1$s is currently %2$s"
msgstr ""
#: ../../include/conversation.php:266 ../../mod/tagger.php:95
#, php-format
msgid "%1$s tagged %2$s's %3$s with %4$s"
msgstr "%1$s tagged %2$s's %3$s в %4$s"
#: ../../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 "%1$s пометил %2$s %3$s как Фаворит"
#: ../../include/conversation.php:587 ../../mod/content.php:461
#: ../../mod/content.php:763 ../../object/Item.php:126
msgid "Select"
msgstr "Выберите"
#: ../../include/conversation.php:588 ../../mod/settings.php:623
#: ../../mod/admin.php:758 ../../mod/group.php:171 ../../mod/photos.php:1637
#: ../../mod/content.php:462 ../../mod/content.php:764
#: ../../object/Item.php:127
msgid "Delete"
msgstr "Удалить"
#: ../../include/conversation.php:627 ../../mod/content.php:495
#: ../../mod/content.php:875 ../../mod/content.php:876
#: ../../object/Item.php:306 ../../object/Item.php:307
#, php-format
msgid "View %s's profile @ %s"
msgstr "Просмотреть профиль %s [@ %s]"
#: ../../include/conversation.php:639 ../../object/Item.php:297
msgid "Categories:"
msgstr "Категории:"
#: ../../include/conversation.php:640 ../../object/Item.php:298
msgid "Filed under:"
msgstr "В рубрике:"
#: ../../include/conversation.php:647 ../../mod/content.php:505
#: ../../mod/content.php:887 ../../object/Item.php:320
#, php-format
msgid "%s from %s"
msgstr "%s с %s"
#: ../../include/conversation.php:662 ../../mod/content.php:520
msgid "View in context"
msgstr "Смотреть в контексте"
#: ../../include/conversation.php:664 ../../include/conversation.php:1060
#: ../../mod/editpost.php:124 ../../mod/wallmessage.php:156
#: ../../mod/message.php:334 ../../mod/message.php:565
#: ../../mod/photos.php:1532 ../../mod/content.php:522
#: ../../mod/content.php:906 ../../object/Item.php:341
msgid "Please wait"
msgstr "Пожалуйста, подождите"
#: ../../include/conversation.php:728
msgid "remove"
msgstr "удалить"
#: ../../include/conversation.php:732
msgid "Delete Selected Items"
msgstr "Удалить выбранные позиции"
#: ../../include/conversation.php:831
msgid "Follow Thread"
msgstr ""
#: ../../include/conversation.php:900
#, php-format
msgid "%s likes this."
msgstr "%s нравится это."
#: ../../include/conversation.php:900
#, php-format
msgid "%s doesn't like this."
msgstr "%s не нравится это."
#: ../../include/conversation.php:905
#, php-format
msgid "<span %1$s>%2$d people</span> like this"
msgstr ""
#: ../../include/conversation.php:908
#, php-format
msgid "<span %1$s>%2$d people</span> don't like this"
msgstr ""
#: ../../include/conversation.php:922
msgid "and"
msgstr "и"
#: ../../include/conversation.php:928
#, php-format
msgid ", and %d other people"
msgstr ", и %d других чел."
#: ../../include/conversation.php:930
#, php-format
msgid "%s like this."
msgstr "%s нравится это."
#: ../../include/conversation.php:930
#, php-format
msgid "%s don't like this."
msgstr "%s не нравится это."
#: ../../include/conversation.php:957 ../../include/conversation.php:975
msgid "Visible to <strong>everybody</strong>"
msgstr "Видимое <strong>всем</strong>"
#: ../../include/conversation.php:958 ../../include/conversation.php:976
#: ../../mod/wallmessage.php:127 ../../mod/wallmessage.php:135
#: ../../mod/message.php:283 ../../mod/message.php:291
#: ../../mod/message.php:466 ../../mod/message.php:474
msgid "Please enter a link URL:"
msgstr "Пожалуйста, введите URL ссылки:"
#: ../../include/conversation.php:959 ../../include/conversation.php:977
msgid "Please enter a video link/URL:"
msgstr ""
#: ../../include/conversation.php:960 ../../include/conversation.php:978
msgid "Please enter an audio link/URL:"
msgstr ""
#: ../../include/conversation.php:961 ../../include/conversation.php:979
msgid "Tag term:"
msgstr ""
#: ../../include/conversation.php:962 ../../include/conversation.php:980
#: ../../mod/filer.php:30
msgid "Save to Folder:"
msgstr "Сохранить в папку:"
#: ../../include/conversation.php:963 ../../include/conversation.php:981
msgid "Where are you right now?"
msgstr "И где вы сейчас?"
#: ../../include/conversation.php:964
msgid "Delete item(s)?"
msgstr ""
#: ../../include/conversation.php:1006
msgid "Post to Email"
msgstr "Отправить на Email"
#: ../../include/conversation.php:1041 ../../mod/photos.php:1531
msgid "Share"
msgstr "Поделиться"
#: ../../include/conversation.php:1042 ../../mod/editpost.php:110
#: ../../mod/wallmessage.php:154 ../../mod/message.php:332
#: ../../mod/message.php:562
msgid "Upload photo"
msgstr "Загрузить фото"
#: ../../include/conversation.php:1043 ../../mod/editpost.php:111
msgid "upload photo"
msgstr "загрузить фото"
#: ../../include/conversation.php:1044 ../../mod/editpost.php:112
msgid "Attach file"
msgstr "Приложить файл"
#: ../../include/conversation.php:1045 ../../mod/editpost.php:113
msgid "attach file"
msgstr "приложить файл"
#: ../../include/conversation.php:1046 ../../mod/editpost.php:114
#: ../../mod/wallmessage.php:155 ../../mod/message.php:333
#: ../../mod/message.php:563
msgid "Insert web link"
msgstr "Вставить веб-ссылку"
#: ../../include/conversation.php:1047 ../../mod/editpost.php:115
msgid "web link"
msgstr "веб-ссылка"
#: ../../include/conversation.php:1048 ../../mod/editpost.php:116
msgid "Insert video link"
msgstr "Вставить ссылку видео"
#: ../../include/conversation.php:1049 ../../mod/editpost.php:117
msgid "video link"
msgstr "видео-ссылка"
#: ../../include/conversation.php:1050 ../../mod/editpost.php:118
msgid "Insert audio link"
msgstr "Вставить ссылку аудио"
#: ../../include/conversation.php:1051 ../../mod/editpost.php:119
msgid "audio link"
msgstr "аудио-ссылка"
#: ../../include/conversation.php:1052 ../../mod/editpost.php:120
msgid "Set your location"
msgstr "Задать ваше местоположение"
#: ../../include/conversation.php:1053 ../../mod/editpost.php:121
msgid "set location"
msgstr "установить местонахождение"
#: ../../include/conversation.php:1054 ../../mod/editpost.php:122
msgid "Clear browser location"
msgstr "Очистить местонахождение браузера"
#: ../../include/conversation.php:1055 ../../mod/editpost.php:123
msgid "clear location"
msgstr "убрать местонахождение"
#: ../../include/conversation.php:1057 ../../mod/editpost.php:137
msgid "Set title"
msgstr "Установить заголовок"
#: ../../include/conversation.php:1059 ../../mod/editpost.php:139
msgid "Categories (comma-separated list)"
msgstr "Категории (список через запятую)"
#: ../../include/conversation.php:1061 ../../mod/editpost.php:125
msgid "Permission settings"
msgstr "Настройки разрешений"
#: ../../include/conversation.php:1062
msgid "permissions"
msgstr "разрешения"
#: ../../include/conversation.php:1070 ../../mod/editpost.php:133
msgid "CC: email addresses"
msgstr "Копии на email адреса"
#: ../../include/conversation.php:1071 ../../mod/editpost.php:134
msgid "Public post"
msgstr "Публичное сообщение"
#: ../../include/conversation.php:1073 ../../mod/editpost.php:140
msgid "Example: bob@example.com, mary@example.com"
msgstr "Пример: bob@example.com, mary@example.com"
#: ../../include/conversation.php:1077 ../../mod/editpost.php:145
#: ../../mod/photos.php:1553 ../../mod/photos.php:1597
#: ../../mod/photos.php:1680 ../../mod/content.php:742
#: ../../object/Item.php:662
msgid "Preview"
msgstr "предварительный просмотр"
#: ../../include/conversation.php:1080 ../../include/items.php:3981
#: ../../mod/contacts.php:249 ../../mod/settings.php:561
#: ../../mod/settings.php:587 ../../mod/dfrn_request.php:848
#: ../../mod/suggest.php:32 ../../mod/tagrm.php:11 ../../mod/tagrm.php:94
#: ../../mod/editpost.php:148 ../../mod/fbrowser.php:81
#: ../../mod/fbrowser.php:116 ../../mod/message.php:212
#: ../../mod/photos.php:202 ../../mod/photos.php:290
msgid "Cancel"
msgstr "Отмена"
#: ../../include/conversation.php:1086
msgid "Post to Groups"
msgstr ""
#: ../../include/conversation.php:1087
msgid "Post to Contacts"
msgstr ""
#: ../../include/conversation.php:1088
msgid "Private post"
msgstr "Личное сообщение"
#: ../../include/enotify.php:16
msgid "Friendica Notification"
@ -9024,7 +1788,7 @@ msgstr "%s администратор"
#: ../../include/enotify.php:40
#, php-format
msgid "%s <!item_type!>"
msgstr ""
msgstr "%s <!item_type!>"
#: ../../include/enotify.php:44
#, php-format
@ -9050,284 +1814,470 @@ msgstr "личное сообщение"
msgid "Please visit %s to view and/or reply to your private messages."
msgstr ""
#: ../../include/enotify.php:89
#: ../../include/enotify.php:90
#, php-format
msgid "%1$s commented on [url=%2$s]a %3$s[/url]"
msgstr ""
#: ../../include/enotify.php:96
#: ../../include/enotify.php:97
#, php-format
msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]"
msgstr ""
#: ../../include/enotify.php:104
#: ../../include/enotify.php:105
#, php-format
msgid "%1$s commented on [url=%2$s]your %3$s[/url]"
msgstr ""
#: ../../include/enotify.php:114
#: ../../include/enotify.php:115
#, php-format
msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s"
msgstr ""
#: ../../include/enotify.php:115
#: ../../include/enotify.php:116
#, php-format
msgid "%s commented on an item/conversation you have been following."
msgstr ""
#: ../../include/enotify.php:118 ../../include/enotify.php:133
#: ../../include/enotify.php:146 ../../include/enotify.php:164
#: ../../include/enotify.php:177
#: ../../include/enotify.php:119 ../../include/enotify.php:134
#: ../../include/enotify.php:147 ../../include/enotify.php:165
#: ../../include/enotify.php:178
#, php-format
msgid "Please visit %s to view and/or reply to the conversation."
msgstr ""
#: ../../include/enotify.php:125
#: ../../include/enotify.php:126
#, php-format
msgid "[Friendica:Notify] %s posted to your profile wall"
msgstr ""
#: ../../include/enotify.php:127
#: ../../include/enotify.php:128
#, php-format
msgid "%1$s posted to your profile wall at %2$s"
msgstr ""
#: ../../include/enotify.php:129
#: ../../include/enotify.php:130
#, php-format
msgid "%1$s posted to [url=%2$s]your wall[/url]"
msgstr ""
#: ../../include/enotify.php:140
#: ../../include/enotify.php:141
#, php-format
msgid "[Friendica:Notify] %s tagged you"
msgstr ""
#: ../../include/enotify.php:141
#: ../../include/enotify.php:142
#, php-format
msgid "%1$s tagged you at %2$s"
msgstr ""
#: ../../include/enotify.php:142
#: ../../include/enotify.php:143
#, php-format
msgid "%1$s [url=%2$s]tagged you[/url]."
msgstr ""
#: ../../include/enotify.php:154
#: ../../include/enotify.php:155
#, php-format
msgid "[Friendica:Notify] %1$s poked you"
msgstr ""
#: ../../include/enotify.php:155
#: ../../include/enotify.php:156
#, php-format
msgid "%1$s poked you at %2$s"
msgstr ""
#: ../../include/enotify.php:156
#: ../../include/enotify.php:157
#, php-format
msgid "%1$s [url=%2$s]poked you[/url]."
msgstr ""
#: ../../include/enotify.php:171
#: ../../include/enotify.php:172
#, php-format
msgid "[Friendica:Notify] %s tagged your post"
msgstr ""
#: ../../include/enotify.php:172
#: ../../include/enotify.php:173
#, php-format
msgid "%1$s tagged your post at %2$s"
msgstr ""
#: ../../include/enotify.php:173
#: ../../include/enotify.php:174
#, php-format
msgid "%1$s tagged [url=%2$s]your post[/url]"
msgstr ""
#: ../../include/enotify.php:184
#: ../../include/enotify.php:185
msgid "[Friendica:Notify] Introduction received"
msgstr "[Friendica:Сообщение] получен запрос"
#: ../../include/enotify.php:185
#: ../../include/enotify.php:186
#, php-format
msgid "You've received an introduction from '%1$s' at %2$s"
msgstr ""
#: ../../include/enotify.php:186
#: ../../include/enotify.php:187
#, php-format
msgid "You've received [url=%1$s]an introduction[/url] from %2$s."
msgstr ""
#: ../../include/enotify.php:189 ../../include/enotify.php:207
#: ../../include/enotify.php:190 ../../include/enotify.php:208
#, php-format
msgid "You may visit their profile at %s"
msgstr ""
#: ../../include/enotify.php:191
#: ../../include/enotify.php:192
#, php-format
msgid "Please visit %s to approve or reject the introduction."
msgstr "Посетите %s для подтверждения или отказа запроса."
#: ../../include/enotify.php:198
#: ../../include/enotify.php:199
msgid "[Friendica:Notify] Friend suggestion received"
msgstr ""
#: ../../include/enotify.php:199
#: ../../include/enotify.php:200
#, php-format
msgid "You've received a friend suggestion from '%1$s' at %2$s"
msgstr ""
#: ../../include/enotify.php:200
#: ../../include/enotify.php:201
#, php-format
msgid ""
"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s."
msgstr ""
#: ../../include/enotify.php:205
#: ../../include/enotify.php:206
msgid "Name:"
msgstr "Имя:"
#: ../../include/enotify.php:206
#: ../../include/enotify.php:207
msgid "Photo:"
msgstr "Фото:"
#: ../../include/enotify.php:209
#: ../../include/enotify.php:210
#, php-format
msgid "Please visit %s to approve or reject the suggestion."
msgstr ""
#: ../../include/follow.php:32
msgid "Connect URL missing."
msgstr "Connect-URL отсутствует."
#: ../../include/message.php:15 ../../include/message.php:172
msgid "[no subject]"
msgstr "[без темы]"
#: ../../include/follow.php:59
msgid ""
"This site is not configured to allow communications with other networks."
msgstr "Данный сайт не настроен так, чтобы держать связь с другими сетями."
#: ../../include/message.php:144 ../../mod/item.php:443
#: ../../mod/wall_upload.php:135 ../../mod/wall_upload.php:144
#: ../../mod/wall_upload.php:151
msgid "Wall Photos"
msgstr "Фото стены"
#: ../../include/follow.php:60 ../../include/follow.php:80
msgid "No compatible communication protocols or feeds were discovered."
msgstr "Обнаружены несовместимые протоколы связи или каналы."
#: ../../include/nav.php:34 ../../mod/navigation.php:20
msgid "Nothing new here"
msgstr "Ничего нового здесь"
#: ../../include/follow.php:78
msgid "The profile address specified does not provide adequate information."
msgstr "Указанный адрес профиля не дает адекватной информации."
#: ../../include/nav.php:38 ../../mod/navigation.php:24
msgid "Clear notifications"
msgstr "Стереть уведомления"
#: ../../include/follow.php:82
msgid "An author or name was not found."
msgstr "Автор или имя не найдены."
#: ../../include/nav.php:73 ../../boot.php:1057
msgid "Logout"
msgstr "Выход"
#: ../../include/follow.php:84
msgid "No browser URL could be matched to this address."
msgstr "Нет URL браузера, который соответствует этому адресу."
#: ../../include/nav.php:73
msgid "End this session"
msgstr "Конец этой сессии"
#: ../../include/follow.php:86
msgid ""
"Unable to match @-style Identity Address with a known protocol or email "
"contact."
#: ../../include/nav.php:76 ../../boot.php:1861
msgid "Status"
msgstr "Статус"
#: ../../include/nav.php:76 ../../include/nav.php:143
#: ../../view/theme/diabook/theme.php:87
msgid "Your posts and conversations"
msgstr "Ваши сообщения и беседы"
#: ../../include/nav.php:77 ../../view/theme/diabook/theme.php:88
msgid "Your profile page"
msgstr "Страница Вашего профиля"
#: ../../include/nav.php:78 ../../mod/fbrowser.php:25
#: ../../view/theme/diabook/theme.php:90 ../../boot.php:1875
msgid "Photos"
msgstr "Фото"
#: ../../include/nav.php:78 ../../view/theme/diabook/theme.php:90
msgid "Your photos"
msgstr "Ваши фотографии"
#: ../../include/nav.php:79 ../../mod/events.php:370
#: ../../view/theme/diabook/theme.php:91 ../../boot.php:1885
msgid "Events"
msgstr "Мероприятия"
#: ../../include/nav.php:79 ../../view/theme/diabook/theme.php:91
msgid "Your events"
msgstr "Ваши события"
#: ../../include/nav.php:80 ../../view/theme/diabook/theme.php:92
msgid "Personal notes"
msgstr "Личные заметки"
#: ../../include/nav.php:80 ../../view/theme/diabook/theme.php:92
msgid "Your personal photos"
msgstr "Ваши личные фотографии"
#: ../../include/nav.php:91 ../../boot.php:1058
msgid "Login"
msgstr "Вход"
#: ../../include/nav.php:91
msgid "Sign in"
msgstr "Вход"
#: ../../include/nav.php:104 ../../include/nav.php:143
#: ../../mod/notifications.php:93 ../../view/theme/diabook/theme.php:87
msgid "Home"
msgstr "Главная"
#: ../../include/nav.php:104
msgid "Home Page"
msgstr "Главная страница"
#: ../../include/nav.php:108 ../../mod/register.php:275 ../../boot.php:1033
msgid "Register"
msgstr "Регистрация"
#: ../../include/nav.php:108
msgid "Create an account"
msgstr "Создать аккаунт"
#: ../../include/nav.php:113 ../../mod/help.php:84
msgid "Help"
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 ../../mod/community.php:32
#: ../../view/theme/diabook/theme.php:93
msgid "Community"
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:140 ../../mod/notifications.php:83
msgid "Network"
msgstr "Сеть"
#: ../../include/nav.php:140
msgid "Conversations from your friends"
msgstr "Беседы с друзьями"
#: ../../include/nav.php:141
msgid "Network Reset"
msgstr ""
#: ../../include/follow.php:87
msgid "Use mailto: in front of address to force email check."
#: ../../include/nav.php:141
msgid "Load Network page with no filters"
msgstr ""
#: ../../include/follow.php:93
msgid ""
"The profile address specified belongs to a network which has been disabled "
"on this site."
msgstr "Указанный адрес профиля принадлежит сети, недоступной на этом сайта."
#: ../../include/nav.php:149 ../../mod/notifications.php:98
msgid "Introductions"
msgstr "Запросы"
#: ../../include/follow.php:103
msgid ""
"Limited profile. This person will be unable to receive direct/personal "
"notifications from you."
msgstr "Ограниченный профиль. Этот человек не сможет получить прямые / личные уведомления от вас."
#: ../../include/nav.php:149
msgid "Friend Requests"
msgstr "Запросы на добавление в список друзей"
#: ../../include/follow.php:205
msgid "Unable to retrieve contact information."
msgstr "Невозможно получить контактную информацию."
#: ../../include/nav.php:150 ../../mod/notifications.php:220
msgid "Notifications"
msgstr "Уведомления"
#: ../../include/follow.php:259
msgid "following"
msgstr "следует"
#: ../../include/nav.php:151
msgid "See all notifications"
msgstr "Посмотреть все уведомления"
#: ../../include/items.php:3363
#: ../../include/nav.php:152
msgid "Mark all system notifications seen"
msgstr ""
#: ../../include/nav.php:156 ../../mod/message.php:182
#: ../../mod/notifications.php:103
msgid "Messages"
msgstr "Сообщения"
#: ../../include/nav.php:156
msgid "Private mail"
msgstr "Личная почта"
#: ../../include/nav.php:157
msgid "Inbox"
msgstr "Входящие"
#: ../../include/nav.php:158
msgid "Outbox"
msgstr "Исходящие"
#: ../../include/nav.php:159 ../../mod/message.php:9
msgid "New Message"
msgstr "Новое сообщение"
#: ../../include/nav.php:162
msgid "Manage"
msgstr "Управлять"
#: ../../include/nav.php:162
msgid "Manage other pages"
msgstr "Управление другими страницами"
#: ../../include/nav.php:165
msgid "Delegations"
msgstr ""
#: ../../include/nav.php:165 ../../mod/delegate.php:121
msgid "Delegate Page Management"
msgstr "Делегировать управление страницей"
#: ../../include/nav.php:167 ../../mod/settings.php:74 ../../mod/admin.php:849
#: ../../mod/admin.php:1057 ../../mod/uexport.php:48
#: ../../mod/newmember.php:22 ../../view/theme/diabook/theme.php:537
#: ../../view/theme/diabook/theme.php:658
msgid "Settings"
msgstr "Настройки"
#: ../../include/nav.php:167 ../../mod/settings.php:30 ../../mod/uexport.php:9
msgid "Account settings"
msgstr "Настройки аккаунта"
#: ../../include/nav.php:169 ../../boot.php:1360
msgid "Profiles"
msgstr "Профили"
#: ../../include/nav.php:169
msgid "Manage/Edit Profiles"
msgstr ""
#: ../../include/nav.php:171 ../../mod/contacts.php:607
#: ../../view/theme/diabook/theme.php:89
msgid "Contacts"
msgstr "Контакты"
#: ../../include/nav.php:171
msgid "Manage/edit friends and contacts"
msgstr "Управление / редактирование друзей и контактов"
#: ../../include/nav.php:178 ../../mod/admin.php:120
msgid "Admin"
msgstr "Администратор"
#: ../../include/nav.php:178
msgid "Site setup and configuration"
msgstr "Установка и конфигурация сайта"
#: ../../include/nav.php:182
msgid "Navigation"
msgstr ""
#: ../../include/nav.php:182
msgid "Site map"
msgstr ""
#: ../../include/network.php:875
msgid "view full size"
msgstr "посмотреть в полный размер"
#: ../../include/oembed.php:138
msgid "Embedded content"
msgstr "Встроенное содержание"
#: ../../include/oembed.php:147
msgid "Embedding disabled"
msgstr "Встраивание отключено"
#: ../../include/items.php:3446 ../../mod/dfrn_request.php:716
msgid "[Name Withheld]"
msgstr "[Имя не разглашается]"
#: ../../include/items.php:3453
msgid "A new person is sharing with you at "
msgstr "Новый человек делится с вами"
#: ../../include/items.php:3363
#: ../../include/items.php:3453
msgid "You have a new follower at "
msgstr "У вас есть новый фолловер на "
#: ../../include/items.php:4047
#: ../../include/items.php:3937 ../../mod/admin.php:158
#: ../../mod/admin.php:797 ../../mod/admin.php:997 ../../mod/viewsrc.php:15
#: ../../mod/notice.php:15 ../../mod/display.php:51 ../../mod/display.php:213
msgid "Item not found."
msgstr "Пункт не найден."
#: ../../include/items.php:3976
msgid "Do you really want to delete this item?"
msgstr ""
#: ../../include/items.php:3978 ../../mod/profiles.php:606
#: ../../mod/api.php:105 ../../mod/register.php:239 ../../mod/contacts.php:246
#: ../../mod/settings.php:934 ../../mod/settings.php:940
#: ../../mod/settings.php:948 ../../mod/settings.php:952
#: ../../mod/settings.php:957 ../../mod/settings.php:963
#: ../../mod/settings.php:969 ../../mod/settings.php:975
#: ../../mod/settings.php:1005 ../../mod/settings.php:1006
#: ../../mod/settings.php:1007 ../../mod/settings.php:1008
#: ../../mod/settings.php:1009 ../../mod/dfrn_request.php:836
#: ../../mod/suggest.php:29 ../../mod/message.php:209
msgid "Yes"
msgstr "Да"
#: ../../include/items.php:4101 ../../mod/profiles.php:146
#: ../../mod/profiles.php:567 ../../mod/notes.php:20 ../../mod/nogroup.php:25
#: ../../mod/item.php:140 ../../mod/item.php:156 ../../mod/allfriends.php:9
#: ../../mod/api.php:26 ../../mod/api.php:31 ../../mod/register.php:40
#: ../../mod/regmod.php:118 ../../mod/attach.php:33 ../../mod/contacts.php:147
#: ../../mod/settings.php:91 ../../mod/settings.php:542
#: ../../mod/settings.php:547 ../../mod/crepair.php:115
#: ../../mod/delegate.php:6 ../../mod/poke.php:135
#: ../../mod/dfrn_confirm.php:53 ../../mod/suggest.php:56
#: ../../mod/editpost.php:10 ../../mod/events.php:140 ../../mod/uimport.php:23
#: ../../mod/follow.php:9 ../../mod/fsuggest.php:78 ../../mod/group.php:19
#: ../../mod/viewcontacts.php:22 ../../mod/wall_attach.php:55
#: ../../mod/wall_upload.php:66 ../../mod/invite.php:15
#: ../../mod/invite.php:101 ../../mod/wallmessage.php:9
#: ../../mod/wallmessage.php:33 ../../mod/wallmessage.php:79
#: ../../mod/wallmessage.php:103 ../../mod/manage.php:96
#: ../../mod/message.php:38 ../../mod/message.php:174 ../../mod/mood.php:114
#: ../../mod/network.php:6 ../../mod/notifications.php:66
#: ../../mod/photos.php:133 ../../mod/photos.php:1044
#: ../../mod/display.php:209 ../../mod/install.php:151
#: ../../mod/profile_photo.php:19 ../../mod/profile_photo.php:169
#: ../../mod/profile_photo.php:180 ../../mod/profile_photo.php:193
#: ../../index.php:346
msgid "Permission denied."
msgstr "Нет разрешения."
#: ../../include/items.php:4171
msgid "Archives"
msgstr ""
#: ../../include/user.php:38
msgid "An invitation is required."
msgstr "Требуется приглашение."
#: ../../include/user.php:43
msgid "Invitation could not be verified."
msgstr "Приглашение не может быть проверено."
#: ../../include/user.php:51
msgid "Invalid OpenID url"
msgstr "Неверный URL OpenID"
#: ../../include/user.php:66
msgid "Please enter the required information."
msgstr "Пожалуйста, введите необходимую информацию."
#: ../../include/user.php:80
msgid "Please use a shorter name."
msgstr "Пожалуйста, используйте более короткое имя."
#: ../../include/user.php:82
msgid "Name too short."
msgstr "Имя слишком короткое."
#: ../../include/user.php:97
msgid "That doesn't appear to be your full (First Last) name."
msgstr "Кажется, что это ваше неполное (Имя Фамилия) имя."
#: ../../include/user.php:102
msgid "Your email domain is not among those allowed on this site."
msgstr "Домен вашего адреса электронной почты не относится к числу разрешенных на этом сайте."
#: ../../include/user.php:105
msgid "Not a valid email address."
msgstr "Неверный адрес электронной почты."
#: ../../include/user.php:115
msgid "Cannot use that email."
msgstr "Нельзя использовать этот Email."
#: ../../include/user.php:121
msgid ""
"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and "
"must also begin with a letter."
msgstr "Ваш \"ник\" может содержать только \"a-z\", \"0-9\", \"-\", и \"_\", а также должен начинаться с буквы."
#: ../../include/user.php:127 ../../include/user.php:225
msgid "Nickname is already registered. Please choose another."
msgstr "Такой ник уже зарегистрирован. Пожалуйста, выберите другой."
#: ../../include/user.php:137
msgid ""
"Nickname was once registered here and may not be re-used. Please choose "
"another."
msgstr ""
#: ../../include/user.php:153
msgid "SERIOUS ERROR: Generation of security keys failed."
msgstr "СЕРЬЕЗНАЯ ОШИБКА: генерация ключей безопасности не удалась."
#: ../../include/user.php:211
msgid "An error occurred during registration. Please try again."
msgstr "Ошибка при регистрации. Пожалуйста, попробуйте еще раз."
#: ../../include/user.php:246
msgid "An error occurred creating your default profile. Please try again."
msgstr "Ошибка создания вашего профиля. Пожалуйста, попробуйте еще раз."
msgstr "Архивы"
#: ../../include/security.php:22
msgid "Welcome "
@ -9341,326 +2291,4793 @@ msgstr "Пожалуйста, загрузите фотографию профи
msgid "Welcome back "
msgstr "Добро пожаловать обратно, "
#: ../../include/security.php:357
#: ../../include/security.php:366
msgid ""
"The form security token was not correct. This probably happened because the "
"form has been opened for too long (>3 hours) before submitting it."
msgstr ""
#: ../../include/Contact.php:115
msgid "stopped following"
msgstr "остановлено следование"
#: ../../mod/profiles.php:18 ../../mod/profiles.php:133
#: ../../mod/profiles.php:160 ../../mod/profiles.php:579
#: ../../mod/dfrn_confirm.php:62
msgid "Profile not found."
msgstr "Профиль не найден."
#: ../../include/Contact.php:225 ../../include/conversation.php:795
msgid "Poke"
#: ../../mod/profiles.php:37
msgid "Profile deleted."
msgstr "Профиль удален."
#: ../../mod/profiles.php:55 ../../mod/profiles.php:89
msgid "Profile-"
msgstr "Профиль-"
#: ../../mod/profiles.php:74 ../../mod/profiles.php:117
msgid "New profile created."
msgstr "Новый профиль создан."
#: ../../mod/profiles.php:95
msgid "Profile unavailable to clone."
msgstr "Профиль недоступен для клонирования."
#: ../../mod/profiles.php:170
msgid "Profile Name is required."
msgstr "Необходимо имя профиля."
#: ../../mod/profiles.php:317
msgid "Marital Status"
msgstr ""
#: ../../include/Contact.php:226 ../../include/conversation.php:789
msgid "View Status"
#: ../../mod/profiles.php:321
msgid "Romantic Partner"
msgstr ""
#: ../../include/Contact.php:227 ../../include/conversation.php:790
msgid "View Profile"
#: ../../mod/profiles.php:325
msgid "Likes"
msgstr ""
#: ../../include/Contact.php:228 ../../include/conversation.php:791
msgid "View Photos"
#: ../../mod/profiles.php:329
msgid "Dislikes"
msgstr ""
#: ../../include/Contact.php:229 ../../include/Contact.php:242
#: ../../include/conversation.php:792
msgid "Network Posts"
#: ../../mod/profiles.php:333
msgid "Work/Employment"
msgstr ""
#: ../../include/Contact.php:230 ../../include/Contact.php:242
#: ../../include/conversation.php:793
msgid "Edit Contact"
#: ../../mod/profiles.php:336
msgid "Religion"
msgstr "Религия"
#: ../../mod/profiles.php:340
msgid "Political Views"
msgstr ""
#: ../../include/Contact.php:231 ../../include/Contact.php:242
#: ../../include/conversation.php:794
msgid "Send PM"
msgstr "Отправить ЛС"
#: ../../mod/profiles.php:344
msgid "Gender"
msgstr "Пол"
#: ../../include/conversation.php:206
#, php-format
msgid "%1$s poked %2$s"
#: ../../mod/profiles.php:348
msgid "Sexual Preference"
msgstr ""
#: ../../include/conversation.php:290
msgid "post/item"
#: ../../mod/profiles.php:352
msgid "Homepage"
msgstr ""
#: ../../include/conversation.php:291
#, php-format
msgid "%1$s marked %2$s's %3$s as favorite"
msgstr "%1$s пометил %2$s %3$s как Фаворит"
#: ../../mod/profiles.php:356
msgid "Interests"
msgstr "Хобби / Интересы"
#: ../../include/conversation.php:599 ../../object/Item.php:225
msgid "Categories:"
msgstr ""
#: ../../mod/profiles.php:360
msgid "Address"
msgstr "Адрес"
#: ../../include/conversation.php:600 ../../object/Item.php:226
msgid "Filed under:"
msgstr ""
#: ../../mod/profiles.php:367
msgid "Location"
msgstr "Местонахождение"
#: ../../include/conversation.php:685
msgid "remove"
msgstr "удалить"
#: ../../mod/profiles.php:450
msgid "Profile updated."
msgstr "Профиль обновлен."
#: ../../include/conversation.php:689
msgid "Delete Selected Items"
msgstr "Удалить выбранные позиции"
#: ../../include/conversation.php:788
msgid "Follow Thread"
msgstr ""
#: ../../include/conversation.php:857
#, php-format
msgid "%s likes this."
msgstr "%s нравится это."
#: ../../include/conversation.php:857
#, php-format
msgid "%s doesn't like this."
msgstr "%s не нравится это."
#: ../../include/conversation.php:861
#, php-format
msgid "<span %1$s>%2$d people</span> like this."
msgstr "<span %1$s>%2$d чел.</span> нравится это."
#: ../../include/conversation.php:863
#, php-format
msgid "<span %1$s>%2$d people</span> don't like this."
msgstr "<span %1$s>%2$d чел.</span> не нравится это."
#: ../../include/conversation.php:869
msgid "and"
#: ../../mod/profiles.php:517
msgid " and "
msgstr "и"
#: ../../include/conversation.php:875
#: ../../mod/profiles.php:525
msgid "public profile"
msgstr "публичный профиль"
#: ../../mod/profiles.php:528
#, php-format
msgid ", and %d other people"
msgstr ", и %d других чел."
msgid "%1$s changed %2$s to &ldquo;%3$s&rdquo;"
msgstr ""
#: ../../include/conversation.php:877
#: ../../mod/profiles.php:529
#, php-format
msgid "%s like this."
msgstr "%s нравится это."
msgid " - Visit %1$s's %2$s"
msgstr " - Посетить профиль %1$s [%2$s]"
#: ../../include/conversation.php:877
#: ../../mod/profiles.php:532
#, php-format
msgid "%s don't like this."
msgstr "%s не нравится это."
#: ../../include/conversation.php:904 ../../include/conversation.php:922
msgid "Visible to <strong>everybody</strong>"
msgstr "Видимое <strong>всем</strong>"
#: ../../include/conversation.php:906 ../../include/conversation.php:924
msgid "Please enter a video link/URL:"
msgid "%1$s has an updated %2$s, changing %3$s."
msgstr ""
#: ../../include/conversation.php:907 ../../include/conversation.php:925
msgid "Please enter an audio link/URL:"
#: ../../mod/profiles.php:605
msgid "Hide your contact/friend list from viewers of this profile?"
msgstr "Скрывать ваш список контактов / друзей от посетителей этого профиля?"
#: ../../mod/profiles.php:607 ../../mod/api.php:106 ../../mod/register.php:240
#: ../../mod/settings.php:934 ../../mod/settings.php:940
#: ../../mod/settings.php:948 ../../mod/settings.php:952
#: ../../mod/settings.php:957 ../../mod/settings.php:963
#: ../../mod/settings.php:969 ../../mod/settings.php:975
#: ../../mod/settings.php:1005 ../../mod/settings.php:1006
#: ../../mod/settings.php:1007 ../../mod/settings.php:1008
#: ../../mod/settings.php:1009 ../../mod/dfrn_request.php:837
msgid "No"
msgstr "Нет"
#: ../../mod/profiles.php:625
msgid "Edit Profile Details"
msgstr "Редактировать детали профиля"
#: ../../mod/profiles.php:626 ../../mod/contacts.php:386
#: ../../mod/settings.php:560 ../../mod/settings.php:670
#: ../../mod/settings.php:739 ../../mod/settings.php:811
#: ../../mod/settings.php:1037 ../../mod/crepair.php:166
#: ../../mod/poke.php:199 ../../mod/admin.php:480 ../../mod/admin.php:751
#: ../../mod/admin.php:890 ../../mod/admin.php:1090 ../../mod/admin.php:1177
#: ../../mod/events.php:478 ../../mod/fsuggest.php:107 ../../mod/group.php:87
#: ../../mod/invite.php:140 ../../mod/localtime.php:45
#: ../../mod/manage.php:110 ../../mod/message.php:335
#: ../../mod/message.php:564 ../../mod/mood.php:137 ../../mod/photos.php:1078
#: ../../mod/photos.php:1199 ../../mod/photos.php:1501
#: ../../mod/photos.php:1552 ../../mod/photos.php:1596
#: ../../mod/photos.php:1679 ../../mod/install.php:248
#: ../../mod/install.php:286 ../../mod/content.php:733
#: ../../object/Item.php:653 ../../view/theme/cleanzero/config.php:80
#: ../../view/theme/diabook/config.php:152
#: ../../view/theme/diabook/theme.php:642 ../../view/theme/dispy/config.php:70
#: ../../view/theme/quattro/config.php:64
msgid "Submit"
msgstr "Подтвердить"
#: ../../mod/profiles.php:627
msgid "Change Profile Photo"
msgstr ""
#: ../../include/conversation.php:908 ../../include/conversation.php:926
msgid "Tag term:"
#: ../../mod/profiles.php:628
msgid "View this profile"
msgstr "Просмотреть этот профиль"
#: ../../mod/profiles.php:629
msgid "Create a new profile using these settings"
msgstr "Создать новый профиль, используя эти настройки"
#: ../../mod/profiles.php:630
msgid "Clone this profile"
msgstr "Клонировать этот профиль"
#: ../../mod/profiles.php:631
msgid "Delete this profile"
msgstr "Удалить этот профиль"
#: ../../mod/profiles.php:632
msgid "Profile Name:"
msgstr "Имя профиля:"
#: ../../mod/profiles.php:633
msgid "Your Full Name:"
msgstr "Ваше полное имя:"
#: ../../mod/profiles.php:634
msgid "Title/Description:"
msgstr "Заголовок / Описание:"
#: ../../mod/profiles.php:635
msgid "Your Gender:"
msgstr "Ваш пол:"
#: ../../mod/profiles.php:636
#, php-format
msgid "Birthday (%s):"
msgstr "День рождения (%s):"
#: ../../mod/profiles.php:637
msgid "Street Address:"
msgstr "Адрес:"
#: ../../mod/profiles.php:638
msgid "Locality/City:"
msgstr "Город / Населенный пункт:"
#: ../../mod/profiles.php:639
msgid "Postal/Zip Code:"
msgstr "Почтовый индекс:"
#: ../../mod/profiles.php:640
msgid "Country:"
msgstr "Страна:"
#: ../../mod/profiles.php:641
msgid "Region/State:"
msgstr "Район / Область:"
#: ../../mod/profiles.php:642
msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
msgstr "<span class=\"heart\">&hearts;</span> Семейное положение:"
#: ../../mod/profiles.php:643
msgid "Who: (if applicable)"
msgstr "Кто: (если требуется)"
#: ../../mod/profiles.php:644
msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
msgstr "Примеры: cathy123, Кэти Уильямс, cathy@example.com"
#: ../../mod/profiles.php:645
msgid "Since [date]:"
msgstr ""
#: ../../include/conversation.php:910 ../../include/conversation.php:928
msgid "Where are you right now?"
msgstr "И где вы сейчас?"
#: ../../mod/profiles.php:647
msgid "Homepage URL:"
msgstr "Адрес домашней странички:"
#: ../../include/conversation.php:911
msgid "Delete item(s)?"
#: ../../mod/profiles.php:650
msgid "Religious Views:"
msgstr "Религиозные взгляды:"
#: ../../mod/profiles.php:651
msgid "Public Keywords:"
msgstr "Общественные ключевые слова:"
#: ../../mod/profiles.php:652
msgid "Private Keywords:"
msgstr "Личные ключевые слова:"
#: ../../mod/profiles.php:655
msgid "Example: fishing photography software"
msgstr "Пример: рыбалка фотографии программное обеспечение"
#: ../../mod/profiles.php:656
msgid "(Used for suggesting potential friends, can be seen by others)"
msgstr "(Используется для предложения потенциальным друзьям, могут увидеть другие)"
#: ../../mod/profiles.php:657
msgid "(Used for searching profiles, never shown to others)"
msgstr "(Используется для поиска профилей, никогда не показывается другим)"
#: ../../mod/profiles.php:658
msgid "Tell us about yourself..."
msgstr "Расскажите нам о себе ..."
#: ../../mod/profiles.php:659
msgid "Hobbies/Interests"
msgstr "Хобби / Интересы"
#: ../../mod/profiles.php:660
msgid "Contact information and Social Networks"
msgstr "Контактная информация и социальные сети"
#: ../../mod/profiles.php:661
msgid "Musical interests"
msgstr "Музыкальные интересы"
#: ../../mod/profiles.php:662
msgid "Books, literature"
msgstr "Книги, литература"
#: ../../mod/profiles.php:663
msgid "Television"
msgstr "Телевидение"
#: ../../mod/profiles.php:664
msgid "Film/dance/culture/entertainment"
msgstr "Кино / танцы / культура / развлечения"
#: ../../mod/profiles.php:665
msgid "Love/romance"
msgstr "Любовь / романтика"
#: ../../mod/profiles.php:666
msgid "Work/employment"
msgstr "Работа / занятость"
#: ../../mod/profiles.php:667
msgid "School/education"
msgstr "Школа / образование"
#: ../../mod/profiles.php:672
msgid ""
"This is your <strong>public</strong> profile.<br />It <strong>may</strong> "
"be visible to anybody using the internet."
msgstr "Это ваш <strong>публичный</strong> профиль. <br /> Он <strong>может</strong> быть виден каждому, используя Интернет."
#: ../../mod/profiles.php:682 ../../mod/directory.php:111
msgid "Age: "
msgstr "Возраст: "
#: ../../mod/profiles.php:721
msgid "Edit/Manage Profiles"
msgstr "Редактировать профиль"
#: ../../mod/profiles.php:722 ../../boot.php:1366 ../../boot.php:1392
msgid "Change profile photo"
msgstr "Изменить фото профиля"
#: ../../mod/profiles.php:723 ../../boot.php:1367
msgid "Create New Profile"
msgstr "Создать новый профиль"
#: ../../mod/profiles.php:734 ../../boot.php:1377
msgid "Profile Image"
msgstr "Фото профиля"
#: ../../mod/profiles.php:736 ../../boot.php:1380
msgid "visible to everybody"
msgstr "видимый всем"
#: ../../mod/profiles.php:737 ../../boot.php:1381
msgid "Edit visibility"
msgstr "Редактировать видимость"
#: ../../mod/profperm.php:19 ../../mod/group.php:72 ../../index.php:345
msgid "Permission denied"
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:105 ../../mod/group.php:224
msgid "Click on a contact to add or remove."
msgstr "Нажмите на контакт, чтобы добавить или удалить."
#: ../../mod/profperm.php:114
msgid "Visible To"
msgstr "Видимый для"
#: ../../mod/profperm.php:130
msgid "All Contacts (with secure profile access)"
msgstr "Все контакты (с безопасным доступом к профилю)"
#: ../../mod/notes.php:44 ../../boot.php:1892
msgid "Personal Notes"
msgstr "Личные заметки"
#: ../../mod/nogroup.php:40 ../../mod/contacts.php:395
#: ../../mod/contacts.php:585 ../../mod/viewcontacts.php:62
#, php-format
msgid "Visit %s's profile [%s]"
msgstr "Посетить профиль %s [%s]"
#: ../../mod/nogroup.php:41 ../../mod/contacts.php:586
msgid "Edit contact"
msgstr "Редактировать контакт"
#: ../../mod/nogroup.php:59
msgid "Contacts who are not members of a group"
msgstr "Контакты, которые не являются членами группы"
#: ../../mod/ping.php:238
msgid "{0} wants to be your friend"
msgstr "{0} хочет стать Вашим другом"
#: ../../mod/ping.php:243
msgid "{0} sent you a message"
msgstr "{0} отправил Вам сообщение"
#: ../../mod/ping.php:248
msgid "{0} requested registration"
msgstr "{0} требуемая регистрация"
#: ../../mod/ping.php:254
#, php-format
msgid "{0} commented %s's post"
msgstr "{0} прокомментировал сообщение от %s"
#: ../../mod/ping.php:259
#, php-format
msgid "{0} liked %s's post"
msgstr "{0} нравится сообщение от %s"
#: ../../mod/ping.php:264
#, php-format
msgid "{0} disliked %s's post"
msgstr "{0} не нравится сообщение от %s"
#: ../../mod/ping.php:269
#, php-format
msgid "{0} is now friends with %s"
msgstr "{0} теперь друзья с %s"
#: ../../mod/ping.php:274
msgid "{0} posted"
msgstr "{0} опубликовано"
#: ../../mod/ping.php:279
#, php-format
msgid "{0} tagged %s's post with #%s"
msgstr "{0} пометил сообщение %s с #%s"
#: ../../mod/ping.php:285
msgid "{0} mentioned you in a post"
msgstr "{0} упоменул Вас в сообщение"
#: ../../mod/item.php:105
msgid "Unable to locate original post."
msgstr "Не удалось найти оригинальный пост."
#: ../../mod/item.php:307
msgid "Empty post discarded."
msgstr "Пустое сообщение отбрасывается."
#: ../../mod/item.php:869
msgid "System error. Post not saved."
msgstr "Системная ошибка. Сообщение не сохранено."
#: ../../mod/item.php:894
#, php-format
msgid ""
"This message was sent to you by %s, a member of the Friendica social "
"network."
msgstr ""
#: ../../include/conversation.php:990
msgid "permissions"
msgstr "разрешения"
#: ../../mod/item.php:896
#, php-format
msgid "You may visit them online at %s"
msgstr "Вы можете посетить их в онлайне на %s"
#: ../../include/plugin.php:389 ../../include/plugin.php:391
msgid "Click here to upgrade."
#: ../../mod/item.php:897
msgid ""
"Please contact the sender by replying to this post if you do not wish to "
"receive these messages."
msgstr "Пожалуйста, свяжитесь с отправителем, ответив на это сообщение, если вы не хотите получать эти сообщения."
#: ../../mod/item.php:901
#, php-format
msgid "%s posted an update."
msgstr "%s отправил/а/ обновление."
#: ../../mod/allfriends.php:34
#, php-format
msgid "Friends of %s"
msgstr "%s Друзья"
#: ../../mod/allfriends.php:40
msgid "No friends to display."
msgstr "Нет друзей."
#: ../../mod/search.php:21 ../../mod/network.php:224
msgid "Remove term"
msgstr "Удалить элемент"
#: ../../mod/search.php:89 ../../mod/dfrn_request.php:761
#: ../../mod/directory.php:31 ../../mod/viewcontacts.php:17
#: ../../mod/photos.php:914 ../../mod/display.php:19
#: ../../mod/community.php:18
msgid "Public access denied."
msgstr "Свободный доступ закрыт."
#: ../../mod/search.php:180 ../../mod/search.php:206
#: ../../mod/community.php:61 ../../mod/community.php:89
msgid "No results."
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/register.php:91 ../../mod/regmod.php:54
#, php-format
msgid "Registration details for %s"
msgstr "Подробности регистрации для %s"
#: ../../mod/register.php:99
msgid ""
"Registration successful. Please check your email for further instructions."
msgstr "Регистрация успешна. Пожалуйста, проверьте свою электронную почту для получения дальнейших инструкций."
#: ../../mod/register.php:103
msgid "Failed to send email message. Here is the message that failed."
msgstr "Невозможно отправить сообщение электронной почтой. Вот сообщение, которое не удалось."
#: ../../mod/register.php:108
msgid "Your registration can not be processed."
msgstr "Ваша регистрация не может быть обработана."
#: ../../mod/register.php:145
#, php-format
msgid "Registration request at %s"
msgstr "Запрос на регистрацию на %s"
#: ../../mod/register.php:154
msgid "Your registration is pending approval by the site owner."
msgstr "Ваша регистрация в ожидании одобрения владельцем сайта."
#: ../../mod/register.php:192 ../../mod/uimport.php:50
msgid ""
"This site has exceeded the number of allowed daily account registrations. "
"Please try again tomorrow."
msgstr "Этот сайт превысил допустимое количество ежедневных регистраций. Пожалуйста, повторите попытку завтра."
#: ../../mod/register.php:220
msgid ""
"You may (optionally) fill in this form via OpenID by supplying your OpenID "
"and clicking 'Register'."
msgstr "Вы можете (по желанию), заполнить эту форму с помощью OpenID, поддерживая ваш OpenID и нажав клавишу \"Регистрация\"."
#: ../../mod/register.php:221
msgid ""
"If you are not familiar with OpenID, please leave that field blank and fill "
"in the rest of the items."
msgstr "Если вы не знакомы с OpenID, пожалуйста, оставьте это поле пустым и заполните остальные элементы."
#: ../../mod/register.php:222
msgid "Your OpenID (optional): "
msgstr "Ваш OpenID (необязательно):"
#: ../../mod/register.php:236
msgid "Include your profile in member directory?"
msgstr "Включить ваш профиль в каталог участников?"
#: ../../mod/register.php:257
msgid "Membership on this site is by invitation only."
msgstr "Членство на сайте только по приглашению."
#: ../../mod/register.php:258
msgid "Your invitation ID: "
msgstr "ID вашего приглашения:"
#: ../../mod/register.php:261 ../../mod/admin.php:481
msgid "Registration"
msgstr "Регистрация"
#: ../../mod/register.php:269
msgid "Your Full Name (e.g. Joe Smith): "
msgstr "Ваше полное имя (например, Joe Smith): "
#: ../../mod/register.php:270
msgid "Your Email Address: "
msgstr "Ваш адрес электронной почты: "
#: ../../mod/register.php:271
msgid ""
"Choose a profile nickname. This must begin with a text character. Your "
"profile address on this site will then be "
"'<strong>nickname@$sitename</strong>'."
msgstr "Выбор псевдонима профиля. Он должен начинаться с буквы. Адрес вашего профиля на данном сайте будет в этом случае '<strong>nickname@$sitename</strong>'."
#: ../../mod/register.php:272
msgid "Choose a nickname: "
msgstr "Выберите псевдоним: "
#: ../../mod/regmod.php:63
msgid "Account approved."
msgstr "Аккаунт утвержден."
#: ../../mod/regmod.php:100
#, php-format
msgid "Registration revoked for %s"
msgstr "Регистрация отменена для %s"
#: ../../mod/regmod.php:112
msgid "Please login."
msgstr "Пожалуйста, войдите с паролем."
#: ../../mod/attach.php:8
msgid "Item not available."
msgstr "Пункт не доступен."
#: ../../mod/attach.php:20
msgid "Item was not found."
msgstr "Пункт не был найден."
#: ../../mod/removeme.php:45 ../../mod/removeme.php:48
msgid "Remove My Account"
msgstr "Удалить мой аккаунт"
#: ../../mod/removeme.php:46
msgid ""
"This will completely remove your account. Once this has been done it is not "
"recoverable."
msgstr "Это позволит полностью удалить ваш аккаунт. Как только это будет сделано, аккаунт восстановлению не подлежит."
#: ../../mod/removeme.php:47
msgid "Please enter your password for verification:"
msgstr "Пожалуйста, введите свой пароль для проверки:"
#: ../../mod/babel.php:17
msgid "Source (bbcode) text:"
msgstr ""
#: ../../include/plugin.php:397
msgid "This action exceeds the limits set by your subscription plan."
#: ../../mod/babel.php:23
msgid "Source (Diaspora) text to convert to BBcode:"
msgstr ""
#: ../../include/plugin.php:402
msgid "This action is not available under your subscription plan."
#: ../../mod/babel.php:31
msgid "Source input: "
msgstr ""
#: ../../boot.php:607
#: ../../mod/babel.php:35
msgid "bb2html (raw HTML): "
msgstr "bb2html (raw HTML): "
#: ../../mod/babel.php:39
msgid "bb2html: "
msgstr "bb2html: "
#: ../../mod/babel.php:43
msgid "bb2html2bb: "
msgstr "bb2html2bb: "
#: ../../mod/babel.php:47
msgid "bb2md: "
msgstr "bb2md: "
#: ../../mod/babel.php:51
msgid "bb2md2html: "
msgstr "bb2md2html: "
#: ../../mod/babel.php:55
msgid "bb2dia2bb: "
msgstr "bb2dia2bb: "
#: ../../mod/babel.php:59
msgid "bb2md2html2bb: "
msgstr "bb2md2html2bb: "
#: ../../mod/babel.php:69
msgid "Source input (Diaspora format): "
msgstr ""
#: ../../mod/babel.php:74
msgid "diaspora2bb: "
msgstr "diaspora2bb: "
#: ../../mod/common.php:42
msgid "Common Friends"
msgstr "Общие друзья"
#: ../../mod/common.php:78
msgid "No contacts in common."
msgstr ""
#: ../../mod/apps.php:7
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/contacts.php:85 ../../mod/contacts.php:165
msgid "Could not access contact record."
msgstr "Не удалось получить доступ к записи контакта."
#: ../../mod/contacts.php:99
msgid "Could not locate selected profile."
msgstr "Не удалось найти выбранный профиль."
#: ../../mod/contacts.php:122
msgid "Contact updated."
msgstr "Контакт обновлен."
#: ../../mod/contacts.php:124 ../../mod/dfrn_request.php:571
msgid "Failed to update contact record."
msgstr "Не удалось обновить запись контакта."
#: ../../mod/contacts.php:187
msgid "Contact has been blocked"
msgstr "Контакт заблокирован"
#: ../../mod/contacts.php:187
msgid "Contact has been unblocked"
msgstr "Контакт разблокирован"
#: ../../mod/contacts.php:201
msgid "Contact has been ignored"
msgstr "Контакт проигнорирован"
#: ../../mod/contacts.php:201
msgid "Contact has been unignored"
msgstr "У контакта отменено игнорирование"
#: ../../mod/contacts.php:220
msgid "Contact has been archived"
msgstr "Контакт заархивирован"
#: ../../mod/contacts.php:220
msgid "Contact has been unarchived"
msgstr "Контакт разархивирован"
#: ../../mod/contacts.php:244
msgid "Do you really want to delete this contact?"
msgstr ""
#: ../../mod/contacts.php:263
msgid "Contact has been removed."
msgstr "Контакт удален."
#: ../../mod/contacts.php:301
#, php-format
msgid "You are mutual friends with %s"
msgstr "У Вас взаимная дружба с %s"
#: ../../mod/contacts.php:305
#, php-format
msgid "You are sharing with %s"
msgstr "Вы делитесь с %s"
#: ../../mod/contacts.php:310
#, php-format
msgid "%s is sharing with you"
msgstr "%s делитса с Вами"
#: ../../mod/contacts.php:327
msgid "Private communications are not available for this contact."
msgstr "Личные коммуникации недоступны для этого контакта."
#: ../../mod/contacts.php:330
msgid "Never"
msgstr "Никогда"
#: ../../mod/contacts.php:334
msgid "(Update was successful)"
msgstr "(Обновление было успешно)"
#: ../../mod/contacts.php:334
msgid "(Update was not successful)"
msgstr "(Обновление не удалось)"
#: ../../mod/contacts.php:336
msgid "Suggest friends"
msgstr "Предложить друзей"
#: ../../mod/contacts.php:340
#, php-format
msgid "Network type: %s"
msgstr "Сеть: %s"
#: ../../mod/contacts.php:348
msgid "View all contacts"
msgstr "Показать все контакты"
#: ../../mod/contacts.php:353 ../../mod/contacts.php:412
#: ../../mod/admin.php:760
msgid "Unblock"
msgstr "Разблокировать"
#: ../../mod/contacts.php:353 ../../mod/contacts.php:412
#: ../../mod/admin.php:759
msgid "Block"
msgstr "Заблокировать"
#: ../../mod/contacts.php:356
msgid "Toggle Blocked status"
msgstr "Изменить статус блокированности (заблокировать/разблокировать)"
#: ../../mod/contacts.php:359 ../../mod/contacts.php:413
msgid "Unignore"
msgstr "Не игнорировать"
#: ../../mod/contacts.php:359 ../../mod/contacts.php:413
#: ../../mod/notifications.php:51 ../../mod/notifications.php:164
#: ../../mod/notifications.php:210
msgid "Ignore"
msgstr "Игнорировать"
#: ../../mod/contacts.php:362
msgid "Toggle Ignored status"
msgstr "Изменить статус игнорирования"
#: ../../mod/contacts.php:366
msgid "Unarchive"
msgstr "Разархивировать"
#: ../../mod/contacts.php:366
msgid "Archive"
msgstr "Архивировать"
#: ../../mod/contacts.php:369
msgid "Toggle Archive status"
msgstr "Сменить статус архивации (архивирова/не архивировать)"
#: ../../mod/contacts.php:372
msgid "Repair"
msgstr "Восстановить"
#: ../../mod/contacts.php:375
msgid "Advanced Contact Settings"
msgstr "Дополнительные Настройки Контакта"
#: ../../mod/contacts.php:381
msgid "Communications lost with this contact!"
msgstr "Связь с контактом утеряна!"
#: ../../mod/contacts.php:384
msgid "Contact Editor"
msgstr "Редактор контакта"
#: ../../mod/contacts.php:387
msgid "Profile Visibility"
msgstr "Видимость профиля"
#: ../../mod/contacts.php:388
#, php-format
msgid ""
"Please choose the profile you would like to display to %s when viewing your "
"profile securely."
msgstr "Пожалуйста, выберите профиль, который вы хотите отображать %s, когда просмотр вашего профиля безопасен."
#: ../../mod/contacts.php:389
msgid "Contact Information / Notes"
msgstr "Информация о контакте / Заметки"
#: ../../mod/contacts.php:390
msgid "Edit contact notes"
msgstr "Редактировать заметки контакта"
#: ../../mod/contacts.php:396
msgid "Block/Unblock contact"
msgstr "Блокировать / Разблокировать контакт"
#: ../../mod/contacts.php:397
msgid "Ignore contact"
msgstr "Игнорировать контакт"
#: ../../mod/contacts.php:398
msgid "Repair URL settings"
msgstr "Восстановить настройки URL"
#: ../../mod/contacts.php:399
msgid "View conversations"
msgstr "Просмотр бесед"
#: ../../mod/contacts.php:401
msgid "Delete contact"
msgstr "Удалить контакт"
#: ../../mod/contacts.php:405
msgid "Last update:"
msgstr "Последнее обновление: "
#: ../../mod/contacts.php:407
msgid "Update public posts"
msgstr "Обновить публичные сообщения"
#: ../../mod/contacts.php:409 ../../mod/admin.php:1235
msgid "Update now"
msgstr "Обновить сейчас"
#: ../../mod/contacts.php:416
msgid "Currently blocked"
msgstr "В настоящее время заблокирован"
#: ../../mod/contacts.php:417
msgid "Currently ignored"
msgstr "В настоящее время игнорируется"
#: ../../mod/contacts.php:418
msgid "Currently archived"
msgstr "В данный момент архивирован"
#: ../../mod/contacts.php:419 ../../mod/notifications.php:157
#: ../../mod/notifications.php:204
msgid "Hide this contact from others"
msgstr "Скрыть этот контакт от других"
#: ../../mod/contacts.php:419
msgid ""
"Replies/likes to your public posts <strong>may</strong> still be visible"
msgstr ""
#: ../../mod/contacts.php:470
msgid "Suggestions"
msgstr "Предложения"
#: ../../mod/contacts.php:473
msgid "Suggest potential friends"
msgstr "Предложить потенциального знакомого"
#: ../../mod/contacts.php:476 ../../mod/group.php:194
msgid "All Contacts"
msgstr "Все контакты"
#: ../../mod/contacts.php:479
msgid "Show all contacts"
msgstr "Показать все контакты"
#: ../../mod/contacts.php:482
msgid "Unblocked"
msgstr "Не блокирован"
#: ../../mod/contacts.php:485
msgid "Only show unblocked contacts"
msgstr "Показать только не блокированные контакты"
#: ../../mod/contacts.php:489
msgid "Blocked"
msgstr "Заблокирован"
#: ../../mod/contacts.php:492
msgid "Only show blocked contacts"
msgstr "Показать только блокированные контакты"
#: ../../mod/contacts.php:496
msgid "Ignored"
msgstr "Игнорирован"
#: ../../mod/contacts.php:499
msgid "Only show ignored contacts"
msgstr "Показать только игнорируемые контакты"
#: ../../mod/contacts.php:503
msgid "Archived"
msgstr "Архивированные"
#: ../../mod/contacts.php:506
msgid "Only show archived contacts"
msgstr ""
#: ../../mod/contacts.php:510
msgid "Hidden"
msgstr "Скрытые"
#: ../../mod/contacts.php:513
msgid "Only show hidden contacts"
msgstr ""
#: ../../mod/contacts.php:561
msgid "Mutual Friendship"
msgstr "Взаимная дружба"
#: ../../mod/contacts.php:565
msgid "is a fan of yours"
msgstr "является вашим поклонником"
#: ../../mod/contacts.php:569
msgid "you are a fan of"
msgstr "Вы - поклонник"
#: ../../mod/contacts.php:611
msgid "Search your contacts"
msgstr "Поиск ваших контактов"
#: ../../mod/contacts.php:612 ../../mod/directory.php:59
msgid "Finding: "
msgstr "Результат поиска: "
#: ../../mod/settings.php:23 ../../mod/photos.php:79
msgid "everybody"
msgstr "каждый"
#: ../../mod/settings.php:35
msgid "Additional features"
msgstr ""
#: ../../mod/settings.php:40 ../../mod/uexport.php:14
msgid "Display settings"
msgstr "Параметры дисплея"
#: ../../mod/settings.php:46 ../../mod/uexport.php:20
msgid "Connector settings"
msgstr "Настройки соединителя"
#: ../../mod/settings.php:51 ../../mod/uexport.php:25
msgid "Plugin settings"
msgstr "Настройки плагина"
#: ../../mod/settings.php:56 ../../mod/uexport.php:30
msgid "Connected apps"
msgstr ""
#: ../../mod/settings.php:61 ../../mod/uexport.php:35 ../../mod/uexport.php:80
msgid "Export personal data"
msgstr "Экспорт личных данных"
#: ../../mod/settings.php:66 ../../mod/uexport.php:40
msgid "Remove account"
msgstr "Удалить аккаунт"
#: ../../mod/settings.php:118
msgid "Missing some important data!"
msgstr "Не хватает важных данных!"
#: ../../mod/settings.php:121 ../../mod/settings.php:586
msgid "Update"
msgstr "Обновление"
#: ../../mod/settings.php:227
msgid "Failed to connect with email account using the settings provided."
msgstr "Не удалось подключиться к аккаунту e-mail, используя указанные настройки."
#: ../../mod/settings.php:232
msgid "Email settings updated."
msgstr "Настройки эл. почты обновлены."
#: ../../mod/settings.php:247
msgid "Features updated"
msgstr "Настройки обновлены"
#: ../../mod/settings.php:307
msgid "Passwords do not match. Password unchanged."
msgstr "Пароли не совпадают. Пароль не изменен."
#: ../../mod/settings.php:312
msgid "Empty passwords are not allowed. Password unchanged."
msgstr "Пустые пароли не допускаются. Пароль не изменен."
#: ../../mod/settings.php:323
msgid "Password changed."
msgstr "Пароль изменен."
#: ../../mod/settings.php:325
msgid "Password update failed. Please try again."
msgstr "Обновление пароля не удалось. Пожалуйста, попробуйте еще раз."
#: ../../mod/settings.php:390
msgid " Please use a shorter name."
msgstr " Пожалуйста, используйте более короткое имя."
#: ../../mod/settings.php:392
msgid " Name too short."
msgstr " Имя слишком короткое."
#: ../../mod/settings.php:398
msgid " Not valid email."
msgstr " Неверный e-mail."
#: ../../mod/settings.php:400
msgid " Cannot change to that email."
msgstr " Невозможно изменить на этот e-mail."
#: ../../mod/settings.php:454
msgid "Private forum has no privacy permissions. Using default privacy group."
msgstr ""
#: ../../mod/settings.php:458
msgid "Private forum has no privacy permissions and no default privacy group."
msgstr ""
#: ../../mod/settings.php:488
msgid "Settings updated."
msgstr "Настройки обновлены."
#: ../../mod/settings.php:559 ../../mod/settings.php:585
#: ../../mod/settings.php:621
msgid "Add application"
msgstr "Добавить приложения"
#: ../../mod/settings.php:562 ../../mod/settings.php:588
#: ../../mod/crepair.php:148 ../../mod/admin.php:754 ../../mod/admin.php:765
msgid "Name"
msgstr "Имя"
#: ../../mod/settings.php:563 ../../mod/settings.php:589
msgid "Consumer Key"
msgstr "Consumer Key"
#: ../../mod/settings.php:564 ../../mod/settings.php:590
msgid "Consumer Secret"
msgstr "Consumer Secret"
#: ../../mod/settings.php:565 ../../mod/settings.php:591
msgid "Redirect"
msgstr "Перенаправление"
#: ../../mod/settings.php:566 ../../mod/settings.php:592
msgid "Icon url"
msgstr "URL символа"
#: ../../mod/settings.php:577
msgid "You can't edit this application."
msgstr "Вы не можете изменить это приложение."
#: ../../mod/settings.php:620
msgid "Connected Apps"
msgstr "Подключенные приложения"
#: ../../mod/settings.php:622 ../../mod/editpost.php:109
#: ../../mod/content.php:751 ../../object/Item.php:117
msgid "Edit"
msgstr "Редактировать"
#: ../../mod/settings.php:624
msgid "Client key starts with"
msgstr "Ключ клиента начинается с"
#: ../../mod/settings.php:625
msgid "No name"
msgstr "Нет имени"
#: ../../mod/settings.php:626
msgid "Remove authorization"
msgstr "Удалить авторизацию"
#: ../../mod/settings.php:638
msgid "No Plugin settings configured"
msgstr "Нет сконфигурированных настроек плагина"
#: ../../mod/settings.php:646
msgid "Plugin Settings"
msgstr "Настройки плагина"
#: ../../mod/settings.php:660
msgid "Off"
msgstr ""
#: ../../mod/settings.php:660
msgid "On"
msgstr ""
#: ../../mod/settings.php:668
msgid "Additional Features"
msgstr ""
#: ../../mod/settings.php:681 ../../mod/settings.php:682
#, php-format
msgid "Built-in support for %s connectivity is %s"
msgstr "Встроенная поддержка для %s подключение %s"
#: ../../mod/settings.php:681 ../../mod/settings.php:682
msgid "enabled"
msgstr "подключено"
#: ../../mod/settings.php:681 ../../mod/settings.php:682
msgid "disabled"
msgstr "отключено"
#: ../../mod/settings.php:682
msgid "StatusNet"
msgstr "StatusNet"
#: ../../mod/settings.php:714
msgid "Email access is disabled on this site."
msgstr "Доступ эл. почты отключен на этом сайте."
#: ../../mod/settings.php:721
msgid "Connector Settings"
msgstr "Настройки соединителя"
#: ../../mod/settings.php:726
msgid "Email/Mailbox Setup"
msgstr "Настройка эл. почты / почтового ящика"
#: ../../mod/settings.php:727
msgid ""
"If you wish to communicate with email contacts using this service "
"(optional), please specify how to connect to your mailbox."
msgstr "Если вы хотите общаться с Email контактами, используя этот сервис (по желанию), пожалуйста, уточните, как подключиться к вашему почтовому ящику."
#: ../../mod/settings.php:728
msgid "Last successful email check:"
msgstr "Последняя успешная проверка электронной почты:"
#: ../../mod/settings.php:730
msgid "IMAP server name:"
msgstr "Имя IMAP сервера:"
#: ../../mod/settings.php:731
msgid "IMAP port:"
msgstr "Порт IMAP:"
#: ../../mod/settings.php:732
msgid "Security:"
msgstr "Безопасность:"
#: ../../mod/settings.php:732 ../../mod/settings.php:737
msgid "None"
msgstr "Ничего"
#: ../../mod/settings.php:733
msgid "Email login name:"
msgstr "Логин эл. почты:"
#: ../../mod/settings.php:734
msgid "Email password:"
msgstr "Пароль эл. почты:"
#: ../../mod/settings.php:735
msgid "Reply-to address:"
msgstr "Адрес для ответа:"
#: ../../mod/settings.php:736
msgid "Send public posts to all email contacts:"
msgstr "Отправлять открытые сообщения на все контакты электронной почты:"
#: ../../mod/settings.php:737
msgid "Action after import:"
msgstr "Действие после импорта:"
#: ../../mod/settings.php:737
msgid "Mark as seen"
msgstr ""
#: ../../mod/settings.php:737
msgid "Move to folder"
msgstr ""
#: ../../mod/settings.php:738
msgid "Move to folder:"
msgstr ""
#: ../../mod/settings.php:769 ../../mod/admin.php:432
msgid "No special theme for mobile devices"
msgstr ""
#: ../../mod/settings.php:809
msgid "Display Settings"
msgstr "Параметры дисплея"
#: ../../mod/settings.php:815 ../../mod/settings.php:826
msgid "Display Theme:"
msgstr "Показать тему:"
#: ../../mod/settings.php:816
msgid "Mobile Theme:"
msgstr ""
#: ../../mod/settings.php:817
msgid "Update browser every xx seconds"
msgstr "Обновление браузера каждые хх секунд"
#: ../../mod/settings.php:817
msgid "Minimum of 10 seconds, no maximum"
msgstr "Минимум 10 секунд, максимума нет"
#: ../../mod/settings.php:818
msgid "Number of items to display per page:"
msgstr ""
#: ../../mod/settings.php:818
msgid "Maximum of 100 items"
msgstr ""
#: ../../mod/settings.php:819
msgid "Don't show emoticons"
msgstr "не показывать emoticons"
#: ../../mod/settings.php:895
msgid "Normal Account Page"
msgstr ""
#: ../../mod/settings.php:896
msgid "This account is a normal personal profile"
msgstr "Этот аккаунт является обычным персональным профилем"
#: ../../mod/settings.php:899
msgid "Soapbox Page"
msgstr ""
#: ../../mod/settings.php:900
msgid "Automatically approve all connection/friend requests as read-only fans"
msgstr "Автоматически одобряются все подключения / запросы в друзья, \"только для чтения\" поклонниками"
#: ../../mod/settings.php:903
msgid "Community Forum/Celebrity Account"
msgstr ""
#: ../../mod/settings.php:904
msgid ""
"Automatically approve all connection/friend requests as read-write fans"
msgstr "Автоматически одобряются все подключения / запросы в друзья, \"для чтения и записей\" поклонников"
#: ../../mod/settings.php:907
msgid "Automatic Friend Page"
msgstr ""
#: ../../mod/settings.php:908
msgid "Automatically approve all connection/friend requests as friends"
msgstr "Автоматически одобряются все подключения / запросы в друзья, расширяется список друзей"
#: ../../mod/settings.php:911
msgid "Private Forum [Experimental]"
msgstr "Личный форум [экспериментально]"
#: ../../mod/settings.php:912
msgid "Private forum - approved members only"
msgstr ""
#: ../../mod/settings.php:924
msgid "OpenID:"
msgstr "OpenID:"
#: ../../mod/settings.php:924
msgid "(Optional) Allow this OpenID to login to this account."
msgstr "(Необязательно) Разрешить этому OpenID входить в этот аккаунт"
#: ../../mod/settings.php:934
msgid "Publish your default profile in your local site directory?"
msgstr "Публиковать ваш профиль по умолчанию в вашем локальном каталоге на сайте?"
#: ../../mod/settings.php:940
msgid "Publish your default profile in the global social directory?"
msgstr "Публиковать ваш профиль по умолчанию в глобальном социальном каталоге?"
#: ../../mod/settings.php:948
msgid "Hide your contact/friend list from viewers of your default profile?"
msgstr "Скрывать ваш список контактов/друзей от посетителей вашего профиля по умолчанию?"
#: ../../mod/settings.php:952
msgid "Hide your profile details from unknown viewers?"
msgstr "Скрыть данные профиля из неизвестных зрителей?"
#: ../../mod/settings.php:957
msgid "Allow friends to post to your profile page?"
msgstr "Разрешить друзьям оставлять сообщения на страницу вашего профиля?"
#: ../../mod/settings.php:963
msgid "Allow friends to tag your posts?"
msgstr "Разрешить друзьям отмечять ваши сообщения?"
#: ../../mod/settings.php:969
msgid "Allow us to suggest you as a potential friend to new members?"
msgstr "Позвольть предлогать Вам потенциальных друзей?"
#: ../../mod/settings.php:975
msgid "Permit unknown people to send you private mail?"
msgstr ""
#: ../../mod/settings.php:983
msgid "Profile is <strong>not published</strong>."
msgstr "Профиль <strong>не публикуется</strong>."
#: ../../mod/settings.php:986 ../../mod/profile_photo.php:248
msgid "or"
msgstr "или"
#: ../../mod/settings.php:991
msgid "Your Identity Address is"
msgstr "Ваш идентификационный адрес"
#: ../../mod/settings.php:1002
msgid "Automatically expire posts after this many days:"
msgstr "Автоматическое истекание срока действия сообщения после стольких дней:"
#: ../../mod/settings.php:1002
msgid "If empty, posts will not expire. Expired posts will be deleted"
msgstr "Если пусто, срок действия сообщений не будет ограничен. Сообщения с истекшим сроком действия будут удалены"
#: ../../mod/settings.php:1003
msgid "Advanced expiration settings"
msgstr "Настройки расширенного окончания срока действия"
#: ../../mod/settings.php:1004
msgid "Advanced Expiration"
msgstr "Расширенное окончание срока действия"
#: ../../mod/settings.php:1005
msgid "Expire posts:"
msgstr "Срок хранения сообщений:"
#: ../../mod/settings.php:1006
msgid "Expire personal notes:"
msgstr "Срок хранения личных заметок:"
#: ../../mod/settings.php:1007
msgid "Expire starred posts:"
msgstr "Срок хранения усеянных сообщений:"
#: ../../mod/settings.php:1008
msgid "Expire photos:"
msgstr "Срок хранения фотографий:"
#: ../../mod/settings.php:1009
msgid "Only expire posts by others:"
msgstr ""
#: ../../mod/settings.php:1035
msgid "Account Settings"
msgstr "Настройки аккаунта"
#: ../../mod/settings.php:1043
msgid "Password Settings"
msgstr "Настройка пароля"
#: ../../mod/settings.php:1044
msgid "New Password:"
msgstr "Новый пароль:"
#: ../../mod/settings.php:1045
msgid "Confirm:"
msgstr "Подтвердите:"
#: ../../mod/settings.php:1045
msgid "Leave password fields blank unless changing"
msgstr "Оставьте поля пароля пустыми, если он не изменяется"
#: ../../mod/settings.php:1049
msgid "Basic Settings"
msgstr "Основные параметры"
#: ../../mod/settings.php:1051
msgid "Email Address:"
msgstr "Адрес электронной почты:"
#: ../../mod/settings.php:1052
msgid "Your Timezone:"
msgstr "Ваш часовой пояс:"
#: ../../mod/settings.php:1053
msgid "Default Post Location:"
msgstr "Местонахождение по умолчанию:"
#: ../../mod/settings.php:1054
msgid "Use Browser Location:"
msgstr "Использовать определение местоположения браузером:"
#: ../../mod/settings.php:1057
msgid "Security and Privacy Settings"
msgstr "Параметры безопасности и конфиденциальности"
#: ../../mod/settings.php:1059
msgid "Maximum Friend Requests/Day:"
msgstr "Максимум запросов в друзья в день:"
#: ../../mod/settings.php:1059 ../../mod/settings.php:1089
msgid "(to prevent spam abuse)"
msgstr "(для предотвращения спама)"
#: ../../mod/settings.php:1060
msgid "Default Post Permissions"
msgstr "Разрешение на сообщения по умолчанию"
#: ../../mod/settings.php:1061
msgid "(click to open/close)"
msgstr "(нажмите, чтобы открыть / закрыть)"
#: ../../mod/settings.php:1070 ../../mod/photos.php:1140
#: ../../mod/photos.php:1506
msgid "Show to Groups"
msgstr "Показать в группах"
#: ../../mod/settings.php:1071 ../../mod/photos.php:1141
#: ../../mod/photos.php:1507
msgid "Show to Contacts"
msgstr ""
#: ../../mod/settings.php:1072
msgid "Default Private Post"
msgstr ""
#: ../../mod/settings.php:1073
msgid "Default Public Post"
msgstr ""
#: ../../mod/settings.php:1077
msgid "Default Permissions for New Posts"
msgstr ""
#: ../../mod/settings.php:1089
msgid "Maximum private messages per day from unknown people:"
msgstr ""
#: ../../mod/settings.php:1092
msgid "Notification Settings"
msgstr "Настройка уведомлений"
#: ../../mod/settings.php:1093
msgid "By default post a status message when:"
msgstr ""
#: ../../mod/settings.php:1094
msgid "accepting a friend request"
msgstr ""
#: ../../mod/settings.php:1095
msgid "joining a forum/community"
msgstr ""
#: ../../mod/settings.php:1096
msgid "making an <em>interesting</em> profile change"
msgstr ""
#: ../../mod/settings.php:1097
msgid "Send a notification email when:"
msgstr "Отправлять уведомление по электронной почте, когда:"
#: ../../mod/settings.php:1098
msgid "You receive an introduction"
msgstr "Вы получили запрос"
#: ../../mod/settings.php:1099
msgid "Your introductions are confirmed"
msgstr "Ваши запросы подтверждены"
#: ../../mod/settings.php:1100
msgid "Someone writes on your profile wall"
msgstr "Кто-то пишет на стене вашего профиля"
#: ../../mod/settings.php:1101
msgid "Someone writes a followup comment"
msgstr "Кто-то пишет последующий комментарий"
#: ../../mod/settings.php:1102
msgid "You receive a private message"
msgstr "Вы получаете личное сообщение"
#: ../../mod/settings.php:1103
msgid "You receive a friend suggestion"
msgstr ""
#: ../../mod/settings.php:1104
msgid "You are tagged in a post"
msgstr ""
#: ../../mod/settings.php:1105
msgid "You are poked/prodded/etc. in a post"
msgstr ""
#: ../../mod/settings.php:1108
msgid "Advanced Account/Page Type Settings"
msgstr ""
#: ../../mod/settings.php:1109
msgid "Change the behaviour of this account for special situations"
msgstr ""
#: ../../mod/share.php:44
msgid "link"
msgstr ""
#: ../../mod/crepair.php:102
msgid "Contact settings applied."
msgstr "Установки контакта приняты."
#: ../../mod/crepair.php:104
msgid "Contact update failed."
msgstr "Обновление контакта неудачное."
#: ../../mod/crepair.php:129 ../../mod/dfrn_confirm.php:118
#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92
msgid "Contact not found."
msgstr "Контакт не найден."
#: ../../mod/crepair.php:135
msgid "Repair Contact Settings"
msgstr "Восстановить установки контакта"
#: ../../mod/crepair.php:137
msgid ""
"<strong>WARNING: This is highly advanced</strong> and if you enter incorrect"
" information your communications with this contact may stop working."
msgstr "<strong>ВНИМАНИЕ: Это крайне важно!</strong> Если вы введете неверную информацию, ваша связь с этим контактом перестанет работать."
#: ../../mod/crepair.php:138
msgid ""
"Please use your browser 'Back' button <strong>now</strong> if you are "
"uncertain what to do on this page."
msgstr "Пожалуйста, нажмите клавишу вашего браузера 'Back' или 'Назад' <strong>сейчас</strong>, если вы не уверены, что делаете на этой странице."
#: ../../mod/crepair.php:144
msgid "Return to contact editor"
msgstr ""
#: ../../mod/crepair.php:149
msgid "Account Nickname"
msgstr "Ник аккаунта"
#: ../../mod/crepair.php:150
msgid "@Tagname - overrides Name/Nickname"
msgstr ""
#: ../../mod/crepair.php:151
msgid "Account URL"
msgstr "URL аккаунта"
#: ../../mod/crepair.php:152
msgid "Friend Request URL"
msgstr "URL запроса в друзья"
#: ../../mod/crepair.php:153
msgid "Friend Confirm URL"
msgstr "URL подтверждения друга"
#: ../../mod/crepair.php:154
msgid "Notification Endpoint URL"
msgstr "URL эндпоинта уведомления"
#: ../../mod/crepair.php:155
msgid "Poll/Feed URL"
msgstr "URL опроса/ленты"
#: ../../mod/crepair.php:156
msgid "New photo from this URL"
msgstr "Новое фото из этой URL"
#: ../../mod/delegate.php:95
msgid "No potential page delegates located."
msgstr ""
#: ../../mod/delegate.php:123
msgid ""
"Delegates are able to manage all aspects of this account/page except for "
"basic account settings. Please do not delegate your personal account to "
"anybody that you do not trust completely."
msgstr ""
#: ../../mod/delegate.php:124
msgid "Existing Page Managers"
msgstr "Существующие менеджеры страницы"
#: ../../mod/delegate.php:126
msgid "Existing Page Delegates"
msgstr "Существующие уполномоченные страницы"
#: ../../mod/delegate.php:128
msgid "Potential Delegates"
msgstr ""
#: ../../mod/delegate.php:130 ../../mod/tagrm.php:93
msgid "Remove"
msgstr "Удалить"
#: ../../mod/delegate.php:131
msgid "Add"
msgstr "Добавить"
#: ../../mod/delegate.php:132
msgid "No entries."
msgstr "Нет записей."
#: ../../mod/poke.php:192
msgid "Poke/Prod"
msgstr ""
#: ../../mod/poke.php:193
msgid "poke, prod or do other things to somebody"
msgstr ""
#: ../../mod/poke.php:194
msgid "Recipient"
msgstr ""
#: ../../mod/poke.php:195
msgid "Choose what you wish to do to recipient"
msgstr ""
#: ../../mod/poke.php:198
msgid "Make this post private"
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:562
#, php-format
msgid "No user record found for '%s' "
msgstr "Не найдено записи пользователя для '%s' "
#: ../../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 "Был предоставлен пустой URL сайта ​​или URL не может быть расшифрован нами."
#: ../../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 "Публичный ключ недоступен в записи о контакте по ссылке %s"
#: ../../mod/dfrn_confirm.php:638
msgid ""
"The ID provided by your system is a duplicate on our system. It should work "
"if you try again."
msgstr "ID, предложенный вашей системой, является дубликатом в нашей системе. Он должен работать, если вы повторите попытку."
#: ../../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 "Подключение принято в %s"
#: ../../mod/dfrn_confirm.php:800
#, php-format
msgid "%1$s has joined %2$s"
msgstr "%1$s присоединился %2$s"
#: ../../mod/dfrn_poll.php:101 ../../mod/dfrn_poll.php:534
#, php-format
msgid "%1$s welcomes %2$s"
msgstr ""
#: ../../mod/dfrn_request.php:93
msgid "This introduction has already been accepted."
msgstr "Этот запрос был уже принят."
#: ../../mod/dfrn_request.php:118 ../../mod/dfrn_request.php:513
msgid "Profile location is not valid or does not contain profile information."
msgstr "Местоположение профиля является недопустимым или не содержит информацию о профиле."
#: ../../mod/dfrn_request.php:123 ../../mod/dfrn_request.php:518
msgid "Warning: profile location has no identifiable owner name."
msgstr "Внимание: местоположение профиля не имеет идентифицируемого имени владельца."
#: ../../mod/dfrn_request.php:125 ../../mod/dfrn_request.php:520
msgid "Warning: profile location has no profile photo."
msgstr "Внимание: местоположение профиля не имеет еще фотографии профиля."
#: ../../mod/dfrn_request.php:128 ../../mod/dfrn_request.php:523
#, php-format
msgid "%d required parameter was not found at the given location"
msgid_plural "%d required parameters were not found at the given location"
msgstr[0] "%d требуемый параметр не был найден в заданном месте"
msgstr[1] "%d требуемых параметров не были найдены в заданном месте"
msgstr[2] "%d требуемых параметров не были найдены в заданном месте"
#: ../../mod/dfrn_request.php:170
msgid "Introduction complete."
msgstr "Запрос создан."
#: ../../mod/dfrn_request.php:209
msgid "Unrecoverable protocol error."
msgstr "Неисправимая ошибка протокола."
#: ../../mod/dfrn_request.php:237
msgid "Profile unavailable."
msgstr "Профиль недоступен."
#: ../../mod/dfrn_request.php:262
#, php-format
msgid "%s has received too many connection requests today."
msgstr "К %s пришло сегодня слишком много запросов на подключение."
#: ../../mod/dfrn_request.php:263
msgid "Spam protection measures have been invoked."
msgstr "Были применены меры защиты от спама."
#: ../../mod/dfrn_request.php:264
msgid "Friends are advised to please try again in 24 hours."
msgstr "Друзья советуют попробовать еще раз в ближайшие 24 часа."
#: ../../mod/dfrn_request.php:326
msgid "Invalid locator"
msgstr "Недопустимый локатор"
#: ../../mod/dfrn_request.php:335
msgid "Invalid email address."
msgstr "Неверный адрес электронной почты."
#: ../../mod/dfrn_request.php:362
msgid "This account has not been configured for email. Request failed."
msgstr "Этот аккаунт не настроен для электронной почты. Запрос не удался."
#: ../../mod/dfrn_request.php:458
msgid "Unable to resolve your name at the provided location."
msgstr "Не удается установить ваше имя на предложенном местоположении."
#: ../../mod/dfrn_request.php:471
msgid "You have already introduced yourself here."
msgstr "Вы уже ввели информацию о себе здесь."
#: ../../mod/dfrn_request.php:475
#, php-format
msgid "Apparently you are already friends with %s."
msgstr "Похоже, что вы уже друзья с %s."
#: ../../mod/dfrn_request.php:496
msgid "Invalid profile URL."
msgstr "Неверный URL профиля."
#: ../../mod/dfrn_request.php:592
msgid "Your introduction has been sent."
msgstr "Ваш запрос отправлен."
#: ../../mod/dfrn_request.php:645
msgid "Please login to confirm introduction."
msgstr "Для подтверждения запроса войдите пожалуйста с паролем."
#: ../../mod/dfrn_request.php:659
msgid ""
"Incorrect identity currently logged in. Please login to "
"<strong>this</strong> profile."
msgstr "Неверно идентифицирован вход. Пожалуйста, войдите в <strong>этот</strong> профиль."
#: ../../mod/dfrn_request.php:670
msgid "Hide this contact"
msgstr "Скрыть этот контакт"
#: ../../mod/dfrn_request.php:673
#, php-format
msgid "Welcome home %s."
msgstr "Добро пожаловать домой, %s!"
#: ../../mod/dfrn_request.php:674
#, php-format
msgid "Please confirm your introduction/connection request to %s."
msgstr "Пожалуйста, подтвердите краткую информацию / запрос на подключение к %s."
#: ../../mod/dfrn_request.php:675
msgid "Confirm"
msgstr "Подтвердить"
#: ../../mod/dfrn_request.php:811
msgid ""
"Please enter your 'Identity Address' from one of the following supported "
"communications networks:"
msgstr "Пожалуйста, введите ваш 'идентификационный адрес' одной из следующих поддерживаемых социальных сетей:"
#: ../../mod/dfrn_request.php:827
msgid "<strike>Connect as an email follower</strike> (Coming soon)"
msgstr "<strike>Соединитесь как email последователь</strike> (скоро)"
#: ../../mod/dfrn_request.php:829
msgid ""
"If you are not yet a member of the free social web, <a "
"href=\"http://dir.friendica.com/siteinfo\">follow this link to find a public"
" Friendica site and join us today</a>."
msgstr ""
#: ../../mod/dfrn_request.php:832
msgid "Friend/Connection Request"
msgstr "Запрос в друзья / на подключение"
#: ../../mod/dfrn_request.php:833
msgid ""
"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, "
"testuser@identi.ca"
msgstr "Примеры: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"
#: ../../mod/dfrn_request.php:834
msgid "Please answer the following:"
msgstr "Пожалуйста, ответьте следующее:"
#: ../../mod/dfrn_request.php:835
#, php-format
msgid "Does %s know you?"
msgstr "%s знает вас?"
#: ../../mod/dfrn_request.php:838
msgid "Add a personal note:"
msgstr "Добавить личную заметку:"
#: ../../mod/dfrn_request.php:841
msgid "StatusNet/Federated Social Web"
msgstr "StatusNet / Federated Social Web"
#: ../../mod/dfrn_request.php:843
#, php-format
msgid ""
" - please do not use this form. Instead, enter %s into your Diaspora search"
" bar."
msgstr ""
#: ../../mod/dfrn_request.php:844
msgid "Your Identity Address:"
msgstr "Ваш идентификационный адрес:"
#: ../../mod/dfrn_request.php:847
msgid "Submit Request"
msgstr "Отправить запрос"
#: ../../mod/subthread.php:103
#, php-format
msgid "%1$s is following %2$s's %3$s"
msgstr ""
#: ../../mod/directory.php:49 ../../view/theme/diabook/theme.php:518
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:114
msgid "Gender: "
msgstr "Пол: "
#: ../../mod/directory.php:187
msgid "No entries (some entries may be hidden)."
msgstr "Нет записей (некоторые записи могут быть скрыты)."
#: ../../mod/suggest.php:27
msgid "Do you really want to delete this suggestion?"
msgstr ""
#: ../../mod/suggest.php:72
msgid ""
"No suggestions available. If this is a new site, please try again in 24 "
"hours."
msgstr ""
#: ../../mod/suggest.php:90
msgid "Ignore/Hide"
msgstr "Проигнорировать/Скрыть"
#: ../../mod/dirfind.php:26
msgid "People Search"
msgstr "Поиск людей"
#: ../../mod/dirfind.php:60 ../../mod/match.php:65
msgid "No matches"
msgstr "Нет соответствий"
#: ../../mod/admin.php:55
msgid "Theme settings updated."
msgstr ""
#: ../../mod/admin.php:96 ../../mod/admin.php:479
msgid "Site"
msgstr "Сайт"
#: ../../mod/admin.php:97 ../../mod/admin.php:750 ../../mod/admin.php:764
msgid "Users"
msgstr "Пользователи"
#: ../../mod/admin.php:98 ../../mod/admin.php:847 ../../mod/admin.php:889
msgid "Plugins"
msgstr "Плагины"
#: ../../mod/admin.php:99 ../../mod/admin.php:1055 ../../mod/admin.php:1089
msgid "Themes"
msgstr ""
#: ../../mod/admin.php:100
msgid "DB updates"
msgstr ""
#: ../../mod/admin.php:115 ../../mod/admin.php:122 ../../mod/admin.php:1176
msgid "Logs"
msgstr "Журналы"
#: ../../mod/admin.php:121
msgid "Plugin Features"
msgstr ""
#: ../../mod/admin.php:123
msgid "User registrations waiting for confirmation"
msgstr "Регистрации пользователей, ожидающие подтверждения"
#: ../../mod/admin.php:182 ../../mod/admin.php:721
msgid "Normal Account"
msgstr "Обычный аккаунт"
#: ../../mod/admin.php:183 ../../mod/admin.php:722
msgid "Soapbox Account"
msgstr "Аккаунт Витрина"
#: ../../mod/admin.php:184 ../../mod/admin.php:723
msgid "Community/Celebrity Account"
msgstr "Аккаунт Сообщество / Знаменитость"
#: ../../mod/admin.php:185 ../../mod/admin.php:724
msgid "Automatic Friend Account"
msgstr "\"Автоматический друг\" Аккаунт"
#: ../../mod/admin.php:186
msgid "Blog Account"
msgstr ""
#: ../../mod/admin.php:187
msgid "Private Forum"
msgstr "Личный форум"
#: ../../mod/admin.php:206
msgid "Message queues"
msgstr "Очереди сообщений"
#: ../../mod/admin.php:211 ../../mod/admin.php:478 ../../mod/admin.php:749
#: ../../mod/admin.php:846 ../../mod/admin.php:888 ../../mod/admin.php:1054
#: ../../mod/admin.php:1088 ../../mod/admin.php:1175
msgid "Administration"
msgstr "Администрация"
#: ../../mod/admin.php:212
msgid "Summary"
msgstr "Резюме"
#: ../../mod/admin.php:214
msgid "Registered users"
msgstr "Зарегистрированные пользователи"
#: ../../mod/admin.php:216
msgid "Pending registrations"
msgstr "Ожидающие регистрации"
#: ../../mod/admin.php:217
msgid "Version"
msgstr "Версия"
#: ../../mod/admin.php:219
msgid "Active plugins"
msgstr "Активные плагины"
#: ../../mod/admin.php:403
msgid "Site settings updated."
msgstr "Установки сайта обновлены."
#: ../../mod/admin.php:449
msgid "Multi user instance"
msgstr ""
#: ../../mod/admin.php:465
msgid "Closed"
msgstr "Закрыто"
#: ../../mod/admin.php:466
msgid "Requires approval"
msgstr "Требуется подтверждение"
#: ../../mod/admin.php:467
msgid "Open"
msgstr "Открыто"
#: ../../mod/admin.php:471
msgid "No SSL policy, links will track page SSL state"
msgstr ""
#: ../../mod/admin.php:472
msgid "Force all links to use SSL"
msgstr "Заставить все ссылки использовать SSL"
#: ../../mod/admin.php:473
msgid "Self-signed certificate, use SSL for local links only (discouraged)"
msgstr ""
#: ../../mod/admin.php:482
msgid "File upload"
msgstr "Загрузка файлов"
#: ../../mod/admin.php:483
msgid "Policies"
msgstr "Политики"
#: ../../mod/admin.php:484
msgid "Advanced"
msgstr "Расширенный"
#: ../../mod/admin.php:485
msgid "Performance"
msgstr "Производительность"
#: ../../mod/admin.php:489
msgid "Site name"
msgstr "Название сайта"
#: ../../mod/admin.php:490
msgid "Banner/Logo"
msgstr "Баннер/Логотип"
#: ../../mod/admin.php:491
msgid "System language"
msgstr "Системный язык"
#: ../../mod/admin.php:492
msgid "System theme"
msgstr "Системная тема"
#: ../../mod/admin.php:492
msgid ""
"Default system theme - may be over-ridden by user profiles - <a href='#' "
"id='cnftheme'>change theme settings</a>"
msgstr ""
#: ../../mod/admin.php:493
msgid "Mobile system theme"
msgstr "Мобильная тема системы"
#: ../../mod/admin.php:493
msgid "Theme for mobile devices"
msgstr "Тема для мобильных устройств"
#: ../../mod/admin.php:494
msgid "SSL link policy"
msgstr "Политика SSL"
#: ../../mod/admin.php:494
msgid "Determines whether generated links should be forced to use SSL"
msgstr "Ссылки должны быть вынуждены использовать SSL"
#: ../../mod/admin.php:495
msgid "'Share' element"
msgstr "'Share' элемент"
#: ../../mod/admin.php:495
msgid "Activates the bbcode element 'share' for repeating items."
msgstr ""
#: ../../mod/admin.php:496
msgid "Hide help entry from navigation menu"
msgstr "Скрыть пункт \"помощь\" в меню навигации"
#: ../../mod/admin.php:496
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:497
msgid "Single user instance"
msgstr "Однопользовательский режим"
#: ../../mod/admin.php:497
msgid "Make this instance multi-user or single-user for the named user"
msgstr ""
#: ../../mod/admin.php:498
msgid "Maximum image size"
msgstr "Максимальный размер изображения"
#: ../../mod/admin.php:498
msgid ""
"Maximum size in bytes of uploaded images. Default is 0, which means no "
"limits."
msgstr ""
#: ../../mod/admin.php:499
msgid "Maximum image length"
msgstr "Максимальная длина картинки"
#: ../../mod/admin.php:499
msgid ""
"Maximum length in pixels of the longest side of uploaded images. Default is "
"-1, which means no limits."
msgstr ""
#: ../../mod/admin.php:500
msgid "JPEG image quality"
msgstr "Качество JPEG изображения"
#: ../../mod/admin.php:500
msgid ""
"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
"100, which is full quality."
msgstr ""
#: ../../mod/admin.php:502
msgid "Register policy"
msgstr "Политика регистрация"
#: ../../mod/admin.php:503
msgid "Maximum Daily Registrations"
msgstr "Максимальное число регистраций в день"
#: ../../mod/admin.php:503
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:504
msgid "Register text"
msgstr "Текст регистрации"
#: ../../mod/admin.php:504
msgid "Will be displayed prominently on the registration page."
msgstr "Будет находиться на видном месте на странице регистрации."
#: ../../mod/admin.php:505
msgid "Accounts abandoned after x days"
msgstr "Аккаунт считается после x дней не воспользованным"
#: ../../mod/admin.php:505
msgid ""
"Will not waste system resources polling external sites for abandonded "
"accounts. Enter 0 for no time limit."
msgstr "Не будет тратить ресурсы для опроса сайтов для бесхозных контактов. Введите 0 для отключения лимита времени."
#: ../../mod/admin.php:506
msgid "Allowed friend domains"
msgstr "Разрешенные домены друзей"
#: ../../mod/admin.php:506
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:507
msgid "Allowed email domains"
msgstr "Разрешенные почтовые домены"
#: ../../mod/admin.php:507
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:508
msgid "Block public"
msgstr "Блокировать общественный доступ"
#: ../../mod/admin.php:508
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:509
msgid "Force publish"
msgstr "Принудительная публикация"
#: ../../mod/admin.php:509
msgid ""
"Check to force all profiles on this site to be listed in the site directory."
msgstr ""
#: ../../mod/admin.php:510
msgid "Global directory update URL"
msgstr "URL обновления глобального каталога"
#: ../../mod/admin.php:510
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:511
msgid "Allow threaded items"
msgstr ""
#: ../../mod/admin.php:511
msgid "Allow infinite level threading for items on this site."
msgstr ""
#: ../../mod/admin.php:512
msgid "Private posts by default for new users"
msgstr "Частные сообщения по умолчанию для новых пользователей"
#: ../../mod/admin.php:512
msgid ""
"Set default post permissions for all new members to the default privacy "
"group rather than public."
msgstr ""
#: ../../mod/admin.php:513
msgid "Don't include post content in email notifications"
msgstr ""
#: ../../mod/admin.php:513
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:514
msgid "Disallow public access to addons listed in the apps menu."
msgstr ""
#: ../../mod/admin.php:514
msgid ""
"Checking this box will restrict addons listed in the apps menu to members "
"only."
msgstr ""
#: ../../mod/admin.php:515
msgid "Don't embed private images in posts"
msgstr ""
#: ../../mod/admin.php:515
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:517
msgid "Block multiple registrations"
msgstr "Блокировать множественные регистрации"
#: ../../mod/admin.php:517
msgid "Disallow users to register additional accounts for use as pages."
msgstr "Запретить пользователям регистрировать дополнительные аккаунты для использования в качестве страниц."
#: ../../mod/admin.php:518
msgid "OpenID support"
msgstr "Поддержка OpenID"
#: ../../mod/admin.php:518
msgid "OpenID support for registration and logins."
msgstr "OpenID поддержка для регистрации и входа в систему."
#: ../../mod/admin.php:519
msgid "Fullname check"
msgstr "Проверка полного имени"
#: ../../mod/admin.php:519
msgid ""
"Force users to register with a space between firstname and lastname in Full "
"name, as an antispam measure"
msgstr ""
#: ../../mod/admin.php:520
msgid "UTF-8 Regular expressions"
msgstr "UTF-8 регулярные выражения"
#: ../../mod/admin.php:520
msgid "Use PHP UTF8 regular expressions"
msgstr "Используйте PHP UTF-8 для регулярных выражений"
#: ../../mod/admin.php:521
msgid "Show Community Page"
msgstr "Показать страницу сообщества"
#: ../../mod/admin.php:521
msgid ""
"Display a Community page showing all recent public postings on this site."
msgstr "Показывать страницу сообщества с указанием всех последних публичных сообщений на этом сайте."
#: ../../mod/admin.php:522
msgid "Enable OStatus support"
msgstr "Включить поддержку OStatus"
#: ../../mod/admin.php:522
msgid ""
"Provide built-in OStatus (identi.ca, status.net, etc.) compatibility. All "
"communications in OStatus are public, so privacy warnings will be "
"occasionally displayed."
msgstr ""
#: ../../mod/admin.php:523
msgid "Enable Diaspora support"
msgstr "Включить поддержку Diaspora"
#: ../../mod/admin.php:523
msgid "Provide built-in Diaspora network compatibility."
msgstr ""
#: ../../mod/admin.php:524
msgid "Only allow Friendica contacts"
msgstr "Позвольть только Friendica контакты"
#: ../../mod/admin.php:524
msgid ""
"All contacts must use Friendica protocols. All other built-in communication "
"protocols disabled."
msgstr "Все контакты должны использовать только Friendica протоколы. Все другие встроенные коммуникационные протоколы отключены."
#: ../../mod/admin.php:525
msgid "Verify SSL"
msgstr "Проверка SSL"
#: ../../mod/admin.php:525
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:526
msgid "Proxy user"
msgstr "Прокси пользователь"
#: ../../mod/admin.php:527
msgid "Proxy URL"
msgstr "Прокси URL"
#: ../../mod/admin.php:528
msgid "Network timeout"
msgstr "Тайм-аут сети"
#: ../../mod/admin.php:528
msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
msgstr ""
#: ../../mod/admin.php:529
msgid "Delivery interval"
msgstr "Интервал поставки"
#: ../../mod/admin.php:529
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:530
msgid "Poll interval"
msgstr "Интервал опроса"
#: ../../mod/admin.php:530
msgid ""
"Delay background polling processes by this many seconds to reduce system "
"load. If 0, use delivery interval."
msgstr ""
#: ../../mod/admin.php:531
msgid "Maximum Load Average"
msgstr ""
#: ../../mod/admin.php:531
msgid ""
"Maximum system load before delivery and poll processes are deferred - "
"default 50."
msgstr ""
#: ../../mod/admin.php:533
msgid "Use MySQL full text engine"
msgstr ""
#: ../../mod/admin.php:533
msgid ""
"Activates the full text engine. Speeds up search - but can only search for "
"four and more characters."
msgstr ""
#: ../../mod/admin.php:534
msgid "Path to item cache"
msgstr ""
#: ../../mod/admin.php:535
msgid "Cache duration in seconds"
msgstr ""
#: ../../mod/admin.php:535
msgid ""
"How long should the cache files be hold? Default value is 86400 seconds (One"
" day)."
msgstr ""
#: ../../mod/admin.php:536
msgid "Path for lock file"
msgstr ""
#: ../../mod/admin.php:537
msgid "Temp path"
msgstr ""
#: ../../mod/admin.php:538
msgid "Base path to installation"
msgstr ""
#: ../../mod/admin.php:555
msgid "Update has been marked successful"
msgstr ""
#: ../../mod/admin.php:565
#, php-format
msgid "Executing %s failed. Check system logs."
msgstr ""
#: ../../mod/admin.php:568
#, php-format
msgid "Update %s was successfully applied."
msgstr ""
#: ../../mod/admin.php:572
#, php-format
msgid "Update %s did not return a status. Unknown if it succeeded."
msgstr ""
#: ../../mod/admin.php:575
#, php-format
msgid "Update function %s could not be found."
msgstr ""
#: ../../mod/admin.php:590
msgid "No failed updates."
msgstr "Неудавшихся обновлений нет."
#: ../../mod/admin.php:594
msgid "Failed Updates"
msgstr "Неудавшиеся обновления"
#: ../../mod/admin.php:595
msgid ""
"This does not include updates prior to 1139, which did not return a status."
msgstr ""
#: ../../mod/admin.php:596
msgid "Mark success (if update was manually applied)"
msgstr ""
#: ../../mod/admin.php:597
msgid "Attempt to execute this update step automatically"
msgstr ""
#: ../../mod/admin.php:622
#, php-format
msgid "%s user blocked/unblocked"
msgid_plural "%s users blocked/unblocked"
msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
#: ../../mod/admin.php:629
#, php-format
msgid "%s user deleted"
msgid_plural "%s users deleted"
msgstr[0] "%s человек удален"
msgstr[1] "%s чел. удалено"
msgstr[2] "%s чел. удалено"
#: ../../mod/admin.php:668
#, php-format
msgid "User '%s' deleted"
msgstr "Пользователь '%s' удален"
#: ../../mod/admin.php:676
#, php-format
msgid "User '%s' unblocked"
msgstr "Пользователь '%s' разблокирован"
#: ../../mod/admin.php:676
#, php-format
msgid "User '%s' blocked"
msgstr "Пользователь '%s' блокирован"
#: ../../mod/admin.php:752
msgid "select all"
msgstr "выбрать все"
#: ../../mod/admin.php:753
msgid "User registrations waiting for confirm"
msgstr "Регистрации пользователей, ожидающие подтверждения"
#: ../../mod/admin.php:754
msgid "Request date"
msgstr "Запрос даты"
#: ../../mod/admin.php:755
msgid "No registrations."
msgstr "Нет регистраций."
#: ../../mod/admin.php:756 ../../mod/notifications.php:161
#: ../../mod/notifications.php:208
msgid "Approve"
msgstr "Одобрить"
#: ../../mod/admin.php:757
msgid "Deny"
msgstr "Отклонить"
#: ../../mod/admin.php:761
msgid "Site admin"
msgstr "Админ сайта"
#: ../../mod/admin.php:762
msgid "Account expired"
msgstr "Аккаунт просрочен"
#: ../../mod/admin.php:765
msgid "Register date"
msgstr "Дата регистрации"
#: ../../mod/admin.php:765
msgid "Last login"
msgstr "Последний вход"
#: ../../mod/admin.php:765
msgid "Last item"
msgstr "Последний пункт"
#: ../../mod/admin.php:765
msgid "Account"
msgstr "Аккаунт"
#: ../../mod/admin.php:767
msgid ""
"Selected users will be deleted!\\n\\nEverything these users had posted on "
"this site will be permanently deleted!\\n\\nAre you sure?"
msgstr "Выбранные пользователи будут удалены!\\n\\nВсе, что эти пользователи написали на этом сайте, будет удалено!\\n\\nВы уверены в вашем действии?"
#: ../../mod/admin.php:768
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 "Пользователь {0} будет удален!\\n\\nВсе, что этот пользователь написал на этом сайте, будет удалено!\\n\\nВы уверены в вашем действии?"
#: ../../mod/admin.php:809
#, php-format
msgid "Plugin %s disabled."
msgstr "Плагин %s отключен."
#: ../../mod/admin.php:813
#, php-format
msgid "Plugin %s enabled."
msgstr "Плагин %s включен."
#: ../../mod/admin.php:823 ../../mod/admin.php:1026
msgid "Disable"
msgstr "Отключить"
#: ../../mod/admin.php:825 ../../mod/admin.php:1028
msgid "Enable"
msgstr "Включить"
#: ../../mod/admin.php:848 ../../mod/admin.php:1056
msgid "Toggle"
msgstr "Переключить"
#: ../../mod/admin.php:856 ../../mod/admin.php:1066
msgid "Author: "
msgstr "Автор:"
#: ../../mod/admin.php:857 ../../mod/admin.php:1067
msgid "Maintainer: "
msgstr "Программа обслуживания: "
#: ../../mod/admin.php:986
msgid "No themes found."
msgstr "Темы не найдены."
#: ../../mod/admin.php:1048
msgid "Screenshot"
msgstr "Скриншот"
#: ../../mod/admin.php:1094
msgid "[Experimental]"
msgstr "[экспериментально]"
#: ../../mod/admin.php:1095
msgid "[Unsupported]"
msgstr "[Неподдерживаемое]"
#: ../../mod/admin.php:1122
msgid "Log settings updated."
msgstr "Настройки журнала обновлены."
#: ../../mod/admin.php:1178
msgid "Clear"
msgstr "Очистить"
#: ../../mod/admin.php:1184
msgid "Debugging"
msgstr "Отладка"
#: ../../mod/admin.php:1185
msgid "Log file"
msgstr "Лог-файл"
#: ../../mod/admin.php:1185
msgid ""
"Must be writable by web server. Relative to your Friendica top-level "
"directory."
msgstr ""
#: ../../mod/admin.php:1186
msgid "Log level"
msgstr "Уровень лога"
#: ../../mod/admin.php:1236
msgid "Close"
msgstr "Закрыть"
#: ../../mod/admin.php:1242
msgid "FTP Host"
msgstr "FTP хост"
#: ../../mod/admin.php:1243
msgid "FTP Path"
msgstr "Путь FTP"
#: ../../mod/admin.php:1244
msgid "FTP User"
msgstr "FTP пользователь"
#: ../../mod/admin.php:1245
msgid "FTP Password"
msgstr "FTP пароль"
#: ../../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/editpost.php:17 ../../mod/editpost.php:27
msgid "Item not found"
msgstr "Элемент не найден"
#: ../../mod/editpost.php:39
msgid "Edit post"
msgstr "Редактировать сообщение"
#: ../../mod/events.php:66
msgid "Event title and start time are required."
msgstr ""
#: ../../mod/events.php:291
msgid "l, F j"
msgstr "l, j F"
#: ../../mod/events.php:313
msgid "Edit event"
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:473
msgid "Title:"
msgstr "Титул:"
#: ../../mod/events.php:475
msgid "Share this event"
msgstr "Поделитесь этим мероприятием"
#: ../../mod/fbrowser.php:113
msgid "Files"
msgstr "Файлы"
#: ../../mod/uexport.php:72
msgid "Export account"
msgstr "Экспорт аккаунта"
#: ../../mod/uexport.php:72
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:73
msgid "Export all"
msgstr "Экспорт всего"
#: ../../mod/uexport.php:73
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/filer.php:30
msgid "- select -"
msgstr "- выбрать -"
#: ../../mod/uimport.php:64
msgid "Import"
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 accont, go to \"Settings->Export your porsonal data\" and "
"select \"Export account\""
msgstr ""
#: ../../mod/update_community.php:18 ../../mod/update_display.php:22
#: ../../mod/update_network.php:22 ../../mod/update_notes.php:41
#: ../../mod/update_profile.php:41
msgid "[Embedded content - reload page to view]"
msgstr "[Встроенное содержание - перезагрузите страницу для просмотра]"
#: ../../mod/follow.php:27
msgid "Contact added"
msgstr "Контакт добавлен"
#: ../../mod/friendica.php:55
msgid "This is Friendica, version"
msgstr "Это Friendica, версия"
#: ../../mod/friendica.php:56
msgid "running at web location"
msgstr "работает на веб-узле"
#: ../../mod/friendica.php:58
msgid ""
"Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn "
"more about the Friendica project."
msgstr ""
#: ../../mod/friendica.php:60
msgid "Bug reports and issues: please visit"
msgstr "Отчет об ошибках и проблемах: пожалуйста, посетите"
#: ../../mod/friendica.php:61
msgid ""
"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - "
"dot com"
msgstr "Предложения, похвала, пожертвования? Пишите на \"info\" на Friendica - точка com"
#: ../../mod/friendica.php:75
msgid "Installed plugins/addons/apps:"
msgstr "Установленные плагины / добавки / приложения:"
#: ../../mod/friendica.php:88
msgid "No installed plugins/addons/apps"
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 "Предложить друга для %s."
#: ../../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: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/hcard.php:10
msgid "No profile"
msgstr "Нет профиля"
#: ../../mod/help.php:79
msgid "Help:"
msgstr "Помощь:"
#: ../../mod/help.php:90 ../../index.php:231
msgid "Not Found"
msgstr "Не найдено"
#: ../../mod/help.php:93 ../../index.php:234
msgid "Page not found."
msgstr "Страница не найдена."
#: ../../mod/viewcontacts.php:39
msgid "No contacts."
msgstr "Нет контактов."
#: ../../mod/home.php:34
#, php-format
msgid "Welcome to %s"
msgstr "Добро пожаловать на %s!"
#: ../../mod/viewsrc.php:7
msgid "Access denied."
msgstr "Доступ запрещен."
#: ../../mod/wall_attach.php:69
#, php-format
msgid "File exceeds size limit of %d"
msgstr "Файл превышает предельный размер %d"
#: ../../mod/wall_attach.php:110 ../../mod/wall_attach.php:121
msgid "File upload failed."
msgstr "Загрузка файла не удалась."
#: ../../mod/wall_upload.php:90 ../../mod/profile_photo.php:144
#, php-format
msgid "Image exceeds size limit of %d"
msgstr "Изображение превышает предельный размер %d"
#: ../../mod/wall_upload.php:112 ../../mod/photos.php:801
#: ../../mod/profile_photo.php:153
msgid "Unable to process image."
msgstr "Невозможно обработать фото."
#: ../../mod/wall_upload.php:138 ../../mod/photos.php:828
#: ../../mod/profile_photo.php:301
msgid "Image upload failed."
msgstr "Загрузка фото неудачная."
#: ../../mod/invite.php:27
msgid "Total invitation limit exceeded."
msgstr ""
#: ../../mod/invite.php:49
#, php-format
msgid "%s : Not a valid email address."
msgstr "%s: Неверный адрес электронной почты."
#: ../../mod/invite.php:73
msgid "Please join us on Friendica"
msgstr ""
#: ../../mod/invite.php:84
msgid "Invitation limit exceeded. Please contact your site administrator."
msgstr ""
#: ../../mod/invite.php:89
#, php-format
msgid "%s : Message delivery failed."
msgstr "%s: Доставка сообщения не удалась."
#: ../../mod/invite.php:93
#, php-format
msgid "%d message sent."
msgid_plural "%d messages sent."
msgstr[0] "%d сообщение отправлено."
msgstr[1] "%d сообщений отправлено."
msgstr[2] "%d сообщений отправлено."
#: ../../mod/invite.php:112
msgid "You have no more invitations available"
msgstr "У вас нет больше приглашений"
#: ../../mod/invite.php:120
#, php-format
msgid ""
"Visit %s for a list of public sites that you can join. Friendica members on "
"other sites can all connect with each other, as well as with members of many"
" other social networks."
msgstr ""
#: ../../mod/invite.php:122
#, php-format
msgid ""
"To accept this invitation, please visit and register at %s or any other "
"public Friendica website."
msgstr ""
#: ../../mod/invite.php:123
#, php-format
msgid ""
"Friendica sites all inter-connect to create a huge privacy-enhanced social "
"web that is owned and controlled by its members. They can also connect with "
"many traditional social networks. See %s for a list of alternate Friendica "
"sites you can join."
msgstr ""
#: ../../mod/invite.php:126
msgid ""
"Our apologies. This system is not currently configured to connect with other"
" public sites or invite members."
msgstr ""
#: ../../mod/invite.php:132
msgid "Send invitations"
msgstr "Отправить приглашения"
#: ../../mod/invite.php:133
msgid "Enter email addresses, one per line:"
msgstr "Введите адреса электронной почты, по одному в строке:"
#: ../../mod/invite.php:134 ../../mod/wallmessage.php:151
#: ../../mod/message.php:329 ../../mod/message.php:558
msgid "Your message:"
msgstr "Ваше сообщение:"
#: ../../mod/invite.php:135
msgid ""
"You are cordially invited to join me and other close friends on Friendica - "
"and help us to create a better social web."
msgstr ""
#: ../../mod/invite.php:137
msgid "You will need to supply this invitation code: $invite_code"
msgstr "Вам нужно будет предоставить этот код приглашения: $invite_code"
#: ../../mod/invite.php:137
msgid ""
"Once you have registered, please connect with me via my profile page at:"
msgstr "После того как вы зарегистрировались, пожалуйста, свяжитесь со мной через мою страницу профиля по адресу:"
#: ../../mod/invite.php:139
msgid ""
"For more information about the Friendica project and why we feel it is "
"important, please visit http://friendica.com"
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: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/localtime.php:24
msgid "Time Conversion"
msgstr "История общения"
#: ../../mod/localtime.php:26
msgid ""
"Friendica provides this service for sharing events with other networks and "
"friends in unknown timezones."
msgstr ""
#: ../../mod/localtime.php:30
#, php-format
msgid "UTC time: %s"
msgstr "UTC время: %s"
#: ../../mod/localtime.php:33
#, php-format
msgid "Current timezone: %s"
msgstr "Ваш часовой пояс: %s"
#: ../../mod/localtime.php:36
#, php-format
msgid "Converted localtime: %s"
msgstr "Ваше изменённое время: %s"
#: ../../mod/localtime.php:41
msgid "Please select your timezone:"
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/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 "Запрос на сброс пароля получен %s"
#: ../../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:1072
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 <em>Settings</em> page after "
"successful login."
msgstr "Ваш пароль может быть изменен на странице <em>Настройки</em> после успешного входа."
#: ../../mod/lostpass.php:107
#, php-format
msgid "Your password has been changed at %s"
msgstr "Ваш пароль был изменен %s"
#: ../../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 "Ник или E-mail: "
#: ../../mod/lostpass.php:125
msgid "Reset"
msgstr "Сброс"
#: ../../mod/maintenance.php:5
msgid "System down for maintenance"
msgstr "Система закрыта на техническое обслуживание"
#: ../../mod/manage.php:106
msgid "Manage Identities and/or Pages"
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"
msgstr ""
#: ../../mod/manage.php:108
msgid "Select an identity to manage: "
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/message.php:67
msgid "Unable to locate contact information."
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 "Неизвестный отправитель - %s"
#: ../../mod/message.php:381
#, php-format
msgid "You and %s"
msgstr "Вы и %s"
#: ../../mod/message.php:384
#, php-format
msgid "%s and You"
msgstr "%s и Вы"
#: ../../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 "D, d M Y - g:i A"
#: ../../mod/message.php:411
#, php-format
msgid "%d message"
msgid_plural "%d messages"
msgstr[0] "%d сообщение"
msgstr[1] "%d сообщений"
msgstr[2] "%d сообщений"
#: ../../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 <strong>may</strong> be able to "
"respond from the sender's profile page."
msgstr ""
#: ../../mod/message.php:552
msgid "Send Reply"
msgstr "Отправить ответ"
#: ../../mod/mood.php:133
msgid "Mood"
msgstr ""
#: ../../mod/mood.php:134
msgid "Set your current mood and tell your friends"
msgstr ""
#: ../../mod/network.php:181
msgid "Search Results For:"
msgstr ""
#: ../../mod/network.php:397
msgid "Commented Order"
msgstr "Прокомментированный запрос"
#: ../../mod/network.php:400
msgid "Sort by Comment Date"
msgstr ""
#: ../../mod/network.php:403
msgid "Posted Order"
msgstr "Отправленный запрос"
#: ../../mod/network.php:406
msgid "Sort by Post Date"
msgstr ""
#: ../../mod/network.php:444 ../../mod/notifications.php:88
msgid "Personal"
msgstr "Персонал"
#: ../../mod/network.php:447
msgid "Posts that mention or involve you"
msgstr ""
#: ../../mod/network.php:453
msgid "New"
msgstr "Новый"
#: ../../mod/network.php:456
msgid "Activity Stream - by date"
msgstr ""
#: ../../mod/network.php:462
msgid "Shared Links"
msgstr ""
#: ../../mod/network.php:465
msgid "Interesting Links"
msgstr ""
#: ../../mod/network.php:471
msgid "Starred"
msgstr "Помеченный"
#: ../../mod/network.php:474
msgid "Favourite Posts"
msgstr ""
#: ../../mod/network.php:546
#, php-format
msgid "Warning: This group contains %s member from an insecure network."
msgid_plural ""
"Warning: This group contains %s members from an insecure network."
msgstr[0] "Внимание: Эта группа содержит %s участника с незащищенной сети."
msgstr[1] "Внимание: Эта группа содержит %s участников с незащищенной сети."
msgstr[2] "Внимание: Эта группа содержит %s участников с незащищенной сети."
#: ../../mod/network.php:549
msgid "Private messages to this group are at risk of public disclosure."
msgstr "Личные сообщения к этой группе находятся под угрозой обнародования."
#: ../../mod/network.php:596 ../../mod/content.php:119
msgid "No such group"
msgstr "Нет такой группы"
#: ../../mod/network.php:607 ../../mod/content.php:130
msgid "Group is empty"
msgstr "Группа пуста"
#: ../../mod/network.php:611 ../../mod/content.php:134
msgid "Group: "
msgstr "Группа: "
#: ../../mod/network.php:621
msgid "Contact: "
msgstr "Контакт: "
#: ../../mod/network.php:623
msgid "Private messages to this person are at risk of public disclosure."
msgstr "Личные сообщения этому человеку находятся под угрозой обнародования."
#: ../../mod/network.php:628
msgid "Invalid contact."
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: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 "предложено юзером %s"
#: ../../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:257 ../../mod/notifications.php:382
#: ../../mod/notifications.php:469
#, php-format
msgid "%s liked %s's post"
msgstr "%s нравится %s сообшение"
#: ../../mod/notifications.php:266 ../../mod/notifications.php:391
#: ../../mod/notifications.php:478
#, php-format
msgid "%s disliked %s's post"
msgstr "%s не нравится %s сообшение"
#: ../../mod/notifications.php:280 ../../mod/notifications.php:405
#: ../../mod/notifications.php:492
#, php-format
msgid "%s is now friends with %s"
msgstr "%s теперь друзья с %s"
#: ../../mod/notifications.php:287 ../../mod/notifications.php:412
#, php-format
msgid "%s created a new post"
msgstr "%s написал новое сообщение"
#: ../../mod/notifications.php:288 ../../mod/notifications.php:413
#: ../../mod/notifications.php:501
#, php-format
msgid "%s commented on %s's post"
msgstr "%s прокомментировал %s сообщение"
#: ../../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/photos.php:51 ../../boot.php:1878
msgid "Photo Albums"
msgstr "Фотоальбомы"
#: ../../mod/photos.php:59 ../../mod/photos.php:154 ../../mod/photos.php:1058
#: ../../mod/photos.php:1183 ../../mod/photos.php:1206
#: ../../mod/photos.php:1736 ../../mod/photos.php:1748
#: ../../view/theme/diabook/theme.php:492
msgid "Contact Photos"
msgstr "Фотографии контакта"
#: ../../mod/photos.php:66 ../../mod/photos.php:1222 ../../mod/photos.php:1795
msgid "Upload New Photos"
msgstr "Загрузить новые фото"
#: ../../mod/photos.php:143
msgid "Contact information unavailable"
msgstr "Информация о контакте недоступна"
#: ../../mod/photos.php:164
msgid "Album not found."
msgstr "Альбом не найден."
#: ../../mod/photos.php:187 ../../mod/photos.php:199 ../../mod/photos.php:1200
msgid "Delete Album"
msgstr "Удалить альбом"
#: ../../mod/photos.php:197
msgid "Do you really want to delete this photo album and all its photos?"
msgstr "Вы действительно хотите удалить этот альбом и все его фотографии?"
#: ../../mod/photos.php:276 ../../mod/photos.php:287 ../../mod/photos.php:1502
msgid "Delete Photo"
msgstr "Удалить фото"
#: ../../mod/photos.php:285
msgid "Do you really want to delete this photo?"
msgstr "Вы действительно хотите удалить эту фотографию?"
#: ../../mod/photos.php:656
#, php-format
msgid "%1$s was tagged in %2$s by %3$s"
msgstr ""
#: ../../mod/photos.php:656
msgid "a photo"
msgstr "фото"
#: ../../mod/photos.php:761
msgid "Image exceeds size limit of "
msgstr "Размер фото превышает лимит "
#: ../../mod/photos.php:769
msgid "Image file is empty."
msgstr "Файл изображения пуст."
#: ../../mod/photos.php:924
msgid "No photos selected"
msgstr "Не выбрано фото."
#: ../../mod/photos.php:1025
msgid "Access to this item is restricted."
msgstr "Доступ к этому пункту ограничен."
#: ../../mod/photos.php:1088
#, php-format
msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."
msgstr ""
#: ../../mod/photos.php:1123
msgid "Upload Photos"
msgstr "Загрузить фото"
#: ../../mod/photos.php:1127 ../../mod/photos.php:1195
msgid "New album name: "
msgstr "Название нового альбома: "
#: ../../mod/photos.php:1128
msgid "or existing album name: "
msgstr "или название существующего альбома: "
#: ../../mod/photos.php:1129
msgid "Do not show a status post for this upload"
msgstr "Не показывать статус-сообщение для этой закачки"
#: ../../mod/photos.php:1131 ../../mod/photos.php:1497
msgid "Permissions"
msgstr "Разрешения"
#: ../../mod/photos.php:1142
msgid "Private Photo"
msgstr "Личное фото"
#: ../../mod/photos.php:1143
msgid "Public Photo"
msgstr "Публичное фото"
#: ../../mod/photos.php:1210
msgid "Edit Album"
msgstr "Редактировать альбом"
#: ../../mod/photos.php:1216
msgid "Show Newest First"
msgstr "Показать новые первыми"
#: ../../mod/photos.php:1218
msgid "Show Oldest First"
msgstr "Показать старые первыми"
#: ../../mod/photos.php:1251 ../../mod/photos.php:1778
msgid "View Photo"
msgstr "Просмотр фото"
#: ../../mod/photos.php:1286
msgid "Permission denied. Access to this item may be restricted."
msgstr "Нет разрешения. Доступ к этому элементу ограничен."
#: ../../mod/photos.php:1288
msgid "Photo not available"
msgstr "Фото недоступно"
#: ../../mod/photos.php:1344
msgid "View photo"
msgstr "Просмотр фото"
#: ../../mod/photos.php:1344
msgid "Edit photo"
msgstr "Редактировать фото"
#: ../../mod/photos.php:1345
msgid "Use as profile photo"
msgstr "Использовать как фото профиля"
#: ../../mod/photos.php:1351 ../../mod/content.php:643
#: ../../object/Item.php:113
msgid "Private Message"
msgstr "Личное сообщение"
#: ../../mod/photos.php:1370
msgid "View Full Size"
msgstr "Просмотреть полный размер"
#: ../../mod/photos.php:1444
msgid "Tags: "
msgstr "Ключевые слова: "
#: ../../mod/photos.php:1447
msgid "[Remove any tag]"
msgstr "[Удалить любое ключевое слово]"
#: ../../mod/photos.php:1487
msgid "Rotate CW (right)"
msgstr "Поворот по часовой стрелке (направо)"
#: ../../mod/photos.php:1488
msgid "Rotate CCW (left)"
msgstr "Поворот против часовой стрелки (налево)"
#: ../../mod/photos.php:1490
msgid "New album name"
msgstr "Название нового альбома"
#: ../../mod/photos.php:1493
msgid "Caption"
msgstr "Подпись"
#: ../../mod/photos.php:1495
msgid "Add a Tag"
msgstr "Добавить ключевое слово (таг)"
#: ../../mod/photos.php:1499
msgid ""
"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
msgstr "Пример: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
#: ../../mod/photos.php:1508
msgid "Private photo"
msgstr "Личное фото"
#: ../../mod/photos.php:1509
msgid "Public photo"
msgstr "Публичное фото"
#: ../../mod/photos.php:1529 ../../mod/content.php:707
#: ../../object/Item.php:232
msgid "I like this (toggle)"
msgstr "Нравится"
#: ../../mod/photos.php:1530 ../../mod/content.php:708
#: ../../object/Item.php:233
msgid "I don't like this (toggle)"
msgstr "Не нравится"
#: ../../mod/photos.php:1549 ../../mod/photos.php:1593
#: ../../mod/photos.php:1676 ../../mod/content.php:730
#: ../../object/Item.php:650
msgid "This is you"
msgstr "Это вы"
#: ../../mod/photos.php:1551 ../../mod/photos.php:1595
#: ../../mod/photos.php:1678 ../../mod/content.php:732
#: ../../object/Item.php:338 ../../object/Item.php:652 ../../boot.php:651
msgid "Comment"
msgstr "Комментарий"
#: ../../mod/photos.php:1784
msgid "View Album"
msgstr "Просмотреть альбом"
#: ../../mod/photos.php:1793
msgid "Recent Photos"
msgstr "Последние фото"
#: ../../mod/newmember.php:6
msgid "Welcome to Friendica"
msgstr "Добро пожаловать в Friendica"
#: ../../mod/newmember.php:8
msgid "New Member Checklist"
msgstr "Новый контрольный список участников"
#: ../../mod/newmember.php:12
msgid ""
"We would like to offer some tips and links to help make your experience "
"enjoyable. Click any item to visit the relevant page. A link to this page "
"will be visible from your home page for two weeks after your initial "
"registration and then will quietly disappear."
msgstr ""
#: ../../mod/newmember.php:14
msgid "Getting Started"
msgstr ""
#: ../../mod/newmember.php:18
msgid "Friendica Walk-Through"
msgstr ""
#: ../../mod/newmember.php:18
msgid ""
"On your <em>Quick Start</em> page - find a brief introduction to your "
"profile and network tabs, make some new connections, and find some groups to"
" join."
msgstr ""
#: ../../mod/newmember.php:26
msgid "Go to Your Settings"
msgstr ""
#: ../../mod/newmember.php:26
msgid ""
"On your <em>Settings</em> page - change your initial password. Also make a "
"note of your Identity Address. This looks just like an email address - and "
"will be useful in making friends on the free social web."
msgstr ""
#: ../../mod/newmember.php:28
msgid ""
"Review the other settings, particularly the privacy settings. An unpublished"
" directory listing is like having an unlisted phone number. In general, you "
"should probably publish your listing - unless all of your friends and "
"potential friends know exactly how to find you."
msgstr "Просмотрите другие установки, в частности, параметры конфиденциальности. Неопубликованные пункты каталога с частными номерами телефона. В общем, вам, вероятно, следует опубликовать свою информацию - если все ваши друзья и потенциальные друзья точно знают, как вас найти."
#: ../../mod/newmember.php:36 ../../mod/profile_photo.php:244
msgid "Upload Profile Photo"
msgstr "Загрузить фото профиля"
#: ../../mod/newmember.php:36
msgid ""
"Upload a profile photo if you have not done so already. Studies have shown "
"that people with real photos of themselves are ten times more likely to make"
" friends than people who do not."
msgstr "Загрузите фотографию профиля, если вы еще не сделали это. Исследования показали, что люди с реальными фотографиями имеют в десять раз больше шансов подружиться, чем люди, которые этого не делают."
#: ../../mod/newmember.php:38
msgid "Edit Your Profile"
msgstr "Редактировать профиль"
#: ../../mod/newmember.php:38
msgid ""
"Edit your <strong>default</strong> profile to your liking. Review the "
"settings for hiding your list of friends and hiding the profile from unknown"
" visitors."
msgstr "Отредактируйте профиль <strong>по умолчанию</strong> на свой ​​вкус. Просмотрите установки для сокрытия вашего списка друзей и сокрытия профиля от неизвестных посетителей."
#: ../../mod/newmember.php:40
msgid "Profile Keywords"
msgstr "Ключевые слова профиля"
#: ../../mod/newmember.php:40
msgid ""
"Set some public keywords for your default profile which describe your "
"interests. We may be able to find other people with similar interests and "
"suggest friendships."
msgstr "Установите некоторые публичные ключевые слова для вашего профиля по умолчанию, которые описывают ваши интересы. Мы можем быть в состоянии найти других людей со схожими интересами и предложить дружбу."
#: ../../mod/newmember.php:44
msgid "Connecting"
msgstr "Подключение"
#: ../../mod/newmember.php:49
msgid ""
"Authorise the Facebook Connector if you currently have a Facebook account "
"and we will (optionally) import all your Facebook friends and conversations."
msgstr "Авторизуйте Facebook Connector , если у вас уже есть аккаунт на Facebook, и мы (по желанию) импортируем всех ваших друзей и беседы с Facebook."
#: ../../mod/newmember.php:51
msgid ""
"<em>If</em> this is your own personal server, installing the Facebook addon "
"may ease your transition to the free social web."
msgstr ""
#: ../../mod/newmember.php:56
msgid "Importing Emails"
msgstr ""
#: ../../mod/newmember.php:56
msgid ""
"Enter your email access information on your Connector Settings page if you "
"wish to import and interact with friends or mailing lists from your email "
"INBOX"
msgstr ""
#: ../../mod/newmember.php:58
msgid "Go to Your Contacts Page"
msgstr ""
#: ../../mod/newmember.php:58
msgid ""
"Your Contacts page is your gateway to managing friendships and connecting "
"with friends on other networks. Typically you enter their address or site "
"URL in the <em>Add New Contact</em> dialog."
msgstr ""
#: ../../mod/newmember.php:60
msgid "Go to Your Site's Directory"
msgstr ""
#: ../../mod/newmember.php:60
msgid ""
"The Directory page lets you find other people in this network or other "
"federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on "
"their profile page. Provide your own Identity Address if requested."
msgstr "На странице каталога вы можете найти других людей в этой сети или на других похожих сайтах. Ищите ссылки <em>Подключить</em> или <em>Следовать</em> на страницах их профилей. Укажите свой собственный адрес идентификации, если требуется."
#: ../../mod/newmember.php:62
msgid "Finding New People"
msgstr "Поиск людей"
#: ../../mod/newmember.php:62
msgid ""
"On the side panel of the Contacts page are several tools to find new "
"friends. We can match people by interest, look up people by name or "
"interest, and provide suggestions based on network relationships. On a brand"
" new site, friend suggestions will usually begin to be populated within 24 "
"hours."
msgstr ""
#: ../../mod/newmember.php:70
msgid "Group Your Contacts"
msgstr ""
#: ../../mod/newmember.php:70
msgid ""
"Once you have made some friends, organize them into private conversation "
"groups from the sidebar of your Contacts page and then you can interact with"
" each group privately on your Network page."
msgstr "После того, как вы найдете несколько друзей, организуйте их в группы частных бесед в боковой панели на странице Контакты, а затем вы можете взаимодействовать с каждой группой приватно или на вашей странице Сеть."
#: ../../mod/newmember.php:73
msgid "Why Aren't My Posts Public?"
msgstr ""
#: ../../mod/newmember.php:73
msgid ""
"Friendica respects your privacy. By default, your posts will only show up to"
" people you've added as friends. For more information, see the help section "
"from the link above."
msgstr ""
#: ../../mod/newmember.php:78
msgid "Getting Help"
msgstr ""
#: ../../mod/newmember.php:82
msgid "Go to the Help Section"
msgstr ""
#: ../../mod/newmember.php:82
msgid ""
"Our <strong>help</strong> pages may be consulted for detail on other program"
" features and resources."
msgstr "Наши страницы <strong>помощи</strong> могут проконсультировать о подробностях и возможностях программы и ресурса."
#: ../../mod/profile.php:21 ../../boot.php:1246
msgid "Requested profile is not available."
msgstr "Запрашиваемый профиль недоступен."
#: ../../mod/profile.php:155 ../../mod/display.php:99
msgid "Access to this profile has been restricted."
msgstr "Доступ к этому профилю ограничен."
#: ../../mod/profile.php:180
msgid "Tips for New Members"
msgstr "Советы для новых участников"
#: ../../mod/display.php:206
msgid "Item has been removed."
msgstr "Пункт был удален."
#: ../../mod/install.php:117
msgid "Friendica Social Communications Server - Setup"
msgstr ""
#: ../../mod/install.php:123
msgid "Could not connect to database."
msgstr "Не удалось подключиться к базе данных."
#: ../../mod/install.php:127
msgid "Could not create table."
msgstr "Не удалось создать таблицу."
#: ../../mod/install.php:133
msgid "Your Friendica site database has been installed."
msgstr "База данных сайта установлена."
#: ../../mod/install.php:138
msgid ""
"You may need to import the file \"database.sql\" manually using phpmyadmin "
"or mysql."
msgstr "Вам может понадобиться импортировать файл \"database.sql\" вручную с помощью PhpMyAdmin или MySQL."
#: ../../mod/install.php:139 ../../mod/install.php:206
#: ../../mod/install.php:521
msgid "Please see the file \"INSTALL.txt\"."
msgstr "Пожалуйста, смотрите файл \"INSTALL.txt\"."
#: ../../mod/install.php:203
msgid "System check"
msgstr "Проверить систему"
#: ../../mod/install.php:208
msgid "Check again"
msgstr "Проверить еще раз"
#: ../../mod/install.php:227
msgid "Database connection"
msgstr "Подключение к базе данных"
#: ../../mod/install.php:228
msgid ""
"In order to install Friendica we need to know how to connect to your "
"database."
msgstr ""
#: ../../mod/install.php:229
msgid ""
"Please contact your hosting provider or site administrator if you have "
"questions about these settings."
msgstr "Пожалуйста, свяжитесь с вашим хостинг-провайдером или администратором сайта, если у вас есть вопросы об этих параметрах."
#: ../../mod/install.php:230
msgid ""
"The database you specify below should already exist. If it does not, please "
"create it before continuing."
msgstr "Базы данных, указанная ниже, должна уже существовать. Если этого нет, пожалуйста, создайте ее перед продолжением."
#: ../../mod/install.php:234
msgid "Database Server Name"
msgstr "Имя сервера базы данных"
#: ../../mod/install.php:235
msgid "Database Login Name"
msgstr "Логин базы данных"
#: ../../mod/install.php:236
msgid "Database Login Password"
msgstr "Пароль базы данных"
#: ../../mod/install.php:237
msgid "Database Name"
msgstr "Имя базы данных"
#: ../../mod/install.php:238 ../../mod/install.php:277
msgid "Site administrator email address"
msgstr "Адрес электронной почты администратора сайта"
#: ../../mod/install.php:238 ../../mod/install.php:277
msgid ""
"Your account email address must match this in order to use the web admin "
"panel."
msgstr ""
#: ../../mod/install.php:242 ../../mod/install.php:280
msgid "Please select a default timezone for your website"
msgstr "Пожалуйста, выберите часовой пояс по умолчанию для вашего сайта"
#: ../../mod/install.php:267
msgid "Site settings"
msgstr "Настройки сайта"
#: ../../mod/install.php:321
msgid "Could not find a command line version of PHP in the web server PATH."
msgstr "Не удалось найти PATH веб-сервера в установках PHP."
#: ../../mod/install.php:322
msgid ""
"If you don't have a command line version of PHP installed on server, you "
"will not be able to run background polling via cron. See <a "
"href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>"
msgstr ""
#: ../../mod/install.php:326
msgid "PHP executable path"
msgstr "PHP executable path"
#: ../../mod/install.php:326
msgid ""
"Enter full path to php executable. You can leave this blank to continue the "
"installation."
msgstr ""
#: ../../mod/install.php:331
msgid "Command line PHP"
msgstr "Command line PHP"
#: ../../mod/install.php:340
msgid "PHP executable is not the php cli binary (could be cgi-fgci version)"
msgstr ""
#: ../../mod/install.php:341
msgid "Found PHP version: "
msgstr "Найденная PHP версия: "
#: ../../mod/install.php:343
msgid "PHP cli binary"
msgstr "PHP cli binary"
#: ../../mod/install.php:354
msgid ""
"The command line version of PHP on your system does not have "
"\"register_argc_argv\" enabled."
msgstr "Не включено \"register_argc_argv\" в установках PHP."
#: ../../mod/install.php:355
msgid "This is required for message delivery to work."
msgstr "Это необходимо для работы доставки сообщений."
#: ../../mod/install.php:357
msgid "PHP register_argc_argv"
msgstr "PHP register_argc_argv"
#: ../../mod/install.php:378
msgid ""
"Error: the \"openssl_pkey_new\" function on this system is not able to "
"generate encryption keys"
msgstr "Ошибка: функция \"openssl_pkey_new\" в этой системе не в состоянии генерировать ключи шифрования"
#: ../../mod/install.php:379
msgid ""
"If running under Windows, please see "
"\"http://www.php.net/manual/en/openssl.installation.php\"."
msgstr "Если вы работаете под Windows, см. \"http://www.php.net/manual/en/openssl.installation.php\"."
#: ../../mod/install.php:381
msgid "Generate encryption keys"
msgstr "Генерация шифрованых ключей"
#: ../../mod/install.php:388
msgid "libCurl PHP module"
msgstr "libCurl PHP модуль"
#: ../../mod/install.php:389
msgid "GD graphics PHP module"
msgstr "GD graphics PHP модуль"
#: ../../mod/install.php:390
msgid "OpenSSL PHP module"
msgstr "OpenSSL PHP модуль"
#: ../../mod/install.php:391
msgid "mysqli PHP module"
msgstr "mysqli PHP модуль"
#: ../../mod/install.php:392
msgid "mb_string PHP module"
msgstr "mb_string PHP модуль"
#: ../../mod/install.php:397 ../../mod/install.php:399
msgid "Apache mod_rewrite module"
msgstr "Apache mod_rewrite module"
#: ../../mod/install.php:397
msgid ""
"Error: Apache webserver mod-rewrite module is required but not installed."
msgstr "Ошибка: необходим модуль веб-сервера Apache mod-rewrite, но он не установлен."
#: ../../mod/install.php:405
msgid "Error: libCURL PHP module required but not installed."
msgstr "Ошибка: необходим libCURL PHP модуль, но он не установлен."
#: ../../mod/install.php:409
msgid ""
"Error: GD graphics PHP module with JPEG support required but not installed."
msgstr "Ошибка: необходим PHP модуль GD графики с поддержкой JPEG, но он не установлен."
#: ../../mod/install.php:413
msgid "Error: openssl PHP module required but not installed."
msgstr "Ошибка: необходим PHP модуль OpenSSL, но он не установлен."
#: ../../mod/install.php:417
msgid "Error: mysqli PHP module required but not installed."
msgstr "Ошибка: необходим PHP модуль MySQLi, но он не установлен."
#: ../../mod/install.php:421
msgid "Error: mb_string PHP module required but not installed."
msgstr "Ошибка: необходим PHP модуль mb_string, но он не установлен."
#: ../../mod/install.php:438
msgid ""
"The web installer needs to be able to create a file called \".htconfig.php\""
" in the top folder of your web server and it is unable to do so."
msgstr "Веб-инсталлятору требуется создать файл с именем \". htconfig.php\" в верхней папке веб-сервера, но он не в состоянии это сделать."
#: ../../mod/install.php:439
msgid ""
"This is most often a permission setting, as the web server may not be able "
"to write files in your folder - even if you can."
msgstr "Это наиболее частые параметры разрешений, когда веб-сервер не может записать файлы в папке - даже если вы можете."
#: ../../mod/install.php:440
msgid ""
"At the end of this procedure, we will give you a text to save in a file "
"named .htconfig.php in your Friendica top folder."
msgstr ""
#: ../../mod/install.php:441
msgid ""
"You can alternatively skip this procedure and perform a manual installation."
" Please see the file \"INSTALL.txt\" for instructions."
msgstr ""
#: ../../mod/install.php:444
msgid ".htconfig.php is writable"
msgstr ".htconfig.php is writable"
#: ../../mod/install.php:454
msgid ""
"Friendica uses the Smarty3 template engine to render its web views. Smarty3 "
"compiles templates to PHP to speed up rendering."
msgstr ""
#: ../../mod/install.php:455
msgid ""
"In order to store these compiled templates, the web server needs to have "
"write access to the directory view/smarty3/ under the Friendica top level "
"folder."
msgstr ""
#: ../../mod/install.php:456
msgid ""
"Please ensure that the user that your web server runs as (e.g. www-data) has"
" write access to this folder."
msgstr ""
#: ../../mod/install.php:457
msgid ""
"Note: as a security measure, you should give the web server write access to "
"view/smarty3/ only--not the template files (.tpl) that it contains."
msgstr ""
#: ../../mod/install.php:460
msgid "view/smarty3 is writable"
msgstr ""
#: ../../mod/install.php:472
msgid ""
"Url rewrite in .htaccess is not working. Check your server configuration."
msgstr ""
#: ../../mod/install.php:474
msgid "Url rewrite is working"
msgstr ""
#: ../../mod/install.php:484
msgid ""
"The database configuration file \".htconfig.php\" could not be written. "
"Please use the enclosed text to create a configuration file in your web "
"server root."
msgstr "Файл конфигурации базы данных \".htconfig.php\" не могла быть записан. Пожалуйста, используйте приложенный текст, чтобы создать конфигурационный файл в корневом каталоге веб-сервера."
#: ../../mod/install.php:508
msgid "Errors encountered creating database tables."
msgstr "Обнаружены ошибки при создании таблиц базы данных."
#: ../../mod/install.php:519
msgid "<h1>What next</h1>"
msgstr "<h1>Что далее</h1>"
#: ../../mod/install.php:520
msgid ""
"IMPORTANT: You will need to [manually] setup a scheduled task for the "
"poller."
msgstr "ВАЖНО: Вам нужно будет [вручную] установить запланированное задание для регистратора."
#: ../../mod/oexchange.php:25
msgid "Post successful."
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 "Аккаунт не найден и OpenID регистрация не допускается на этом сайте."
#: ../../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 "Уменьшение размера изображения [%s] не удалось."
#: ../../mod/profile_photo.php:118
msgid ""
"Shift-reload the page or clear browser cache if the new photo does not "
"display immediately."
msgstr "Перезагрузите страницу с зажатой клавишей \"Shift\" для того, чтобы увидеть свое новое фото немедленно."
#: ../../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/community.php:23
msgid "Not available."
msgstr "Недоступно."
#: ../../mod/content.php:626 ../../object/Item.php:362
#, php-format
msgid "%d comment"
msgid_plural "%d comments"
msgstr[0] "%d комментарий"
msgstr[1] "%d комментариев"
msgstr[2] "%d комментариев"
#: ../../mod/content.php:707 ../../object/Item.php:232
msgid "like"
msgstr "нравится"
#: ../../mod/content.php:708 ../../object/Item.php:233
msgid "dislike"
msgstr "не нравитса"
#: ../../mod/content.php:710 ../../object/Item.php:235
msgid "Share this"
msgstr "Поделитесь этим"
#: ../../mod/content.php:710 ../../object/Item.php:235
msgid "share"
msgstr "делиться"
#: ../../mod/content.php:734 ../../object/Item.php:654
msgid "Bold"
msgstr "Жирный"
#: ../../mod/content.php:735 ../../object/Item.php:655
msgid "Italic"
msgstr "Kурсивный"
#: ../../mod/content.php:736 ../../object/Item.php:656
msgid "Underline"
msgstr "Подчеркнутый"
#: ../../mod/content.php:737 ../../object/Item.php:657
msgid "Quote"
msgstr "Цитата"
#: ../../mod/content.php:738 ../../object/Item.php:658
msgid "Code"
msgstr "Код"
#: ../../mod/content.php:739 ../../object/Item.php:659
msgid "Image"
msgstr "Изображение / Фото"
#: ../../mod/content.php:740 ../../object/Item.php:660
msgid "Link"
msgstr "Ссылка"
#: ../../mod/content.php:741 ../../object/Item.php:661
msgid "Video"
msgstr "Видео"
#: ../../mod/content.php:776 ../../object/Item.php:211
msgid "add star"
msgstr "пометить"
#: ../../mod/content.php:777 ../../object/Item.php:212
msgid "remove star"
msgstr "убрать метку"
#: ../../mod/content.php:778 ../../object/Item.php:213
msgid "toggle star status"
msgstr "переключить статус"
#: ../../mod/content.php:781 ../../object/Item.php:216
msgid "starred"
msgstr "помечено"
#: ../../mod/content.php:782 ../../object/Item.php:221
msgid "add tag"
msgstr "добавить ключевое слово (таг)"
#: ../../mod/content.php:786 ../../object/Item.php:130
msgid "save to folder"
msgstr "сохранить в папке"
#: ../../mod/content.php:877 ../../object/Item.php:308
msgid "to"
msgstr "к"
#: ../../mod/content.php:878 ../../object/Item.php:310
msgid "Wall-to-Wall"
msgstr "Стена-на-Стену"
#: ../../mod/content.php:879 ../../object/Item.php:311
msgid "via Wall-To-Wall:"
msgstr "через Стена-на-Стену:"
#: ../../object/Item.php:92
msgid "This entry was edited"
msgstr ""
#: ../../object/Item.php:309
msgid "via"
msgstr "через"
#: ../../view/theme/cleanzero/config.php:82
#: ../../view/theme/diabook/config.php:154
#: ../../view/theme/dispy/config.php:72 ../../view/theme/quattro/config.php:66
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/diabook/config.php:155
#: ../../view/theme/dispy/config.php:73
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/diabook/config.php:156
#: ../../view/theme/dispy/config.php:74
msgid "Set line-height for posts and comments"
msgstr ""
#: ../../view/theme/diabook/config.php:157
msgid "Set resolution for middle column"
msgstr ""
#: ../../view/theme/diabook/config.php:158
msgid "Set color scheme"
msgstr ""
#: ../../view/theme/diabook/config.php:159
#: ../../view/theme/diabook/theme.php:609
msgid "Set twitter search term"
msgstr ""
#: ../../view/theme/diabook/config.php:160
msgid "Set zoomfactor for Earth Layer"
msgstr ""
#: ../../view/theme/diabook/config.php:161
#: ../../view/theme/diabook/theme.php:578
msgid "Set longitude (X) for Earth Layers"
msgstr ""
#: ../../view/theme/diabook/config.php:162
#: ../../view/theme/diabook/theme.php:579
msgid "Set latitude (Y) for Earth Layers"
msgstr ""
#: ../../view/theme/diabook/config.php:163
#: ../../view/theme/diabook/theme.php:94
#: ../../view/theme/diabook/theme.php:537
#: ../../view/theme/diabook/theme.php:632
msgid "Community Pages"
msgstr "Страницы сообщества"
#: ../../view/theme/diabook/config.php:164
#: ../../view/theme/diabook/theme.php:572
#: ../../view/theme/diabook/theme.php:633
msgid "Earth Layers"
msgstr ""
#: ../../view/theme/diabook/config.php:165
#: ../../view/theme/diabook/theme.php:384
#: ../../view/theme/diabook/theme.php:634
msgid "Community Profiles"
msgstr ""
#: ../../view/theme/diabook/config.php:166
#: ../../view/theme/diabook/theme.php:592
#: ../../view/theme/diabook/theme.php:635
msgid "Help or @NewHere ?"
msgstr ""
#: ../../view/theme/diabook/config.php:167
#: ../../view/theme/diabook/theme.php:599
#: ../../view/theme/diabook/theme.php:636
msgid "Connect Services"
msgstr "Подключить службы"
#: ../../view/theme/diabook/config.php:168
#: ../../view/theme/diabook/theme.php:516
#: ../../view/theme/diabook/theme.php:637
msgid "Find Friends"
msgstr "Найти друзей"
#: ../../view/theme/diabook/config.php:169
msgid "Last tweets"
msgstr ""
#: ../../view/theme/diabook/config.php:170
#: ../../view/theme/diabook/theme.php:405
#: ../../view/theme/diabook/theme.php:639
msgid "Last users"
msgstr "Последние пользователи"
#: ../../view/theme/diabook/config.php:171
#: ../../view/theme/diabook/theme.php:479
#: ../../view/theme/diabook/theme.php:640
msgid "Last photos"
msgstr "Последние фото"
#: ../../view/theme/diabook/config.php:172
#: ../../view/theme/diabook/theme.php:434
#: ../../view/theme/diabook/theme.php:641
msgid "Last likes"
msgstr "Последние likes"
#: ../../view/theme/diabook/theme.php:89
msgid "Your contacts"
msgstr "Ваши контакты"
#: ../../view/theme/diabook/theme.php:517
msgid "Local Directory"
msgstr "Локальный каталог"
#: ../../view/theme/diabook/theme.php:577
msgid "Set zoomfactor for Earth Layers"
msgstr ""
#: ../../view/theme/diabook/theme.php:606
#: ../../view/theme/diabook/theme.php:638
msgid "Last Tweets"
msgstr "Последние твиты"
#: ../../view/theme/diabook/theme.php:630
msgid "Show/hide boxes at right-hand column:"
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 ""
#: ../../boot.php:650
msgid "Delete this item?"
msgstr "Удалить этот элемент?"
#: ../../boot.php:610
#: ../../boot.php:653
msgid "show fewer"
msgstr "показать меньше"
#: ../../boot.php:819
#: ../../boot.php:920
#, php-format
msgid "Update %s failed. See error logs."
msgstr ""
#: ../../boot.php:821
#: ../../boot.php:922
#, php-format
msgid "Update Error at %s"
msgstr ""
#: ../../boot.php:922
#: ../../boot.php:1032
msgid "Create a New Account"
msgstr "Создать новый аккаунт"
#: ../../boot.php:951
#: ../../boot.php:1060
msgid "Nickname or Email address: "
msgstr "Ник или адрес электронной почты: "
#: ../../boot.php:952
#: ../../boot.php:1061
msgid "Password: "
msgstr "Пароль: "
#: ../../boot.php:953
#: ../../boot.php:1062
msgid "Remember me"
msgstr ""
msgstr "Напомнить"
#: ../../boot.php:956
#: ../../boot.php:1065
msgid "Or login using OpenID: "
msgstr ""
msgstr "Или зайти с OpenID: "
#: ../../boot.php:962
#: ../../boot.php:1071
msgid "Forgot your password?"
msgstr "Забыли пароль?"
#: ../../boot.php:1087
#: ../../boot.php:1074
msgid "Website Terms of Service"
msgstr ""
#: ../../boot.php:1075
msgid "terms of service"
msgstr ""
#: ../../boot.php:1077
msgid "Website Privacy Policy"
msgstr ""
#: ../../boot.php:1078
msgid "privacy policy"
msgstr ""
#: ../../boot.php:1207
msgid "Requested account is not available."
msgstr ""
#: ../../boot.php:1164
#: ../../boot.php:1286 ../../boot.php:1390
msgid "Edit profile"
msgstr "Редактировать профиль"
#: ../../boot.php:1230
#: ../../boot.php:1352
msgid "Message"
msgstr ""
msgstr "Сообщение"
#: ../../boot.php:1238
#: ../../boot.php:1360
msgid "Manage/edit profiles"
msgstr "Управление / редактирование профилей"
#: ../../boot.php:1352 ../../boot.php:1438
#: ../../boot.php:1489 ../../boot.php:1575
msgid "g A l F d"
msgstr "g A l F d"
#: ../../boot.php:1353 ../../boot.php:1439
#: ../../boot.php:1490 ../../boot.php:1576
msgid "F d"
msgstr "F d"
#: ../../boot.php:1398 ../../boot.php:1479
#: ../../boot.php:1535 ../../boot.php:1616
msgid "[today]"
msgstr "[сегодня]"
#: ../../boot.php:1410
#: ../../boot.php:1547
msgid "Birthday Reminders"
msgstr "Напоминания о днях рождения"
#: ../../boot.php:1411
#: ../../boot.php:1548
msgid "Birthdays this week:"
msgstr "Дни рождения на этой неделе:"
#: ../../boot.php:1472
#: ../../boot.php:1609
msgid "[No description]"
msgstr "[без описания]"
#: ../../boot.php:1490
#: ../../boot.php:1627
msgid "Event Reminders"
msgstr "Напоминания о мероприятиях"
#: ../../boot.php:1491
#: ../../boot.php:1628
msgid "Events this week:"
msgstr "Мероприятия на этой неделе:"
#: ../../boot.php:1727
#: ../../boot.php:1864
msgid "Status Messages and Posts"
msgstr ""
#: ../../boot.php:1734
#: ../../boot.php:1871
msgid "Profile Details"
msgstr ""
msgstr "Детали профиля"
#: ../../boot.php:1751
#: ../../boot.php:1888
msgid "Events and Calendar"
msgstr ""
#: ../../boot.php:1758
#: ../../boot.php:1895
msgid "Only You Can See This"
msgstr ""
msgstr "Только вы можете это видеть"
#: ../../object/Item.php:237
msgid "via"
msgstr ""
#: ../../index.php:398
#: ../../index.php:405
msgid "toggle mobile"
msgstr ""
#: ../../addon.old/bg/bg.php:51
msgid "Bg settings updated."
msgstr ""
#: ../../addon.old/bg/bg.php:82
msgid "Bg Settings"
msgstr ""
#: ../../addon.old/drpost/drpost.php:35
msgid "Post to Drupal"
msgstr ""
#: ../../addon.old/drpost/drpost.php:72
msgid "Drupal Post Settings"
msgstr ""
#: ../../addon.old/drpost/drpost.php:74
msgid "Enable Drupal Post Plugin"
msgstr "Включить Drupal плагин сообщений"
#: ../../addon.old/drpost/drpost.php:79
msgid "Drupal username"
msgstr "Drupal имя пользователя"
#: ../../addon.old/drpost/drpost.php:84
msgid "Drupal password"
msgstr "Drupal пароль"
#: ../../addon.old/drpost/drpost.php:89
msgid "Post Type - article,page,or blog"
msgstr ""
#: ../../addon.old/drpost/drpost.php:94
msgid "Drupal site URL"
msgstr "Drupal site URL"
#: ../../addon.old/drpost/drpost.php:99
msgid "Drupal site uses clean URLS"
msgstr ""
#: ../../addon.old/drpost/drpost.php:104
msgid "Post to Drupal by default"
msgstr ""
#: ../../addon.old/oembed.old/oembed.php:30
msgid "OEmbed settings updated"
msgstr "OEmbed настройки обновлены"
#: ../../addon.old/oembed.old/oembed.php:43
msgid "Use OEmbed for YouTube videos"
msgstr "Использовать OEmbed для видео YouTube"
#: ../../addon.old/oembed.old/oembed.php:71
msgid "URL to embed:"
msgstr "URL для встраивания:"
msgstr "мобильная версия"

View file

@ -5,1671 +5,25 @@ function string_plural_select_ru($n){
return ($n%10==1 && $n%100!=11 ? 0 : $n%10>=2 && $n%10<=4 && ($n%100<10 || $n%100>=20) ? 1 : 2);;
}}
;
$a->strings["Post successful."] = "Успешно добавлено.";
$a->strings["[Embedded content - reload page to view]"] = "[Встроенное содержание - перезагрузите страницу для просмотра]";
$a->strings["Contact settings applied."] = "Установки контакта приняты.";
$a->strings["Contact update failed."] = "Обновление контакта неудачное.";
$a->strings["Permission denied."] = "Нет разрешения.";
$a->strings["Contact not found."] = "Контакт не найден.";
$a->strings["Repair Contact Settings"] = "Восстановить установки контакта";
$a->strings["<strong>WARNING: This is highly advanced</strong> and if you enter incorrect information your communications with this contact may stop working."] = "<strong>ВНИМАНИЕ: Это крайне важно!</strong> Если вы введете неверную информацию, ваша связь с этим контактом перестанет работать.";
$a->strings["Please use your browser 'Back' button <strong>now</strong> if you are uncertain what to do on this page."] = "Пожалуйста, нажмите клавишу вашего браузера 'Back' или 'Назад' <strong>сейчас</strong>, если вы не уверены, что делаете на этой странице.";
$a->strings["Return to contact editor"] = "";
$a->strings["Name"] = "Имя";
$a->strings["Account Nickname"] = "Ник аккаунта";
$a->strings["@Tagname - overrides Name/Nickname"] = "";
$a->strings["Account URL"] = "URL аккаунта";
$a->strings["Friend Request URL"] = "URL запроса в друзья";
$a->strings["Friend Confirm URL"] = "URL подтверждения друга";
$a->strings["Notification Endpoint URL"] = "URL эндпоинта уведомления";
$a->strings["Poll/Feed URL"] = "URL опроса/ленты";
$a->strings["New photo from this URL"] = "Новое фото из этой URL";
$a->strings["Submit"] = "Подтвердить";
$a->strings["Help:"] = "Помощь:";
$a->strings["Help"] = "Помощь";
$a->strings["Not Found"] = "Не найдено";
$a->strings["Page not found."] = "Страница не найдена.";
$a->strings["File exceeds size limit of %d"] = "Файл превышает предельный размер %d";
$a->strings["File upload failed."] = "Загрузка файла не удалась.";
$a->strings["Friend suggestion sent."] = "Приглашение в друзья отправлено.";
$a->strings["Suggest Friends"] = "Предложить друзей";
$a->strings["Suggest a friend for %s"] = "Предложить друга для %s.";
$a->strings["Event title and start time are required."] = "";
$a->strings["l, F j"] = "l, j F";
$a->strings["Edit event"] = "Редактировать мероприятие";
$a->strings["link to source"] = "ссылка на источник";
$a->strings["Events"] = "Мероприятия";
$a->strings["Create New Event"] = "Создать новое мероприятие";
$a->strings["Previous"] = "Назад";
$a->strings["Next"] = "Далее";
$a->strings["hour:minute"] = "час:минута";
$a->strings["Event details"] = "Сведения о мероприятии";
$a->strings["Format is %s %s. Starting date and Title are required."] = "";
$a->strings["Event Starts:"] = "Начало мероприятия:";
$a->strings["Required"] = "";
$a->strings["Finish date/time is not known or not relevant"] = "Дата/время окончания не известны, или не указаны";
$a->strings["Event Finishes:"] = "Окончание мероприятия:";
$a->strings["Adjust for viewer timezone"] = "Настройка часового пояса";
$a->strings["Description:"] = "Описание:";
$a->strings["Location:"] = "Откуда:";
$a->strings["Title:"] = "";
$a->strings["Share this event"] = "Поделитесь этим мероприятием";
$a->strings["Cancel"] = "Отмена";
$a->strings["Tag removed"] = "Ключевое слово удалено";
$a->strings["Remove Item Tag"] = "Удалить ключевое слово";
$a->strings["Select a tag to remove: "] = "Выберите ключевое слово для удаления: ";
$a->strings["Remove"] = "Удалить";
$a->strings["%1\$s welcomes %2\$s"] = "";
$a->strings["Authorize application connection"] = "Разрешить связь с приложением";
$a->strings["Return to your app and insert this Securty Code:"] = "Вернитесь в ваше приложение и задайте этот код:";
$a->strings["Please login to continue."] = "Пожалуйста, войдите для продолжения.";
$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Вы действительно хотите разрешить этому приложению доступ к своим постам и контактам, а также создавать новые записи от вашего имени?";
$a->strings["Yes"] = "Да";
$a->strings["No"] = "Нет";
$a->strings["Photo Albums"] = "Фотоальбомы";
$a->strings["Contact Photos"] = "Фотографии контакта";
$a->strings["Upload New Photos"] = "Загрузить новые фото";
$a->strings["everybody"] = "каждый";
$a->strings["Contact information unavailable"] = "Информация о контакте недоступна";
$a->strings["Profile Photos"] = "Фотографии профиля";
$a->strings["Album not found."] = "Альбом не найден.";
$a->strings["Delete Album"] = "Удалить альбом";
$a->strings["Delete Photo"] = "Удалить фото";
$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "";
$a->strings["a photo"] = "";
$a->strings["Image exceeds size limit of "] = "Размер фото превышает лимит ";
$a->strings["Image file is empty."] = "Файл изображения пуст.";
$a->strings["Unable to process image."] = "Невозможно обработать фото.";
$a->strings["Image upload failed."] = "Загрузка фото неудачная.";
$a->strings["Public access denied."] = "Свободный доступ закрыт.";
$a->strings["No photos selected"] = "Не выбрано фото.";
$a->strings["Access to this item is restricted."] = "Доступ к этому пункту ограничен.";
$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "";
$a->strings["Upload Photos"] = "Загрузить фото";
$a->strings["New album name: "] = "Название нового альбома: ";
$a->strings["or existing album name: "] = "или название существующего альбома: ";
$a->strings["Do not show a status post for this upload"] = "Не показывать статус-сообщение для этой закачки";
$a->strings["Permissions"] = "Разрешения";
$a->strings["Edit Album"] = "Редактировать альбом";
$a->strings["Show Newest First"] = "";
$a->strings["Show Oldest First"] = "";
$a->strings["View Photo"] = "Просмотр фото";
$a->strings["Permission denied. Access to this item may be restricted."] = "Нет разрешения. Доступ к этому элементу ограничен.";
$a->strings["Photo not available"] = "Фото недоступно";
$a->strings["View photo"] = "Просмотр фото";
$a->strings["Edit photo"] = "Редактировать фото";
$a->strings["Use as profile photo"] = "Использовать как фото профиля";
$a->strings["Private Message"] = "Личное сообщение";
$a->strings["View Full Size"] = "Просмотреть полный размер";
$a->strings["Tags: "] = "Ключевые слова: ";
$a->strings["[Remove any tag]"] = "[Удалить любое ключевое слово]";
$a->strings["Rotate CW (right)"] = "";
$a->strings["Rotate CCW (left)"] = "";
$a->strings["New album name"] = "Название нового альбома";
$a->strings["Caption"] = "Подпись";
$a->strings["Add a Tag"] = "Добавить ключевое слово (таг)";
$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Пример: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping";
$a->strings["I like this (toggle)"] = "Нравится";
$a->strings["I don't like this (toggle)"] = "Не нравится";
$a->strings["Share"] = "Поделиться";
$a->strings["Please wait"] = "Пожалуйста, подождите";
$a->strings["This is you"] = "Это вы";
$a->strings["Comment"] = "Комментарий";
$a->strings["Preview"] = "предварительный просмотр";
$a->strings["Delete"] = "Удалить";
$a->strings["View Album"] = "Просмотреть альбом";
$a->strings["Recent Photos"] = "Последние фото";
$a->strings["Not available."] = "Недоступно.";
$a->strings["Community"] = "Сообщество";
$a->strings["No results."] = "Нет результатов.";
$a->strings["This is Friendica, version"] = "Это Friendica, версия";
$a->strings["running at web location"] = "работает на веб-узле";
$a->strings["Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn more about the Friendica project."] = "";
$a->strings["Bug reports and issues: please visit"] = "Отчет об ошибках и проблемах: пожалуйста, посетите";
$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Предложения, похвала, пожертвования? Пишите на \"info\" на Friendica - точка com";
$a->strings["Installed plugins/addons/apps:"] = "";
$a->strings["No installed plugins/addons/apps"] = "Нет установленных плагинов / добавок / приложений";
$a->strings["Item not found"] = "Элемент не найден";
$a->strings["Edit post"] = "Редактировать сообщение";
$a->strings["Post to Email"] = "Отправить на Email";
$a->strings["Edit"] = "Редактировать";
$a->strings["Upload photo"] = "Загрузить фото";
$a->strings["upload photo"] = "загрузить фото";
$a->strings["Attach file"] = "Приложить файл";
$a->strings["attach file"] = "приложить файл";
$a->strings["Insert web link"] = "Вставить веб-ссылку";
$a->strings["web link"] = "веб-ссылка";
$a->strings["Insert video link"] = "Вставить ссылку видео";
$a->strings["video link"] = "видео-ссылка";
$a->strings["Insert audio link"] = "Вставить ссылку аудио";
$a->strings["audio link"] = "аудио-ссылка";
$a->strings["Set your location"] = "Задать ваше местоположение";
$a->strings["set location"] = "установить местонахождение";
$a->strings["Clear browser location"] = "Очистить местонахождение браузера";
$a->strings["clear location"] = "убрать местонахождение";
$a->strings["Permission settings"] = "Настройки разрешений";
$a->strings["CC: email addresses"] = "Копии на email адреса";
$a->strings["Public post"] = "Публичное сообщение";
$a->strings["Set title"] = "Установить заголовок";
$a->strings["Categories (comma-separated list)"] = "Категории (список через запятую)";
$a->strings["Example: bob@example.com, mary@example.com"] = "Пример: bob@example.com, mary@example.com";
$a->strings["This introduction has already been accepted."] = "Этот запрос был уже принят.";
$a->strings["Profile location is not valid or does not contain profile information."] = "Местоположение профиля является недопустимым или не содержит информацию о профиле.";
$a->strings["Warning: profile location has no identifiable owner name."] = "Внимание: местоположение профиля не имеет идентифицируемого имени владельца.";
$a->strings["Warning: profile location has no profile photo."] = "Внимание: местоположение профиля не имеет еще фотографии профиля.";
$a->strings["%d required parameter was not found at the given location"] = array(
0 => "%d требуемый параметр не был найден в заданном месте",
1 => "%d требуемых параметров не были найдены в заданном месте",
2 => "%d требуемых параметров не были найдены в заданном месте",
);
$a->strings["Introduction complete."] = "Запрос создан.";
$a->strings["Unrecoverable protocol error."] = "Неисправимая ошибка протокола.";
$a->strings["Profile unavailable."] = "Профиль недоступен.";
$a->strings["%s has received too many connection requests today."] = "К %s пришло сегодня слишком много запросов на подключение.";
$a->strings["Spam protection measures have been invoked."] = "Были применены меры защиты от спама.";
$a->strings["Friends are advised to please try again in 24 hours."] = "Друзья советуют попробовать еще раз в ближайшие 24 часа.";
$a->strings["Invalid locator"] = "Недопустимый локатор";
$a->strings["Invalid email address."] = "";
$a->strings["This account has not been configured for email. Request failed."] = "";
$a->strings["Unable to resolve your name at the provided location."] = "Не удается установить ваше имя на предложенном местоположении.";
$a->strings["You have already introduced yourself here."] = "Вы уже ввели информацию о себе здесь.";
$a->strings["Apparently you are already friends with %s."] = "Похоже, что вы уже друзья с %s.";
$a->strings["Invalid profile URL."] = "Неверный URL профиля.";
$a->strings["Disallowed profile URL."] = "Запрещенный URL профиля.";
$a->strings["Failed to update contact record."] = "Не удалось обновить запись контакта.";
$a->strings["Your introduction has been sent."] = "Ваш запрос отправлен.";
$a->strings["Please login to confirm introduction."] = "Для подтверждения запроса войдите пожалуйста с паролем.";
$a->strings["Incorrect identity currently logged in. Please login to <strong>this</strong> profile."] = "Неверно идентифицирован вход. Пожалуйста, войдите в <strong>этот</strong> профиль.";
$a->strings["Hide this contact"] = "";
$a->strings["Welcome home %s."] = "Добро пожаловать домой, %s!";
$a->strings["Please confirm your introduction/connection request to %s."] = "Пожалуйста, подтвердите краткую информацию / запрос на подключение к %s.";
$a->strings["Confirm"] = "Подтвердить";
$a->strings["[Name Withheld]"] = "[Имя не разглашается]";
$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "";
$a->strings["<strike>Connect as an email follower</strike> (Coming soon)"] = "";
$a->strings["If you are not yet a member of the free social web, <a href=\"http://dir.friendica.com/siteinfo\">follow this link to find a public Friendica site and join us today</a>."] = "";
$a->strings["Friend/Connection Request"] = "Запрос в друзья / на подключение";
$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Примеры: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca";
$a->strings["Please answer the following:"] = "Пожалуйста, ответьте следующее:";
$a->strings["Does %s know you?"] = "%s знает вас?";
$a->strings["Add a personal note:"] = "Добавить личную заметку:";
$a->strings["Friendica"] = "Friendica";
$a->strings["StatusNet/Federated Social Web"] = "StatusNet / Federated Social Web";
$a->strings["Diaspora"] = "Diaspora";
$a->strings[" - please do not use this form. Instead, enter %s into your Diaspora search bar."] = "";
$a->strings["Your Identity Address:"] = "Ваш идентификационный адрес:";
$a->strings["Submit Request"] = "Отправить запрос";
$a->strings["Account settings"] = "Настройки аккаунта";
$a->strings["Display settings"] = "Параметры дисплея";
$a->strings["Connector settings"] = "Настройки соединителя";
$a->strings["Plugin settings"] = "Настройки плагина";
$a->strings["Connected apps"] = "";
$a->strings["Export personal data"] = "Экспорт личных данных";
$a->strings["Remove account"] = "";
$a->strings["Settings"] = "Настройки";
$a->strings["Export account"] = "";
$a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = "";
$a->strings["Export all"] = "";
$a->strings["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)"] = "";
$a->strings["Friendica Social Communications Server - Setup"] = "";
$a->strings["Could not connect to database."] = "Не удалось подключиться к базе данных.";
$a->strings["Could not create table."] = "Не удалось создать таблицу.";
$a->strings["Your Friendica site database has been installed."] = "База данных сайта установлена.";
$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Вам может понадобиться импортировать файл \"database.sql\" вручную с помощью PhpMyAdmin или MySQL.";
$a->strings["Please see the file \"INSTALL.txt\"."] = "Пожалуйста, смотрите файл \"INSTALL.txt\".";
$a->strings["System check"] = "";
$a->strings["Check again"] = "Проверить еще раз";
$a->strings["Database connection"] = "Подключение к базе данных";
$a->strings["In order to install Friendica we need to know how to connect to your database."] = "";
$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Пожалуйста, свяжитесь с вашим хостинг-провайдером или администратором сайта, если у вас есть вопросы об этих параметрах.";
$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Базы данных, указанная ниже, должна уже существовать. Если этого нет, пожалуйста, создайте ее перед продолжением.";
$a->strings["Database Server Name"] = "Имя сервера базы данных";
$a->strings["Database Login Name"] = "Логин базы данных";
$a->strings["Database Login Password"] = "Пароль базы данных";
$a->strings["Database Name"] = "Имя базы данных";
$a->strings["Site administrator email address"] = "Адрес электронной почты администратора сайта";
$a->strings["Your account email address must match this in order to use the web admin panel."] = "";
$a->strings["Please select a default timezone for your website"] = "Пожалуйста, выберите часовой пояс по умолчанию для вашего сайта";
$a->strings["Site settings"] = "Настройки сайта";
$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Не удалось найти PATH веб-сервера в установках PHP.";
$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron. See <a href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>"] = "";
$a->strings["PHP executable path"] = "PHP executable path";
$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "";
$a->strings["Command line PHP"] = "Command line PHP";
$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "Не включено \"register_argc_argv\" в установках PHP.";
$a->strings["This is required for message delivery to work."] = "Это необходимо для работы доставки сообщений.";
$a->strings["PHP register_argc_argv"] = "";
$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Ошибка: функция \"openssl_pkey_new\" в этой системе не в состоянии генерировать ключи шифрования";
$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Если вы работаете под Windows, см. \"http://www.php.net/manual/en/openssl.installation.php\".";
$a->strings["Generate encryption keys"] = "Генерация шифрованых ключей";
$a->strings["libCurl PHP module"] = "libCurl PHP модуль";
$a->strings["GD graphics PHP module"] = "GD graphics PHP модуль";
$a->strings["OpenSSL PHP module"] = "OpenSSL PHP модуль";
$a->strings["mysqli PHP module"] = "mysqli PHP модуль";
$a->strings["mb_string PHP module"] = "mb_string PHP модуль";
$a->strings["Apache mod_rewrite module"] = "";
$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Ошибка: необходим модуль веб-сервера Apache mod-rewrite, но он не установлен.";
$a->strings["Error: libCURL PHP module required but not installed."] = "Ошибка: необходим libCURL PHP модуль, но он не установлен.";
$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Ошибка: необходим PHP модуль GD графики с поддержкой JPEG, но он не установлен.";
$a->strings["Error: openssl PHP module required but not installed."] = "Ошибка: необходим PHP модуль OpenSSL, но он не установлен.";
$a->strings["Error: mysqli PHP module required but not installed."] = "Ошибка: необходим PHP модуль MySQLi, но он не установлен.";
$a->strings["Error: mb_string PHP module required but not installed."] = "Ошибка: необходим PHP модуль mb_string, но он не установлен.";
$a->strings["The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."] = "Веб-инсталлятору требуется создать файл с именем \". htconfig.php\" в верхней папке веб-сервера, но он не в состоянии это сделать.";
$a->strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "Это наиболее частые параметры разрешений, когда веб-сервер не может записать файлы в папке - даже если вы можете.";
$a->strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Friendica top folder."] = "";
$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "";
$a->strings[".htconfig.php is writable"] = ".htconfig.php is writable";
$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "";
$a->strings["Url rewrite is working"] = "";
$a->strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "Файл конфигурации базы данных \".htconfig.php\" не могла быть записан. Пожалуйста, используйте приложенный текст, чтобы создать конфигурационный файл в корневом каталоге веб-сервера.";
$a->strings["Errors encountered creating database tables."] = "Обнаружены ошибки при создании таблиц базы данных.";
$a->strings["<h1>What next</h1>"] = "";
$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "ВАЖНО: Вам нужно будет [вручную] установить запланированное задание для регистратора.";
$a->strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ g:i A";
$a->strings["Time Conversion"] = "История общения";
$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "";
$a->strings["UTC time: %s"] = "UTC время: %s";
$a->strings["Current timezone: %s"] = "Ваш часовой пояс: %s";
$a->strings["Converted localtime: %s"] = "Ваше изменённое время: %s";
$a->strings["Please select your timezone:"] = "Выберите пожалуйста ваш часовой пояс:";
$a->strings["Poke/Prod"] = "";
$a->strings["poke, prod or do other things to somebody"] = "";
$a->strings["Recipient"] = "";
$a->strings["Choose what you wish to do to recipient"] = "";
$a->strings["Make this post private"] = "";
$a->strings["Profile Match"] = "Похожие профили";
$a->strings["No keywords to match. Please add keywords to your default profile."] = "Нет соответствующих ключевых слов. Пожалуйста, добавьте ключевые слова для вашего профиля по умолчанию.";
$a->strings["is interested in:"] = "";
$a->strings["Connect"] = "Подключить";
$a->strings["No matches"] = "Нет соответствий";
$a->strings["Remote privacy information not available."] = "Личная информация удаленно недоступна.";
$a->strings["Visible to:"] = "Кто может видеть:";
$a->strings["No such group"] = "Нет такой группы";
$a->strings["Group is empty"] = "Группа пуста";
$a->strings["Group: "] = "Группа: ";
$a->strings["Select"] = "Выберите";
$a->strings["View %s's profile @ %s"] = "";
$a->strings["%s from %s"] = "%s с %s";
$a->strings["View in context"] = "Смотреть в контексте";
$a->strings["%d comment"] = array(
0 => "%d комментарий",
1 => "%d комментариев",
2 => "%d комментариев",
);
$a->strings["comment"] = array(
0 => "",
1 => "",
2 => "комментарий",
);
$a->strings["show more"] = "показать больше";
$a->strings["like"] = "";
$a->strings["dislike"] = "не нравитса";
$a->strings["Share this"] = "";
$a->strings["share"] = "делиться";
$a->strings["Bold"] = "";
$a->strings["Italic"] = "";
$a->strings["Underline"] = "";
$a->strings["Quote"] = "";
$a->strings["Code"] = "";
$a->strings["Image"] = "";
$a->strings["Link"] = "";
$a->strings["Video"] = "";
$a->strings["add star"] = "пометить";
$a->strings["remove star"] = "убрать метку";
$a->strings["toggle star status"] = "переключить статус";
$a->strings["starred"] = "помечено";
$a->strings["add tag"] = "добавить ключевое слово (таг)";
$a->strings["save to folder"] = "сохранить в папке";
$a->strings["to"] = "к";
$a->strings["Wall-to-Wall"] = "Стена-на-Стену";
$a->strings["via Wall-To-Wall:"] = "через Стена-на-Стену:";
$a->strings["Welcome to %s"] = "Добро пожаловать на %s!";
$a->strings["Invalid request identifier."] = "Неверный идентификатор запроса.";
$a->strings["Discard"] = "Отказаться";
$a->strings["Ignore"] = "Игнорировать";
$a->strings["System"] = "Система";
$a->strings["Network"] = "Сеть";
$a->strings["Personal"] = "Персонал";
$a->strings["Home"] = "Главная";
$a->strings["Introductions"] = "Запросы";
$a->strings["Messages"] = "Сообщения";
$a->strings["Show Ignored Requests"] = "Показать проигнорированные запросы";
$a->strings["Hide Ignored Requests"] = "Скрыть проигнорированные запросы";
$a->strings["Notification type: "] = "Тип уведомления: ";
$a->strings["Friend Suggestion"] = "Предложение в друзья";
$a->strings["suggested by %s"] = "предложено юзером %s";
$a->strings["Hide this contact from others"] = "Скрыть этот контакт от других";
$a->strings["Post a new friend activity"] = "";
$a->strings["if applicable"] = "";
$a->strings["Approve"] = "Одобрить";
$a->strings["Claims to be known to you: "] = "Утверждения, о которых должно быть вам известно: ";
$a->strings["yes"] = "да";
$a->strings["no"] = "нет";
$a->strings["Approve as: "] = "Утвердить как: ";
$a->strings["Friend"] = "Друг";
$a->strings["Sharer"] = "Участник";
$a->strings["Fan/Admirer"] = "Фанат / Поклонник";
$a->strings["Friend/Connect Request"] = "Запрос в друзья / на подключение";
$a->strings["New Follower"] = "Новый фолловер";
$a->strings["No introductions."] = "Запросов нет.";
$a->strings["Notifications"] = "Уведомления";
$a->strings["%s liked %s's post"] = "%s нравится %s сообшение";
$a->strings["%s disliked %s's post"] = "%s не нравится %s сообшение";
$a->strings["%s is now friends with %s"] = "%s теперь друзья с %s";
$a->strings["%s created a new post"] = "%s написал новое сообщение";
$a->strings["%s commented on %s's post"] = "%s прокомментировал %s сообщение";
$a->strings["No more network notifications."] = "Уведомлений из сети больше нет.";
$a->strings["Network Notifications"] = "Уведомления сети";
$a->strings["No more system notifications."] = "Системных уведомлений больше нет.";
$a->strings["System Notifications"] = "Уведомления системы";
$a->strings["No more personal notifications."] = "Персональных уведомлений больше нет.";
$a->strings["Personal Notifications"] = "Личные уведомления";
$a->strings["No more home notifications."] = "";
$a->strings["Home Notifications"] = "";
$a->strings["Could not access contact record."] = "Не удалось получить доступ к записи контакта.";
$a->strings["Could not locate selected profile."] = "Не удалось найти выбранный профиль.";
$a->strings["Contact updated."] = "Контакт обновлен.";
$a->strings["Contact has been blocked"] = "Контакт заблокирован";
$a->strings["Contact has been unblocked"] = "Контакт разблокирован";
$a->strings["Contact has been ignored"] = "Контакт проигнорирован";
$a->strings["Contact has been unignored"] = "У контакта отменено игнорирование";
$a->strings["Contact has been archived"] = "";
$a->strings["Contact has been unarchived"] = "";
$a->strings["Contact has been removed."] = "Контакт удален.";
$a->strings["You are mutual friends with %s"] = "У Вас взаимная дружба с %s";
$a->strings["You are sharing with %s"] = "Вы делитесь с %s";
$a->strings["%s is sharing with you"] = "%s делитса с Вами";
$a->strings["Private communications are not available for this contact."] = "Личные коммуникации недоступны для этого контакта.";
$a->strings["Never"] = "Никогда";
$a->strings["(Update was successful)"] = "(Обновление было успешно)";
$a->strings["(Update was not successful)"] = "(Обновление не удалось)";
$a->strings["Suggest friends"] = "Предложить друзей";
$a->strings["Network type: %s"] = "Сеть: %s";
$a->strings["%d contact in common"] = array(
0 => "%d Контакт",
1 => "%d Контактов",
2 => "%d Контактов",
);
$a->strings["View all contacts"] = "Показать все контакты";
$a->strings["Unblock"] = "Разблокировать";
$a->strings["Block"] = "Заблокировать";
$a->strings["Toggle Blocked status"] = "Изменить статус блокированности (заблокировать/разблокировать)";
$a->strings["Unignore"] = "Не игнорировать";
$a->strings["Toggle Ignored status"] = "Изменить статус игнорирования";
$a->strings["Unarchive"] = "Разархивировать";
$a->strings["Archive"] = "Архивировать";
$a->strings["Toggle Archive status"] = "Сменить статус архивации (архивирова/не архивировать)";
$a->strings["Repair"] = "Восстановить";
$a->strings["Advanced Contact Settings"] = "Дополнительные Настройки Контакта";
$a->strings["Communications lost with this contact!"] = "Связь с контактом утеряна!";
$a->strings["Contact Editor"] = "Редактор контакта";
$a->strings["Profile Visibility"] = "Видимость профиля";
$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Пожалуйста, выберите профиль, который вы хотите отображать %s, когда просмотр вашего профиля безопасен.";
$a->strings["Contact Information / Notes"] = "Информация о контакте / Заметки";
$a->strings["Edit contact notes"] = "Редактировать заметки контакта";
$a->strings["Visit %s's profile [%s]"] = "Посетить профиль %s [%s]";
$a->strings["Block/Unblock contact"] = "Блокировать / Разблокировать контакт";
$a->strings["Ignore contact"] = "Игнорировать контакт";
$a->strings["Repair URL settings"] = "Восстановить настройки URL";
$a->strings["View conversations"] = "Просмотр бесед";
$a->strings["Delete contact"] = "Удалить контакт";
$a->strings["Last update:"] = "Последнее обновление: ";
$a->strings["Update public posts"] = "Обновить публичные сообщения";
$a->strings["Update now"] = "Обновить сейчас";
$a->strings["Currently blocked"] = "В настоящее время заблокирован";
$a->strings["Currently ignored"] = "В настоящее время игнорируется";
$a->strings["Currently archived"] = "В данный момент архивирован";
$a->strings["Replies/likes to your public posts <strong>may</strong> still be visible"] = "";
$a->strings["Suggestions"] = "";
$a->strings["Suggest potential friends"] = "Предложить потенциального знакомого";
$a->strings["All Contacts"] = "Все контакты";
$a->strings["Show all contacts"] = "Показать все контакты";
$a->strings["Unblocked"] = "Не блокирован";
$a->strings["Only show unblocked contacts"] = "Показать только не блокированные контакты";
$a->strings["Blocked"] = "Заблокирован";
$a->strings["Only show blocked contacts"] = "Показать только блокированные контакты";
$a->strings["Ignored"] = "Игнорирован";
$a->strings["Only show ignored contacts"] = "Показать только игнорируемые контакты";
$a->strings["Archived"] = "Архивированные";
$a->strings["Only show archived contacts"] = "";
$a->strings["Hidden"] = "Скрытые";
$a->strings["Only show hidden contacts"] = "";
$a->strings["Mutual Friendship"] = "Взаимная дружба";
$a->strings["is a fan of yours"] = "является вашим поклонником";
$a->strings["you are a fan of"] = "Вы - поклонник";
$a->strings["Edit contact"] = "Редактировать контакт";
$a->strings["Contacts"] = "Контакты";
$a->strings["Search your contacts"] = "Поиск ваших контактов";
$a->strings["Finding: "] = "Результат поиска: ";
$a->strings["Find"] = "Найти";
$a->strings["No valid account found."] = "Не найдено действительного аккаунта.";
$a->strings["Password reset request issued. Check your email."] = "Запрос на сброс пароля принят. Проверьте вашу электронную почту.";
$a->strings["Password reset requested at %s"] = "Запрос на сброс пароля получен %s";
$a->strings["Administrator"] = "Администратор";
$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Запрос не может быть проверен. (Вы, возможно, ранее представляли его.) Попытка сброса пароля неудачная.";
$a->strings["Password Reset"] = "Сброс пароля";
$a->strings["Your password has been reset as requested."] = "Ваш пароль был сброшен по требованию.";
$a->strings["Your new password is"] = "Ваш новый пароль";
$a->strings["Save or copy your new password - and then"] = "Сохраните или скопируйте новый пароль - и затем";
$a->strings["click here to login"] = "нажмите здесь для входа";
$a->strings["Your password may be changed from the <em>Settings</em> page after successful login."] = "Ваш пароль может быть изменен на странице <em>Настройки</em> после успешного входа.";
$a->strings["Forgot your Password?"] = "Забыли пароль?";
$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Введите адрес электронной почты и подтвердите, что вы хотите сбросить ваш пароль. Затем проверьте свою электронную почту для получения дальнейших инструкций.";
$a->strings["Nickname or Email: "] = "Ник или E-mail: ";
$a->strings["Reset"] = "Сброс";
$a->strings["Additional features"] = "";
$a->strings["Missing some important data!"] = "Не хватает важных данных!";
$a->strings["Update"] = "Обновление";
$a->strings["Failed to connect with email account using the settings provided."] = "Не удалось подключиться к аккаунту e-mail, используя указанные настройки.";
$a->strings["Email settings updated."] = "Настройки эл. почты обновлены.";
$a->strings["Features updated"] = "";
$a->strings["Passwords do not match. Password unchanged."] = "Пароли не совпадают. Пароль не изменен.";
$a->strings["Empty passwords are not allowed. Password unchanged."] = "Пустые пароли не допускаются. Пароль не изменен.";
$a->strings["Password changed."] = "Пароль изменен.";
$a->strings["Password update failed. Please try again."] = "Обновление пароля не удалось. Пожалуйста, попробуйте еще раз.";
$a->strings[" Please use a shorter name."] = " Пожалуйста, используйте более короткое имя.";
$a->strings[" Name too short."] = " Имя слишком короткое.";
$a->strings[" Not valid email."] = " Неверный e-mail.";
$a->strings[" Cannot change to that email."] = " Невозможно изменить на этот e-mail.";
$a->strings["Private forum has no privacy permissions. Using default privacy group."] = "";
$a->strings["Private forum has no privacy permissions and no default privacy group."] = "";
$a->strings["Settings updated."] = "Настройки обновлены.";
$a->strings["Add application"] = "Добавить приложения";
$a->strings["Consumer Key"] = "Consumer Key";
$a->strings["Consumer Secret"] = "Consumer Secret";
$a->strings["Redirect"] = "Перенаправление";
$a->strings["Icon url"] = "URL символа";
$a->strings["You can't edit this application."] = "Вы не можете изменить это приложение.";
$a->strings["Connected Apps"] = "Подключенные приложения";
$a->strings["Client key starts with"] = "Ключ клиента начинается с";
$a->strings["No name"] = "Нет имени";
$a->strings["Remove authorization"] = "Удалить авторизацию";
$a->strings["No Plugin settings configured"] = "Нет сконфигурированных настроек плагина";
$a->strings["Plugin Settings"] = "Настройки плагина";
$a->strings["Off"] = "";
$a->strings["On"] = "";
$a->strings["Additional Features"] = "";
$a->strings["Built-in support for %s connectivity is %s"] = "Встроенная поддержка для %s подключение %s";
$a->strings["enabled"] = "подключено";
$a->strings["disabled"] = "отключено";
$a->strings["StatusNet"] = "StatusNet";
$a->strings["Email access is disabled on this site."] = "Доступ эл. почты отключен на этом сайте.";
$a->strings["Connector Settings"] = "Настройки соединителя";
$a->strings["Email/Mailbox Setup"] = "Настройка эл. почты / почтового ящика";
$a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "Если вы хотите общаться с Email контактами, используя этот сервис (по желанию), пожалуйста, уточните, как подключиться к вашему почтовому ящику.";
$a->strings["Last successful email check:"] = "Последняя успешная проверка электронной почты:";
$a->strings["IMAP server name:"] = "Имя IMAP сервера:";
$a->strings["IMAP port:"] = "Порт IMAP:";
$a->strings["Security:"] = "Безопасность:";
$a->strings["None"] = "Ничего";
$a->strings["Email login name:"] = "Логин эл. почты:";
$a->strings["Email password:"] = "Пароль эл. почты:";
$a->strings["Reply-to address:"] = "Адрес для ответа:";
$a->strings["Send public posts to all email contacts:"] = "Отправлять открытые сообщения на все контакты электронной почты:";
$a->strings["Action after import:"] = "Действие после импорта:";
$a->strings["Mark as seen"] = "";
$a->strings["Move to folder"] = "";
$a->strings["Move to folder:"] = "";
$a->strings["No special theme for mobile devices"] = "";
$a->strings["Display Settings"] = "Параметры дисплея";
$a->strings["Display Theme:"] = "Показать тему:";
$a->strings["Mobile Theme:"] = "";
$a->strings["Update browser every xx seconds"] = "Обновление браузера каждые хх секунд";
$a->strings["Minimum of 10 seconds, no maximum"] = "Минимум 10 секунд, максимума нет";
$a->strings["Number of items to display per page:"] = "";
$a->strings["Maximum of 100 items"] = "";
$a->strings["Don't show emoticons"] = "не показывать emoticons";
$a->strings["Normal Account Page"] = "";
$a->strings["This account is a normal personal profile"] = "Этот аккаунт является обычным персональным профилем";
$a->strings["Soapbox Page"] = "";
$a->strings["Automatically approve all connection/friend requests as read-only fans"] = "Автоматически одобряются все подключения / запросы в друзья, \"только для чтения\" поклонниками";
$a->strings["Community Forum/Celebrity Account"] = "";
$a->strings["Automatically approve all connection/friend requests as read-write fans"] = "Автоматически одобряются все подключения / запросы в друзья, \"для чтения и записей\" поклонников";
$a->strings["Automatic Friend Page"] = "";
$a->strings["Automatically approve all connection/friend requests as friends"] = "Автоматически одобряются все подключения / запросы в друзья, расширяется список друзей";
$a->strings["Private Forum [Experimental]"] = "";
$a->strings["Private forum - approved members only"] = "";
$a->strings["OpenID:"] = "OpenID:";
$a->strings["(Optional) Allow this OpenID to login to this account."] = "(Необязательно) Разрешить этому OpenID входить в этот аккаунт";
$a->strings["Publish your default profile in your local site directory?"] = "Публиковать ваш профиль по умолчанию в вашем локальном каталоге на сайте?";
$a->strings["Publish your default profile in the global social directory?"] = "Публиковать ваш профиль по умолчанию в глобальном социальном каталоге?";
$a->strings["Hide your contact/friend list from viewers of your default profile?"] = "Скрывать ваш список контактов/друзей от посетителей вашего профиля по умолчанию?";
$a->strings["Hide your profile details from unknown viewers?"] = "Скрыть данные профиля из неизвестных зрителей?";
$a->strings["Allow friends to post to your profile page?"] = "Разрешить друзьям оставлять сообщения на страницу вашего профиля?";
$a->strings["Allow friends to tag your posts?"] = "Разрешить друзьям отмечять ваши сообщения?";
$a->strings["Allow us to suggest you as a potential friend to new members?"] = "Позвольть предлогать Вам потенциальных друзей?";
$a->strings["Permit unknown people to send you private mail?"] = "";
$a->strings["Profile is <strong>not published</strong>."] = "Профиль <strong>не публикуется</strong>.";
$a->strings["or"] = "или";
$a->strings["Your Identity Address is"] = "Ваш идентификационный адрес";
$a->strings["Automatically expire posts after this many days:"] = "Автоматическое истекание срока действия сообщения после стольких дней:";
$a->strings["If empty, posts will not expire. Expired posts will be deleted"] = "Если пусто, срок действия сообщений не будет ограничен. Сообщения с истекшим сроком действия будут удалены";
$a->strings["Advanced expiration settings"] = "Настройки расширенного окончания срока действия";
$a->strings["Advanced Expiration"] = "Расширенное окончание срока действия";
$a->strings["Expire posts:"] = "Срок хранения сообщений:";
$a->strings["Expire personal notes:"] = "Срок хранения личных заметок:";
$a->strings["Expire starred posts:"] = "Срок хранения усеянных сообщений:";
$a->strings["Expire photos:"] = "Срок хранения фотографий:";
$a->strings["Only expire posts by others:"] = "";
$a->strings["Account Settings"] = "Настройки аккаунта";
$a->strings["Password Settings"] = "Настройка пароля";
$a->strings["New Password:"] = "Новый пароль:";
$a->strings["Confirm:"] = "Подтвердите:";
$a->strings["Leave password fields blank unless changing"] = "Оставьте поля пароля пустыми, если он не изменяется";
$a->strings["Basic Settings"] = "Основные параметры";
$a->strings["Full Name:"] = "Полное имя:";
$a->strings["Email Address:"] = "Адрес электронной почты:";
$a->strings["Your Timezone:"] = "Ваш часовой пояс:";
$a->strings["Default Post Location:"] = "Местонахождение по умолчанию:";
$a->strings["Use Browser Location:"] = "Использовать определение местоположения браузером:";
$a->strings["Security and Privacy Settings"] = "Параметры безопасности и конфиденциальности";
$a->strings["Maximum Friend Requests/Day:"] = "Максимум запросов в друзья в день:";
$a->strings["(to prevent spam abuse)"] = "(для предотвращения спама)";
$a->strings["Default Post Permissions"] = "Разрешение на сообщения по умолчанию";
$a->strings["(click to open/close)"] = "(нажмите, чтобы открыть / закрыть)";
$a->strings["Maximum private messages per day from unknown people:"] = "";
$a->strings["Notification Settings"] = "Настройка уведомлений";
$a->strings["By default post a status message when:"] = "";
$a->strings["accepting a friend request"] = "";
$a->strings["joining a forum/community"] = "";
$a->strings["making an <em>interesting</em> profile change"] = "";
$a->strings["Send a notification email when:"] = "Отправлять уведомление по электронной почте, когда:";
$a->strings["You receive an introduction"] = "Вы получили запрос";
$a->strings["Your introductions are confirmed"] = "Ваши запросы подтверждены";
$a->strings["Someone writes on your profile wall"] = "Кто-то пишет на стене вашего профиля";
$a->strings["Someone writes a followup comment"] = "Кто-то пишет последующий комментарий";
$a->strings["You receive a private message"] = "Вы получаете личное сообщение";
$a->strings["You receive a friend suggestion"] = "";
$a->strings["You are tagged in a post"] = "";
$a->strings["You are poked/prodded/etc. in a post"] = "";
$a->strings["Advanced Account/Page Type Settings"] = "";
$a->strings["Change the behaviour of this account for special situations"] = "";
$a->strings["Manage Identities and/or Pages"] = "Управление идентификацией и / или страницами";
$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "";
$a->strings["Select an identity to manage: "] = "Выберите идентификацию для управления: ";
$a->strings["Search Results For:"] = "";
$a->strings["Remove term"] = "Удалить элемент";
$a->strings["Saved Searches"] = "запомненные поиски";
$a->strings["add"] = "добавить";
$a->strings["Commented Order"] = "Прокомментированный запрос";
$a->strings["Sort by Comment Date"] = "";
$a->strings["Posted Order"] = "Отправленный запрос";
$a->strings["Sort by Post Date"] = "";
$a->strings["Posts that mention or involve you"] = "";
$a->strings["New"] = "Новый";
$a->strings["Activity Stream - by date"] = "";
$a->strings["Shared Links"] = "";
$a->strings["Interesting Links"] = "";
$a->strings["Starred"] = "Помеченный";
$a->strings["Favourite Posts"] = "";
$a->strings["Warning: This group contains %s member from an insecure network."] = array(
0 => "Внимание: Эта группа содержит %s участника с незащищенной сети.",
1 => "Внимание: Эта группа содержит %s участников с незащищенной сети.",
2 => "Внимание: Эта группа содержит %s участников с незащищенной сети.",
);
$a->strings["Private messages to this group are at risk of public disclosure."] = "Личные сообщения к этой группе находятся под угрозой обнародования.";
$a->strings["Contact: "] = "Контакт: ";
$a->strings["Private messages to this person are at risk of public disclosure."] = "Личные сообщения этому человеку находятся под угрозой обнародования.";
$a->strings["Invalid contact."] = "Недопустимый контакт.";
$a->strings["Personal Notes"] = "Личные заметки";
$a->strings["Save"] = "Сохранить";
$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "";
$a->strings["Import"] = "";
$a->strings["Move account"] = "";
$a->strings["You can import an account from another Friendica server. <br>\r\n 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.<br>\r\n <b>This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from diaspora"] = "";
$a->strings["Account file"] = "";
$a->strings["To export your accont, go to \"Settings->Export your porsonal data\" and select \"Export account\""] = "";
$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "";
$a->strings["No recipient selected."] = "Не выбран получатель.";
$a->strings["Unable to check your home location."] = "";
$a->strings["Message could not be sent."] = "Сообщение не может быть отправлено.";
$a->strings["Message collection failure."] = "";
$a->strings["Message sent."] = "Сообщение отправлено.";
$a->strings["No recipient."] = "";
$a->strings["Please enter a link URL:"] = "Пожалуйста, введите URL ссылки:";
$a->strings["Send Private Message"] = "Отправить личное сообщение";
$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "";
$a->strings["To:"] = "Кому:";
$a->strings["Subject:"] = "Тема:";
$a->strings["Your message:"] = "Ваше сообщение:";
$a->strings["Welcome to Friendica"] = "Добро пожаловать в Friendica";
$a->strings["New Member Checklist"] = "Новый контрольный список участников";
$a->strings["We would like to offer some tips and links to help make your experience enjoyable. Click any item to visit the relevant page. A link to this page will be visible from your home page for two weeks after your initial registration and then will quietly disappear."] = "";
$a->strings["Getting Started"] = "";
$a->strings["Friendica Walk-Through"] = "";
$a->strings["On your <em>Quick Start</em> page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."] = "";
$a->strings["Go to Your Settings"] = "";
$a->strings["On your <em>Settings</em> page - change your initial password. Also make a note of your Identity Address. This looks just like an email address - and will be useful in making friends on the free social web."] = "";
$a->strings["Review the other settings, particularly the privacy settings. An unpublished directory listing is like having an unlisted phone number. In general, you should probably publish your listing - unless all of your friends and potential friends know exactly how to find you."] = "Просмотрите другие установки, в частности, параметры конфиденциальности. Неопубликованные пункты каталога с частными номерами телефона. В общем, вам, вероятно, следует опубликовать свою информацию - если все ваши друзья и потенциальные друзья точно знают, как вас найти.";
$a->strings["Profile"] = "Профиль";
$a->strings["Upload Profile Photo"] = "Загрузить фото профиля";
$a->strings["Upload a profile photo if you have not done so already. Studies have shown that people with real photos of themselves are ten times more likely to make friends than people who do not."] = "Загрузите фотографию профиля, если вы еще не сделали это. Исследования показали, что люди с реальными фотографиями имеют в десять раз больше шансов подружиться, чем люди, которые этого не делают.";
$a->strings["Edit Your Profile"] = "";
$a->strings["Edit your <strong>default</strong> profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."] = "Отредактируйте профиль <strong>по умолчанию</strong> на свой ​​вкус. Просмотрите установки для сокрытия вашего списка друзей и сокрытия профиля от неизвестных посетителей.";
$a->strings["Profile Keywords"] = "";
$a->strings["Set some public keywords for your default profile which describe your interests. We may be able to find other people with similar interests and suggest friendships."] = "Установите некоторые публичные ключевые слова для вашего профиля по умолчанию, которые описывают ваши интересы. Мы можем быть в состоянии найти других людей со схожими интересами и предложить дружбу.";
$a->strings["Connecting"] = "";
$a->strings["Facebook"] = "Facebook";
$a->strings["Authorise the Facebook Connector if you currently have a Facebook account and we will (optionally) import all your Facebook friends and conversations."] = "Авторизуйте Facebook Connector , если у вас уже есть аккаунт на Facebook, и мы (по желанию) импортируем всех ваших друзей и беседы с Facebook.";
$a->strings["<em>If</em> this is your own personal server, installing the Facebook addon may ease your transition to the free social web."] = "";
$a->strings["Importing Emails"] = "";
$a->strings["Enter your email access information on your Connector Settings page if you wish to import and interact with friends or mailing lists from your email INBOX"] = "";
$a->strings["Go to Your Contacts Page"] = "";
$a->strings["Your Contacts page is your gateway to managing friendships and connecting with friends on other networks. Typically you enter their address or site URL in the <em>Add New Contact</em> dialog."] = "";
$a->strings["Go to Your Site's Directory"] = "";
$a->strings["The Directory page lets you find other people in this network or other federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on their profile page. Provide your own Identity Address if requested."] = "На странице каталога вы можете найти других людей в этой сети или на других похожих сайтах. Ищите ссылки <em>Подключить</em> или <em>Следовать</em> на страницах их профилей. Укажите свой собственный адрес идентификации, если требуется.";
$a->strings["Finding New People"] = "";
$a->strings["On the side panel of the Contacts page are several tools to find new friends. We can match people by interest, look up people by name or interest, and provide suggestions based on network relationships. On a brand new site, friend suggestions will usually begin to be populated within 24 hours."] = "";
$a->strings["Groups"] = "Группы";
$a->strings["Group Your Contacts"] = "";
$a->strings["Once you have made some friends, organize them into private conversation groups from the sidebar of your Contacts page and then you can interact with each group privately on your Network page."] = "После того, как вы найдете несколько друзей, организуйте их в группы частных бесед в боковой панели на странице Контакты, а затем вы можете взаимодействовать с каждой группой приватно или на вашей странице Сеть.";
$a->strings["Why Aren't My Posts Public?"] = "";
$a->strings["Friendica respects your privacy. By default, your posts will only show up to people you've added as friends. For more information, see the help section from the link above."] = "";
$a->strings["Getting Help"] = "";
$a->strings["Go to the Help Section"] = "";
$a->strings["Our <strong>help</strong> pages may be consulted for detail on other program features and resources."] = "Наши страницы <strong>помощи</strong> могут проконсультировать о подробностях и возможностях программы и ресурса.";
$a->strings["Item not available."] = "Пункт не доступен.";
$a->strings["Item was not found."] = "Пункт не был найден.";
$a->strings["Group created."] = "Группа создана.";
$a->strings["Could not create group."] = "Не удалось создать группу.";
$a->strings["Group not found."] = "Группа не найдена.";
$a->strings["Group name changed."] = "Название группы изменено.";
$a->strings["Permission denied"] = "Доступ запрещен";
$a->strings["Create a group of contacts/friends."] = "Создать группу контактов / друзей.";
$a->strings["Group Name: "] = "Название группы: ";
$a->strings["Group removed."] = "Группа удалена.";
$a->strings["Unable to remove group."] = "Не удается удалить группу.";
$a->strings["Group Editor"] = "Редактор групп";
$a->strings["Members"] = "Участники";
$a->strings["Click on a contact to add or remove."] = "Нажмите на контакт, чтобы добавить или удалить.";
$a->strings["Invalid profile identifier."] = "Недопустимый идентификатор профиля.";
$a->strings["Profile Visibility Editor"] = "Редактор видимости профиля";
$a->strings["Visible To"] = "Видимый для";
$a->strings["All Contacts (with secure profile access)"] = "Все контакты (с безопасным доступом к профилю)";
$a->strings["No contacts."] = "Нет контактов.";
$a->strings["View Contacts"] = "Просмотр контактов";
$a->strings["Registration details for %s"] = "Подробности регистрации для %s";
$a->strings["Registration successful. Please check your email for further instructions."] = "Регистрация успешна. Пожалуйста, проверьте свою электронную почту для получения дальнейших инструкций.";
$a->strings["Failed to send email message. Here is the message that failed."] = "Невозможно отправить сообщение электронной почтой. Вот сообщение, которое не удалось.";
$a->strings["Your registration can not be processed."] = "Ваша регистрация не может быть обработана.";
$a->strings["Registration request at %s"] = "Запрос на регистрацию на %s";
$a->strings["Your registration is pending approval by the site owner."] = "Ваша регистрация в ожидании одобрения владельцем сайта.";
$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Вы можете (по желанию), заполнить эту форму с помощью OpenID, поддерживая ваш OpenID и нажав клавишу \"Регистрация\".";
$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Если вы не знакомы с OpenID, пожалуйста, оставьте это поле пустым и заполните остальные элементы.";
$a->strings["Your OpenID (optional): "] = "Ваш OpenID (необязательно):";
$a->strings["Include your profile in member directory?"] = "Включить ваш профиль в каталог участников?";
$a->strings["Membership on this site is by invitation only."] = "Членство на сайте только по приглашению.";
$a->strings["Your invitation ID: "] = "ID вашего приглашения:";
$a->strings["Registration"] = "Регистрация";
$a->strings["Your Full Name (e.g. Joe Smith): "] = "Ваше полное имя (например, Joe Smith): ";
$a->strings["Your Email Address: "] = "Ваш адрес электронной почты: ";
$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be '<strong>nickname@\$sitename</strong>'."] = "Выбор псевдонима профиля. Он должен начинаться с буквы. Адрес вашего профиля на данном сайте будет в этом случае '<strong>nickname@\$sitename</strong>'.";
$a->strings["Choose a nickname: "] = "Выберите псевдоним: ";
$a->strings["Register"] = "Регистрация";
$a->strings["People Search"] = "Поиск людей";
$a->strings["photo"] = "фото";
$a->strings["status"] = "статус";
$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s нравится %3\$s от %2\$s ";
$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s не нравится %3\$s от %2\$s ";
$a->strings["Item not found."] = "Пункт не найден.";
$a->strings["Access denied."] = "Доступ запрещен.";
$a->strings["Photos"] = "Фото";
$a->strings["Files"] = "";
$a->strings["Account approved."] = "Аккаунт утвержден.";
$a->strings["Registration revoked for %s"] = "Регистрация отменена для %s";
$a->strings["Please login."] = "Пожалуйста, войдите с паролем.";
$a->strings["Unable to locate original post."] = "Не удалось найти оригинальный пост.";
$a->strings["Empty post discarded."] = "Пустое сообщение отбрасывается.";
$a->strings["Wall Photos"] = "Фото стены";
$a->strings["System error. Post not saved."] = "Системная ошибка. Сообщение не сохранено.";
$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "";
$a->strings["You may visit them online at %s"] = "Вы можете посетить их в онлайне на %s";
$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Пожалуйста, свяжитесь с отправителем, ответив на это сообщение, если вы не хотите получать эти сообщения.";
$a->strings["%s posted an update."] = "%s отправил/а/ обновление.";
$a->strings["%1\$s is currently %2\$s"] = "";
$a->strings["Mood"] = "";
$a->strings["Set your current mood and tell your friends"] = "";
$a->strings["Image uploaded but image cropping failed."] = "Изображение загружено, но обрезка изображения не удалась.";
$a->strings["Image size reduction [%s] failed."] = "Уменьшение размера изображения [%s] не удалось.";
$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Перезагрузите страницу с зажатой клавишей \"Shift\" для того, чтобы увидеть свое новое фото немедленно.";
$a->strings["Unable to process image"] = "Не удается обработать изображение";
$a->strings["Image exceeds size limit of %d"] = "Изображение превышает предельный размер %d";
$a->strings["Upload File:"] = "Загрузить файл:";
$a->strings["Select a profile:"] = "";
$a->strings["Upload"] = "Загрузить";
$a->strings["skip this step"] = "пропустить этот шаг";
$a->strings["select a photo from your photo albums"] = "выберите фото из ваших фотоальбомов";
$a->strings["Crop Image"] = "Обрезать изображение";
$a->strings["Please adjust the image cropping for optimum viewing."] = "Пожалуйста, настройте обрезку изображения для оптимального просмотра.";
$a->strings["Done Editing"] = "Редактирование выполнено";
$a->strings["Image uploaded successfully."] = "Изображение загружено успешно.";
$a->strings["No profile"] = "Нет профиля";
$a->strings["Remove My Account"] = "Удалить мой аккаунт";
$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Это позволит полностью удалить ваш аккаунт. Как только это будет сделано, аккаунт восстановлению не подлежит.";
$a->strings["Please enter your password for verification:"] = "Пожалуйста, введите свой пароль для проверки:";
$a->strings["New Message"] = "Новое сообщение";
$a->strings["Unable to locate contact information."] = "Не удалось найти контактную информацию.";
$a->strings["Message deleted."] = "Сообщение удалено.";
$a->strings["Conversation removed."] = "Беседа удалена.";
$a->strings["No messages."] = "Нет сообщений.";
$a->strings["Unknown sender - %s"] = "";
$a->strings["You and %s"] = "";
$a->strings["%s and You"] = "%s и Вы";
$a->strings["Delete conversation"] = "Удалить историю общения";
$a->strings["D, d M Y - g:i A"] = "D, d M Y - g:i A";
$a->strings["%d message"] = array(
0 => "%d сообщение",
1 => "%d сообщений",
2 => "%d сообщений",
);
$a->strings["Message not available."] = "Сообщение не доступно.";
$a->strings["Delete message"] = "Удалить сообщение";
$a->strings["No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."] = "";
$a->strings["Send Reply"] = "Отправить ответ";
$a->strings["Friends of %s"] = "%s Друзья";
$a->strings["No friends to display."] = "Нет друзей.";
$a->strings["Theme settings updated."] = "";
$a->strings["Site"] = "Сайт";
$a->strings["Users"] = "Пользователи";
$a->strings["Plugins"] = "Плагины";
$a->strings["Themes"] = "";
$a->strings["DB updates"] = "";
$a->strings["Logs"] = "Журналы";
$a->strings["Admin"] = "Администратор";
$a->strings["Plugin Features"] = "";
$a->strings["User registrations waiting for confirmation"] = "Регистрации пользователей, ожидающие подтверждения";
$a->strings["Normal Account"] = "Обычный аккаунт";
$a->strings["Soapbox Account"] = "Аккаунт Витрина";
$a->strings["Community/Celebrity Account"] = "Аккаунт Сообщество / Знаменитость";
$a->strings["Automatic Friend Account"] = "\"Автоматический друг\" Аккаунт";
$a->strings["Blog Account"] = "";
$a->strings["Private Forum"] = "";
$a->strings["Message queues"] = "";
$a->strings["Administration"] = "Администрация";
$a->strings["Summary"] = "Резюме";
$a->strings["Registered users"] = "Зарегистрированные пользователи";
$a->strings["Pending registrations"] = "Ожидающие регистрации";
$a->strings["Version"] = "Версия";
$a->strings["Active plugins"] = "Активные плагины";
$a->strings["Site settings updated."] = "Установки сайта обновлены.";
$a->strings["Closed"] = "Закрыто";
$a->strings["Requires approval"] = "Требуется подтверждение";
$a->strings["Open"] = "Открыто";
$a->strings["No SSL policy, links will track page SSL state"] = "";
$a->strings["Force all links to use SSL"] = "Заставить все ссылки использовать SSL";
$a->strings["Self-signed certificate, use SSL for local links only (discouraged)"] = "";
$a->strings["File upload"] = "Загрузка файлов";
$a->strings["Policies"] = "Политики";
$a->strings["Advanced"] = "Расширенный";
$a->strings["Site name"] = "Название сайта";
$a->strings["Banner/Logo"] = "Баннер/Логотип";
$a->strings["System language"] = "Системный язык";
$a->strings["System theme"] = "Системная тема";
$a->strings["Default system theme - may be over-ridden by user profiles - <a href='#' id='cnftheme'>change theme settings</a>"] = "";
$a->strings["Mobile system theme"] = "";
$a->strings["Theme for mobile devices"] = "";
$a->strings["SSL link policy"] = "";
$a->strings["Determines whether generated links should be forced to use SSL"] = "Ссылки должны быть вынуждены использовать SSL";
$a->strings["Maximum image size"] = "Максимальный размер изображения";
$a->strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "";
$a->strings["Maximum image length"] = "";
$a->strings["Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits."] = "";
$a->strings["JPEG image quality"] = "";
$a->strings["Uploaded JPEGS will be saved at this quality setting [0-100]. Default is 100, which is full quality."] = "";
$a->strings["Register policy"] = "Политика регистрация";
$a->strings["Maximum Daily Registrations"] = "";
$a->strings["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."] = "";
$a->strings["Register text"] = "Текст регистрации";
$a->strings["Will be displayed prominently on the registration page."] = "";
$a->strings["Accounts abandoned after x days"] = "Аккаунт считается после x дней не воспользованным";
$a->strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Не будет тратить ресурсы для опроса сайтов для бесхозных контактов. Введите 0 для отключения лимита времени.";
$a->strings["Allowed friend domains"] = "Разрешенные домены друзей";
$a->strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "";
$a->strings["Allowed email domains"] = "Разрешенные почтовые домены";
$a->strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "";
$a->strings["Block public"] = "Блокировать общественный доступ";
$a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = "";
$a->strings["Force publish"] = "Принудительная публикация";
$a->strings["Check to force all profiles on this site to be listed in the site directory."] = "";
$a->strings["Global directory update URL"] = "URL обновления глобального каталога";
$a->strings["URL to update the global directory. If this is not set, the global directory is completely unavailable to the application."] = "";
$a->strings["Allow threaded items"] = "";
$a->strings["Allow infinite level threading for items on this site."] = "";
$a->strings["Private posts by default for new users"] = "";
$a->strings["Set default post permissions for all new members to the default privacy group rather than public."] = "";
$a->strings["Block multiple registrations"] = "Блокировать множественные регистрации";
$a->strings["Disallow users to register additional accounts for use as pages."] = "Запретить пользователям регистрировать дополнительные аккаунты для использования в качестве страниц.";
$a->strings["OpenID support"] = "Поддержка OpenID";
$a->strings["OpenID support for registration and logins."] = "";
$a->strings["Fullname check"] = "Проверка полного имени";
$a->strings["Force users to register with a space between firstname and lastname in Full name, as an antispam measure"] = "";
$a->strings["UTF-8 Regular expressions"] = "UTF-8 регулярные выражения";
$a->strings["Use PHP UTF8 regular expressions"] = "";
$a->strings["Show Community Page"] = "Показать страницу сообщества";
$a->strings["Display a Community page showing all recent public postings on this site."] = "Показывать страницу сообщества с указанием всех последних публичных сообщений на этом сайте.";
$a->strings["Enable OStatus support"] = "Включить поддержку OStatus";
$a->strings["Provide built-in OStatus (identi.ca, status.net, etc.) compatibility. All communications in OStatus are public, so privacy warnings will be occasionally displayed."] = "";
$a->strings["Enable Diaspora support"] = "Включить поддержку Diaspora";
$a->strings["Provide built-in Diaspora network compatibility."] = "";
$a->strings["Only allow Friendica contacts"] = "Позвольть только Friendica контакты";
$a->strings["All contacts must use Friendica protocols. All other built-in communication protocols disabled."] = "Все контакты должны использовать только Friendica протоколы. Все другие встроенные коммуникационные протоколы отключены.";
$a->strings["Verify SSL"] = "Проверка SSL";
$a->strings["If you wish, you can turn on strict certificate checking. This will mean you cannot connect (at all) to self-signed SSL sites."] = "";
$a->strings["Proxy user"] = "Прокси пользователь";
$a->strings["Proxy URL"] = "Прокси URL";
$a->strings["Network timeout"] = "Тайм-аут сети";
$a->strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "";
$a->strings["Delivery interval"] = "";
$a->strings["Delay background delivery processes by this many seconds to reduce system load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 for large dedicated servers."] = "";
$a->strings["Poll interval"] = "";
$a->strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "";
$a->strings["Maximum Load Average"] = "";
$a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "";
$a->strings["Update has been marked successful"] = "";
$a->strings["Executing %s failed. Check system logs."] = "";
$a->strings["Update %s was successfully applied."] = "";
$a->strings["Update %s did not return a status. Unknown if it succeeded."] = "";
$a->strings["Update function %s could not be found."] = "";
$a->strings["No failed updates."] = "";
$a->strings["Failed Updates"] = "";
$a->strings["This does not include updates prior to 1139, which did not return a status."] = "";
$a->strings["Mark success (if update was manually applied)"] = "";
$a->strings["Attempt to execute this update step automatically"] = "";
$a->strings["%s user blocked/unblocked"] = array(
0 => "",
1 => "",
2 => "",
);
$a->strings["%s user deleted"] = array(
0 => "%s человек удален",
1 => "%s чел. удалено",
2 => "%s чел. удалено",
);
$a->strings["User '%s' deleted"] = "Пользователь '%s' удален";
$a->strings["User '%s' unblocked"] = "Пользователь '%s' разблокирован";
$a->strings["User '%s' blocked"] = "Пользователь '%s' блокирован";
$a->strings["select all"] = "выбрать все";
$a->strings["User registrations waiting for confirm"] = "Регистрации пользователей, ожидающие подтверждения";
$a->strings["Request date"] = "Запрос даты";
$a->strings["Email"] = "Эл. почта";
$a->strings["No registrations."] = "Нет регистраций.";
$a->strings["Deny"] = "Отклонить";
$a->strings["Site admin"] = "";
$a->strings["Register date"] = "Дата регистрации";
$a->strings["Last login"] = "Последний вход";
$a->strings["Last item"] = "Последний пункт";
$a->strings["Account"] = "Аккаунт";
$a->strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Выбранные пользователи будут удалены!\\n\\nВсе, что эти пользователи написали на этом сайте, будет удалено!\\n\\nВы уверены в вашем действии?";
$a->strings["The user {0} will be deleted!\\n\\nEverything this user has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Пользователь {0} будет удален!\\n\\nВсе, что этот пользователь написал на этом сайте, будет удалено!\\n\\nВы уверены в вашем действии?";
$a->strings["Plugin %s disabled."] = "Плагин %s отключен.";
$a->strings["Plugin %s enabled."] = "Плагин %s включен.";
$a->strings["Disable"] = "Отключить";
$a->strings["Enable"] = "Включить";
$a->strings["Toggle"] = "Переключить";
$a->strings["Author: "] = "Автор:";
$a->strings["Maintainer: "] = "";
$a->strings["No themes found."] = "";
$a->strings["Screenshot"] = "Скриншот";
$a->strings["[Experimental]"] = "[экспериментально]";
$a->strings["[Unsupported]"] = "[Неподдерживаемое]";
$a->strings["Log settings updated."] = "Настройки журнала обновлены.";
$a->strings["Clear"] = "Очистить";
$a->strings["Debugging"] = "Отладка";
$a->strings["Log file"] = "Лог-файл";
$a->strings["Must be writable by web server. Relative to your Friendica top-level directory."] = "";
$a->strings["Log level"] = "Уровень лога";
$a->strings["Close"] = "Закрыть";
$a->strings["FTP Host"] = "FTP хост";
$a->strings["FTP Path"] = "Путь FTP";
$a->strings["FTP User"] = "FTP пользователь";
$a->strings["FTP Password"] = "FTP пароль";
$a->strings["Requested profile is not available."] = "Запрашиваемый профиль недоступен.";
$a->strings["Access to this profile has been restricted."] = "Доступ к этому профилю ограничен.";
$a->strings["Tips for New Members"] = "Советы для новых участников";
$a->strings["{0} wants to be your friend"] = "{0} хочет стать Вашим другом";
$a->strings["{0} sent you a message"] = "{0} отправил Вам сообщение";
$a->strings["{0} requested registration"] = "{0} требуемая регистрация";
$a->strings["{0} commented %s's post"] = "{0} прокомментировал сообщение от %s";
$a->strings["{0} liked %s's post"] = "{0} нравится сообщение от %s";
$a->strings["{0} disliked %s's post"] = "{0} не нравится сообщение от %s";
$a->strings["{0} is now friends with %s"] = "{0} теперь друзья с %s";
$a->strings["{0} posted"] = "{0} опубликовано";
$a->strings["{0} tagged %s's post with #%s"] = "{0} пометил сообщение %s с #%s";
$a->strings["{0} mentioned you in a post"] = "{0} упоменул Вас в сообщение";
$a->strings["Contacts who are not members of a group"] = "";
$a->strings["OpenID protocol error. No ID returned."] = "";
$a->strings["Account not found and OpenID registration is not permitted on this site."] = "Аккаунт не найден и OpenID регистрация не допускается на этом сайте.";
$a->strings["Login failed."] = "Войти не удалось.";
$a->strings["Contact added"] = "";
$a->strings["Common Friends"] = "Общие друзья";
$a->strings["No contacts in common."] = "";
$a->strings["%1\$s is following %2\$s's %3\$s"] = "";
$a->strings["link"] = "";
$a->strings["Item has been removed."] = "Пункт был удален.";
$a->strings["Applications"] = "Приложения";
$a->strings["No installed applications."] = "Нет установленных приложений.";
$a->strings["Search"] = "Поиск";
$a->strings["Profile not found."] = "Профиль не найден.";
$a->strings["Profile Name is required."] = "Необходимо имя профиля.";
$a->strings["Marital Status"] = "";
$a->strings["Romantic Partner"] = "";
$a->strings["Likes"] = "";
$a->strings["Dislikes"] = "";
$a->strings["Work/Employment"] = "";
$a->strings["Religion"] = "";
$a->strings["Political Views"] = "";
$a->strings["Gender"] = "";
$a->strings["Sexual Preference"] = "";
$a->strings["Homepage"] = "";
$a->strings["Interests"] = "";
$a->strings["Address"] = "";
$a->strings["Location"] = "";
$a->strings["Profile updated."] = "Профиль обновлен.";
$a->strings[" and "] = "";
$a->strings["public profile"] = "";
$a->strings["%1\$s changed %2\$s to &ldquo;%3\$s&rdquo;"] = "";
$a->strings[" - Visit %1\$s's %2\$s"] = "";
$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "";
$a->strings["Profile deleted."] = "Профиль удален.";
$a->strings["Profile-"] = "Профиль-";
$a->strings["New profile created."] = "Новый профиль создан.";
$a->strings["Profile unavailable to clone."] = "Профиль недоступен для клонирования.";
$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Скрывать ваш список контактов / друзей от посетителей этого профиля?";
$a->strings["Edit Profile Details"] = "Редактировать детали профиля";
$a->strings["View this profile"] = "Просмотреть этот профиль";
$a->strings["Create a new profile using these settings"] = "Создать новый профиль, используя эти настройки";
$a->strings["Clone this profile"] = "Клонировать этот профиль";
$a->strings["Delete this profile"] = "Удалить этот профиль";
$a->strings["Profile Name:"] = "Имя профиля:";
$a->strings["Your Full Name:"] = "Ваше полное имя:";
$a->strings["Title/Description:"] = "Заголовок / Описание:";
$a->strings["Your Gender:"] = "Ваш пол:";
$a->strings["Birthday (%s):"] = "День рождения (%s):";
$a->strings["Street Address:"] = "Адрес:";
$a->strings["Locality/City:"] = "Город / Населенный пункт:";
$a->strings["Postal/Zip Code:"] = "Почтовый индекс:";
$a->strings["Country:"] = "Страна:";
$a->strings["Region/State:"] = "Район / Область:";
$a->strings["<span class=\"heart\">&hearts;</span> Marital Status:"] = "<span class=\"heart\">&hearts;</span> Семейное положение:";
$a->strings["Who: (if applicable)"] = "Кто: (если требуется)";
$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Примеры: cathy123, Кэти Уильямс, cathy@example.com";
$a->strings["Since [date]:"] = "";
$a->strings["Sexual Preference:"] = "Сексуальные предпочтения:";
$a->strings["Homepage URL:"] = "Адрес домашней странички:";
$a->strings["Hometown:"] = "";
$a->strings["Political Views:"] = "Политические взгляды:";
$a->strings["Religious Views:"] = "Религиозные взгляды:";
$a->strings["Public Keywords:"] = "Общественные ключевые слова:";
$a->strings["Private Keywords:"] = "Личные ключевые слова:";
$a->strings["Likes:"] = "";
$a->strings["Dislikes:"] = "";
$a->strings["Example: fishing photography software"] = "Пример: рыбалка фотографии программное обеспечение";
$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(Используется для предложения потенциальным друзьям, могут увидеть другие)";
$a->strings["(Used for searching profiles, never shown to others)"] = "(Используется для поиска профилей, никогда не показывается другим)";
$a->strings["Tell us about yourself..."] = "Расскажите нам о себе ...";
$a->strings["Hobbies/Interests"] = "Хобби / Интересы";
$a->strings["Contact information and Social Networks"] = "Контактная информация и социальные сети";
$a->strings["Musical interests"] = "Музыкальные интересы";
$a->strings["Books, literature"] = "Книги, литература";
$a->strings["Television"] = "Телевидение";
$a->strings["Film/dance/culture/entertainment"] = "Кино / танцы / культура / развлечения";
$a->strings["Love/romance"] = "Любовь / романтика";
$a->strings["Work/employment"] = "Работа / занятость";
$a->strings["School/education"] = "Школа / образование";
$a->strings["This is your <strong>public</strong> profile.<br />It <strong>may</strong> be visible to anybody using the internet."] = "Это ваш <strong>публичный</strong> профиль. <br /> Он <strong>может</strong> быть виден каждому, используя Интернет.";
$a->strings["Age: "] = "Возраст: ";
$a->strings["Edit/Manage Profiles"] = "Редактировать профиль";
$a->strings["Change profile photo"] = "Изменить фото профиля";
$a->strings["Create New Profile"] = "Создать новый профиль";
$a->strings["Profile Image"] = "Фото профиля";
$a->strings["visible to everybody"] = "видимый всем";
$a->strings["Edit visibility"] = "Редактировать видимость";
$a->strings["Save to Folder:"] = "Сохранить в папку:";
$a->strings["- select -"] = "";
$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s tagged %2\$s's %3\$s в %4\$s";
$a->strings["No potential page delegates located."] = "";
$a->strings["Delegate Page Management"] = "Делегировать управление страницей";
$a->strings["Delegates are able to manage all aspects of this account/page except for basic account settings. Please do not delegate your personal account to anybody that you do not trust completely."] = "";
$a->strings["Existing Page Managers"] = "Существующие менеджеры страницы";
$a->strings["Existing Page Delegates"] = "Существующие уполномоченные страницы";
$a->strings["Potential Delegates"] = "";
$a->strings["Add"] = "Добавить";
$a->strings["No entries."] = "Нет записей.";
$a->strings["Source (bbcode) text:"] = "";
$a->strings["Source (Diaspora) text to convert to BBcode:"] = "";
$a->strings["Source input: "] = "";
$a->strings["bb2html: "] = "";
$a->strings["bb2html2bb: "] = "";
$a->strings["bb2md: "] = "";
$a->strings["bb2md2html: "] = "";
$a->strings["bb2dia2bb: "] = "";
$a->strings["bb2md2html2bb: "] = "";
$a->strings["Source input (Diaspora format): "] = "";
$a->strings["diaspora2bb: "] = "";
$a->strings["Friend Suggestions"] = "Предложения друзей";
$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "";
$a->strings["Ignore/Hide"] = "Проигнорировать/Скрыть";
$a->strings["Global Directory"] = "Глобальный каталог";
$a->strings["Find on this site"] = "Найти на этом сайте";
$a->strings["Site Directory"] = "Каталог сайта";
$a->strings["Gender: "] = "Пол: ";
$a->strings["Full Name:"] = "Полное имя:";
$a->strings["Gender:"] = "Пол:";
$a->strings["Status:"] = "Статус:";
$a->strings["Homepage:"] = "Домашняя страничка:";
$a->strings["About:"] = "О себе:";
$a->strings["No entries (some entries may be hidden)."] = "Нет записей (некоторые записи могут быть скрыты).";
$a->strings["%s : Not a valid email address."] = "%s: Неверный адрес электронной почты.";
$a->strings["Please join us on Friendica"] = "";
$a->strings["%s : Message delivery failed."] = "%s: Доставка сообщения не удалась.";
$a->strings["%d message sent."] = array(
0 => "%d сообщение отправлено.",
1 => "%d сообщений отправлено.",
2 => "%d сообщений отправлено.",
);
$a->strings["You have no more invitations available"] = "У вас нет больше приглашений";
$a->strings["Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks."] = "";
$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "";
$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join."] = "";
$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "";
$a->strings["Send invitations"] = "Отправить приглашения";
$a->strings["Enter email addresses, one per line:"] = "Введите адреса электронной почты, по одному в строке:";
$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "";
$a->strings["You will need to supply this invitation code: \$invite_code"] = "Вам нужно будет предоставить этот код приглашения: \$invite_code";
$a->strings["Once you have registered, please connect with me via my profile page at:"] = "После того как вы зарегистрировались, пожалуйста, свяжитесь со мной через мою страницу профиля по адресу:";
$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "";
$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "";
$a->strings["Response from remote site was not understood."] = "Ответ от удаленного сайта не был понят.";
$a->strings["Unexpected response from remote site: "] = "Неожиданный ответ от удаленного сайта: ";
$a->strings["Confirmation completed successfully."] = "Подтверждение успешно завершено.";
$a->strings["Remote site reported: "] = "Удаленный сайт сообщил: ";
$a->strings["Temporary failure. Please wait and try again."] = "Временные неудачи. Подождите и попробуйте еще раз.";
$a->strings["Introduction failed or was revoked."] = "Запрос ошибочен или был отозван.";
$a->strings["Unable to set contact photo."] = "Не удается установить фото контакта.";
$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s и %2\$s теперь друзья";
$a->strings["No user record found for '%s' "] = "Не найдено записи пользователя для '%s' ";
$a->strings["Our site encryption key is apparently messed up."] = "Наш ключ шифрования сайта, по-видимому, перепутался.";
$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "Был предоставлен пустой URL сайта ​​или URL не может быть расшифрован нами.";
$a->strings["Contact record was not found for you on our site."] = "Запись контакта не найдена для вас на нашем сайте.";
$a->strings["Site public key not available in contact record for URL %s."] = "Публичный ключ недоступен в записи о контакте по ссылке %s";
$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "ID, предложенный вашей системой, является дубликатом в нашей системе. Он должен работать, если вы повторите попытку.";
$a->strings["Unable to set your contact credentials on our system."] = "Не удалось установить ваши учетные данные контакта в нашей системе.";
$a->strings["Unable to update your contact profile details on our system"] = "Не удается обновить ваши контактные детали профиля в нашей системе";
$a->strings["Connection accepted at %s"] = "Подключение принято в %s";
$a->strings["%1\$s has joined %2\$s"] = "";
$a->strings["Google+ Import Settings"] = "";
$a->strings["Enable Google+ Import"] = "";
$a->strings["Google Account ID"] = "";
$a->strings["Google+ Import Settings saved."] = "";
$a->strings["Facebook disabled"] = "Facebook отключен";
$a->strings["Updating contacts"] = "Обновление контактов";
$a->strings["Facebook API key is missing."] = "Отсутствует ключ Facebook API.";
$a->strings["Facebook Connect"] = "Facebook подключение";
$a->strings["Install Facebook connector for this account."] = "Установить Facebook Connector для этого аккаунта.";
$a->strings["Remove Facebook connector"] = "Удалить Facebook Connector";
$a->strings["Re-authenticate [This is necessary whenever your Facebook password is changed.]"] = "Переаутентификация [Это необходимо, если вы изменили пароль на Facebook.]";
$a->strings["Post to Facebook by default"] = "Отправлять на Facebook по умолчанию";
$a->strings["Facebook friend linking has been disabled on this site. The following settings will have no effect."] = "";
$a->strings["Facebook friend linking has been disabled on this site. If you disable it, you will be unable to re-enable it."] = "";
$a->strings["Link all your Facebook friends and conversations on this website"] = "Прикрепите своих друзей и общение с Facebook на этот сайт";
$a->strings["Facebook conversations consist of your <em>profile wall</em> and your friend <em>stream</em>."] = "";
$a->strings["On this website, your Facebook friend stream is only visible to you."] = "Facebook-лента друзей видна только вам.";
$a->strings["The following settings determine the privacy of your Facebook profile wall on this website."] = "Следующие настройки определяют параметры приватности вашей стены с Facebook на этом сайте.";
$a->strings["On this website your Facebook profile wall conversations will only be visible to you"] = "Ваша лента профиля Facebook будет видна только вам";
$a->strings["Do not import your Facebook profile wall conversations"] = "Не импортировать Facebook разговоров с Вашей страницы";
$a->strings["If you choose to link conversations and leave both of these boxes unchecked, your Facebook profile wall will be merged with your profile wall on this website and your privacy settings on this website will be used to determine who may see the conversations."] = "";
$a->strings["Comma separated applications to ignore"] = "Игнорировать приложения (список через запятую)";
$a->strings["Problems with Facebook Real-Time Updates"] = "";
$a->strings["Facebook Connector Settings"] = "Настройки подключения Facebook";
$a->strings["Facebook API Key"] = "Facebook API Key";
$a->strings["Error: it appears that you have specified the App-ID and -Secret in your .htconfig.php file. As long as they are specified there, they cannot be set using this form.<br><br>"] = "";
$a->strings["Error: the given API Key seems to be incorrect (the application access token could not be retrieved)."] = "";
$a->strings["The given API Key seems to work correctly."] = "";
$a->strings["The correctness of the API Key could not be detected. Something strange's going on."] = "";
$a->strings["App-ID / API-Key"] = "App-ID / API-Key";
$a->strings["Application secret"] = "Секрет приложения";
$a->strings["Polling Interval in minutes (minimum %1\$s minutes)"] = "";
$a->strings["Synchronize comments (no comments on Facebook are missed, at the cost of increased system load)"] = "";
$a->strings["Real-Time Updates"] = "";
$a->strings["Real-Time Updates are activated."] = "";
$a->strings["Deactivate Real-Time Updates"] = "Отключить Real-Time обновления";
$a->strings["Real-Time Updates not activated."] = "";
$a->strings["Activate Real-Time Updates"] = "Активировать Real-Time обновления";
$a->strings["The new values have been saved."] = "";
$a->strings["Post to Facebook"] = "Отправить на Facebook";
$a->strings["Post to Facebook cancelled because of multi-network access permission conflict."] = "Отправка на Facebook отменена из-за конфликта разрешений доступа разных сетей.";
$a->strings["View on Friendica"] = "";
$a->strings["Facebook post failed. Queued for retry."] = "Ошибка отправки сообщения на Facebook. В очереди на еще одну попытку.";
$a->strings["Your Facebook connection became invalid. Please Re-authenticate."] = "";
$a->strings["Facebook connection became invalid"] = "Facebook подключение не удалось";
$a->strings["Hi %1\$s,\n\nThe connection between your accounts on %2\$s and Facebook became invalid. This usually happens after you change your Facebook-password. To enable the connection again, you have to %3\$sre-authenticate the Facebook-connector%4\$s."] = "";
$a->strings["StatusNet AutoFollow settings updated."] = "";
$a->strings["StatusNet AutoFollow Settings"] = "";
$a->strings["Automatically follow any StatusNet followers/mentioners"] = "";
$a->strings["Lifetime of the cache (in hours)"] = "";
$a->strings["Cache Statistics"] = "";
$a->strings["Number of items"] = "";
$a->strings["Size of the cache"] = "";
$a->strings["Delete the whole cache"] = "";
$a->strings["Facebook Post disabled"] = "";
$a->strings["Facebook Post"] = "";
$a->strings["Install Facebook Post connector for this account."] = "";
$a->strings["Remove Facebook Post connector"] = "";
$a->strings["Facebook Post Settings"] = "";
$a->strings["%d person likes this"] = array(
0 => "",
1 => "",
2 => "",
);
$a->strings["%d person doesn't like this"] = array(
0 => "",
1 => "",
2 => "",
);
$a->strings["Get added to this list!"] = "";
$a->strings["Generate new key"] = "Сгенерировать новый ключ";
$a->strings["Widgets key"] = "Ключ виджетов";
$a->strings["Widgets available"] = "Виджеты доступны";
$a->strings["Connect on Friendica!"] = "Подключены к Friendica!";
$a->strings["bitchslap"] = "";
$a->strings["bitchslapped"] = "";
$a->strings["shag"] = "";
$a->strings["shagged"] = "";
$a->strings["do something obscenely biological to"] = "";
$a->strings["did something obscenely biological to"] = "";
$a->strings["point out the poke feature to"] = "";
$a->strings["pointed out the poke feature to"] = "";
$a->strings["declare undying love for"] = "";
$a->strings["declared undying love for"] = "";
$a->strings["patent"] = "";
$a->strings["patented"] = "";
$a->strings["stroke beard"] = "";
$a->strings["stroked their beard at"] = "";
$a->strings["bemoan the declining standards of modern secondary and tertiary education to"] = "";
$a->strings["bemoans the declining standards of modern secondary and tertiary education to"] = "";
$a->strings["hug"] = "";
$a->strings["hugged"] = "";
$a->strings["kiss"] = "";
$a->strings["kissed"] = "";
$a->strings["raise eyebrows at"] = "";
$a->strings["raised their eyebrows at"] = "";
$a->strings["insult"] = "";
$a->strings["insulted"] = "";
$a->strings["praise"] = "";
$a->strings["praised"] = "";
$a->strings["be dubious of"] = "";
$a->strings["was dubious of"] = "";
$a->strings["eat"] = "";
$a->strings["ate"] = "";
$a->strings["giggle and fawn at"] = "";
$a->strings["giggled and fawned at"] = "";
$a->strings["doubt"] = "";
$a->strings["doubted"] = "";
$a->strings["glare"] = "";
$a->strings["glared at"] = "";
$a->strings["YourLS Settings"] = "";
$a->strings["URL: http://"] = "URL: http://";
$a->strings["Username:"] = "Имя:";
$a->strings["Password:"] = "Пароль:";
$a->strings["Use SSL "] = "Использовать SSL";
$a->strings["yourls Settings saved."] = "Настройки сохранены.";
$a->strings["Post to LiveJournal"] = "";
$a->strings["LiveJournal Post Settings"] = "";
$a->strings["Enable LiveJournal Post Plugin"] = "Включить LiveJournal плагин сообщений";
$a->strings["LiveJournal username"] = "";
$a->strings["LiveJournal password"] = "";
$a->strings["Post to LiveJournal by default"] = "";
$a->strings["Not Safe For Work (General Purpose Content Filter) settings"] = "";
$a->strings["This plugin looks in posts for the words/text you specify below, and collapses any content containing those keywords so it is not displayed at inappropriate times, such as sexual innuendo that may be improper in a work setting. It is polite and recommended to tag any content containing nudity with #NSFW. This filter can also match any other word/text you specify, and can thereby be used as a general purpose content filter."] = "";
$a->strings["Enable Content filter"] = "Включить фильтр содержимого";
$a->strings["Comma separated list of keywords to hide"] = "ключевые слова, которые скрыть (список через запятую)";
$a->strings["Use /expression/ to provide regular expressions"] = "";
$a->strings["NSFW Settings saved."] = "NSFW Настройки сохранены.";
$a->strings["%s - Click to open/close"] = "%s - Нажмите для открытия / закрытия";
$a->strings["Forums"] = "Форумы";
$a->strings["Forums:"] = "";
$a->strings["Page settings updated."] = "";
$a->strings["Page Settings"] = "";
$a->strings["How many forums to display on sidebar without paging"] = "";
$a->strings["Randomise Page/Forum list"] = "";
$a->strings["Show pages/forums on profile page"] = "";
$a->strings["Planets Settings"] = "";
$a->strings["Enable Planets Plugin"] = "";
$a->strings["Forum Directory"] = "";
$a->strings["Login"] = "Вход";
$a->strings["OpenID"] = "OpenID";
$a->strings["Latest users"] = "";
$a->strings["Most active users"] = "Самые активные пользователи";
$a->strings["Latest photos"] = "";
$a->strings["Latest likes"] = "";
$a->strings["event"] = "мероприятие";
$a->strings["No access"] = "";
$a->strings["Could not open component for editing"] = "";
$a->strings["Go back to the calendar"] = "";
$a->strings["Event data"] = "";
$a->strings["Calendar"] = "";
$a->strings["Special color"] = "";
$a->strings["Subject"] = "";
$a->strings["Starts"] = "";
$a->strings["Ends"] = "";
$a->strings["Description"] = "";
$a->strings["Recurrence"] = "";
$a->strings["Frequency"] = "";
$a->strings["Daily"] = "Ежедневно";
$a->strings["Weekly"] = "Еженедельно";
$a->strings["Monthly"] = "Ежемесячно";
$a->strings["Yearly"] = "";
$a->strings["days"] = "дней";
$a->strings["weeks"] = "недель";
$a->strings["months"] = "мес.";
$a->strings["years"] = "лет";
$a->strings["Interval"] = "";
$a->strings["All %select% %time%"] = "";
$a->strings["Days"] = "";
$a->strings["Sunday"] = "Воскресенье";
$a->strings["Monday"] = "Понедельник";
$a->strings["Tuesday"] = "Вторник";
$a->strings["Wednesday"] = "Среда";
$a->strings["Thursday"] = "Четверг";
$a->strings["Friday"] = "Пятница";
$a->strings["Saturday"] = "Суббота";
$a->strings["First day of week:"] = "";
$a->strings["Day of month"] = "";
$a->strings["#num#th of each month"] = "";
$a->strings["#num#th-last of each month"] = "";
$a->strings["#num#th #wkday# of each month"] = "";
$a->strings["#num#th-last #wkday# of each month"] = "";
$a->strings["Month"] = "";
$a->strings["#num#th of the given month"] = "";
$a->strings["#num#th-last of the given month"] = "";
$a->strings["#num#th #wkday# of the given month"] = "";
$a->strings["#num#th-last #wkday# of the given month"] = "";
$a->strings["Repeat until"] = "";
$a->strings["Infinite"] = "";
$a->strings["Until the following date"] = "";
$a->strings["Number of times"] = "";
$a->strings["Exceptions"] = "";
$a->strings["none"] = "";
$a->strings["Notification"] = "";
$a->strings["Notify by"] = "";
$a->strings["E-Mail"] = "";
$a->strings["On Friendica / Display"] = "";
$a->strings["Time"] = "";
$a->strings["Hours"] = "";
$a->strings["Minutes"] = "";
$a->strings["Seconds"] = "";
$a->strings["Weeks"] = "";
$a->strings["before the"] = "";
$a->strings["start of the event"] = "";
$a->strings["end of the event"] = "";
$a->strings["Add a notification"] = "";
$a->strings["The event #name# will start at #date"] = "";
$a->strings["#name# is about to begin."] = "";
$a->strings["Saved"] = "";
$a->strings["U.S. Time Format (mm/dd/YYYY)"] = "";
$a->strings["German Time Format (dd.mm.YYYY)"] = "";
$a->strings["Private Events"] = "";
$a->strings["Private Addressbooks"] = "";
$a->strings["Friendica-Native events"] = "";
$a->strings["Friendica-Contacts"] = "";
$a->strings["Your Friendica-Contacts"] = "";
$a->strings["Something went wrong when trying to import the file. Sorry. Maybe some events were imported anyway."] = "";
$a->strings["Something went wrong when trying to import the file. Sorry."] = "";
$a->strings["The ICS-File has been imported."] = "";
$a->strings["No file was uploaded."] = "";
$a->strings["Import a ICS-file"] = "";
$a->strings["ICS-File"] = "";
$a->strings["Overwrite all #num# existing events"] = "";
$a->strings["New event"] = "";
$a->strings["Today"] = "";
$a->strings["Day"] = "";
$a->strings["Week"] = "";
$a->strings["Reload"] = "";
$a->strings["Date"] = "";
$a->strings["Error"] = "";
$a->strings["The calendar has been updated."] = "";
$a->strings["The new calendar has been created."] = "";
$a->strings["The calendar has been deleted."] = "";
$a->strings["Calendar Settings"] = "";
$a->strings["Date format"] = "";
$a->strings["Time zone"] = "";
$a->strings["Calendars"] = "";
$a->strings["Create a new calendar"] = "";
$a->strings["Limitations"] = "";
$a->strings["Warning"] = "";
$a->strings["Synchronization (iPhone, Thunderbird Lightning, Android, ...)"] = "";
$a->strings["Synchronizing this calendar with the iPhone"] = "";
$a->strings["Synchronizing your Friendica-Contacts with the iPhone"] = "";
$a->strings["The current version of this plugin has not been set up correctly. Please contact the system administrator of your installation of friendica to fix this."] = "";
$a->strings["Extended calendar with CalDAV-support"] = "";
$a->strings["noreply"] = "без ответа";
$a->strings["Notification: "] = "";
$a->strings["The database tables have been installed."] = "";
$a->strings["An error occurred during the installation."] = "";
$a->strings["The database tables have been updated."] = "";
$a->strings["An error occurred during the update."] = "";
$a->strings["No system-wide settings yet."] = "";
$a->strings["Database status"] = "";
$a->strings["Installed"] = "";
$a->strings["Upgrade needed"] = "";
$a->strings["Please back up all calendar data (the tables beginning with dav_*) before proceeding. While all calendar events <i>should</i> be converted to the new database structure, it's always safe to have a backup. Below, you can have a look at the database-queries that will be made when pressing the 'update'-button."] = "";
$a->strings["Upgrade"] = "";
$a->strings["Not installed"] = "";
$a->strings["Install"] = "";
$a->strings["Unknown"] = "";
$a->strings["Something really went wrong. I cannot recover from this state automatically, sorry. Please go to the database backend, back up the data, and delete all tables beginning with 'dav_' manually. Afterwards, this installation routine should be able to reinitialize the tables automatically."] = "";
$a->strings["Troubleshooting"] = "";
$a->strings["Manual creation of the database tables:"] = "";
$a->strings["Show SQL-statements"] = "";
$a->strings["Private Calendar"] = "";
$a->strings["Friendica Events: Mine"] = "";
$a->strings["Friendica Events: Contacts"] = "";
$a->strings["Private Addresses"] = "";
$a->strings["Friendica Contacts"] = "";
$a->strings["Allow to use your friendica id (%s) to connecto to external unhosted-enabled storage (like ownCloud). See <a href=\"http://www.w3.org/community/unhosted/wiki/RemoteStorage#WebFinger\">RemoteStorage WebFinger</a>"] = "";
$a->strings["Template URL (with {category})"] = "";
$a->strings["OAuth end-point"] = "";
$a->strings["Api"] = "Api";
$a->strings["Member since:"] = "Зарегистрирован с:";
$a->strings["Three Dimensional Tic-Tac-Toe"] = "Трехмерные крестики-нолики";
$a->strings["3D Tic-Tac-Toe"] = "3D Tic-Tac-Toe";
$a->strings["New game"] = "Новая игра";
$a->strings["New game with handicap"] = "Новая игра с гандикапом";
$a->strings["Three dimensional tic-tac-toe is just like the traditional game except that it is played on multiple levels simultaneously. "] = "Трехмерная игра в крестики-нолики точно такая же, как традиционная игра, за исключением того, что она играется на нескольких уровнях одновременно.";
$a->strings["In this case there are three levels. You win by getting three in a row on any level, as well as up, down, and diagonally across the different levels."] = "В этом случае существуют три уровня. Вы выиграете, поставив три в ряд на любом уровне, а также вверх, вниз и по диагонали на разных уровнях.";
$a->strings["The handicap game disables the center position on the middle level because the player claiming this square often has an unfair advantage."] = "Игра с гандикапом отключает центральное положение на среднем уровне, потому что игрок, занимающий эту площадь, часто имеет несправедливое преимущество.";
$a->strings["You go first..."] = "Вы хотите первым...";
$a->strings["I'm going first this time..."] = "Я буду первым на этот раз...";
$a->strings["You won!"] = "Вы выиграли!";
$a->strings["\"Cat\" game!"] = "Игра \"Кошка\"!";
$a->strings["I won!"] = "Я выиграл!";
$a->strings["Randplace Settings"] = "Настройки Случайного места";
$a->strings["Enable Randplace Plugin"] = "Включить Randplace плагин";
$a->strings["Post to Dreamwidth"] = "";
$a->strings["Dreamwidth Post Settings"] = "Dreamwidth настройки сообщений";
$a->strings["Enable dreamwidth Post Plugin"] = "Включить dreamwidth плагин сообщений";
$a->strings["dreamwidth username"] = "dreamwidth имя пользователя";
$a->strings["dreamwidth password"] = "dreamwidth пароль";
$a->strings["Post to dreamwidth by default"] = "";
$a->strings["Remote Permissions Settings"] = "";
$a->strings["Allow recipients of your private posts to see the other recipients of the posts"] = "";
$a->strings["Remote Permissions settings updated."] = "";
$a->strings["Visible to"] = "";
$a->strings["may only be a partial list"] = "";
$a->strings["Global"] = "";
$a->strings["The posts of every user on this server show the post recipients"] = "";
$a->strings["Individual"] = "";
$a->strings["Each user chooses whether his/her posts show the post recipients"] = "";
$a->strings["Startpage Settings"] = "";
$a->strings["Home page to load after login - leave blank for profile wall"] = "";
$a->strings["Examples: &quot;network&quot; or &quot;notifications/system&quot;"] = "";
$a->strings["Geonames settings updated."] = "";
$a->strings["Geonames Settings"] = "";
$a->strings["Enable Geonames Plugin"] = "Включить Geonames плагин";
$a->strings["Your account on %s will expire in a few days."] = "";
$a->strings["Your Friendica account is about to expire."] = "";
$a->strings["Hi %1\$s,\n\nYour account on %2\$s will expire in less than five days. You may keep your account by logging in at least once every 30 days"] = "";
$a->strings["Upload a file"] = "Загрузить файл";
$a->strings["Drop files here to upload"] = "Перетащите файлы сюда для загрузки";
$a->strings["Failed"] = "Ошибка";
$a->strings["No files were uploaded."] = "Нет загруженных файлов.";
$a->strings["Uploaded file is empty"] = "Загруженный файл пустой";
$a->strings["File has an invalid extension, it should be one of "] = "Файл имеет недопустимое расширение, оно должно быть одним из следующих ";
$a->strings["Upload was cancelled, or server error encountered"] = "Загрузка была отменена, или произошла ошибка сервера";
$a->strings["show/hide"] = "";
$a->strings["No forum subscriptions"] = "";
$a->strings["Forumlist settings updated."] = "";
$a->strings["Forumlist Settings"] = "";
$a->strings["Randomise forum list"] = "";
$a->strings["Show forums on profile page"] = "";
$a->strings["Show forums on network page"] = "";
$a->strings["Impressum"] = "Impressum";
$a->strings["Site Owner"] = "Владелец сайта";
$a->strings["Email Address"] = "Адрес электронной почты";
$a->strings["Postal Address"] = "Почтовый адрес";
$a->strings["The impressum addon needs to be configured!<br />Please add at least the <tt>owner</tt> variable to your config file. For other variables please refer to the README file of the addon."] = "Расширение Impressum должно быть настроено!<br /> Пожалуйста, добавьте по крайней мере переменную <tt>владельца</tt> в ваш конфигурационный файл. Описание других переменных можно найти в файле README для расширения.";
$a->strings["The page operators name."] = "";
$a->strings["Site Owners Profile"] = "Профиль владельцев сайта";
$a->strings["Profile address of the operator."] = "";
$a->strings["How to contact the operator via snail mail. You can use BBCode here."] = "";
$a->strings["Notes"] = "Заметки";
$a->strings["Additional notes that are displayed beneath the contact information. You can use BBCode here."] = "";
$a->strings["How to contact the operator via email. (will be displayed obfuscated)"] = "";
$a->strings["Footer note"] = "";
$a->strings["Text for the footer. You can use BBCode here."] = "";
$a->strings["Report Bug"] = "Сообщить об ошибке";
$a->strings["No Timeline settings updated."] = "";
$a->strings["No Timeline Settings"] = "";
$a->strings["Disable Archive selector on profile wall"] = "";
$a->strings["\"Blockem\" Settings"] = "\"Blockem\" настройки";
$a->strings["Comma separated profile URLS to block"] = "URLS, которые заблокировать (список через запятую)";
$a->strings["BLOCKEM Settings saved."] = "BLOCKEM-Настройки сохранены.";
$a->strings["Blocked %s - Click to open/close"] = "Заблокированные %s - Нажмите, чтобы открыть/закрыть";
$a->strings["Unblock Author"] = "";
$a->strings["Block Author"] = "Блокировать Автора";
$a->strings["blockem settings updated"] = "\"Blockem\" настройки обновлены";
$a->strings[":-)"] = ":-)";
$a->strings[":-("] = ":-(";
$a->strings["lol"] = "lol";
$a->strings["Quick Comment Settings"] = "";
$a->strings["Quick comments are found near comment boxes, sometimes hidden. Click them to provide simple replies."] = "";
$a->strings["Enter quick comments, one per line"] = "Введите короткие комментарии, по одному в строке:";
$a->strings["Quick Comment settings saved."] = "";
$a->strings["Tile Server URL"] = "";
$a->strings["A list of <a href=\"http://wiki.openstreetmap.org/wiki/TMS\" target=\"_blank\">public tile servers</a>"] = "Список <a href=\"http://wiki.openstreetmap.org/wiki/TMS\" target=\"_blank\">общедоступных серверов</a>";
$a->strings["Default zoom"] = "zoom по умолчанию";
$a->strings["The default zoom level. (1:world, 18:highest)"] = "";
$a->strings["Editplain settings updated."] = "Editplain настройки обновлены.";
$a->strings["Group Text"] = "";
$a->strings["Use a text only (non-image) group selector in the \"group edit\" menu"] = "";
$a->strings["Could NOT install Libravatar successfully.<br>It requires PHP >= 5.3"] = "";
$a->strings["generic profile image"] = "";
$a->strings["random geometric pattern"] = "";
$a->strings["monster face"] = "";
$a->strings["computer generated face"] = "";
$a->strings["retro arcade style face"] = "";
$a->strings["Your PHP version %s is lower than the required PHP >= 5.3."] = "";
$a->strings["This addon is not functional on your server."] = "";
$a->strings["Information"] = "";
$a->strings["Gravatar addon is installed. Please disable the Gravatar addon.<br>The Libravatar addon will fall back to Gravatar if nothing was found at Libravatar."] = "";
$a->strings["Default avatar image"] = "";
$a->strings["Select default avatar image if none was found. See README"] = "";
$a->strings["Libravatar settings updated."] = "";
$a->strings["Post to libertree"] = "";
$a->strings["libertree Post Settings"] = "";
$a->strings["Enable Libertree Post Plugin"] = "";
$a->strings["Libertree API token"] = "";
$a->strings["Libertree site URL"] = "";
$a->strings["Post to Libertree by default"] = "";
$a->strings["Altpager settings updated."] = "";
$a->strings["Alternate Pagination Setting"] = "";
$a->strings["Use links to \"newer\" and \"older\" pages in place of page numbers?"] = "";
$a->strings["The MathJax addon renders mathematical formulae written using the LaTeX syntax surrounded by the usual $$ or an eqnarray block in the postings of your wall,network tab and private mail."] = "";
$a->strings["Use the MathJax renderer"] = "";
$a->strings["MathJax Base URL"] = "";
$a->strings["The URL for the javascript file that should be included to use MathJax. Can be either the MathJax CDN or another installation of MathJax."] = "";
$a->strings["Editplain Settings"] = "Editplain настройки";
$a->strings["Disable richtext status editor"] = "Отключить richtext status editor";
$a->strings["Libravatar addon is installed, too. Please disable Libravatar addon or this Gravatar addon.<br>The Libravatar addon will fall back to Gravatar if nothing was found at Libravatar."] = "";
$a->strings["Select default avatar image if none was found at Gravatar. See README"] = "";
$a->strings["Rating of images"] = "";
$a->strings["Select the appropriate avatar rating for your site. See README"] = "";
$a->strings["Gravatar settings updated."] = "";
$a->strings["Your Friendica test account is about to expire."] = "";
$a->strings["Hi %1\$s,\n\nYour test account on %2\$s will expire in less than five days. We hope you enjoyed this test drive and use this opportunity to find a permanent Friendica website for your integrated social communications. A list of public sites is available at http://dir.friendica.com/siteinfo - and for more information on setting up your own Friendica server please see the Friendica project website at http://friendica.com."] = "";
$a->strings["\"pageheader\" Settings"] = "";
$a->strings["pageheader Settings saved."] = "";
$a->strings["Post to Insanejournal"] = "";
$a->strings["InsaneJournal Post Settings"] = "";
$a->strings["Enable InsaneJournal Post Plugin"] = "Включить InsaneJournal плагин сообщений";
$a->strings["InsaneJournal username"] = "";
$a->strings["InsaneJournal password"] = "";
$a->strings["Post to InsaneJournal by default"] = "";
$a->strings["Jappix Mini addon settings"] = "";
$a->strings["Activate addon"] = "";
$a->strings["Do <em>not</em> insert the Jappixmini Chat-Widget into the webinterface"] = "";
$a->strings["Jabber username"] = "";
$a->strings["Jabber server"] = "";
$a->strings["Jabber BOSH host"] = "";
$a->strings["Jabber password"] = "";
$a->strings["Encrypt Jabber password with Friendica password (recommended)"] = "";
$a->strings["Friendica password"] = "";
$a->strings["Approve subscription requests from Friendica contacts automatically"] = "";
$a->strings["Subscribe to Friendica contacts automatically"] = "";
$a->strings["Purge internal list of jabber addresses of contacts"] = "";
$a->strings["Add contact"] = "";
$a->strings["View Source"] = "Просмотр HTML-кода";
$a->strings["Post to StatusNet"] = "Отправить на StatusNet";
$a->strings["Please contact your site administrator.<br />The provided API URL is not valid."] = "Пожалуйста, обратитесь к администратору сайта. <br /> Предложенный URL API недействителен.";
$a->strings["We could not contact the StatusNet API with the Path you entered."] = "Мы не смогли связаться с API StatusNet с маршрутом, который вы ввели.";
$a->strings["StatusNet settings updated."] = "Настройки StatusNet обновлены.";
$a->strings["StatusNet Posting Settings"] = "Настройка отправки сообщений на StatusNet";
$a->strings["Globally Available StatusNet OAuthKeys"] = "Глобально доступные StatusNet OAuthKeys";
$a->strings["There are preconfigured OAuth key pairs for some StatusNet servers available. If you are useing one of them, please use these credentials. If not feel free to connect to any other StatusNet instance (see below)."] = "Доступны предварительно сконфигурированные OAuth пары ключей для некоторых серверов StatusNet. Если вы используете один из них, пожалуйста, используйте эти учетные данные. Если нет, не стесняйтесь подключиться к любому другому экземпляру StatusNet (см. ниже).";
$a->strings["Provide your own OAuth Credentials"] = "Укажите свои собственные полномочия OAuth";
$a->strings["No consumer key pair for StatusNet found. Register your Friendica Account as an desktop client on your StatusNet account, copy the consumer key pair here and enter the API base root.<br />Before you register your own OAuth key pair ask the administrator if there is already a key pair for this Friendica installation at your favorited StatusNet installation."] = "";
$a->strings["OAuth Consumer Key"] = "OAuth Consumer Key";
$a->strings["OAuth Consumer Secret"] = "OAuth Consumer Secret";
$a->strings["Base API Path (remember the trailing /)"] = "Путь базы API (помните о слеше /)";
$a->strings["To connect to your StatusNet account click the button below to get a security code from StatusNet which you have to copy into the input box below and submit the form. Only your <strong>public</strong> posts will be posted to StatusNet."] = "Чтобы подключиться к StatusNet аккаунту, нажмите на кнопку ниже, чтобы получить код безопасности от StatusNet, который нужно скопировать в поле ввода ниже, и отправить форму. Только ваши <strong>публичные сообщения</strong> будут отправляться на StatusNet.";
$a->strings["Log in with StatusNet"] = "Войдите со StatusNet";
$a->strings["Copy the security code from StatusNet here"] = "Скопируйте код безопасности от StatusNet здесь";
$a->strings["Cancel Connection Process"] = "Отмена процесса подключения";
$a->strings["Current StatusNet API is"] = "Текущим StatusNet API является";
$a->strings["Cancel StatusNet Connection"] = "Отмена StatusNet подключения";
$a->strings["Currently connected to: "] = "В настоящее время соединены с: ";
$a->strings["If enabled all your <strong>public</strong> postings can be posted to the associated StatusNet account. You can choose to do so by default (here) or for every posting separately in the posting options when writing the entry."] = "Если включено, то все ваши <strong>общественные сообщения</strong> могут быть отправлены на соответствующий аккаунт StatusNet. Вы можете сделать это по умолчанию (здесь) или для каждого сообщения отдельно при написании записи.";
$a->strings["<strong>Note</strong>: Due your privacy settings (<em>Hide your profile details from unknown viewers?</em>) the link potentially included in public postings relayed to StatusNet will lead the visitor to a blank page informing the visitor that the access to your profile has been restricted."] = "";
$a->strings["Allow posting to StatusNet"] = "Разрешить отправку на StatusNet";
$a->strings["Send public postings to StatusNet by default"] = "Отправлять публичные сообщения на StatusNet по умолчанию";
$a->strings["Send linked #-tags and @-names to StatusNet"] = "";
$a->strings["Clear OAuth configuration"] = "Очистить конфигурацию OAuth";
$a->strings["API URL"] = "API URL";
$a->strings["Infinite Improbability Drive"] = "";
$a->strings["Post to Tumblr"] = "Написать в Tumblr";
$a->strings["Tumblr Post Settings"] = "Tumblr Настройки сообщения";
$a->strings["Enable Tumblr Post Plugin"] = "Включить Tumblr плагин сообщений";
$a->strings["Tumblr login"] = "Tumblr вход";
$a->strings["Tumblr password"] = "Tumblr пароль";
$a->strings["Post to Tumblr by default"] = "Сообщение Tumblr по умолчанию";
$a->strings["Numfriends settings updated."] = "";
$a->strings["Numfriends Settings"] = "";
$a->strings["How many contacts to display on profile sidebar"] = "";
$a->strings["Gnot settings updated."] = "";
$a->strings["Gnot Settings"] = "";
$a->strings["Allows threading of email comment notifications on Gmail and anonymising the subject line."] = "";
$a->strings["Enable this plugin/addon?"] = "Включить этот плагин / аддон?";
$a->strings["[Friendica:Notify] Comment to conversation #%d"] = "";
$a->strings["Post to Wordpress"] = "Сообщение для Wordpress";
$a->strings["WordPress Post Settings"] = "Настройки сообщений для Wordpress";
$a->strings["Enable WordPress Post Plugin"] = "Включить WordPress плагин сообщений";
$a->strings["WordPress username"] = "WordPress Имя пользователя";
$a->strings["WordPress password"] = "WordPress паролъ";
$a->strings["WordPress API URL"] = "WordPress API URL";
$a->strings["Post to WordPress by default"] = "Сообщение WordPress по умолчанию";
$a->strings["Provide a backlink to the Friendica post"] = "";
$a->strings["Post from Friendica"] = "Сообщение от Friendica";
$a->strings["Read the original post and comment stream on Friendica"] = "";
$a->strings["\"Show more\" Settings"] = "";
$a->strings["Enable Show More"] = "Включить Показать больше";
$a->strings["Cutting posts after how much characters"] = "Обрезание сообщения после превывения числа символов";
$a->strings["Show More Settings saved."] = "";
$a->strings["This website is tracked using the <a href='http://www.piwik.org'>Piwik</a> analytics tool."] = "Этот веб-сайт отслеживается с помощью <a href='http://www.piwik.org'> Piwik </ a> инструмент аналитики.";
$a->strings["If you do not want that your visits are logged this way you <a href='%s'>can set a cookie to prevent Piwik from tracking further visits of the site</a> (opt-out)."] = "Если вы не хотите, чтобы ваши посещения записывались таким образом, вы <a href='%s'> можете установить куки для предотвращения отслеживания Piwik от дальнейших посещений сайта </a> (opt-out).";
$a->strings["Piwik Base URL"] = "Piwik основной URL";
$a->strings["Absolute path to your Piwik installation. (without protocol (http/s), with trailing slash)"] = "";
$a->strings["Site ID"] = "ID сайта";
$a->strings["Show opt-out cookie link?"] = "Показать ссылку opt-out cookie?";
$a->strings["Asynchronous tracking"] = "Асинхронное отслеживание";
$a->strings["Post to Twitter"] = "Отправить в Твиттер";
$a->strings["Twitter settings updated."] = "Настройки Твиттера обновлены.";
$a->strings["Twitter Posting Settings"] = "Настройка отправки сообщений в Твиттер";
$a->strings["No consumer key pair for Twitter found. Please contact your site administrator."] = "Не найдено пары потребительских ключей для Твиттера. Пожалуйста, обратитесь к администратору сайта.";
$a->strings["At this Friendica instance the Twitter plugin was enabled but you have not yet connected your account to your Twitter account. To do so click the button below to get a PIN from Twitter which you have to copy into the input box below and submit the form. Only your <strong>public</strong> posts will be posted to Twitter."] = "";
$a->strings["Log in with Twitter"] = "Войдите с Твиттером";
$a->strings["Copy the PIN from Twitter here"] = "Скопируйте PIN с Twitter здесь";
$a->strings["If enabled all your <strong>public</strong> postings can be posted to the associated Twitter account. You can choose to do so by default (here) or for every posting separately in the posting options when writing the entry."] = "Если включено, то все ваши <strong>общественные сообщения</strong> могут быть отправлены на связанный аккаунт Твиттер. Вы можете сделать это по умолчанию (здесь) или для каждого сообщения отдельно при написании записи.";
$a->strings["<strong>Note</strong>: Due your privacy settings (<em>Hide your profile details from unknown viewers?</em>) the link potentially included in public postings relayed to Twitter will lead the visitor to a blank page informing the visitor that the access to your profile has been restricted."] = "";
$a->strings["Allow posting to Twitter"] = "Разрешить отправку сообщений на Twitter";
$a->strings["Send public postings to Twitter by default"] = "Отправлять сообщения для всех на Твиттер по умолчанию";
$a->strings["Send linked #-tags and @-names to Twitter"] = "";
$a->strings["Consumer key"] = "Consumer key";
$a->strings["Consumer secret"] = "Consumer secret";
$a->strings["IRC Settings"] = "";
$a->strings["Channel(s) to auto connect (comma separated)"] = "";
$a->strings["Popular Channels (comma separated)"] = "";
$a->strings["IRC settings saved."] = "";
$a->strings["IRC Chatroom"] = "";
$a->strings["Popular Channels"] = "";
$a->strings["Fromapp settings updated."] = "";
$a->strings["FromApp Settings"] = "";
$a->strings["The application name you would like to show your posts originating from."] = "";
$a->strings["Use this application name even if another application was used."] = "";
$a->strings["Post to blogger"] = "";
$a->strings["Blogger Post Settings"] = "";
$a->strings["Enable Blogger Post Plugin"] = "";
$a->strings["Blogger username"] = "";
$a->strings["Blogger password"] = "";
$a->strings["Blogger API URL"] = "";
$a->strings["Post to Blogger by default"] = "";
$a->strings["Post to Posterous"] = "";
$a->strings["Posterous Post Settings"] = "";
$a->strings["Enable Posterous Post Plugin"] = "Включить Posterous плагин сообщений";
$a->strings["Posterous login"] = "";
$a->strings["Posterous password"] = "";
$a->strings["Posterous site ID"] = "";
$a->strings["Posterous API token"] = "";
$a->strings["Post to Posterous by default"] = "";
$a->strings["Theme settings"] = "";
$a->strings["Set resize level for images in posts and comments (width and height)"] = "";
$a->strings["Set font-size for posts and comments"] = "";
$a->strings["Set theme width"] = "";
$a->strings["Color scheme"] = "Цветовая схема";
$a->strings["Your posts and conversations"] = "Ваши сообщения и беседы";
$a->strings["Your profile page"] = "Страница Вашего профиля";
$a->strings["Your contacts"] = "Ваши контакты";
$a->strings["Your photos"] = "Ваши фотографии";
$a->strings["Your events"] = "Ваши события";
$a->strings["Personal notes"] = "Личные заметки";
$a->strings["Your personal photos"] = "Ваши личные фотографии";
$a->strings["Community Pages"] = "Страницы сообщества";
$a->strings["Community Profiles"] = "";
$a->strings["Last users"] = "Последние пользователи";
$a->strings["Last likes"] = "Последние likes";
$a->strings["Last photos"] = "Последние фото";
$a->strings["Find Friends"] = "Найти друзей";
$a->strings["Local Directory"] = "";
$a->strings["Similar Interests"] = "Похожие интересы";
$a->strings["Invite Friends"] = "Пригласить друзей";
$a->strings["Earth Layers"] = "";
$a->strings["Set zoomfactor for Earth Layers"] = "";
$a->strings["Set longitude (X) for Earth Layers"] = "";
$a->strings["Set latitude (Y) for Earth Layers"] = "";
$a->strings["Help or @NewHere ?"] = "";
$a->strings["Connect Services"] = "Подключить службы";
$a->strings["Last Tweets"] = "";
$a->strings["Set twitter search term"] = "";
$a->strings["don't show"] = "не показывать";
$a->strings["show"] = "показывать";
$a->strings["Show/hide boxes at right-hand column:"] = "";
$a->strings["Set line-height for posts and comments"] = "";
$a->strings["Set resolution for middle column"] = "";
$a->strings["Set color scheme"] = "";
$a->strings["Set zoomfactor for Earth Layer"] = "";
$a->strings["Last tweets"] = "";
$a->strings["Alignment"] = "Выравнивание";
$a->strings["Left"] = "";
$a->strings["Center"] = "Центр";
$a->strings["Posts font size"] = "";
$a->strings["Textareas font size"] = "";
$a->strings["Set colour scheme"] = "";
$a->strings["j F, Y"] = "j F, Y";
$a->strings["j F"] = "j F";
$a->strings["Birthday:"] = "День рождения:";
$a->strings["Age:"] = "Возраст:";
$a->strings["Status:"] = "Статус:";
$a->strings["for %1\$d %2\$s"] = "";
$a->strings["Tags:"] = "";
$a->strings["Sexual Preference:"] = "Сексуальные предпочтения:";
$a->strings["Homepage:"] = "Домашняя страничка:";
$a->strings["Hometown:"] = "";
$a->strings["Tags:"] = "Ключевые слова: ";
$a->strings["Political Views:"] = "Политические взгляды:";
$a->strings["Religion:"] = "Религия:";
$a->strings["About:"] = "О себе:";
$a->strings["Hobbies/Interests:"] = "Хобби / Интересы:";
$a->strings["Likes:"] = "";
$a->strings["Dislikes:"] = "";
$a->strings["Contact information and Social Networks:"] = "Информация о контакте и социальных сетях:";
$a->strings["Musical interests:"] = "Музыкальные интересы:";
$a->strings["Books, literature:"] = "Книги, литература:";
@ -1678,22 +32,6 @@ $a->strings["Film/dance/culture/entertainment:"] = "Кино / Танцы / Ку
$a->strings["Love/Romance:"] = "Любовь / Романтика:";
$a->strings["Work/employment:"] = "Работа / Занятость:";
$a->strings["School/education:"] = "Школа / Образование:";
$a->strings["Unknown | Not categorised"] = "Неизвестно | Не определено";
$a->strings["Block immediately"] = "Блокировать немедленно";
$a->strings["Shady, spammer, self-marketer"] = "Тролль, спаммер, рассылает рекламу";
$a->strings["Known to me, but no opinion"] = "Известные мне, но нет определенного мнения";
$a->strings["OK, probably harmless"] = "Хорошо, наверное, безвредные";
$a->strings["Reputable, has my trust"] = "Уважаемые, есть мое доверие";
$a->strings["Frequently"] = "Часто";
$a->strings["Hourly"] = "Раз в час";
$a->strings["Twice daily"] = "Два раза в день";
$a->strings["OStatus"] = "OStatus";
$a->strings["RSS/Atom"] = "RSS/Atom";
$a->strings["Zot!"] = "Zot!";
$a->strings["LinkedIn"] = "LinkedIn";
$a->strings["XMPP/IM"] = "XMPP/IM";
$a->strings["MySpace"] = "MySpace";
$a->strings["Google+"] = "";
$a->strings["Male"] = "Мужчина";
$a->strings["Female"] = "Женщина";
$a->strings["Currently Male"] = "В данный момент мужчина";
@ -1749,26 +87,33 @@ $a->strings["Divorced"] = "Разведен(а)";
$a->strings["Imaginarily divorced"] = "";
$a->strings["Widowed"] = "Овдовевший";
$a->strings["Uncertain"] = "Неопределенный";
$a->strings["It's complicated"] = "";
$a->strings["It's complicated"] = "влишком сложно";
$a->strings["Don't care"] = "Не беспокоить";
$a->strings["Ask me"] = "Спросите меня";
$a->strings["Starts:"] = "Начало:";
$a->strings["Finishes:"] = "Окончание:";
$a->strings["(no subject)"] = "(без темы)";
$a->strings[" on Last.fm"] = "";
$a->strings["stopped following"] = "остановлено следование";
$a->strings["Poke"] = "";
$a->strings["View Status"] = "Просмотреть статус";
$a->strings["View Profile"] = "";
$a->strings["View Photos"] = "";
$a->strings["Network Posts"] = "";
$a->strings["Edit Contact"] = "Редактировать контакт";
$a->strings["Send PM"] = "Отправить ЛС";
$a->strings["prev"] = "пред.";
$a->strings["first"] = "первый";
$a->strings["last"] = "последний";
$a->strings["next"] = "след.";
$a->strings["newer"] = "";
$a->strings["older"] = "";
$a->strings["newer"] = "новее";
$a->strings["older"] = "старее";
$a->strings["No contacts"] = "Нет контактов";
$a->strings["%d Contact"] = array(
0 => "%d контакт",
1 => "%d контактов",
2 => "%d контактов",
);
$a->strings["poke"] = "";
$a->strings["View Contacts"] = "Просмотр контактов";
$a->strings["Search"] = "Поиск";
$a->strings["Save"] = "Сохранить";
$a->strings["poke"] = "poke";
$a->strings["poked"] = "";
$a->strings["ping"] = "";
$a->strings["pinged"] = "";
@ -1800,6 +145,13 @@ $a->strings["frustrated"] = "";
$a->strings["motivated"] = "";
$a->strings["relaxed"] = "";
$a->strings["surprised"] = "";
$a->strings["Monday"] = "Понедельник";
$a->strings["Tuesday"] = "Вторник";
$a->strings["Wednesday"] = "Среда";
$a->strings["Thursday"] = "Четверг";
$a->strings["Friday"] = "Пятница";
$a->strings["Saturday"] = "Суббота";
$a->strings["Sunday"] = "Воскресенье";
$a->strings["January"] = "Январь";
$a->strings["February"] = "Февраль";
$a->strings["March"] = "Март";
@ -1814,16 +166,26 @@ $a->strings["November"] = "Ноябрь";
$a->strings["December"] = "Декабрь";
$a->strings["bytes"] = "байт";
$a->strings["Click to open/close"] = "Нажмите, чтобы открыть / закрыть";
$a->strings["link to source"] = "ссылка на источник";
$a->strings["default"] = "значение по умолчанию";
$a->strings["Select an alternate language"] = "Выбор альтернативного языка";
$a->strings["event"] = "мероприятие";
$a->strings["photo"] = "фото";
$a->strings["activity"] = "активность";
$a->strings["post"] = "";
$a->strings["comment"] = array(
0 => "",
1 => "",
2 => "комментарий",
);
$a->strings["post"] = "сообщение";
$a->strings["Item filed"] = "";
$a->strings["Sharing notification from Diaspora network"] = "Делиться уведомлениями из сети Diaspora";
$a->strings["Attachments:"] = "Вложения:";
$a->strings["view full size"] = "посмотреть в полный размер";
$a->strings["Embedded content"] = "Встроенное содержание";
$a->strings["Embedding disabled"] = "Встраивание отключено";
$a->strings["Visible to everybody"] = "Видимо всем";
$a->strings["show"] = "показывать";
$a->strings["don't show"] = "не показывать";
$a->strings["Logged out."] = "Выход из системы.";
$a->strings["Login failed."] = "Войти не удалось.";
$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "";
$a->strings["The error message was:"] = "";
$a->strings["Error decoding account file"] = "";
$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "";
$a->strings["Error! I can't import this file: DB schema version is not compatible."] = "";
@ -1837,45 +199,67 @@ $a->strings["%d contact not imported"] = array(
2 => "",
);
$a->strings["Done. You can now login with your username and password"] = "";
$a->strings["A deleted group with this name was revived. Existing item permissions <strong>may</strong> apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "";
$a->strings["Default privacy group for new contacts"] = "";
$a->strings["Everybody"] = "Каждый";
$a->strings["edit"] = "редактировать";
$a->strings["Edit group"] = "Редактировать группу";
$a->strings["Create a new group"] = "Создать новую группу";
$a->strings["Contacts not in any group"] = "";
$a->strings["Logout"] = "Выход";
$a->strings["End this session"] = "Конец этой сессии";
$a->strings["Status"] = "Статус";
$a->strings["Sign in"] = "Вход";
$a->strings["Home Page"] = "Главная страница";
$a->strings["Create an account"] = "Создать аккаунт";
$a->strings["Help and documentation"] = "Помощь и документация";
$a->strings["Apps"] = "Приложения";
$a->strings["Addon applications, utilities, games"] = "Дополнительные приложения, утилиты, игры";
$a->strings["Search site content"] = "Поиск по сайту";
$a->strings["Conversations on this site"] = "Беседы на этом сайте";
$a->strings["Directory"] = "Каталог";
$a->strings["People directory"] = "Каталог участников";
$a->strings["Conversations from your friends"] = "Беседы с друзьями";
$a->strings["Network Reset"] = "";
$a->strings["Load Network page with no filters"] = "";
$a->strings["Friend Requests"] = "Запросы на добавление в список друзей";
$a->strings["See all notifications"] = "Посмотреть все уведомления";
$a->strings["Mark all system notifications seen"] = "";
$a->strings["Private mail"] = "Личная почта";
$a->strings["Inbox"] = "Входящие";
$a->strings["Outbox"] = "Исходящие";
$a->strings["Manage"] = "Управлять";
$a->strings["Manage other pages"] = "Управление другими страницами";
$a->strings["Profiles"] = "Профили";
$a->strings["Manage/Edit Profiles"] = "";
$a->strings["Manage/edit friends and contacts"] = "Управление / редактирование друзей и контактов";
$a->strings["Site setup and configuration"] = "Установка и конфигурация сайта";
$a->strings["Nothing new here"] = "Ничего нового здесь";
$a->strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ g:i A";
$a->strings["Starts:"] = "Начало:";
$a->strings["Finishes:"] = "Окончание:";
$a->strings["Location:"] = "Откуда:";
$a->strings["Disallowed profile URL."] = "Запрещенный URL профиля.";
$a->strings["Connect URL missing."] = "Connect-URL отсутствует.";
$a->strings["This site is not configured to allow communications with other networks."] = "Данный сайт не настроен так, чтобы держать связь с другими сетями.";
$a->strings["No compatible communication protocols or feeds were discovered."] = "Обнаружены несовместимые протоколы связи или каналы.";
$a->strings["The profile address specified does not provide adequate information."] = "Указанный адрес профиля не дает адекватной информации.";
$a->strings["An author or name was not found."] = "Автор или имя не найдены.";
$a->strings["No browser URL could be matched to this address."] = "Нет URL браузера, который соответствует этому адресу.";
$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "";
$a->strings["Use mailto: in front of address to force email check."] = "";
$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "Указанный адрес профиля принадлежит сети, недоступной на этом сайта.";
$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Ограниченный профиль. Этот человек не сможет получить прямые / личные уведомления от вас.";
$a->strings["Unable to retrieve contact information."] = "Невозможно получить контактную информацию.";
$a->strings["following"] = "следует";
$a->strings["An invitation is required."] = "Требуется приглашение.";
$a->strings["Invitation could not be verified."] = "Приглашение не может быть проверено.";
$a->strings["Invalid OpenID url"] = "Неверный URL OpenID";
$a->strings["Please enter the required information."] = "Пожалуйста, введите необходимую информацию.";
$a->strings["Please use a shorter name."] = "Пожалуйста, используйте более короткое имя.";
$a->strings["Name too short."] = "Имя слишком короткое.";
$a->strings["That doesn't appear to be your full (First Last) name."] = "Кажется, что это ваше неполное (Имя Фамилия) имя.";
$a->strings["Your email domain is not among those allowed on this site."] = "Домен вашего адреса электронной почты не относится к числу разрешенных на этом сайте.";
$a->strings["Not a valid email address."] = "Неверный адрес электронной почты.";
$a->strings["Cannot use that email."] = "Нельзя использовать этот Email.";
$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and must also begin with a letter."] = "Ваш \"ник\" может содержать только \"a-z\", \"0-9\", \"-\", и \"_\", а также должен начинаться с буквы.";
$a->strings["Nickname is already registered. Please choose another."] = "Такой ник уже зарегистрирован. Пожалуйста, выберите другой.";
$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "";
$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "СЕРЬЕЗНАЯ ОШИБКА: генерация ключей безопасности не удалась.";
$a->strings["An error occurred during registration. Please try again."] = "Ошибка при регистрации. Пожалуйста, попробуйте еще раз.";
$a->strings["An error occurred creating your default profile. Please try again."] = "Ошибка создания вашего профиля. Пожалуйста, попробуйте еще раз.";
$a->strings["Profile Photos"] = "Фотографии профиля";
$a->strings["Unknown | Not categorised"] = "Неизвестно | Не определено";
$a->strings["Block immediately"] = "Блокировать немедленно";
$a->strings["Shady, spammer, self-marketer"] = "Тролль, спаммер, рассылает рекламу";
$a->strings["Known to me, but no opinion"] = "Известные мне, но нет определенного мнения";
$a->strings["OK, probably harmless"] = "Хорошо, наверное, безвредные";
$a->strings["Reputable, has my trust"] = "Уважаемые, есть мое доверие";
$a->strings["Frequently"] = "Часто";
$a->strings["Hourly"] = "Раз в час";
$a->strings["Twice daily"] = "Два раза в день";
$a->strings["Daily"] = "Ежедневно";
$a->strings["Weekly"] = "Еженедельно";
$a->strings["Monthly"] = "Ежемесячно";
$a->strings["Friendica"] = "Friendica";
$a->strings["OStatus"] = "OStatus";
$a->strings["RSS/Atom"] = "RSS/Atom";
$a->strings["Email"] = "Эл. почта";
$a->strings["Diaspora"] = "Diaspora";
$a->strings["Facebook"] = "Facebook";
$a->strings["Zot!"] = "Zot!";
$a->strings["LinkedIn"] = "LinkedIn";
$a->strings["XMPP/IM"] = "XMPP/IM";
$a->strings["MySpace"] = "MySpace";
$a->strings["Google+"] = "Google+";
$a->strings["Add New Contact"] = "Добавить контакт";
$a->strings["Enter address or web location"] = "Введите адрес или веб-местонахождение";
$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Пример: bob@example.com, http://example.com/barbara";
$a->strings["Connect"] = "Подключить";
$a->strings["%d invitation available"] = array(
0 => "%d приглашение доступно",
1 => "%d приглашений доступно",
@ -1885,22 +269,38 @@ $a->strings["Find People"] = "Поиск людей";
$a->strings["Enter name or interest"] = "Введите имя или интерес";
$a->strings["Connect/Follow"] = "Подключиться/Следовать";
$a->strings["Examples: Robert Morgenstein, Fishing"] = "Примеры: Роберт Morgenstein, Рыбалка";
$a->strings["Find"] = "Найти";
$a->strings["Friend Suggestions"] = "Предложения друзей";
$a->strings["Similar Interests"] = "Похожие интересы";
$a->strings["Random Profile"] = "";
$a->strings["Invite Friends"] = "Пригласить друзей";
$a->strings["Networks"] = "Сети";
$a->strings["All Networks"] = "Все сети";
$a->strings["Saved Folders"] = "";
$a->strings["Everything"] = "Всё";
$a->strings["Categories"] = "Категории";
$a->strings["Logged out."] = "Выход из системы.";
$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "";
$a->strings["The error message was:"] = "";
$a->strings["%d contact in common"] = array(
0 => "%d Контакт",
1 => "%d Контактов",
2 => "%d Контактов",
);
$a->strings["show more"] = "показать больше";
$a->strings[" on Last.fm"] = "";
$a->strings["Image/photo"] = "Изображение / Фото";
$a->strings["<span><a href=\"%s\" target=\"external-link\">%s</a> wrote the following <a href=\"%s\" target=\"external-link\">post</a>"] = "";
$a->strings["$1 wrote:"] = "$1 написал:";
$a->strings["Encrypted content"] = "";
$a->strings["Miscellaneous"] = "Разное";
$a->strings["year"] = "год";
$a->strings["month"] = "мес.";
$a->strings["day"] = "день";
$a->strings["never"] = "никогда";
$a->strings["less than a second ago"] = "менее сек. назад";
$a->strings["years"] = "лет";
$a->strings["months"] = "мес.";
$a->strings["week"] = "неделя";
$a->strings["weeks"] = "недель";
$a->strings["days"] = "дней";
$a->strings["hour"] = "час";
$a->strings["hours"] = "час.";
$a->strings["minute"] = "минута";
@ -1910,25 +310,32 @@ $a->strings["seconds"] = "сек.";
$a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s назад";
$a->strings["%s's birthday"] = "";
$a->strings["Happy Birthday %s"] = "";
$a->strings["From: "] = "От: ";
$a->strings["Image/photo"] = "Изображение / Фото";
$a->strings["$1 wrote:"] = "$1 написал:";
$a->strings["Encrypted content"] = "";
$a->strings["Click here to upgrade."] = "";
$a->strings["This action exceeds the limits set by your subscription plan."] = "";
$a->strings["This action is not available under your subscription plan."] = "";
$a->strings["(no subject)"] = "(без темы)";
$a->strings["noreply"] = "без ответа";
$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s и %2\$s теперь друзья";
$a->strings["Sharing notification from Diaspora network"] = "Делиться уведомлениями из сети Diaspora";
$a->strings["status"] = "статус";
$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s нравится %3\$s от %2\$s ";
$a->strings["Attachments:"] = "Вложения:";
$a->strings["General Features"] = "";
$a->strings["Multiple Profiles"] = "";
$a->strings["Ability to create multiple profiles"] = "";
$a->strings["Post Composition Features"] = "";
$a->strings["Richtext Editor"] = "";
$a->strings["Enable richtext editor"] = "";
$a->strings["Post Preview"] = "";
$a->strings["Post Preview"] = "предварительный просмотр";
$a->strings["Allow previewing posts and comments before publishing them"] = "";
$a->strings["Network Sidebar Widgets"] = "";
$a->strings["Search by Date"] = "";
$a->strings["Search by Date"] = "Поиск по датам";
$a->strings["Ability to select posts by date ranges"] = "";
$a->strings["Group Filter"] = "";
$a->strings["Enable widget to display Network posts only from selected group"] = "";
$a->strings["Network Filter"] = "";
$a->strings["Network Filter"] = "Фильтр сети";
$a->strings["Enable widget to display Network posts only from selected network"] = "";
$a->strings["Saved Searches"] = "запомненные поиски";
$a->strings["Save search terms for re-use"] = "";
$a->strings["Network Tabs"] = "";
$a->strings["Network Personal Tab"] = "";
@ -1952,12 +359,80 @@ $a->strings["Ability to dislike posts/comments"] = "";
$a->strings["Star Posts"] = "";
$a->strings["Ability to mark special posts with a star indicator"] = "";
$a->strings["Cannot locate DNS info for database server '%s'"] = "Не могу найти информацию для DNS-сервера базы данных '%s'";
$a->strings["[no subject]"] = "[без темы]";
$a->strings["Visible to everybody"] = "Видимо всем";
$a->strings["A deleted group with this name was revived. Existing item permissions <strong>may</strong> apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "";
$a->strings["Default privacy group for new contacts"] = "";
$a->strings["Everybody"] = "Каждый";
$a->strings["edit"] = "редактировать";
$a->strings["Groups"] = "Группы";
$a->strings["Edit group"] = "Редактировать группу";
$a->strings["Create a new group"] = "Создать новую группу";
$a->strings["Contacts not in any group"] = "";
$a->strings["add"] = "добавить";
$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s не нравится %3\$s от %2\$s ";
$a->strings["%1\$s poked %2\$s"] = "";
$a->strings["%1\$s is currently %2\$s"] = "";
$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s tagged %2\$s's %3\$s в %4\$s";
$a->strings["post/item"] = "";
$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "%1\$s пометил %2\$s %3\$s как Фаворит";
$a->strings["Select"] = "Выберите";
$a->strings["Delete"] = "Удалить";
$a->strings["View %s's profile @ %s"] = "Просмотреть профиль %s [@ %s]";
$a->strings["Categories:"] = "Категории:";
$a->strings["Filed under:"] = "В рубрике:";
$a->strings["%s from %s"] = "%s с %s";
$a->strings["View in context"] = "Смотреть в контексте";
$a->strings["Please wait"] = "Пожалуйста, подождите";
$a->strings["remove"] = "удалить";
$a->strings["Delete Selected Items"] = "Удалить выбранные позиции";
$a->strings["Follow Thread"] = "";
$a->strings["%s likes this."] = "%s нравится это.";
$a->strings["%s doesn't like this."] = "%s не нравится это.";
$a->strings["<span %1\$s>%2\$d people</span> like this"] = "";
$a->strings["<span %1\$s>%2\$d people</span> don't like this"] = "";
$a->strings["and"] = "и";
$a->strings[", and %d other people"] = ", и %d других чел.";
$a->strings["%s like this."] = "%s нравится это.";
$a->strings["%s don't like this."] = "%s не нравится это.";
$a->strings["Visible to <strong>everybody</strong>"] = "Видимое <strong>всем</strong>";
$a->strings["Please enter a link URL:"] = "Пожалуйста, введите URL ссылки:";
$a->strings["Please enter a video link/URL:"] = "";
$a->strings["Please enter an audio link/URL:"] = "";
$a->strings["Tag term:"] = "";
$a->strings["Save to Folder:"] = "Сохранить в папку:";
$a->strings["Where are you right now?"] = "И где вы сейчас?";
$a->strings["Delete item(s)?"] = "";
$a->strings["Post to Email"] = "Отправить на Email";
$a->strings["Share"] = "Поделиться";
$a->strings["Upload photo"] = "Загрузить фото";
$a->strings["upload photo"] = "загрузить фото";
$a->strings["Attach file"] = "Приложить файл";
$a->strings["attach file"] = "приложить файл";
$a->strings["Insert web link"] = "Вставить веб-ссылку";
$a->strings["web link"] = "веб-ссылка";
$a->strings["Insert video link"] = "Вставить ссылку видео";
$a->strings["video link"] = "видео-ссылка";
$a->strings["Insert audio link"] = "Вставить ссылку аудио";
$a->strings["audio link"] = "аудио-ссылка";
$a->strings["Set your location"] = "Задать ваше местоположение";
$a->strings["set location"] = "установить местонахождение";
$a->strings["Clear browser location"] = "Очистить местонахождение браузера";
$a->strings["clear location"] = "убрать местонахождение";
$a->strings["Set title"] = "Установить заголовок";
$a->strings["Categories (comma-separated list)"] = "Категории (список через запятую)";
$a->strings["Permission settings"] = "Настройки разрешений";
$a->strings["permissions"] = "разрешения";
$a->strings["CC: email addresses"] = "Копии на email адреса";
$a->strings["Public post"] = "Публичное сообщение";
$a->strings["Example: bob@example.com, mary@example.com"] = "Пример: bob@example.com, mary@example.com";
$a->strings["Preview"] = "предварительный просмотр";
$a->strings["Cancel"] = "Отмена";
$a->strings["Post to Groups"] = "";
$a->strings["Post to Contacts"] = "";
$a->strings["Private post"] = "Личное сообщение";
$a->strings["Friendica Notification"] = "Friendica уведомления";
$a->strings["Thank You,"] = "Спасибо,";
$a->strings["%s Administrator"] = "%s администратор";
$a->strings["%s <!item_type!>"] = "";
$a->strings["%s <!item_type!>"] = "%s <!item_type!>";
$a->strings["[Friendica:Notify] New mail received at %s"] = "";
$a->strings["%1\$s sent you a new private message at %2\$s."] = "";
$a->strings["%1\$s sent you %2\$s."] = "";
@ -1992,75 +467,1157 @@ $a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from
$a->strings["Name:"] = "Имя:";
$a->strings["Photo:"] = "Фото:";
$a->strings["Please visit %s to approve or reject the suggestion."] = "";
$a->strings["Connect URL missing."] = "Connect-URL отсутствует.";
$a->strings["This site is not configured to allow communications with other networks."] = "Данный сайт не настроен так, чтобы держать связь с другими сетями.";
$a->strings["No compatible communication protocols or feeds were discovered."] = "Обнаружены несовместимые протоколы связи или каналы.";
$a->strings["The profile address specified does not provide adequate information."] = "Указанный адрес профиля не дает адекватной информации.";
$a->strings["An author or name was not found."] = "Автор или имя не найдены.";
$a->strings["No browser URL could be matched to this address."] = "Нет URL браузера, который соответствует этому адресу.";
$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "";
$a->strings["Use mailto: in front of address to force email check."] = "";
$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "Указанный адрес профиля принадлежит сети, недоступной на этом сайта.";
$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Ограниченный профиль. Этот человек не сможет получить прямые / личные уведомления от вас.";
$a->strings["Unable to retrieve contact information."] = "Невозможно получить контактную информацию.";
$a->strings["following"] = "следует";
$a->strings["[no subject]"] = "[без темы]";
$a->strings["Wall Photos"] = "Фото стены";
$a->strings["Nothing new here"] = "Ничего нового здесь";
$a->strings["Clear notifications"] = "Стереть уведомления";
$a->strings["Logout"] = "Выход";
$a->strings["End this session"] = "Конец этой сессии";
$a->strings["Status"] = "Статус";
$a->strings["Your posts and conversations"] = "Ваши сообщения и беседы";
$a->strings["Your profile page"] = "Страница Вашего профиля";
$a->strings["Photos"] = "Фото";
$a->strings["Your photos"] = "Ваши фотографии";
$a->strings["Events"] = "Мероприятия";
$a->strings["Your events"] = "Ваши события";
$a->strings["Personal notes"] = "Личные заметки";
$a->strings["Your personal photos"] = "Ваши личные фотографии";
$a->strings["Login"] = "Вход";
$a->strings["Sign in"] = "Вход";
$a->strings["Home"] = "Главная";
$a->strings["Home Page"] = "Главная страница";
$a->strings["Register"] = "Регистрация";
$a->strings["Create an account"] = "Создать аккаунт";
$a->strings["Help"] = "Помощь";
$a->strings["Help and documentation"] = "Помощь и документация";
$a->strings["Apps"] = "Приложения";
$a->strings["Addon applications, utilities, games"] = "Дополнительные приложения, утилиты, игры";
$a->strings["Search site content"] = "Поиск по сайту";
$a->strings["Community"] = "Сообщество";
$a->strings["Conversations on this site"] = "Беседы на этом сайте";
$a->strings["Directory"] = "Каталог";
$a->strings["People directory"] = "Каталог участников";
$a->strings["Network"] = "Сеть";
$a->strings["Conversations from your friends"] = "Беседы с друзьями";
$a->strings["Network Reset"] = "";
$a->strings["Load Network page with no filters"] = "";
$a->strings["Introductions"] = "Запросы";
$a->strings["Friend Requests"] = "Запросы на добавление в список друзей";
$a->strings["Notifications"] = "Уведомления";
$a->strings["See all notifications"] = "Посмотреть все уведомления";
$a->strings["Mark all system notifications seen"] = "";
$a->strings["Messages"] = "Сообщения";
$a->strings["Private mail"] = "Личная почта";
$a->strings["Inbox"] = "Входящие";
$a->strings["Outbox"] = "Исходящие";
$a->strings["New Message"] = "Новое сообщение";
$a->strings["Manage"] = "Управлять";
$a->strings["Manage other pages"] = "Управление другими страницами";
$a->strings["Delegations"] = "";
$a->strings["Delegate Page Management"] = "Делегировать управление страницей";
$a->strings["Settings"] = "Настройки";
$a->strings["Account settings"] = "Настройки аккаунта";
$a->strings["Profiles"] = "Профили";
$a->strings["Manage/Edit Profiles"] = "";
$a->strings["Contacts"] = "Контакты";
$a->strings["Manage/edit friends and contacts"] = "Управление / редактирование друзей и контактов";
$a->strings["Admin"] = "Администратор";
$a->strings["Site setup and configuration"] = "Установка и конфигурация сайта";
$a->strings["Navigation"] = "";
$a->strings["Site map"] = "";
$a->strings["view full size"] = "посмотреть в полный размер";
$a->strings["Embedded content"] = "Встроенное содержание";
$a->strings["Embedding disabled"] = "Встраивание отключено";
$a->strings["[Name Withheld]"] = "[Имя не разглашается]";
$a->strings["A new person is sharing with you at "] = "Новый человек делится с вами";
$a->strings["You have a new follower at "] = "У вас есть новый фолловер на ";
$a->strings["Archives"] = "";
$a->strings["An invitation is required."] = "Требуется приглашение.";
$a->strings["Invitation could not be verified."] = "Приглашение не может быть проверено.";
$a->strings["Invalid OpenID url"] = "Неверный URL OpenID";
$a->strings["Please enter the required information."] = "Пожалуйста, введите необходимую информацию.";
$a->strings["Please use a shorter name."] = "Пожалуйста, используйте более короткое имя.";
$a->strings["Name too short."] = "Имя слишком короткое.";
$a->strings["That doesn't appear to be your full (First Last) name."] = "Кажется, что это ваше неполное (Имя Фамилия) имя.";
$a->strings["Your email domain is not among those allowed on this site."] = "Домен вашего адреса электронной почты не относится к числу разрешенных на этом сайте.";
$a->strings["Not a valid email address."] = "Неверный адрес электронной почты.";
$a->strings["Cannot use that email."] = "Нельзя использовать этот Email.";
$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and must also begin with a letter."] = "Ваш \"ник\" может содержать только \"a-z\", \"0-9\", \"-\", и \"_\", а также должен начинаться с буквы.";
$a->strings["Nickname is already registered. Please choose another."] = "Такой ник уже зарегистрирован. Пожалуйста, выберите другой.";
$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "";
$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "СЕРЬЕЗНАЯ ОШИБКА: генерация ключей безопасности не удалась.";
$a->strings["An error occurred during registration. Please try again."] = "Ошибка при регистрации. Пожалуйста, попробуйте еще раз.";
$a->strings["An error occurred creating your default profile. Please try again."] = "Ошибка создания вашего профиля. Пожалуйста, попробуйте еще раз.";
$a->strings["Item not found."] = "Пункт не найден.";
$a->strings["Do you really want to delete this item?"] = "";
$a->strings["Yes"] = "Да";
$a->strings["Permission denied."] = "Нет разрешения.";
$a->strings["Archives"] = "Архивы";
$a->strings["Welcome "] = "Добро пожаловать, ";
$a->strings["Please upload a profile photo."] = "Пожалуйста, загрузите фотографию профиля.";
$a->strings["Welcome back "] = "Добро пожаловать обратно, ";
$a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "";
$a->strings["stopped following"] = "остановлено следование";
$a->strings["Poke"] = "";
$a->strings["View Status"] = "";
$a->strings["View Profile"] = "";
$a->strings["View Photos"] = "";
$a->strings["Network Posts"] = "";
$a->strings["Edit Contact"] = "";
$a->strings["Send PM"] = "Отправить ЛС";
$a->strings["%1\$s poked %2\$s"] = "";
$a->strings["post/item"] = "";
$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "%1\$s пометил %2\$s %3\$s как Фаворит";
$a->strings["Categories:"] = "";
$a->strings["Filed under:"] = "";
$a->strings["remove"] = "удалить";
$a->strings["Delete Selected Items"] = "Удалить выбранные позиции";
$a->strings["Follow Thread"] = "";
$a->strings["%s likes this."] = "%s нравится это.";
$a->strings["%s doesn't like this."] = "%s не нравится это.";
$a->strings["<span %1\$s>%2\$d people</span> like this."] = "<span %1\$s>%2\$d чел.</span> нравится это.";
$a->strings["<span %1\$s>%2\$d people</span> don't like this."] = "<span %1\$s>%2\$d чел.</span> не нравится это.";
$a->strings["and"] = "и";
$a->strings[", and %d other people"] = ", и %d других чел.";
$a->strings["%s like this."] = "%s нравится это.";
$a->strings["%s don't like this."] = "%s не нравится это.";
$a->strings["Visible to <strong>everybody</strong>"] = "Видимое <strong>всем</strong>";
$a->strings["Please enter a video link/URL:"] = "";
$a->strings["Please enter an audio link/URL:"] = "";
$a->strings["Tag term:"] = "";
$a->strings["Where are you right now?"] = "И где вы сейчас?";
$a->strings["Delete item(s)?"] = "";
$a->strings["permissions"] = "разрешения";
$a->strings["Click here to upgrade."] = "";
$a->strings["This action exceeds the limits set by your subscription plan."] = "";
$a->strings["This action is not available under your subscription plan."] = "";
$a->strings["Profile not found."] = "Профиль не найден.";
$a->strings["Profile deleted."] = "Профиль удален.";
$a->strings["Profile-"] = "Профиль-";
$a->strings["New profile created."] = "Новый профиль создан.";
$a->strings["Profile unavailable to clone."] = "Профиль недоступен для клонирования.";
$a->strings["Profile Name is required."] = "Необходимо имя профиля.";
$a->strings["Marital Status"] = "";
$a->strings["Romantic Partner"] = "";
$a->strings["Likes"] = "";
$a->strings["Dislikes"] = "";
$a->strings["Work/Employment"] = "";
$a->strings["Religion"] = "Религия";
$a->strings["Political Views"] = "";
$a->strings["Gender"] = "Пол";
$a->strings["Sexual Preference"] = "";
$a->strings["Homepage"] = "";
$a->strings["Interests"] = "Хобби / Интересы";
$a->strings["Address"] = "Адрес";
$a->strings["Location"] = "Местонахождение";
$a->strings["Profile updated."] = "Профиль обновлен.";
$a->strings[" and "] = "и";
$a->strings["public profile"] = "публичный профиль";
$a->strings["%1\$s changed %2\$s to &ldquo;%3\$s&rdquo;"] = "";
$a->strings[" - Visit %1\$s's %2\$s"] = " - Посетить профиль %1\$s [%2\$s]";
$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "";
$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Скрывать ваш список контактов / друзей от посетителей этого профиля?";
$a->strings["No"] = "Нет";
$a->strings["Edit Profile Details"] = "Редактировать детали профиля";
$a->strings["Submit"] = "Подтвердить";
$a->strings["Change Profile Photo"] = "";
$a->strings["View this profile"] = "Просмотреть этот профиль";
$a->strings["Create a new profile using these settings"] = "Создать новый профиль, используя эти настройки";
$a->strings["Clone this profile"] = "Клонировать этот профиль";
$a->strings["Delete this profile"] = "Удалить этот профиль";
$a->strings["Profile Name:"] = "Имя профиля:";
$a->strings["Your Full Name:"] = "Ваше полное имя:";
$a->strings["Title/Description:"] = "Заголовок / Описание:";
$a->strings["Your Gender:"] = "Ваш пол:";
$a->strings["Birthday (%s):"] = "День рождения (%s):";
$a->strings["Street Address:"] = "Адрес:";
$a->strings["Locality/City:"] = "Город / Населенный пункт:";
$a->strings["Postal/Zip Code:"] = "Почтовый индекс:";
$a->strings["Country:"] = "Страна:";
$a->strings["Region/State:"] = "Район / Область:";
$a->strings["<span class=\"heart\">&hearts;</span> Marital Status:"] = "<span class=\"heart\">&hearts;</span> Семейное положение:";
$a->strings["Who: (if applicable)"] = "Кто: (если требуется)";
$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Примеры: cathy123, Кэти Уильямс, cathy@example.com";
$a->strings["Since [date]:"] = "";
$a->strings["Homepage URL:"] = "Адрес домашней странички:";
$a->strings["Religious Views:"] = "Религиозные взгляды:";
$a->strings["Public Keywords:"] = "Общественные ключевые слова:";
$a->strings["Private Keywords:"] = "Личные ключевые слова:";
$a->strings["Example: fishing photography software"] = "Пример: рыбалка фотографии программное обеспечение";
$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(Используется для предложения потенциальным друзьям, могут увидеть другие)";
$a->strings["(Used for searching profiles, never shown to others)"] = "(Используется для поиска профилей, никогда не показывается другим)";
$a->strings["Tell us about yourself..."] = "Расскажите нам о себе ...";
$a->strings["Hobbies/Interests"] = "Хобби / Интересы";
$a->strings["Contact information and Social Networks"] = "Контактная информация и социальные сети";
$a->strings["Musical interests"] = "Музыкальные интересы";
$a->strings["Books, literature"] = "Книги, литература";
$a->strings["Television"] = "Телевидение";
$a->strings["Film/dance/culture/entertainment"] = "Кино / танцы / культура / развлечения";
$a->strings["Love/romance"] = "Любовь / романтика";
$a->strings["Work/employment"] = "Работа / занятость";
$a->strings["School/education"] = "Школа / образование";
$a->strings["This is your <strong>public</strong> profile.<br />It <strong>may</strong> be visible to anybody using the internet."] = "Это ваш <strong>публичный</strong> профиль. <br /> Он <strong>может</strong> быть виден каждому, используя Интернет.";
$a->strings["Age: "] = "Возраст: ";
$a->strings["Edit/Manage Profiles"] = "Редактировать профиль";
$a->strings["Change profile photo"] = "Изменить фото профиля";
$a->strings["Create New Profile"] = "Создать новый профиль";
$a->strings["Profile Image"] = "Фото профиля";
$a->strings["visible to everybody"] = "видимый всем";
$a->strings["Edit visibility"] = "Редактировать видимость";
$a->strings["Permission denied"] = "Доступ запрещен";
$a->strings["Invalid profile identifier."] = "Недопустимый идентификатор профиля.";
$a->strings["Profile Visibility Editor"] = "Редактор видимости профиля";
$a->strings["Click on a contact to add or remove."] = "Нажмите на контакт, чтобы добавить или удалить.";
$a->strings["Visible To"] = "Видимый для";
$a->strings["All Contacts (with secure profile access)"] = "Все контакты (с безопасным доступом к профилю)";
$a->strings["Personal Notes"] = "Личные заметки";
$a->strings["Visit %s's profile [%s]"] = "Посетить профиль %s [%s]";
$a->strings["Edit contact"] = "Редактировать контакт";
$a->strings["Contacts who are not members of a group"] = "Контакты, которые не являются членами группы";
$a->strings["{0} wants to be your friend"] = "{0} хочет стать Вашим другом";
$a->strings["{0} sent you a message"] = "{0} отправил Вам сообщение";
$a->strings["{0} requested registration"] = "{0} требуемая регистрация";
$a->strings["{0} commented %s's post"] = "{0} прокомментировал сообщение от %s";
$a->strings["{0} liked %s's post"] = "{0} нравится сообщение от %s";
$a->strings["{0} disliked %s's post"] = "{0} не нравится сообщение от %s";
$a->strings["{0} is now friends with %s"] = "{0} теперь друзья с %s";
$a->strings["{0} posted"] = "{0} опубликовано";
$a->strings["{0} tagged %s's post with #%s"] = "{0} пометил сообщение %s с #%s";
$a->strings["{0} mentioned you in a post"] = "{0} упоменул Вас в сообщение";
$a->strings["Unable to locate original post."] = "Не удалось найти оригинальный пост.";
$a->strings["Empty post discarded."] = "Пустое сообщение отбрасывается.";
$a->strings["System error. Post not saved."] = "Системная ошибка. Сообщение не сохранено.";
$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "";
$a->strings["You may visit them online at %s"] = "Вы можете посетить их в онлайне на %s";
$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Пожалуйста, свяжитесь с отправителем, ответив на это сообщение, если вы не хотите получать эти сообщения.";
$a->strings["%s posted an update."] = "%s отправил/а/ обновление.";
$a->strings["Friends of %s"] = "%s Друзья";
$a->strings["No friends to display."] = "Нет друзей.";
$a->strings["Remove term"] = "Удалить элемент";
$a->strings["Public access denied."] = "Свободный доступ закрыт.";
$a->strings["No results."] = "Нет результатов.";
$a->strings["Authorize application connection"] = "Разрешить связь с приложением";
$a->strings["Return to your app and insert this Securty Code:"] = "Вернитесь в ваше приложение и задайте этот код:";
$a->strings["Please login to continue."] = "Пожалуйста, войдите для продолжения.";
$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Вы действительно хотите разрешить этому приложению доступ к своим постам и контактам, а также создавать новые записи от вашего имени?";
$a->strings["Registration details for %s"] = "Подробности регистрации для %s";
$a->strings["Registration successful. Please check your email for further instructions."] = "Регистрация успешна. Пожалуйста, проверьте свою электронную почту для получения дальнейших инструкций.";
$a->strings["Failed to send email message. Here is the message that failed."] = "Невозможно отправить сообщение электронной почтой. Вот сообщение, которое не удалось.";
$a->strings["Your registration can not be processed."] = "Ваша регистрация не может быть обработана.";
$a->strings["Registration request at %s"] = "Запрос на регистрацию на %s";
$a->strings["Your registration is pending approval by the site owner."] = "Ваша регистрация в ожидании одобрения владельцем сайта.";
$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Этот сайт превысил допустимое количество ежедневных регистраций. Пожалуйста, повторите попытку завтра.";
$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Вы можете (по желанию), заполнить эту форму с помощью OpenID, поддерживая ваш OpenID и нажав клавишу \"Регистрация\".";
$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Если вы не знакомы с OpenID, пожалуйста, оставьте это поле пустым и заполните остальные элементы.";
$a->strings["Your OpenID (optional): "] = "Ваш OpenID (необязательно):";
$a->strings["Include your profile in member directory?"] = "Включить ваш профиль в каталог участников?";
$a->strings["Membership on this site is by invitation only."] = "Членство на сайте только по приглашению.";
$a->strings["Your invitation ID: "] = "ID вашего приглашения:";
$a->strings["Registration"] = "Регистрация";
$a->strings["Your Full Name (e.g. Joe Smith): "] = "Ваше полное имя (например, Joe Smith): ";
$a->strings["Your Email Address: "] = "Ваш адрес электронной почты: ";
$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be '<strong>nickname@\$sitename</strong>'."] = "Выбор псевдонима профиля. Он должен начинаться с буквы. Адрес вашего профиля на данном сайте будет в этом случае '<strong>nickname@\$sitename</strong>'.";
$a->strings["Choose a nickname: "] = "Выберите псевдоним: ";
$a->strings["Account approved."] = "Аккаунт утвержден.";
$a->strings["Registration revoked for %s"] = "Регистрация отменена для %s";
$a->strings["Please login."] = "Пожалуйста, войдите с паролем.";
$a->strings["Item not available."] = "Пункт не доступен.";
$a->strings["Item was not found."] = "Пункт не был найден.";
$a->strings["Remove My Account"] = "Удалить мой аккаунт";
$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Это позволит полностью удалить ваш аккаунт. Как только это будет сделано, аккаунт восстановлению не подлежит.";
$a->strings["Please enter your password for verification:"] = "Пожалуйста, введите свой пароль для проверки:";
$a->strings["Source (bbcode) text:"] = "";
$a->strings["Source (Diaspora) text to convert to BBcode:"] = "";
$a->strings["Source input: "] = "";
$a->strings["bb2html (raw HTML): "] = "bb2html (raw HTML): ";
$a->strings["bb2html: "] = "bb2html: ";
$a->strings["bb2html2bb: "] = "bb2html2bb: ";
$a->strings["bb2md: "] = "bb2md: ";
$a->strings["bb2md2html: "] = "bb2md2html: ";
$a->strings["bb2dia2bb: "] = "bb2dia2bb: ";
$a->strings["bb2md2html2bb: "] = "bb2md2html2bb: ";
$a->strings["Source input (Diaspora format): "] = "";
$a->strings["diaspora2bb: "] = "diaspora2bb: ";
$a->strings["Common Friends"] = "Общие друзья";
$a->strings["No contacts in common."] = "";
$a->strings["You must be logged in to use addons. "] = "";
$a->strings["Applications"] = "Приложения";
$a->strings["No installed applications."] = "Нет установленных приложений.";
$a->strings["Could not access contact record."] = "Не удалось получить доступ к записи контакта.";
$a->strings["Could not locate selected profile."] = "Не удалось найти выбранный профиль.";
$a->strings["Contact updated."] = "Контакт обновлен.";
$a->strings["Failed to update contact record."] = "Не удалось обновить запись контакта.";
$a->strings["Contact has been blocked"] = "Контакт заблокирован";
$a->strings["Contact has been unblocked"] = "Контакт разблокирован";
$a->strings["Contact has been ignored"] = "Контакт проигнорирован";
$a->strings["Contact has been unignored"] = "У контакта отменено игнорирование";
$a->strings["Contact has been archived"] = "Контакт заархивирован";
$a->strings["Contact has been unarchived"] = "Контакт разархивирован";
$a->strings["Do you really want to delete this contact?"] = "";
$a->strings["Contact has been removed."] = "Контакт удален.";
$a->strings["You are mutual friends with %s"] = "У Вас взаимная дружба с %s";
$a->strings["You are sharing with %s"] = "Вы делитесь с %s";
$a->strings["%s is sharing with you"] = "%s делитса с Вами";
$a->strings["Private communications are not available for this contact."] = "Личные коммуникации недоступны для этого контакта.";
$a->strings["Never"] = "Никогда";
$a->strings["(Update was successful)"] = "(Обновление было успешно)";
$a->strings["(Update was not successful)"] = "(Обновление не удалось)";
$a->strings["Suggest friends"] = "Предложить друзей";
$a->strings["Network type: %s"] = "Сеть: %s";
$a->strings["View all contacts"] = "Показать все контакты";
$a->strings["Unblock"] = "Разблокировать";
$a->strings["Block"] = "Заблокировать";
$a->strings["Toggle Blocked status"] = "Изменить статус блокированности (заблокировать/разблокировать)";
$a->strings["Unignore"] = "Не игнорировать";
$a->strings["Ignore"] = "Игнорировать";
$a->strings["Toggle Ignored status"] = "Изменить статус игнорирования";
$a->strings["Unarchive"] = "Разархивировать";
$a->strings["Archive"] = "Архивировать";
$a->strings["Toggle Archive status"] = "Сменить статус архивации (архивирова/не архивировать)";
$a->strings["Repair"] = "Восстановить";
$a->strings["Advanced Contact Settings"] = "Дополнительные Настройки Контакта";
$a->strings["Communications lost with this contact!"] = "Связь с контактом утеряна!";
$a->strings["Contact Editor"] = "Редактор контакта";
$a->strings["Profile Visibility"] = "Видимость профиля";
$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Пожалуйста, выберите профиль, который вы хотите отображать %s, когда просмотр вашего профиля безопасен.";
$a->strings["Contact Information / Notes"] = "Информация о контакте / Заметки";
$a->strings["Edit contact notes"] = "Редактировать заметки контакта";
$a->strings["Block/Unblock contact"] = "Блокировать / Разблокировать контакт";
$a->strings["Ignore contact"] = "Игнорировать контакт";
$a->strings["Repair URL settings"] = "Восстановить настройки URL";
$a->strings["View conversations"] = "Просмотр бесед";
$a->strings["Delete contact"] = "Удалить контакт";
$a->strings["Last update:"] = "Последнее обновление: ";
$a->strings["Update public posts"] = "Обновить публичные сообщения";
$a->strings["Update now"] = "Обновить сейчас";
$a->strings["Currently blocked"] = "В настоящее время заблокирован";
$a->strings["Currently ignored"] = "В настоящее время игнорируется";
$a->strings["Currently archived"] = "В данный момент архивирован";
$a->strings["Hide this contact from others"] = "Скрыть этот контакт от других";
$a->strings["Replies/likes to your public posts <strong>may</strong> still be visible"] = "";
$a->strings["Suggestions"] = "Предложения";
$a->strings["Suggest potential friends"] = "Предложить потенциального знакомого";
$a->strings["All Contacts"] = "Все контакты";
$a->strings["Show all contacts"] = "Показать все контакты";
$a->strings["Unblocked"] = "Не блокирован";
$a->strings["Only show unblocked contacts"] = "Показать только не блокированные контакты";
$a->strings["Blocked"] = "Заблокирован";
$a->strings["Only show blocked contacts"] = "Показать только блокированные контакты";
$a->strings["Ignored"] = "Игнорирован";
$a->strings["Only show ignored contacts"] = "Показать только игнорируемые контакты";
$a->strings["Archived"] = "Архивированные";
$a->strings["Only show archived contacts"] = "";
$a->strings["Hidden"] = "Скрытые";
$a->strings["Only show hidden contacts"] = "";
$a->strings["Mutual Friendship"] = "Взаимная дружба";
$a->strings["is a fan of yours"] = "является вашим поклонником";
$a->strings["you are a fan of"] = "Вы - поклонник";
$a->strings["Search your contacts"] = "Поиск ваших контактов";
$a->strings["Finding: "] = "Результат поиска: ";
$a->strings["everybody"] = "каждый";
$a->strings["Additional features"] = "";
$a->strings["Display settings"] = "Параметры дисплея";
$a->strings["Connector settings"] = "Настройки соединителя";
$a->strings["Plugin settings"] = "Настройки плагина";
$a->strings["Connected apps"] = "";
$a->strings["Export personal data"] = "Экспорт личных данных";
$a->strings["Remove account"] = "Удалить аккаунт";
$a->strings["Missing some important data!"] = "Не хватает важных данных!";
$a->strings["Update"] = "Обновление";
$a->strings["Failed to connect with email account using the settings provided."] = "Не удалось подключиться к аккаунту e-mail, используя указанные настройки.";
$a->strings["Email settings updated."] = "Настройки эл. почты обновлены.";
$a->strings["Features updated"] = "Настройки обновлены";
$a->strings["Passwords do not match. Password unchanged."] = "Пароли не совпадают. Пароль не изменен.";
$a->strings["Empty passwords are not allowed. Password unchanged."] = "Пустые пароли не допускаются. Пароль не изменен.";
$a->strings["Password changed."] = "Пароль изменен.";
$a->strings["Password update failed. Please try again."] = "Обновление пароля не удалось. Пожалуйста, попробуйте еще раз.";
$a->strings[" Please use a shorter name."] = " Пожалуйста, используйте более короткое имя.";
$a->strings[" Name too short."] = " Имя слишком короткое.";
$a->strings[" Not valid email."] = " Неверный e-mail.";
$a->strings[" Cannot change to that email."] = " Невозможно изменить на этот e-mail.";
$a->strings["Private forum has no privacy permissions. Using default privacy group."] = "";
$a->strings["Private forum has no privacy permissions and no default privacy group."] = "";
$a->strings["Settings updated."] = "Настройки обновлены.";
$a->strings["Add application"] = "Добавить приложения";
$a->strings["Name"] = "Имя";
$a->strings["Consumer Key"] = "Consumer Key";
$a->strings["Consumer Secret"] = "Consumer Secret";
$a->strings["Redirect"] = "Перенаправление";
$a->strings["Icon url"] = "URL символа";
$a->strings["You can't edit this application."] = "Вы не можете изменить это приложение.";
$a->strings["Connected Apps"] = "Подключенные приложения";
$a->strings["Edit"] = "Редактировать";
$a->strings["Client key starts with"] = "Ключ клиента начинается с";
$a->strings["No name"] = "Нет имени";
$a->strings["Remove authorization"] = "Удалить авторизацию";
$a->strings["No Plugin settings configured"] = "Нет сконфигурированных настроек плагина";
$a->strings["Plugin Settings"] = "Настройки плагина";
$a->strings["Off"] = "";
$a->strings["On"] = "";
$a->strings["Additional Features"] = "";
$a->strings["Built-in support for %s connectivity is %s"] = "Встроенная поддержка для %s подключение %s";
$a->strings["enabled"] = "подключено";
$a->strings["disabled"] = "отключено";
$a->strings["StatusNet"] = "StatusNet";
$a->strings["Email access is disabled on this site."] = "Доступ эл. почты отключен на этом сайте.";
$a->strings["Connector Settings"] = "Настройки соединителя";
$a->strings["Email/Mailbox Setup"] = "Настройка эл. почты / почтового ящика";
$a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "Если вы хотите общаться с Email контактами, используя этот сервис (по желанию), пожалуйста, уточните, как подключиться к вашему почтовому ящику.";
$a->strings["Last successful email check:"] = "Последняя успешная проверка электронной почты:";
$a->strings["IMAP server name:"] = "Имя IMAP сервера:";
$a->strings["IMAP port:"] = "Порт IMAP:";
$a->strings["Security:"] = "Безопасность:";
$a->strings["None"] = "Ничего";
$a->strings["Email login name:"] = "Логин эл. почты:";
$a->strings["Email password:"] = "Пароль эл. почты:";
$a->strings["Reply-to address:"] = "Адрес для ответа:";
$a->strings["Send public posts to all email contacts:"] = "Отправлять открытые сообщения на все контакты электронной почты:";
$a->strings["Action after import:"] = "Действие после импорта:";
$a->strings["Mark as seen"] = "";
$a->strings["Move to folder"] = "";
$a->strings["Move to folder:"] = "";
$a->strings["No special theme for mobile devices"] = "";
$a->strings["Display Settings"] = "Параметры дисплея";
$a->strings["Display Theme:"] = "Показать тему:";
$a->strings["Mobile Theme:"] = "";
$a->strings["Update browser every xx seconds"] = "Обновление браузера каждые хх секунд";
$a->strings["Minimum of 10 seconds, no maximum"] = "Минимум 10 секунд, максимума нет";
$a->strings["Number of items to display per page:"] = "";
$a->strings["Maximum of 100 items"] = "";
$a->strings["Don't show emoticons"] = "не показывать emoticons";
$a->strings["Normal Account Page"] = "";
$a->strings["This account is a normal personal profile"] = "Этот аккаунт является обычным персональным профилем";
$a->strings["Soapbox Page"] = "";
$a->strings["Automatically approve all connection/friend requests as read-only fans"] = "Автоматически одобряются все подключения / запросы в друзья, \"только для чтения\" поклонниками";
$a->strings["Community Forum/Celebrity Account"] = "";
$a->strings["Automatically approve all connection/friend requests as read-write fans"] = "Автоматически одобряются все подключения / запросы в друзья, \"для чтения и записей\" поклонников";
$a->strings["Automatic Friend Page"] = "";
$a->strings["Automatically approve all connection/friend requests as friends"] = "Автоматически одобряются все подключения / запросы в друзья, расширяется список друзей";
$a->strings["Private Forum [Experimental]"] = "Личный форум [экспериментально]";
$a->strings["Private forum - approved members only"] = "";
$a->strings["OpenID:"] = "OpenID:";
$a->strings["(Optional) Allow this OpenID to login to this account."] = "(Необязательно) Разрешить этому OpenID входить в этот аккаунт";
$a->strings["Publish your default profile in your local site directory?"] = "Публиковать ваш профиль по умолчанию в вашем локальном каталоге на сайте?";
$a->strings["Publish your default profile in the global social directory?"] = "Публиковать ваш профиль по умолчанию в глобальном социальном каталоге?";
$a->strings["Hide your contact/friend list from viewers of your default profile?"] = "Скрывать ваш список контактов/друзей от посетителей вашего профиля по умолчанию?";
$a->strings["Hide your profile details from unknown viewers?"] = "Скрыть данные профиля из неизвестных зрителей?";
$a->strings["Allow friends to post to your profile page?"] = "Разрешить друзьям оставлять сообщения на страницу вашего профиля?";
$a->strings["Allow friends to tag your posts?"] = "Разрешить друзьям отмечять ваши сообщения?";
$a->strings["Allow us to suggest you as a potential friend to new members?"] = "Позвольть предлогать Вам потенциальных друзей?";
$a->strings["Permit unknown people to send you private mail?"] = "";
$a->strings["Profile is <strong>not published</strong>."] = "Профиль <strong>не публикуется</strong>.";
$a->strings["or"] = "или";
$a->strings["Your Identity Address is"] = "Ваш идентификационный адрес";
$a->strings["Automatically expire posts after this many days:"] = "Автоматическое истекание срока действия сообщения после стольких дней:";
$a->strings["If empty, posts will not expire. Expired posts will be deleted"] = "Если пусто, срок действия сообщений не будет ограничен. Сообщения с истекшим сроком действия будут удалены";
$a->strings["Advanced expiration settings"] = "Настройки расширенного окончания срока действия";
$a->strings["Advanced Expiration"] = "Расширенное окончание срока действия";
$a->strings["Expire posts:"] = "Срок хранения сообщений:";
$a->strings["Expire personal notes:"] = "Срок хранения личных заметок:";
$a->strings["Expire starred posts:"] = "Срок хранения усеянных сообщений:";
$a->strings["Expire photos:"] = "Срок хранения фотографий:";
$a->strings["Only expire posts by others:"] = "";
$a->strings["Account Settings"] = "Настройки аккаунта";
$a->strings["Password Settings"] = "Настройка пароля";
$a->strings["New Password:"] = "Новый пароль:";
$a->strings["Confirm:"] = "Подтвердите:";
$a->strings["Leave password fields blank unless changing"] = "Оставьте поля пароля пустыми, если он не изменяется";
$a->strings["Basic Settings"] = "Основные параметры";
$a->strings["Email Address:"] = "Адрес электронной почты:";
$a->strings["Your Timezone:"] = "Ваш часовой пояс:";
$a->strings["Default Post Location:"] = "Местонахождение по умолчанию:";
$a->strings["Use Browser Location:"] = "Использовать определение местоположения браузером:";
$a->strings["Security and Privacy Settings"] = "Параметры безопасности и конфиденциальности";
$a->strings["Maximum Friend Requests/Day:"] = "Максимум запросов в друзья в день:";
$a->strings["(to prevent spam abuse)"] = "(для предотвращения спама)";
$a->strings["Default Post Permissions"] = "Разрешение на сообщения по умолчанию";
$a->strings["(click to open/close)"] = "(нажмите, чтобы открыть / закрыть)";
$a->strings["Show to Groups"] = "Показать в группах";
$a->strings["Show to Contacts"] = "";
$a->strings["Default Private Post"] = "";
$a->strings["Default Public Post"] = "";
$a->strings["Default Permissions for New Posts"] = "";
$a->strings["Maximum private messages per day from unknown people:"] = "";
$a->strings["Notification Settings"] = "Настройка уведомлений";
$a->strings["By default post a status message when:"] = "";
$a->strings["accepting a friend request"] = "";
$a->strings["joining a forum/community"] = "";
$a->strings["making an <em>interesting</em> profile change"] = "";
$a->strings["Send a notification email when:"] = "Отправлять уведомление по электронной почте, когда:";
$a->strings["You receive an introduction"] = "Вы получили запрос";
$a->strings["Your introductions are confirmed"] = "Ваши запросы подтверждены";
$a->strings["Someone writes on your profile wall"] = "Кто-то пишет на стене вашего профиля";
$a->strings["Someone writes a followup comment"] = "Кто-то пишет последующий комментарий";
$a->strings["You receive a private message"] = "Вы получаете личное сообщение";
$a->strings["You receive a friend suggestion"] = "";
$a->strings["You are tagged in a post"] = "";
$a->strings["You are poked/prodded/etc. in a post"] = "";
$a->strings["Advanced Account/Page Type Settings"] = "";
$a->strings["Change the behaviour of this account for special situations"] = "";
$a->strings["link"] = "";
$a->strings["Contact settings applied."] = "Установки контакта приняты.";
$a->strings["Contact update failed."] = "Обновление контакта неудачное.";
$a->strings["Contact not found."] = "Контакт не найден.";
$a->strings["Repair Contact Settings"] = "Восстановить установки контакта";
$a->strings["<strong>WARNING: This is highly advanced</strong> and if you enter incorrect information your communications with this contact may stop working."] = "<strong>ВНИМАНИЕ: Это крайне важно!</strong> Если вы введете неверную информацию, ваша связь с этим контактом перестанет работать.";
$a->strings["Please use your browser 'Back' button <strong>now</strong> if you are uncertain what to do on this page."] = "Пожалуйста, нажмите клавишу вашего браузера 'Back' или 'Назад' <strong>сейчас</strong>, если вы не уверены, что делаете на этой странице.";
$a->strings["Return to contact editor"] = "";
$a->strings["Account Nickname"] = "Ник аккаунта";
$a->strings["@Tagname - overrides Name/Nickname"] = "";
$a->strings["Account URL"] = "URL аккаунта";
$a->strings["Friend Request URL"] = "URL запроса в друзья";
$a->strings["Friend Confirm URL"] = "URL подтверждения друга";
$a->strings["Notification Endpoint URL"] = "URL эндпоинта уведомления";
$a->strings["Poll/Feed URL"] = "URL опроса/ленты";
$a->strings["New photo from this URL"] = "Новое фото из этой URL";
$a->strings["No potential page delegates located."] = "";
$a->strings["Delegates are able to manage all aspects of this account/page except for basic account settings. Please do not delegate your personal account to anybody that you do not trust completely."] = "";
$a->strings["Existing Page Managers"] = "Существующие менеджеры страницы";
$a->strings["Existing Page Delegates"] = "Существующие уполномоченные страницы";
$a->strings["Potential Delegates"] = "";
$a->strings["Remove"] = "Удалить";
$a->strings["Add"] = "Добавить";
$a->strings["No entries."] = "Нет записей.";
$a->strings["Poke/Prod"] = "";
$a->strings["poke, prod or do other things to somebody"] = "";
$a->strings["Recipient"] = "";
$a->strings["Choose what you wish to do to recipient"] = "";
$a->strings["Make this post private"] = "";
$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "";
$a->strings["Response from remote site was not understood."] = "Ответ от удаленного сайта не был понят.";
$a->strings["Unexpected response from remote site: "] = "Неожиданный ответ от удаленного сайта: ";
$a->strings["Confirmation completed successfully."] = "Подтверждение успешно завершено.";
$a->strings["Remote site reported: "] = "Удаленный сайт сообщил: ";
$a->strings["Temporary failure. Please wait and try again."] = "Временные неудачи. Подождите и попробуйте еще раз.";
$a->strings["Introduction failed or was revoked."] = "Запрос ошибочен или был отозван.";
$a->strings["Unable to set contact photo."] = "Не удается установить фото контакта.";
$a->strings["No user record found for '%s' "] = "Не найдено записи пользователя для '%s' ";
$a->strings["Our site encryption key is apparently messed up."] = "Наш ключ шифрования сайта, по-видимому, перепутался.";
$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "Был предоставлен пустой URL сайта ​​или URL не может быть расшифрован нами.";
$a->strings["Contact record was not found for you on our site."] = "Запись контакта не найдена для вас на нашем сайте.";
$a->strings["Site public key not available in contact record for URL %s."] = "Публичный ключ недоступен в записи о контакте по ссылке %s";
$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "ID, предложенный вашей системой, является дубликатом в нашей системе. Он должен работать, если вы повторите попытку.";
$a->strings["Unable to set your contact credentials on our system."] = "Не удалось установить ваши учетные данные контакта в нашей системе.";
$a->strings["Unable to update your contact profile details on our system"] = "Не удается обновить ваши контактные детали профиля в нашей системе";
$a->strings["Connection accepted at %s"] = "Подключение принято в %s";
$a->strings["%1\$s has joined %2\$s"] = "%1\$s присоединился %2\$s";
$a->strings["%1\$s welcomes %2\$s"] = "";
$a->strings["This introduction has already been accepted."] = "Этот запрос был уже принят.";
$a->strings["Profile location is not valid or does not contain profile information."] = "Местоположение профиля является недопустимым или не содержит информацию о профиле.";
$a->strings["Warning: profile location has no identifiable owner name."] = "Внимание: местоположение профиля не имеет идентифицируемого имени владельца.";
$a->strings["Warning: profile location has no profile photo."] = "Внимание: местоположение профиля не имеет еще фотографии профиля.";
$a->strings["%d required parameter was not found at the given location"] = array(
0 => "%d требуемый параметр не был найден в заданном месте",
1 => "%d требуемых параметров не были найдены в заданном месте",
2 => "%d требуемых параметров не были найдены в заданном месте",
);
$a->strings["Introduction complete."] = "Запрос создан.";
$a->strings["Unrecoverable protocol error."] = "Неисправимая ошибка протокола.";
$a->strings["Profile unavailable."] = "Профиль недоступен.";
$a->strings["%s has received too many connection requests today."] = "К %s пришло сегодня слишком много запросов на подключение.";
$a->strings["Spam protection measures have been invoked."] = "Были применены меры защиты от спама.";
$a->strings["Friends are advised to please try again in 24 hours."] = "Друзья советуют попробовать еще раз в ближайшие 24 часа.";
$a->strings["Invalid locator"] = "Недопустимый локатор";
$a->strings["Invalid email address."] = "Неверный адрес электронной почты.";
$a->strings["This account has not been configured for email. Request failed."] = "Этот аккаунт не настроен для электронной почты. Запрос не удался.";
$a->strings["Unable to resolve your name at the provided location."] = "Не удается установить ваше имя на предложенном местоположении.";
$a->strings["You have already introduced yourself here."] = "Вы уже ввели информацию о себе здесь.";
$a->strings["Apparently you are already friends with %s."] = "Похоже, что вы уже друзья с %s.";
$a->strings["Invalid profile URL."] = "Неверный URL профиля.";
$a->strings["Your introduction has been sent."] = "Ваш запрос отправлен.";
$a->strings["Please login to confirm introduction."] = "Для подтверждения запроса войдите пожалуйста с паролем.";
$a->strings["Incorrect identity currently logged in. Please login to <strong>this</strong> profile."] = "Неверно идентифицирован вход. Пожалуйста, войдите в <strong>этот</strong> профиль.";
$a->strings["Hide this contact"] = "Скрыть этот контакт";
$a->strings["Welcome home %s."] = "Добро пожаловать домой, %s!";
$a->strings["Please confirm your introduction/connection request to %s."] = "Пожалуйста, подтвердите краткую информацию / запрос на подключение к %s.";
$a->strings["Confirm"] = "Подтвердить";
$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Пожалуйста, введите ваш 'идентификационный адрес' одной из следующих поддерживаемых социальных сетей:";
$a->strings["<strike>Connect as an email follower</strike> (Coming soon)"] = "<strike>Соединитесь как email последователь</strike> (скоро)";
$a->strings["If you are not yet a member of the free social web, <a href=\"http://dir.friendica.com/siteinfo\">follow this link to find a public Friendica site and join us today</a>."] = "";
$a->strings["Friend/Connection Request"] = "Запрос в друзья / на подключение";
$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Примеры: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca";
$a->strings["Please answer the following:"] = "Пожалуйста, ответьте следующее:";
$a->strings["Does %s know you?"] = "%s знает вас?";
$a->strings["Add a personal note:"] = "Добавить личную заметку:";
$a->strings["StatusNet/Federated Social Web"] = "StatusNet / Federated Social Web";
$a->strings[" - please do not use this form. Instead, enter %s into your Diaspora search bar."] = "";
$a->strings["Your Identity Address:"] = "Ваш идентификационный адрес:";
$a->strings["Submit Request"] = "Отправить запрос";
$a->strings["%1\$s is following %2\$s's %3\$s"] = "";
$a->strings["Global Directory"] = "Глобальный каталог";
$a->strings["Find on this site"] = "Найти на этом сайте";
$a->strings["Site Directory"] = "Каталог сайта";
$a->strings["Gender: "] = "Пол: ";
$a->strings["No entries (some entries may be hidden)."] = "Нет записей (некоторые записи могут быть скрыты).";
$a->strings["Do you really want to delete this suggestion?"] = "";
$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "";
$a->strings["Ignore/Hide"] = "Проигнорировать/Скрыть";
$a->strings["People Search"] = "Поиск людей";
$a->strings["No matches"] = "Нет соответствий";
$a->strings["Theme settings updated."] = "";
$a->strings["Site"] = "Сайт";
$a->strings["Users"] = "Пользователи";
$a->strings["Plugins"] = "Плагины";
$a->strings["Themes"] = "";
$a->strings["DB updates"] = "";
$a->strings["Logs"] = "Журналы";
$a->strings["Plugin Features"] = "";
$a->strings["User registrations waiting for confirmation"] = "Регистрации пользователей, ожидающие подтверждения";
$a->strings["Normal Account"] = "Обычный аккаунт";
$a->strings["Soapbox Account"] = "Аккаунт Витрина";
$a->strings["Community/Celebrity Account"] = "Аккаунт Сообщество / Знаменитость";
$a->strings["Automatic Friend Account"] = "\"Автоматический друг\" Аккаунт";
$a->strings["Blog Account"] = "";
$a->strings["Private Forum"] = "Личный форум";
$a->strings["Message queues"] = "Очереди сообщений";
$a->strings["Administration"] = "Администрация";
$a->strings["Summary"] = "Резюме";
$a->strings["Registered users"] = "Зарегистрированные пользователи";
$a->strings["Pending registrations"] = "Ожидающие регистрации";
$a->strings["Version"] = "Версия";
$a->strings["Active plugins"] = "Активные плагины";
$a->strings["Site settings updated."] = "Установки сайта обновлены.";
$a->strings["Multi user instance"] = "";
$a->strings["Closed"] = "Закрыто";
$a->strings["Requires approval"] = "Требуется подтверждение";
$a->strings["Open"] = "Открыто";
$a->strings["No SSL policy, links will track page SSL state"] = "";
$a->strings["Force all links to use SSL"] = "Заставить все ссылки использовать SSL";
$a->strings["Self-signed certificate, use SSL for local links only (discouraged)"] = "";
$a->strings["File upload"] = "Загрузка файлов";
$a->strings["Policies"] = "Политики";
$a->strings["Advanced"] = "Расширенный";
$a->strings["Performance"] = "Производительность";
$a->strings["Site name"] = "Название сайта";
$a->strings["Banner/Logo"] = "Баннер/Логотип";
$a->strings["System language"] = "Системный язык";
$a->strings["System theme"] = "Системная тема";
$a->strings["Default system theme - may be over-ridden by user profiles - <a href='#' id='cnftheme'>change theme settings</a>"] = "";
$a->strings["Mobile system theme"] = "Мобильная тема системы";
$a->strings["Theme for mobile devices"] = "Тема для мобильных устройств";
$a->strings["SSL link policy"] = "Политика SSL";
$a->strings["Determines whether generated links should be forced to use SSL"] = "Ссылки должны быть вынуждены использовать SSL";
$a->strings["'Share' element"] = "'Share' элемент";
$a->strings["Activates the bbcode element 'share' for repeating items."] = "";
$a->strings["Hide help entry from navigation menu"] = "Скрыть пункт \"помощь\" в меню навигации";
$a->strings["Hides the menu entry for the Help pages from the navigation menu. You can still access it calling /help directly."] = "";
$a->strings["Single user instance"] = "Однопользовательский режим";
$a->strings["Make this instance multi-user or single-user for the named user"] = "";
$a->strings["Maximum image size"] = "Максимальный размер изображения";
$a->strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "";
$a->strings["Maximum image length"] = "Максимальная длина картинки";
$a->strings["Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits."] = "";
$a->strings["JPEG image quality"] = "Качество JPEG изображения";
$a->strings["Uploaded JPEGS will be saved at this quality setting [0-100]. Default is 100, which is full quality."] = "";
$a->strings["Register policy"] = "Политика регистрация";
$a->strings["Maximum Daily Registrations"] = "Максимальное число регистраций в день";
$a->strings["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."] = "";
$a->strings["Register text"] = "Текст регистрации";
$a->strings["Will be displayed prominently on the registration page."] = "Будет находиться на видном месте на странице регистрации.";
$a->strings["Accounts abandoned after x days"] = "Аккаунт считается после x дней не воспользованным";
$a->strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Не будет тратить ресурсы для опроса сайтов для бесхозных контактов. Введите 0 для отключения лимита времени.";
$a->strings["Allowed friend domains"] = "Разрешенные домены друзей";
$a->strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "";
$a->strings["Allowed email domains"] = "Разрешенные почтовые домены";
$a->strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "";
$a->strings["Block public"] = "Блокировать общественный доступ";
$a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = "";
$a->strings["Force publish"] = "Принудительная публикация";
$a->strings["Check to force all profiles on this site to be listed in the site directory."] = "";
$a->strings["Global directory update URL"] = "URL обновления глобального каталога";
$a->strings["URL to update the global directory. If this is not set, the global directory is completely unavailable to the application."] = "";
$a->strings["Allow threaded items"] = "";
$a->strings["Allow infinite level threading for items on this site."] = "";
$a->strings["Private posts by default for new users"] = "Частные сообщения по умолчанию для новых пользователей";
$a->strings["Set default post permissions for all new members to the default privacy group rather than public."] = "";
$a->strings["Don't include post content in email notifications"] = "";
$a->strings["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."] = "";
$a->strings["Disallow public access to addons listed in the apps menu."] = "";
$a->strings["Checking this box will restrict addons listed in the apps menu to members only."] = "";
$a->strings["Don't embed private images in posts"] = "";
$a->strings["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."] = "";
$a->strings["Block multiple registrations"] = "Блокировать множественные регистрации";
$a->strings["Disallow users to register additional accounts for use as pages."] = "Запретить пользователям регистрировать дополнительные аккаунты для использования в качестве страниц.";
$a->strings["OpenID support"] = "Поддержка OpenID";
$a->strings["OpenID support for registration and logins."] = "OpenID поддержка для регистрации и входа в систему.";
$a->strings["Fullname check"] = "Проверка полного имени";
$a->strings["Force users to register with a space between firstname and lastname in Full name, as an antispam measure"] = "";
$a->strings["UTF-8 Regular expressions"] = "UTF-8 регулярные выражения";
$a->strings["Use PHP UTF8 regular expressions"] = "Используйте PHP UTF-8 для регулярных выражений";
$a->strings["Show Community Page"] = "Показать страницу сообщества";
$a->strings["Display a Community page showing all recent public postings on this site."] = "Показывать страницу сообщества с указанием всех последних публичных сообщений на этом сайте.";
$a->strings["Enable OStatus support"] = "Включить поддержку OStatus";
$a->strings["Provide built-in OStatus (identi.ca, status.net, etc.) compatibility. All communications in OStatus are public, so privacy warnings will be occasionally displayed."] = "";
$a->strings["Enable Diaspora support"] = "Включить поддержку Diaspora";
$a->strings["Provide built-in Diaspora network compatibility."] = "";
$a->strings["Only allow Friendica contacts"] = "Позвольть только Friendica контакты";
$a->strings["All contacts must use Friendica protocols. All other built-in communication protocols disabled."] = "Все контакты должны использовать только Friendica протоколы. Все другие встроенные коммуникационные протоколы отключены.";
$a->strings["Verify SSL"] = "Проверка SSL";
$a->strings["If you wish, you can turn on strict certificate checking. This will mean you cannot connect (at all) to self-signed SSL sites."] = "";
$a->strings["Proxy user"] = "Прокси пользователь";
$a->strings["Proxy URL"] = "Прокси URL";
$a->strings["Network timeout"] = "Тайм-аут сети";
$a->strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "";
$a->strings["Delivery interval"] = "Интервал поставки";
$a->strings["Delay background delivery processes by this many seconds to reduce system load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 for large dedicated servers."] = "";
$a->strings["Poll interval"] = "Интервал опроса";
$a->strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "";
$a->strings["Maximum Load Average"] = "";
$a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "";
$a->strings["Use MySQL full text engine"] = "";
$a->strings["Activates the full text engine. Speeds up search - but can only search for four and more characters."] = "";
$a->strings["Path to item cache"] = "";
$a->strings["Cache duration in seconds"] = "";
$a->strings["How long should the cache files be hold? Default value is 86400 seconds (One day)."] = "";
$a->strings["Path for lock file"] = "";
$a->strings["Temp path"] = "";
$a->strings["Base path to installation"] = "";
$a->strings["Update has been marked successful"] = "";
$a->strings["Executing %s failed. Check system logs."] = "";
$a->strings["Update %s was successfully applied."] = "";
$a->strings["Update %s did not return a status. Unknown if it succeeded."] = "";
$a->strings["Update function %s could not be found."] = "";
$a->strings["No failed updates."] = "Неудавшихся обновлений нет.";
$a->strings["Failed Updates"] = "Неудавшиеся обновления";
$a->strings["This does not include updates prior to 1139, which did not return a status."] = "";
$a->strings["Mark success (if update was manually applied)"] = "";
$a->strings["Attempt to execute this update step automatically"] = "";
$a->strings["%s user blocked/unblocked"] = array(
0 => "",
1 => "",
2 => "",
);
$a->strings["%s user deleted"] = array(
0 => "%s человек удален",
1 => "%s чел. удалено",
2 => "%s чел. удалено",
);
$a->strings["User '%s' deleted"] = "Пользователь '%s' удален";
$a->strings["User '%s' unblocked"] = "Пользователь '%s' разблокирован";
$a->strings["User '%s' blocked"] = "Пользователь '%s' блокирован";
$a->strings["select all"] = "выбрать все";
$a->strings["User registrations waiting for confirm"] = "Регистрации пользователей, ожидающие подтверждения";
$a->strings["Request date"] = "Запрос даты";
$a->strings["No registrations."] = "Нет регистраций.";
$a->strings["Approve"] = "Одобрить";
$a->strings["Deny"] = "Отклонить";
$a->strings["Site admin"] = "Админ сайта";
$a->strings["Account expired"] = "Аккаунт просрочен";
$a->strings["Register date"] = "Дата регистрации";
$a->strings["Last login"] = "Последний вход";
$a->strings["Last item"] = "Последний пункт";
$a->strings["Account"] = "Аккаунт";
$a->strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Выбранные пользователи будут удалены!\\n\\nВсе, что эти пользователи написали на этом сайте, будет удалено!\\n\\nВы уверены в вашем действии?";
$a->strings["The user {0} will be deleted!\\n\\nEverything this user has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Пользователь {0} будет удален!\\n\\nВсе, что этот пользователь написал на этом сайте, будет удалено!\\n\\nВы уверены в вашем действии?";
$a->strings["Plugin %s disabled."] = "Плагин %s отключен.";
$a->strings["Plugin %s enabled."] = "Плагин %s включен.";
$a->strings["Disable"] = "Отключить";
$a->strings["Enable"] = "Включить";
$a->strings["Toggle"] = "Переключить";
$a->strings["Author: "] = "Автор:";
$a->strings["Maintainer: "] = "Программа обслуживания: ";
$a->strings["No themes found."] = "Темы не найдены.";
$a->strings["Screenshot"] = "Скриншот";
$a->strings["[Experimental]"] = "[экспериментально]";
$a->strings["[Unsupported]"] = "[Неподдерживаемое]";
$a->strings["Log settings updated."] = "Настройки журнала обновлены.";
$a->strings["Clear"] = "Очистить";
$a->strings["Debugging"] = "Отладка";
$a->strings["Log file"] = "Лог-файл";
$a->strings["Must be writable by web server. Relative to your Friendica top-level directory."] = "";
$a->strings["Log level"] = "Уровень лога";
$a->strings["Close"] = "Закрыть";
$a->strings["FTP Host"] = "FTP хост";
$a->strings["FTP Path"] = "Путь FTP";
$a->strings["FTP User"] = "FTP пользователь";
$a->strings["FTP Password"] = "FTP пароль";
$a->strings["Tag removed"] = "Ключевое слово удалено";
$a->strings["Remove Item Tag"] = "Удалить ключевое слово";
$a->strings["Select a tag to remove: "] = "Выберите ключевое слово для удаления: ";
$a->strings["Item not found"] = "Элемент не найден";
$a->strings["Edit post"] = "Редактировать сообщение";
$a->strings["Event title and start time are required."] = "";
$a->strings["l, F j"] = "l, j F";
$a->strings["Edit event"] = "Редактировать мероприятие";
$a->strings["Create New Event"] = "Создать новое мероприятие";
$a->strings["Previous"] = "Назад";
$a->strings["Next"] = "Далее";
$a->strings["hour:minute"] = "час:минута";
$a->strings["Event details"] = "Сведения о мероприятии";
$a->strings["Format is %s %s. Starting date and Title are required."] = "";
$a->strings["Event Starts:"] = "Начало мероприятия:";
$a->strings["Required"] = "Требуется";
$a->strings["Finish date/time is not known or not relevant"] = "Дата/время окончания не известны, или не указаны";
$a->strings["Event Finishes:"] = "Окончание мероприятия:";
$a->strings["Adjust for viewer timezone"] = "Настройка часового пояса";
$a->strings["Description:"] = "Описание:";
$a->strings["Title:"] = "Титул:";
$a->strings["Share this event"] = "Поделитесь этим мероприятием";
$a->strings["Files"] = "Файлы";
$a->strings["Export account"] = "Экспорт аккаунта";
$a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = "";
$a->strings["Export all"] = "Экспорт всего";
$a->strings["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)"] = "";
$a->strings["- select -"] = "- выбрать -";
$a->strings["Import"] = "Импорт";
$a->strings["Move account"] = "Удалить аккаунт";
$a->strings["You can import an account from another Friendica server."] = "";
$a->strings["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."] = "";
$a->strings["This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from Diaspora"] = "";
$a->strings["Account file"] = "Файл аккаунта";
$a->strings["To export your accont, go to \"Settings->Export your porsonal data\" and select \"Export account\""] = "";
$a->strings["[Embedded content - reload page to view]"] = "[Встроенное содержание - перезагрузите страницу для просмотра]";
$a->strings["Contact added"] = "Контакт добавлен";
$a->strings["This is Friendica, version"] = "Это Friendica, версия";
$a->strings["running at web location"] = "работает на веб-узле";
$a->strings["Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn more about the Friendica project."] = "";
$a->strings["Bug reports and issues: please visit"] = "Отчет об ошибках и проблемах: пожалуйста, посетите";
$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Предложения, похвала, пожертвования? Пишите на \"info\" на Friendica - точка com";
$a->strings["Installed plugins/addons/apps:"] = "Установленные плагины / добавки / приложения:";
$a->strings["No installed plugins/addons/apps"] = "Нет установленных плагинов / добавок / приложений";
$a->strings["Friend suggestion sent."] = "Приглашение в друзья отправлено.";
$a->strings["Suggest Friends"] = "Предложить друзей";
$a->strings["Suggest a friend for %s"] = "Предложить друга для %s.";
$a->strings["Group created."] = "Группа создана.";
$a->strings["Could not create group."] = "Не удалось создать группу.";
$a->strings["Group not found."] = "Группа не найдена.";
$a->strings["Group name changed."] = "Название группы изменено.";
$a->strings["Create a group of contacts/friends."] = "Создать группу контактов / друзей.";
$a->strings["Group Name: "] = "Название группы: ";
$a->strings["Group removed."] = "Группа удалена.";
$a->strings["Unable to remove group."] = "Не удается удалить группу.";
$a->strings["Group Editor"] = "Редактор групп";
$a->strings["Members"] = "Участники";
$a->strings["No profile"] = "Нет профиля";
$a->strings["Help:"] = "Помощь:";
$a->strings["Not Found"] = "Не найдено";
$a->strings["Page not found."] = "Страница не найдена.";
$a->strings["No contacts."] = "Нет контактов.";
$a->strings["Welcome to %s"] = "Добро пожаловать на %s!";
$a->strings["Access denied."] = "Доступ запрещен.";
$a->strings["File exceeds size limit of %d"] = "Файл превышает предельный размер %d";
$a->strings["File upload failed."] = "Загрузка файла не удалась.";
$a->strings["Image exceeds size limit of %d"] = "Изображение превышает предельный размер %d";
$a->strings["Unable to process image."] = "Невозможно обработать фото.";
$a->strings["Image upload failed."] = "Загрузка фото неудачная.";
$a->strings["Total invitation limit exceeded."] = "";
$a->strings["%s : Not a valid email address."] = "%s: Неверный адрес электронной почты.";
$a->strings["Please join us on Friendica"] = "";
$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "";
$a->strings["%s : Message delivery failed."] = "%s: Доставка сообщения не удалась.";
$a->strings["%d message sent."] = array(
0 => "%d сообщение отправлено.",
1 => "%d сообщений отправлено.",
2 => "%d сообщений отправлено.",
);
$a->strings["You have no more invitations available"] = "У вас нет больше приглашений";
$a->strings["Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks."] = "";
$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "";
$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join."] = "";
$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "";
$a->strings["Send invitations"] = "Отправить приглашения";
$a->strings["Enter email addresses, one per line:"] = "Введите адреса электронной почты, по одному в строке:";
$a->strings["Your message:"] = "Ваше сообщение:";
$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "";
$a->strings["You will need to supply this invitation code: \$invite_code"] = "Вам нужно будет предоставить этот код приглашения: \$invite_code";
$a->strings["Once you have registered, please connect with me via my profile page at:"] = "После того как вы зарегистрировались, пожалуйста, свяжитесь со мной через мою страницу профиля по адресу:";
$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "";
$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "";
$a->strings["No recipient selected."] = "Не выбран получатель.";
$a->strings["Unable to check your home location."] = "Невозможно проверить местоположение.";
$a->strings["Message could not be sent."] = "Сообщение не может быть отправлено.";
$a->strings["Message collection failure."] = "Неудача коллекции сообщения.";
$a->strings["Message sent."] = "Сообщение отправлено.";
$a->strings["No recipient."] = "Без адресата.";
$a->strings["Send Private Message"] = "Отправить личное сообщение";
$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "";
$a->strings["To:"] = "Кому:";
$a->strings["Subject:"] = "Тема:";
$a->strings["Time Conversion"] = "История общения";
$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "";
$a->strings["UTC time: %s"] = "UTC время: %s";
$a->strings["Current timezone: %s"] = "Ваш часовой пояс: %s";
$a->strings["Converted localtime: %s"] = "Ваше изменённое время: %s";
$a->strings["Please select your timezone:"] = "Выберите пожалуйста ваш часовой пояс:";
$a->strings["Remote privacy information not available."] = "Личная информация удаленно недоступна.";
$a->strings["Visible to:"] = "Кто может видеть:";
$a->strings["No valid account found."] = "Не найдено действительного аккаунта.";
$a->strings["Password reset request issued. Check your email."] = "Запрос на сброс пароля принят. Проверьте вашу электронную почту.";
$a->strings["Password reset requested at %s"] = "Запрос на сброс пароля получен %s";
$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Запрос не может быть проверен. (Вы, возможно, ранее представляли его.) Попытка сброса пароля неудачная.";
$a->strings["Password Reset"] = "Сброс пароля";
$a->strings["Your password has been reset as requested."] = "Ваш пароль был сброшен по требованию.";
$a->strings["Your new password is"] = "Ваш новый пароль";
$a->strings["Save or copy your new password - and then"] = "Сохраните или скопируйте новый пароль - и затем";
$a->strings["click here to login"] = "нажмите здесь для входа";
$a->strings["Your password may be changed from the <em>Settings</em> page after successful login."] = "Ваш пароль может быть изменен на странице <em>Настройки</em> после успешного входа.";
$a->strings["Your password has been changed at %s"] = "Ваш пароль был изменен %s";
$a->strings["Forgot your Password?"] = "Забыли пароль?";
$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Введите адрес электронной почты и подтвердите, что вы хотите сбросить ваш пароль. Затем проверьте свою электронную почту для получения дальнейших инструкций.";
$a->strings["Nickname or Email: "] = "Ник или E-mail: ";
$a->strings["Reset"] = "Сброс";
$a->strings["System down for maintenance"] = "Система закрыта на техническое обслуживание";
$a->strings["Manage Identities and/or Pages"] = "Управление идентификацией и / или страницами";
$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "";
$a->strings["Select an identity to manage: "] = "Выберите идентификацию для управления: ";
$a->strings["Profile Match"] = "Похожие профили";
$a->strings["No keywords to match. Please add keywords to your default profile."] = "Нет соответствующих ключевых слов. Пожалуйста, добавьте ключевые слова для вашего профиля по умолчанию.";
$a->strings["is interested in:"] = "";
$a->strings["Unable to locate contact information."] = "Не удалось найти контактную информацию.";
$a->strings["Do you really want to delete this message?"] = "";
$a->strings["Message deleted."] = "Сообщение удалено.";
$a->strings["Conversation removed."] = "Беседа удалена.";
$a->strings["No messages."] = "Нет сообщений.";
$a->strings["Unknown sender - %s"] = "Неизвестный отправитель - %s";
$a->strings["You and %s"] = "Вы и %s";
$a->strings["%s and You"] = "%s и Вы";
$a->strings["Delete conversation"] = "Удалить историю общения";
$a->strings["D, d M Y - g:i A"] = "D, d M Y - g:i A";
$a->strings["%d message"] = array(
0 => "%d сообщение",
1 => "%d сообщений",
2 => "%d сообщений",
);
$a->strings["Message not available."] = "Сообщение не доступно.";
$a->strings["Delete message"] = "Удалить сообщение";
$a->strings["No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."] = "";
$a->strings["Send Reply"] = "Отправить ответ";
$a->strings["Mood"] = "";
$a->strings["Set your current mood and tell your friends"] = "";
$a->strings["Search Results For:"] = "";
$a->strings["Commented Order"] = "Прокомментированный запрос";
$a->strings["Sort by Comment Date"] = "";
$a->strings["Posted Order"] = "Отправленный запрос";
$a->strings["Sort by Post Date"] = "";
$a->strings["Personal"] = "Персонал";
$a->strings["Posts that mention or involve you"] = "";
$a->strings["New"] = "Новый";
$a->strings["Activity Stream - by date"] = "";
$a->strings["Shared Links"] = "";
$a->strings["Interesting Links"] = "";
$a->strings["Starred"] = "Помеченный";
$a->strings["Favourite Posts"] = "";
$a->strings["Warning: This group contains %s member from an insecure network."] = array(
0 => "Внимание: Эта группа содержит %s участника с незащищенной сети.",
1 => "Внимание: Эта группа содержит %s участников с незащищенной сети.",
2 => "Внимание: Эта группа содержит %s участников с незащищенной сети.",
);
$a->strings["Private messages to this group are at risk of public disclosure."] = "Личные сообщения к этой группе находятся под угрозой обнародования.";
$a->strings["No such group"] = "Нет такой группы";
$a->strings["Group is empty"] = "Группа пуста";
$a->strings["Group: "] = "Группа: ";
$a->strings["Contact: "] = "Контакт: ";
$a->strings["Private messages to this person are at risk of public disclosure."] = "Личные сообщения этому человеку находятся под угрозой обнародования.";
$a->strings["Invalid contact."] = "Недопустимый контакт.";
$a->strings["Invalid request identifier."] = "Неверный идентификатор запроса.";
$a->strings["Discard"] = "Отказаться";
$a->strings["System"] = "Система";
$a->strings["Show Ignored Requests"] = "Показать проигнорированные запросы";
$a->strings["Hide Ignored Requests"] = "Скрыть проигнорированные запросы";
$a->strings["Notification type: "] = "Тип уведомления: ";
$a->strings["Friend Suggestion"] = "Предложение в друзья";
$a->strings["suggested by %s"] = "предложено юзером %s";
$a->strings["Post a new friend activity"] = "";
$a->strings["if applicable"] = "если требуется";
$a->strings["Claims to be known to you: "] = "Утверждения, о которых должно быть вам известно: ";
$a->strings["yes"] = "да";
$a->strings["no"] = "нет";
$a->strings["Approve as: "] = "Утвердить как: ";
$a->strings["Friend"] = "Друг";
$a->strings["Sharer"] = "Участник";
$a->strings["Fan/Admirer"] = "Фанат / Поклонник";
$a->strings["Friend/Connect Request"] = "Запрос в друзья / на подключение";
$a->strings["New Follower"] = "Новый фолловер";
$a->strings["No introductions."] = "Запросов нет.";
$a->strings["%s liked %s's post"] = "%s нравится %s сообшение";
$a->strings["%s disliked %s's post"] = "%s не нравится %s сообшение";
$a->strings["%s is now friends with %s"] = "%s теперь друзья с %s";
$a->strings["%s created a new post"] = "%s написал новое сообщение";
$a->strings["%s commented on %s's post"] = "%s прокомментировал %s сообщение";
$a->strings["No more network notifications."] = "Уведомлений из сети больше нет.";
$a->strings["Network Notifications"] = "Уведомления сети";
$a->strings["No more system notifications."] = "Системных уведомлений больше нет.";
$a->strings["System Notifications"] = "Уведомления системы";
$a->strings["No more personal notifications."] = "Персональных уведомлений больше нет.";
$a->strings["Personal Notifications"] = "Личные уведомления";
$a->strings["No more home notifications."] = "Уведомлений больше нет.";
$a->strings["Home Notifications"] = "Уведомления";
$a->strings["Photo Albums"] = "Фотоальбомы";
$a->strings["Contact Photos"] = "Фотографии контакта";
$a->strings["Upload New Photos"] = "Загрузить новые фото";
$a->strings["Contact information unavailable"] = "Информация о контакте недоступна";
$a->strings["Album not found."] = "Альбом не найден.";
$a->strings["Delete Album"] = "Удалить альбом";
$a->strings["Do you really want to delete this photo album and all its photos?"] = "Вы действительно хотите удалить этот альбом и все его фотографии?";
$a->strings["Delete Photo"] = "Удалить фото";
$a->strings["Do you really want to delete this photo?"] = "Вы действительно хотите удалить эту фотографию?";
$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "";
$a->strings["a photo"] = "фото";
$a->strings["Image exceeds size limit of "] = "Размер фото превышает лимит ";
$a->strings["Image file is empty."] = "Файл изображения пуст.";
$a->strings["No photos selected"] = "Не выбрано фото.";
$a->strings["Access to this item is restricted."] = "Доступ к этому пункту ограничен.";
$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "";
$a->strings["Upload Photos"] = "Загрузить фото";
$a->strings["New album name: "] = "Название нового альбома: ";
$a->strings["or existing album name: "] = "или название существующего альбома: ";
$a->strings["Do not show a status post for this upload"] = "Не показывать статус-сообщение для этой закачки";
$a->strings["Permissions"] = "Разрешения";
$a->strings["Private Photo"] = "Личное фото";
$a->strings["Public Photo"] = "Публичное фото";
$a->strings["Edit Album"] = "Редактировать альбом";
$a->strings["Show Newest First"] = "Показать новые первыми";
$a->strings["Show Oldest First"] = "Показать старые первыми";
$a->strings["View Photo"] = "Просмотр фото";
$a->strings["Permission denied. Access to this item may be restricted."] = "Нет разрешения. Доступ к этому элементу ограничен.";
$a->strings["Photo not available"] = "Фото недоступно";
$a->strings["View photo"] = "Просмотр фото";
$a->strings["Edit photo"] = "Редактировать фото";
$a->strings["Use as profile photo"] = "Использовать как фото профиля";
$a->strings["Private Message"] = "Личное сообщение";
$a->strings["View Full Size"] = "Просмотреть полный размер";
$a->strings["Tags: "] = "Ключевые слова: ";
$a->strings["[Remove any tag]"] = "[Удалить любое ключевое слово]";
$a->strings["Rotate CW (right)"] = "Поворот по часовой стрелке (направо)";
$a->strings["Rotate CCW (left)"] = "Поворот против часовой стрелки (налево)";
$a->strings["New album name"] = "Название нового альбома";
$a->strings["Caption"] = "Подпись";
$a->strings["Add a Tag"] = "Добавить ключевое слово (таг)";
$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Пример: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping";
$a->strings["Private photo"] = "Личное фото";
$a->strings["Public photo"] = "Публичное фото";
$a->strings["I like this (toggle)"] = "Нравится";
$a->strings["I don't like this (toggle)"] = "Не нравится";
$a->strings["This is you"] = "Это вы";
$a->strings["Comment"] = "Комментарий";
$a->strings["View Album"] = "Просмотреть альбом";
$a->strings["Recent Photos"] = "Последние фото";
$a->strings["Welcome to Friendica"] = "Добро пожаловать в Friendica";
$a->strings["New Member Checklist"] = "Новый контрольный список участников";
$a->strings["We would like to offer some tips and links to help make your experience enjoyable. Click any item to visit the relevant page. A link to this page will be visible from your home page for two weeks after your initial registration and then will quietly disappear."] = "";
$a->strings["Getting Started"] = "";
$a->strings["Friendica Walk-Through"] = "";
$a->strings["On your <em>Quick Start</em> page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."] = "";
$a->strings["Go to Your Settings"] = "";
$a->strings["On your <em>Settings</em> page - change your initial password. Also make a note of your Identity Address. This looks just like an email address - and will be useful in making friends on the free social web."] = "";
$a->strings["Review the other settings, particularly the privacy settings. An unpublished directory listing is like having an unlisted phone number. In general, you should probably publish your listing - unless all of your friends and potential friends know exactly how to find you."] = "Просмотрите другие установки, в частности, параметры конфиденциальности. Неопубликованные пункты каталога с частными номерами телефона. В общем, вам, вероятно, следует опубликовать свою информацию - если все ваши друзья и потенциальные друзья точно знают, как вас найти.";
$a->strings["Upload Profile Photo"] = "Загрузить фото профиля";
$a->strings["Upload a profile photo if you have not done so already. Studies have shown that people with real photos of themselves are ten times more likely to make friends than people who do not."] = "Загрузите фотографию профиля, если вы еще не сделали это. Исследования показали, что люди с реальными фотографиями имеют в десять раз больше шансов подружиться, чем люди, которые этого не делают.";
$a->strings["Edit Your Profile"] = "Редактировать профиль";
$a->strings["Edit your <strong>default</strong> profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."] = "Отредактируйте профиль <strong>по умолчанию</strong> на свой ​​вкус. Просмотрите установки для сокрытия вашего списка друзей и сокрытия профиля от неизвестных посетителей.";
$a->strings["Profile Keywords"] = "Ключевые слова профиля";
$a->strings["Set some public keywords for your default profile which describe your interests. We may be able to find other people with similar interests and suggest friendships."] = "Установите некоторые публичные ключевые слова для вашего профиля по умолчанию, которые описывают ваши интересы. Мы можем быть в состоянии найти других людей со схожими интересами и предложить дружбу.";
$a->strings["Connecting"] = "Подключение";
$a->strings["Authorise the Facebook Connector if you currently have a Facebook account and we will (optionally) import all your Facebook friends and conversations."] = "Авторизуйте Facebook Connector , если у вас уже есть аккаунт на Facebook, и мы (по желанию) импортируем всех ваших друзей и беседы с Facebook.";
$a->strings["<em>If</em> this is your own personal server, installing the Facebook addon may ease your transition to the free social web."] = "";
$a->strings["Importing Emails"] = "";
$a->strings["Enter your email access information on your Connector Settings page if you wish to import and interact with friends or mailing lists from your email INBOX"] = "";
$a->strings["Go to Your Contacts Page"] = "";
$a->strings["Your Contacts page is your gateway to managing friendships and connecting with friends on other networks. Typically you enter their address or site URL in the <em>Add New Contact</em> dialog."] = "";
$a->strings["Go to Your Site's Directory"] = "";
$a->strings["The Directory page lets you find other people in this network or other federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on their profile page. Provide your own Identity Address if requested."] = "На странице каталога вы можете найти других людей в этой сети или на других похожих сайтах. Ищите ссылки <em>Подключить</em> или <em>Следовать</em> на страницах их профилей. Укажите свой собственный адрес идентификации, если требуется.";
$a->strings["Finding New People"] = "Поиск людей";
$a->strings["On the side panel of the Contacts page are several tools to find new friends. We can match people by interest, look up people by name or interest, and provide suggestions based on network relationships. On a brand new site, friend suggestions will usually begin to be populated within 24 hours."] = "";
$a->strings["Group Your Contacts"] = "";
$a->strings["Once you have made some friends, organize them into private conversation groups from the sidebar of your Contacts page and then you can interact with each group privately on your Network page."] = "После того, как вы найдете несколько друзей, организуйте их в группы частных бесед в боковой панели на странице Контакты, а затем вы можете взаимодействовать с каждой группой приватно или на вашей странице Сеть.";
$a->strings["Why Aren't My Posts Public?"] = "";
$a->strings["Friendica respects your privacy. By default, your posts will only show up to people you've added as friends. For more information, see the help section from the link above."] = "";
$a->strings["Getting Help"] = "";
$a->strings["Go to the Help Section"] = "";
$a->strings["Our <strong>help</strong> pages may be consulted for detail on other program features and resources."] = "Наши страницы <strong>помощи</strong> могут проконсультировать о подробностях и возможностях программы и ресурса.";
$a->strings["Requested profile is not available."] = "Запрашиваемый профиль недоступен.";
$a->strings["Access to this profile has been restricted."] = "Доступ к этому профилю ограничен.";
$a->strings["Tips for New Members"] = "Советы для новых участников";
$a->strings["Item has been removed."] = "Пункт был удален.";
$a->strings["Friendica Social Communications Server - Setup"] = "";
$a->strings["Could not connect to database."] = "Не удалось подключиться к базе данных.";
$a->strings["Could not create table."] = "Не удалось создать таблицу.";
$a->strings["Your Friendica site database has been installed."] = "База данных сайта установлена.";
$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Вам может понадобиться импортировать файл \"database.sql\" вручную с помощью PhpMyAdmin или MySQL.";
$a->strings["Please see the file \"INSTALL.txt\"."] = "Пожалуйста, смотрите файл \"INSTALL.txt\".";
$a->strings["System check"] = "Проверить систему";
$a->strings["Check again"] = "Проверить еще раз";
$a->strings["Database connection"] = "Подключение к базе данных";
$a->strings["In order to install Friendica we need to know how to connect to your database."] = "";
$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Пожалуйста, свяжитесь с вашим хостинг-провайдером или администратором сайта, если у вас есть вопросы об этих параметрах.";
$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Базы данных, указанная ниже, должна уже существовать. Если этого нет, пожалуйста, создайте ее перед продолжением.";
$a->strings["Database Server Name"] = "Имя сервера базы данных";
$a->strings["Database Login Name"] = "Логин базы данных";
$a->strings["Database Login Password"] = "Пароль базы данных";
$a->strings["Database Name"] = "Имя базы данных";
$a->strings["Site administrator email address"] = "Адрес электронной почты администратора сайта";
$a->strings["Your account email address must match this in order to use the web admin panel."] = "";
$a->strings["Please select a default timezone for your website"] = "Пожалуйста, выберите часовой пояс по умолчанию для вашего сайта";
$a->strings["Site settings"] = "Настройки сайта";
$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Не удалось найти PATH веб-сервера в установках PHP.";
$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron. See <a href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>"] = "";
$a->strings["PHP executable path"] = "PHP executable path";
$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "";
$a->strings["Command line PHP"] = "Command line PHP";
$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = "";
$a->strings["Found PHP version: "] = "Найденная PHP версия: ";
$a->strings["PHP cli binary"] = "PHP cli binary";
$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "Не включено \"register_argc_argv\" в установках PHP.";
$a->strings["This is required for message delivery to work."] = "Это необходимо для работы доставки сообщений.";
$a->strings["PHP register_argc_argv"] = "PHP register_argc_argv";
$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Ошибка: функция \"openssl_pkey_new\" в этой системе не в состоянии генерировать ключи шифрования";
$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Если вы работаете под Windows, см. \"http://www.php.net/manual/en/openssl.installation.php\".";
$a->strings["Generate encryption keys"] = "Генерация шифрованых ключей";
$a->strings["libCurl PHP module"] = "libCurl PHP модуль";
$a->strings["GD graphics PHP module"] = "GD graphics PHP модуль";
$a->strings["OpenSSL PHP module"] = "OpenSSL PHP модуль";
$a->strings["mysqli PHP module"] = "mysqli PHP модуль";
$a->strings["mb_string PHP module"] = "mb_string PHP модуль";
$a->strings["Apache mod_rewrite module"] = "Apache mod_rewrite module";
$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Ошибка: необходим модуль веб-сервера Apache mod-rewrite, но он не установлен.";
$a->strings["Error: libCURL PHP module required but not installed."] = "Ошибка: необходим libCURL PHP модуль, но он не установлен.";
$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Ошибка: необходим PHP модуль GD графики с поддержкой JPEG, но он не установлен.";
$a->strings["Error: openssl PHP module required but not installed."] = "Ошибка: необходим PHP модуль OpenSSL, но он не установлен.";
$a->strings["Error: mysqli PHP module required but not installed."] = "Ошибка: необходим PHP модуль MySQLi, но он не установлен.";
$a->strings["Error: mb_string PHP module required but not installed."] = "Ошибка: необходим PHP модуль mb_string, но он не установлен.";
$a->strings["The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."] = "Веб-инсталлятору требуется создать файл с именем \". htconfig.php\" в верхней папке веб-сервера, но он не в состоянии это сделать.";
$a->strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "Это наиболее частые параметры разрешений, когда веб-сервер не может записать файлы в папке - даже если вы можете.";
$a->strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Friendica top folder."] = "";
$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "";
$a->strings[".htconfig.php is writable"] = ".htconfig.php is writable";
$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "";
$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory view/smarty3/ under the Friendica top level folder."] = "";
$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "";
$a->strings["Note: as a security measure, you should give the web server write access to view/smarty3/ only--not the template files (.tpl) that it contains."] = "";
$a->strings["view/smarty3 is writable"] = "";
$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "";
$a->strings["Url rewrite is working"] = "";
$a->strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "Файл конфигурации базы данных \".htconfig.php\" не могла быть записан. Пожалуйста, используйте приложенный текст, чтобы создать конфигурационный файл в корневом каталоге веб-сервера.";
$a->strings["Errors encountered creating database tables."] = "Обнаружены ошибки при создании таблиц базы данных.";
$a->strings["<h1>What next</h1>"] = "<h1>Что далее</h1>";
$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "ВАЖНО: Вам нужно будет [вручную] установить запланированное задание для регистратора.";
$a->strings["Post successful."] = "Успешно добавлено.";
$a->strings["OpenID protocol error. No ID returned."] = "";
$a->strings["Account not found and OpenID registration is not permitted on this site."] = "Аккаунт не найден и OpenID регистрация не допускается на этом сайте.";
$a->strings["Image uploaded but image cropping failed."] = "Изображение загружено, но обрезка изображения не удалась.";
$a->strings["Image size reduction [%s] failed."] = "Уменьшение размера изображения [%s] не удалось.";
$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Перезагрузите страницу с зажатой клавишей \"Shift\" для того, чтобы увидеть свое новое фото немедленно.";
$a->strings["Unable to process image"] = "Не удается обработать изображение";
$a->strings["Upload File:"] = "Загрузить файл:";
$a->strings["Select a profile:"] = "Выбрать этот профиль:";
$a->strings["Upload"] = "Загрузить";
$a->strings["skip this step"] = "пропустить этот шаг";
$a->strings["select a photo from your photo albums"] = "выберите фото из ваших фотоальбомов";
$a->strings["Crop Image"] = "Обрезать изображение";
$a->strings["Please adjust the image cropping for optimum viewing."] = "Пожалуйста, настройте обрезку изображения для оптимального просмотра.";
$a->strings["Done Editing"] = "Редактирование выполнено";
$a->strings["Image uploaded successfully."] = "Изображение загружено успешно.";
$a->strings["Not available."] = "Недоступно.";
$a->strings["%d comment"] = array(
0 => "%d комментарий",
1 => "%d комментариев",
2 => "%d комментариев",
);
$a->strings["like"] = "нравится";
$a->strings["dislike"] = "не нравитса";
$a->strings["Share this"] = "Поделитесь этим";
$a->strings["share"] = "делиться";
$a->strings["Bold"] = "Жирный";
$a->strings["Italic"] = "Kурсивный";
$a->strings["Underline"] = "Подчеркнутый";
$a->strings["Quote"] = "Цитата";
$a->strings["Code"] = "Код";
$a->strings["Image"] = "Изображение / Фото";
$a->strings["Link"] = "Ссылка";
$a->strings["Video"] = "Видео";
$a->strings["add star"] = "пометить";
$a->strings["remove star"] = "убрать метку";
$a->strings["toggle star status"] = "переключить статус";
$a->strings["starred"] = "помечено";
$a->strings["add tag"] = "добавить ключевое слово (таг)";
$a->strings["save to folder"] = "сохранить в папке";
$a->strings["to"] = "к";
$a->strings["Wall-to-Wall"] = "Стена-на-Стену";
$a->strings["via Wall-To-Wall:"] = "через Стена-на-Стену:";
$a->strings["This entry was edited"] = "";
$a->strings["via"] = "через";
$a->strings["Theme settings"] = "";
$a->strings["Set resize level for images in posts and comments (width and height)"] = "";
$a->strings["Set font-size for posts and comments"] = "";
$a->strings["Set theme width"] = "";
$a->strings["Color scheme"] = "Цветовая схема";
$a->strings["Set line-height for posts and comments"] = "";
$a->strings["Set resolution for middle column"] = "";
$a->strings["Set color scheme"] = "";
$a->strings["Set twitter search term"] = "";
$a->strings["Set zoomfactor for Earth Layer"] = "";
$a->strings["Set longitude (X) for Earth Layers"] = "";
$a->strings["Set latitude (Y) for Earth Layers"] = "";
$a->strings["Community Pages"] = "Страницы сообщества";
$a->strings["Earth Layers"] = "";
$a->strings["Community Profiles"] = "";
$a->strings["Help or @NewHere ?"] = "";
$a->strings["Connect Services"] = "Подключить службы";
$a->strings["Find Friends"] = "Найти друзей";
$a->strings["Last tweets"] = "";
$a->strings["Last users"] = "Последние пользователи";
$a->strings["Last photos"] = "Последние фото";
$a->strings["Last likes"] = "Последние likes";
$a->strings["Your contacts"] = "Ваши контакты";
$a->strings["Local Directory"] = "Локальный каталог";
$a->strings["Set zoomfactor for Earth Layers"] = "";
$a->strings["Last Tweets"] = "Последние твиты";
$a->strings["Show/hide boxes at right-hand column:"] = "";
$a->strings["Set colour scheme"] = "";
$a->strings["Alignment"] = "Выравнивание";
$a->strings["Left"] = "";
$a->strings["Center"] = "Центр";
$a->strings["Posts font size"] = "";
$a->strings["Textareas font size"] = "";
$a->strings["Delete this item?"] = "Удалить этот элемент?";
$a->strings["show fewer"] = "показать меньше";
$a->strings["Update %s failed. See error logs."] = "";
@ -2068,12 +1625,16 @@ $a->strings["Update Error at %s"] = "";
$a->strings["Create a New Account"] = "Создать новый аккаунт";
$a->strings["Nickname or Email address: "] = "Ник или адрес электронной почты: ";
$a->strings["Password: "] = "Пароль: ";
$a->strings["Remember me"] = "";
$a->strings["Or login using OpenID: "] = "";
$a->strings["Remember me"] = "Напомнить";
$a->strings["Or login using OpenID: "] = "Или зайти с OpenID: ";
$a->strings["Forgot your password?"] = "Забыли пароль?";
$a->strings["Website Terms of Service"] = "";
$a->strings["terms of service"] = "";
$a->strings["Website Privacy Policy"] = "";
$a->strings["privacy policy"] = "";
$a->strings["Requested account is not available."] = "";
$a->strings["Edit profile"] = "Редактировать профиль";
$a->strings["Message"] = "";
$a->strings["Message"] = "Сообщение";
$a->strings["Manage/edit profiles"] = "Управление / редактирование профилей";
$a->strings["g A l F d"] = "g A l F d";
$a->strings["F d"] = "F d";
@ -2084,22 +1645,7 @@ $a->strings["[No description]"] = "[без описания]";
$a->strings["Event Reminders"] = "Напоминания о мероприятиях";
$a->strings["Events this week:"] = "Мероприятия на этой неделе:";
$a->strings["Status Messages and Posts"] = "";
$a->strings["Profile Details"] = "";
$a->strings["Profile Details"] = "Детали профиля";
$a->strings["Events and Calendar"] = "";
$a->strings["Only You Can See This"] = "";
$a->strings["via"] = "";
$a->strings["toggle mobile"] = "";
$a->strings["Bg settings updated."] = "";
$a->strings["Bg Settings"] = "";
$a->strings["Post to Drupal"] = "";
$a->strings["Drupal Post Settings"] = "";
$a->strings["Enable Drupal Post Plugin"] = "Включить Drupal плагин сообщений";
$a->strings["Drupal username"] = "Drupal имя пользователя";
$a->strings["Drupal password"] = "Drupal пароль";
$a->strings["Post Type - article,page,or blog"] = "";
$a->strings["Drupal site URL"] = "Drupal site URL";
$a->strings["Drupal site uses clean URLS"] = "";
$a->strings["Post to Drupal by default"] = "";
$a->strings["OEmbed settings updated"] = "OEmbed настройки обновлены";
$a->strings["Use OEmbed for YouTube videos"] = "Использовать OEmbed для видео YouTube";
$a->strings["URL to embed:"] = "URL для встраивания:";
$a->strings["Only You Can See This"] = "Только вы можете это видеть";
$a->strings["toggle mobile"] = "мобильная версия";

View file

@ -84,6 +84,7 @@
{{include file="field_checkbox.tpl" field=$force_publish}}
{{include file="field_checkbox.tpl" field=$no_community_page}}
{{include file="field_checkbox.tpl" field=$ostatus_disabled}}
{{include file="field_select.tpl" field=$ostatus_poll_interval}}
{{include file="field_checkbox.tpl" field=$diaspora_enabled}}
{{include file="field_checkbox.tpl" field=$dfrn_only}}
{{include file="field_input.tpl" field=$global_directory}}

View file

@ -255,6 +255,9 @@ a:focus {
img,
figure {
border: 0 none;
border-radius: 5px;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
max-width: 550px;
margin: 0;
}

View file

@ -1,8 +1,8 @@
/*
style.css
Smoothly
Created by alex@friendica.pixelbits.de on 2013-03-12
Theme: Smoothly
Maintainer: alex@friendica.pixelbits.de
last change: 2013-04-01
** Colors **
Blue links - #1873a2
@ -16,6 +16,28 @@ Orange - #fec01d
@import url('css/typography.css');
@media only screen and (device-width: 768px) {
/* For general iPad layouts */
#page {
-moz-background-clip: border;
-moz-background-origin: pdading;
-moz-background-size: auto auto;
background-attachment: scroll;
background-color: transparent;
background-image: url( );
background-position: center top;
background-repeat: no-repeat;
}
}
@media only screen and (min-device-width: 481px) and (max-device-width: 1024px) and (orientation:portrait) {
/* For portrait layouts only */
}
@media only screen and (min-device-width: 481px) and (max-device-width: 1024px) and (orientation:landscape) {
/* For landscape layouts only */
}
.lockview {
cursor: pointer;
}
@ -70,8 +92,8 @@ input[type=submit]:hover {
color: #efefef;
border: 1px solid #7C7D7B;
box-shadow: 0 0 8px #BDBDBD;
-moz-box-shadow: 3px 3px 4px #959494;
-webkit-box-shadow: 3px 3px 4px #959494;
-moz-box-shadow: 0 0 8px #BDBDBD;
-webkit-box-shadow: 0 0 8px #BDBDBD;
border-radius: 5px;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
@ -119,7 +141,7 @@ section {
}
.lframe {
border: 1px solid #dddddd;
border: 1px solid #7C7D7B;
box-shadow: 3px 3px 6px #959494;
-moz-box-shadow: 3px 3px 6px #959494;
-webkit-box-shadow: 3px 3px 6px #959494;
@ -128,15 +150,15 @@ section {
}
.mframe {
padding: 3px;
padding: 1px;
background: none repeat scroll 0 0 #FFFFFF;
border: 1px solid #C5C5C5;
border: 1px solid #7C7D7B;
border-radius: 3px;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
box-shadow: 0 0 8px #BDBDBD;
-moz-box-shadow: 3px 3px 4px #959494;
-webkit-box-shadow: 3px 3px 4px #959494;
-moz-box-shadow: 0 0 8px #BDBDBD;
-webkit-box-shadow: 0 0 8px #BDBDBD;
}
#wall-item-lock {
@ -160,8 +182,8 @@ section {
.button:hover {
border: 1px solid #7C7D7B;
box-shadow: 0 0 8px #BDBDBD;
-moz-box-shadow: 3px 3px 4px #959494;
-webkit-box-shadow: 3px 3px 4px #959494;
-moz-box-shadow: 0 0 8px #BDBDBD;
-webkit-box-shadow: 0 0 8px #BDBDBD;
border-radius: 5px;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
@ -219,19 +241,26 @@ section {
border-radius: 5px;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
padding: 10px;
margin: 10px 0 0 0;
padding: 15px 10px 10px 20px;
margin: 20px 0 0 210px;
}
#login_openid,
#div_id_remember,
#login-extra-links a {
width: 460px;
float: left;
margin: 5px 0 0 230px;
}
#div_id_remember {
width: 258px;
float: left;
margin: 5px 0 0 230px;
}
#login_standard input,
#login_openid input {
height: 20px;
width: 240px;
}
@ -253,7 +282,8 @@ section {
}
#login-submit-button {
width: 280px;
width: 250px;
margin: 10px 0 0 230px;
}
.login-form,
@ -329,11 +359,11 @@ nav {
background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, #bdbdbd), color-stop(1, #a2a2a2) );
border: 1px solid #7C7D7B;
box-shadow: 0 0 8px #BDBDBD;
-moz-box-shadow: 3px 3px 4px #959494;
-webkit-box-shadow: 3px 3px 4px #959494;
border-radius: 5px;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
-moz-box-shadow: 0 0 8px #BDBDBD;
-webkit-box-shadow: 0 0 8px #BDBDBD;
border-radius: 0px 0px 5px 5px;
-moz-border-radius: 0px 0px 5px 5px;
-webkit-border-radius: 0px 0px 5px 5px;
}
nav a {
@ -384,10 +414,13 @@ nav #user-menu {
background: -moz-linear-gradient( center top, #797979 5%, #898988 100% );
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#797979', endColorstr='#898988');
background-color: #a2a2a2;
border: 1px solid #7C7D7B;
box-shadow: 0 0 8px #BDBDBD;
-moz-box-shadow: 0 0 8px #BDBDBD;
-webkit-box-shadow: 0 0 8px #BDBDBD;
border-radius: 5px;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
border: 1px solid #7C7D8B;
color: #efefef;
text-decoration: none;
text-align: center;
@ -396,8 +429,8 @@ nav #user-menu {
nav #user-menu:hover {
border: 1px solid #7C7D7B;
box-shadow: 0 0 8px #BDBDBD;
-moz-box-shadow: 3px 3px 4px #959494;
-webkit-box-shadow: 3px 3px 4px #959494;
-moz-box-shadow: 0 0 8px #BDBDBD;
-webkit-box-shadow: 0 0 8px #BDBDBD;
border-radius: 5px;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
@ -580,7 +613,7 @@ ul#user-menu-popup li a.nav-sep {
#sysmsg br {
display:block;
margin:2px 0px;
border-top: 1px solid #dddddd;
border-top: 1px solid #7C7D7B;
}
/* ================= */
@ -625,18 +658,18 @@ aside h4 {
.vcard #profile-photo-wrapper {
margin: 10px 0px;
padding: 6px;
padding: 0;
width: auto;
background: none repeat scroll 0 0 #FFFFFF;
border: 1px solid #C5C5C5;
/*background: none repeat scroll 0 0 #FFFFFF;
border: 1px solid #7C7D7B;
box-shadow: 0 0 8px #BDBDBD;
-moz-box-shadow: 3px 3px 4px #959494;
-webkit-box-shadow: 3px 3px 4px #959494;
-moz-box-shadow: 3px 3px 4px #959494;
-webkit-box-shadow: 3px 3px 4px #959494;
-moz-box-shadow: 0 0 8px #BDBDBD;
-webkit-box-shadow: 0 0 8px #BDBDBD;
-moz-box-shadow: 0 0 8px #BDBDBD;
-webkit-box-shadow: 0 0 8px #BDBDBD;
border-radius: 5px;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
-webkit-border-radius: 5px;*/
}
@ -726,7 +759,7 @@ h3 #search:before {
#network-new-link {
background-color: #f3f3f3;
border: 1px solid #cdcdcd;
border: 1px solid #7C7D7B;
margin-bottom: 10px;
border-radius: 5px;
-webkit-border-radius: 5px;
@ -810,7 +843,7 @@ h3 #search:before {
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
color: #7c7d7b;
border: 1px solid #cdcdcd;
border: 1px solid #7C7D7B;
}
li.widget-list {
@ -847,8 +880,8 @@ li.widget-list {
background-color: #1873a2;
border: 1px solid #7C7D7B;
box-shadow: 0 0 8px #BDBDBD;
-moz-box-shadow: 3px 3px 4px #959494;
-webkit-box-shadow: 3px 3px 4px #959494;
-moz-box-shadow: 0 0 8px #BDBDBD;
-webkit-box-shadow: 0 0 8px #BDBDBD;
border-radius: 5px;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
@ -893,7 +926,7 @@ li.widget-list {
}
ul .sidebar-group-li {
list-style: none;
list-style: disc;
font-size: 1.0em;
}
@ -944,7 +977,7 @@ ul .sidebar-group-li .icon {
-moz-border-radius: 5px 5px 0px 0px;
-webkit-border-radius: 5px 5px 0px 0px;
border: 1px solid #e2e2e2;
border-bottom: 1px solid #cdcdcd;
border-bottom: 1px solid #7C7D7B;
padding-top: 5px;
padding-bottom: 5px;
vertical-align: baseline;
@ -999,13 +1032,13 @@ ul .sidebar-group-li .icon {
width: 47px;
height: 47px;
margin-right: 2px;
border: 1px solid #C5C5C5;
border: 1px solid #7C7D7B;
border-radius: 3px;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
box-shadow: 0 0 8px #BDBDBD;
-moz-box-shadow: 3px 3px 4px #959494;
-webkit-box-shadow: 3px 3px 4px #959494;
-moz-box-shadow: 0 0 8px #BDBDBD;
-webkit-box-shadow: 0 0 8px #BDBDBD;
}
.contact-block-div {
@ -1036,6 +1069,14 @@ ul .sidebar-group-li .icon {
/* = Jot = */
/* ======= */
.jothidden {
display: none;
}
#jot {
width: 100%;
margin: 0px 2em 20px 0px;
}
#profile-jot-text-loading,
#profile-jot-text {
height: 20px;
@ -1085,10 +1126,6 @@ ul .sidebar-group-li .icon {
border: 1px solid #cccccc;
}
.jothidden {
display: none;
}
.preview {
background: #FFFFC8;
}
@ -1175,8 +1212,8 @@ ul .sidebar-group-li .icon {
background-color: #1873a2;
border: 1px solid #7C7D7B;
box-shadow: 0 0 8px #BDBDBD;
-moz-box-shadow: 3px 3px 4px #959494;
-webkit-box-shadow: 3px 3px 4px #959494;
-moz-box-shadow: 0 0 8px #BDBDBD;
-webkit-box-shadow: 0 0 8px #BDBDBD;
border-radius: 5px;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
@ -1233,11 +1270,12 @@ ul .sidebar-group-li .icon {
border-bottom: 0px;
padding: 5px;
}
#profile-jot-acl-wrapper {
margin: 0px 10px;
border: 1px solid #eeeeee;
border-top: 0px;
display:block!important;
display: block !important;
}
#profile-video-wrapper,
@ -1337,6 +1375,13 @@ ul .sidebar-group-li .icon {
/* = Posts = */
/* ========= */
.wall-item-name {
font-style: bold !important;
border: 0px !important;
border-radius: 0px !important;
box-shadow: none !important;
}
.wall-item-outside-wrapper {
max-width: 100%;
border-bottom: 1px solid #dedede;
@ -1345,13 +1390,13 @@ ul .sidebar-group-li .icon {
padding-right: 10px;
padding-left: 12px;
background: none repeat scroll 0 0 #FFFFFF;
border: 1px solid #CDCDCD;
border: 1px solid #7C7D7B;
border-radius: 5px;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
box-shadow: 0 0 8px #BDBDBD;
-moz-box-shadow: 3px 3px 4px #959494;
-webkit-box-shadow: 3px 3px 4px #959494;
-moz-box-shadow: 0 0 8px #BDBDBD;
-webkit-box-shadow: 0 0 8px #BDBDBD;
}
.wall-item-outside-wrapper-end {
@ -1371,19 +1416,19 @@ ul .sidebar-group-li .icon {
.wall-item-photo-menu-button {
display: none;
text-indent: -99999px;
background: #eeeeee url("images/menu-user-pin.png") no-repeat 75px center;
background: #eeeeee url("images/menu-user-pin.png") no-repeat 35px center;
position: absolute;
overflow: hidden;
height: 20px;
width: 100%;
top: 85px;
left: -1px;
border-right: 1px solid #dddddd;
border-left: 1px solid #dddddd;
border-bottom: 1px solid #dddddd;
box-shadow: 3px 3px 4px #959494;
-moz-box-shadow: 3px 3px 4px #959494;
-webkit-box-shadow: 3px 3px 4px #959494;
top: 82px;
left: 0;
border-right: 1px solid #7C7D7B;
border-left: 1px solid #7C7D7B;
border-bottom: 1px solid #7C7D7B;
box-shadow: 0 0 8px #BDBDBD;
-moz-box-shadow: 0 0 8px #BDBDBD;
-webkit-box-shadow: 0 0 8px #BDBDBD;
border-radius: 0px 0px 5px 5px;
-webkit-border-radius: 0px 0px 5px 5px;
-moz-border-radius: 0px 0px 5px 5px;
@ -1397,15 +1442,25 @@ ul .sidebar-group-li .icon {
.wall-item-photo-wrapper {
width: 80px;
height: 80px;
padding: 4px;
padding: 0;
position: relative;
border: 1px solid #dddddd;
/*border: 1px solid #7C7D7B;
border-radius: 5px;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
box-shadow: 3px 3px 4px #959494;
-moz-box-shadow: 3px 3px 4px #959494;
-webkit-box-shadow: 3px 3px 4px #959494;
box-shadow: 0 0 8px #BDBDBD;
-moz-box-shadow: 0 0 8px #BDBDBD;
-webkit-box-shadow: 0 0 8px #BDBDBD;*/
}
.wall-item-photo {
border: 0px solid #7C7D7B;
border-radius: 2px;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
/*box-shadow: 0 0 8px #BDBDBD;
-moz-box-shadow: 0 0 8px #BDBDBD;
-webkit-box-shadow: 0 0 8px #BDBDBD;*/
}
.wall-item-tools {
@ -1505,7 +1560,8 @@ ul .sidebar-group-li .icon {
.wall-item-body img {
max-width: 100%;
height: auto;
height: auto;
border-radius: 0;
}
.wall-item-body p {
@ -1612,20 +1668,20 @@ ul .sidebar-group-li .icon {
color: #2e3436;
border-top: 1px;
background: #eeeeee;
border-right: 1px solid #dddddd;
border-left: 1px solid #dddddd;
border-bottom: 1px solid #dddddd;
border-right: 1px solid #7C7D7B;
border-left: 1px solid #7C7D7B;
border-bottom: 1px solid #7C7D7B;
position: absolute;
left: -1px;
left: 0px;
top: 101px;
display: none;
z-index: 10000;
border-radius: 0px 5px 5px 5px;
-webkit-border-radius: 0px 5px 5px 5px;
-moz-border-radius: 0px 5px 5px 5px;
box-shadow: 3px 3px 4px #959494;
-moz-box-shadow: 3px 3px 4px #959494;
-webkit-box-shadow: 3px 3px 4px #959494;
box-shadow: 0 0 8px #BDBDBD;
-moz-box-shadow: 0 0 8px #BDBDBD;
-webkit-box-shadow: 0 0 8px #BDBDBD;
}
@ -1633,9 +1689,9 @@ ul .sidebar-group-li .icon {
-webkit-border-radius: 0px 5px 5px 5px;
-moz-border-radius: 0px 5px 5px 5px;
border-radius: 0px 5px 5px 5px;
box-shadow: 3px 3px 4px #959494;
-moz-box-shadow: 3px 3px 4px #959494;
-webkit-box-shadow: 3px 3px 4px #959494;
box-shadow: 0 0 8px #BDBDBD;
-moz-box-shadow: 0 0 8px #BDBDBD;
-webkit-box-shadow: 0 0 8px #BDBDBD;
}
.wall-item-photo-menu ul {
@ -1718,16 +1774,22 @@ code {
.wall-item-outside-wrapper.comment .wall-item-photo {
width: 40px!important;
height: 40px!important;
border-radius: 3px;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
}
.wall-item-outside-wrapper.comment .wall-item-photo-wrapper {
width: 40px;
height: 40px;
height: 40px;
border-radius: 3px;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
}
.wall-item-outside-wrapper.comment .wall-item-photo-menu-button {
top: 45px;
background-position: 35px center;
top: 42px;
background-position: 15px center;
}
.wall-item-outside-wrapper.comment .wall-item-info {
@ -1806,7 +1868,7 @@ code {
padding: 5px 5px;
background-color: #a2a2a2;
color: #eeeeec;
border: 1px solid #CDCDCD;
border: 1px solid #7C7D7B;
border-radius: 5px;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
@ -1814,13 +1876,13 @@ code {
.comment-edit-submit:hover {
background-color: #1873a2;
border: 1px solid #CDCDCD;
border: 1px solid #7C7D7B;
border-radius: 5px;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
box-shadow: 0 0 8px #BDBDBD;
-moz-box-shadow: 3px 3px 4px #959494;
-webkit-box-shadow: 3px 3px 4px #959494;
-moz-box-shadow: 0 0 8px #BDBDBD;
-webkit-box-shadow: 0 0 8px #BDBDBD;
}
.comment-edit-submit:active {
@ -1962,10 +2024,10 @@ div[id$="wrapper"] br {
margin-bottom: 70px;
margin-right: 29px;
background-color: #f6f6f6;
border: 1px solid #dddddd;
box-shadow: 3px 3px 4px #959494;
-moz-box-shadow: 3px 3px 4px #959494;
-webkit-box-shadow: 3px 3px 4px #959494;
border: 1px solid #7C7D7B;
box-shadow: 0 0 8px #BDBDBD;
-moz-box-shadow: 0 0 8px #BDBDBD;
-webkit-box-shadow: 0 0 8px #BDBDBD;
}
.profile-match-break,
@ -2004,8 +2066,17 @@ div[id$="wrapper"] br {
}
.photo {
height: 191px!important;
width: 191px!important;
height: 203px !important;
width: 203px !important;
border: 1px solid #7C7D7B;
box-shadow: 0 0 8px #BDBDBD;
-moz-box-shadow: 0 0 8px #BDBDBD;
-webkit-box-shadow: 0 0 8px #BDBDBD;
-moz-box-shadow: 0 0 8px #BDBDBD;
-webkit-box-shadow: 0 0 8px #BDBDBD;
border-radius: 5px;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
}
#side-bar-photos-albums {
@ -2338,6 +2409,10 @@ input #photo_edit_form {
-webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.2), inset 0 0 50px rgba(0, 0, 0, 0.1);
-moz-box-shadow: 0 0 4px rgba(0, 0, 0, 0.2), inset 0 0 50px rgba(0, 0, 0, 0.1);
box-shadow: 0 0 5px rgba(0, 0, 0, 0.2), inset 0 0 50px rgba(0, 0, 0, 0.1);
border: 1px solid #7C7D7B;
border-radius: 5px;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
}
#prvmail-wrapper:before,
@ -2362,6 +2437,10 @@ input #photo_edit_form {
-webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
-moz-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
z-index: -1;
border: 1px solid #7C7D7B;
border-radius: 5px;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
}
#prvmail-wrapper:after,
@ -2374,6 +2453,10 @@ input #photo_edit_form {
-moz-transform: skew(5deg) rotate(5deg);
-ms-transform: skew(5deg) rotate(5deg);
-o-transform: skew(5deg) rotate(5deg);
border: 1px solid #7C7D7B;
border-radius: 5px;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
}
.prvmail-text {
@ -2432,13 +2515,13 @@ margin-left: 0px;
float: left;
padding: 2px;
background-color: #efefef;
border: 1px solid #C5C5C5;
border: 1px solid #7C7D7B;
border-radius: 3px;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
box-shadow: 0 0 8px #BDBDBD;
-moz-box-shadow: 3px 3px 4px #959494;
-webkit-box-shadow: 3px 3px 4px #959494;
-moz-box-shadow: 0 0 8px #BDBDBD;
-webkit-box-shadow: 0 0 8px #BDBDBD;
}
.mail-list-detail {
@ -2447,7 +2530,7 @@ margin-left: 0px;
min-height: 70px;
padding: 20px;
padding-top: 10px;
border: 1px solid #dddddd;
border: 1px solid #7C7D7B;
}
.mail-list-sender-name {
@ -2496,6 +2579,7 @@ margin-left: 0px;
.mail-conv-sender-photo {
width: 64px;
height: 64px;
border-radius: 3px 3px 3px 3px;
}
.mail-conv-sender-name {
@ -2525,7 +2609,7 @@ margin-left: 0px;
margin-bottom: 0px;
vertical-align: middle;
margin: auto;
border: 1px solid #dddddd;
border: 1px solid #7C7D7B;
}
.mail-conv-break {
@ -2541,7 +2625,7 @@ margin-left: 0px;
#prvmail-subject {
font-weight: bold;
border: 1px solid #dddddd;
border: 1px solid #7C7D7B;
}
/* ================= */
@ -2647,6 +2731,13 @@ margin-left: 0px;
.contact-entry-photo {
position: relative;
/*border: 1px solid #7C7D7B;
border-radius: 3px;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
box-shadow: 0 0 8px #BDBDBD;
-moz-box-shadow: 0 0 8px #BDBDBD;
-webkit-box-shadow: 0 0 8px #BDBDBD;*/
}
.contact-entry-edit-links .icon {
@ -2691,8 +2782,8 @@ margin-left: 0px;
background-color: #1873a2;
border: 1px solid #7C7D7B;
box-shadow: 0 0 8px #BDBDBD;
-moz-box-shadow: 3px 3px 4px #959494;
-webkit-box-shadow: 3px 3px 4px #959494;
-moz-box-shadow: 0 0 8px #BDBDBD;
-webkit-box-shadow: 0 0 8px #BDBDBD;
border-radius: 5px;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
@ -2837,8 +2928,8 @@ margin-left: 0px;
background-color: #1873a2;
border: 1px solid #7C7D7B;
box-shadow: 0 0 8px #BDBDBD;
-moz-box-shadow: 3px 3px 4px #959494;
-webkit-box-shadow: 3px 3px 4px #959494;
-moz-box-shadow: 0 0 8px #BDBDBD;
-webkit-box-shadow: 0 0 8px #BDBDBD;
border-radius: 5px;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
@ -2873,7 +2964,7 @@ margin-left: 0px;
font-weight: bold;
font-stretch: semi-expanded;
background-color: #f3f3f3;
border: 1px solid #cdcdcd;
border: 1px solid #7C7D7B;
padding: 10px;
margin-top: 20px;
border-radius: 5px;
@ -3030,8 +3121,8 @@ margin-left: 0px;
background-color: #555753;
border: 1px solid #7C7D7B;
box-shadow: 0 0 8px #BDBDBD;
-moz-box-shadow: 3px 3px 4px #959494;
-webkit-box-shadow: 3px 3px 4px #959494;
-moz-box-shadow: 0 0 8px #BDBDBD;
-webkit-box-shadow: 0 0 8px #BDBDBD;
border-radius: 5px;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
@ -3581,8 +3672,8 @@ margin-left: 0px;
clear: left;
border: 1px solid #7C7D7B;
box-shadow: 0 0 8px #BDBDBD;
-moz-box-shadow: 3px 3px 4px #959494;
-webkit-box-shadow: 3px 3px 4px #959494;
-moz-box-shadow: 0 0 8px #BDBDBD;
-webkit-box-shadow: 0 0 8px #BDBDBD;
border-radius: 5px;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
@ -3627,7 +3718,7 @@ margin-left: 0px;
/* =============== */
.field {
margin-bottom: 10px;
/*margin-bottom: 10px;*/
overflow: auto;
padding-bottom: 0px;
width: 100%;
@ -3645,7 +3736,7 @@ margin-left: 0px;
.field label {
float: left;
width: 200px;
width: 210px;
}
.field checkbox {
@ -3656,7 +3747,7 @@ margin-left: 0px;
.field input,
.field textarea {
width: 400px;
border: 1px solid #CDCDCD;
border: 1px solid #7C7D7B;
border-radius: 5px;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
@ -3715,6 +3806,21 @@ margin-left: 0px;
.sparkle {
cursor: url('lock.cur'), pointer;
width: 100%;
height: auto;
/*border: 1px solid #7C7D7B;
border-radius: 3px;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
box-shadow: 0 0 8px #BDBDBD;
-moz-box-shadow: 0 0 8px #BDBDBD;
-webkit-box-shadow: 0 0 8px #BDBDBD;*/
}
.label {
border: 0px;
border-radius: 0px;
box-shadow: none;
}
.icon {
@ -3967,8 +4073,8 @@ footer {
background-color: #1873a2;
border: 1px solid #7C7D7B;
box-shadow: 0 0 8px #BDBDBD;
-moz-box-shadow: 3px 3px 4px #959494;
-webkit-box-shadow: 3px 3px 4px #959494;
-moz-box-shadow: 0 0 8px #BDBDBD;
-webkit-box-shadow: 0 0 8px #BDBDBD;
border-radius: 5px;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
@ -4097,15 +4203,15 @@ ul.menu-popup {
color: #2e3436;
border-top: 0px;
background: #eeeeee;
border-right: 1px solid #dddddd;
border-left: 1px solid #dddddd;
border-bottom: 1px solid #dddddd;
border-right: 1px solid #7C7D7B;
border-left: 1px solid #7C7D7B;
border-bottom: 1px solid #7C7D7B;
border-radius: 0px 5px 5px 5px;
-webkit-border-radius: 0px 5px 5px 5px;
-moz-border-radius: 0px 5px 5px 5px;
box-shadow: 3px 3px 4px #959494;
-moz-box-shadow: 3px 3px 4px #959494;
-webkit-box-shadow: 3px 3px 4px #959494;
box-shadow: 0 0 8px #BDBDBD;
-moz-box-shadow: 0 0 8px #BDBDBD;
-webkit-box-shadow: 0 0 8px #BDBDBD;
}
.acpopupitem {
@ -4191,7 +4297,7 @@ ul.menu-popup {
#scrollup {
position: fixed;
right: 1px;
bottom: 30px;
bottom: 260px;
z-index: 100;
}
@ -4388,8 +4494,8 @@ div #datebrowse-sidebar.widget {
width: 410px;
border: 1px solid #7C7D7B;
box-shadow: 0 0 8px #BDBDBD;
-moz-box-shadow: 3px 3px 4px #959494;
-webkit-box-shadow: 3px 3px 4px #959494;
-moz-box-shadow: 0 0 8px #BDBDBD;
-webkit-box-shadow: 0 0 8px #BDBDBD;
border-radius: 5px;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
@ -4409,7 +4515,9 @@ div #datebrowse-sidebar.widget {
#collapsed-comments-page-widget {}
.tool {}
.tool {
list-style-type: disc;
}
#logo-text {
}
@ -4425,8 +4533,8 @@ div #datebrowse-sidebar.widget {
.settings-block {
border: 1px solid #7C7D7B;
box-shadow: 0 0 8px #BDBDBD;
-moz-box-shadow: 3px 3px 4px #959494;
-webkit-box-shadow: 3px 3px 4px #959494;
-moz-box-shadow: 0 0 8px #BDBDBD;
-webkit-box-shadow: 0 0 8px #BDBDBD;
border-radius: 5px;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
@ -4475,6 +4583,7 @@ div #datebrowse-sidebar.widget {
#id_remember {
width: auto;
float: right;
}
.field.input.openid {

View file

@ -3,8 +3,9 @@
/*
* Name: Smoothly
* Description: Like coffee with milk. Theme optimized for iPad[2].
* Version: Version 2013-03-12.1
* Author: Alex <https://friendica.pixelbits.de/profile/alex>
* Version: Version 2013-04-1
* Author: Anne Walk
* Author: Devlon Duthied
* Maintainer: Alex <https://friendica.pixelbits.de/profile/alex>
* Screenshot: <a href="screenshot.png">Screenshot</a>
*/

View file

@ -291,9 +291,9 @@ blockquote.shared_content {
body {
font-family: 'Lato', "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 14px;
/* background-color: #ffffff; */
background-color: #ffffff;
/* background-color: #ddd; */
background-color: #F2F2F2;
/* background-color: #F2F2F2; */
color: #2d2d2d;
/* margin: 37px 0px 0px 0px; */
margin: 0px 0px 0px 0px;
@ -1117,7 +1117,7 @@ border-bottom: 1px solid #D2D2D2;
font-size: 14px;
}
.wall-item-container .wall-item-bottom {
opacity: 0.5;
opacity: 0;
-webkit-transition: all 0.2s ease-in-out;
-moz-transition: all 0.2s ease-in-out;
-o-transition: all 0.2s ease-in-out;