diff --git a/boot.php b/boot.php index 94202cd5d..bbcc9d9a6 100644 --- a/boot.php +++ b/boot.php @@ -9,7 +9,7 @@ require_once('include/nav.php'); require_once('include/cache.php'); define ( 'FRIENDICA_PLATFORM', 'Friendica'); -define ( 'FRIENDICA_VERSION', '2.3.1312' ); +define ( 'FRIENDICA_VERSION', '2.3.1318' ); define ( 'DFRN_PROTOCOL_VERSION', '2.23' ); define ( 'DB_UPDATE_VERSION', 1138 ); diff --git a/include/Scrape.php b/include/Scrape.php index 141c90dcf..b20d7d604 100644 --- a/include/Scrape.php +++ b/include/Scrape.php @@ -593,7 +593,7 @@ function probe_url($url, $mode = PROBE_NORMAL) { logger('probe_url: fetch feed: ' . $poll . ' returns: ' . $xml, LOGGER_DATA); $a = get_app(); - logger('probe_url: scrape_feed: headers: ' . $a->get_curl_headers(), $LOGGER_DATA); + logger('probe_url: scrape_feed: headers: ' . $a->get_curl_headers(), LOGGER_DATA); $feed->set_raw_data($xml); diff --git a/include/conversation.php b/include/conversation.php index f4a564742..1b869b91e 100644 --- a/include/conversation.php +++ b/include/conversation.php @@ -342,7 +342,6 @@ function conversation(&$a, $items, $mode, $update, $preview = false) { 'body' => template_escape($body), 'text' => strip_tags(template_escape($body)), 'ago' => (($item['app']) ? sprintf( t('%s from %s'),relative_date($item['created']),$item['app']) : relative_date($item['created'])), - 'lock' => $lock, 'location' => template_escape($location), 'indent' => '', 'owner_name' => template_escape($owner_name), @@ -400,6 +399,7 @@ function conversation(&$a, $items, $mode, $update, $preview = false) { } $comments_collapsed = false; + $comments_seen = 0; $comment_lastcollapsed = false; $comment_firstcollapsed = false; $blowhard = 0; @@ -559,10 +559,10 @@ function conversation(&$a, $items, $mode, $update, $preview = false) { } } - $edpost = (((($profile_owner == local_user()) && ($toplevelpost) && (intval($item['wall']) == 1)) || ($mode === 'notes')) - ? array($a->get_baseurl($ssl_state)."/editpost/".$item['id'], t("Edit")) - : False); - + if(local_user() && link_compare($a->contact['url'],$item['author-link'])) + $edpost = array($a->get_baseurl($ssl_state)."/editpost/".$item['id'], t("Edit")); + else + $edpost = false; $drop = ''; $dropping = false; @@ -709,7 +709,7 @@ function conversation(&$a, $items, $mode, $update, $preview = false) { } $page_template = get_markup_template("conversation.tpl"); - $o .= replace_macros($page_template, array( + $o = replace_macros($page_template, array( '$baseurl' => $a->get_baseurl($ssl_state), '$mode' => $mode, '$user' => $a->user, @@ -1074,7 +1074,6 @@ function find_thread_parent_index($arr,$x) { } function render_location_google($item) { - $location = ''; $location = (($item['location']) ? '' . $item['location'] . '' : ''); $coord = (($item['coord']) ? '' . $item['coord'] . '' : ''); if($coord) { diff --git a/include/items.php b/include/items.php index 85df340d3..0a8bc12c0 100644 --- a/include/items.php +++ b/include/items.php @@ -107,7 +107,7 @@ function get_feed_for(&$a, $dfrn_id, $owner_nick, $last_update, $direction = 0) if(! strlen($last_update)) $last_update = 'now -30 days'; - if(x($category)) { + if(isset($category)) { $sql_extra .= file_tag_file_query('item',$category,'category'); } @@ -588,20 +588,21 @@ function get_atom_elements($feed,$item) { if($rawobj) { $res['object'] = '' . "\n"; - if($rawobj[0]['child'][NAMESPACE_ACTIVITY]['object-type'][0]['data']) { - $res['object-type'] = $rawobj[0]['child'][NAMESPACE_ACTIVITY]['object-type'][0]['data']; - $res['object'] .= '' . $rawobj[0]['child'][NAMESPACE_ACTIVITY]['object-type'][0]['data'] . '' . "\n"; + $child = $rawobj[0]['child']; + if($child[NAMESPACE_ACTIVITY]['object-type'][0]['data']) { + $res['object-type'] = $child[NAMESPACE_ACTIVITY]['object-type'][0]['data']; + $res['object'] .= '' . $child[NAMESPACE_ACTIVITY]['object-type'][0]['data'] . '' . "\n"; } - if($rawobj[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['id'][0]['data']) - $res['object'] .= '' . $rawobj[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['id'][0]['data'] . '' . "\n"; - if($rawobj[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['link']) - $res['object'] .= '' . encode_rel_links($rawobj[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['link']) . '' . "\n"; - if($rawobj[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['title'][0]['data']) - $res['object'] .= '' . $rawobj[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['title'][0]['data'] . '' . "\n"; - if($rawobj[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['content'][0]['data']) { - $body = $rawobj[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['content'][0]['data']; + if(x($child[SIMPLEPIE_NAMESPACE_ATOM_10], 'id') && $child[SIMPLEPIE_NAMESPACE_ATOM_10]['id'][0]['data']) + $res['object'] .= '' . $child[SIMPLEPIE_NAMESPACE_ATOM_10]['id'][0]['data'] . '' . "\n"; + if(x($child[SIMPLEPIE_NAMESPACE_ATOM_10], 'link') && $child[SIMPLEPIE_NAMESPACE_ATOM_10]['link']) + $res['object'] .= '' . encode_rel_links($child[SIMPLEPIE_NAMESPACE_ATOM_10]['link']) . '' . "\n"; + if(x($child[SIMPLEPIE_NAMESPACE_ATOM_10], 'title') && $child[SIMPLEPIE_NAMESPACE_ATOM_10]['title'][0]['data']) + $res['object'] .= '' . $child[SIMPLEPIE_NAMESPACE_ATOM_10]['title'][0]['data'] . '' . "\n"; + if(x($child[SIMPLEPIE_NAMESPACE_ATOM_10], 'content') && $child[SIMPLEPIE_NAMESPACE_ATOM_10]['content'][0]['data']) { + $body = $child[SIMPLEPIE_NAMESPACE_ATOM_10]['content'][0]['data']; if(! $body) - $body = $rawobj[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['summary'][0]['data']; + $body = $child[SIMPLEPIE_NAMESPACE_ATOM_10]['summary'][0]['data']; // preserve a copy of the original body content in case we later need to parse out any microformat information, e.g. events $res['object'] .= '' . xmlify($body) . '' . "\n"; if((strpos($body,'<') !== false) || (strpos($body,'>') !== false)) { @@ -626,20 +627,20 @@ function get_atom_elements($feed,$item) { if($rawobj) { $res['target'] = '' . "\n"; - if($rawobj[0]['child'][NAMESPACE_ACTIVITY]['object-type'][0]['data']) { - $res['target'] .= '' . $rawobj[0]['child'][NAMESPACE_ACTIVITY]['object-type'][0]['data'] . '' . "\n"; + $child = $rawobj[0]['child']; + if($child[NAMESPACE_ACTIVITY]['object-type'][0]['data']) { + $res['target'] .= '' . $child[NAMESPACE_ACTIVITY]['object-type'][0]['data'] . '' . "\n"; } - if($rawobj[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['id'][0]['data']) - $res['target'] .= '' . $rawobj[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['id'][0]['data'] . '' . "\n"; - - if($rawobj[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['link']) - $res['target'] .= '' . encode_rel_links($rawobj[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['link']) . '' . "\n"; - if($rawobj[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['title'][0]['data']) - $res['target'] .= '' . $rawobj[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['title'][0]['data'] . '' . "\n"; - if($rawobj[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['content'][0]['data']) { - $body = $rawobj[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['content'][0]['data']; + if(x($child[SIMPLEPIE_NAMESPACE_ATOM_10], 'id') && $child[SIMPLEPIE_NAMESPACE_ATOM_10]['id'][0]['data']) + $res['target'] .= '' . $child[SIMPLEPIE_NAMESPACE_ATOM_10]['id'][0]['data'] . '' . "\n"; + if(x($child[SIMPLEPIE_NAMESPACE_ATOM_10], 'link') && $child[SIMPLEPIE_NAMESPACE_ATOM_10]['link']) + $res['target'] .= '' . encode_rel_links($child[SIMPLEPIE_NAMESPACE_ATOM_10]['link']) . '' . "\n"; + if(x($child[SIMPLEPIE_NAMESPACE_ATOM_10], 'data') && $child[SIMPLEPIE_NAMESPACE_ATOM_10]['title'][0]['data']) + $res['target'] .= '' . $child[SIMPLEPIE_NAMESPACE_ATOM_10]['title'][0]['data'] . '' . "\n"; + if(x($child[SIMPLEPIE_NAMESPACE_ATOM_10], 'data') && $child[SIMPLEPIE_NAMESPACE_ATOM_10]['content'][0]['data']) { + $body = $child[SIMPLEPIE_NAMESPACE_ATOM_10]['content'][0]['data']; if(! $body) - $body = $rawobj[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['summary'][0]['data']; + $body = $child[SIMPLEPIE_NAMESPACE_ATOM_10]['summary'][0]['data']; // preserve a copy of the original body content in case we later need to parse out any microformat information, e.g. events $res['target'] .= '' . xmlify($body) . '' . "\n"; if((strpos($body,'<') !== false) || (strpos($body,'>') !== false)) { @@ -1475,7 +1476,7 @@ function consume_feed($xml,$importer,&$contact, &$hub, $datedir = 0, $pass = 0) if(! $item['deleted']) logger('consume_feed: deleting item ' . $item['id'] . ' uri=' . $item['uri'], LOGGER_DEBUG); - if(($item['verb'] === ACTIVITY_TAG) && ($item['object-type'] === ACTVITY_OBJ_TAGTERM)) { + if(($item['verb'] === ACTIVITY_TAG) && ($item['object-type'] === ACTIVITY_OBJ_TAGTERM)) { $xo = parse_xml_string($item['object'],false); $xt = parse_xml_string($item['target'],false); if($xt->type === ACTIVITY_OBJ_NOTE) { @@ -2091,7 +2092,7 @@ function local_delivery($importer,$data) { logger('local_delivery: deleting item ' . $item['id'] . ' uri=' . $item['uri'], LOGGER_DEBUG); - if(($item['verb'] === ACTIVITY_TAG) && ($item['object-type'] === ACTVITY_OBJ_TAGTERM)) { + if(($item['verb'] === ACTIVITY_TAG) && ($item['object-type'] === ACTIVITY_OBJ_TAGTERM)) { $xo = parse_xml_string($item['object'],false); $xt = parse_xml_string($item['target'],false); @@ -2229,6 +2230,34 @@ function local_delivery($importer,$data) { $datarray = get_atom_elements($feed,$item); + $r = q("SELECT `id`, `uid`, `last-child`, `edited`, `body` FROM `item` WHERE `uri` = '%s' AND `uid` = %d LIMIT 1", + dbesc($item_id), + intval($importer['importer_uid']) + ); + + // Update content if 'updated' changes + + if(count($r)) { + $iid = $r[0]['id']; + if((x($datarray,'edited') !== false) && (datetime_convert('UTC','UTC',$datarray['edited']) !== $r[0]['edited'])) { + logger('received updated comment' , LOGGER_DEBUG); + $r = q("UPDATE `item` SET `title` = '%s', `body` = '%s', `tag` = '%s', `edited` = '%s' WHERE `uri` = '%s' AND `uid` = %d LIMIT 1", + dbesc($datarray['title']), + dbesc($datarray['body']), + dbesc($datarray['tag']), + dbesc(datetime_convert('UTC','UTC',$datarray['edited'])), + dbesc($item_id), + intval($importer['importer_uid']) + ); + + proc_run('php',"include/notifier.php","comment-import",$iid); + + } + + continue; + } + + // TODO: make this next part work against both delivery threads of a community post // if((! link_compare($datarray['author-link'],$importer['url'])) && (! $community)) { @@ -2448,7 +2477,7 @@ function local_delivery($importer,$data) { // find out if our user is involved in this conversation and wants to be notified. - if($datarray['type'] != 'activity') { + if(!x($datarray['type']) || $datarray['type'] != 'activity') { $myconv = q("SELECT `author-link`, `author-avatar`, `parent` FROM `item` WHERE `parent-uri` = '%s' AND `uid` = %d AND `parent` != 0 ", dbesc($parent_uri), @@ -3020,7 +3049,7 @@ function item_expire($uid,$days) { function drop_items($items) { $uid = 0; - if((! local_user()) && (! $remote_user())) + if(! local_user() && ! remote_user()) return; if(count($items)) { diff --git a/include/network.php b/include/network.php index 8c678a443..4bec4a172 100644 --- a/include/network.php +++ b/include/network.php @@ -172,7 +172,7 @@ function post_url($url,$params, $headers = null, &$redirects = 0, $timeout = 0) $url_parsed = @parse_url($newurl); if (isset($url_parsed)) { $redirects++; - return fetch_url($newurl,$binary,$redirects,$timeout); + return fetch_url($newurl,false,$redirects,$timeout); } } $a->set_curl_code($http_code); @@ -206,6 +206,7 @@ function xml_status($st, $message = '') { if(! function_exists('http_status_exit')) { function http_status_exit($val) { + $err = ''; if($val >= 400) $err = 'Error'; if($val >= 200 && $val < 300) @@ -452,7 +453,7 @@ function lrdd($uri, $debug = false) { logger('lrdd: parse error: ' . $e); } - if($dom) { + if(isset($dom) && $dom) { $items = $dom->getElementsByTagName('link'); foreach($items as $item) { $x = $item->getAttribute('rel'); diff --git a/include/pgettext.php b/include/pgettext.php index 83e76ba9d..a079a4687 100644 --- a/include/pgettext.php +++ b/include/pgettext.php @@ -49,6 +49,7 @@ function get_language() { if(isset($preferred)) return $preferred; + $a = get_app(); return ((isset($a->config['system']['language'])) ? $a->config['system']['language'] : 'en'); }} diff --git a/include/profile_advanced.php b/include/profile_advanced.php index 004a58524..bb9850cd0 100644 --- a/include/profile_advanced.php +++ b/include/profile_advanced.php @@ -2,7 +2,7 @@ function advanced_profile(&$a) { - $o .= ''; + $o = ''; $o .= '

' . t('Profile') . '

'; @@ -69,13 +69,12 @@ function advanced_profile(&$a) { if($txt = prepare_text($a->profile['work'])) $profile['work'] = array( t('Work/employment:'), $txt); if($txt = prepare_text($a->profile['education'])) $profile['education'] = array( t('School/education:'), $txt ); - } - - - return replace_macros($tpl, array( - '$title' => t('Profile'), - '$profile' => $profile, - )); + return replace_macros($tpl, array( + '$title' => t('Profile'), + '$profile' => $profile, + )); + } + return ''; } diff --git a/include/security.php b/include/security.php index fc816e5d7..a92400b5c 100755 --- a/include/security.php +++ b/include/security.php @@ -339,6 +339,7 @@ function check_form_security_token_redirectOnErr($err_redirect, $typename = '', } function check_form_security_token_ForbiddenOnErr($typename = '', $formname = 'form_security_token') { if (!check_form_security_token($typename, $formname)) { + $a = get_app(); logger('check_form_security_token failed: user ' . $a->user['guid'] . ' - form element ' . $typename); logger('check_form_security_token failed: _REQUEST data: ' . print_r($_REQUEST, true), LOGGER_DATA); header('HTTP/1.1 403 Forbidden'); diff --git a/js/main.js b/js/main.js index 7a90fa910..ac238bf6a 100644 --- a/js/main.js +++ b/js/main.js @@ -17,6 +17,7 @@ } + var src = null; var prev = null; var livetime = null; @@ -558,12 +559,36 @@ function notifyMarkAll() { } +// code from http://www.tinymce.com/wiki.php/How-to_implement_a_custom_file_browser +function fcFileBrowser (field_name, url, type, win) { + /* TODO: If you work with sessions in PHP and your client doesn't accept cookies you might need to carry + the session name and session ID in the request string (can look like this: "?PHPSESSID=88p0n70s9dsknra96qhuk6etm5"). + These lines of code extract the necessary parameters and add them back to the filebrowser URL again. */ + + + var cmsURL = baseurl+"/fbrowser/"+type+"/"; + + tinyMCE.activeEditor.windowManager.open({ + file : cmsURL, + title : 'File Browser', + width : 420, // Your dimensions may differ - toy around with them! + height : 400, + resizable : "yes", + inline : "yes", // This parameter only has an effect if you use the inlinepopups plugin! + close_previous : "no" + }, { + window : win, + input : field_name + }); + return false; + } + function setupFieldRichtext(){ tinyMCE.init({ theme : "advanced", mode : "specific_textareas", editor_selector: "fieldRichtext", - plugins : "bbcode,paste", + plugins : "bbcode,paste, inlinepopups", theme_advanced_buttons1 : "bold,italic,underline,undo,redo,link,unlink,image,forecolor,formatselect,code", theme_advanced_buttons2 : "", theme_advanced_buttons3 : "", @@ -580,6 +605,7 @@ function setupFieldRichtext(){ convert_urls: false, content_css: baseurl+"/view/custom_tinymce.css", theme_advanced_path : false, + file_browser_callback : "fcFileBrowser", }); } diff --git a/mod/admin.php b/mod/admin.php index 7386dc5a3..cdc45c8e3 100644 --- a/mod/admin.php +++ b/mod/admin.php @@ -4,7 +4,11 @@ * Friendica admin */ require_once("include/remoteupdate.php"); - + + +/** + * @param App $a + */ function admin_post(&$a){ @@ -67,6 +71,10 @@ function admin_post(&$a){ return; // NOTREACHED } +/** + * @param App $a + * @return string + */ function admin_content(&$a) { if(!is_site_admin()) { @@ -74,7 +82,7 @@ function admin_content(&$a) { } if(x($_SESSION,'submanage') && intval($_SESSION['submanage'])) - return; + return ""; /** * Side bar links @@ -147,6 +155,7 @@ function admin_content(&$a) { if(is_ajax()) { echo $o; killme(); + return ''; } else { return $o; } @@ -155,6 +164,8 @@ function admin_content(&$a) { /** * Admin Summary Page + * @param App $a + * @return string */ function admin_page_summary(&$a) { $r = q("SELECT `page-flags`, COUNT(uid) as `count` FROM `user` GROUP BY `page-flags`"); @@ -188,12 +199,15 @@ function admin_page_summary(&$a) { /** * Admin Site Page + * @param App $a */ function admin_page_site_post(&$a){ if (!x($_POST,"page_site")){ return; } + check_form_security_token_redirectOnErr('/admin/site', 'admin_site'); + $sitename = ((x($_POST,'sitename')) ? notags(trim($_POST['sitename'])) : ''); $banner = ((x($_POST,'banner')) ? trim($_POST['banner']) : false); $language = ((x($_POST,'language')) ? notags(trim($_POST['language'])) : ''); @@ -298,7 +312,7 @@ function admin_page_site_post(&$a){ } else { set_config('system','directory_submit_url', $global_directory); } - set_config('system','directory_search_url', $global_search_url); + set_config('system','block_extended_register', $no_multi_reg); set_config('system','no_openid', $no_openid); set_config('system','no_regfullname', $no_regfullname); @@ -317,7 +331,11 @@ function admin_page_site_post(&$a){ return; // NOTREACHED } - + +/** + * @param App $a + * @return string + */ function admin_page_site(&$a) { /* Installed langs */ @@ -408,6 +426,7 @@ function admin_page_site(&$a) { '$proxy' => array('proxy', t("Proxy URL"), get_config('system','proxy'), ""), '$timeout' => array('timeout', t("Network timeout"), (x(get_config('system','curl_timeout'))?get_config('system','curl_timeout'):60), t("Value is in seconds. Set to 0 for unlimited (not recommended).")), + '$form_security_token' => get_form_security_token("admin_site"), )); @@ -416,11 +435,15 @@ function admin_page_site(&$a) { /** * Users admin page + * + * @param App $a */ function admin_page_users_post(&$a){ $pending = ( x($_POST, 'pending') ? $_POST['pending'] : Array() ); $users = ( x($_POST, 'user') ? $_POST['user'] : Array() ); - + + check_form_security_token_redirectOnErr('/admin/users', 'admin_users'); + if (x($_POST,'page_users_block')){ foreach($users as $uid){ q("UPDATE `user` SET `blocked`=1-`blocked` WHERE `uid`=%s", @@ -452,7 +475,11 @@ function admin_page_users_post(&$a){ goaway($a->get_baseurl(true) . '/admin/users' ); return; // NOTREACHED } - + +/** + * @param App $a + * @return string + */ function admin_page_users(&$a){ if ($a->argc>2) { $uid = $a->argv[3]; @@ -460,10 +487,11 @@ function admin_page_users(&$a){ if (count($user)==0){ notice( 'User not found' . EOL); goaway($a->get_baseurl(true) . '/admin/users' ); - return; // NOTREACHED + return ''; // NOTREACHED } switch($a->argv[2]){ case "delete":{ + check_form_security_token_redirectOnErr('/admin/users', 'admin_users', 't'); // delete user require_once("include/Contact.php"); user_remove($uid); @@ -471,6 +499,7 @@ function admin_page_users(&$a){ notice( sprintf(t("User '%s' deleted"), $user[0]['username']) . EOL); }; break; case "block":{ + check_form_security_token_redirectOnErr('/admin/users', 'admin_users', 't'); q("UPDATE `user` SET `blocked`=%d WHERE `uid`=%s", intval( 1-$user[0]['blocked'] ), intval( $uid ) @@ -479,7 +508,7 @@ function admin_page_users(&$a){ }; break; } goaway($a->get_baseurl(true) . '/admin/users' ); - return; // NOTREACHED + return ''; // NOTREACHED } @@ -555,6 +584,7 @@ function admin_page_users(&$a){ '$confirm_delete_multi' => t('Selected users will be deleted!\n\nEverything these users had posted on this site will be permanently deleted!\n\nAre you sure?'), '$confirm_delete' => t('The user {0} will be deleted!\n\nEverything this user has posted on this site will be permanently deleted!\n\nAre you sure?'), + '$form_security_token' => get_form_security_token("admin_users"), // values // '$baseurl' => $a->get_baseurl(true), @@ -567,10 +597,12 @@ function admin_page_users(&$a){ } -/* +/** * Plugins admin page + * + * @param App $a + * @return string */ - function admin_page_plugins(&$a){ /** @@ -580,10 +612,12 @@ function admin_page_plugins(&$a){ $plugin = $a->argv[2]; if (!is_file("addon/$plugin/$plugin.php")){ notice( t("Item not found.") ); - return; + return ''; } if (x($_GET,"a") && $_GET['a']=="t"){ + check_form_security_token_redirectOnErr('/admin/plugins', 'admin_themes', 't'); + // Toggle plugin status $idx = array_search($plugin, $a->plugins); if ($idx !== false){ @@ -597,7 +631,7 @@ function admin_page_plugins(&$a){ } set_config("system","addon", implode(", ",$a->plugins)); goaway($a->get_baseurl(true) . '/admin/plugins' ); - return; // NOTREACHED + return ''; // NOTREACHED } // display plugin details require_once('library/markdown.php'); @@ -641,7 +675,9 @@ function admin_page_plugins(&$a){ '$admin_form' => $admin_form, '$function' => 'plugins', '$screenshot' => '', - '$readme' => $readme + '$readme' => $readme, + + '$form_security_token' => get_form_security_token("admin_themes"), )); } @@ -670,10 +706,16 @@ function admin_page_plugins(&$a){ '$submit' => t('Submit'), '$baseurl' => $a->get_baseurl(true), '$function' => 'plugins', - '$plugins' => $plugins + '$plugins' => $plugins, + '$form_security_token' => get_form_security_token("admin_themes"), )); } +/** + * @param array $themes + * @param string $th + * @param int $result + */ function toggle_theme(&$themes,$th,&$result) { for($x = 0; $x < count($themes); $x ++) { if($themes[$x]['name'] === $th) { @@ -689,6 +731,11 @@ function toggle_theme(&$themes,$th,&$result) { } } +/** + * @param array $themes + * @param string $th + * @return int + */ function theme_status($themes,$th) { for($x = 0; $x < count($themes); $x ++) { if($themes[$x]['name'] === $th) { @@ -702,9 +749,12 @@ function theme_status($themes,$th) { } return 0; } - +/** + * @param array $themes + * @return string + */ function rebuild_theme_table($themes) { $o = ''; if(count($themes)) { @@ -720,10 +770,12 @@ function rebuild_theme_table($themes) { } -/* +/** * Themes admin page + * + * @param App $a + * @return string */ - function admin_page_themes(&$a){ $allowed_themes_str = get_config('system','allowed_themes'); @@ -740,7 +792,7 @@ function admin_page_themes(&$a){ foreach($files as $file) { $f = basename($file); $is_experimental = intval(file_exists($file . '/experimental')); - $is_unsupported = 1-(intval(file_exists($file . '/unsupported'))); + $is_supported = 1-(intval(file_exists($file . '/unsupported'))); // Is not used yet $is_allowed = intval(in_array($f,$allowed_themes)); $themes[] = array('name' => $f, 'experimental' => $is_experimental, 'supported' => $is_supported, 'allowed' => $is_allowed); } @@ -748,7 +800,7 @@ function admin_page_themes(&$a){ if(! count($themes)) { notice( t('No themes found.')); - return; + return ''; } /** @@ -759,10 +811,11 @@ function admin_page_themes(&$a){ $theme = $a->argv[2]; if(! is_dir("view/theme/$theme")){ notice( t("Item not found.") ); - return; + return ''; } if (x($_GET,"a") && $_GET['a']=="t"){ + check_form_security_token_redirectOnErr('/admin/themes', 'admin_themes', 't'); // Toggle theme status @@ -775,7 +828,7 @@ function admin_page_themes(&$a){ set_config('system','allowed_themes',$s); goaway($a->get_baseurl(true) . '/admin/themes' ); - return; // NOTREACHED + return ''; // NOTREACHED } // display theme details @@ -826,7 +879,9 @@ function admin_page_themes(&$a){ '$str_author' => t('Author: '), '$str_maintainer' => t('Maintainer: '), '$screenshot' => $screenshot, - '$readme' => $readme + '$readme' => $readme, + + '$form_security_token' => get_form_security_token("admin_themes"), )); } @@ -852,17 +907,21 @@ function admin_page_themes(&$a){ '$function' => 'themes', '$plugins' => $xthemes, '$experimental' => t('[Experimental]'), - '$unsupported' => t('[Unsupported]') + '$unsupported' => t('[Unsupported]'), + '$form_security_token' => get_form_security_token("admin_themes"), )); } /** * Logs admin page + * + * @param App $a */ function admin_page_logs_post(&$a) { if (x($_POST,"page_logs")) { + check_form_security_token_redirectOnErr('/admin/logs', 'admin_logs'); $logfile = ((x($_POST,'logfile')) ? notags(trim($_POST['logfile'])) : ''); $debugging = ((x($_POST,'debugging')) ? true : false); @@ -879,7 +938,11 @@ function admin_page_logs_post(&$a) { goaway($a->get_baseurl(true) . '/admin/logs' ); return; // NOTREACHED } - + +/** + * @param App $a + * @return string + */ function admin_page_logs(&$a){ $log_choices = Array( @@ -937,9 +1000,14 @@ readable."); '$debugging' => array('debugging', t("Debugging"),get_config('system','debugging'), ""), '$logfile' => array('logfile', t("Log file"), get_config('system','logfile'), t("Must be writable by web server. Relative to your Friendica top-level directory.")), '$loglevel' => array('loglevel', t("Log level"), get_config('system','loglevel'), "", $log_choices), + + '$form_security_token' => get_form_security_token("admin_logs"), )); } +/** + * @param App $a + */ function admin_page_remoteupdate_post(&$a) { // this function should be called via ajax post if(!is_site_admin()) { @@ -958,6 +1026,10 @@ function admin_page_remoteupdate_post(&$a) { killme(); } +/** + * @param App $a + * @return string + */ function admin_page_remoteupdate(&$a) { if(!is_site_admin()) { return login(false); diff --git a/mod/fbrowser.php b/mod/fbrowser.php new file mode 100644 index 000000000..66ff9252e --- /dev/null +++ b/mod/fbrowser.php @@ -0,0 +1,99 @@ + + */ + +/** + * @param App $a + */ +function fbrowser_content($a){ + + if (!local_user()) + killme(); + + if ($a->argc==1) + killme(); + + //echo "
"; var_dump($a->argv); killme();	
+	
+	switch($a->argv[1]){
+		case "image":
+			$path = array( array($a->get_baseurl()."/fbrowser/image/", t("Photos")));
+			$albums = false;
+			$sql_extra = "";
+			$sql_extra2 = " ORDER BY created DESC LIMIT 0, 10";
+			
+			if ($a->argc==2){
+				$albums = q("SELECT distinct(`album`) AS `album` FROM `photo` WHERE `uid` = %d ",
+					intval(local_user())
+				);
+				// anon functions only from 5.3.0... meglio tardi che mai..
+				function folder1($el){return array(bin2hex($el['album']),$el['album']);}	
+				$albums = array_map( "folder1" , $albums);
+				
+			}
+			
+			$album = "";
+			if ($a->argc==3){
+				$album = hex2bin($a->argv[2]);
+				$sql_extra = sprintf("AND `album` = '%s' ",dbesc($album));
+				$sql_extra2 = "";
+				$path[]=array($a->get_baseurl()."/fbrowser/image/".$a->argv[2]."/", $album);
+			}
+				
+			$r = q("SELECT `resource-id`, `id`, `filename`, min(`scale`) AS `hiq`,max(`scale`) AS `loq`, `desc`  
+					FROM `photo` WHERE `uid` = %d $sql_extra
+					GROUP BY `resource-id` $sql_extra2",
+				intval(local_user())					
+			);
+			
+			
+			function files1($rr){ global $a; return array( $a->get_baseurl() . '/photo/' . $rr['resource-id'] . '-' . $rr['hiq'] . '.jpg', template_escape($rr['filename']), $a->get_baseurl() . '/photo/' . $rr['resource-id'] . '-' . $rr['loq'] . '.jpg');  }
+			$files = array_map("files1", $r);
+			
+			$tpl = get_markup_template("filebrowser.tpl");
+			echo replace_macros($tpl, array(
+				'$type' => 'image',
+				'$baseurl' => $a->get_baseurl(),
+				'$path' => $path,
+				'$folders' => $albums,
+				'$files' =>$files,
+			));
+				
+				
+			break;
+		case "file":
+			if ($a->argc==2){
+				$files = q("SELECT id, filename, filetype FROM `attach` WHERE `uid` = %d ",
+					intval(local_user())
+				);
+				
+				function files2($rr){ global $a; 
+					list($m1,$m2) = explode("/",$rr['filetype']);
+					$filetype = ( (file_exists("images/icons/$m1.png"))?$m1:"zip");
+					return array( $a->get_baseurl() . '/attach/' . $rr['id'], template_escape($rr['filename']), $a->get_baseurl() . '/images/icons/16/' . $filetype . '.png'); 
+				}
+				$files = array_map("files2", $files);
+				//echo "
"; var_dump($files); killme();
+			
+							
+				$tpl = get_markup_template("filebrowser.tpl");
+				echo replace_macros($tpl, array(
+					'$type' => 'file',
+					'$baseurl' => $a->get_baseurl(),
+					'$path' => array( array($a->get_baseurl()."/fbrowser/image/", t("Files")) ),
+					'$folders' => false,
+					'$files' =>$files,
+				));
+				
+			}
+		
+			break;
+	}
+	
+
+	killme();
+	
+}
diff --git a/mod/install.php b/mod/install.php
index 2eb98ee91..6f5552076 100644
--- a/mod/install.php
+++ b/mod/install.php
@@ -380,9 +380,9 @@ function check_funcs(&$checks) {
 	
 	if(function_exists('apache_get_modules')){
 		if (! in_array('mod_rewrite',apache_get_modules())) {
-			check_add($ck_funcs, t('Apace mod_rewrite module'), false, true, t('Error: Apache webserver mod-rewrite module is required but not installed.'));
+			check_add($ck_funcs, t('Apache mod_rewrite module'), false, true, t('Error: Apache webserver mod-rewrite module is required but not installed.'));
 		} else {
-			check_add($ck_funcs, t('Apace mod_rewrite module'), true, true, "");
+			check_add($ck_funcs, t('Apache mod_rewrite module'), true, true, "");
 		}
 	}
 	if(! function_exists('curl_init')){
@@ -464,3 +464,6 @@ function load_database($db) {
 	}
 	return $errors;
 }
+
+
+
diff --git a/mod/photo.php b/mod/photo.php
index ec53af899..1d38fe8e4 100644
--- a/mod/photo.php
+++ b/mod/photo.php
@@ -170,7 +170,7 @@ function photo_init(&$a) {
 	}
 
 	// Writing in cachefile
-	if ($cachefile != '')
+	if (isset($cachefile) && $cachefile != '')
 		file_put_contents($cachefile, $data);
 
 	if(function_exists('header_remove')) {
diff --git a/mod/photos.php b/mod/photos.php
index 2a808cb41..8da94841e 100644
--- a/mod/photos.php
+++ b/mod/photos.php
@@ -330,7 +330,6 @@ function photos_post(&$a) {
 			// Create item container
 
 			$title = '';
-			$basename = basename($filename);
 			$uri = item_new_uri($a->get_hostname(),$page_owner_uid);
 
 			$arr = array();
diff --git a/mod/wall_attach.php b/mod/wall_attach.php
index bee7c29dc..03d9f5105 100644
--- a/mod/wall_attach.php
+++ b/mod/wall_attach.php
@@ -98,8 +98,13 @@ function wall_attach_post(&$a) {
 		killme();
 	}
 
-	echo  '

[attachment]' . $r[0]['id'] . '[/attachment]' . '
'; + $lf = '
'; + if(local_user() && intval(get_pconfig(local_user(),'system','plaintext'))) + $lf = "\n"; + + echo $lf . $lf . '[attachment]' . $r[0]['id'] . '[/attachment]' . $lf; + killme(); // NOTREACHED } diff --git a/util/messages.po b/util/messages.po index 46011deed..d499f45dd 100644 --- a/util/messages.po +++ b/util/messages.po @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: 2.3.1312\n" +"Project-Id-Version: 2.3.1318\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-04-14 10:00-0700\n" +"POT-Creation-Date: 2012-04-20 10:00-0700\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -36,7 +36,7 @@ msgstr "" #: ../../mod/crepair.php:115 ../../mod/wall_attach.php:44 #: ../../mod/fsuggest.php:78 ../../mod/events.php:110 ../../mod/api.php:26 -#: ../../mod/api.php:31 ../../mod/photos.php:130 ../../mod/photos.php:866 +#: ../../mod/api.php:31 ../../mod/photos.php:130 ../../mod/photos.php:865 #: ../../mod/editpost.php:10 ../../mod/install.php:171 #: ../../mod/notifications.php:66 ../../mod/contacts.php:125 #: ../../mod/settings.php:99 ../../mod/settings.php:514 @@ -55,7 +55,7 @@ msgstr "" #: ../../mod/profiles.php:7 ../../mod/profiles.php:329 #: ../../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:461 ../../include/items.php:3142 +#: ../../addon/facebook/facebook.php:484 ../../include/items.php:3171 #: ../../index.php:309 msgid "Permission denied." msgstr "" @@ -86,7 +86,7 @@ msgid "Return to contact editor" msgstr "" #: ../../mod/crepair.php:148 ../../mod/settings.php:534 -#: ../../mod/settings.php:560 ../../mod/admin.php:544 ../../mod/admin.php:553 +#: ../../mod/settings.php:560 ../../mod/admin.php:573 ../../mod/admin.php:582 msgid "Name" msgstr "" @@ -123,17 +123,17 @@ msgid "New photo from this URL" msgstr "" #: ../../mod/crepair.php:166 ../../mod/fsuggest.php:107 -#: ../../mod/events.php:400 ../../mod/photos.php:901 ../../mod/photos.php:959 -#: ../../mod/photos.php:1194 ../../mod/photos.php:1234 -#: ../../mod/photos.php:1274 ../../mod/photos.php:1305 +#: ../../mod/events.php:400 ../../mod/photos.php:900 ../../mod/photos.php:958 +#: ../../mod/photos.php:1193 ../../mod/photos.php:1233 +#: ../../mod/photos.php:1273 ../../mod/photos.php:1304 #: ../../mod/install.php:251 ../../mod/install.php:289 #: ../../mod/localtime.php:45 ../../mod/contacts.php:325 #: ../../mod/settings.php:532 ../../mod/settings.php:678 #: ../../mod/settings.php:739 ../../mod/settings.php:930 -#: ../../mod/manage.php:109 ../../mod/group.php:85 ../../mod/admin.php:374 -#: ../../mod/admin.php:541 ../../mod/admin.php:670 ../../mod/admin.php:850 -#: ../../mod/admin.php:930 ../../mod/profiles.php:498 ../../mod/invite.php:119 -#: ../../addon/facebook/facebook.php:552 ../../addon/yourls/yourls.php:76 +#: ../../mod/manage.php:109 ../../mod/group.php:85 ../../mod/admin.php:392 +#: ../../mod/admin.php:570 ../../mod/admin.php:706 ../../mod/admin.php:905 +#: ../../mod/admin.php:993 ../../mod/profiles.php:498 ../../mod/invite.php:119 +#: ../../addon/facebook/facebook.php:574 ../../addon/yourls/yourls.php:76 #: ../../addon/ljpost/ljpost.php:93 ../../addon/nsfw/nsfw.php:57 #: ../../addon/planets/planets.php:158 #: ../../addon/uhremotestorage/uhremotestorage.php:89 @@ -142,9 +142,10 @@ msgstr "" #: ../../addon/oembed.old/oembed.php:41 ../../addon/impressum/impressum.php:80 #: ../../addon/blockem/blockem.php:57 ../../addon/qcomment/qcomment.php:61 #: ../../addon/openstreetmap/openstreetmap.php:70 -#: ../../addon/editplain/editplain.php:84 ../../addon/blackout/blackout.php:94 -#: ../../addon/gravatar/gravatar.php:86 +#: ../../addon/mathjax/mathjax.php:42 ../../addon/editplain/editplain.php:84 +#: ../../addon/blackout/blackout.php:94 ../../addon/gravatar/gravatar.php:86 #: ../../addon/pageheader/pageheader.php:55 ../../addon/ijpost/ijpost.php:93 +#: ../../addon/jappixmini/jappixmini.php:302 #: ../../addon/statusnet/statusnet.php:278 #: ../../addon/statusnet/statusnet.php:292 #: ../../addon/statusnet/statusnet.php:318 @@ -157,11 +158,15 @@ msgstr "" #: ../../addon/twitter/twitter.php:209 ../../addon/twitter/twitter.php:375 #: ../../addon/irc/irc.php:55 ../../addon/blogger/blogger.php:102 #: ../../addon/posterous/posterous.php:90 -#: ../../view/theme/diabook-red/config.php:64 -#: ../../view/theme/diabook-blue/config.php:64 -#: ../../view/theme/diabook/config.php:64 +#: ../../view/theme/diabook-red/config.php:76 +#: ../../view/theme/diabook-blue/config.php:76 +#: ../../view/theme/diabook/diabook-red/config.php:76 +#: ../../view/theme/diabook/diabook-blue/config.php:76 +#: ../../view/theme/diabook/diabook-aerith/config.php:76 +#: ../../view/theme/diabook/diabook-pink/config.php:76 +#: ../../view/theme/diabook/config.php:87 #: ../../view/theme/quattro/config.php:52 -#: ../../view/theme/diabook-aerith/config.php:64 +#: ../../view/theme/diabook-aerith/config.php:76 #: ../../include/conversation.php:555 msgid "Submit" msgstr "" @@ -220,11 +225,15 @@ msgstr "" msgid "link to source" msgstr "" -#: ../../mod/events.php:296 ../../view/theme/diabook-red/theme.php:243 -#: ../../view/theme/diabook-blue/theme.php:243 -#: ../../view/theme/diabook/theme.php:251 -#: ../../view/theme/diabook-aerith/theme.php:244 ../../include/nav.php:52 -#: ../../boot.php:1470 +#: ../../mod/events.php:296 ../../view/theme/diabook-red/theme.php:231 +#: ../../view/theme/diabook-blue/theme.php:231 +#: ../../view/theme/diabook/diabook-red/theme.php:231 +#: ../../view/theme/diabook/diabook-blue/theme.php:231 +#: ../../view/theme/diabook/theme.php:249 +#: ../../view/theme/diabook/diabook-aerith/theme.php:233 +#: ../../view/theme/diabook/diabook-pink/theme.php:233 +#: ../../view/theme/diabook-aerith/theme.php:233 ../../include/nav.php:52 +#: ../../boot.php:1471 msgid "Events" msgstr "" @@ -274,7 +283,7 @@ msgid "Description:" msgstr "" #: ../../mod/events.php:395 ../../include/event.php:37 -#: ../../include/bb2diaspora.php:260 ../../boot.php:1082 +#: ../../include/bb2diaspora.php:260 ../../boot.php:1083 msgid "Location:" msgstr "" @@ -353,17 +362,21 @@ msgstr "" msgid "Photo Albums" msgstr "" -#: ../../mod/photos.php:51 ../../mod/photos.php:151 ../../mod/photos.php:880 -#: ../../mod/photos.php:951 ../../mod/photos.php:966 ../../mod/photos.php:1383 -#: ../../mod/photos.php:1395 ../../addon/communityhome/communityhome.php:110 -#: ../../view/theme/diabook-red/theme.php:113 -#: ../../view/theme/diabook-blue/theme.php:113 -#: ../../view/theme/diabook/theme.php:117 -#: ../../view/theme/diabook-aerith/theme.php:114 +#: ../../mod/photos.php:51 ../../mod/photos.php:151 ../../mod/photos.php:879 +#: ../../mod/photos.php:950 ../../mod/photos.php:965 ../../mod/photos.php:1382 +#: ../../mod/photos.php:1394 ../../addon/communityhome/communityhome.php:110 +#: ../../view/theme/diabook-red/theme.php:115 +#: ../../view/theme/diabook-blue/theme.php:115 +#: ../../view/theme/diabook/diabook-red/theme.php:115 +#: ../../view/theme/diabook/diabook-blue/theme.php:115 +#: ../../view/theme/diabook/theme.php:128 +#: ../../view/theme/diabook/diabook-aerith/theme.php:116 +#: ../../view/theme/diabook/diabook-pink/theme.php:116 +#: ../../view/theme/diabook-aerith/theme.php:116 msgid "Contact Photos" msgstr "" -#: ../../mod/photos.php:58 ../../mod/photos.php:976 ../../mod/photos.php:1425 +#: ../../mod/photos.php:58 ../../mod/photos.php:975 ../../mod/photos.php:1424 msgid "Upload New Photos" msgstr "" @@ -375,17 +388,21 @@ msgstr "" msgid "Contact information unavailable" msgstr "" -#: ../../mod/photos.php:151 ../../mod/photos.php:598 ../../mod/photos.php:951 -#: ../../mod/photos.php:966 ../../mod/register.php:335 +#: ../../mod/photos.php:151 ../../mod/photos.php:597 ../../mod/photos.php:950 +#: ../../mod/photos.php:965 ../../mod/register.php:335 #: ../../mod/register.php:342 ../../mod/register.php:349 #: ../../mod/profile_photo.php:60 ../../mod/profile_photo.php:67 #: ../../mod/profile_photo.php:74 ../../mod/profile_photo.php:174 #: ../../mod/profile_photo.php:252 ../../mod/profile_photo.php:261 #: ../../addon/communityhome/communityhome.php:111 -#: ../../view/theme/diabook-red/theme.php:114 -#: ../../view/theme/diabook-blue/theme.php:114 -#: ../../view/theme/diabook/theme.php:118 -#: ../../view/theme/diabook-aerith/theme.php:115 +#: ../../view/theme/diabook-red/theme.php:116 +#: ../../view/theme/diabook-blue/theme.php:116 +#: ../../view/theme/diabook/diabook-red/theme.php:116 +#: ../../view/theme/diabook/diabook-blue/theme.php:116 +#: ../../view/theme/diabook/theme.php:129 +#: ../../view/theme/diabook/diabook-aerith/theme.php:117 +#: ../../view/theme/diabook/diabook-pink/theme.php:117 +#: ../../view/theme/diabook-aerith/theme.php:117 msgid "Profile Photos" msgstr "" @@ -393,191 +410,195 @@ msgstr "" msgid "Album not found." msgstr "" -#: ../../mod/photos.php:179 ../../mod/photos.php:960 +#: ../../mod/photos.php:179 ../../mod/photos.php:959 msgid "Delete Album" msgstr "" -#: ../../mod/photos.php:242 ../../mod/photos.php:1195 +#: ../../mod/photos.php:242 ../../mod/photos.php:1194 msgid "Delete Photo" msgstr "" -#: ../../mod/photos.php:529 +#: ../../mod/photos.php:528 msgid "was tagged in a" msgstr "" -#: ../../mod/photos.php:529 ../../mod/like.php:127 ../../mod/tagger.php:70 +#: ../../mod/photos.php:528 ../../mod/like.php:127 ../../mod/tagger.php:70 #: ../../addon/communityhome/communityhome.php:163 -#: ../../view/theme/diabook-red/theme.php:85 -#: ../../view/theme/diabook-blue/theme.php:85 -#: ../../view/theme/diabook/theme.php:89 -#: ../../view/theme/diabook-aerith/theme.php:86 ../../include/text.php:1304 +#: ../../view/theme/diabook-red/theme.php:87 +#: ../../view/theme/diabook-blue/theme.php:87 +#: ../../view/theme/diabook/diabook-red/theme.php:87 +#: ../../view/theme/diabook/diabook-blue/theme.php:87 +#: ../../view/theme/diabook/theme.php:100 +#: ../../view/theme/diabook/diabook-aerith/theme.php:88 +#: ../../view/theme/diabook/diabook-pink/theme.php:88 +#: ../../view/theme/diabook-aerith/theme.php:88 ../../include/text.php:1304 #: ../../include/diaspora.php:1654 ../../include/conversation.php:53 #: ../../include/conversation.php:126 msgid "photo" msgstr "" -#: ../../mod/photos.php:529 +#: ../../mod/photos.php:528 msgid "by" msgstr "" -#: ../../mod/photos.php:632 ../../addon/js_upload/js_upload.php:315 +#: ../../mod/photos.php:631 ../../addon/js_upload/js_upload.php:315 msgid "Image exceeds size limit of " msgstr "" -#: ../../mod/photos.php:640 +#: ../../mod/photos.php:639 msgid "Image file is empty." msgstr "" -#: ../../mod/photos.php:654 ../../mod/profile_photo.php:124 +#: ../../mod/photos.php:653 ../../mod/profile_photo.php:124 #: ../../mod/wall_upload.php:69 msgid "Unable to process image." msgstr "" -#: ../../mod/photos.php:674 ../../mod/profile_photo.php:257 +#: ../../mod/photos.php:673 ../../mod/profile_photo.php:257 #: ../../mod/wall_upload.php:88 msgid "Image upload failed." msgstr "" -#: ../../mod/photos.php:760 ../../mod/community.php:16 +#: ../../mod/photos.php:759 ../../mod/community.php:16 #: ../../mod/dfrn_request.php:671 ../../mod/viewcontacts.php:17 #: ../../mod/display.php:7 ../../mod/search.php:71 ../../mod/directory.php:29 msgid "Public access denied." msgstr "" -#: ../../mod/photos.php:770 +#: ../../mod/photos.php:769 msgid "No photos selected" msgstr "" -#: ../../mod/photos.php:847 +#: ../../mod/photos.php:846 msgid "Access to this item is restricted." msgstr "" -#: ../../mod/photos.php:908 +#: ../../mod/photos.php:907 msgid "Upload Photos" msgstr "" -#: ../../mod/photos.php:911 ../../mod/photos.php:955 +#: ../../mod/photos.php:910 ../../mod/photos.php:954 msgid "New album name: " msgstr "" -#: ../../mod/photos.php:912 +#: ../../mod/photos.php:911 msgid "or existing album name: " msgstr "" -#: ../../mod/photos.php:913 +#: ../../mod/photos.php:912 msgid "Do not show a status post for this upload" msgstr "" -#: ../../mod/photos.php:915 ../../mod/photos.php:1190 +#: ../../mod/photos.php:914 ../../mod/photos.php:1189 msgid "Permissions" msgstr "" -#: ../../mod/photos.php:970 +#: ../../mod/photos.php:969 msgid "Edit Album" msgstr "" -#: ../../mod/photos.php:985 ../../mod/photos.php:1408 +#: ../../mod/photos.php:984 ../../mod/photos.php:1407 msgid "View Photo" msgstr "" -#: ../../mod/photos.php:1020 +#: ../../mod/photos.php:1019 msgid "Permission denied. Access to this item may be restricted." msgstr "" -#: ../../mod/photos.php:1022 +#: ../../mod/photos.php:1021 msgid "Photo not available" msgstr "" -#: ../../mod/photos.php:1072 +#: ../../mod/photos.php:1071 msgid "View photo" msgstr "" -#: ../../mod/photos.php:1072 +#: ../../mod/photos.php:1071 msgid "Edit photo" msgstr "" -#: ../../mod/photos.php:1073 +#: ../../mod/photos.php:1072 msgid "Use as profile photo" msgstr "" -#: ../../mod/photos.php:1079 ../../include/conversation.php:480 +#: ../../mod/photos.php:1078 ../../include/conversation.php:480 msgid "Private Message" msgstr "" -#: ../../mod/photos.php:1101 +#: ../../mod/photos.php:1100 msgid "View Full Size" msgstr "" -#: ../../mod/photos.php:1169 +#: ../../mod/photos.php:1168 msgid "Tags: " msgstr "" -#: ../../mod/photos.php:1172 +#: ../../mod/photos.php:1171 msgid "[Remove any tag]" msgstr "" -#: ../../mod/photos.php:1183 +#: ../../mod/photos.php:1182 msgid "New album name" msgstr "" -#: ../../mod/photos.php:1186 +#: ../../mod/photos.php:1185 msgid "Caption" msgstr "" -#: ../../mod/photos.php:1188 +#: ../../mod/photos.php:1187 msgid "Add a Tag" msgstr "" -#: ../../mod/photos.php:1192 +#: ../../mod/photos.php:1191 msgid "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" msgstr "" -#: ../../mod/photos.php:1212 ../../include/conversation.php:529 +#: ../../mod/photos.php:1211 ../../include/conversation.php:529 msgid "I like this (toggle)" msgstr "" -#: ../../mod/photos.php:1213 ../../include/conversation.php:530 +#: ../../mod/photos.php:1212 ../../include/conversation.php:530 msgid "I don't like this (toggle)" msgstr "" -#: ../../mod/photos.php:1214 ../../include/conversation.php:960 +#: ../../mod/photos.php:1213 ../../include/conversation.php:956 msgid "Share" msgstr "" -#: ../../mod/photos.php:1215 ../../mod/editpost.php:104 +#: ../../mod/photos.php:1214 ../../mod/editpost.php:104 #: ../../mod/wallmessage.php:145 ../../mod/message.php:188 -#: ../../mod/message.php:357 ../../include/conversation.php:362 -#: ../../include/conversation.php:702 ../../include/conversation.php:979 +#: ../../mod/message.php:357 ../../include/conversation.php:361 +#: ../../include/conversation.php:698 ../../include/conversation.php:975 msgid "Please wait" msgstr "" -#: ../../mod/photos.php:1231 ../../mod/photos.php:1271 -#: ../../mod/photos.php:1302 ../../include/conversation.php:552 +#: ../../mod/photos.php:1230 ../../mod/photos.php:1270 +#: ../../mod/photos.php:1301 ../../include/conversation.php:552 msgid "This is you" msgstr "" -#: ../../mod/photos.php:1233 ../../mod/photos.php:1273 -#: ../../mod/photos.php:1304 ../../include/conversation.php:554 +#: ../../mod/photos.php:1232 ../../mod/photos.php:1272 +#: ../../mod/photos.php:1303 ../../include/conversation.php:554 #: ../../boot.php:495 msgid "Comment" msgstr "" -#: ../../mod/photos.php:1235 ../../mod/editpost.php:125 -#: ../../include/conversation.php:556 ../../include/conversation.php:997 +#: ../../mod/photos.php:1234 ../../mod/editpost.php:125 +#: ../../include/conversation.php:556 ../../include/conversation.php:993 msgid "Preview" msgstr "" -#: ../../mod/photos.php:1332 ../../mod/settings.php:595 -#: ../../mod/settings.php:676 ../../mod/group.php:168 ../../mod/admin.php:548 +#: ../../mod/photos.php:1331 ../../mod/settings.php:595 +#: ../../mod/settings.php:676 ../../mod/group.php:168 ../../mod/admin.php:577 #: ../../include/conversation.php:318 ../../include/conversation.php:576 msgid "Delete" msgstr "" -#: ../../mod/photos.php:1414 +#: ../../mod/photos.php:1413 msgid "View Album" msgstr "" -#: ../../mod/photos.php:1423 +#: ../../mod/photos.php:1422 msgid "Recent Photos" msgstr "" @@ -585,10 +606,14 @@ msgstr "" msgid "Not available." msgstr "" -#: ../../mod/community.php:30 ../../view/theme/diabook-red/theme.php:245 -#: ../../view/theme/diabook-blue/theme.php:245 -#: ../../view/theme/diabook/theme.php:253 -#: ../../view/theme/diabook-aerith/theme.php:246 ../../include/nav.php:101 +#: ../../mod/community.php:30 ../../view/theme/diabook-red/theme.php:233 +#: ../../view/theme/diabook-blue/theme.php:233 +#: ../../view/theme/diabook/diabook-red/theme.php:233 +#: ../../view/theme/diabook/diabook-blue/theme.php:233 +#: ../../view/theme/diabook/theme.php:251 +#: ../../view/theme/diabook/diabook-aerith/theme.php:235 +#: ../../view/theme/diabook/diabook-pink/theme.php:235 +#: ../../view/theme/diabook-aerith/theme.php:235 ../../include/nav.php:101 msgid "Community" msgstr "" @@ -636,7 +661,7 @@ msgstr "" msgid "Edit post" msgstr "" -#: ../../mod/editpost.php:80 ../../include/conversation.php:946 +#: ../../mod/editpost.php:80 ../../include/conversation.php:942 msgid "Post to Email" msgstr "" @@ -647,17 +672,17 @@ msgstr "" #: ../../mod/editpost.php:96 ../../mod/wallmessage.php:143 #: ../../mod/message.php:186 ../../mod/message.php:355 -#: ../../include/conversation.php:961 +#: ../../include/conversation.php:957 msgid "Upload photo" msgstr "" -#: ../../mod/editpost.php:97 ../../include/conversation.php:963 +#: ../../mod/editpost.php:97 ../../include/conversation.php:959 msgid "Attach file" msgstr "" #: ../../mod/editpost.php:98 ../../mod/wallmessage.php:144 #: ../../mod/message.php:187 ../../mod/message.php:356 -#: ../../include/conversation.php:965 +#: ../../include/conversation.php:961 msgid "Insert web link" msgstr "" @@ -673,35 +698,35 @@ msgstr "" msgid "Insert Vorbis [.ogg] audio" msgstr "" -#: ../../mod/editpost.php:102 ../../include/conversation.php:971 +#: ../../mod/editpost.php:102 ../../include/conversation.php:967 msgid "Set your location" msgstr "" -#: ../../mod/editpost.php:103 ../../include/conversation.php:973 +#: ../../mod/editpost.php:103 ../../include/conversation.php:969 msgid "Clear browser location" msgstr "" -#: ../../mod/editpost.php:105 ../../include/conversation.php:980 +#: ../../mod/editpost.php:105 ../../include/conversation.php:976 msgid "Permission settings" msgstr "" -#: ../../mod/editpost.php:113 ../../include/conversation.php:989 +#: ../../mod/editpost.php:113 ../../include/conversation.php:985 msgid "CC: email addresses" msgstr "" -#: ../../mod/editpost.php:114 ../../include/conversation.php:990 +#: ../../mod/editpost.php:114 ../../include/conversation.php:986 msgid "Public post" msgstr "" -#: ../../mod/editpost.php:117 ../../include/conversation.php:976 +#: ../../mod/editpost.php:117 ../../include/conversation.php:972 msgid "Set title" msgstr "" -#: ../../mod/editpost.php:119 ../../include/conversation.php:978 +#: ../../mod/editpost.php:119 ../../include/conversation.php:974 msgid "Categories (comma-separated list)" msgstr "" -#: ../../mod/editpost.php:120 ../../include/conversation.php:992 +#: ../../mod/editpost.php:120 ../../include/conversation.php:988 msgid "Example: bob@example.com, mary@example.com" msgstr "" @@ -818,7 +843,7 @@ msgstr "" msgid "Confirm" msgstr "" -#: ../../mod/dfrn_request.php:628 ../../include/items.php:2662 +#: ../../mod/dfrn_request.php:628 ../../include/items.php:2691 msgid "[Name Withheld]" msgstr "" @@ -1066,7 +1091,7 @@ msgid "mb_string PHP module" msgstr "" #: ../../mod/install.php:383 ../../mod/install.php:385 -msgid "Apace mod_rewrite module" +msgid "Apache mod_rewrite module" msgstr "" #: ../../mod/install.php:383 @@ -1181,7 +1206,7 @@ msgid "is interested in:" msgstr "" #: ../../mod/match.php:58 ../../mod/suggest.php:59 -#: ../../include/contact_widgets.php:9 ../../boot.php:1026 +#: ../../include/contact_widgets.php:9 ../../boot.php:1027 msgid "Connect" msgstr "" @@ -1229,10 +1254,14 @@ msgstr "" msgid "Personal" msgstr "" -#: ../../mod/notifications.php:90 ../../view/theme/diabook-red/theme.php:239 -#: ../../view/theme/diabook-blue/theme.php:239 -#: ../../view/theme/diabook/theme.php:247 -#: ../../view/theme/diabook-aerith/theme.php:240 ../../include/nav.php:77 +#: ../../mod/notifications.php:90 ../../view/theme/diabook-red/theme.php:227 +#: ../../view/theme/diabook-blue/theme.php:227 +#: ../../view/theme/diabook/diabook-red/theme.php:227 +#: ../../view/theme/diabook/diabook-blue/theme.php:227 +#: ../../view/theme/diabook/theme.php:245 +#: ../../view/theme/diabook/diabook-aerith/theme.php:229 +#: ../../view/theme/diabook/diabook-pink/theme.php:229 +#: ../../view/theme/diabook-aerith/theme.php:229 ../../include/nav.php:77 #: ../../include/nav.php:115 msgid "Home" msgstr "" @@ -1281,7 +1310,7 @@ msgid "if applicable" msgstr "" #: ../../mod/notifications.php:157 ../../mod/notifications.php:204 -#: ../../mod/admin.php:546 +#: ../../mod/admin.php:575 msgid "Approve" msgstr "" @@ -1478,12 +1507,12 @@ msgid "View all contacts" msgstr "" #: ../../mod/contacts.php:303 ../../mod/contacts.php:350 -#: ../../mod/admin.php:550 +#: ../../mod/admin.php:579 msgid "Unblock" msgstr "" #: ../../mod/contacts.php:303 ../../mod/contacts.php:350 -#: ../../mod/admin.php:549 +#: ../../mod/admin.php:578 msgid "Block" msgstr "" @@ -1552,7 +1581,7 @@ msgstr "" msgid "Update public posts" msgstr "" -#: ../../mod/contacts.php:347 ../../mod/admin.php:979 +#: ../../mod/contacts.php:347 ../../mod/admin.php:1051 msgid "Update now" msgstr "" @@ -1609,10 +1638,14 @@ msgstr "" msgid "Edit contact" msgstr "" -#: ../../mod/contacts.php:529 ../../view/theme/diabook-red/theme.php:241 -#: ../../view/theme/diabook-blue/theme.php:241 -#: ../../view/theme/diabook/theme.php:249 -#: ../../view/theme/diabook-aerith/theme.php:242 ../../include/nav.php:139 +#: ../../mod/contacts.php:529 ../../view/theme/diabook-red/theme.php:229 +#: ../../view/theme/diabook-blue/theme.php:229 +#: ../../view/theme/diabook/diabook-red/theme.php:229 +#: ../../view/theme/diabook/diabook-blue/theme.php:229 +#: ../../view/theme/diabook/theme.php:247 +#: ../../view/theme/diabook/diabook-aerith/theme.php:231 +#: ../../view/theme/diabook/diabook-pink/theme.php:231 +#: ../../view/theme/diabook-aerith/theme.php:231 ../../include/nav.php:139 msgid "Contacts" msgstr "" @@ -1645,9 +1678,9 @@ msgstr "" #: ../../mod/lostpass.php:45 ../../mod/lostpass.php:107 #: ../../mod/register.php:388 ../../mod/register.php:442 #: ../../mod/regmod.php:54 ../../mod/dfrn_confirm.php:732 -#: ../../addon/facebook/facebook.php:622 -#: ../../addon/facebook/facebook.php:1076 -#: ../../addon/testdrive/testdrive.php:58 ../../include/items.php:2671 +#: ../../addon/facebook/facebook.php:650 +#: ../../addon/facebook/facebook.php:1136 +#: ../../addon/testdrive/testdrive.php:58 ../../include/items.php:2700 msgid "Administrator" msgstr "" @@ -1725,8 +1758,8 @@ msgstr "" msgid "Export personal data" msgstr "" -#: ../../mod/settings.php:83 ../../mod/admin.php:631 ../../mod/admin.php:817 -#: ../../include/nav.php:137 +#: ../../mod/settings.php:83 ../../mod/admin.php:665 ../../mod/admin.php:870 +#: ../../addon/mathjax/mathjax.php:36 ../../include/nav.php:137 msgid "Settings" msgstr "" @@ -1735,7 +1768,7 @@ msgid "Missing some important data!" msgstr "" #: ../../mod/settings.php:129 ../../mod/settings.php:558 -#: ../../mod/admin.php:89 +#: ../../mod/admin.php:97 msgid "Update" msgstr "" @@ -1779,10 +1812,11 @@ msgstr "" msgid " Cannot change to that email." msgstr "" -#: ../../mod/settings.php:461 ../../addon/facebook/facebook.php:450 +#: ../../mod/settings.php:461 ../../addon/facebook/facebook.php:469 #: ../../addon/impressum/impressum.php:75 #: ../../addon/openstreetmap/openstreetmap.php:80 -#: ../../addon/piwik/piwik.php:105 ../../addon/twitter/twitter.php:370 +#: ../../addon/mathjax/mathjax.php:66 ../../addon/piwik/piwik.php:105 +#: ../../addon/twitter/twitter.php:370 msgid "Settings updated." msgstr "" @@ -1952,7 +1986,7 @@ msgstr "" msgid "Don't show emoticons" msgstr "" -#: ../../mod/settings.php:811 ../../mod/admin.php:162 ../../mod/admin.php:522 +#: ../../mod/settings.php:811 ../../mod/admin.php:173 ../../mod/admin.php:551 msgid "Normal Account" msgstr "" @@ -1960,7 +1994,7 @@ msgstr "" msgid "This account is a normal personal profile" msgstr "" -#: ../../mod/settings.php:815 ../../mod/admin.php:163 ../../mod/admin.php:523 +#: ../../mod/settings.php:815 ../../mod/admin.php:174 ../../mod/admin.php:552 msgid "Soapbox Account" msgstr "" @@ -1968,7 +2002,7 @@ msgstr "" msgid "Automatically approve all connection/friend requests as read-only fans" msgstr "" -#: ../../mod/settings.php:819 ../../mod/admin.php:164 ../../mod/admin.php:524 +#: ../../mod/settings.php:819 ../../mod/admin.php:175 ../../mod/admin.php:553 msgid "Community/Celebrity Account" msgstr "" @@ -1976,7 +2010,7 @@ msgstr "" msgid "Automatically approve all connection/friend requests as read-write fans" msgstr "" -#: ../../mod/settings.php:823 ../../mod/admin.php:165 ../../mod/admin.php:525 +#: ../../mod/settings.php:823 ../../mod/admin.php:176 ../../mod/admin.php:554 msgid "Automatic Friend Account" msgstr "" @@ -2274,12 +2308,12 @@ msgstr "" msgid "Invalid contact." msgstr "" -#: ../../mod/notes.php:44 ../../boot.php:1475 +#: ../../mod/notes.php:44 ../../boot.php:1476 msgid "Personal Notes" msgstr "" #: ../../mod/notes.php:63 ../../mod/filer.php:30 -#: ../../addon/facebook/facebook.php:680 ../../include/text.php:652 +#: ../../addon/facebook/facebook.php:715 ../../include/text.php:652 msgid "Save" msgstr "" @@ -2313,7 +2347,7 @@ msgid "No recipient." msgstr "" #: ../../mod/wallmessage.php:124 ../../mod/message.php:169 -#: ../../include/conversation.php:914 +#: ../../include/conversation.php:910 msgid "Please enter a link URL:" msgstr "" @@ -2521,12 +2555,16 @@ msgstr "" msgid "Profile Visibility Editor" msgstr "" -#: ../../mod/profperm.php:103 ../../view/theme/diabook-red/theme.php:240 -#: ../../view/theme/diabook-blue/theme.php:240 -#: ../../view/theme/diabook/theme.php:248 -#: ../../view/theme/diabook-aerith/theme.php:241 -#: ../../include/profile_advanced.php:7 ../../include/profile_advanced.php:76 -#: ../../include/nav.php:50 ../../boot.php:1457 +#: ../../mod/profperm.php:103 ../../view/theme/diabook-red/theme.php:228 +#: ../../view/theme/diabook-blue/theme.php:228 +#: ../../view/theme/diabook/diabook-red/theme.php:228 +#: ../../view/theme/diabook/diabook-blue/theme.php:228 +#: ../../view/theme/diabook/theme.php:246 +#: ../../view/theme/diabook/diabook-aerith/theme.php:230 +#: ../../view/theme/diabook/diabook-pink/theme.php:230 +#: ../../view/theme/diabook-aerith/theme.php:230 +#: ../../include/profile_advanced.php:7 ../../include/profile_advanced.php:74 +#: ../../include/nav.php:50 ../../boot.php:1458 msgid "Profile" msgstr "" @@ -2675,7 +2713,7 @@ msgstr "" msgid "Your invitation ID: " msgstr "" -#: ../../mod/register.php:553 ../../mod/admin.php:375 +#: ../../mod/register.php:553 ../../mod/admin.php:393 msgid "Registration" msgstr "" @@ -2707,28 +2745,41 @@ msgid "People Search" msgstr "" #: ../../mod/like.php:127 ../../mod/tagger.php:70 -#: ../../addon/facebook/facebook.php:1549 +#: ../../addon/facebook/facebook.php:1655 #: ../../addon/communityhome/communityhome.php:158 #: ../../addon/communityhome/communityhome.php:167 -#: ../../view/theme/diabook-red/theme.php:80 -#: ../../view/theme/diabook-red/theme.php:89 -#: ../../view/theme/diabook-blue/theme.php:80 -#: ../../view/theme/diabook-blue/theme.php:89 -#: ../../view/theme/diabook/theme.php:84 ../../view/theme/diabook/theme.php:93 -#: ../../view/theme/diabook-aerith/theme.php:81 -#: ../../view/theme/diabook-aerith/theme.php:90 +#: ../../view/theme/diabook-red/theme.php:82 +#: ../../view/theme/diabook-red/theme.php:91 +#: ../../view/theme/diabook-blue/theme.php:82 +#: ../../view/theme/diabook-blue/theme.php:91 +#: ../../view/theme/diabook/diabook-red/theme.php:82 +#: ../../view/theme/diabook/diabook-red/theme.php:91 +#: ../../view/theme/diabook/diabook-blue/theme.php:82 +#: ../../view/theme/diabook/diabook-blue/theme.php:91 +#: ../../view/theme/diabook/theme.php:95 +#: ../../view/theme/diabook/theme.php:104 +#: ../../view/theme/diabook/diabook-aerith/theme.php:83 +#: ../../view/theme/diabook/diabook-aerith/theme.php:92 +#: ../../view/theme/diabook/diabook-pink/theme.php:83 +#: ../../view/theme/diabook/diabook-pink/theme.php:92 +#: ../../view/theme/diabook-aerith/theme.php:83 +#: ../../view/theme/diabook-aerith/theme.php:92 #: ../../include/diaspora.php:1654 ../../include/conversation.php:48 #: ../../include/conversation.php:57 ../../include/conversation.php:121 #: ../../include/conversation.php:130 msgid "status" msgstr "" -#: ../../mod/like.php:144 ../../addon/facebook/facebook.php:1553 +#: ../../mod/like.php:144 ../../addon/facebook/facebook.php:1659 #: ../../addon/communityhome/communityhome.php:172 -#: ../../view/theme/diabook-red/theme.php:94 -#: ../../view/theme/diabook-blue/theme.php:94 -#: ../../view/theme/diabook/theme.php:98 -#: ../../view/theme/diabook-aerith/theme.php:95 +#: ../../view/theme/diabook-red/theme.php:96 +#: ../../view/theme/diabook-blue/theme.php:96 +#: ../../view/theme/diabook/diabook-red/theme.php:96 +#: ../../view/theme/diabook/diabook-blue/theme.php:96 +#: ../../view/theme/diabook/theme.php:109 +#: ../../view/theme/diabook/diabook-aerith/theme.php:97 +#: ../../view/theme/diabook/diabook-pink/theme.php:97 +#: ../../view/theme/diabook-aerith/theme.php:97 #: ../../include/diaspora.php:1670 ../../include/conversation.php:65 #, php-format msgid "%1$s likes %2$s's %3$s" @@ -2739,9 +2790,9 @@ msgstr "" msgid "%1$s doesn't like %2$s's %3$s" msgstr "" -#: ../../mod/notice.php:15 ../../mod/viewsrc.php:15 ../../mod/admin.php:141 -#: ../../mod/admin.php:582 ../../mod/admin.php:761 ../../mod/display.php:37 -#: ../../mod/display.php:142 ../../include/items.php:3054 +#: ../../mod/notice.php:15 ../../mod/viewsrc.php:15 ../../mod/admin.php:149 +#: ../../mod/admin.php:614 ../../mod/admin.php:813 ../../mod/display.php:37 +#: ../../mod/display.php:142 ../../include/items.php:3083 msgid "Item not found." msgstr "" @@ -2749,6 +2800,22 @@ msgstr "" msgid "Access denied." msgstr "" +#: ../../mod/fbrowser.php:23 ../../view/theme/diabook-red/theme.php:230 +#: ../../view/theme/diabook-blue/theme.php:230 +#: ../../view/theme/diabook/diabook-red/theme.php:230 +#: ../../view/theme/diabook/diabook-blue/theme.php:230 +#: ../../view/theme/diabook/theme.php:248 +#: ../../view/theme/diabook/diabook-aerith/theme.php:232 +#: ../../view/theme/diabook/diabook-pink/theme.php:232 +#: ../../view/theme/diabook-aerith/theme.php:232 ../../include/nav.php:51 +#: ../../boot.php:1463 +msgid "Photos" +msgstr "" + +#: ../../mod/fbrowser.php:86 +msgid "Files" +msgstr "" + #: ../../mod/regmod.php:61 msgid "Account approved." msgstr "" @@ -2958,493 +3025,493 @@ msgstr "" msgid "No friends to display." msgstr "" -#: ../../mod/admin.php:51 +#: ../../mod/admin.php:55 msgid "Theme settings updated." msgstr "" -#: ../../mod/admin.php:85 ../../mod/admin.php:373 +#: ../../mod/admin.php:93 ../../mod/admin.php:391 msgid "Site" msgstr "" -#: ../../mod/admin.php:86 ../../mod/admin.php:540 ../../mod/admin.php:552 +#: ../../mod/admin.php:94 ../../mod/admin.php:569 ../../mod/admin.php:581 msgid "Users" msgstr "" -#: ../../mod/admin.php:87 ../../mod/admin.php:629 ../../mod/admin.php:669 +#: ../../mod/admin.php:95 ../../mod/admin.php:663 ../../mod/admin.php:705 msgid "Plugins" msgstr "" -#: ../../mod/admin.php:88 ../../mod/admin.php:815 ../../mod/admin.php:849 +#: ../../mod/admin.php:96 ../../mod/admin.php:868 ../../mod/admin.php:904 msgid "Themes" msgstr "" -#: ../../mod/admin.php:103 ../../mod/admin.php:929 +#: ../../mod/admin.php:111 ../../mod/admin.php:992 msgid "Logs" msgstr "" -#: ../../mod/admin.php:108 +#: ../../mod/admin.php:116 msgid "User registrations waiting for confirmation" msgstr "" -#: ../../mod/admin.php:177 ../../mod/admin.php:372 ../../mod/admin.php:539 -#: ../../mod/admin.php:628 ../../mod/admin.php:668 ../../mod/admin.php:814 -#: ../../mod/admin.php:848 ../../mod/admin.php:928 +#: ../../mod/admin.php:188 ../../mod/admin.php:390 ../../mod/admin.php:568 +#: ../../mod/admin.php:662 ../../mod/admin.php:704 ../../mod/admin.php:867 +#: ../../mod/admin.php:903 ../../mod/admin.php:991 msgid "Administration" msgstr "" -#: ../../mod/admin.php:178 +#: ../../mod/admin.php:189 msgid "Summary" msgstr "" -#: ../../mod/admin.php:179 +#: ../../mod/admin.php:190 msgid "Registered users" msgstr "" -#: ../../mod/admin.php:181 +#: ../../mod/admin.php:192 msgid "Pending registrations" msgstr "" -#: ../../mod/admin.php:182 +#: ../../mod/admin.php:193 msgid "Version" msgstr "" -#: ../../mod/admin.php:184 +#: ../../mod/admin.php:195 msgid "Active plugins" msgstr "" -#: ../../mod/admin.php:315 +#: ../../mod/admin.php:329 msgid "Site settings updated." msgstr "" -#: ../../mod/admin.php:359 +#: ../../mod/admin.php:377 msgid "Closed" msgstr "" -#: ../../mod/admin.php:360 +#: ../../mod/admin.php:378 msgid "Requires approval" msgstr "" -#: ../../mod/admin.php:361 +#: ../../mod/admin.php:379 msgid "Open" msgstr "" -#: ../../mod/admin.php:365 +#: ../../mod/admin.php:383 msgid "No SSL policy, links will track page SSL state" msgstr "" -#: ../../mod/admin.php:366 +#: ../../mod/admin.php:384 msgid "Force all links to use SSL" msgstr "" -#: ../../mod/admin.php:367 +#: ../../mod/admin.php:385 msgid "Self-signed certificate, use SSL for local links only (discouraged)" msgstr "" -#: ../../mod/admin.php:376 +#: ../../mod/admin.php:394 msgid "File upload" msgstr "" -#: ../../mod/admin.php:377 +#: ../../mod/admin.php:395 msgid "Policies" msgstr "" -#: ../../mod/admin.php:378 +#: ../../mod/admin.php:396 msgid "Advanced" msgstr "" -#: ../../mod/admin.php:382 ../../addon/statusnet/statusnet.php:544 +#: ../../mod/admin.php:400 ../../addon/statusnet/statusnet.php:544 msgid "Site name" msgstr "" -#: ../../mod/admin.php:383 +#: ../../mod/admin.php:401 msgid "Banner/Logo" msgstr "" -#: ../../mod/admin.php:384 +#: ../../mod/admin.php:402 msgid "System language" msgstr "" -#: ../../mod/admin.php:385 +#: ../../mod/admin.php:403 msgid "System theme" msgstr "" -#: ../../mod/admin.php:385 +#: ../../mod/admin.php:403 msgid "" "Default system theme - may be over-ridden by user profiles - change theme settings" msgstr "" -#: ../../mod/admin.php:386 +#: ../../mod/admin.php:404 msgid "SSL link policy" msgstr "" -#: ../../mod/admin.php:386 +#: ../../mod/admin.php:404 msgid "Determines whether generated links should be forced to use SSL" msgstr "" -#: ../../mod/admin.php:387 +#: ../../mod/admin.php:405 msgid "Maximum image size" msgstr "" -#: ../../mod/admin.php:387 +#: ../../mod/admin.php:405 msgid "" "Maximum size in bytes of uploaded images. Default is 0, which means no " "limits." msgstr "" -#: ../../mod/admin.php:389 +#: ../../mod/admin.php:407 msgid "Register policy" msgstr "" -#: ../../mod/admin.php:390 +#: ../../mod/admin.php:408 msgid "Register text" msgstr "" -#: ../../mod/admin.php:390 +#: ../../mod/admin.php:408 msgid "Will be displayed prominently on the registration page." msgstr "" -#: ../../mod/admin.php:391 +#: ../../mod/admin.php:409 msgid "Accounts abandoned after x days" msgstr "" -#: ../../mod/admin.php:391 +#: ../../mod/admin.php:409 msgid "" "Will not waste system resources polling external sites for abandonded " "accounts. Enter 0 for no time limit." msgstr "" -#: ../../mod/admin.php:392 +#: ../../mod/admin.php:410 msgid "Allowed friend domains" msgstr "" -#: ../../mod/admin.php:392 +#: ../../mod/admin.php:410 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:393 +#: ../../mod/admin.php:411 msgid "Allowed email domains" msgstr "" -#: ../../mod/admin.php:393 +#: ../../mod/admin.php:411 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:394 +#: ../../mod/admin.php:412 msgid "Block public" msgstr "" -#: ../../mod/admin.php:394 +#: ../../mod/admin.php:412 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:395 +#: ../../mod/admin.php:413 msgid "Force publish" msgstr "" -#: ../../mod/admin.php:395 +#: ../../mod/admin.php:413 msgid "" "Check to force all profiles on this site to be listed in the site directory." msgstr "" -#: ../../mod/admin.php:396 +#: ../../mod/admin.php:414 msgid "Global directory update URL" msgstr "" -#: ../../mod/admin.php:396 +#: ../../mod/admin.php:414 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:398 +#: ../../mod/admin.php:416 msgid "Block multiple registrations" msgstr "" -#: ../../mod/admin.php:398 +#: ../../mod/admin.php:416 msgid "Disallow users to register additional accounts for use as pages." msgstr "" -#: ../../mod/admin.php:399 +#: ../../mod/admin.php:417 msgid "OpenID support" msgstr "" -#: ../../mod/admin.php:399 +#: ../../mod/admin.php:417 msgid "OpenID support for registration and logins." msgstr "" -#: ../../mod/admin.php:400 +#: ../../mod/admin.php:418 msgid "Fullname check" msgstr "" -#: ../../mod/admin.php:400 +#: ../../mod/admin.php:418 msgid "" "Force users to register with a space between firstname and lastname in Full " "name, as an antispam measure" msgstr "" -#: ../../mod/admin.php:401 +#: ../../mod/admin.php:419 msgid "UTF-8 Regular expressions" msgstr "" -#: ../../mod/admin.php:401 +#: ../../mod/admin.php:419 msgid "Use PHP UTF8 regular expressions" msgstr "" -#: ../../mod/admin.php:402 +#: ../../mod/admin.php:420 msgid "Show Community Page" msgstr "" -#: ../../mod/admin.php:402 +#: ../../mod/admin.php:420 msgid "" "Display a Community page showing all recent public postings on this site." msgstr "" -#: ../../mod/admin.php:403 +#: ../../mod/admin.php:421 msgid "Enable OStatus support" msgstr "" -#: ../../mod/admin.php:403 +#: ../../mod/admin.php:421 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:404 +#: ../../mod/admin.php:422 msgid "Enable Diaspora support" msgstr "" -#: ../../mod/admin.php:404 +#: ../../mod/admin.php:422 msgid "Provide built-in Diaspora network compatibility." msgstr "" -#: ../../mod/admin.php:405 +#: ../../mod/admin.php:423 msgid "Only allow Friendica contacts" msgstr "" -#: ../../mod/admin.php:405 +#: ../../mod/admin.php:423 msgid "" "All contacts must use Friendica protocols. All other built-in communication " "protocols disabled." msgstr "" -#: ../../mod/admin.php:406 +#: ../../mod/admin.php:424 msgid "Verify SSL" msgstr "" -#: ../../mod/admin.php:406 +#: ../../mod/admin.php:424 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:407 +#: ../../mod/admin.php:425 msgid "Proxy user" msgstr "" -#: ../../mod/admin.php:408 +#: ../../mod/admin.php:426 msgid "Proxy URL" msgstr "" -#: ../../mod/admin.php:409 +#: ../../mod/admin.php:427 msgid "Network timeout" msgstr "" -#: ../../mod/admin.php:409 +#: ../../mod/admin.php:427 msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." msgstr "" -#: ../../mod/admin.php:430 +#: ../../mod/admin.php:453 #, php-format msgid "%s user blocked/unblocked" msgid_plural "%s users blocked/unblocked" msgstr[0] "" msgstr[1] "" -#: ../../mod/admin.php:437 +#: ../../mod/admin.php:460 #, php-format msgid "%s user deleted" msgid_plural "%s users deleted" msgstr[0] "" msgstr[1] "" -#: ../../mod/admin.php:471 +#: ../../mod/admin.php:499 #, php-format msgid "User '%s' deleted" msgstr "" -#: ../../mod/admin.php:478 +#: ../../mod/admin.php:507 #, php-format msgid "User '%s' unblocked" msgstr "" -#: ../../mod/admin.php:478 +#: ../../mod/admin.php:507 #, php-format msgid "User '%s' blocked" msgstr "" -#: ../../mod/admin.php:542 +#: ../../mod/admin.php:571 msgid "select all" msgstr "" -#: ../../mod/admin.php:543 +#: ../../mod/admin.php:572 msgid "User registrations waiting for confirm" msgstr "" -#: ../../mod/admin.php:544 +#: ../../mod/admin.php:573 msgid "Request date" msgstr "" -#: ../../mod/admin.php:544 ../../mod/admin.php:553 +#: ../../mod/admin.php:573 ../../mod/admin.php:582 #: ../../include/contact_selectors.php:79 msgid "Email" msgstr "" -#: ../../mod/admin.php:545 +#: ../../mod/admin.php:574 msgid "No registrations." msgstr "" -#: ../../mod/admin.php:547 +#: ../../mod/admin.php:576 msgid "Deny" msgstr "" -#: ../../mod/admin.php:553 +#: ../../mod/admin.php:582 msgid "Register date" msgstr "" -#: ../../mod/admin.php:553 +#: ../../mod/admin.php:582 msgid "Last login" msgstr "" -#: ../../mod/admin.php:553 +#: ../../mod/admin.php:582 msgid "Last item" msgstr "" -#: ../../mod/admin.php:553 +#: ../../mod/admin.php:582 msgid "Account" msgstr "" -#: ../../mod/admin.php:555 +#: ../../mod/admin.php:584 msgid "" "Selected users will be deleted!\\n\\nEverything these users had posted on " "this site will be permanently deleted!\\n\\nAre you sure?" msgstr "" -#: ../../mod/admin.php:556 +#: ../../mod/admin.php:585 msgid "" "The user {0} will be deleted!\\n\\nEverything this user has posted on this " "site will be permanently deleted!\\n\\nAre you sure?" msgstr "" -#: ../../mod/admin.php:592 +#: ../../mod/admin.php:626 #, php-format msgid "Plugin %s disabled." msgstr "" -#: ../../mod/admin.php:596 +#: ../../mod/admin.php:630 #, php-format msgid "Plugin %s enabled." msgstr "" -#: ../../mod/admin.php:606 ../../mod/admin.php:785 +#: ../../mod/admin.php:640 ../../mod/admin.php:838 msgid "Disable" msgstr "" -#: ../../mod/admin.php:608 ../../mod/admin.php:787 +#: ../../mod/admin.php:642 ../../mod/admin.php:840 msgid "Enable" msgstr "" -#: ../../mod/admin.php:630 ../../mod/admin.php:816 +#: ../../mod/admin.php:664 ../../mod/admin.php:869 msgid "Toggle" msgstr "" -#: ../../mod/admin.php:638 ../../mod/admin.php:826 +#: ../../mod/admin.php:672 ../../mod/admin.php:879 msgid "Author: " msgstr "" -#: ../../mod/admin.php:639 ../../mod/admin.php:827 +#: ../../mod/admin.php:673 ../../mod/admin.php:880 msgid "Maintainer: " msgstr "" -#: ../../mod/admin.php:750 +#: ../../mod/admin.php:802 msgid "No themes found." msgstr "" -#: ../../mod/admin.php:808 +#: ../../mod/admin.php:861 msgid "Screenshot" msgstr "" -#: ../../mod/admin.php:854 +#: ../../mod/admin.php:909 msgid "[Experimental]" msgstr "" -#: ../../mod/admin.php:855 +#: ../../mod/admin.php:910 msgid "[Unsupported]" msgstr "" -#: ../../mod/admin.php:878 +#: ../../mod/admin.php:937 msgid "Log settings updated." msgstr "" -#: ../../mod/admin.php:931 +#: ../../mod/admin.php:994 msgid "Clear" msgstr "" -#: ../../mod/admin.php:937 +#: ../../mod/admin.php:1000 msgid "Debugging" msgstr "" -#: ../../mod/admin.php:938 +#: ../../mod/admin.php:1001 msgid "Log file" msgstr "" -#: ../../mod/admin.php:938 +#: ../../mod/admin.php:1001 msgid "" "Must be writable by web server. Relative to your Friendica top-level " "directory." msgstr "" -#: ../../mod/admin.php:939 +#: ../../mod/admin.php:1002 msgid "Log level" msgstr "" -#: ../../mod/admin.php:980 +#: ../../mod/admin.php:1052 msgid "Close" msgstr "" -#: ../../mod/admin.php:986 +#: ../../mod/admin.php:1058 msgid "FTP Host" msgstr "" -#: ../../mod/admin.php:987 +#: ../../mod/admin.php:1059 msgid "FTP Path" msgstr "" -#: ../../mod/admin.php:988 +#: ../../mod/admin.php:1060 msgid "FTP User" msgstr "" -#: ../../mod/admin.php:989 +#: ../../mod/admin.php:1061 msgid "FTP Password" msgstr "" -#: ../../mod/profile.php:20 ../../boot.php:939 +#: ../../mod/profile.php:21 ../../boot.php:940 msgid "Requested profile is not available." msgstr "" -#: ../../mod/profile.php:123 ../../mod/display.php:75 +#: ../../mod/profile.php:124 ../../mod/display.php:75 msgid "Access to this profile has been restricted." msgstr "" -#: ../../mod/profile.php:144 +#: ../../mod/profile.php:145 msgid "Tips for New Members" msgstr "" @@ -3825,27 +3892,27 @@ msgstr "" msgid "Edit/Manage Profiles" msgstr "" -#: ../../mod/profiles.php:585 ../../boot.php:1048 +#: ../../mod/profiles.php:585 ../../boot.php:1049 msgid "Change profile photo" msgstr "" -#: ../../mod/profiles.php:586 ../../boot.php:1049 +#: ../../mod/profiles.php:586 ../../boot.php:1050 msgid "Create New Profile" msgstr "" -#: ../../mod/profiles.php:597 ../../boot.php:1059 +#: ../../mod/profiles.php:597 ../../boot.php:1060 msgid "Profile Image" msgstr "" -#: ../../mod/profiles.php:599 ../../boot.php:1062 +#: ../../mod/profiles.php:599 ../../boot.php:1063 msgid "visible to everybody" msgstr "" -#: ../../mod/profiles.php:600 ../../boot.php:1063 +#: ../../mod/profiles.php:600 ../../boot.php:1064 msgid "Edit visibility" msgstr "" -#: ../../mod/filer.php:29 ../../include/conversation.php:918 +#: ../../mod/filer.php:29 ../../include/conversation.php:914 msgid "Save to Folder:" msgstr "" @@ -3893,10 +3960,14 @@ msgstr "" msgid "No entries." msgstr "" -#: ../../mod/suggest.php:38 ../../view/theme/diabook-red/theme.php:149 -#: ../../view/theme/diabook-blue/theme.php:149 -#: ../../view/theme/diabook/theme.php:153 -#: ../../view/theme/diabook-aerith/theme.php:150 +#: ../../mod/suggest.php:38 ../../view/theme/diabook-red/theme.php:143 +#: ../../view/theme/diabook-blue/theme.php:143 +#: ../../view/theme/diabook/diabook-red/theme.php:143 +#: ../../view/theme/diabook/diabook-blue/theme.php:143 +#: ../../view/theme/diabook/theme.php:157 +#: ../../view/theme/diabook/diabook-aerith/theme.php:145 +#: ../../view/theme/diabook/diabook-pink/theme.php:145 +#: ../../view/theme/diabook-aerith/theme.php:145 #: ../../include/contact_widgets.php:34 msgid "Friend Suggestions" msgstr "" @@ -3911,10 +3982,14 @@ msgstr "" msgid "Ignore/Hide" msgstr "" -#: ../../mod/directory.php:47 ../../view/theme/diabook-red/theme.php:147 -#: ../../view/theme/diabook-blue/theme.php:147 -#: ../../view/theme/diabook/theme.php:151 -#: ../../view/theme/diabook-aerith/theme.php:148 +#: ../../mod/directory.php:47 ../../view/theme/diabook-red/theme.php:141 +#: ../../view/theme/diabook-blue/theme.php:141 +#: ../../view/theme/diabook/diabook-red/theme.php:141 +#: ../../view/theme/diabook/diabook-blue/theme.php:141 +#: ../../view/theme/diabook/theme.php:155 +#: ../../view/theme/diabook/diabook-aerith/theme.php:143 +#: ../../view/theme/diabook/diabook-pink/theme.php:143 +#: ../../view/theme/diabook-aerith/theme.php:143 msgid "Global Directory" msgstr "" @@ -4100,71 +4175,71 @@ msgstr "" msgid "Connection accepted at %s" msgstr "" -#: ../../addon/facebook/facebook.php:467 +#: ../../addon/facebook/facebook.php:490 msgid "Facebook disabled" msgstr "" -#: ../../addon/facebook/facebook.php:472 +#: ../../addon/facebook/facebook.php:495 msgid "Updating contacts" msgstr "" -#: ../../addon/facebook/facebook.php:493 +#: ../../addon/facebook/facebook.php:515 msgid "Facebook API key is missing." msgstr "" -#: ../../addon/facebook/facebook.php:500 +#: ../../addon/facebook/facebook.php:522 msgid "Facebook Connect" msgstr "" -#: ../../addon/facebook/facebook.php:506 +#: ../../addon/facebook/facebook.php:528 msgid "Install Facebook connector for this account." msgstr "" -#: ../../addon/facebook/facebook.php:513 +#: ../../addon/facebook/facebook.php:535 msgid "Remove Facebook connector" msgstr "" -#: ../../addon/facebook/facebook.php:518 +#: ../../addon/facebook/facebook.php:540 msgid "" "Re-authenticate [This is necessary whenever your Facebook password is " "changed.]" msgstr "" -#: ../../addon/facebook/facebook.php:525 +#: ../../addon/facebook/facebook.php:547 msgid "Post to Facebook by default" msgstr "" -#: ../../addon/facebook/facebook.php:529 +#: ../../addon/facebook/facebook.php:551 msgid "Link all your Facebook friends and conversations on this website" msgstr "" -#: ../../addon/facebook/facebook.php:531 +#: ../../addon/facebook/facebook.php:553 msgid "" "Facebook conversations consist of your profile wall and your friend " "stream." msgstr "" -#: ../../addon/facebook/facebook.php:532 +#: ../../addon/facebook/facebook.php:554 msgid "On this website, your Facebook friend stream is only visible to you." msgstr "" -#: ../../addon/facebook/facebook.php:533 +#: ../../addon/facebook/facebook.php:555 msgid "" "The following settings determine the privacy of your Facebook profile wall " "on this website." msgstr "" -#: ../../addon/facebook/facebook.php:537 +#: ../../addon/facebook/facebook.php:559 msgid "" "On this website your Facebook profile wall conversations will only be " "visible to you" msgstr "" -#: ../../addon/facebook/facebook.php:542 +#: ../../addon/facebook/facebook.php:564 msgid "Do not import your Facebook profile wall conversations" msgstr "" -#: ../../addon/facebook/facebook.php:544 +#: ../../addon/facebook/facebook.php:566 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 " @@ -4172,114 +4247,114 @@ msgid "" "who may see the conversations." msgstr "" -#: ../../addon/facebook/facebook.php:549 +#: ../../addon/facebook/facebook.php:571 msgid "Comma separated applications to ignore" msgstr "" -#: ../../addon/facebook/facebook.php:620 +#: ../../addon/facebook/facebook.php:648 msgid "Problems with Facebook Real-Time Updates" msgstr "" -#: ../../addon/facebook/facebook.php:644 +#: ../../addon/facebook/facebook.php:675 #: ../../include/contact_selectors.php:81 msgid "Facebook" msgstr "" -#: ../../addon/facebook/facebook.php:645 +#: ../../addon/facebook/facebook.php:676 msgid "Facebook Connector Settings" msgstr "" -#: ../../addon/facebook/facebook.php:656 +#: ../../addon/facebook/facebook.php:691 msgid "Facebook API Key" msgstr "" -#: ../../addon/facebook/facebook.php:665 +#: ../../addon/facebook/facebook.php:700 msgid "" "Error: it appears that you have specified the App-ID and -Secret in your ." "htconfig.php file. As long as they are specified there, they cannot be set " "using this form.

" msgstr "" -#: ../../addon/facebook/facebook.php:670 +#: ../../addon/facebook/facebook.php:705 msgid "" "Error: the given API Key seems to be incorrect (the application access token " "could not be retrieved)." msgstr "" -#: ../../addon/facebook/facebook.php:672 +#: ../../addon/facebook/facebook.php:707 msgid "The given API Key seems to work correctly." msgstr "" -#: ../../addon/facebook/facebook.php:674 +#: ../../addon/facebook/facebook.php:709 msgid "" "The correctness of the API Key could not be detected. Somthing strange's " "going on." msgstr "" -#: ../../addon/facebook/facebook.php:677 +#: ../../addon/facebook/facebook.php:712 msgid "App-ID / API-Key" msgstr "" -#: ../../addon/facebook/facebook.php:678 +#: ../../addon/facebook/facebook.php:713 msgid "Application secret" msgstr "" -#: ../../addon/facebook/facebook.php:679 +#: ../../addon/facebook/facebook.php:714 #, php-format msgid "Polling Interval (min. %1$s minutes)" msgstr "" -#: ../../addon/facebook/facebook.php:683 +#: ../../addon/facebook/facebook.php:718 msgid "Real-Time Updates" msgstr "" -#: ../../addon/facebook/facebook.php:687 +#: ../../addon/facebook/facebook.php:722 msgid "Real-Time Updates are activated." msgstr "" -#: ../../addon/facebook/facebook.php:688 +#: ../../addon/facebook/facebook.php:723 msgid "Deactivate Real-Time Updates" msgstr "" -#: ../../addon/facebook/facebook.php:690 +#: ../../addon/facebook/facebook.php:725 msgid "Real-Time Updates not activated." msgstr "" -#: ../../addon/facebook/facebook.php:690 +#: ../../addon/facebook/facebook.php:725 msgid "Activate Real-Time Updates" msgstr "" -#: ../../addon/facebook/facebook.php:704 +#: ../../addon/facebook/facebook.php:743 msgid "The new values have been saved." msgstr "" -#: ../../addon/facebook/facebook.php:723 +#: ../../addon/facebook/facebook.php:767 msgid "Post to Facebook" msgstr "" -#: ../../addon/facebook/facebook.php:815 +#: ../../addon/facebook/facebook.php:865 msgid "" "Post to Facebook cancelled because of multi-network access permission " "conflict." msgstr "" -#: ../../addon/facebook/facebook.php:1033 +#: ../../addon/facebook/facebook.php:1085 msgid "View on Friendica" msgstr "" -#: ../../addon/facebook/facebook.php:1058 +#: ../../addon/facebook/facebook.php:1118 msgid "Facebook post failed. Queued for retry." msgstr "" -#: ../../addon/facebook/facebook.php:1094 +#: ../../addon/facebook/facebook.php:1158 msgid "Your Facebook connection became invalid. Please Re-authenticate." msgstr "" -#: ../../addon/facebook/facebook.php:1095 +#: ../../addon/facebook/facebook.php:1159 msgid "Facebook connection became invalid" msgstr "" -#: ../../addon/facebook/facebook.php:1096 +#: ../../addon/facebook/facebook.php:1160 #, php-format msgid "" "Hi %1$s,\n" @@ -4446,10 +4521,14 @@ msgid "Latest likes" msgstr "" #: ../../addon/communityhome/communityhome.php:155 -#: ../../view/theme/diabook-red/theme.php:77 -#: ../../view/theme/diabook-blue/theme.php:77 -#: ../../view/theme/diabook/theme.php:81 -#: ../../view/theme/diabook-aerith/theme.php:78 ../../include/text.php:1302 +#: ../../view/theme/diabook-red/theme.php:79 +#: ../../view/theme/diabook-blue/theme.php:79 +#: ../../view/theme/diabook/diabook-red/theme.php:79 +#: ../../view/theme/diabook/diabook-blue/theme.php:79 +#: ../../view/theme/diabook/theme.php:92 +#: ../../view/theme/diabook/diabook-aerith/theme.php:80 +#: ../../view/theme/diabook/diabook-pink/theme.php:80 +#: ../../view/theme/diabook-aerith/theme.php:80 ../../include/text.php:1302 #: ../../include/conversation.php:45 ../../include/conversation.php:118 msgid "event" msgstr "" @@ -4801,6 +4880,27 @@ msgstr "" msgid "The default zoom level. (1:world, 18:highest)" msgstr "" +#: ../../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/mathjax/mathjax.php:38 +msgid "Use the MathJax renderer" +msgstr "" + +#: ../../addon/mathjax/mathjax.php:74 +msgid "MathJax Base URL" +msgstr "" + +#: ../../addon/mathjax/mathjax.php:74 +msgid "" +"The URL for the javascript file that should be included to use MathJax. Can " +"be either the MathJax CDN or another installation of MathJax." +msgstr "" + #: ../../addon/editplain/editplain.php:46 msgid "Editplain settings updated." msgstr "" @@ -5326,183 +5426,253 @@ msgstr "" msgid "Post to Posterous by default" msgstr "" -#: ../../view/theme/diabook-red/theme.php:26 -#: ../../view/theme/diabook-blue/theme.php:26 -#: ../../view/theme/diabook/theme.php:30 -#: ../../view/theme/diabook-aerith/theme.php:27 +#: ../../view/theme/diabook-red/theme.php:28 +#: ../../view/theme/diabook-blue/theme.php:28 +#: ../../view/theme/diabook/diabook-red/theme.php:28 +#: ../../view/theme/diabook/diabook-blue/theme.php:28 +#: ../../view/theme/diabook/theme.php:41 +#: ../../view/theme/diabook/diabook-aerith/theme.php:29 +#: ../../view/theme/diabook/diabook-pink/theme.php:29 +#: ../../view/theme/diabook-aerith/theme.php:29 msgid "Last users" msgstr "" -#: ../../view/theme/diabook-red/theme.php:55 -#: ../../view/theme/diabook-blue/theme.php:55 -#: ../../view/theme/diabook/theme.php:59 -#: ../../view/theme/diabook-aerith/theme.php:56 +#: ../../view/theme/diabook-red/theme.php:57 +#: ../../view/theme/diabook-blue/theme.php:57 +#: ../../view/theme/diabook/diabook-red/theme.php:57 +#: ../../view/theme/diabook/diabook-blue/theme.php:57 +#: ../../view/theme/diabook/theme.php:70 +#: ../../view/theme/diabook/diabook-aerith/theme.php:58 +#: ../../view/theme/diabook/diabook-pink/theme.php:58 +#: ../../view/theme/diabook-aerith/theme.php:58 msgid "Last likes" msgstr "" -#: ../../view/theme/diabook-red/theme.php:100 -#: ../../view/theme/diabook-blue/theme.php:100 -#: ../../view/theme/diabook/theme.php:104 -#: ../../view/theme/diabook-aerith/theme.php:101 +#: ../../view/theme/diabook-red/theme.php:102 +#: ../../view/theme/diabook-blue/theme.php:102 +#: ../../view/theme/diabook/diabook-red/theme.php:102 +#: ../../view/theme/diabook/diabook-blue/theme.php:102 +#: ../../view/theme/diabook/theme.php:115 +#: ../../view/theme/diabook/diabook-aerith/theme.php:103 +#: ../../view/theme/diabook/diabook-pink/theme.php:103 +#: ../../view/theme/diabook-aerith/theme.php:103 msgid "Last photos" msgstr "" -#: ../../view/theme/diabook-red/theme.php:145 -#: ../../view/theme/diabook-blue/theme.php:145 -#: ../../view/theme/diabook/theme.php:149 -#: ../../view/theme/diabook-aerith/theme.php:146 +#: ../../view/theme/diabook-red/theme.php:139 +#: ../../view/theme/diabook-blue/theme.php:139 +#: ../../view/theme/diabook/diabook-red/theme.php:139 +#: ../../view/theme/diabook/diabook-blue/theme.php:139 +#: ../../view/theme/diabook/theme.php:153 +#: ../../view/theme/diabook/diabook-aerith/theme.php:141 +#: ../../view/theme/diabook/diabook-pink/theme.php:141 +#: ../../view/theme/diabook-aerith/theme.php:141 msgid "Find Friends" msgstr "" -#: ../../view/theme/diabook-red/theme.php:146 -#: ../../view/theme/diabook-blue/theme.php:146 -#: ../../view/theme/diabook/theme.php:150 -#: ../../view/theme/diabook-aerith/theme.php:147 +#: ../../view/theme/diabook-red/theme.php:140 +#: ../../view/theme/diabook-blue/theme.php:140 +#: ../../view/theme/diabook/diabook-red/theme.php:140 +#: ../../view/theme/diabook/diabook-blue/theme.php:140 +#: ../../view/theme/diabook/theme.php:154 +#: ../../view/theme/diabook/diabook-aerith/theme.php:142 +#: ../../view/theme/diabook/diabook-pink/theme.php:142 +#: ../../view/theme/diabook-aerith/theme.php:142 msgid "Local Directory" msgstr "" -#: ../../view/theme/diabook-red/theme.php:148 -#: ../../view/theme/diabook-blue/theme.php:148 -#: ../../view/theme/diabook/theme.php:152 -#: ../../view/theme/diabook-aerith/theme.php:149 +#: ../../view/theme/diabook-red/theme.php:142 +#: ../../view/theme/diabook-blue/theme.php:142 +#: ../../view/theme/diabook/diabook-red/theme.php:142 +#: ../../view/theme/diabook/diabook-blue/theme.php:142 +#: ../../view/theme/diabook/theme.php:156 +#: ../../view/theme/diabook/diabook-aerith/theme.php:144 +#: ../../view/theme/diabook/diabook-pink/theme.php:144 +#: ../../view/theme/diabook-aerith/theme.php:144 #: ../../include/contact_widgets.php:35 msgid "Similar Interests" msgstr "" -#: ../../view/theme/diabook-red/theme.php:150 -#: ../../view/theme/diabook-blue/theme.php:150 -#: ../../view/theme/diabook/theme.php:154 -#: ../../view/theme/diabook-aerith/theme.php:151 +#: ../../view/theme/diabook-red/theme.php:144 +#: ../../view/theme/diabook-blue/theme.php:144 +#: ../../view/theme/diabook/diabook-red/theme.php:144 +#: ../../view/theme/diabook/diabook-blue/theme.php:144 +#: ../../view/theme/diabook/theme.php:158 +#: ../../view/theme/diabook/diabook-aerith/theme.php:146 +#: ../../view/theme/diabook/diabook-pink/theme.php:146 +#: ../../view/theme/diabook-aerith/theme.php:146 #: ../../include/contact_widgets.php:37 msgid "Invite Friends" msgstr "" -#: ../../view/theme/diabook-red/theme.php:165 -#: ../../view/theme/diabook-red/theme.php:246 -#: ../../view/theme/diabook-blue/theme.php:165 -#: ../../view/theme/diabook-blue/theme.php:246 -#: ../../view/theme/diabook/theme.php:170 -#: ../../view/theme/diabook/theme.php:254 -#: ../../view/theme/diabook-aerith/theme.php:166 -#: ../../view/theme/diabook-aerith/theme.php:247 +#: ../../view/theme/diabook-red/theme.php:159 +#: ../../view/theme/diabook-red/theme.php:234 +#: ../../view/theme/diabook-blue/theme.php:159 +#: ../../view/theme/diabook-blue/theme.php:234 +#: ../../view/theme/diabook/diabook-red/theme.php:159 +#: ../../view/theme/diabook/diabook-red/theme.php:234 +#: ../../view/theme/diabook/diabook-blue/theme.php:159 +#: ../../view/theme/diabook/diabook-blue/theme.php:234 +#: ../../view/theme/diabook/theme.php:174 +#: ../../view/theme/diabook/theme.php:252 +#: ../../view/theme/diabook/diabook-aerith/theme.php:161 +#: ../../view/theme/diabook/diabook-aerith/theme.php:236 +#: ../../view/theme/diabook/diabook-pink/theme.php:161 +#: ../../view/theme/diabook/diabook-pink/theme.php:236 +#: ../../view/theme/diabook-aerith/theme.php:161 +#: ../../view/theme/diabook-aerith/theme.php:236 msgid "Community Pages" msgstr "" +#: ../../view/theme/diabook-red/theme.php:192 +#: ../../view/theme/diabook-blue/theme.php:192 +#: ../../view/theme/diabook/diabook-red/theme.php:192 +#: ../../view/theme/diabook/diabook-blue/theme.php:192 +#: ../../view/theme/diabook/theme.php:207 +#: ../../view/theme/diabook/diabook-aerith/theme.php:194 +#: ../../view/theme/diabook/diabook-pink/theme.php:194 +#: ../../view/theme/diabook-aerith/theme.php:194 +msgid "Help or @NewHere ?" +msgstr "" + #: ../../view/theme/diabook-red/theme.php:198 #: ../../view/theme/diabook-blue/theme.php:198 -#: ../../view/theme/diabook/theme.php:203 -#: ../../view/theme/diabook-aerith/theme.php:199 -msgid "Help or @NewHere ?" -msgstr "" - -#: ../../view/theme/diabook-red/theme.php:204 -#: ../../view/theme/diabook-blue/theme.php:204 -#: ../../view/theme/diabook/theme.php:209 -#: ../../view/theme/diabook-aerith/theme.php:205 +#: ../../view/theme/diabook/diabook-red/theme.php:198 +#: ../../view/theme/diabook/diabook-blue/theme.php:198 +#: ../../view/theme/diabook/theme.php:213 +#: ../../view/theme/diabook/diabook-aerith/theme.php:200 +#: ../../view/theme/diabook/diabook-pink/theme.php:200 +#: ../../view/theme/diabook-aerith/theme.php:200 msgid "Connect Services" msgstr "" -#: ../../view/theme/diabook-red/theme.php:210 -#: ../../view/theme/diabook-blue/theme.php:210 -#: ../../view/theme/diabook/theme.php:215 -#: ../../view/theme/diabook-aerith/theme.php:211 -msgid "PostIt to Friendica" -msgstr "" - -#: ../../view/theme/diabook-red/theme.php:210 -#: ../../view/theme/diabook-blue/theme.php:210 -#: ../../view/theme/diabook/theme.php:215 -#: ../../view/theme/diabook-aerith/theme.php:211 -msgid "Post to Friendica" -msgstr "" - -#: ../../view/theme/diabook-red/theme.php:211 -#: ../../view/theme/diabook-blue/theme.php:211 -#: ../../view/theme/diabook/theme.php:216 -#: ../../view/theme/diabook-aerith/theme.php:212 -msgid " from anywhere by bookmarking this Link." -msgstr "" - -#: ../../view/theme/diabook-red/theme.php:239 -#: ../../view/theme/diabook-blue/theme.php:239 -#: ../../view/theme/diabook/theme.php:247 -#: ../../view/theme/diabook-aerith/theme.php:240 ../../include/nav.php:49 +#: ../../view/theme/diabook-red/theme.php:227 +#: ../../view/theme/diabook-blue/theme.php:227 +#: ../../view/theme/diabook/diabook-red/theme.php:227 +#: ../../view/theme/diabook/diabook-blue/theme.php:227 +#: ../../view/theme/diabook/theme.php:245 +#: ../../view/theme/diabook/diabook-aerith/theme.php:229 +#: ../../view/theme/diabook/diabook-pink/theme.php:229 +#: ../../view/theme/diabook-aerith/theme.php:229 ../../include/nav.php:49 #: ../../include/nav.php:115 msgid "Your posts and conversations" msgstr "" -#: ../../view/theme/diabook-red/theme.php:240 -#: ../../view/theme/diabook-blue/theme.php:240 -#: ../../view/theme/diabook/theme.php:248 -#: ../../view/theme/diabook-aerith/theme.php:241 ../../include/nav.php:50 +#: ../../view/theme/diabook-red/theme.php:228 +#: ../../view/theme/diabook-blue/theme.php:228 +#: ../../view/theme/diabook/diabook-red/theme.php:228 +#: ../../view/theme/diabook/diabook-blue/theme.php:228 +#: ../../view/theme/diabook/theme.php:246 +#: ../../view/theme/diabook/diabook-aerith/theme.php:230 +#: ../../view/theme/diabook/diabook-pink/theme.php:230 +#: ../../view/theme/diabook-aerith/theme.php:230 ../../include/nav.php:50 msgid "Your profile page" msgstr "" -#: ../../view/theme/diabook-red/theme.php:241 -#: ../../view/theme/diabook-blue/theme.php:241 -#: ../../view/theme/diabook/theme.php:249 -#: ../../view/theme/diabook-aerith/theme.php:242 +#: ../../view/theme/diabook-red/theme.php:229 +#: ../../view/theme/diabook-blue/theme.php:229 +#: ../../view/theme/diabook/diabook-red/theme.php:229 +#: ../../view/theme/diabook/diabook-blue/theme.php:229 +#: ../../view/theme/diabook/theme.php:247 +#: ../../view/theme/diabook/diabook-aerith/theme.php:231 +#: ../../view/theme/diabook/diabook-pink/theme.php:231 +#: ../../view/theme/diabook-aerith/theme.php:231 msgid "Your contacts" msgstr "" -#: ../../view/theme/diabook-red/theme.php:242 -#: ../../view/theme/diabook-blue/theme.php:242 -#: ../../view/theme/diabook/theme.php:250 -#: ../../view/theme/diabook-aerith/theme.php:243 ../../include/nav.php:51 -#: ../../boot.php:1462 -msgid "Photos" -msgstr "" - -#: ../../view/theme/diabook-red/theme.php:242 -#: ../../view/theme/diabook-blue/theme.php:242 -#: ../../view/theme/diabook/theme.php:250 -#: ../../view/theme/diabook-aerith/theme.php:243 ../../include/nav.php:51 +#: ../../view/theme/diabook-red/theme.php:230 +#: ../../view/theme/diabook-blue/theme.php:230 +#: ../../view/theme/diabook/diabook-red/theme.php:230 +#: ../../view/theme/diabook/diabook-blue/theme.php:230 +#: ../../view/theme/diabook/theme.php:248 +#: ../../view/theme/diabook/diabook-aerith/theme.php:232 +#: ../../view/theme/diabook/diabook-pink/theme.php:232 +#: ../../view/theme/diabook-aerith/theme.php:232 ../../include/nav.php:51 msgid "Your photos" msgstr "" -#: ../../view/theme/diabook-red/theme.php:243 -#: ../../view/theme/diabook-blue/theme.php:243 -#: ../../view/theme/diabook/theme.php:251 -#: ../../view/theme/diabook-aerith/theme.php:244 ../../include/nav.php:52 +#: ../../view/theme/diabook-red/theme.php:231 +#: ../../view/theme/diabook-blue/theme.php:231 +#: ../../view/theme/diabook/diabook-red/theme.php:231 +#: ../../view/theme/diabook/diabook-blue/theme.php:231 +#: ../../view/theme/diabook/theme.php:249 +#: ../../view/theme/diabook/diabook-aerith/theme.php:233 +#: ../../view/theme/diabook/diabook-pink/theme.php:233 +#: ../../view/theme/diabook-aerith/theme.php:233 ../../include/nav.php:52 msgid "Your events" msgstr "" -#: ../../view/theme/diabook-red/theme.php:244 -#: ../../view/theme/diabook-blue/theme.php:244 -#: ../../view/theme/diabook/theme.php:252 -#: ../../view/theme/diabook-aerith/theme.php:245 ../../include/nav.php:53 +#: ../../view/theme/diabook-red/theme.php:232 +#: ../../view/theme/diabook-blue/theme.php:232 +#: ../../view/theme/diabook/diabook-red/theme.php:232 +#: ../../view/theme/diabook/diabook-blue/theme.php:232 +#: ../../view/theme/diabook/theme.php:250 +#: ../../view/theme/diabook/diabook-aerith/theme.php:234 +#: ../../view/theme/diabook/diabook-pink/theme.php:234 +#: ../../view/theme/diabook-aerith/theme.php:234 ../../include/nav.php:53 msgid "Personal notes" msgstr "" -#: ../../view/theme/diabook-red/theme.php:244 -#: ../../view/theme/diabook-blue/theme.php:244 -#: ../../view/theme/diabook/theme.php:252 -#: ../../view/theme/diabook-aerith/theme.php:245 ../../include/nav.php:53 +#: ../../view/theme/diabook-red/theme.php:232 +#: ../../view/theme/diabook-blue/theme.php:232 +#: ../../view/theme/diabook/diabook-red/theme.php:232 +#: ../../view/theme/diabook/diabook-blue/theme.php:232 +#: ../../view/theme/diabook/theme.php:250 +#: ../../view/theme/diabook/diabook-aerith/theme.php:234 +#: ../../view/theme/diabook/diabook-pink/theme.php:234 +#: ../../view/theme/diabook-aerith/theme.php:234 ../../include/nav.php:53 msgid "Your personal photos" msgstr "" -#: ../../view/theme/diabook-red/config.php:66 -#: ../../view/theme/diabook-blue/config.php:66 -#: ../../view/theme/diabook/config.php:66 +#: ../../view/theme/diabook-red/config.php:78 +#: ../../view/theme/diabook-blue/config.php:78 +#: ../../view/theme/diabook/diabook-red/config.php:78 +#: ../../view/theme/diabook/diabook-blue/config.php:78 +#: ../../view/theme/diabook/diabook-aerith/config.php:78 +#: ../../view/theme/diabook/diabook-pink/config.php:78 +#: ../../view/theme/diabook/config.php:89 #: ../../view/theme/quattro/config.php:54 -#: ../../view/theme/diabook-aerith/config.php:66 +#: ../../view/theme/diabook-aerith/config.php:78 msgid "Theme settings" msgstr "" -#: ../../view/theme/diabook-red/config.php:67 -#: ../../view/theme/diabook-blue/config.php:67 -#: ../../view/theme/diabook/config.php:67 -#: ../../view/theme/diabook-aerith/config.php:67 +#: ../../view/theme/diabook-red/config.php:79 +#: ../../view/theme/diabook-blue/config.php:79 +#: ../../view/theme/diabook/diabook-red/config.php:79 +#: ../../view/theme/diabook/diabook-blue/config.php:79 +#: ../../view/theme/diabook/diabook-aerith/config.php:79 +#: ../../view/theme/diabook/diabook-pink/config.php:79 +#: ../../view/theme/diabook/config.php:90 +#: ../../view/theme/diabook-aerith/config.php:79 msgid "Set font-size for posts and comments" msgstr "" -#: ../../view/theme/diabook-red/config.php:68 -#: ../../view/theme/diabook-blue/config.php:68 -#: ../../view/theme/diabook/config.php:68 -#: ../../view/theme/diabook-aerith/config.php:68 +#: ../../view/theme/diabook-red/config.php:80 +#: ../../view/theme/diabook-blue/config.php:80 +#: ../../view/theme/diabook/diabook-red/config.php:80 +#: ../../view/theme/diabook/diabook-blue/config.php:80 +#: ../../view/theme/diabook/diabook-aerith/config.php:80 +#: ../../view/theme/diabook/diabook-pink/config.php:80 +#: ../../view/theme/diabook/config.php:91 +#: ../../view/theme/diabook-aerith/config.php:80 msgid "Set line-height for posts and comments" msgstr "" +#: ../../view/theme/diabook-red/config.php:81 +#: ../../view/theme/diabook-blue/config.php:81 +#: ../../view/theme/diabook/diabook-red/config.php:81 +#: ../../view/theme/diabook/diabook-blue/config.php:81 +#: ../../view/theme/diabook/diabook-aerith/config.php:81 +#: ../../view/theme/diabook/diabook-pink/config.php:81 +#: ../../view/theme/diabook/config.php:92 +#: ../../view/theme/diabook-aerith/config.php:81 +msgid "Set resolution for middle column" +msgstr "" + +#: ../../view/theme/diabook/config.php:93 +msgid "Set color scheme" +msgstr "" + #: ../../view/theme/quattro/config.php:55 msgid "Alignment" msgstr "" @@ -5519,7 +5689,7 @@ msgstr "" msgid "Color scheme" msgstr "" -#: ../../include/profile_advanced.php:17 ../../boot.php:1084 +#: ../../include/profile_advanced.php:17 ../../boot.php:1085 msgid "Gender:" msgstr "" @@ -5532,7 +5702,7 @@ msgid "j F" msgstr "" #: ../../include/profile_advanced.php:30 ../../include/datetime.php:448 -#: ../../include/items.php:1402 +#: ../../include/items.php:1403 msgid "Birthday:" msgstr "" @@ -5540,11 +5710,11 @@ msgstr "" msgid "Age:" msgstr "" -#: ../../include/profile_advanced.php:37 ../../boot.php:1087 +#: ../../include/profile_advanced.php:37 ../../boot.php:1088 msgid "Status:" msgstr "" -#: ../../include/profile_advanced.php:45 ../../boot.php:1089 +#: ../../include/profile_advanced.php:45 ../../boot.php:1090 msgid "Homepage:" msgstr "" @@ -6085,7 +6255,7 @@ msgstr "" msgid "[Relayed] Comment authored by %s from network %s" msgstr "" -#: ../../include/network.php:823 +#: ../../include/network.php:824 msgid "view full size" msgstr "" @@ -6136,7 +6306,7 @@ msgstr "" msgid "End this session" msgstr "" -#: ../../include/nav.php:49 ../../boot.php:1452 +#: ../../include/nav.php:49 ../../boot.php:1453 msgid "Status" msgstr "" @@ -6216,11 +6386,11 @@ msgstr "" msgid "Manage other pages" msgstr "" -#: ../../include/nav.php:138 ../../boot.php:1042 +#: ../../include/nav.php:138 ../../boot.php:1043 msgid "Profiles" msgstr "" -#: ../../include/nav.php:138 ../../boot.php:1042 +#: ../../include/nav.php:138 ../../boot.php:1043 msgid "Manage/edit profiles" msgstr "" @@ -6607,11 +6777,11 @@ msgstr "" msgid "Please visit %s to approve or reject the suggestion." msgstr "" -#: ../../include/items.php:2669 +#: ../../include/items.php:2698 msgid "A new person is sharing with you at " msgstr "" -#: ../../include/items.php:2669 +#: ../../include/items.php:2698 msgid "You have a new follower at " msgstr "" @@ -6642,29 +6812,30 @@ msgid "" "form has been opened for too long (>3 hours) before submitting it." msgstr "" -#: ../../include/Contact.php:145 ../../include/conversation.php:813 +#: ../../include/Contact.php:145 ../../include/conversation.php:809 msgid "View Status" msgstr "" -#: ../../include/Contact.php:146 ../../include/conversation.php:814 +#: ../../include/Contact.php:146 ../../include/conversation.php:810 msgid "View Profile" msgstr "" -#: ../../include/Contact.php:147 ../../include/conversation.php:815 +#: ../../include/Contact.php:147 ../../include/conversation.php:811 msgid "View Photos" msgstr "" #: ../../include/Contact.php:148 ../../include/Contact.php:161 -#: ../../include/conversation.php:816 +#: ../../include/conversation.php:812 msgid "Network Posts" msgstr "" -#: ../../include/Contact.php:149 ../../include/conversation.php:817 +#: ../../include/Contact.php:149 ../../include/Contact.php:161 +#: ../../include/conversation.php:813 msgid "Edit Contact" msgstr "" #: ../../include/Contact.php:150 ../../include/Contact.php:161 -#: ../../include/conversation.php:818 +#: ../../include/conversation.php:814 msgid "Send PM" msgstr "" @@ -6681,18 +6852,18 @@ msgstr "" msgid "Select" msgstr "" -#: ../../include/conversation.php:334 ../../include/conversation.php:672 -#: ../../include/conversation.php:673 +#: ../../include/conversation.php:334 ../../include/conversation.php:668 +#: ../../include/conversation.php:669 #, php-format msgid "View %s's profile @ %s" msgstr "" -#: ../../include/conversation.php:344 ../../include/conversation.php:684 +#: ../../include/conversation.php:344 ../../include/conversation.php:680 #, php-format msgid "%s from %s" msgstr "" -#: ../../include/conversation.php:360 +#: ../../include/conversation.php:359 msgid "View in context" msgstr "" @@ -6743,118 +6914,118 @@ msgstr "" msgid "save to folder" msgstr "" -#: ../../include/conversation.php:674 +#: ../../include/conversation.php:670 msgid "to" msgstr "" -#: ../../include/conversation.php:675 +#: ../../include/conversation.php:671 msgid "Wall-to-Wall" msgstr "" -#: ../../include/conversation.php:676 +#: ../../include/conversation.php:672 msgid "via Wall-To-Wall:" msgstr "" -#: ../../include/conversation.php:721 +#: ../../include/conversation.php:717 msgid "Delete Selected Items" msgstr "" -#: ../../include/conversation.php:872 +#: ../../include/conversation.php:868 #, php-format msgid "%s likes this." msgstr "" -#: ../../include/conversation.php:872 +#: ../../include/conversation.php:868 #, php-format msgid "%s doesn't like this." msgstr "" -#: ../../include/conversation.php:876 +#: ../../include/conversation.php:872 #, php-format msgid "%2$d people like this." msgstr "" -#: ../../include/conversation.php:878 +#: ../../include/conversation.php:874 #, php-format msgid "%2$d people don't like this." msgstr "" -#: ../../include/conversation.php:884 +#: ../../include/conversation.php:880 msgid "and" msgstr "" -#: ../../include/conversation.php:887 +#: ../../include/conversation.php:883 #, php-format msgid ", and %d other people" msgstr "" -#: ../../include/conversation.php:888 +#: ../../include/conversation.php:884 #, php-format msgid "%s like this." msgstr "" -#: ../../include/conversation.php:888 +#: ../../include/conversation.php:884 #, php-format msgid "%s don't like this." msgstr "" -#: ../../include/conversation.php:913 +#: ../../include/conversation.php:909 msgid "Visible to everybody" msgstr "" -#: ../../include/conversation.php:915 +#: ../../include/conversation.php:911 msgid "Please enter a video link/URL:" msgstr "" -#: ../../include/conversation.php:916 +#: ../../include/conversation.php:912 msgid "Please enter an audio link/URL:" msgstr "" -#: ../../include/conversation.php:917 +#: ../../include/conversation.php:913 msgid "Tag term:" msgstr "" -#: ../../include/conversation.php:919 +#: ../../include/conversation.php:915 msgid "Where are you right now?" msgstr "" -#: ../../include/conversation.php:962 +#: ../../include/conversation.php:958 msgid "upload photo" msgstr "" -#: ../../include/conversation.php:964 +#: ../../include/conversation.php:960 msgid "attach file" msgstr "" -#: ../../include/conversation.php:966 +#: ../../include/conversation.php:962 msgid "web link" msgstr "" -#: ../../include/conversation.php:967 +#: ../../include/conversation.php:963 msgid "Insert video link" msgstr "" -#: ../../include/conversation.php:968 +#: ../../include/conversation.php:964 msgid "video link" msgstr "" -#: ../../include/conversation.php:969 +#: ../../include/conversation.php:965 msgid "Insert audio link" msgstr "" -#: ../../include/conversation.php:970 +#: ../../include/conversation.php:966 msgid "audio link" msgstr "" -#: ../../include/conversation.php:972 +#: ../../include/conversation.php:968 msgid "set location" msgstr "" -#: ../../include/conversation.php:974 +#: ../../include/conversation.php:970 msgid "clear location" msgstr "" -#: ../../include/conversation.php:981 +#: ../../include/conversation.php:977 msgid "permissions" msgstr "" @@ -6886,42 +7057,42 @@ msgstr "" msgid "Forgot your password?" msgstr "" -#: ../../boot.php:974 +#: ../../boot.php:975 msgid "Edit profile" msgstr "" -#: ../../boot.php:1034 +#: ../../boot.php:1035 msgid "Message" msgstr "" -#: ../../boot.php:1150 ../../boot.php:1222 +#: ../../boot.php:1151 ../../boot.php:1223 msgid "g A l F d" msgstr "" -#: ../../boot.php:1151 ../../boot.php:1223 +#: ../../boot.php:1152 ../../boot.php:1224 msgid "F d" msgstr "" -#: ../../boot.php:1176 +#: ../../boot.php:1177 msgid "Birthday Reminders" msgstr "" -#: ../../boot.php:1177 +#: ../../boot.php:1178 msgid "Birthdays this week:" msgstr "" -#: ../../boot.php:1200 ../../boot.php:1265 +#: ../../boot.php:1201 ../../boot.php:1266 msgid "[today]" msgstr "" -#: ../../boot.php:1246 +#: ../../boot.php:1247 msgid "Event Reminders" msgstr "" -#: ../../boot.php:1247 +#: ../../boot.php:1248 msgid "Events this week:" msgstr "" -#: ../../boot.php:1259 +#: ../../boot.php:1260 msgid "[No description]" msgstr "" diff --git a/view/admin_logs.tpl b/view/admin_logs.tpl index 9d133b155..b777cf420 100644 --- a/view/admin_logs.tpl +++ b/view/admin_logs.tpl @@ -2,6 +2,7 @@

$title - $page

+ {{ inc field_checkbox.tpl with $field=$debugging }}{{ endinc }} {{ inc field_input.tpl with $field=$logfile }}{{ endinc }} diff --git a/view/admin_plugins.tpl b/view/admin_plugins.tpl index 8367ff6a1..74b56bb4e 100644 --- a/view/admin_plugins.tpl +++ b/view/admin_plugins.tpl @@ -4,7 +4,7 @@
    {{ for $plugins as $p }}
  • - + $p.2.name - $p.2.version {{ if $p.2.experimental }} $experimental {{ endif }}{{ if $p.2.unsupported }} $unsupported {{ endif }} diff --git a/view/admin_plugins_details.tpl b/view/admin_plugins_details.tpl index aaa366f65..931c7b83c 100644 --- a/view/admin_plugins_details.tpl +++ b/view/admin_plugins_details.tpl @@ -1,7 +1,7 @@

    $title - $page

    -

    $info.name - $info.version : $action

    +

    $info.name - $info.version : $action

    $info.description

    $str_author diff --git a/view/admin_site.tpl b/view/admin_site.tpl index 9de6bd9c5..2b9db9f35 100644 --- a/view/admin_site.tpl +++ b/view/admin_site.tpl @@ -38,7 +38,8 @@

    $title - $page

    - + + {{ inc field_input.tpl with $field=$sitename }}{{ endinc }} {{ inc field_textarea.tpl with $field=$banner }}{{ endinc }} {{ inc field_select.tpl with $field=$language }}{{ endinc }} diff --git a/view/admin_users.tpl b/view/admin_users.tpl index bde7edb59..f67e4a0f7 100644 --- a/view/admin_users.tpl +++ b/view/admin_users.tpl @@ -14,6 +14,7 @@

    $title - $page

    +

    $h_pending

    {{ if $pending }} @@ -72,8 +73,8 @@ $u.page-flags - - + + {{ endfor }} diff --git a/view/ca/messages.po b/view/ca/messages.po index 8463ceb12..25c3ce6dc 100644 --- a/view/ca/messages.po +++ b/view/ca/messages.po @@ -2910,7 +2910,7 @@ msgstr "Comptes abandonats després de x dies" #: ../../mod/admin.php:330 msgid "" -"Will not waste system resources polling external sites for abandonded " +"Will not waste system resources polling external sites for abandoned " "accounts. Enter 0 for no time limit." msgstr "No gastará recursos del sistema creant enquestes des de llocs externos per a comptes abandonats. Introdueixi 0 per a cap límit temporal." diff --git a/view/ca/strings.php b/view/ca/strings.php index e5aed8be6..265058391 100644 --- a/view/ca/strings.php +++ b/view/ca/strings.php @@ -654,7 +654,7 @@ $a->strings["Register policy"] = "Política per a registrar"; $a->strings["Register text"] = "Text al registrar"; $a->strings["Will be displayed prominently on the registration page."] = "Sea mostrat de forma peminent a la pagina durant el procés de registre."; $a->strings["Accounts abandoned after x days"] = "Comptes abandonats després de x dies"; -$a->strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "No gastará recursos del sistema creant enquestes des de llocs externos per a comptes abandonats. Introdueixi 0 per a cap límit temporal."; +$a->strings["Will not waste system resources polling external sites for abandoned accounts. Enter 0 for no time limit."] = "No gastará recursos del sistema creant enquestes des de llocs externos per a comptes abandonats. Introdueixi 0 per a cap límit temporal."; $a->strings["Allowed friend domains"] = "Dominis amics permesos"; $a->strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "Llista de dominis separada per comes, de adreçes de correu que són permeses per establir amistats. S'admeten comodins. Deixa'l buit per a acceptar tots els dominis."; $a->strings["Allowed email domains"] = "Dominis de correu permesos"; diff --git a/view/de/messages.po b/view/de/messages.po index c834ec328..5b0b9ece4 100644 --- a/view/de/messages.po +++ b/view/de/messages.po @@ -5,10 +5,12 @@ # Translators: # bavatar , 2011. # Erkan Yilmaz , 2011. +# Fabian Dost , 2012. # , 2012. # , 2012. # , 2011. # , 2012. +# Martin Schmitt , 2012. # , 2011, 2012. # , 2011, 2012. # , 2011. @@ -16,9 +18,9 @@ msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: http://bugs.friendica.com/\n" -"POT-Creation-Date: 2012-04-06 10:00-0700\n" -"PO-Revision-Date: 2012-04-08 23:57+0000\n" -"Last-Translator: zottel \n" +"POT-Creation-Date: 2012-04-16 10:00-0700\n" +"PO-Revision-Date: 2012-04-17 15:40+0000\n" +"Last-Translator: bavatar \n" "Language-Team: German (http://www.transifex.net/projects/p/friendica/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -43,13 +45,13 @@ msgstr "Einstellungen zum Kontakt angewandt." msgid "Contact update failed." msgstr "Konnte den Kontakt nicht aktualisieren." -#: ../../mod/crepair.php:115 ../../mod/wall_attach.php:43 +#: ../../mod/crepair.php:115 ../../mod/wall_attach.php:44 #: ../../mod/fsuggest.php:78 ../../mod/events.php:110 ../../mod/api.php:26 #: ../../mod/api.php:31 ../../mod/photos.php:130 ../../mod/photos.php:866 #: ../../mod/editpost.php:10 ../../mod/install.php:171 #: ../../mod/notifications.php:66 ../../mod/contacts.php:125 -#: ../../mod/settings.php:62 ../../mod/settings.php:473 -#: ../../mod/settings.php:478 ../../mod/manage.php:86 ../../mod/network.php:6 +#: ../../mod/settings.php:99 ../../mod/settings.php:514 +#: ../../mod/settings.php:519 ../../mod/manage.php:86 ../../mod/network.php:6 #: ../../mod/notes.php:20 ../../mod/wallmessage.php:9 #: ../../mod/wallmessage.php:33 ../../mod/wallmessage.php:79 #: ../../mod/wallmessage.php:103 ../../mod/attach.php:33 @@ -58,13 +60,14 @@ msgstr "Konnte den Kontakt nicht aktualisieren." #: ../../mod/item.php:140 ../../mod/profile_photo.php:19 #: ../../mod/profile_photo.php:139 ../../mod/profile_photo.php:150 #: ../../mod/profile_photo.php:163 ../../mod/message.php:38 -#: ../../mod/message.php:91 ../../mod/allfriends.php:9 -#: ../../mod/wall_upload.php:42 ../../mod/follow.php:8 ../../mod/common.php:9 -#: ../../mod/display.php:138 ../../mod/profiles.php:7 -#: ../../mod/profiles.php:232 ../../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:456 -#: ../../include/items.php:3118 ../../index.php:294 +#: ../../mod/message.php:90 ../../mod/allfriends.php:9 +#: ../../mod/nogroup.php:25 ../../mod/wall_upload.php:46 +#: ../../mod/follow.php:8 ../../mod/common.php:9 ../../mod/display.php:138 +#: ../../mod/profiles.php:7 ../../mod/profiles.php:329 +#: ../../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:461 ../../include/items.php:3170 +#: ../../index.php:309 msgid "Permission denied." msgstr "Zugriff verweigert." @@ -93,8 +96,8 @@ msgstr "Bitte nutze den Zurück-Button deines Browsers jetzt, w msgid "Return to contact editor" msgstr "Zurück zum Kontakteditor" -#: ../../mod/crepair.php:148 ../../mod/settings.php:531 -#: ../../mod/settings.php:558 ../../mod/admin.php:528 ../../mod/admin.php:537 +#: ../../mod/crepair.php:148 ../../mod/settings.php:534 +#: ../../mod/settings.php:560 ../../mod/admin.php:544 ../../mod/admin.php:553 msgid "Name" msgstr "Name" @@ -135,34 +138,42 @@ msgstr "Neues Foto von dieser URL" #: ../../mod/photos.php:1194 ../../mod/photos.php:1234 #: ../../mod/photos.php:1274 ../../mod/photos.php:1305 #: ../../mod/install.php:251 ../../mod/install.php:289 -#: ../../mod/localtime.php:45 ../../mod/contacts.php:319 -#: ../../mod/settings.php:529 ../../mod/settings.php:679 -#: ../../mod/settings.php:741 ../../mod/settings.php:926 -#: ../../mod/manage.php:109 ../../mod/group.php:85 ../../mod/admin.php:357 -#: ../../mod/admin.php:525 ../../mod/admin.php:654 ../../mod/admin.php:826 -#: ../../mod/admin.php:906 ../../mod/profiles.php:390 ../../mod/invite.php:119 -#: ../../addon/facebook/facebook.php:547 ../../addon/yourls/yourls.php:76 +#: ../../mod/localtime.php:45 ../../mod/contacts.php:325 +#: ../../mod/settings.php:532 ../../mod/settings.php:678 +#: ../../mod/settings.php:739 ../../mod/settings.php:930 +#: ../../mod/manage.php:109 ../../mod/group.php:85 ../../mod/admin.php:374 +#: ../../mod/admin.php:541 ../../mod/admin.php:670 ../../mod/admin.php:850 +#: ../../mod/admin.php:930 ../../mod/profiles.php:498 ../../mod/invite.php:119 +#: ../../addon/facebook/facebook.php:552 ../../addon/yourls/yourls.php:76 #: ../../addon/ljpost/ljpost.php:93 ../../addon/nsfw/nsfw.php:57 +#: ../../addon/planets/planets.php:158 #: ../../addon/uhremotestorage/uhremotestorage.php:89 -#: ../../addon/randplace/randplace.php:179 ../../addon/dwpost/dwpost.php:93 +#: ../../addon/randplace/randplace.php:177 ../../addon/dwpost/dwpost.php:93 #: ../../addon/drpost/drpost.php:110 ../../addon/geonames/geonames.php:187 -#: ../../addon/oembed.old/oembed.php:41 ../../addon/impressum/impressum.php:69 +#: ../../addon/oembed.old/oembed.php:41 ../../addon/impressum/impressum.php:80 #: ../../addon/blockem/blockem.php:57 ../../addon/qcomment/qcomment.php:61 #: ../../addon/openstreetmap/openstreetmap.php:70 -#: ../../addon/editplain/editplain.php:84 ../../addon/blackout/blackout.php:94 +#: ../../addon/mathjax/mathjax.php:42 ../../addon/editplain/editplain.php:84 +#: ../../addon/blackout/blackout.php:94 ../../addon/gravatar/gravatar.php:86 #: ../../addon/pageheader/pageheader.php:55 ../../addon/ijpost/ijpost.php:93 #: ../../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:547 ../../addon/tumblr/tumblr.php:90 +#: ../../addon/statusnet/statusnet.php:553 ../../addon/tumblr/tumblr.php:90 #: ../../addon/numfriends/numfriends.php:85 ../../addon/gnot/gnot.php:88 #: ../../addon/wppost/wppost.php:102 ../../addon/showmore/showmore.php:48 #: ../../addon/piwik/piwik.php:89 ../../addon/twitter/twitter.php:180 -#: ../../addon/twitter/twitter.php:209 ../../addon/twitter/twitter.php:369 +#: ../../addon/twitter/twitter.php:209 ../../addon/twitter/twitter.php:375 +#: ../../addon/irc/irc.php:55 ../../addon/blogger/blogger.php:102 #: ../../addon/posterous/posterous.php:90 -#: ../../view/theme/quattro/config.php:21 ../../include/conversation.php:555 +#: ../../view/theme/diabook-red/config.php:64 +#: ../../view/theme/diabook-blue/config.php:64 +#: ../../view/theme/diabook/config.php:76 +#: ../../view/theme/quattro/config.php:52 +#: ../../view/theme/diabook-aerith/config.php:64 +#: ../../include/conversation.php:555 msgid "Submit" msgstr "Senden" @@ -174,20 +185,20 @@ msgstr "Hilfe:" msgid "Help" msgstr "Hilfe" -#: ../../mod/help.php:38 ../../index.php:225 +#: ../../mod/help.php:38 ../../index.php:228 msgid "Not Found" msgstr "Nicht gefunden" -#: ../../mod/help.php:41 ../../index.php:228 +#: ../../mod/help.php:41 ../../index.php:231 msgid "Page not found." msgstr "Seite nicht gefunden." -#: ../../mod/wall_attach.php:57 +#: ../../mod/wall_attach.php:58 #, 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:85 ../../mod/wall_attach.php:96 +#: ../../mod/wall_attach.php:86 ../../mod/wall_attach.php:97 msgid "File upload failed." msgstr "Hochladen der Datei fehlgeschlagen." @@ -220,11 +231,11 @@ msgstr "Veranstaltung bearbeiten" msgid "link to source" msgstr "Link zum Originalbeitrag" -#: ../../mod/events.php:296 ../../view/theme/diabook-red/theme.php:240 -#: ../../view/theme/diabook-blue/theme.php:240 -#: ../../view/theme/diabook/theme.php:248 -#: ../../view/theme/diabook-aerith/theme.php:240 ../../include/nav.php:52 -#: ../../boot.php:1421 +#: ../../mod/events.php:296 ../../view/theme/diabook-red/theme.php:243 +#: ../../view/theme/diabook-blue/theme.php:243 +#: ../../view/theme/diabook/theme.php:253 +#: ../../view/theme/diabook-aerith/theme.php:244 ../../include/nav.php:52 +#: ../../boot.php:1471 msgid "Events" msgstr "Veranstaltungen" @@ -274,7 +285,7 @@ msgid "Description:" msgstr "Beschreibung" #: ../../mod/events.php:395 ../../include/event.php:37 -#: ../../include/bb2diaspora.php:260 ../../boot.php:1042 +#: ../../include/bb2diaspora.php:260 ../../boot.php:1083 msgid "Location:" msgstr "Ort:" @@ -283,8 +294,8 @@ msgid "Share this event" msgstr "Veranstaltung teilen" #: ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 -#: ../../mod/dfrn_request.php:707 ../../mod/settings.php:530 -#: ../../mod/settings.php:557 ../../addon/js_upload/js_upload.php:45 +#: ../../mod/dfrn_request.php:752 ../../mod/settings.php:533 +#: ../../mod/settings.php:559 ../../addon/js_upload/js_upload.php:45 msgid "Cancel" msgstr "Abbrechen" @@ -304,7 +315,7 @@ msgstr "Wähle ein Tag zum Entfernen aus: " msgid "Remove" msgstr "Entfernen" -#: ../../mod/dfrn_poll.php:94 ../../mod/dfrn_poll.php:520 +#: ../../mod/dfrn_poll.php:94 ../../mod/dfrn_poll.php:522 #, php-format msgid "%s welcomes %s" msgstr "%s heißt %s herzlich willkommen" @@ -327,25 +338,25 @@ msgid "" " 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/api.php:105 ../../mod/dfrn_request.php:695 -#: ../../mod/settings.php:841 ../../mod/settings.php:847 -#: ../../mod/settings.php:855 ../../mod/settings.php:859 -#: ../../mod/settings.php:864 ../../mod/settings.php:870 -#: ../../mod/settings.php:876 ../../mod/settings.php:882 -#: ../../mod/settings.php:916 ../../mod/settings.php:917 -#: ../../mod/settings.php:918 ../../mod/settings.php:919 -#: ../../mod/register.php:536 ../../mod/profiles.php:369 +#: ../../mod/api.php:105 ../../mod/dfrn_request.php:740 +#: ../../mod/settings.php:844 ../../mod/settings.php:850 +#: ../../mod/settings.php:858 ../../mod/settings.php:862 +#: ../../mod/settings.php:867 ../../mod/settings.php:873 +#: ../../mod/settings.php:879 ../../mod/settings.php:885 +#: ../../mod/settings.php:921 ../../mod/settings.php:922 +#: ../../mod/settings.php:923 ../../mod/settings.php:924 +#: ../../mod/register.php:532 ../../mod/profiles.php:475 msgid "Yes" msgstr "Ja" -#: ../../mod/api.php:106 ../../mod/dfrn_request.php:696 -#: ../../mod/settings.php:841 ../../mod/settings.php:847 -#: ../../mod/settings.php:855 ../../mod/settings.php:859 -#: ../../mod/settings.php:864 ../../mod/settings.php:870 -#: ../../mod/settings.php:876 ../../mod/settings.php:882 -#: ../../mod/settings.php:916 ../../mod/settings.php:917 -#: ../../mod/settings.php:918 ../../mod/settings.php:919 -#: ../../mod/register.php:537 ../../mod/profiles.php:370 +#: ../../mod/api.php:106 ../../mod/dfrn_request.php:741 +#: ../../mod/settings.php:844 ../../mod/settings.php:850 +#: ../../mod/settings.php:858 ../../mod/settings.php:862 +#: ../../mod/settings.php:867 ../../mod/settings.php:873 +#: ../../mod/settings.php:879 ../../mod/settings.php:885 +#: ../../mod/settings.php:921 ../../mod/settings.php:922 +#: ../../mod/settings.php:923 ../../mod/settings.php:924 +#: ../../mod/register.php:533 ../../mod/profiles.php:476 msgid "No" msgstr "Nein" @@ -356,10 +367,10 @@ msgstr "Fotoalben" #: ../../mod/photos.php:51 ../../mod/photos.php:151 ../../mod/photos.php:880 #: ../../mod/photos.php:951 ../../mod/photos.php:966 ../../mod/photos.php:1383 #: ../../mod/photos.php:1395 ../../addon/communityhome/communityhome.php:110 -#: ../../view/theme/diabook-red/theme.php:110 -#: ../../view/theme/diabook-blue/theme.php:110 -#: ../../view/theme/diabook/theme.php:114 -#: ../../view/theme/diabook-aerith/theme.php:110 +#: ../../view/theme/diabook-red/theme.php:113 +#: ../../view/theme/diabook-blue/theme.php:113 +#: ../../view/theme/diabook/theme.php:119 +#: ../../view/theme/diabook-aerith/theme.php:114 msgid "Contact Photos" msgstr "Kontaktbilder" @@ -367,7 +378,7 @@ msgstr "Kontaktbilder" msgid "Upload New Photos" msgstr "Weitere Fotos hochladen" -#: ../../mod/photos.php:69 ../../mod/settings.php:24 +#: ../../mod/photos.php:69 ../../mod/settings.php:20 msgid "everybody" msgstr "jeder" @@ -376,16 +387,16 @@ msgid "Contact information unavailable" msgstr "Kontaktinformationen nicht verfügbar" #: ../../mod/photos.php:151 ../../mod/photos.php:598 ../../mod/photos.php:951 -#: ../../mod/photos.php:966 ../../mod/register.php:339 -#: ../../mod/register.php:346 ../../mod/register.php:353 +#: ../../mod/photos.php:966 ../../mod/register.php:335 +#: ../../mod/register.php:342 ../../mod/register.php:349 #: ../../mod/profile_photo.php:60 ../../mod/profile_photo.php:67 #: ../../mod/profile_photo.php:74 ../../mod/profile_photo.php:174 #: ../../mod/profile_photo.php:252 ../../mod/profile_photo.php:261 #: ../../addon/communityhome/communityhome.php:111 -#: ../../view/theme/diabook-red/theme.php:111 -#: ../../view/theme/diabook-blue/theme.php:111 -#: ../../view/theme/diabook/theme.php:115 -#: ../../view/theme/diabook-aerith/theme.php:111 +#: ../../view/theme/diabook-red/theme.php:114 +#: ../../view/theme/diabook-blue/theme.php:114 +#: ../../view/theme/diabook/theme.php:120 +#: ../../view/theme/diabook-aerith/theme.php:115 msgid "Profile Photos" msgstr "Profilbilder" @@ -407,10 +418,10 @@ msgstr "wurde getaggt in einem" #: ../../mod/photos.php:529 ../../mod/like.php:127 ../../mod/tagger.php:70 #: ../../addon/communityhome/communityhome.php:163 -#: ../../view/theme/diabook-red/theme.php:82 -#: ../../view/theme/diabook-blue/theme.php:82 -#: ../../view/theme/diabook/theme.php:86 -#: ../../view/theme/diabook-aerith/theme.php:82 ../../include/text.php:1297 +#: ../../view/theme/diabook-red/theme.php:85 +#: ../../view/theme/diabook-blue/theme.php:85 +#: ../../view/theme/diabook/theme.php:91 +#: ../../view/theme/diabook-aerith/theme.php:86 ../../include/text.php:1304 #: ../../include/diaspora.php:1654 ../../include/conversation.php:53 #: ../../include/conversation.php:126 msgid "photo" @@ -429,17 +440,17 @@ msgid "Image file is empty." msgstr "Bilddatei ist leer." #: ../../mod/photos.php:654 ../../mod/profile_photo.php:124 -#: ../../mod/wall_upload.php:65 +#: ../../mod/wall_upload.php:69 msgid "Unable to process image." msgstr "Konnte das Bild nicht bearbeiten." #: ../../mod/photos.php:674 ../../mod/profile_photo.php:257 -#: ../../mod/wall_upload.php:84 +#: ../../mod/wall_upload.php:88 msgid "Image upload failed." msgstr "Hochladen des Bildes gescheitert." #: ../../mod/photos.php:760 ../../mod/community.php:16 -#: ../../mod/dfrn_request.php:626 ../../mod/viewcontacts.php:17 +#: ../../mod/dfrn_request.php:671 ../../mod/viewcontacts.php:17 #: ../../mod/display.php:7 ../../mod/search.php:71 ../../mod/directory.php:29 msgid "Public access denied." msgstr "Öffentlicher Zugriff verweigert." @@ -541,14 +552,14 @@ msgstr "Ich mag das (toggle)" msgid "I don't like this (toggle)" msgstr "Ich mag das nicht (toggle)" -#: ../../mod/photos.php:1214 ../../include/conversation.php:960 +#: ../../mod/photos.php:1214 ../../include/conversation.php:956 msgid "Share" msgstr "Teilen" #: ../../mod/photos.php:1215 ../../mod/editpost.php:104 -#: ../../mod/wallmessage.php:145 ../../mod/message.php:189 -#: ../../mod/message.php:358 ../../include/conversation.php:362 -#: ../../include/conversation.php:702 ../../include/conversation.php:979 +#: ../../mod/wallmessage.php:145 ../../mod/message.php:188 +#: ../../mod/message.php:357 ../../include/conversation.php:362 +#: ../../include/conversation.php:698 ../../include/conversation.php:975 msgid "Please wait" msgstr "Bitte warten" @@ -559,17 +570,17 @@ msgstr "Das bist du" #: ../../mod/photos.php:1233 ../../mod/photos.php:1273 #: ../../mod/photos.php:1304 ../../include/conversation.php:554 -#: ../../boot.php:494 +#: ../../boot.php:495 msgid "Comment" msgstr "Kommentar" #: ../../mod/photos.php:1235 ../../mod/editpost.php:125 -#: ../../include/conversation.php:556 ../../include/conversation.php:997 +#: ../../include/conversation.php:556 ../../include/conversation.php:993 msgid "Preview" msgstr "Vorschau" -#: ../../mod/photos.php:1332 ../../mod/settings.php:593 -#: ../../mod/settings.php:677 ../../mod/group.php:168 ../../mod/admin.php:532 +#: ../../mod/photos.php:1332 ../../mod/settings.php:595 +#: ../../mod/settings.php:676 ../../mod/group.php:168 ../../mod/admin.php:548 #: ../../include/conversation.php:318 ../../include/conversation.php:576 msgid "Delete" msgstr "Löschen" @@ -586,11 +597,10 @@ msgstr "Neueste Fotos" msgid "Not available." msgstr "Nicht verfügbar." -#: ../../mod/community.php:30 ../../addon/pages/pages.php:75 -#: ../../view/theme/diabook-red/theme.php:242 -#: ../../view/theme/diabook-blue/theme.php:242 -#: ../../view/theme/diabook/theme.php:250 -#: ../../view/theme/diabook-aerith/theme.php:242 ../../include/nav.php:101 +#: ../../mod/community.php:30 ../../view/theme/diabook-red/theme.php:245 +#: ../../view/theme/diabook-blue/theme.php:245 +#: ../../view/theme/diabook/theme.php:255 +#: ../../view/theme/diabook-aerith/theme.php:246 ../../include/nav.php:101 msgid "Community" msgstr "Gemeinschaft" @@ -638,28 +648,28 @@ msgstr "Beitrag nicht gefunden" msgid "Edit post" msgstr "Beitrag bearbeiten" -#: ../../mod/editpost.php:80 ../../include/conversation.php:946 +#: ../../mod/editpost.php:80 ../../include/conversation.php:942 msgid "Post to Email" msgstr "An E-Mail senden" -#: ../../mod/editpost.php:95 ../../mod/settings.php:592 +#: ../../mod/editpost.php:95 ../../mod/settings.php:594 #: ../../include/conversation.php:563 msgid "Edit" msgstr "Bearbeiten" #: ../../mod/editpost.php:96 ../../mod/wallmessage.php:143 -#: ../../mod/message.php:187 ../../mod/message.php:356 -#: ../../include/conversation.php:961 +#: ../../mod/message.php:186 ../../mod/message.php:355 +#: ../../include/conversation.php:957 msgid "Upload photo" msgstr "Foto hochladen" -#: ../../mod/editpost.php:97 ../../include/conversation.php:963 +#: ../../mod/editpost.php:97 ../../include/conversation.php:959 msgid "Attach file" msgstr "Datei anhängen" #: ../../mod/editpost.php:98 ../../mod/wallmessage.php:144 -#: ../../mod/message.php:188 ../../mod/message.php:357 -#: ../../include/conversation.php:965 +#: ../../mod/message.php:187 ../../mod/message.php:356 +#: ../../include/conversation.php:961 msgid "Insert web link" msgstr "eine Kontaktanfrage" @@ -675,35 +685,35 @@ msgstr "Vorbis [.ogg] Video einfügen" msgid "Insert Vorbis [.ogg] audio" msgstr "Vorbis [.ogg] Audio einfügen" -#: ../../mod/editpost.php:102 ../../include/conversation.php:971 +#: ../../mod/editpost.php:102 ../../include/conversation.php:967 msgid "Set your location" msgstr "Deinen Standort festlegen" -#: ../../mod/editpost.php:103 ../../include/conversation.php:973 +#: ../../mod/editpost.php:103 ../../include/conversation.php:969 msgid "Clear browser location" msgstr "Browser-Standort leeren" -#: ../../mod/editpost.php:105 ../../include/conversation.php:980 +#: ../../mod/editpost.php:105 ../../include/conversation.php:976 msgid "Permission settings" msgstr "Berechtigungseinstellungen" -#: ../../mod/editpost.php:113 ../../include/conversation.php:989 +#: ../../mod/editpost.php:113 ../../include/conversation.php:985 msgid "CC: email addresses" msgstr "Cc:-E-Mail-Addressen" -#: ../../mod/editpost.php:114 ../../include/conversation.php:990 +#: ../../mod/editpost.php:114 ../../include/conversation.php:986 msgid "Public post" msgstr "Öffentlicher Beitrag" -#: ../../mod/editpost.php:117 ../../include/conversation.php:976 +#: ../../mod/editpost.php:117 ../../include/conversation.php:972 msgid "Set title" msgstr "Titel setzen" -#: ../../mod/editpost.php:119 ../../include/conversation.php:978 +#: ../../mod/editpost.php:119 ../../include/conversation.php:974 msgid "Categories (comma-separated list)" msgstr "Kategorien (mit Komma separierte Liste)" -#: ../../mod/editpost.php:120 ../../include/conversation.php:992 +#: ../../mod/editpost.php:120 ../../include/conversation.php:988 msgid "Example: bob@example.com, mary@example.com" msgstr "Z.B.: bob@example.com, mary@example.com" @@ -711,19 +721,19 @@ msgstr "Z.B.: bob@example.com, mary@example.com" msgid "This introduction has already been accepted." msgstr "Diese Kontaktanfrage wurde bereits akzeptiert." -#: ../../mod/dfrn_request.php:117 ../../mod/dfrn_request.php:382 +#: ../../mod/dfrn_request.php:117 ../../mod/dfrn_request.php:427 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:122 ../../mod/dfrn_request.php:387 +#: ../../mod/dfrn_request.php:122 ../../mod/dfrn_request.php:432 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:124 ../../mod/dfrn_request.php:389 +#: ../../mod/dfrn_request.php:124 ../../mod/dfrn_request.php:434 msgid "Warning: profile location has no profile photo." msgstr "Warnung: Es konnte kein Profilbild bei der angegebenen Profiladresse gefunden werden." -#: ../../mod/dfrn_request.php:127 ../../mod/dfrn_request.php:392 +#: ../../mod/dfrn_request.php:127 ../../mod/dfrn_request.php:437 #, 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" @@ -755,132 +765,140 @@ msgstr "Maßnahmen zum Spamschutz wurden ergriffen." 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:307 +#: ../../mod/dfrn_request.php:309 msgid "Invalid locator" msgstr "Ungültiger Locator" -#: ../../mod/dfrn_request.php:327 +#: ../../mod/dfrn_request.php:318 +msgid "Invalid email address." +msgstr "Ungültige E-Mail Adresse." + +#: ../../mod/dfrn_request.php:344 +msgid "This account has not been configured for email. Request failed." +msgstr "" + +#: ../../mod/dfrn_request.php:372 msgid "Unable to resolve your name at the provided location." msgstr "Konnte deinen Namen an der angegebenen Stelle nicht finden." -#: ../../mod/dfrn_request.php:340 +#: ../../mod/dfrn_request.php:385 msgid "You have already introduced yourself here." msgstr "Du hast dich hier bereits vorgestellt." -#: ../../mod/dfrn_request.php:344 +#: ../../mod/dfrn_request.php:389 #, 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:365 +#: ../../mod/dfrn_request.php:410 msgid "Invalid profile URL." msgstr "Ungültige Profil-URL." -#: ../../mod/dfrn_request.php:371 ../../mod/follow.php:20 +#: ../../mod/dfrn_request.php:416 ../../mod/follow.php:20 msgid "Disallowed profile URL." msgstr "Nicht erlaubte Profil-URL." -#: ../../mod/dfrn_request.php:440 ../../mod/contacts.php:102 +#: ../../mod/dfrn_request.php:485 ../../mod/contacts.php:102 msgid "Failed to update contact record." msgstr "Aktualisierung der Kontaktdaten fehlgeschlagen." -#: ../../mod/dfrn_request.php:461 +#: ../../mod/dfrn_request.php:506 msgid "Your introduction has been sent." msgstr "Deine Kontaktanfrage wurde gesendet." -#: ../../mod/dfrn_request.php:514 +#: ../../mod/dfrn_request.php:559 msgid "Please login to confirm introduction." msgstr "Bitte melde dich an, um die Kontaktanfrage zu bestätigen." -#: ../../mod/dfrn_request.php:528 +#: ../../mod/dfrn_request.php:573 msgid "" "Incorrect identity currently logged in. Please login to " "this profile." msgstr "Momentan bist du mit einer anderen Identität angemeldet. Bitte melde Dich mit diesem Profil an." -#: ../../mod/dfrn_request.php:540 +#: ../../mod/dfrn_request.php:585 #, php-format msgid "Welcome home %s." msgstr "Willkommen zurück %s." -#: ../../mod/dfrn_request.php:541 +#: ../../mod/dfrn_request.php:586 #, php-format msgid "Please confirm your introduction/connection request to %s." msgstr "Bitte bestätige deine Kontaktanfrage bei %s." -#: ../../mod/dfrn_request.php:542 +#: ../../mod/dfrn_request.php:587 msgid "Confirm" msgstr "Bestätigen" -#: ../../mod/dfrn_request.php:583 ../../include/items.php:2649 +#: ../../mod/dfrn_request.php:628 ../../include/items.php:2690 msgid "[Name Withheld]" msgstr "[Name unterdrückt]" -#: ../../mod/dfrn_request.php:670 +#: ../../mod/dfrn_request.php:715 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:686 +#: ../../mod/dfrn_request.php:731 msgid "Connect as an email follower (Coming soon)" msgstr "Als E-Mail-Kontakt verbinden (In Kürze verfügbar)" -#: ../../mod/dfrn_request.php:688 +#: ../../mod/dfrn_request.php:733 msgid "" "If you are not yet a member of the free social web, follow this link to find a public" " Friendica site and join us today." msgstr "Wenn du noch kein Mitglied dieses freien sozialen Netzwerks bist, folge diesem Link um einen öffentlichen Friendica-Server zu finden und beizutreten." -#: ../../mod/dfrn_request.php:691 +#: ../../mod/dfrn_request.php:736 msgid "Friend/Connection Request" msgstr "Freundschafts-/Kontaktanfrage" -#: ../../mod/dfrn_request.php:692 +#: ../../mod/dfrn_request.php:737 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:693 +#: ../../mod/dfrn_request.php:738 msgid "Please answer the following:" msgstr "Bitte beantworte Folgendes:" -#: ../../mod/dfrn_request.php:694 +#: ../../mod/dfrn_request.php:739 #, php-format msgid "Does %s know you?" msgstr "Kennt %s dich?" -#: ../../mod/dfrn_request.php:697 +#: ../../mod/dfrn_request.php:742 msgid "Add a personal note:" msgstr "Eine persönliche Notiz beifügen:" -#: ../../mod/dfrn_request.php:699 ../../include/contact_selectors.php:76 +#: ../../mod/dfrn_request.php:744 ../../include/contact_selectors.php:76 msgid "Friendica" msgstr "Friendica" -#: ../../mod/dfrn_request.php:700 +#: ../../mod/dfrn_request.php:745 msgid "StatusNet/Federated Social Web" msgstr "StatusNet/Federated Social Web" -#: ../../mod/dfrn_request.php:701 ../../mod/settings.php:629 +#: ../../mod/dfrn_request.php:746 ../../mod/settings.php:629 #: ../../include/contact_selectors.php:80 msgid "Diaspora" msgstr "Diaspora" -#: ../../mod/dfrn_request.php:702 +#: ../../mod/dfrn_request.php:747 #, 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:703 +#: ../../mod/dfrn_request.php:748 msgid "Your Identity Address:" msgstr "Adresse deines Profils:" -#: ../../mod/dfrn_request.php:706 +#: ../../mod/dfrn_request.php:751 msgid "Submit Request" msgstr "Anfrage abschicken" @@ -1176,7 +1194,7 @@ msgid "is interested in:" msgstr "ist interessiert an:" #: ../../mod/match.php:58 ../../mod/suggest.php:59 -#: ../../include/contact_widgets.php:9 ../../boot.php:986 +#: ../../include/contact_widgets.php:9 ../../boot.php:1027 msgid "Connect" msgstr "Verbinden" @@ -1207,8 +1225,8 @@ msgid "Discard" msgstr "Verwerfen" #: ../../mod/notifications.php:51 ../../mod/notifications.php:160 -#: ../../mod/notifications.php:206 ../../mod/contacts.php:302 -#: ../../mod/contacts.php:345 +#: ../../mod/notifications.php:206 ../../mod/contacts.php:308 +#: ../../mod/contacts.php:351 msgid "Ignore" msgstr "Ignorieren" @@ -1224,10 +1242,10 @@ msgstr "Netzwerk" msgid "Personal" msgstr "Persönlich" -#: ../../mod/notifications.php:90 ../../view/theme/diabook-red/theme.php:236 -#: ../../view/theme/diabook-blue/theme.php:236 -#: ../../view/theme/diabook/theme.php:244 -#: ../../view/theme/diabook-aerith/theme.php:236 ../../include/nav.php:77 +#: ../../mod/notifications.php:90 ../../view/theme/diabook-red/theme.php:239 +#: ../../view/theme/diabook-blue/theme.php:239 +#: ../../view/theme/diabook/theme.php:249 +#: ../../view/theme/diabook-aerith/theme.php:240 ../../include/nav.php:77 #: ../../include/nav.php:115 msgid "Home" msgstr "Pinnwand" @@ -1236,7 +1254,7 @@ msgstr "Pinnwand" msgid "Introductions" msgstr "Kontaktanfragen" -#: ../../mod/notifications.php:100 ../../mod/message.php:103 +#: ../../mod/notifications.php:100 ../../mod/message.php:102 #: ../../include/nav.php:128 msgid "Messages" msgstr "Nachrichten" @@ -1263,7 +1281,7 @@ msgid "suggested by %s" msgstr "vorgeschlagen von %s" #: ../../mod/notifications.php:153 ../../mod/notifications.php:200 -#: ../../mod/contacts.php:350 +#: ../../mod/contacts.php:356 msgid "Hide this contact from others" msgstr "Verberge diesen Kontakt vor anderen" @@ -1276,7 +1294,7 @@ msgid "if applicable" msgstr "falls anwendbar" #: ../../mod/notifications.php:157 ../../mod/notifications.php:204 -#: ../../mod/admin.php:530 +#: ../../mod/admin.php:546 msgid "Approve" msgstr "Genehmigen" @@ -1421,207 +1439,206 @@ msgstr "wird nicht mehr gefolgt" msgid "Contact has been removed." msgstr "Kontakt wurde entfernt." -#: ../../mod/contacts.php:245 +#: ../../mod/contacts.php:251 #, php-format msgid "You are mutual friends with %s" msgstr "Du hast mit %s eine beidseitige Freundschaft" -#: ../../mod/contacts.php:249 +#: ../../mod/contacts.php:255 #, php-format msgid "You are sharing with %s" msgstr "Du teilst mit %s" -#: ../../mod/contacts.php:254 +#: ../../mod/contacts.php:260 #, php-format msgid "%s is sharing with you" msgstr "%s teilt mit Dir" -#: ../../mod/contacts.php:271 +#: ../../mod/contacts.php:277 msgid "Private communications are not available for this contact." msgstr "Private Kommunikation ist für diesen Kontakt nicht verfügbar." -#: ../../mod/contacts.php:274 +#: ../../mod/contacts.php:280 msgid "Never" msgstr "Niemals" -#: ../../mod/contacts.php:278 +#: ../../mod/contacts.php:284 msgid "(Update was successful)" msgstr "(Aktualisierung war erfolgreich)" -#: ../../mod/contacts.php:278 +#: ../../mod/contacts.php:284 msgid "(Update was not successful)" msgstr "(Aktualisierung war nicht erfolgreich)" -#: ../../mod/contacts.php:280 +#: ../../mod/contacts.php:286 msgid "Suggest friends" msgstr "Kontakte vorschlagen" -#: ../../mod/contacts.php:284 +#: ../../mod/contacts.php:290 #, php-format msgid "Network type: %s" msgstr "Netzwerk Typ: %s" -#: ../../mod/contacts.php:287 +#: ../../mod/contacts.php:293 #, 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:292 +#: ../../mod/contacts.php:298 msgid "View all contacts" msgstr "Alle Kontakte anzeigen" -#: ../../mod/contacts.php:297 ../../mod/contacts.php:344 -#: ../../mod/admin.php:534 +#: ../../mod/contacts.php:303 ../../mod/contacts.php:350 +#: ../../mod/admin.php:550 msgid "Unblock" msgstr "Entsperren" -#: ../../mod/contacts.php:297 ../../mod/contacts.php:344 -#: ../../mod/admin.php:533 +#: ../../mod/contacts.php:303 ../../mod/contacts.php:350 +#: ../../mod/admin.php:549 msgid "Block" msgstr "Sperren" -#: ../../mod/contacts.php:302 ../../mod/contacts.php:345 +#: ../../mod/contacts.php:308 ../../mod/contacts.php:351 msgid "Unignore" msgstr "Ignorieren aufheben" -#: ../../mod/contacts.php:307 +#: ../../mod/contacts.php:313 msgid "Repair" msgstr "Reparieren" -#: ../../mod/contacts.php:317 +#: ../../mod/contacts.php:323 msgid "Contact Editor" msgstr "Kontakt Editor" -#: ../../mod/contacts.php:320 +#: ../../mod/contacts.php:326 msgid "Profile Visibility" msgstr "Profil Anzeige" -#: ../../mod/contacts.php:321 +#: ../../mod/contacts.php:327 #, 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:322 +#: ../../mod/contacts.php:328 msgid "Contact Information / Notes" msgstr "Kontakt Informationen / Notizen" -#: ../../mod/contacts.php:323 +#: ../../mod/contacts.php:329 msgid "Edit contact notes" msgstr "Notizen zum Kontakt bearbiten" -#: ../../mod/contacts.php:328 ../../mod/contacts.php:501 -#: ../../mod/viewcontacts.php:62 +#: ../../mod/contacts.php:334 ../../mod/contacts.php:507 +#: ../../mod/viewcontacts.php:62 ../../mod/nogroup.php:40 #, php-format msgid "Visit %s's profile [%s]" msgstr "Besuche %ss Profil [%s]" -#: ../../mod/contacts.php:329 +#: ../../mod/contacts.php:335 msgid "Block/Unblock contact" msgstr "Kontakt blockieren/freischalten" -#: ../../mod/contacts.php:330 +#: ../../mod/contacts.php:336 msgid "Ignore contact" msgstr "Ignoriere den Kontakt" -#: ../../mod/contacts.php:331 +#: ../../mod/contacts.php:337 msgid "Repair URL settings" msgstr "URL Einstellungen reparieren" -#: ../../mod/contacts.php:332 +#: ../../mod/contacts.php:338 msgid "View conversations" msgstr "Unterhaltungen anzeigen" -#: ../../mod/contacts.php:334 +#: ../../mod/contacts.php:340 msgid "Delete contact" msgstr "Lösche den Kontakt" -#: ../../mod/contacts.php:338 +#: ../../mod/contacts.php:344 msgid "Last update:" msgstr "letzte Aktualisierung:" -#: ../../mod/contacts.php:339 +#: ../../mod/contacts.php:345 msgid "Update public posts" msgstr "Öffentliche Beiträge aktualisieren" -#: ../../mod/contacts.php:341 ../../mod/admin.php:955 +#: ../../mod/contacts.php:347 ../../mod/admin.php:979 msgid "Update now" msgstr "Jetzt aktualisieren" -#: ../../mod/contacts.php:348 +#: ../../mod/contacts.php:354 msgid "Currently blocked" msgstr "Derzeit geblockt" -#: ../../mod/contacts.php:349 +#: ../../mod/contacts.php:355 msgid "Currently ignored" msgstr "Derzeit ignoriert" -#: ../../mod/contacts.php:350 +#: ../../mod/contacts.php:356 msgid "" "Replies/likes to your public posts may still be visible" msgstr "Antworten/Likes auf deine öffentlichen Beiträge könnten weiterhin sichtbar sein" -#: ../../mod/contacts.php:399 +#: ../../mod/contacts.php:405 msgid "Suggestions" msgstr "Kontaktvorschläge" -#: ../../mod/contacts.php:404 ../../mod/group.php:191 +#: ../../mod/contacts.php:410 ../../mod/group.php:191 msgid "All Contacts" msgstr "Alle Kontakte" -#: ../../mod/contacts.php:409 +#: ../../mod/contacts.php:415 msgid "Unblocked Contacts" msgstr "Nicht blockierte Kontakte" -#: ../../mod/contacts.php:415 +#: ../../mod/contacts.php:421 msgid "Blocked Contacts" msgstr "Blockierte Kontakte" -#: ../../mod/contacts.php:421 +#: ../../mod/contacts.php:427 msgid "Ignored Contacts" msgstr "Ignorierte Kontakte" -#: ../../mod/contacts.php:427 +#: ../../mod/contacts.php:433 msgid "Hidden Contacts" msgstr "Verborgene Kontakte" -#: ../../mod/contacts.php:477 +#: ../../mod/contacts.php:483 msgid "Mutual Friendship" msgstr "Beidseitige Freundschaft" -#: ../../mod/contacts.php:481 +#: ../../mod/contacts.php:487 msgid "is a fan of yours" msgstr "ist ein Fan von dir" -#: ../../mod/contacts.php:485 +#: ../../mod/contacts.php:491 msgid "you are a fan of" msgstr "du bist Fan von" -#: ../../mod/contacts.php:502 ../../include/Contact.php:141 -#: ../../include/conversation.php:817 +#: ../../mod/contacts.php:508 ../../mod/nogroup.php:41 msgid "Edit contact" msgstr "Kontakt bearbeiten" -#: ../../mod/contacts.php:523 ../../view/theme/diabook-red/theme.php:238 -#: ../../view/theme/diabook-blue/theme.php:238 -#: ../../view/theme/diabook/theme.php:246 -#: ../../view/theme/diabook-aerith/theme.php:238 ../../include/nav.php:139 +#: ../../mod/contacts.php:529 ../../view/theme/diabook-red/theme.php:241 +#: ../../view/theme/diabook-blue/theme.php:241 +#: ../../view/theme/diabook/theme.php:251 +#: ../../view/theme/diabook-aerith/theme.php:242 ../../include/nav.php:139 msgid "Contacts" msgstr "Kontakte" -#: ../../mod/contacts.php:527 +#: ../../mod/contacts.php:533 msgid "Search your contacts" msgstr "Suche in deinen Kontakten" -#: ../../mod/contacts.php:528 ../../mod/directory.php:57 +#: ../../mod/contacts.php:534 ../../mod/directory.php:57 msgid "Finding: " msgstr "Funde: " -#: ../../mod/contacts.php:529 ../../mod/directory.php:59 -#: ../../include/contact_widgets.php:32 +#: ../../mod/contacts.php:535 ../../mod/directory.php:59 +#: ../../include/contact_widgets.php:33 msgid "Find" msgstr "Finde" @@ -1639,10 +1656,11 @@ msgid "Password reset requested at %s" msgstr "Anfrage zum Zurücksetzen des Passworts auf %s erhalten" #: ../../mod/lostpass.php:45 ../../mod/lostpass.php:107 -#: ../../mod/register.php:392 ../../mod/register.php:446 +#: ../../mod/register.php:388 ../../mod/register.php:442 #: ../../mod/regmod.php:54 ../../mod/dfrn_confirm.php:732 -#: ../../addon/facebook/facebook.php:617 -#: ../../addon/facebook/facebook.php:1069 ../../include/items.php:2658 +#: ../../addon/facebook/facebook.php:625 +#: ../../addon/facebook/facebook.php:1090 +#: ../../addon/testdrive/testdrive.php:58 ../../include/items.php:2699 msgid "Administrator" msgstr "Administrator" @@ -1652,7 +1670,7 @@ msgid "" "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:83 ../../boot.php:779 +#: ../../mod/lostpass.php:83 ../../boot.php:809 msgid "Password Reset" msgstr "Passwort zurücksetzen" @@ -1696,151 +1714,140 @@ msgstr "Spitzname oder Email:" msgid "Reset" msgstr "Zurücksetzen" -#: ../../mod/settings.php:89 -msgid "Missing some important data!" -msgstr "Wichtige Daten fehlen!" - -#: ../../mod/settings.php:92 ../../mod/settings.php:556 ../../mod/admin.php:75 -msgid "Update" -msgstr "Aktualisierungen" - -#: ../../mod/settings.php:197 -msgid "Failed to connect with email account using the settings provided." -msgstr "Konnte das Email Konto mit den angegebenen Einstellungen nicht erreichen." - -#: ../../mod/settings.php:202 -msgid "Email settings updated." -msgstr "EMail Einstellungen bearbeitet." - -#: ../../mod/settings.php:261 -msgid "Passwords do not match. Password unchanged." -msgstr "Die Passwörter stimmen nicht überein. Das Passwort bleibt unverändert." - -#: ../../mod/settings.php:266 -msgid "Empty passwords are not allowed. Password unchanged." -msgstr "Leere Passwörter sind nicht erlaubt. Passwort bleibt unverändert." - -#: ../../mod/settings.php:277 -msgid "Password changed." -msgstr "Passwort ändern." - -#: ../../mod/settings.php:279 -msgid "Password update failed. Please try again." -msgstr "Aktualisierung des Passworts gescheitert, bitte versuche es noch einmal." - -#: ../../mod/settings.php:340 -msgid " Please use a shorter name." -msgstr " Bitte verwende einen kürzeren Namen." - -#: ../../mod/settings.php:342 -msgid " Name too short." -msgstr " Name ist zu kurz." - -#: ../../mod/settings.php:348 -msgid " Not valid email." -msgstr " Keine gültige E-Mail." - -#: ../../mod/settings.php:350 -msgid " Cannot change to that email." -msgstr "Ändern der E-Mail nicht möglich. " - -#: ../../mod/settings.php:420 ../../addon/facebook/facebook.php:445 -#: ../../addon/impressum/impressum.php:64 -#: ../../addon/openstreetmap/openstreetmap.php:80 -#: ../../addon/piwik/piwik.php:105 ../../addon/twitter/twitter.php:364 -msgid "Settings updated." -msgstr "Einstellungen aktualisiert." - -#: ../../mod/settings.php:484 ../../view/theme/diabook-red/theme.php:284 -#: ../../view/theme/diabook-blue/theme.php:283 -#: ../../view/theme/diabook/theme.php:293 -#: ../../view/theme/diabook-aerith/theme.php:283 ../../include/nav.php:137 +#: ../../mod/settings.php:49 ../../include/nav.php:137 msgid "Account settings" msgstr "Account Einstellungen" -#: ../../mod/settings.php:489 ../../view/theme/diabook-red/theme.php:289 -#: ../../view/theme/diabook-blue/theme.php:288 -#: ../../view/theme/diabook/theme.php:298 -#: ../../view/theme/diabook-aerith/theme.php:288 +#: ../../mod/settings.php:54 msgid "Display settings" msgstr "Anzeige Einstellungen" -#: ../../mod/settings.php:495 ../../view/theme/diabook-red/theme.php:298 -#: ../../view/theme/diabook-blue/theme.php:297 -#: ../../view/theme/diabook/theme.php:307 -#: ../../view/theme/diabook-aerith/theme.php:297 +#: ../../mod/settings.php:60 msgid "Connector settings" msgstr "Connector-Einstellungen" -#: ../../mod/settings.php:500 ../../view/theme/diabook-red/theme.php:303 -#: ../../view/theme/diabook-blue/theme.php:302 -#: ../../view/theme/diabook/theme.php:312 -#: ../../view/theme/diabook-aerith/theme.php:302 +#: ../../mod/settings.php:65 msgid "Plugin settings" msgstr "Plugin-Einstellungen" -#: ../../mod/settings.php:505 ../../view/theme/diabook-red/theme.php:308 -#: ../../view/theme/diabook-blue/theme.php:307 -#: ../../view/theme/diabook/theme.php:317 -#: ../../view/theme/diabook-aerith/theme.php:307 -msgid "Connections" -msgstr "Verbindungen" +#: ../../mod/settings.php:70 +msgid "Connected apps" +msgstr "Verbundene Programme" -#: ../../mod/settings.php:510 ../../view/theme/diabook-red/theme.php:313 -#: ../../view/theme/diabook-blue/theme.php:312 -#: ../../view/theme/diabook/theme.php:322 -#: ../../view/theme/diabook-aerith/theme.php:312 +#: ../../mod/settings.php:75 msgid "Export personal data" msgstr "Persönliche Daten exportieren" -#: ../../mod/settings.php:528 ../../mod/settings.php:555 -#: ../../mod/settings.php:591 +#: ../../mod/settings.php:83 ../../mod/admin.php:631 ../../mod/admin.php:817 +#: ../../addon/mathjax/mathjax.php:36 ../../include/nav.php:137 +msgid "Settings" +msgstr "Einstellungen" + +#: ../../mod/settings.php:126 +msgid "Missing some important data!" +msgstr "Wichtige Daten fehlen!" + +#: ../../mod/settings.php:129 ../../mod/settings.php:558 +#: ../../mod/admin.php:89 +msgid "Update" +msgstr "Aktualisierungen" + +#: ../../mod/settings.php:234 +msgid "Failed to connect with email account using the settings provided." +msgstr "Konnte das Email Konto mit den angegebenen Einstellungen nicht erreichen." + +#: ../../mod/settings.php:239 +msgid "Email settings updated." +msgstr "EMail Einstellungen bearbeitet." + +#: ../../mod/settings.php:298 +msgid "Passwords do not match. Password unchanged." +msgstr "Die Passwörter stimmen nicht überein. Das Passwort bleibt unverändert." + +#: ../../mod/settings.php:303 +msgid "Empty passwords are not allowed. Password unchanged." +msgstr "Leere Passwörter sind nicht erlaubt. Passwort bleibt unverändert." + +#: ../../mod/settings.php:314 +msgid "Password changed." +msgstr "Passwort ändern." + +#: ../../mod/settings.php:316 +msgid "Password update failed. Please try again." +msgstr "Aktualisierung des Passworts gescheitert, bitte versuche es noch einmal." + +#: ../../mod/settings.php:379 +msgid " Please use a shorter name." +msgstr " Bitte verwende einen kürzeren Namen." + +#: ../../mod/settings.php:381 +msgid " Name too short." +msgstr " Name ist zu kurz." + +#: ../../mod/settings.php:387 +msgid " Not valid email." +msgstr " Keine gültige E-Mail." + +#: ../../mod/settings.php:389 +msgid " Cannot change to that email." +msgstr "Ändern der E-Mail nicht möglich. " + +#: ../../mod/settings.php:461 ../../addon/facebook/facebook.php:450 +#: ../../addon/impressum/impressum.php:75 +#: ../../addon/openstreetmap/openstreetmap.php:80 +#: ../../addon/mathjax/mathjax.php:64 ../../addon/piwik/piwik.php:105 +#: ../../addon/twitter/twitter.php:370 +msgid "Settings updated." +msgstr "Einstellungen aktualisiert." + +#: ../../mod/settings.php:531 ../../mod/settings.php:557 +#: ../../mod/settings.php:593 msgid "Add application" msgstr "Programm hinzufügen" -#: ../../mod/settings.php:532 ../../mod/settings.php:559 -#: ../../addon/statusnet/statusnet.php:541 +#: ../../mod/settings.php:535 ../../mod/settings.php:561 +#: ../../addon/statusnet/statusnet.php:547 msgid "Consumer Key" msgstr "Consumer Key" -#: ../../mod/settings.php:533 ../../mod/settings.php:560 -#: ../../addon/statusnet/statusnet.php:540 +#: ../../mod/settings.php:536 ../../mod/settings.php:562 +#: ../../addon/statusnet/statusnet.php:546 msgid "Consumer Secret" msgstr "Consumer Secret" -#: ../../mod/settings.php:534 ../../mod/settings.php:561 +#: ../../mod/settings.php:537 ../../mod/settings.php:563 msgid "Redirect" msgstr "Umleiten" -#: ../../mod/settings.php:535 ../../mod/settings.php:562 +#: ../../mod/settings.php:538 ../../mod/settings.php:564 msgid "Icon url" msgstr "Icon URL" -#: ../../mod/settings.php:546 +#: ../../mod/settings.php:549 msgid "You can't edit this application." msgstr "Du kannst dieses Programm nicht bearbeiten." -#: ../../mod/settings.php:590 +#: ../../mod/settings.php:592 msgid "Connected Apps" msgstr "Verbundene Programme" -#: ../../mod/settings.php:594 +#: ../../mod/settings.php:596 msgid "Client key starts with" msgstr "Anwender Schlüssel beginnt mit" -#: ../../mod/settings.php:595 +#: ../../mod/settings.php:597 msgid "No name" msgstr "Kein Name" -#: ../../mod/settings.php:596 +#: ../../mod/settings.php:598 msgid "Remove authorization" msgstr "Autorisierung entziehen" -#: ../../mod/settings.php:608 +#: ../../mod/settings.php:609 msgid "No Plugin settings configured" msgstr "Keine Plugin-Einstellungen konfiguriert" -#: ../../mod/settings.php:616 ../../addon/widgets/widgets.php:123 +#: ../../mod/settings.php:617 ../../addon/widgets/widgets.php:123 msgid "Plugin Settings" msgstr "Plugin-Einstellungen" @@ -1865,322 +1872,334 @@ msgstr "StatusNet" msgid "Connector Settings" msgstr "Verbindungs-Einstellungen" -#: ../../mod/settings.php:666 +#: ../../mod/settings.php:665 msgid "Email/Mailbox Setup" msgstr "E-Mail/Postfach-Einstellungen" -#: ../../mod/settings.php:667 +#: ../../mod/settings.php:666 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:668 +#: ../../mod/settings.php:667 msgid "Last successful email check:" msgstr "Letzter erfolgreicher Email Check" -#: ../../mod/settings.php:669 +#: ../../mod/settings.php:668 msgid "Email access is disabled on this site." msgstr "Zugriff auf E-Mails für diese Seite deaktiviert." -#: ../../mod/settings.php:670 +#: ../../mod/settings.php:669 msgid "IMAP server name:" msgstr "IMAP-Server-Name:" -#: ../../mod/settings.php:671 +#: ../../mod/settings.php:670 msgid "IMAP port:" msgstr "IMAP-Port:" -#: ../../mod/settings.php:672 +#: ../../mod/settings.php:671 msgid "Security:" msgstr "Sicherheit:" -#: ../../mod/settings.php:672 ../../mod/settings.php:677 +#: ../../mod/settings.php:671 ../../mod/settings.php:676 msgid "None" msgstr "Keine" -#: ../../mod/settings.php:673 +#: ../../mod/settings.php:672 msgid "Email login name:" msgstr "E-Mail-Login-Name:" -#: ../../mod/settings.php:674 +#: ../../mod/settings.php:673 msgid "Email password:" msgstr "E-Mail-Passwort:" -#: ../../mod/settings.php:675 +#: ../../mod/settings.php:674 msgid "Reply-to address:" msgstr "Reply-to Adresse:" -#: ../../mod/settings.php:676 +#: ../../mod/settings.php:675 msgid "Send public posts to all email contacts:" msgstr "Sende öffentliche Beiträge an alle E-Mail-Kontakte:" -#: ../../mod/settings.php:677 +#: ../../mod/settings.php:676 msgid "Action after import:" msgstr "Aktion nach Import:" -#: ../../mod/settings.php:677 +#: ../../mod/settings.php:676 msgid "Mark as seen" msgstr "Als gelesen markieren" -#: ../../mod/settings.php:677 +#: ../../mod/settings.php:676 msgid "Move to folder" msgstr "In einen Ordner verschieben" -#: ../../mod/settings.php:678 +#: ../../mod/settings.php:677 msgid "Move to folder:" msgstr "In diesen Ordner verschieben:" -#: ../../mod/settings.php:739 +#: ../../mod/settings.php:737 msgid "Display Settings" msgstr "Anzeige Einstellungen" -#: ../../mod/settings.php:745 +#: ../../mod/settings.php:743 msgid "Display Theme:" msgstr "Theme:" -#: ../../mod/settings.php:746 +#: ../../mod/settings.php:744 msgid "Update browser every xx seconds" msgstr "Browser alle xx Sekunden aktualisieren" -#: ../../mod/settings.php:746 +#: ../../mod/settings.php:744 msgid "Minimum of 10 seconds, no maximum" msgstr "Minimal 10 Sekunden, kein Maximum" -#: ../../mod/settings.php:747 +#: ../../mod/settings.php:745 msgid "Number of items to display on the network page:" msgstr "Zahl der Beiträge, welche pro Netzwerkseite angezeigt werden sollen: " -#: ../../mod/settings.php:747 +#: ../../mod/settings.php:745 msgid "Maximum of 100 items" msgstr "Maximal 100 Beiträge" -#: ../../mod/settings.php:748 +#: ../../mod/settings.php:746 msgid "Don't show emoticons" msgstr "Keine Smilies anzeigen" -#: ../../mod/settings.php:808 ../../mod/admin.php:142 ../../mod/admin.php:506 +#: ../../mod/settings.php:811 ../../mod/admin.php:162 ../../mod/admin.php:522 msgid "Normal Account" msgstr "Normaler Account" -#: ../../mod/settings.php:809 +#: ../../mod/settings.php:812 msgid "This account is a normal personal profile" msgstr "Dieser Account ist ein normales persönliches Profil" -#: ../../mod/settings.php:812 ../../mod/admin.php:143 ../../mod/admin.php:507 +#: ../../mod/settings.php:815 ../../mod/admin.php:163 ../../mod/admin.php:523 msgid "Soapbox Account" msgstr "Sandkasten-Account" -#: ../../mod/settings.php:813 +#: ../../mod/settings.php:816 msgid "Automatically approve all connection/friend requests as read-only fans" msgstr "Freundschaftsanfragen werden automatisch als Nurlese-Fans akzeptiert" -#: ../../mod/settings.php:816 ../../mod/admin.php:144 ../../mod/admin.php:508 +#: ../../mod/settings.php:819 ../../mod/admin.php:164 ../../mod/admin.php:524 msgid "Community/Celebrity Account" msgstr "Gemeinschafts/Promi-Account" -#: ../../mod/settings.php:817 +#: ../../mod/settings.php:820 msgid "" "Automatically approve all connection/friend requests as read-write fans" msgstr "Freundschaftsanfragen werden automatisch als Lese-und-Schreib-Fans akzeptiert" -#: ../../mod/settings.php:820 ../../mod/admin.php:145 ../../mod/admin.php:509 +#: ../../mod/settings.php:823 ../../mod/admin.php:165 ../../mod/admin.php:525 msgid "Automatic Friend Account" msgstr "Automatischer Freundesaccount" -#: ../../mod/settings.php:821 +#: ../../mod/settings.php:824 msgid "Automatically approve all connection/friend requests as friends" msgstr "Freundschaftsanfragen werden automatisch als Freund akzeptiert" -#: ../../mod/settings.php:831 +#: ../../mod/settings.php:834 msgid "OpenID:" msgstr "OpenID:" -#: ../../mod/settings.php:831 +#: ../../mod/settings.php:834 msgid "(Optional) Allow this OpenID to login to this account." msgstr "(Optional) Erlaube die Anmeldung für diesen Account mit dieser OpenID." -#: ../../mod/settings.php:841 +#: ../../mod/settings.php:844 msgid "Publish your default profile in your local site directory?" msgstr "Veröffentliche dein Standardprofil im Verzeichnis der lokalen Seite?" -#: ../../mod/settings.php:847 +#: ../../mod/settings.php:850 msgid "Publish your default profile in the global social directory?" msgstr "Veröffentliche dein Standardprofil im weltweiten Verzeichnis?" -#: ../../mod/settings.php:855 +#: ../../mod/settings.php:858 msgid "Hide your contact/friend list from viewers of your default profile?" msgstr "Liste der Kontakte vor Betrachtern des Standardprofils verbergen?" -#: ../../mod/settings.php:859 +#: ../../mod/settings.php:862 msgid "Hide your profile details from unknown viewers?" msgstr "Profil-Details vor unbekannten Betrachtern verbergen?" -#: ../../mod/settings.php:864 +#: ../../mod/settings.php:867 msgid "Allow friends to post to your profile page?" msgstr "Deinen Kontakten erlauben, auf deine Pinnwand zu schreiben?" -#: ../../mod/settings.php:870 +#: ../../mod/settings.php:873 msgid "Allow friends to tag your posts?" msgstr "Deinen Kontakten erlauben, deine Beiträge mit Schlagwörtern zu versehen?" -#: ../../mod/settings.php:876 +#: ../../mod/settings.php:879 msgid "Allow us to suggest you as a potential friend to new members?" msgstr "Erlaube uns dich als potentiellen Kontakt für neue Mitglieder vorzuschlagen?" -#: ../../mod/settings.php:882 +#: ../../mod/settings.php:885 msgid "Permit unknown people to send you private mail?" msgstr "Erlaube es Unbekannten dir private Nachrichten zu schicken?" -#: ../../mod/settings.php:891 +#: ../../mod/settings.php:896 msgid "Profile is not published." msgstr "Profil ist nicht veröffentlicht." -#: ../../mod/settings.php:897 ../../mod/profile_photo.php:211 +#: ../../mod/settings.php:902 ../../mod/profile_photo.php:211 msgid "or" msgstr "oder" -#: ../../mod/settings.php:902 +#: ../../mod/settings.php:907 msgid "Your Identity Address is" msgstr "Die Adresse deines Profils lautet:" -#: ../../mod/settings.php:913 +#: ../../mod/settings.php:918 msgid "Automatically expire posts after this many days:" msgstr "Beiträge verfallen automatisch nach dieser Anzahl von Tagen" -#: ../../mod/settings.php:913 +#: ../../mod/settings.php:918 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:914 +#: ../../mod/settings.php:919 msgid "Advanced expiration settings" msgstr "Erweiterte Verfallseinstellungen" -#: ../../mod/settings.php:915 +#: ../../mod/settings.php:920 msgid "Advanced Expiration" msgstr "Erweitertes Verfallen" -#: ../../mod/settings.php:916 +#: ../../mod/settings.php:921 msgid "Expire posts:" msgstr "Beiträge verfallen lassen:" -#: ../../mod/settings.php:917 +#: ../../mod/settings.php:922 msgid "Expire personal notes:" msgstr "Persönliche Notizen verfallen lassen:" -#: ../../mod/settings.php:918 +#: ../../mod/settings.php:923 msgid "Expire starred posts:" msgstr "Markierte Beiträge verfallen lassen:" -#: ../../mod/settings.php:919 +#: ../../mod/settings.php:924 msgid "Expire photos:" msgstr "Fotos verfallen lassen:" -#: ../../mod/settings.php:924 +#: ../../mod/settings.php:928 msgid "Account Settings" msgstr "Account-Einstellungen" -#: ../../mod/settings.php:933 +#: ../../mod/settings.php:937 msgid "Password Settings" msgstr "Passwort-Einstellungen" -#: ../../mod/settings.php:934 +#: ../../mod/settings.php:938 msgid "New Password:" msgstr "Neues Passwort:" -#: ../../mod/settings.php:935 +#: ../../mod/settings.php:939 msgid "Confirm:" msgstr "Bestätigen:" -#: ../../mod/settings.php:935 +#: ../../mod/settings.php:939 msgid "Leave password fields blank unless changing" msgstr "Lass die Passwort-Felder leer, außer du willst das Passwort ändern" -#: ../../mod/settings.php:939 +#: ../../mod/settings.php:943 msgid "Basic Settings" msgstr "Grundeinstellungen" -#: ../../mod/settings.php:940 ../../include/profile_advanced.php:15 +#: ../../mod/settings.php:944 ../../include/profile_advanced.php:15 msgid "Full Name:" msgstr "Kompletter Name:" -#: ../../mod/settings.php:941 +#: ../../mod/settings.php:945 msgid "Email Address:" msgstr "Emailadresse:" -#: ../../mod/settings.php:942 +#: ../../mod/settings.php:946 msgid "Your Timezone:" msgstr "Deine Zeitzone:" -#: ../../mod/settings.php:943 +#: ../../mod/settings.php:947 msgid "Default Post Location:" msgstr "Standardstandort:" -#: ../../mod/settings.php:944 +#: ../../mod/settings.php:948 msgid "Use Browser Location:" msgstr "Verwende den Standort des Browsers:" -#: ../../mod/settings.php:947 +#: ../../mod/settings.php:951 msgid "Security and Privacy Settings" msgstr "Sicherheits- und Privatsphäre-Einstellungen" -#: ../../mod/settings.php:949 +#: ../../mod/settings.php:953 msgid "Maximum Friend Requests/Day:" msgstr "Maximale Anzahl von Freundschaftsanfragen/Tag:" -#: ../../mod/settings.php:949 ../../mod/settings.php:964 +#: ../../mod/settings.php:953 ../../mod/settings.php:968 msgid "(to prevent spam abuse)" msgstr "(um SPAM zu vermeiden)" -#: ../../mod/settings.php:950 +#: ../../mod/settings.php:954 msgid "Default Post Permissions" msgstr "Standard-Zugriffsrechte für Beiträge" -#: ../../mod/settings.php:951 +#: ../../mod/settings.php:955 msgid "(click to open/close)" msgstr "(klicke zum öffnen/schließen)" -#: ../../mod/settings.php:964 +#: ../../mod/settings.php:968 msgid "Maximum private messages per day from unknown people:" msgstr "Maximale Anzahl von privaten Nachrichten, die dir unbekannte Personen pro Tag senden dürfen:" -#: ../../mod/settings.php:967 +#: ../../mod/settings.php:971 msgid "Notification Settings" msgstr "Benachrichtigungseinstellungen" -#: ../../mod/settings.php:968 +#: ../../mod/settings.php:972 +msgid "By default post a status message when:" +msgstr "" + +#: ../../mod/settings.php:973 +msgid "accepting a friend request" +msgstr "akzeptieren einer Freundschaftsanfrage" + +#: ../../mod/settings.php:974 +msgid "making an interesting profile change" +msgstr "" + +#: ../../mod/settings.php:975 msgid "Send a notification email when:" msgstr "Benachrichtigungs-E-Mail senden wenn:" -#: ../../mod/settings.php:969 +#: ../../mod/settings.php:976 msgid "You receive an introduction" msgstr "- du eine Kontaktanfrage erhältst" -#: ../../mod/settings.php:970 +#: ../../mod/settings.php:977 msgid "Your introductions are confirmed" msgstr "- eine deiner Kontaktanfragen akzeptiert wurde" -#: ../../mod/settings.php:971 +#: ../../mod/settings.php:978 msgid "Someone writes on your profile wall" msgstr "- jemand etwas auf deine Pinnwand schreibt" -#: ../../mod/settings.php:972 +#: ../../mod/settings.php:979 msgid "Someone writes a followup comment" msgstr "- jemand auch einen Kommentar verfasst" -#: ../../mod/settings.php:973 +#: ../../mod/settings.php:980 msgid "You receive a private message" msgstr "- du eine private Nachricht erhältst" -#: ../../mod/settings.php:974 +#: ../../mod/settings.php:981 msgid "You receive a friend suggestion" msgstr "- du eine Empfehlung erhältst" -#: ../../mod/settings.php:975 +#: ../../mod/settings.php:982 msgid "You are tagged in a post" -msgstr "Du wurdest in einem Beitrag erwähnt." +msgstr "- du in einem Beitrag erwähnt wurdest" -#: ../../mod/settings.php:978 +#: ../../mod/settings.php:985 msgid "Advanced Page Settings" msgstr "Erweiterte Seiten-Einstellungen" @@ -2210,7 +2229,7 @@ msgstr "Begriff entfernen" msgid "Saved Searches" msgstr "Gespeicherte Suchen" -#: ../../mod/network.php:92 ../../include/group.php:216 +#: ../../mod/network.php:92 ../../include/group.php:217 msgid "add" msgstr "hinzufügen" @@ -2270,12 +2289,12 @@ msgstr "Private Nachrichten an diese Person könnten an die Öffentlichkeit gela msgid "Invalid contact." msgstr "Ungültiger Kontakt." -#: ../../mod/notes.php:44 ../../boot.php:1426 +#: ../../mod/notes.php:44 ../../boot.php:1476 msgid "Personal Notes" msgstr "Persönliche Notizen" #: ../../mod/notes.php:63 ../../mod/filer.php:30 -#: ../../addon/facebook/facebook.php:673 ../../include/text.php:652 +#: ../../addon/facebook/facebook.php:683 ../../include/text.php:652 msgid "Save" msgstr "Speichern" @@ -2284,7 +2303,7 @@ msgstr "Speichern" 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:60 +#: ../../mod/wallmessage.php:56 ../../mod/message.php:59 msgid "No recipient selected." msgstr "Kein Empfänger gewählt." @@ -2292,15 +2311,15 @@ msgstr "Kein Empfänger gewählt." msgid "Unable to check your home location." msgstr "Konnte deinen Heimatort nicht bestimmen." -#: ../../mod/wallmessage.php:62 ../../mod/message.php:67 +#: ../../mod/wallmessage.php:62 ../../mod/message.php:66 msgid "Message could not be sent." msgstr "Nachricht konnte nicht gesendet werden." -#: ../../mod/wallmessage.php:65 ../../mod/message.php:70 +#: ../../mod/wallmessage.php:65 ../../mod/message.php:69 msgid "Message collection failure." msgstr "Konnte Nachrichten nicht abrufen." -#: ../../mod/wallmessage.php:68 ../../mod/message.php:73 +#: ../../mod/wallmessage.php:68 ../../mod/message.php:72 msgid "Message sent." msgstr "Nachricht gesendet." @@ -2308,12 +2327,12 @@ msgstr "Nachricht gesendet." msgid "No recipient." msgstr "Kein Empfänger." -#: ../../mod/wallmessage.php:124 ../../mod/message.php:170 -#: ../../include/conversation.php:914 +#: ../../mod/wallmessage.php:124 ../../mod/message.php:169 +#: ../../include/conversation.php:910 msgid "Please enter a link URL:" msgstr "Bitte gib die URL des Links ein:" -#: ../../mod/wallmessage.php:131 ../../mod/message.php:178 +#: ../../mod/wallmessage.php:131 ../../mod/message.php:177 msgid "Send Private Message" msgstr "Private Nachricht senden" @@ -2324,18 +2343,18 @@ msgid "" "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:133 ../../mod/message.php:179 -#: ../../mod/message.php:348 +#: ../../mod/wallmessage.php:133 ../../mod/message.php:178 +#: ../../mod/message.php:347 msgid "To:" msgstr "An:" -#: ../../mod/wallmessage.php:134 ../../mod/message.php:180 -#: ../../mod/message.php:349 +#: ../../mod/wallmessage.php:134 ../../mod/message.php:179 +#: ../../mod/message.php:348 msgid "Subject:" msgstr "Betreff:" -#: ../../mod/wallmessage.php:140 ../../mod/message.php:184 -#: ../../mod/message.php:352 ../../mod/invite.php:113 +#: ../../mod/wallmessage.php:140 ../../mod/message.php:183 +#: ../../mod/message.php:351 ../../mod/invite.php:113 msgid "Your message:" msgstr "Deine Nachricht:" @@ -2477,7 +2496,7 @@ msgstr "Gruppe nicht gefunden." msgid "Group name changed." msgstr "Gruppenname geändert." -#: ../../mod/group.php:72 ../../mod/profperm.php:19 ../../index.php:293 +#: ../../mod/group.php:72 ../../mod/profperm.php:19 ../../index.php:308 msgid "Permission denied" msgstr "Zugriff verweigert" @@ -2517,12 +2536,12 @@ msgstr "Ungültiger Profil-Bezeichner" msgid "Profile Visibility Editor" msgstr "Editor für die Profil-Sichtbarkeit" -#: ../../mod/profperm.php:103 ../../view/theme/diabook-red/theme.php:237 -#: ../../view/theme/diabook-blue/theme.php:237 -#: ../../view/theme/diabook/theme.php:245 -#: ../../view/theme/diabook-aerith/theme.php:237 +#: ../../mod/profperm.php:103 ../../view/theme/diabook-red/theme.php:240 +#: ../../view/theme/diabook-blue/theme.php:240 +#: ../../view/theme/diabook/theme.php:250 +#: ../../view/theme/diabook-aerith/theme.php:241 #: ../../include/profile_advanced.php:7 ../../include/profile_advanced.php:76 -#: ../../include/nav.php:50 ../../boot.php:1408 +#: ../../include/nav.php:50 ../../boot.php:1458 msgid "Profile" msgstr "Profil" @@ -2610,91 +2629,91 @@ msgstr "Wärend der Anmeldung ist ein Fehler aufgetreten. Bitte versuche es noch msgid "An error occurred creating your default profile. Please try again." msgstr "Bei der Erstellung des Standard-Profils ist ein Fehler aufgetreten. Bitte versuche es noch einmal." -#: ../../mod/register.php:390 ../../mod/regmod.php:52 +#: ../../mod/register.php:386 ../../mod/regmod.php:52 #, php-format msgid "Registration details for %s" msgstr "Details der Registration von %s" -#: ../../mod/register.php:398 +#: ../../mod/register.php:394 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:402 +#: ../../mod/register.php:398 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:407 +#: ../../mod/register.php:403 msgid "Your registration can not be processed." msgstr "Deine Registrierung konnte nicht verarbeitet werden." -#: ../../mod/register.php:444 +#: ../../mod/register.php:440 #, php-format msgid "Registration request at %s" msgstr "Registrierungsanfrage auf %s" -#: ../../mod/register.php:453 +#: ../../mod/register.php:449 msgid "Your registration is pending approval by the site owner." msgstr "Deine Registrierung muss noch vom Betreiber der Seite freigegeben werden." -#: ../../mod/register.php:491 +#: ../../mod/register.php:487 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:517 +#: ../../mod/register.php:513 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:518 +#: ../../mod/register.php:514 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:519 +#: ../../mod/register.php:515 msgid "Your OpenID (optional): " msgstr "Deine OpenID (optional): " -#: ../../mod/register.php:533 +#: ../../mod/register.php:529 msgid "Include your profile in member directory?" msgstr "Soll dein Profil im Nutzerverzeichnis angezeigt werden?" -#: ../../mod/register.php:553 +#: ../../mod/register.php:549 msgid "Membership on this site is by invitation only." msgstr "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung möglich." -#: ../../mod/register.php:554 +#: ../../mod/register.php:550 msgid "Your invitation ID: " msgstr "ID deiner Einladung: " -#: ../../mod/register.php:557 ../../mod/admin.php:358 +#: ../../mod/register.php:553 ../../mod/admin.php:375 msgid "Registration" msgstr "Registrierung" -#: ../../mod/register.php:565 +#: ../../mod/register.php:561 msgid "Your Full Name (e.g. Joe Smith): " msgstr "Vollständiger Name (z.B. Max Mustermann): " -#: ../../mod/register.php:566 +#: ../../mod/register.php:562 msgid "Your Email Address: " msgstr "Deine E-Mail-Adresse: " -#: ../../mod/register.php:567 +#: ../../mod/register.php:563 msgid "" "Choose a profile nickname. This must begin with a text character. Your " "profile address on this site will then be " "'nickname@$sitename'." msgstr "Wähle einen Spitznamen für dein Profil. Dieser muss mit einem Buchstaben beginnen. Die Adresse deines Profils auf dieser Seite wird 'spitzname@$sitename' sein." -#: ../../mod/register.php:568 +#: ../../mod/register.php:564 msgid "Choose a nickname: " msgstr "Spitznamen wählen: " -#: ../../mod/register.php:571 ../../include/nav.php:81 ../../boot.php:745 +#: ../../mod/register.php:567 ../../include/nav.php:81 ../../boot.php:775 msgid "Register" msgstr "Registrieren" @@ -2703,28 +2722,28 @@ msgid "People Search" msgstr "Personen Suche" #: ../../mod/like.php:127 ../../mod/tagger.php:70 -#: ../../addon/facebook/facebook.php:1440 +#: ../../addon/facebook/facebook.php:1574 #: ../../addon/communityhome/communityhome.php:158 #: ../../addon/communityhome/communityhome.php:167 -#: ../../view/theme/diabook-red/theme.php:77 -#: ../../view/theme/diabook-red/theme.php:86 -#: ../../view/theme/diabook-blue/theme.php:77 -#: ../../view/theme/diabook-blue/theme.php:86 -#: ../../view/theme/diabook/theme.php:81 ../../view/theme/diabook/theme.php:90 -#: ../../view/theme/diabook-aerith/theme.php:77 -#: ../../view/theme/diabook-aerith/theme.php:86 +#: ../../view/theme/diabook-red/theme.php:80 +#: ../../view/theme/diabook-red/theme.php:89 +#: ../../view/theme/diabook-blue/theme.php:80 +#: ../../view/theme/diabook-blue/theme.php:89 +#: ../../view/theme/diabook/theme.php:86 ../../view/theme/diabook/theme.php:95 +#: ../../view/theme/diabook-aerith/theme.php:81 +#: ../../view/theme/diabook-aerith/theme.php:90 #: ../../include/diaspora.php:1654 ../../include/conversation.php:48 #: ../../include/conversation.php:57 ../../include/conversation.php:121 #: ../../include/conversation.php:130 msgid "status" msgstr "Status" -#: ../../mod/like.php:144 ../../addon/facebook/facebook.php:1444 +#: ../../mod/like.php:144 ../../addon/facebook/facebook.php:1578 #: ../../addon/communityhome/communityhome.php:172 -#: ../../view/theme/diabook-red/theme.php:91 -#: ../../view/theme/diabook-blue/theme.php:91 -#: ../../view/theme/diabook/theme.php:95 -#: ../../view/theme/diabook-aerith/theme.php:91 +#: ../../view/theme/diabook-red/theme.php:94 +#: ../../view/theme/diabook-blue/theme.php:94 +#: ../../view/theme/diabook/theme.php:100 +#: ../../view/theme/diabook-aerith/theme.php:95 #: ../../include/diaspora.php:1670 ../../include/conversation.php:65 #, php-format msgid "%1$s likes %2$s's %3$s" @@ -2735,9 +2754,9 @@ msgstr "%1$s mag %2$ss %3$s" msgid "%1$s doesn't like %2$s's %3$s" msgstr "%1$s mag %2$ss %3$s nicht" -#: ../../mod/notice.php:15 ../../mod/viewsrc.php:15 ../../mod/admin.php:127 -#: ../../mod/admin.php:566 ../../mod/admin.php:745 ../../mod/display.php:37 -#: ../../mod/display.php:142 ../../include/items.php:3030 +#: ../../mod/notice.php:15 ../../mod/viewsrc.php:15 ../../mod/admin.php:141 +#: ../../mod/admin.php:582 ../../mod/admin.php:761 ../../mod/display.php:37 +#: ../../mod/display.php:142 ../../include/items.php:3082 msgid "Item not found." msgstr "Beitrag nicht gefunden." @@ -2766,35 +2785,35 @@ msgstr "Konnte den Originalbeitrag nicht finden." msgid "Empty post discarded." msgstr "Leerer Beitrag wurde verworfen." -#: ../../mod/item.php:373 ../../mod/wall_upload.php:81 -#: ../../mod/wall_upload.php:90 ../../mod/wall_upload.php:97 +#: ../../mod/item.php:372 ../../mod/wall_upload.php:85 +#: ../../mod/wall_upload.php:94 ../../mod/wall_upload.php:101 #: ../../include/message.php:144 msgid "Wall Photos" msgstr "Pinnwand-Bilder" -#: ../../mod/item.php:763 +#: ../../mod/item.php:762 msgid "System error. Post not saved." msgstr "Systemfehler. Beitrag konnte nicht gespeichert werden." -#: ../../mod/item.php:788 +#: ../../mod/item.php:787 #, 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:790 +#: ../../mod/item.php:789 #, php-format msgid "You may visit them online at %s" msgstr "Du kannst sie online unter %s besuchen" -#: ../../mod/item.php:791 +#: ../../mod/item.php:790 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:793 +#: ../../mod/item.php:792 #, php-format msgid "%s posted an update." msgstr "%s hat ein Update veröffentlicht." @@ -2819,7 +2838,7 @@ msgstr "Drücke Umschalt+Neu Laden oder leere den Browser-Cache, falls das neue msgid "Unable to process image" msgstr "Bild konnte nicht verarbeitet werden" -#: ../../mod/profile_photo.php:115 ../../mod/wall_upload.php:56 +#: ../../mod/profile_photo.php:115 ../../mod/wall_upload.php:60 #, php-format msgid "Image exceeds size limit of %d" msgstr "Bildgröße überschreitet das Limit von %d" @@ -2882,67 +2901,67 @@ msgstr "Bitte gib dein Passwort zur Verifikation ein:" msgid "New Message" msgstr "Neue Nachricht" -#: ../../mod/message.php:64 +#: ../../mod/message.php:63 msgid "Unable to locate contact information." msgstr "Konnte die Kontaktinformationen nicht finden." -#: ../../mod/message.php:118 +#: ../../mod/message.php:117 msgid "Message deleted." msgstr "Nachricht gelöscht." -#: ../../mod/message.php:148 +#: ../../mod/message.php:147 msgid "Conversation removed." msgstr "Unterhaltung gelöscht." -#: ../../mod/message.php:220 +#: ../../mod/message.php:219 msgid "No messages." msgstr "Keine Nachrichten." -#: ../../mod/message.php:227 +#: ../../mod/message.php:226 #, php-format msgid "Unknown sender - %s" msgstr "'Unbekannter Absender - %s" -#: ../../mod/message.php:230 +#: ../../mod/message.php:229 #, php-format msgid "You and %s" msgstr "Du und %s" -#: ../../mod/message.php:233 +#: ../../mod/message.php:232 #, php-format msgid "%s and You" msgstr "%s und Du" -#: ../../mod/message.php:243 ../../mod/message.php:341 +#: ../../mod/message.php:242 ../../mod/message.php:340 msgid "Delete conversation" msgstr "Unterhaltung löschen" -#: ../../mod/message.php:246 +#: ../../mod/message.php:245 msgid "D, d M Y - g:i A" msgstr "D, d. M Y - g:i A" -#: ../../mod/message.php:248 +#: ../../mod/message.php:247 #, php-format msgid "%d message" msgid_plural "%d messages" msgstr[0] "%d Nachricht" msgstr[1] "%d Nachrichten" -#: ../../mod/message.php:283 +#: ../../mod/message.php:282 msgid "Message not available." msgstr "Nachricht nicht verfügbar." -#: ../../mod/message.php:325 +#: ../../mod/message.php:324 msgid "Delete message" msgstr "Nachricht löschen" -#: ../../mod/message.php:343 +#: ../../mod/message.php:342 msgid "" "No secure communications available. You may be able to " "respond from the sender's profile page." msgstr "Sichere Kommunikation ist nicht verfügbar. Eventuell kannst du auf der Profilseite des Absenders antworten." -#: ../../mod/message.php:347 +#: ../../mod/message.php:346 msgid "Send Reply" msgstr "Antwort senden" @@ -2955,499 +2974,493 @@ msgstr "Freunde von %s" msgid "No friends to display." msgstr "Keine Freunde zum Anzeigen." -#: ../../mod/admin.php:71 ../../mod/admin.php:356 +#: ../../mod/admin.php:51 +msgid "Theme settings updated." +msgstr "Themen Einstellungen aktualisiert." + +#: ../../mod/admin.php:85 ../../mod/admin.php:373 msgid "Site" msgstr "Seite" -#: ../../mod/admin.php:72 ../../mod/admin.php:524 ../../mod/admin.php:536 +#: ../../mod/admin.php:86 ../../mod/admin.php:540 ../../mod/admin.php:552 msgid "Users" msgstr "Nutzer" -#: ../../mod/admin.php:73 ../../mod/admin.php:613 ../../mod/admin.php:653 +#: ../../mod/admin.php:87 ../../mod/admin.php:629 ../../mod/admin.php:669 msgid "Plugins" msgstr "Plugins" -#: ../../mod/admin.php:74 ../../mod/admin.php:791 ../../mod/admin.php:825 +#: ../../mod/admin.php:88 ../../mod/admin.php:815 ../../mod/admin.php:849 msgid "Themes" msgstr "Themen" -#: ../../mod/admin.php:89 ../../mod/admin.php:905 +#: ../../mod/admin.php:103 ../../mod/admin.php:929 msgid "Logs" msgstr "Protokolle" -#: ../../mod/admin.php:94 +#: ../../mod/admin.php:108 msgid "User registrations waiting for confirmation" msgstr "Nutzeranmeldungen die auf Bestätigung warten" -#: ../../mod/admin.php:157 ../../mod/admin.php:355 ../../mod/admin.php:523 -#: ../../mod/admin.php:612 ../../mod/admin.php:652 ../../mod/admin.php:790 -#: ../../mod/admin.php:824 ../../mod/admin.php:904 +#: ../../mod/admin.php:177 ../../mod/admin.php:372 ../../mod/admin.php:539 +#: ../../mod/admin.php:628 ../../mod/admin.php:668 ../../mod/admin.php:814 +#: ../../mod/admin.php:848 ../../mod/admin.php:928 msgid "Administration" msgstr "Administration" -#: ../../mod/admin.php:158 +#: ../../mod/admin.php:178 msgid "Summary" msgstr "Zusammenfassung" -#: ../../mod/admin.php:159 +#: ../../mod/admin.php:179 msgid "Registered users" msgstr "Registrierte Nutzer" -#: ../../mod/admin.php:161 +#: ../../mod/admin.php:181 msgid "Pending registrations" msgstr "Anstehende Anmeldungen" -#: ../../mod/admin.php:162 +#: ../../mod/admin.php:182 msgid "Version" msgstr "Version" -#: ../../mod/admin.php:164 +#: ../../mod/admin.php:184 msgid "Active plugins" msgstr "Aktive Plugins" -#: ../../mod/admin.php:298 +#: ../../mod/admin.php:315 msgid "Site settings updated." msgstr "Seiteneinstellungen aktualisiert." -#: ../../mod/admin.php:342 +#: ../../mod/admin.php:359 msgid "Closed" msgstr "Geschlossen" -#: ../../mod/admin.php:343 +#: ../../mod/admin.php:360 msgid "Requires approval" msgstr "Bedarf der Zustimmung" -#: ../../mod/admin.php:344 +#: ../../mod/admin.php:361 msgid "Open" msgstr "Offen" -#: ../../mod/admin.php:348 +#: ../../mod/admin.php:365 msgid "No SSL policy, links will track page SSL state" msgstr "Keine SSL Richtlinie, Links werden das verwendete Protokoll beibehalten" -#: ../../mod/admin.php:349 +#: ../../mod/admin.php:366 msgid "Force all links to use SSL" msgstr "SSL für alle Links erzwingen" -#: ../../mod/admin.php:350 +#: ../../mod/admin.php:367 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:359 +#: ../../mod/admin.php:376 msgid "File upload" msgstr "Datei hochladen" -#: ../../mod/admin.php:360 +#: ../../mod/admin.php:377 msgid "Policies" msgstr "Regeln" -#: ../../mod/admin.php:361 +#: ../../mod/admin.php:378 msgid "Advanced" msgstr "Erweitert" -#: ../../mod/admin.php:365 ../../addon/statusnet/statusnet.php:538 +#: ../../mod/admin.php:382 ../../addon/statusnet/statusnet.php:544 msgid "Site name" msgstr "Seitenname" -#: ../../mod/admin.php:366 +#: ../../mod/admin.php:383 msgid "Banner/Logo" msgstr "Banner/Logo" -#: ../../mod/admin.php:367 +#: ../../mod/admin.php:384 msgid "System language" msgstr "Systemsprache" -#: ../../mod/admin.php:368 +#: ../../mod/admin.php:385 msgid "System theme" msgstr "Systemweites Thema" -#: ../../mod/admin.php:368 -msgid "Default system theme - may be over-ridden by user profiles" -msgstr "Standard Server Theme - kann von den Benutzereinstellungen überschrieben werden." +#: ../../mod/admin.php:385 +msgid "" +"Default system theme - may be over-ridden by user profiles - change theme settings" +msgstr "" -#: ../../mod/admin.php:369 +#: ../../mod/admin.php:386 msgid "SSL link policy" msgstr "Regeln für SSL Links" -#: ../../mod/admin.php:369 +#: ../../mod/admin.php:386 msgid "Determines whether generated links should be forced to use SSL" msgstr "Bestimmt, ob generierte Links SSL verwenden müssen" -#: ../../mod/admin.php:370 +#: ../../mod/admin.php:387 msgid "Maximum image size" msgstr "Maximale Größe von Bildern" -#: ../../mod/admin.php:370 +#: ../../mod/admin.php:387 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:372 +#: ../../mod/admin.php:389 msgid "Register policy" msgstr "Registrierungsmethode" -#: ../../mod/admin.php:373 +#: ../../mod/admin.php:390 msgid "Register text" msgstr "Registrierungstext" -#: ../../mod/admin.php:373 +#: ../../mod/admin.php:390 msgid "Will be displayed prominently on the registration page." msgstr "Wird gut sichtbar auf der Registrierungs-Seite angezeigt." -#: ../../mod/admin.php:374 +#: ../../mod/admin.php:391 msgid "Accounts abandoned after x days" msgstr "Accounts gelten nach x Tagen als unbenutzt" -#: ../../mod/admin.php:374 +#: ../../mod/admin.php:391 msgid "" -"Will not waste system resources polling external sites for abandonded " +"Will not waste system resources polling external sites for abandoned " "accounts. Enter 0 for no time limit." msgstr "Verschwende keine System-Ressourcen auf das Pollen externer Seiten, wenn Accounts nicht mehr benutzt werden. 0 eingeben für kein Limit." -#: ../../mod/admin.php:375 +#: ../../mod/admin.php:392 msgid "Allowed friend domains" msgstr "Erlaubte Domains für Kontakte" -#: ../../mod/admin.php:375 +#: ../../mod/admin.php:392 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:376 +#: ../../mod/admin.php:393 msgid "Allowed email domains" msgstr "Erlaubte Domains für Emails" -#: ../../mod/admin.php:376 +#: ../../mod/admin.php:393 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:377 +#: ../../mod/admin.php:394 msgid "Block public" msgstr "Öffentlichen Zugriff blockieren" -#: ../../mod/admin.php:377 +#: ../../mod/admin.php:394 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:378 +#: ../../mod/admin.php:395 msgid "Force publish" msgstr "Erzwinge Veröffentlichung" -#: ../../mod/admin.php:378 +#: ../../mod/admin.php:395 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:379 +#: ../../mod/admin.php:396 msgid "Global directory update URL" msgstr "URL für Updates beim weltweiten Verzeichnis" -#: ../../mod/admin.php:379 +#: ../../mod/admin.php:396 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:381 +#: ../../mod/admin.php:398 msgid "Block multiple registrations" msgstr "Unterbinde Mehrfachregistrierung" -#: ../../mod/admin.php:381 +#: ../../mod/admin.php:398 msgid "Disallow users to register additional accounts for use as pages." msgstr "Benutzern nicht erlauben, weitere Accounts als zusätzliche Profile anzulegen." -#: ../../mod/admin.php:382 +#: ../../mod/admin.php:399 msgid "OpenID support" msgstr "OpenID Unterstützung" -#: ../../mod/admin.php:382 +#: ../../mod/admin.php:399 msgid "OpenID support for registration and logins." msgstr "OpenID-Unterstützung für Registrierung und Login." -#: ../../mod/admin.php:383 -msgid "Gravatar support" -msgstr "Gravatar Unterstützung" - -#: ../../mod/admin.php:383 -msgid "Search new user's photo on Gravatar." -msgstr "Suchfunktion bei Gravatar für Profilbilder neuer Nutzer." - -#: ../../mod/admin.php:384 +#: ../../mod/admin.php:400 msgid "Fullname check" msgstr "Namen auf Vollständigkeit überprüfen" -#: ../../mod/admin.php:384 +#: ../../mod/admin.php:400 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:385 +#: ../../mod/admin.php:401 msgid "UTF-8 Regular expressions" msgstr "UTF-8 Reguläre Ausdrücke" -#: ../../mod/admin.php:385 +#: ../../mod/admin.php:401 msgid "Use PHP UTF8 regular expressions" msgstr "PHP UTF8 Ausdrücke verwenden" -#: ../../mod/admin.php:386 +#: ../../mod/admin.php:402 msgid "Show Community Page" msgstr "Gemeinschaftsseite anzeigen" -#: ../../mod/admin.php:386 +#: ../../mod/admin.php:402 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:387 +#: ../../mod/admin.php:403 msgid "Enable OStatus support" msgstr "OStatus Unterstützung aktivieren" -#: ../../mod/admin.php:387 +#: ../../mod/admin.php:403 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, so Privatsphäre Warnungen werden bei Bedarf angezeigt." -#: ../../mod/admin.php:388 +#: ../../mod/admin.php:404 msgid "Enable Diaspora support" msgstr "Diaspora-Support aktivieren" -#: ../../mod/admin.php:388 +#: ../../mod/admin.php:404 msgid "Provide built-in Diaspora network compatibility." msgstr "Verwende die eingebaute Diaspora-Verknüpfung." -#: ../../mod/admin.php:389 +#: ../../mod/admin.php:405 msgid "Only allow Friendica contacts" msgstr "Nur Friendica-Kontakte erlauben" -#: ../../mod/admin.php:389 +#: ../../mod/admin.php:405 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:390 +#: ../../mod/admin.php:406 msgid "Verify SSL" msgstr "SSL Überprüfen" -#: ../../mod/admin.php:390 +#: ../../mod/admin.php:406 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 Zertifikat Kontrolle anstellen. Das bedeutet, das man zu keinen Seiten mit selbst unterzeichneten SSL eine Verbindung herstellen kann." +msgstr "Wenn gewollt, kann man hier eine strenge Zertifikat Kontrolle einstellen. Das bedeutet, dass man zu keinen Seiten mit selbst unterzeichnetem SSL eine Verbindung herstellen kann." -#: ../../mod/admin.php:391 +#: ../../mod/admin.php:407 msgid "Proxy user" msgstr "Proxy Nutzer" -#: ../../mod/admin.php:392 +#: ../../mod/admin.php:408 msgid "Proxy URL" msgstr "Proxy URL" -#: ../../mod/admin.php:393 +#: ../../mod/admin.php:409 msgid "Network timeout" msgstr "Netzwerk Wartezeit" -#: ../../mod/admin.php:393 +#: ../../mod/admin.php:409 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:414 +#: ../../mod/admin.php:430 #, 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:421 +#: ../../mod/admin.php:437 #, 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:455 +#: ../../mod/admin.php:471 #, php-format msgid "User '%s' deleted" msgstr "Nutzer '%s' gelöscht" -#: ../../mod/admin.php:462 +#: ../../mod/admin.php:478 #, php-format msgid "User '%s' unblocked" msgstr "Nutzer '%s' entsperrt" -#: ../../mod/admin.php:462 +#: ../../mod/admin.php:478 #, php-format msgid "User '%s' blocked" msgstr "Nutzer '%s' gesperrt" -#: ../../mod/admin.php:526 +#: ../../mod/admin.php:542 msgid "select all" msgstr "Alle auswählen" -#: ../../mod/admin.php:527 +#: ../../mod/admin.php:543 msgid "User registrations waiting for confirm" msgstr "Neuanmeldungen, die auf deine Bestätigung warten" -#: ../../mod/admin.php:528 +#: ../../mod/admin.php:544 msgid "Request date" msgstr "Anfrage Datum" -#: ../../mod/admin.php:528 ../../mod/admin.php:537 +#: ../../mod/admin.php:544 ../../mod/admin.php:553 #: ../../include/contact_selectors.php:79 msgid "Email" msgstr "Email" -#: ../../mod/admin.php:529 +#: ../../mod/admin.php:545 msgid "No registrations." msgstr "Keine Neuanmeldungen." -#: ../../mod/admin.php:531 +#: ../../mod/admin.php:547 msgid "Deny" msgstr "Verwehren" -#: ../../mod/admin.php:537 +#: ../../mod/admin.php:553 msgid "Register date" msgstr "Anmeldedatum" -#: ../../mod/admin.php:537 +#: ../../mod/admin.php:553 msgid "Last login" msgstr "Letzte Anmeldung" -#: ../../mod/admin.php:537 +#: ../../mod/admin.php:553 msgid "Last item" msgstr "Letzter Beitrag" -#: ../../mod/admin.php:537 +#: ../../mod/admin.php:553 msgid "Account" msgstr "Nutzerkonto" -#: ../../mod/admin.php:539 +#: ../../mod/admin.php:555 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:540 +#: ../../mod/admin.php:556 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:576 +#: ../../mod/admin.php:592 #, php-format msgid "Plugin %s disabled." msgstr "Plugin %s deaktiviert." -#: ../../mod/admin.php:580 +#: ../../mod/admin.php:596 #, php-format msgid "Plugin %s enabled." msgstr "Plugin %s aktiviert." -#: ../../mod/admin.php:590 ../../mod/admin.php:769 +#: ../../mod/admin.php:606 ../../mod/admin.php:785 msgid "Disable" msgstr "Ausschalten" -#: ../../mod/admin.php:592 ../../mod/admin.php:771 +#: ../../mod/admin.php:608 ../../mod/admin.php:787 msgid "Enable" msgstr "Einschalten" -#: ../../mod/admin.php:614 ../../mod/admin.php:792 +#: ../../mod/admin.php:630 ../../mod/admin.php:816 msgid "Toggle" msgstr "Umschalten" -#: ../../mod/admin.php:615 ../../mod/admin.php:793 ../../include/nav.php:137 -msgid "Settings" -msgstr "Einstellungen" - -#: ../../mod/admin.php:622 ../../mod/admin.php:802 +#: ../../mod/admin.php:638 ../../mod/admin.php:826 msgid "Author: " msgstr "Autor:" -#: ../../mod/admin.php:623 ../../mod/admin.php:803 +#: ../../mod/admin.php:639 ../../mod/admin.php:827 msgid "Maintainer: " msgstr "Betreuer:" -#: ../../mod/admin.php:734 +#: ../../mod/admin.php:750 msgid "No themes found." msgstr "Keine Themen gefunden." -#: ../../mod/admin.php:784 +#: ../../mod/admin.php:808 msgid "Screenshot" msgstr "Bildschirmfoto" -#: ../../mod/admin.php:830 +#: ../../mod/admin.php:854 msgid "[Experimental]" msgstr "[Experimentell]" -#: ../../mod/admin.php:831 +#: ../../mod/admin.php:855 msgid "[Unsupported]" msgstr "[Nicht unterstützt]" -#: ../../mod/admin.php:854 +#: ../../mod/admin.php:878 msgid "Log settings updated." msgstr "Protokolleinstellungen aktualisiert." -#: ../../mod/admin.php:907 +#: ../../mod/admin.php:931 msgid "Clear" msgstr "löschen" -#: ../../mod/admin.php:913 +#: ../../mod/admin.php:937 msgid "Debugging" msgstr "Protokoll führen" -#: ../../mod/admin.php:914 +#: ../../mod/admin.php:938 msgid "Log file" msgstr "Protokolldatei" -#: ../../mod/admin.php:914 +#: ../../mod/admin.php:938 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:915 +#: ../../mod/admin.php:939 msgid "Log level" msgstr "Protokoll-Level" -#: ../../mod/admin.php:956 +#: ../../mod/admin.php:980 msgid "Close" msgstr "Schließen" -#: ../../mod/admin.php:962 +#: ../../mod/admin.php:986 msgid "FTP Host" msgstr "FTP Host" -#: ../../mod/admin.php:963 +#: ../../mod/admin.php:987 msgid "FTP Path" msgstr "FTP Pfad" -#: ../../mod/admin.php:964 +#: ../../mod/admin.php:988 msgid "FTP User" msgstr "FTP Nutzername" -#: ../../mod/admin.php:965 +#: ../../mod/admin.php:989 msgid "FTP Password" msgstr "FTP Passwort" -#: ../../mod/profile.php:20 ../../boot.php:901 +#: ../../mod/profile.php:21 ../../boot.php:940 msgid "Requested profile is not available." msgstr "Das angefragte Profil ist nicht vorhanden." -#: ../../mod/profile.php:123 ../../mod/display.php:75 +#: ../../mod/profile.php:124 ../../mod/display.php:75 msgid "Access to this profile has been restricted." msgstr "Der Zugriff zu diesem Profil wurde eingeschränkt." -#: ../../mod/profile.php:144 +#: ../../mod/profile.php:145 msgid "Tips for New Members" msgstr "Tipps für neue Nutzer" @@ -3496,6 +3509,10 @@ msgstr "{0} hat %ss Beitrag mit dem Schlagwort #%s versehen" msgid "{0} mentioned you in a post" msgstr "{0} hat dich in einem Beitrag erwähnt" +#: ../../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 "OpenID Protokollfehler. Keine ID zurückgegeben." @@ -3579,8 +3596,8 @@ msgstr "Keine Applikationen installiert." msgid "Search This Site" msgstr "Diese Seite durchsuchen" -#: ../../mod/profiles.php:21 ../../mod/profiles.php:242 -#: ../../mod/profiles.php:356 ../../mod/dfrn_confirm.php:62 +#: ../../mod/profiles.php:21 ../../mod/profiles.php:339 +#: ../../mod/profiles.php:453 ../../mod/dfrn_confirm.php:62 msgid "Profile not found." msgstr "Profil nicht gefunden." @@ -3588,217 +3605,263 @@ msgstr "Profil nicht gefunden." msgid "Profile Name is required." msgstr "Profilname ist erforderlich." -#: ../../mod/profiles.php:201 +#: ../../mod/profiles.php:143 +msgid "Marital Status" +msgstr "" + +#: ../../mod/profiles.php:144 +msgid "Romantic Partner" +msgstr "" + +#: ../../mod/profiles.php:145 +msgid "Work/Employment" +msgstr "" + +#: ../../mod/profiles.php:146 +msgid "Religion" +msgstr "Religion" + +#: ../../mod/profiles.php:147 +msgid "Political Views" +msgstr "Politische Ansichten" + +#: ../../mod/profiles.php:148 +msgid "Gender" +msgstr "Geschlecht" + +#: ../../mod/profiles.php:149 +msgid "Sexual Preference" +msgstr "Sexuelle Vorlieben" + +#: ../../mod/profiles.php:150 +msgid "Homepage" +msgstr "Webseite" + +#: ../../mod/profiles.php:151 +msgid "Interests" +msgstr "Interessen" + +#: ../../mod/profiles.php:154 +msgid "Location" +msgstr "" + +#: ../../mod/profiles.php:225 msgid "Profile updated." msgstr "Profil aktualisiert." -#: ../../mod/profiles.php:261 +#: ../../mod/profiles.php:300 +msgid "public profile" +msgstr "" + +#: ../../mod/profiles.php:302 +#, php-format +msgid "%1$s has an updated %2$s, changing %3$s." +msgstr "" + +#: ../../mod/profiles.php:358 msgid "Profile deleted." msgstr "Profil gelöscht." -#: ../../mod/profiles.php:279 ../../mod/profiles.php:313 +#: ../../mod/profiles.php:376 ../../mod/profiles.php:410 msgid "Profile-" msgstr "Profil-" -#: ../../mod/profiles.php:298 ../../mod/profiles.php:340 +#: ../../mod/profiles.php:395 ../../mod/profiles.php:437 msgid "New profile created." msgstr "Neues Profil angelegt." -#: ../../mod/profiles.php:319 +#: ../../mod/profiles.php:416 msgid "Profile unavailable to clone." msgstr "Profil nicht zum Duplizieren verfügbar." -#: ../../mod/profiles.php:368 +#: ../../mod/profiles.php:474 msgid "Hide your contact/friend list from viewers of this profile?" msgstr "Liste der Kontakte vor Betrachtern dieses Profils verbergen?" -#: ../../mod/profiles.php:389 +#: ../../mod/profiles.php:497 msgid "Edit Profile Details" msgstr "Profil bearbeiten" -#: ../../mod/profiles.php:391 +#: ../../mod/profiles.php:499 msgid "View this profile" msgstr "Dieses Profil anzeigen" -#: ../../mod/profiles.php:392 +#: ../../mod/profiles.php:500 msgid "Create a new profile using these settings" msgstr "Neues Profil anlegen und diese Einstellungen verwenden" -#: ../../mod/profiles.php:393 +#: ../../mod/profiles.php:501 msgid "Clone this profile" msgstr "Dieses Profil duplizieren" -#: ../../mod/profiles.php:394 +#: ../../mod/profiles.php:502 msgid "Delete this profile" msgstr "Dieses Profil löschen" -#: ../../mod/profiles.php:395 +#: ../../mod/profiles.php:503 msgid "Profile Name:" msgstr "Profilname:" -#: ../../mod/profiles.php:396 +#: ../../mod/profiles.php:504 msgid "Your Full Name:" msgstr "Dein kompletter Name:" -#: ../../mod/profiles.php:397 +#: ../../mod/profiles.php:505 msgid "Title/Description:" msgstr "Titel/Beschreibung:" -#: ../../mod/profiles.php:398 +#: ../../mod/profiles.php:506 msgid "Your Gender:" msgstr "Dein Geschlecht:" -#: ../../mod/profiles.php:399 +#: ../../mod/profiles.php:507 #, php-format msgid "Birthday (%s):" msgstr "Geburtstag (%s):" -#: ../../mod/profiles.php:400 +#: ../../mod/profiles.php:508 msgid "Street Address:" msgstr "Adresse:" -#: ../../mod/profiles.php:401 +#: ../../mod/profiles.php:509 msgid "Locality/City:" msgstr "Wohnort/Stadt:" -#: ../../mod/profiles.php:402 +#: ../../mod/profiles.php:510 msgid "Postal/Zip Code:" msgstr "Postleitzahl:" -#: ../../mod/profiles.php:403 +#: ../../mod/profiles.php:511 msgid "Country:" msgstr "Land:" -#: ../../mod/profiles.php:404 +#: ../../mod/profiles.php:512 msgid "Region/State:" msgstr "Region/Bundesstaat:" -#: ../../mod/profiles.php:405 +#: ../../mod/profiles.php:513 msgid " Marital Status:" msgstr " Beziehungsstatus:" -#: ../../mod/profiles.php:406 +#: ../../mod/profiles.php:514 msgid "Who: (if applicable)" msgstr "Wer: (falls anwendbar)" -#: ../../mod/profiles.php:407 +#: ../../mod/profiles.php:515 msgid "Examples: cathy123, Cathy Williams, cathy@example.com" msgstr "Beispiele: cathy123, Cathy Williams, cathy@example.com" -#: ../../mod/profiles.php:408 ../../include/profile_advanced.php:43 +#: ../../mod/profiles.php:516 ../../include/profile_advanced.php:43 msgid "Sexual Preference:" msgstr "Sexuelle Vorlieben:" -#: ../../mod/profiles.php:409 +#: ../../mod/profiles.php:517 msgid "Homepage URL:" msgstr "Adresse der Homepage:" -#: ../../mod/profiles.php:410 ../../include/profile_advanced.php:49 +#: ../../mod/profiles.php:518 ../../include/profile_advanced.php:49 msgid "Political Views:" msgstr "Politische Ansichten:" -#: ../../mod/profiles.php:411 +#: ../../mod/profiles.php:519 msgid "Religious Views:" msgstr "Religiöse Ansichten:" -#: ../../mod/profiles.php:412 +#: ../../mod/profiles.php:520 msgid "Public Keywords:" msgstr "Öffentliche Schlüsselwörter:" -#: ../../mod/profiles.php:413 +#: ../../mod/profiles.php:521 msgid "Private Keywords:" msgstr "Private Schlüsselwörter:" -#: ../../mod/profiles.php:414 +#: ../../mod/profiles.php:522 msgid "Example: fishing photography software" msgstr "Beispiel: Fischen Fotografie Software" -#: ../../mod/profiles.php:415 +#: ../../mod/profiles.php:523 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:416 +#: ../../mod/profiles.php:524 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:417 +#: ../../mod/profiles.php:525 msgid "Tell us about yourself..." msgstr "Erzähle uns ein bisschen von dir …" -#: ../../mod/profiles.php:418 +#: ../../mod/profiles.php:526 msgid "Hobbies/Interests" msgstr "Hobbies/Interessen" -#: ../../mod/profiles.php:419 +#: ../../mod/profiles.php:527 msgid "Contact information and Social Networks" msgstr "Kontaktinformationen und Soziale Netzwerke" -#: ../../mod/profiles.php:420 +#: ../../mod/profiles.php:528 msgid "Musical interests" msgstr "Musikalische Interessen" -#: ../../mod/profiles.php:421 +#: ../../mod/profiles.php:529 msgid "Books, literature" msgstr "Literatur/Bücher" -#: ../../mod/profiles.php:422 +#: ../../mod/profiles.php:530 msgid "Television" msgstr "Fernsehen" -#: ../../mod/profiles.php:423 +#: ../../mod/profiles.php:531 msgid "Film/dance/culture/entertainment" msgstr "Filme/Tänze/Kultur/Unterhaltung" -#: ../../mod/profiles.php:424 +#: ../../mod/profiles.php:532 msgid "Love/romance" msgstr "Liebesleben" -#: ../../mod/profiles.php:425 +#: ../../mod/profiles.php:533 msgid "Work/employment" msgstr "Arbeit/Beschäftigung" -#: ../../mod/profiles.php:426 +#: ../../mod/profiles.php:534 msgid "School/education" msgstr "Schule/Ausbildung" -#: ../../mod/profiles.php:431 +#: ../../mod/profiles.php:539 msgid "" "This is your public profile.
    It may " "be visible to anybody using the internet." msgstr "Dies ist dein öffentliches Profil.
    Es könnte für jeden Nutzer des Internets sichtbar sein." -#: ../../mod/profiles.php:441 ../../mod/directory.php:111 +#: ../../mod/profiles.php:549 ../../mod/directory.php:111 msgid "Age: " msgstr "Alter: " -#: ../../mod/profiles.php:476 ../../view/theme/diabook-red/theme.php:294 -#: ../../view/theme/diabook-blue/theme.php:293 -#: ../../view/theme/diabook/theme.php:303 -#: ../../view/theme/diabook-aerith/theme.php:293 +#: ../../mod/profiles.php:584 msgid "Edit/Manage Profiles" msgstr "Verwalte/Editiere Profile" -#: ../../mod/profiles.php:477 ../../boot.php:1008 +#: ../../mod/profiles.php:585 ../../boot.php:1049 msgid "Change profile photo" msgstr "Profilbild ändern" -#: ../../mod/profiles.php:478 ../../boot.php:1009 +#: ../../mod/profiles.php:586 ../../boot.php:1050 msgid "Create New Profile" msgstr "Neues Profil anlegen" -#: ../../mod/profiles.php:489 ../../boot.php:1019 +#: ../../mod/profiles.php:597 ../../boot.php:1060 msgid "Profile Image" msgstr "Profilbild" -#: ../../mod/profiles.php:491 ../../boot.php:1022 +#: ../../mod/profiles.php:599 ../../boot.php:1063 msgid "visible to everybody" msgstr "sichtbar für jeden" -#: ../../mod/profiles.php:492 ../../boot.php:1023 +#: ../../mod/profiles.php:600 ../../boot.php:1064 msgid "Edit visibility" msgstr "Sichtbarkeit bearbeiten" -#: ../../mod/filer.php:29 ../../include/conversation.php:918 +#: ../../mod/filer.php:29 ../../include/conversation.php:914 msgid "Save to Folder:" msgstr "In diesen Ordner verschieben:" @@ -3846,11 +3909,11 @@ msgstr "Hinzufügen" msgid "No entries." msgstr "Keine Einträge" -#: ../../mod/suggest.php:38 ../../view/theme/diabook-red/theme.php:146 -#: ../../view/theme/diabook-blue/theme.php:146 -#: ../../view/theme/diabook/theme.php:150 -#: ../../view/theme/diabook-aerith/theme.php:146 -#: ../../include/contact_widgets.php:33 +#: ../../mod/suggest.php:38 ../../view/theme/diabook-red/theme.php:149 +#: ../../view/theme/diabook-blue/theme.php:149 +#: ../../view/theme/diabook/theme.php:155 +#: ../../view/theme/diabook-aerith/theme.php:150 +#: ../../include/contact_widgets.php:34 msgid "Friend Suggestions" msgstr "Kontaktvorschläge" @@ -3864,10 +3927,10 @@ msgstr "Keine Vorschläge. Falls der Server frisch aufgesetzt wurde, versuche es msgid "Ignore/Hide" msgstr "Ignorieren/Verbergen" -#: ../../mod/directory.php:47 ../../view/theme/diabook-red/theme.php:144 -#: ../../view/theme/diabook-blue/theme.php:144 -#: ../../view/theme/diabook/theme.php:148 -#: ../../view/theme/diabook-aerith/theme.php:144 +#: ../../mod/directory.php:47 ../../view/theme/diabook-red/theme.php:147 +#: ../../view/theme/diabook-blue/theme.php:147 +#: ../../view/theme/diabook/theme.php:153 +#: ../../view/theme/diabook-aerith/theme.php:148 msgid "Global Directory" msgstr "Weltweites Verzeichnis" @@ -4053,71 +4116,71 @@ msgstr "Die Updates für dein Profil konnten nicht gespeichert werden" msgid "Connection accepted at %s" msgstr "Auf %s wurde die Verbindung akzeptiert" -#: ../../addon/facebook/facebook.php:462 +#: ../../addon/facebook/facebook.php:467 msgid "Facebook disabled" msgstr "Facebook deaktiviert" -#: ../../addon/facebook/facebook.php:467 +#: ../../addon/facebook/facebook.php:472 msgid "Updating contacts" msgstr "Aktualisiere Kontakte" -#: ../../addon/facebook/facebook.php:488 +#: ../../addon/facebook/facebook.php:493 msgid "Facebook API key is missing." msgstr "Facebook-API-Schlüssel nicht gefunden" -#: ../../addon/facebook/facebook.php:495 +#: ../../addon/facebook/facebook.php:500 msgid "Facebook Connect" msgstr "Mit Facebook verbinden" -#: ../../addon/facebook/facebook.php:501 +#: ../../addon/facebook/facebook.php:506 msgid "Install Facebook connector for this account." msgstr "Facebook-Connector für diesen Account installieren." -#: ../../addon/facebook/facebook.php:508 +#: ../../addon/facebook/facebook.php:513 msgid "Remove Facebook connector" msgstr "Facebook-Connector entfernen" -#: ../../addon/facebook/facebook.php:513 +#: ../../addon/facebook/facebook.php:518 msgid "" "Re-authenticate [This is necessary whenever your Facebook password is " "changed.]" msgstr "Neu authentifizieren [Das ist immer dann nötig, wenn Du Dein Facebook-Passwort geändert hast.]" -#: ../../addon/facebook/facebook.php:520 +#: ../../addon/facebook/facebook.php:525 msgid "Post to Facebook by default" msgstr "Veröffentliche standardmäßig bei Facebook" -#: ../../addon/facebook/facebook.php:524 +#: ../../addon/facebook/facebook.php:529 msgid "Link all your Facebook friends and conversations on this website" msgstr "All meine Facebook-Kontakte und -Konversationen hier auf diese Website importieren" -#: ../../addon/facebook/facebook.php:526 +#: ../../addon/facebook/facebook.php:531 msgid "" "Facebook conversations consist of your profile wall and your friend" " stream." msgstr "Facebook-Konversationen bestehen aus deinen Beiträgen auf deinerPinnwand, sowie den Beiträgen deiner Freunde Stream." -#: ../../addon/facebook/facebook.php:527 +#: ../../addon/facebook/facebook.php:532 msgid "On this website, your Facebook friend stream is only visible to you." msgstr "Hier auf dieser Webseite kannst nur du die Beiträge Deiner Facebook-Freunde (Stream) sehen." -#: ../../addon/facebook/facebook.php:528 +#: ../../addon/facebook/facebook.php:533 msgid "" "The following settings determine the privacy of your Facebook profile wall " "on this website." msgstr "Mit den folgenden Einstellungen kannst Du die Privatsphäre der Kopie Deiner Facebook-Pinnwand hier auf dieser Seite einstellen." -#: ../../addon/facebook/facebook.php:532 +#: ../../addon/facebook/facebook.php:537 msgid "" "On this website your Facebook profile wall conversations will only be " "visible to you" msgstr "Meine Facebook-Pinnwand hier auf dieser Webseite nur für mich sichtbar machen" -#: ../../addon/facebook/facebook.php:537 +#: ../../addon/facebook/facebook.php:542 msgid "Do not import your Facebook profile wall conversations" msgstr "Facebook-Pinnwand nicht importieren" -#: ../../addon/facebook/facebook.php:539 +#: ../../addon/facebook/facebook.php:544 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 " @@ -4125,114 +4188,114 @@ msgid "" "who may see the conversations." msgstr "Wenn Du Facebook-Konversationen importierst und diese beiden Häkchen nicht setzt, wird Deine Facebook-Pinnwand mit der Pinnwand hier auf dieser Webseite vereinigt. Die Privatsphäre-Einstellungen für Deine Pinnwand auf dieser Webseite geben dann an, wer die Konversationen sehen kann." -#: ../../addon/facebook/facebook.php:544 +#: ../../addon/facebook/facebook.php:549 msgid "Comma separated applications to ignore" msgstr "Komma separiert Anwendungen, die ignoriert werden sollen" -#: ../../addon/facebook/facebook.php:615 +#: ../../addon/facebook/facebook.php:623 msgid "Problems with Facebook Real-Time Updates" msgstr "Probleme mit Facebook Echtzeit-Updates" -#: ../../addon/facebook/facebook.php:639 +#: ../../addon/facebook/facebook.php:647 #: ../../include/contact_selectors.php:81 msgid "Facebook" msgstr "Facebook" -#: ../../addon/facebook/facebook.php:640 +#: ../../addon/facebook/facebook.php:648 msgid "Facebook Connector Settings" msgstr "Facebook-Verbindungseinstellungen" -#: ../../addon/facebook/facebook.php:649 +#: ../../addon/facebook/facebook.php:659 msgid "Facebook API Key" msgstr "Facebook API Schlüssel" -#: ../../addon/facebook/facebook.php:658 +#: ../../addon/facebook/facebook.php:668 msgid "" "Error: it appears that you have specified the App-ID and -Secret in your " ".htconfig.php file. As long as they are specified there, they cannot be set " "using this form.

    " msgstr "Fehler: du scheinst die App-ID und das App-Geheimnis in deiner .htconfig.php Datei angegeben zu haben. Solange sie dort festgelegt werden kannst du dieses Formular hier nicht verwenden.

    " -#: ../../addon/facebook/facebook.php:663 +#: ../../addon/facebook/facebook.php:673 msgid "" "Error: the given API Key seems to be incorrect (the application access token" " could not be retrieved)." msgstr "Fehler: der angegebene API Schlüssel scheint nicht korrekt zu sein (Zugriffstoken konnte nicht empfangen werden)." -#: ../../addon/facebook/facebook.php:665 +#: ../../addon/facebook/facebook.php:675 msgid "The given API Key seems to work correctly." -msgstr "Der angegebene API Schlüssel scheint korrekt zu funktionieren." +msgstr "Der angegebene API Schlüssel scheint nicht korrekt zu funktionieren." -#: ../../addon/facebook/facebook.php:667 +#: ../../addon/facebook/facebook.php:677 msgid "" "The correctness of the API Key could not be detected. Somthing strange's " "going on." msgstr "Die Echtheit des API Schlüssels konnte nicht überprüft werden. Etwas Merkwürdiges ist hier im Gange." -#: ../../addon/facebook/facebook.php:670 +#: ../../addon/facebook/facebook.php:680 msgid "App-ID / API-Key" msgstr "App-ID / API-Key" -#: ../../addon/facebook/facebook.php:671 +#: ../../addon/facebook/facebook.php:681 msgid "Application secret" msgstr "Anwendungs-Geheimnis" -#: ../../addon/facebook/facebook.php:672 +#: ../../addon/facebook/facebook.php:682 #, php-format msgid "Polling Interval (min. %1$s minutes)" msgstr "Abrufintervall (min. %1$s Minuten)" -#: ../../addon/facebook/facebook.php:676 +#: ../../addon/facebook/facebook.php:686 msgid "Real-Time Updates" msgstr "Echt-Zeit Aktualisierungen" -#: ../../addon/facebook/facebook.php:680 +#: ../../addon/facebook/facebook.php:690 msgid "Real-Time Updates are activated." msgstr "Echtzeit-Updates sind aktiviert." -#: ../../addon/facebook/facebook.php:681 +#: ../../addon/facebook/facebook.php:691 msgid "Deactivate Real-Time Updates" msgstr "Echtzeit-Updates deaktivieren" -#: ../../addon/facebook/facebook.php:683 +#: ../../addon/facebook/facebook.php:693 msgid "Real-Time Updates not activated." msgstr "Echtzeit-Updates nicht aktiviert." -#: ../../addon/facebook/facebook.php:683 +#: ../../addon/facebook/facebook.php:693 msgid "Activate Real-Time Updates" msgstr "Echtzeit-Updates aktivieren" -#: ../../addon/facebook/facebook.php:697 +#: ../../addon/facebook/facebook.php:707 msgid "The new values have been saved." msgstr "Die neuen Einstellungen wurden gespeichert." -#: ../../addon/facebook/facebook.php:716 +#: ../../addon/facebook/facebook.php:726 msgid "Post to Facebook" msgstr "Bei Facebook veröffentlichen" -#: ../../addon/facebook/facebook.php:808 +#: ../../addon/facebook/facebook.php:818 msgid "" "Post to Facebook cancelled because of multi-network access permission " "conflict." msgstr "Beitrag wurde nicht bei Facebook veröffentlicht, da Konflikte bei den Multi-Netzwerk-Zugriffsrechten vorliegen." -#: ../../addon/facebook/facebook.php:1026 +#: ../../addon/facebook/facebook.php:1039 msgid "View on Friendica" msgstr "In Friendica betrachten" -#: ../../addon/facebook/facebook.php:1051 +#: ../../addon/facebook/facebook.php:1072 msgid "Facebook post failed. Queued for retry." msgstr "Veröffentlichung bei Facebook gescheitert. Wir versuchen es später erneut." -#: ../../addon/facebook/facebook.php:1087 +#: ../../addon/facebook/facebook.php:1108 msgid "Your Facebook connection became invalid. Please Re-authenticate." msgstr "Deine Facebook Anmeldedaten sind ungültig geworden. Bitte re-authentifiziere dich." -#: ../../addon/facebook/facebook.php:1088 +#: ../../addon/facebook/facebook.php:1109 msgid "Facebook connection became invalid" msgstr "Facebook Anmeldedaten sind ungültig geworden" -#: ../../addon/facebook/facebook.php:1089 +#: ../../addon/facebook/facebook.php:1110 #, php-format msgid "" "Hi %1$s,\n" @@ -4240,11 +4303,6 @@ msgid "" "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 "Hi %1$s,\n\ndie Verbindung von deinem Account auf %2$s und Facebook funktioniert derzeit nicht. Dies ist im Allgemeinen das Ergebnis einer Passwortänderung bei Facebook. Um die Verbindung wieder zu aktivieren musst du %3$sden Facebook-Connector neu Authentifizieren%4$s." -#: ../../addon/facebook/facebook.php:1214 -#: ../../addon/facebook/facebook.php:1223 ../../include/bb2diaspora.php:102 -msgid "link" -msgstr "Verweis" - #: ../../addon/widgets/widget_like.php:58 #, php-format msgid "%d person likes this" @@ -4362,11 +4420,19 @@ msgstr "%s – Zum Öffnen/Schließen klicken" msgid "Forums" msgstr "Foren" +#: ../../addon/planets/planets.php:150 +msgid "Planets Settings" +msgstr "Planeten Einstellungen" + +#: ../../addon/planets/planets.php:152 +msgid "Enable Planets Plugin" +msgstr "Aktiviere Planeten Plugin" + #: ../../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:766 +#: ../../include/nav.php:64 ../../boot.php:796 msgid "Login" msgstr "Anmeldung" @@ -4394,10 +4460,10 @@ msgid "Latest likes" msgstr "Neueste Favoriten" #: ../../addon/communityhome/communityhome.php:155 -#: ../../view/theme/diabook-red/theme.php:74 -#: ../../view/theme/diabook-blue/theme.php:74 -#: ../../view/theme/diabook/theme.php:78 -#: ../../view/theme/diabook-aerith/theme.php:74 ../../include/text.php:1295 +#: ../../view/theme/diabook-red/theme.php:77 +#: ../../view/theme/diabook-blue/theme.php:77 +#: ../../view/theme/diabook/theme.php:83 +#: ../../view/theme/diabook-aerith/theme.php:78 ../../include/text.php:1302 #: ../../include/conversation.php:45 ../../include/conversation.php:118 msgid "event" msgstr "Veranstaltung" @@ -4481,11 +4547,11 @@ msgstr "Unentschieden!" msgid "I won!" msgstr "Ich gewinne!" -#: ../../addon/randplace/randplace.php:171 +#: ../../addon/randplace/randplace.php:169 msgid "Randplace Settings" msgstr "Randplace-Einstellungen" -#: ../../addon/randplace/randplace.php:173 +#: ../../addon/randplace/randplace.php:171 msgid "Enable Randplace Plugin" msgstr "Randplace-Plugin aktivieren" @@ -4550,7 +4616,7 @@ msgid "Post to Drupal by default" msgstr "Veröffentliche öffentliche Beiträge standardmäßig bei Drupal" #: ../../addon/drpost/drpost.php:184 ../../addon/wppost/wppost.php:190 -#: ../../addon/posterous/posterous.php:173 +#: ../../addon/blogger/blogger.php:172 ../../addon/posterous/posterous.php:173 msgid "Post from Friendica" msgstr "Beitrag via Friendica" @@ -4606,41 +4672,69 @@ msgstr "OEmbed für Youtube Videos verwenden" msgid "URL to embed:" msgstr "URL zum Einbetten:" -#: ../../addon/impressum/impressum.php:25 +#: ../../addon/impressum/impressum.php:34 msgid "Impressum" msgstr "Impressum" -#: ../../addon/impressum/impressum.php:38 -#: ../../addon/impressum/impressum.php:40 -#: ../../addon/impressum/impressum.php:70 +#: ../../addon/impressum/impressum.php:47 +#: ../../addon/impressum/impressum.php:49 +#: ../../addon/impressum/impressum.php:81 msgid "Site Owner" msgstr "Betreiber der Seite" -#: ../../addon/impressum/impressum.php:38 -#: ../../addon/impressum/impressum.php:74 +#: ../../addon/impressum/impressum.php:47 +#: ../../addon/impressum/impressum.php:85 msgid "Email Address" msgstr "Email Adresse" -#: ../../addon/impressum/impressum.php:43 -#: ../../addon/impressum/impressum.php:72 +#: ../../addon/impressum/impressum.php:52 +#: ../../addon/impressum/impressum.php:83 msgid "Postal Address" msgstr "Postalische Anschrift" -#: ../../addon/impressum/impressum.php:49 +#: ../../addon/impressum/impressum.php:58 msgid "" "The impressum addon needs to be configured!
    Please add at least the " "owner variable to your config file. For other variables please " "refer to the README file of the addon." msgstr "Das Impressums-Plugin muss noch konfiguriert werden.
    Bitte gebe mindestens den Betreiber in der Konfiguration an. Alle weiteren Parameter werden in der README-Datei des Addons erläutert." -#: ../../addon/impressum/impressum.php:71 +#: ../../addon/impressum/impressum.php:81 +msgid "The page operators name." +msgstr "Name des Server-Administrators" + +#: ../../addon/impressum/impressum.php:82 msgid "Site Owners Profile" msgstr "Profil des Seitenbetreibers" -#: ../../addon/impressum/impressum.php:73 +#: ../../addon/impressum/impressum.php:82 +msgid "Profile address of the operator." +msgstr "Profil-Adresse des Server-Administrators" + +#: ../../addon/impressum/impressum.php:83 +msgid "How to contact the operator via snail mail." +msgstr "Wie erreicht man den Betreiber der Seite postalisch." + +#: ../../addon/impressum/impressum.php:84 msgid "Notes" msgstr "Hinweise" +#: ../../addon/impressum/impressum.php:84 +msgid "Additional notes that are displayed beneath the contact information." +msgstr "Zusätzliche Angaben, die unterhalb der Kontakt-Informationen angezeigt werden." + +#: ../../addon/impressum/impressum.php:85 +msgid "How to contact the operator via email. (will be displayed obfuscated)" +msgstr "Wie erreichts man den Betreiber per Email. (Adresse wird verschleiert dargestellt)" + +#: ../../addon/impressum/impressum.php:86 +msgid "Footer note" +msgstr "Fußnote" + +#: ../../addon/impressum/impressum.php:86 +msgid "Text for the footer." +msgstr "Text für die Fußnote" + #: ../../addon/buglink/buglink.php:15 msgid "Report Bug" msgstr "Fehlerreport erstellen" @@ -4722,6 +4816,27 @@ msgstr "Standard Zoom" msgid "The default zoom level. (1:world, 18:highest)" msgstr "Standard Zoomlevel (1: Welt; 18: höchstes)" +#: ../../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 "Mit dem MathJax Addon können mathematische Formeln, die mit LaTeX geschrieben wurden, dargestellt werden. Die Formel wird mit den üblichen $$ oder einem eqnarray Block gekennzeichnet. Formeln werden in allen Beiträgen auf deiner Pinnwand, dem Netzwerk-Stream sowie privaten Nachrichten gerendert." + +#: ../../addon/mathjax/mathjax.php:38 +msgid "Use the MathJax renderer" +msgstr "MathJax verwenden" + +#: ../../addon/mathjax/mathjax.php:72 +msgid "MathJax Base URL" +msgstr "MathJax Basis-URL" + +#: ../../addon/mathjax/mathjax.php:72 +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 "Die URL der MathJax Javascript-Datei, die verwendet werden soll. Diese kann entweder aus der MathJax CDN oder einer anderen Quelle stammen." + #: ../../addon/editplain/editplain.php:46 msgid "Editplain settings updated." msgstr "Editplain Einstellungen aktualisiert" @@ -4734,6 +4849,63 @@ msgstr "Editplain Einstellungen" msgid "Disable richtext status editor" msgstr "RichText Editor deaktivieren" +#: ../../addon/gravatar/gravatar.php:71 +msgid "generic profile image" +msgstr "" + +#: ../../addon/gravatar/gravatar.php:72 +msgid "random geometric pattern" +msgstr "" + +#: ../../addon/gravatar/gravatar.php:73 +msgid "monster face" +msgstr "" + +#: ../../addon/gravatar/gravatar.php:74 +msgid "computer generated face" +msgstr "" + +#: ../../addon/gravatar/gravatar.php:75 +msgid "retro arcade style face" +msgstr "" + +#: ../../addon/gravatar/gravatar.php:87 +msgid "Default avatar image" +msgstr "Standard Profilbild " + +#: ../../addon/gravatar/gravatar.php:87 +msgid "Select default avatar image if none was found at Gravatar. See README" +msgstr "" + +#: ../../addon/gravatar/gravatar.php:88 +msgid "Rating of images" +msgstr "" + +#: ../../addon/gravatar/gravatar.php:88 +msgid "Select the appropriate avatar rating for your site. See README" +msgstr "" + +#: ../../addon/gravatar/gravatar.php:102 +msgid "Gravatar settings updated." +msgstr "" + +#: ../../addon/testdrive/testdrive.php:85 +#, php-format +msgid "Your account on %s will expire in a few days." +msgstr "Dein Konto auf %s wird in ein paar Tagen verfallen." + +#: ../../addon/testdrive/testdrive.php:86 +msgid "Your Friendica test account is about to expire." +msgstr "Dein Friendica Test Konto wird bald verfallen." + +#: ../../addon/testdrive/testdrive.php:87 +#, 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 msgid "\"pageheader\" Settings" msgstr "\"pageheader\"-Einstellungen" @@ -4891,7 +5063,7 @@ msgstr "#Tags nach StatusNet senden" msgid "Clear OAuth configuration" msgstr "OAuth-Konfiguration löschen" -#: ../../addon/statusnet/statusnet.php:539 +#: ../../addon/statusnet/statusnet.php:545 msgid "API URL" msgstr "API-URL" @@ -4994,12 +5166,12 @@ msgstr "Aktiviere \"Mehr zeigen\"" msgid "Cutting posts after how much characters" msgstr "Begrenze Beiträge nach einer bestimmten Anzahl an Buchstaben" -#: ../../addon/showmore/showmore.php:64 +#: ../../addon/showmore/showmore.php:65 msgid "Show More Settings saved." msgstr "\"Mehr zeigen\" Einstellungen gesichert." -#: ../../addon/showmore/showmore.php:86 ../../include/conversation.php:466 -#: ../../boot.php:495 +#: ../../addon/showmore/showmore.php:87 ../../include/conversation.php:466 +#: ../../boot.php:496 msgid "show more" msgstr "mehr anzeigen" @@ -5101,22 +5273,66 @@ msgstr "Veröffentliche öffentliche Beiträge standardmäßig bei Twitter" msgid "Send #tag links to Twitter" msgstr "#Tags nach Twitter senden" -#: ../../addon/twitter/twitter.php:371 +#: ../../addon/twitter/twitter.php:377 msgid "Consumer key" msgstr "Consumer Key" -#: ../../addon/twitter/twitter.php:372 +#: ../../addon/twitter/twitter.php:378 msgid "Consumer secret" msgstr "Consumer Secret" -#: ../../addon/irc/irc.php:25 +#: ../../addon/irc/irc.php:44 +msgid "IRC Settings" +msgstr "IRC Einstellungen" + +#: ../../addon/irc/irc.php:46 +msgid "Channel(s) to auto connect (comma separated)" +msgstr "" + +#: ../../addon/irc/irc.php:51 +msgid "Popular Channels (comma separated)" +msgstr "" + +#: ../../addon/irc/irc.php:69 +msgid "IRC settings saved." +msgstr "IRC Einstellungen gespeichert." + +#: ../../addon/irc/irc.php:74 msgid "IRC Chatroom" msgstr "IRC Chatraum" -#: ../../addon/irc/irc.php:46 +#: ../../addon/irc/irc.php:96 msgid "Popular Channels" msgstr "Beliebte Räume" +#: ../../addon/blogger/blogger.php:42 +msgid "Post to blogger" +msgstr "" + +#: ../../addon/blogger/blogger.php:74 +msgid "Blogger Post Settings" +msgstr "" + +#: ../../addon/blogger/blogger.php:76 +msgid "Enable Blogger Post Plugin" +msgstr "" + +#: ../../addon/blogger/blogger.php:81 +msgid "Blogger username" +msgstr "" + +#: ../../addon/blogger/blogger.php:86 +msgid "Blogger password" +msgstr "" + +#: ../../addon/blogger/blogger.php:91 +msgid "Blogger API URL" +msgstr "" + +#: ../../addon/blogger/blogger.php:96 +msgid "Post to Blogger by default" +msgstr "" + #: ../../addon/posterous/posterous.php:36 msgid "Post to Posterous" msgstr "Nach Posterous senden" @@ -5141,183 +5357,204 @@ msgstr "Posterous-Passwort" msgid "Post to Posterous by default" msgstr "Veröffentliche öffentliche Beiträge standardmäßig bei Posterous" -#: ../../view/theme/diabook-red/theme.php:23 -#: ../../view/theme/diabook-blue/theme.php:23 -#: ../../view/theme/diabook/theme.php:27 -#: ../../view/theme/dispy-dark/theme.php:116 -#: ../../view/theme/diabook-aerith/theme.php:23 +#: ../../view/theme/diabook-red/theme.php:26 +#: ../../view/theme/diabook-blue/theme.php:26 +#: ../../view/theme/diabook/theme.php:32 +#: ../../view/theme/diabook-aerith/theme.php:27 msgid "Last users" msgstr "Letzte Nutzer" -#: ../../view/theme/diabook-red/theme.php:52 -#: ../../view/theme/diabook-blue/theme.php:52 -#: ../../view/theme/diabook/theme.php:56 -#: ../../view/theme/diabook-aerith/theme.php:52 +#: ../../view/theme/diabook-red/theme.php:55 +#: ../../view/theme/diabook-blue/theme.php:55 +#: ../../view/theme/diabook/theme.php:61 +#: ../../view/theme/diabook-aerith/theme.php:56 msgid "Last likes" msgstr "Zuletzt gemocht" -#: ../../view/theme/diabook-red/theme.php:97 -#: ../../view/theme/diabook-blue/theme.php:97 -#: ../../view/theme/diabook/theme.php:101 -#: ../../view/theme/diabook-aerith/theme.php:97 +#: ../../view/theme/diabook-red/theme.php:100 +#: ../../view/theme/diabook-blue/theme.php:100 +#: ../../view/theme/diabook/theme.php:106 +#: ../../view/theme/diabook-aerith/theme.php:101 msgid "Last photos" msgstr "Letzte Fotos" -#: ../../view/theme/diabook-red/theme.php:142 -#: ../../view/theme/diabook-blue/theme.php:142 -#: ../../view/theme/diabook/theme.php:146 -#: ../../view/theme/diabook-aerith/theme.php:142 +#: ../../view/theme/diabook-red/theme.php:145 +#: ../../view/theme/diabook-blue/theme.php:145 +#: ../../view/theme/diabook/theme.php:151 +#: ../../view/theme/diabook-aerith/theme.php:146 msgid "Find Friends" msgstr "Freunde finden" -#: ../../view/theme/diabook-red/theme.php:143 -#: ../../view/theme/diabook-blue/theme.php:143 -#: ../../view/theme/diabook/theme.php:147 -#: ../../view/theme/diabook-aerith/theme.php:143 +#: ../../view/theme/diabook-red/theme.php:146 +#: ../../view/theme/diabook-blue/theme.php:146 +#: ../../view/theme/diabook/theme.php:152 +#: ../../view/theme/diabook-aerith/theme.php:147 msgid "Local Directory" msgstr "Lokales Verzeichnis" -#: ../../view/theme/diabook-red/theme.php:145 -#: ../../view/theme/diabook-blue/theme.php:145 -#: ../../view/theme/diabook/theme.php:149 -#: ../../view/theme/diabook-aerith/theme.php:145 -#: ../../include/contact_widgets.php:34 +#: ../../view/theme/diabook-red/theme.php:148 +#: ../../view/theme/diabook-blue/theme.php:148 +#: ../../view/theme/diabook/theme.php:154 +#: ../../view/theme/diabook-aerith/theme.php:149 +#: ../../include/contact_widgets.php:35 msgid "Similar Interests" msgstr "Ähnliche Interessen" -#: ../../view/theme/diabook-red/theme.php:147 -#: ../../view/theme/diabook-blue/theme.php:147 -#: ../../view/theme/diabook/theme.php:151 -#: ../../view/theme/diabook-aerith/theme.php:147 -#: ../../include/contact_widgets.php:35 +#: ../../view/theme/diabook-red/theme.php:150 +#: ../../view/theme/diabook-blue/theme.php:150 +#: ../../view/theme/diabook/theme.php:156 +#: ../../view/theme/diabook-aerith/theme.php:151 +#: ../../include/contact_widgets.php:37 msgid "Invite Friends" msgstr "Freunde einladen" -#: ../../view/theme/diabook-red/theme.php:162 -#: ../../view/theme/diabook-red/theme.php:243 -#: ../../view/theme/diabook-blue/theme.php:162 -#: ../../view/theme/diabook-blue/theme.php:243 -#: ../../view/theme/diabook/theme.php:167 -#: ../../view/theme/diabook/theme.php:251 -#: ../../view/theme/diabook-aerith/theme.php:162 -#: ../../view/theme/diabook-aerith/theme.php:243 +#: ../../view/theme/diabook-red/theme.php:165 +#: ../../view/theme/diabook-red/theme.php:246 +#: ../../view/theme/diabook-blue/theme.php:165 +#: ../../view/theme/diabook-blue/theme.php:246 +#: ../../view/theme/diabook/theme.php:172 +#: ../../view/theme/diabook/theme.php:256 +#: ../../view/theme/diabook-aerith/theme.php:166 +#: ../../view/theme/diabook-aerith/theme.php:247 msgid "Community Pages" msgstr "Foren" -#: ../../view/theme/diabook-red/theme.php:195 -#: ../../view/theme/diabook-blue/theme.php:195 -#: ../../view/theme/diabook/theme.php:200 -#: ../../view/theme/diabook-aerith/theme.php:195 +#: ../../view/theme/diabook-red/theme.php:198 +#: ../../view/theme/diabook-blue/theme.php:198 +#: ../../view/theme/diabook/theme.php:205 +#: ../../view/theme/diabook-aerith/theme.php:199 msgid "Help or @NewHere ?" msgstr "Hilfe oder @NewHere" -#: ../../view/theme/diabook-red/theme.php:201 -#: ../../view/theme/diabook-blue/theme.php:201 -#: ../../view/theme/diabook/theme.php:206 -#: ../../view/theme/diabook-aerith/theme.php:201 +#: ../../view/theme/diabook-red/theme.php:204 +#: ../../view/theme/diabook-blue/theme.php:204 +#: ../../view/theme/diabook/theme.php:211 +#: ../../view/theme/diabook-aerith/theme.php:205 msgid "Connect Services" msgstr "Verbinde Dienste" -#: ../../view/theme/diabook-red/theme.php:207 -#: ../../view/theme/diabook-blue/theme.php:207 -#: ../../view/theme/diabook/theme.php:212 -#: ../../view/theme/diabook-aerith/theme.php:207 +#: ../../view/theme/diabook-red/theme.php:210 +#: ../../view/theme/diabook-blue/theme.php:210 +#: ../../view/theme/diabook/theme.php:217 +#: ../../view/theme/diabook-aerith/theme.php:211 msgid "PostIt to Friendica" msgstr "Bei Friendica posten" -#: ../../view/theme/diabook-red/theme.php:207 -#: ../../view/theme/diabook-blue/theme.php:207 -#: ../../view/theme/diabook/theme.php:212 -#: ../../view/theme/diabook-aerith/theme.php:207 +#: ../../view/theme/diabook-red/theme.php:210 +#: ../../view/theme/diabook-blue/theme.php:210 +#: ../../view/theme/diabook/theme.php:217 +#: ../../view/theme/diabook-aerith/theme.php:211 msgid "Post to Friendica" msgstr "Wenn du diesen Link" -#: ../../view/theme/diabook-red/theme.php:208 -#: ../../view/theme/diabook-blue/theme.php:208 -#: ../../view/theme/diabook/theme.php:213 -#: ../../view/theme/diabook-aerith/theme.php:208 +#: ../../view/theme/diabook-red/theme.php:211 +#: ../../view/theme/diabook-blue/theme.php:211 +#: ../../view/theme/diabook/theme.php:218 +#: ../../view/theme/diabook-aerith/theme.php:212 msgid " from anywhere by bookmarking this Link." msgstr "zu deinen Lesezeichen hinzufügst, kannst du von überallher Links bei Friendica veröffentlichen." -#: ../../view/theme/diabook-red/theme.php:236 -#: ../../view/theme/diabook-blue/theme.php:236 -#: ../../view/theme/diabook/theme.php:244 -#: ../../view/theme/diabook-aerith/theme.php:236 ../../include/nav.php:49 +#: ../../view/theme/diabook-red/theme.php:239 +#: ../../view/theme/diabook-blue/theme.php:239 +#: ../../view/theme/diabook/theme.php:249 +#: ../../view/theme/diabook-aerith/theme.php:240 ../../include/nav.php:49 #: ../../include/nav.php:115 msgid "Your posts and conversations" msgstr "Deine Beiträge und Unterhaltungen" -#: ../../view/theme/diabook-red/theme.php:237 -#: ../../view/theme/diabook-blue/theme.php:237 -#: ../../view/theme/diabook/theme.php:245 -#: ../../view/theme/diabook-aerith/theme.php:237 ../../include/nav.php:50 +#: ../../view/theme/diabook-red/theme.php:240 +#: ../../view/theme/diabook-blue/theme.php:240 +#: ../../view/theme/diabook/theme.php:250 +#: ../../view/theme/diabook-aerith/theme.php:241 ../../include/nav.php:50 msgid "Your profile page" msgstr "Deine Profilseite" -#: ../../view/theme/diabook-red/theme.php:238 -#: ../../view/theme/diabook-blue/theme.php:238 -#: ../../view/theme/diabook/theme.php:246 -#: ../../view/theme/diabook-aerith/theme.php:238 +#: ../../view/theme/diabook-red/theme.php:241 +#: ../../view/theme/diabook-blue/theme.php:241 +#: ../../view/theme/diabook/theme.php:251 +#: ../../view/theme/diabook-aerith/theme.php:242 msgid "Your contacts" msgstr "Deine Kontakte" -#: ../../view/theme/diabook-red/theme.php:239 -#: ../../view/theme/diabook-blue/theme.php:239 -#: ../../view/theme/diabook/theme.php:247 -#: ../../view/theme/diabook-aerith/theme.php:239 ../../include/nav.php:51 -#: ../../boot.php:1413 +#: ../../view/theme/diabook-red/theme.php:242 +#: ../../view/theme/diabook-blue/theme.php:242 +#: ../../view/theme/diabook/theme.php:252 +#: ../../view/theme/diabook-aerith/theme.php:243 ../../include/nav.php:51 +#: ../../boot.php:1463 msgid "Photos" msgstr "Bilder" -#: ../../view/theme/diabook-red/theme.php:239 -#: ../../view/theme/diabook-blue/theme.php:239 -#: ../../view/theme/diabook/theme.php:247 -#: ../../view/theme/diabook-aerith/theme.php:239 ../../include/nav.php:51 +#: ../../view/theme/diabook-red/theme.php:242 +#: ../../view/theme/diabook-blue/theme.php:242 +#: ../../view/theme/diabook/theme.php:252 +#: ../../view/theme/diabook-aerith/theme.php:243 ../../include/nav.php:51 msgid "Your photos" msgstr "Deine Fotos" -#: ../../view/theme/diabook-red/theme.php:240 -#: ../../view/theme/diabook-blue/theme.php:240 -#: ../../view/theme/diabook/theme.php:248 -#: ../../view/theme/diabook-aerith/theme.php:240 ../../include/nav.php:52 +#: ../../view/theme/diabook-red/theme.php:243 +#: ../../view/theme/diabook-blue/theme.php:243 +#: ../../view/theme/diabook/theme.php:253 +#: ../../view/theme/diabook-aerith/theme.php:244 ../../include/nav.php:52 msgid "Your events" msgstr "Deine Ereignisse" -#: ../../view/theme/diabook-red/theme.php:241 -#: ../../view/theme/diabook-blue/theme.php:241 -#: ../../view/theme/diabook/theme.php:249 -#: ../../view/theme/diabook-aerith/theme.php:241 ../../include/nav.php:53 +#: ../../view/theme/diabook-red/theme.php:244 +#: ../../view/theme/diabook-blue/theme.php:244 +#: ../../view/theme/diabook/theme.php:254 +#: ../../view/theme/diabook-aerith/theme.php:245 ../../include/nav.php:53 msgid "Personal notes" msgstr "Persönliche Notizen" -#: ../../view/theme/diabook-red/theme.php:241 -#: ../../view/theme/diabook-blue/theme.php:241 -#: ../../view/theme/diabook/theme.php:249 -#: ../../view/theme/diabook-aerith/theme.php:241 ../../include/nav.php:53 +#: ../../view/theme/diabook-red/theme.php:244 +#: ../../view/theme/diabook-blue/theme.php:244 +#: ../../view/theme/diabook/theme.php:254 +#: ../../view/theme/diabook-aerith/theme.php:245 ../../include/nav.php:53 msgid "Your personal photos" msgstr "Deine privaten Fotos" -#: ../../view/theme/quattro/config.php:23 +#: ../../view/theme/diabook-red/config.php:66 +#: ../../view/theme/diabook-blue/config.php:66 +#: ../../view/theme/diabook/config.php:78 +#: ../../view/theme/quattro/config.php:54 +#: ../../view/theme/diabook-aerith/config.php:66 msgid "Theme settings" msgstr "Themen Einstellungen" -#: ../../view/theme/quattro/config.php:24 +#: ../../view/theme/diabook-red/config.php:67 +#: ../../view/theme/diabook-blue/config.php:67 +#: ../../view/theme/diabook/config.php:79 +#: ../../view/theme/diabook-aerith/config.php:67 +msgid "Set font-size for posts and comments" +msgstr "" + +#: ../../view/theme/diabook-red/config.php:68 +#: ../../view/theme/diabook-blue/config.php:68 +#: ../../view/theme/diabook/config.php:80 +#: ../../view/theme/diabook-aerith/config.php:68 +msgid "Set line-height for posts and comments" +msgstr "" + +#: ../../view/theme/diabook/config.php:81 +msgid "Set resolution for middle column" +msgstr "" + +#: ../../view/theme/quattro/config.php:55 msgid "Alignment" msgstr "Ausrichtung" -#: ../../view/theme/quattro/config.php:24 +#: ../../view/theme/quattro/config.php:55 msgid "Left" msgstr "Links" -#: ../../view/theme/quattro/config.php:24 +#: ../../view/theme/quattro/config.php:55 msgid "Center" msgstr "Mitte" -#: ../../view/theme/quattro/config.php:25 +#: ../../view/theme/quattro/config.php:56 msgid "Color scheme" msgstr "Farbschema" -#: ../../include/profile_advanced.php:17 ../../boot.php:1044 +#: ../../include/profile_advanced.php:17 ../../boot.php:1085 msgid "Gender:" msgstr "Geschlecht:" @@ -5329,8 +5566,8 @@ msgstr "j F, Y" msgid "j F" msgstr "j F" -#: ../../include/profile_advanced.php:30 ../../include/datetime.php:438 -#: ../../include/items.php:1392 +#: ../../include/profile_advanced.php:30 ../../include/datetime.php:448 +#: ../../include/items.php:1402 msgid "Birthday:" msgstr "Geburtstag:" @@ -5338,11 +5575,11 @@ msgstr "Geburtstag:" msgid "Age:" msgstr "Alter:" -#: ../../include/profile_advanced.php:37 ../../boot.php:1047 +#: ../../include/profile_advanced.php:37 ../../boot.php:1088 msgid "Status:" msgstr "Status:" -#: ../../include/profile_advanced.php:45 ../../boot.php:1049 +#: ../../include/profile_advanced.php:45 ../../boot.php:1090 msgid "Homepage:" msgstr "Homepage:" @@ -5556,7 +5793,7 @@ msgstr "Abstinent" #: ../../include/profile_selectors.php:19 msgid "Virgin" -msgstr "Jungfrau" +msgstr "Jungfrauen" #: ../../include/profile_selectors.php:19 msgid "Deviant" @@ -5590,6 +5827,14 @@ msgstr "Verfügbar" msgid "Unavailable" msgstr "Nicht verfügbar" +#: ../../include/profile_selectors.php:33 +msgid "Has crush" +msgstr "" + +#: ../../include/profile_selectors.php:33 +msgid "Infatuated" +msgstr "" + #: ../../include/profile_selectors.php:33 msgid "Dating" msgstr "Dating" @@ -5622,6 +5867,10 @@ msgstr "Verlobt" msgid "Married" msgstr "Verheiratet" +#: ../../include/profile_selectors.php:33 +msgid "Imaginarily married" +msgstr "" + #: ../../include/profile_selectors.php:33 msgid "Partners" msgstr "Partner" @@ -5630,12 +5879,16 @@ msgstr "Partner" msgid "Cohabiting" msgstr "zusammenlebend" +#: ../../include/profile_selectors.php:33 +msgid "Common law" +msgstr "" + #: ../../include/profile_selectors.php:33 msgid "Happy" msgstr "Glücklich" #: ../../include/profile_selectors.php:33 -msgid "Not Looking" +msgid "Not looking" msgstr "Nicht auf der Suche" #: ../../include/profile_selectors.php:33 @@ -5658,6 +5911,10 @@ msgstr "Unstabil" msgid "Divorced" msgstr "Geschieden" +#: ../../include/profile_selectors.php:33 +msgid "Imaginarily divorced" +msgstr "" + #: ../../include/profile_selectors.php:33 msgid "Widowed" msgstr "Verwitwet" @@ -5667,8 +5924,8 @@ msgid "Uncertain" msgstr "Unsicher" #: ../../include/profile_selectors.php:33 -msgid "Complicated" -msgstr "Kompliziert" +msgid "It's complicated" +msgstr "Ist kompliziert" #: ../../include/profile_selectors.php:33 msgid "Don't care" @@ -5826,27 +6083,27 @@ msgstr "Abgelegt unter:" msgid "Click to open/close" msgstr "Zum öffnen/schließen klicken" -#: ../../include/text.php:1071 -msgid "Select an alternate language" -msgstr "Alternative Sprache auswählen" - -#: ../../include/text.php:1083 +#: ../../include/text.php:1084 msgid "default" msgstr "standard" -#: ../../include/text.php:1299 +#: ../../include/text.php:1096 +msgid "Select an alternate language" +msgstr "Alternative Sprache auswählen" + +#: ../../include/text.php:1306 msgid "activity" msgstr "Aktivität" -#: ../../include/text.php:1301 +#: ../../include/text.php:1308 msgid "comment" msgstr "Kommentar" -#: ../../include/text.php:1302 +#: ../../include/text.php:1309 msgid "post" msgstr "Beitrag" -#: ../../include/text.php:1457 +#: ../../include/text.php:1464 msgid "Item filed" msgstr "Beitrag abgelegt" @@ -5863,7 +6120,7 @@ msgstr "Anhänge:" msgid "[Relayed] Comment authored by %s from network %s" msgstr "[Weitergeleitet] Kommentar von %s aus dem %s Netzwerk" -#: ../../include/network.php:817 +#: ../../include/network.php:823 msgid "view full size" msgstr "Volle Größe anzeigen" @@ -5902,7 +6159,11 @@ msgstr "Gruppe bearbeiten" msgid "Create a new group" msgstr "Neue Gruppe erstellen" -#: ../../include/nav.php:46 ../../boot.php:765 +#: ../../include/group.php:215 +msgid "Contacts not in any group" +msgstr "" + +#: ../../include/nav.php:46 ../../boot.php:795 msgid "Logout" msgstr "Abmelden" @@ -5910,7 +6171,7 @@ msgstr "Abmelden" msgid "End this session" msgstr "Diese Sitzung beenden" -#: ../../include/nav.php:49 ../../boot.php:1403 +#: ../../include/nav.php:49 ../../boot.php:1453 msgid "Status" msgstr "Status" @@ -5990,11 +6251,11 @@ msgstr "Verwalten" msgid "Manage other pages" msgstr "Andere Seiten verwalten" -#: ../../include/nav.php:138 ../../boot.php:1002 +#: ../../include/nav.php:138 ../../boot.php:1043 msgid "Profiles" msgstr "Profile" -#: ../../include/nav.php:138 ../../boot.php:1002 +#: ../../include/nav.php:138 ../../boot.php:1043 msgid "Manage/edit profiles" msgstr "Profile verwalten/editieren" @@ -6026,46 +6287,50 @@ msgstr "Adresse oder Web-Link eingeben" msgid "Example: bob@example.com, http://example.com/barbara" msgstr "Beispiel: bob@example.com, http://example.com/barbara" -#: ../../include/contact_widgets.php:22 +#: ../../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:28 +#: ../../include/contact_widgets.php:29 msgid "Find People" msgstr "Leute finden" -#: ../../include/contact_widgets.php:29 +#: ../../include/contact_widgets.php:30 msgid "Enter name or interest" msgstr "Name oder Interessen eingeben" -#: ../../include/contact_widgets.php:30 +#: ../../include/contact_widgets.php:31 msgid "Connect/Follow" msgstr "Verbinden/Folgen" -#: ../../include/contact_widgets.php:31 +#: ../../include/contact_widgets.php:32 msgid "Examples: Robert Morgenstein, Fishing" msgstr "Beispiel: Robert Morgenstein, Angeln" -#: ../../include/contact_widgets.php:66 +#: ../../include/contact_widgets.php:36 +msgid "Random Profile" +msgstr "Zufälliges Profil" + +#: ../../include/contact_widgets.php:68 msgid "Networks" msgstr "Netzwerke" -#: ../../include/contact_widgets.php:69 +#: ../../include/contact_widgets.php:71 msgid "All Networks" msgstr "Alle Netzwerke" -#: ../../include/contact_widgets.php:96 +#: ../../include/contact_widgets.php:98 msgid "Saved Folders" msgstr "Gespeicherte Ordner" -#: ../../include/contact_widgets.php:99 ../../include/contact_widgets.php:127 +#: ../../include/contact_widgets.php:101 ../../include/contact_widgets.php:129 msgid "Everything" msgstr "Alles" -#: ../../include/contact_widgets.php:124 +#: ../../include/contact_widgets.php:126 msgid "Categories" msgstr "Kategorien" @@ -6087,76 +6352,76 @@ msgstr "Die Fehlermeldung lautete:" msgid "Miscellaneous" msgstr "Verschiedenes" -#: ../../include/datetime.php:121 ../../include/datetime.php:253 +#: ../../include/datetime.php:131 ../../include/datetime.php:263 msgid "year" msgstr "Jahr" -#: ../../include/datetime.php:126 ../../include/datetime.php:254 +#: ../../include/datetime.php:136 ../../include/datetime.php:264 msgid "month" msgstr "Monat" -#: ../../include/datetime.php:131 ../../include/datetime.php:256 +#: ../../include/datetime.php:141 ../../include/datetime.php:266 msgid "day" msgstr "Tag" -#: ../../include/datetime.php:244 +#: ../../include/datetime.php:254 msgid "never" msgstr "nie" -#: ../../include/datetime.php:250 +#: ../../include/datetime.php:260 msgid "less than a second ago" msgstr "vor weniger als einer Sekunde" -#: ../../include/datetime.php:253 +#: ../../include/datetime.php:263 msgid "years" msgstr "Jahre" -#: ../../include/datetime.php:254 +#: ../../include/datetime.php:264 msgid "months" msgstr "Monate" -#: ../../include/datetime.php:255 +#: ../../include/datetime.php:265 msgid "week" msgstr "Woche" -#: ../../include/datetime.php:255 +#: ../../include/datetime.php:265 msgid "weeks" msgstr "Wochen" -#: ../../include/datetime.php:256 +#: ../../include/datetime.php:266 msgid "days" msgstr "Tage" -#: ../../include/datetime.php:257 +#: ../../include/datetime.php:267 msgid "hour" msgstr "Stunde" -#: ../../include/datetime.php:257 +#: ../../include/datetime.php:267 msgid "hours" msgstr "Stunden" -#: ../../include/datetime.php:258 +#: ../../include/datetime.php:268 msgid "minute" msgstr "Minute" -#: ../../include/datetime.php:258 +#: ../../include/datetime.php:268 msgid "minutes" msgstr "Minuten" -#: ../../include/datetime.php:259 +#: ../../include/datetime.php:269 msgid "second" msgstr "Sekunde" -#: ../../include/datetime.php:259 +#: ../../include/datetime.php:269 msgid "seconds" msgstr "Sekunden" -#: ../../include/datetime.php:267 +#: ../../include/datetime.php:277 #, php-format msgid "%1$d %2$s ago" msgstr "%1$d %2$s her" -#: ../../include/poller.php:533 +#: ../../include/poller.php:543 msgid "From: " msgstr "Von: " @@ -6164,7 +6429,7 @@ msgstr "Von: " msgid "$1 wrote:" msgstr "$1 hat geschrieben:" -#: ../../include/bbcode.php:237 ../../include/bbcode.php:303 +#: ../../include/bbcode.php:238 ../../include/bbcode.php:304 msgid "Image/photo" msgstr "Bild/Foto" @@ -6377,11 +6642,11 @@ msgstr "Foto:" msgid "Please visit %s to approve or reject the suggestion." msgstr "Bitte besuche %s, um den Vorschlag zu akzeptieren oder abzulehnen." -#: ../../include/items.php:2656 +#: ../../include/items.php:2697 msgid "A new person is sharing with you at " msgstr "Eine neue Person teilt mit dir auf " -#: ../../include/items.php:2656 +#: ../../include/items.php:2697 msgid "You have a new follower at " msgstr "Du hast einen neuen Kontakt auf " @@ -6390,6 +6655,10 @@ msgstr "Du hast einen neuen Kontakt auf " msgid "image/photo" msgstr "Bild/Foto" +#: ../../include/bb2diaspora.php:102 +msgid "link" +msgstr "Verweis" + #: ../../include/security.php:21 msgid "Welcome " msgstr "Willkommen " @@ -6406,27 +6675,32 @@ msgstr "Willkommen zurück " 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 "Der Formular-Sicherheits-Token war nicht korrekt. Der Grund ist wahrscheinlich, dass das Formular zu lange (>3 Stunden) offen war, bevor es abgeschickt wurde." +msgstr "" -#: ../../include/Contact.php:137 ../../include/conversation.php:813 -msgid "View status" -msgstr "Status anzeigen" +#: ../../include/Contact.php:145 ../../include/conversation.php:809 +msgid "View Status" +msgstr "Pinnwand anschauen" -#: ../../include/Contact.php:138 ../../include/conversation.php:814 -msgid "View profile" -msgstr "Profil anzeigen" +#: ../../include/Contact.php:146 ../../include/conversation.php:810 +msgid "View Profile" +msgstr "Profil anschauen" -#: ../../include/Contact.php:139 ../../include/conversation.php:815 -msgid "View photos" -msgstr "Fotos ansehen" +#: ../../include/Contact.php:147 ../../include/conversation.php:811 +msgid "View Photos" +msgstr "Bilder anschauen" -#: ../../include/Contact.php:140 ../../include/Contact.php:153 -#: ../../include/conversation.php:816 -msgid "View recent" -msgstr "Neueste anzeigen" +#: ../../include/Contact.php:148 ../../include/Contact.php:161 +#: ../../include/conversation.php:812 +msgid "Network Posts" +msgstr "Netzwerk Beiträge" -#: ../../include/Contact.php:142 ../../include/Contact.php:153 -#: ../../include/conversation.php:818 +#: ../../include/Contact.php:149 ../../include/Contact.php:161 +#: ../../include/conversation.php:813 +msgid "Edit Contact" +msgstr "Kontakt bearbeiten" + +#: ../../include/Contact.php:150 ../../include/Contact.php:161 +#: ../../include/conversation.php:814 msgid "Send PM" msgstr "Private Nachricht senden" @@ -6443,13 +6717,13 @@ msgstr "%1$s hat %2$s\\s %3$s als Favorit markiert" msgid "Select" msgstr "Auswählen" -#: ../../include/conversation.php:334 ../../include/conversation.php:672 -#: ../../include/conversation.php:673 +#: ../../include/conversation.php:334 ../../include/conversation.php:668 +#: ../../include/conversation.php:669 #, php-format msgid "View %s's profile @ %s" msgstr "Das Profil von %s auf %s betrachten." -#: ../../include/conversation.php:344 ../../include/conversation.php:684 +#: ../../include/conversation.php:344 ../../include/conversation.php:680 #, php-format msgid "%s from %s" msgstr "%s von %s" @@ -6505,185 +6779,185 @@ msgstr "Tag hinzufügen" msgid "save to folder" msgstr "In Ordner speichern" -#: ../../include/conversation.php:674 +#: ../../include/conversation.php:670 msgid "to" msgstr "zu" -#: ../../include/conversation.php:675 +#: ../../include/conversation.php:671 msgid "Wall-to-Wall" msgstr "Wall-to-Wall" -#: ../../include/conversation.php:676 +#: ../../include/conversation.php:672 msgid "via Wall-To-Wall:" msgstr "via Wall-To-Wall:" -#: ../../include/conversation.php:721 +#: ../../include/conversation.php:717 msgid "Delete Selected Items" msgstr "Lösche die markierten Beiträge" -#: ../../include/conversation.php:872 +#: ../../include/conversation.php:868 #, php-format msgid "%s likes this." msgstr "%s mag das." -#: ../../include/conversation.php:872 +#: ../../include/conversation.php:868 #, php-format msgid "%s doesn't like this." msgstr "%s mag das nicht." -#: ../../include/conversation.php:876 +#: ../../include/conversation.php:872 #, php-format msgid "%2$d people like this." msgstr "%2$d Leute mögen das." -#: ../../include/conversation.php:878 +#: ../../include/conversation.php:874 #, php-format msgid "%2$d people don't like this." msgstr "%2$d Leute mögen das nicht." -#: ../../include/conversation.php:884 +#: ../../include/conversation.php:880 msgid "and" msgstr "und" -#: ../../include/conversation.php:887 +#: ../../include/conversation.php:883 #, php-format msgid ", and %d other people" msgstr " und %d andere" -#: ../../include/conversation.php:888 +#: ../../include/conversation.php:884 #, php-format msgid "%s like this." msgstr "%s mögen das." -#: ../../include/conversation.php:888 +#: ../../include/conversation.php:884 #, php-format msgid "%s don't like this." msgstr "%s mögen das nicht." -#: ../../include/conversation.php:913 +#: ../../include/conversation.php:909 msgid "Visible to everybody" msgstr "Für jedermann sichtbar" -#: ../../include/conversation.php:915 +#: ../../include/conversation.php:911 msgid "Please enter a video link/URL:" msgstr "Bitte Link/URL zum Video einfügen:" -#: ../../include/conversation.php:916 +#: ../../include/conversation.php:912 msgid "Please enter an audio link/URL:" msgstr "Bitte Link/URL zum Audio einfügen:" -#: ../../include/conversation.php:917 +#: ../../include/conversation.php:913 msgid "Tag term:" msgstr "Tag:" -#: ../../include/conversation.php:919 +#: ../../include/conversation.php:915 msgid "Where are you right now?" msgstr "Wo hältst du dich jetzt gerade auf?" -#: ../../include/conversation.php:962 +#: ../../include/conversation.php:958 msgid "upload photo" msgstr "Bild hochladen" -#: ../../include/conversation.php:964 +#: ../../include/conversation.php:960 msgid "attach file" msgstr "Datei anhängen" -#: ../../include/conversation.php:966 +#: ../../include/conversation.php:962 msgid "web link" msgstr "Weblink" -#: ../../include/conversation.php:967 +#: ../../include/conversation.php:963 msgid "Insert video link" msgstr "Video-Adresse einfügen" -#: ../../include/conversation.php:968 +#: ../../include/conversation.php:964 msgid "video link" msgstr "Video-Link" -#: ../../include/conversation.php:969 +#: ../../include/conversation.php:965 msgid "Insert audio link" msgstr "Audio-Adresse einfügen" -#: ../../include/conversation.php:970 +#: ../../include/conversation.php:966 msgid "audio link" msgstr "Audio-Link" -#: ../../include/conversation.php:972 +#: ../../include/conversation.php:968 msgid "set location" msgstr "Ort setzen" -#: ../../include/conversation.php:974 +#: ../../include/conversation.php:970 msgid "clear location" msgstr "Ort löschen" -#: ../../include/conversation.php:981 +#: ../../include/conversation.php:977 msgid "permissions" msgstr "Zugriffsrechte" -#: ../../boot.php:493 +#: ../../boot.php:494 msgid "Delete this item?" msgstr "Diesen Beitrag löschen?" -#: ../../boot.php:496 +#: ../../boot.php:497 msgid "show fewer" msgstr "weniger anzeigen" -#: ../../boot.php:744 +#: ../../boot.php:774 msgid "Create a New Account" msgstr "Neuen Account erstellen" -#: ../../boot.php:768 +#: ../../boot.php:798 msgid "Nickname or Email address: " msgstr "Spitzname oder Email-Adresse: " -#: ../../boot.php:769 +#: ../../boot.php:799 msgid "Password: " msgstr "Passwort: " -#: ../../boot.php:772 +#: ../../boot.php:802 msgid "Or login using OpenID: " msgstr "Oder melde dich mit deiner OpenID an: " -#: ../../boot.php:778 +#: ../../boot.php:808 msgid "Forgot your password?" msgstr "Passwort vergessen?" -#: ../../boot.php:935 +#: ../../boot.php:975 msgid "Edit profile" msgstr "Profil bearbeiten" -#: ../../boot.php:994 +#: ../../boot.php:1035 msgid "Message" msgstr "Nachricht" -#: ../../boot.php:1109 ../../boot.php:1180 +#: ../../boot.php:1151 ../../boot.php:1223 msgid "g A l F d" -msgstr "l. d, F G \\U\\h\\\\r" +msgstr "l, d. F G \\U\\h\\r" -#: ../../boot.php:1110 ../../boot.php:1181 +#: ../../boot.php:1152 ../../boot.php:1224 msgid "F d" msgstr "d. F" -#: ../../boot.php:1135 +#: ../../boot.php:1177 msgid "Birthday Reminders" msgstr "Geburtstagserinnerungen" -#: ../../boot.php:1136 +#: ../../boot.php:1178 msgid "Birthdays this week:" msgstr "Geburtstage diese Woche:" -#: ../../boot.php:1159 ../../boot.php:1223 +#: ../../boot.php:1201 ../../boot.php:1266 msgid "[today]" msgstr "[heute]" -#: ../../boot.php:1204 +#: ../../boot.php:1247 msgid "Event Reminders" msgstr "Veranstaltungserinnerungen" -#: ../../boot.php:1205 +#: ../../boot.php:1248 msgid "Events this week:" msgstr "Veranstaltungen diese Woche" -#: ../../boot.php:1217 +#: ../../boot.php:1260 msgid "[No description]" msgstr "[keine Beschreibung]" diff --git a/view/de/strings.php b/view/de/strings.php index 6a43f049e..13f6f716e 100644 --- a/view/de/strings.php +++ b/view/de/strings.php @@ -155,6 +155,8 @@ $a->strings["%s has received too many connection requests today."] = "%s hat heu $a->strings["Spam protection measures have been invoked."] = "Maßnahmen zum Spamschutz wurden ergriffen."; $a->strings["Friends are advised to please try again in 24 hours."] = "Freunde sind angehalten, es in 24 Stunden erneut zu versuchen."; $a->strings["Invalid locator"] = "Ungültiger Locator"; +$a->strings["Invalid email address."] = "Ungültige E-Mail Adresse."; +$a->strings["This account has not been configured for email. Request failed."] = ""; $a->strings["Unable to resolve your name at the provided location."] = "Konnte deinen Namen an der angegebenen Stelle nicht finden."; $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."; @@ -365,6 +367,13 @@ $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 Email-Adresse an und fordere ein neues Passwort an. Es werden dir dann weitere Informationen per Mail zugesendet."; $a->strings["Nickname or Email: "] = "Spitzname oder Email:"; $a->strings["Reset"] = "Zurücksetzen"; +$a->strings["Account settings"] = "Account Einstellungen"; +$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["Settings"] = "Einstellungen"; $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."] = "Konnte das Email Konto mit den angegebenen Einstellungen nicht erreichen."; @@ -378,12 +387,6 @@ $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["Settings updated."] = "Einstellungen aktualisiert."; -$a->strings["Account settings"] = "Account Einstellungen"; -$a->strings["Display settings"] = "Anzeige Einstellungen"; -$a->strings["Connector settings"] = "Connector-Einstellungen"; -$a->strings["Plugin settings"] = "Plugin-Einstellungen"; -$a->strings["Connections"] = "Verbindungen"; -$a->strings["Export personal data"] = "Persönliche Daten exportieren"; $a->strings["Add application"] = "Programm hinzufügen"; $a->strings["Consumer Key"] = "Consumer Key"; $a->strings["Consumer Secret"] = "Consumer Secret"; @@ -471,6 +474,9 @@ $a->strings["Default Post Permissions"] = "Standard-Zugriffsrechte für Beiträg $a->strings["(click to open/close)"] = "(klicke zum öffnen/schließen)"; $a->strings["Maximum private messages per day from unknown people:"] = "Maximale Anzahl von privaten Nachrichten, die dir unbekannte Personen pro Tag senden dürfen:"; $a->strings["Notification Settings"] = "Benachrichtigungseinstellungen"; +$a->strings["By default post a status message when:"] = ""; +$a->strings["accepting a friend request"] = "akzeptieren einer Freundschaftsanfrage"; +$a->strings["making an interesting profile change"] = ""; $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"; @@ -478,7 +484,7 @@ $a->strings["Someone writes on your profile wall"] = "- jemand etwas auf deine P $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 wurdest in einem Beitrag erwähnt."; +$a->strings["You are tagged in a post"] = "- du in einem Beitrag erwähnt wurdest"; $a->strings["Advanced Page Settings"] = "Erweiterte Seiten-Einstellungen"; $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"] = "Wechsle zwischen verschiedenen Identitäten oder Gemeinschafts-/Gruppen-Seiten, die deine Zugangsdetails teilen oder zu denen du \"Manage\" Befugnisse bekommen hast."; @@ -646,6 +652,7 @@ $a->strings["No secure communications available. You may be abl $a->strings["Send Reply"] = "Antwort senden"; $a->strings["Friends of %s"] = "Freunde von %s"; $a->strings["No friends to display."] = "Keine Freunde zum Anzeigen."; +$a->strings["Theme settings updated."] = "Themen Einstellungen aktualisiert."; $a->strings["Site"] = "Seite"; $a->strings["Users"] = "Nutzer"; $a->strings["Plugins"] = "Plugins"; @@ -672,7 +679,7 @@ $a->strings["Site name"] = "Seitenname"; $a->strings["Banner/Logo"] = "Banner/Logo"; $a->strings["System language"] = "Systemsprache"; $a->strings["System theme"] = "Systemweites Thema"; -$a->strings["Default system theme - may be over-ridden by user profiles"] = "Standard Server Theme - kann von den Benutzereinstellungen überschrieben werden."; +$a->strings["Default system theme - may be over-ridden by user profiles - change theme settings"] = ""; $a->strings["SSL link policy"] = "Regeln für SSL Links"; $a->strings["Determines whether generated links should be forced to use SSL"] = "Bestimmt, ob generierte Links SSL verwenden müssen"; $a->strings["Maximum image size"] = "Maximale Größe von Bildern"; @@ -681,7 +688,7 @@ $a->strings["Register policy"] = "Registrierungsmethode"; $a->strings["Register text"] = "Registrierungstext"; $a->strings["Will be displayed prominently on the registration page."] = "Wird gut sichtbar auf der Registrierungs-Seite angezeigt."; $a->strings["Accounts abandoned after x days"] = "Accounts gelten nach x Tagen als unbenutzt"; -$a->strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Verschwende keine System-Ressourcen auf das Pollen externer Seiten, wenn Accounts nicht mehr benutzt werden. 0 eingeben für kein Limit."; +$a->strings["Will not waste system resources polling external sites for abandoned accounts. Enter 0 for no time limit."] = "Verschwende keine System-Ressourcen auf das Pollen externer Seiten, wenn Accounts nicht mehr benutzt werden. 0 eingeben für kein Limit."; $a->strings["Allowed friend domains"] = "Erlaubte Domains für Kontakte"; $a->strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "Liste der Domains, die für Freundschaften erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben."; $a->strings["Allowed email domains"] = "Erlaubte Domains für Emails"; @@ -696,8 +703,6 @@ $a->strings["Block multiple registrations"] = "Unterbinde Mehrfachregistrierung" $a->strings["Disallow users to register additional accounts for use as pages."] = "Benutzern nicht erlauben, weitere Accounts als zusätzliche Profile anzulegen."; $a->strings["OpenID support"] = "OpenID Unterstützung"; $a->strings["OpenID support for registration and logins."] = "OpenID-Unterstützung für Registrierung und Login."; -$a->strings["Gravatar support"] = "Gravatar Unterstützung"; -$a->strings["Search new user's photo on Gravatar."] = "Suchfunktion bei Gravatar für Profilbilder neuer Nutzer."; $a->strings["Fullname check"] = "Namen auf Vollständigkeit überprüfen"; $a->strings["Force users to register with a space between firstname and lastname in Full name, as an antispam measure"] = "Leerzeichen zwischen Vor- und Nachname im vollständigen Namen erzwingen, um SPAM zu vermeiden."; $a->strings["UTF-8 Regular expressions"] = "UTF-8 Reguläre Ausdrücke"; @@ -711,7 +716,7 @@ $a->strings["Provide built-in Diaspora network compatibility."] = "Verwende die $a->strings["Only allow Friendica contacts"] = "Nur Friendica-Kontakte erlauben"; $a->strings["All contacts must use Friendica protocols. All other built-in communication protocols disabled."] = "Alle Kontakte müssen das Friendica Protokoll nutzen. Alle anderen Kommunikationsprotokolle werden deaktiviert."; $a->strings["Verify SSL"] = "SSL Überprüfen"; -$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."] = "Wenn gewollt, kann man hier eine strenge Zertifikat Kontrolle anstellen. Das bedeutet, das man zu keinen Seiten mit selbst unterzeichneten SSL eine Verbindung herstellen kann."; +$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."] = "Wenn gewollt, kann man hier eine strenge Zertifikat Kontrolle einstellen. Das bedeutet, dass man zu keinen Seiten mit selbst unterzeichnetem SSL eine Verbindung herstellen kann."; $a->strings["Proxy user"] = "Proxy Nutzer"; $a->strings["Proxy URL"] = "Proxy URL"; $a->strings["Network timeout"] = "Netzwerk Wartezeit"; @@ -744,7 +749,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."; @@ -775,9 +779,10 @@ $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["Contacts who are not members of a group"] = ""; $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."] = "Account wurde nicht gefunden und OpenID Registrierung auf diesem Server nicht gestattet."; -$a->strings["Login failed."] = "Anmeldung fehlgeschlagen."; +$a->strings["Login failed."] = "Annmeldung fehlgeschlagen."; $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."; @@ -796,7 +801,19 @@ $a->strings["No installed applications."] = "Keine Applikationen installiert."; $a->strings["Search This Site"] = "Diese Seite durchsuchen"; $a->strings["Profile not found."] = "Profil nicht gefunden."; $a->strings["Profile Name is required."] = "Profilname ist erforderlich."; +$a->strings["Marital Status"] = ""; +$a->strings["Romantic Partner"] = ""; +$a->strings["Work/Employment"] = ""; +$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["Location"] = ""; $a->strings["Profile updated."] = "Profil aktualisiert."; +$a->strings["public profile"] = ""; +$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = ""; $a->strings["Profile deleted."] = "Profil gelöscht."; $a->strings["Profile-"] = "Profil-"; $a->strings["New profile created."] = "Neues Profil angelegt."; @@ -924,7 +941,7 @@ $a->strings["Facebook Connector Settings"] = "Facebook-Verbindungseinstellungen" $a->strings["Facebook API Key"] = "Facebook API Schlüssel"; $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.

    "] = "Fehler: du scheinst die App-ID und das App-Geheimnis in deiner .htconfig.php Datei angegeben zu haben. Solange sie dort festgelegt werden kannst du dieses Formular hier nicht verwenden.

    "; $a->strings["Error: the given API Key seems to be incorrect (the application access token could not be retrieved)."] = "Fehler: der angegebene API Schlüssel scheint nicht korrekt zu sein (Zugriffstoken konnte nicht empfangen werden)."; -$a->strings["The given API Key seems to work correctly."] = "Der angegebene API Schlüssel scheint korrekt zu funktionieren."; +$a->strings["The given API Key seems to work correctly."] = "Der angegebene API Schlüssel scheint nicht korrekt zu funktionieren."; $a->strings["The correctness of the API Key could not be detected. Somthing strange's going on."] = "Die Echtheit des API Schlüssels konnte nicht überprüft werden. Etwas Merkwürdiges ist hier im Gange."; $a->strings["App-ID / API-Key"] = "App-ID / API-Key"; $a->strings["Application secret"] = "Anwendungs-Geheimnis"; @@ -942,7 +959,6 @@ $a->strings["Facebook post failed. Queued for retry."] = "Veröffentlichung bei $a->strings["Your Facebook connection became invalid. Please Re-authenticate."] = "Deine Facebook Anmeldedaten sind ungültig geworden. Bitte re-authentifiziere dich."; $a->strings["Facebook connection became invalid"] = "Facebook Anmeldedaten sind ungültig geworden"; $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."] = "Hi %1\$s,\n\ndie Verbindung von deinem Account auf %2\$s und Facebook funktioniert derzeit nicht. Dies ist im Allgemeinen das Ergebnis einer Passwortänderung bei Facebook. Um die Verbindung wieder zu aktivieren musst du %3\$sden Facebook-Connector neu Authentifizieren%4\$s."; -$a->strings["link"] = "Verweis"; $a->strings["%d person likes this"] = array( 0 => "%d Person mag das", 1 => "%d Leuten mögen das", @@ -975,6 +991,8 @@ $a->strings["Use /expression/ to provide regular expressions"] = "Verwende /expr $a->strings["NSFW Settings saved."] = "NSFW-Einstellungen gespeichert"; $a->strings["%s - Click to open/close"] = "%s – Zum Öffnen/Schließen klicken"; $a->strings["Forums"] = "Foren"; +$a->strings["Planets Settings"] = "Planeten Einstellungen"; +$a->strings["Enable Planets Plugin"] = "Aktiviere Planeten Plugin"; $a->strings["Login"] = "Anmeldung"; $a->strings["OpenID"] = "OpenID"; $a->strings["Latest users"] = "Letzte Benutzer"; @@ -1035,8 +1053,15 @@ $a->strings["Site Owner"] = "Betreiber der Seite"; $a->strings["Email Address"] = "Email Adresse"; $a->strings["Postal Address"] = "Postalische Anschrift"; $a->strings["The impressum addon needs to be configured!
    Please add at least the owner variable to your config file. For other variables please refer to the README file of the addon."] = "Das Impressums-Plugin muss noch konfiguriert werden.
    Bitte gebe mindestens den Betreiber in der Konfiguration an. Alle weiteren Parameter werden in der README-Datei des Addons erläutert."; +$a->strings["The page operators name."] = "Name des Server-Administrators"; $a->strings["Site Owners Profile"] = "Profil des Seitenbetreibers"; +$a->strings["Profile address of the operator."] = "Profil-Adresse des Server-Administrators"; +$a->strings["How to contact the operator via snail mail."] = "Wie erreicht man den Betreiber der Seite postalisch."; $a->strings["Notes"] = "Hinweise"; +$a->strings["Additional notes that are displayed beneath the contact information."] = "Zusätzliche Angaben, die unterhalb der Kontakt-Informationen angezeigt werden."; +$a->strings["How to contact the operator via email. (will be displayed obfuscated)"] = "Wie erreichts man den Betreiber per Email. (Adresse wird verschleiert dargestellt)"; +$a->strings["Footer note"] = "Fußnote"; +$a->strings["Text for the footer."] = "Text für die Fußnote"; $a->strings["Report Bug"] = "Fehlerreport erstellen"; $a->strings["\"Blockem\" Settings"] = "\"Blockem\"-Einstellungen"; $a->strings["Comma separated profile URLS to block"] = "Profil-URLs, die blockiert werden sollen (durch Kommas getrennt)"; @@ -1056,9 +1081,26 @@ $a->strings["Tile Server URL"] = "Tile Server URL"; $a->strings["A list of public tile servers"] = "Eine Liste öffentlicher Tile Server"; $a->strings["Default zoom"] = "Standard Zoom"; $a->strings["The default zoom level. (1:world, 18:highest)"] = "Standard Zoomlevel (1: Welt; 18: höchstes)"; +$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."] = "Mit dem MathJax Addon können mathematische Formeln, die mit LaTeX geschrieben wurden, dargestellt werden. Die Formel wird mit den üblichen $$ oder einem eqnarray Block gekennzeichnet. Formeln werden in allen Beiträgen auf deiner Pinnwand, dem Netzwerk-Stream sowie privaten Nachrichten gerendert."; +$a->strings["Use the MathJax renderer"] = "MathJax verwenden"; +$a->strings["MathJax Base URL"] = "MathJax Basis-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."] = "Die URL der MathJax Javascript-Datei, die verwendet werden soll. Diese kann entweder aus der MathJax CDN oder einer anderen Quelle stammen."; $a->strings["Editplain settings updated."] = "Editplain Einstellungen aktualisiert"; $a->strings["Editplain Settings"] = "Editplain Einstellungen"; $a->strings["Disable richtext status editor"] = "RichText Editor deaktivieren"; +$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["Default avatar image"] = "Standard Profilbild "; +$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 account on %s will expire in a few days."] = "Dein Konto auf %s wird in ein paar Tagen verfallen."; +$a->strings["Your Friendica test account is about to expire."] = "Dein Friendica Test Konto wird bald verfallen."; +$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"] = "\"pageheader\"-Einstellungen"; $a->strings["pageheader Settings saved."] = "pageheader-Einstellungen gespeichert."; $a->strings["Post to Insanejournal"] = "Auf InsaneJournal posten."; @@ -1141,8 +1183,19 @@ $a->strings["Send public postings to Twitter by default"] = "Veröffentliche öf $a->strings["Send #tag links to Twitter"] = "#Tags nach Twitter senden"; $a->strings["Consumer key"] = "Consumer Key"; $a->strings["Consumer secret"] = "Consumer Secret"; +$a->strings["IRC Settings"] = "IRC Einstellungen"; +$a->strings["Channel(s) to auto connect (comma separated)"] = ""; +$a->strings["Popular Channels (comma separated)"] = ""; +$a->strings["IRC settings saved."] = "IRC Einstellungen gespeichert."; $a->strings["IRC Chatroom"] = "IRC Chatraum"; $a->strings["Popular Channels"] = "Beliebte Räume"; +$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"] = "Nach Posterous senden"; $a->strings["Posterous Post Settings"] = "Posterous Beitrags-Einstellungen"; $a->strings["Enable Posterous Post Plugin"] = "Posterous-Plugin aktivieren"; @@ -1161,7 +1214,7 @@ $a->strings["Help or @NewHere ?"] = "Hilfe oder @NewHere"; $a->strings["Connect Services"] = "Verbinde Dienste"; $a->strings["PostIt to Friendica"] = "Bei Friendica posten"; $a->strings["Post to Friendica"] = "Wenn du diesen Link"; -$a->strings[" from anywhere by bookmarking this Link."] = "zu deinen Lesezeichen hinzufügst, kannst du von überallher Links bei Friendica veröffentlichen."; +$a->strings[" from anywhere by bookmarking this Link."] = " zu deinen Lesezeichen hinzufügst, kannst du von überallher Links bei Friendica veröffentlichen."; $a->strings["Your posts and conversations"] = "Deine Beiträge und Unterhaltungen"; $a->strings["Your profile page"] = "Deine Profilseite"; $a->strings["Your contacts"] = "Deine Kontakte"; @@ -1171,6 +1224,9 @@ $a->strings["Your events"] = "Deine Ereignisse"; $a->strings["Personal notes"] = "Persönliche Notizen"; $a->strings["Your personal photos"] = "Deine privaten Fotos"; $a->strings["Theme settings"] = "Themen Einstellungen"; +$a->strings["Set font-size for posts and comments"] = ""; +$a->strings["Set line-height for posts and comments"] = ""; +$a->strings["Set resolution for middle column"] = ""; $a->strings["Alignment"] = "Ausrichtung"; $a->strings["Left"] = "Links"; $a->strings["Center"] = "Mitte"; @@ -1234,7 +1290,7 @@ $a->strings["No Preference"] = "Keine Vorlieben"; $a->strings["Bisexual"] = "Bisexuell"; $a->strings["Autosexual"] = "Autosexual"; $a->strings["Abstinent"] = "Abstinent"; -$a->strings["Virgin"] = "Jungfrau"; +$a->strings["Virgin"] = "Jungfrauen"; $a->strings["Deviant"] = "Deviant"; $a->strings["Fetish"] = "Fetish"; $a->strings["Oodles"] = "Oodles"; @@ -1243,6 +1299,8 @@ $a->strings["Single"] = "Single"; $a->strings["Lonely"] = "Einsam"; $a->strings["Available"] = "Verfügbar"; $a->strings["Unavailable"] = "Nicht verfügbar"; +$a->strings["Has crush"] = ""; +$a->strings["Infatuated"] = ""; $a->strings["Dating"] = "Dating"; $a->strings["Unfaithful"] = "Untreu"; $a->strings["Sex Addict"] = "Sexbesessen"; @@ -1251,18 +1309,21 @@ $a->strings["Friends/Benefits"] = "Freunde/Zuwendungen"; $a->strings["Casual"] = "Casual"; $a->strings["Engaged"] = "Verlobt"; $a->strings["Married"] = "Verheiratet"; +$a->strings["Imaginarily married"] = ""; $a->strings["Partners"] = "Partner"; $a->strings["Cohabiting"] = "zusammenlebend"; +$a->strings["Common law"] = ""; $a->strings["Happy"] = "Glücklich"; -$a->strings["Not Looking"] = "Nicht auf der Suche"; +$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"] = ""; $a->strings["Widowed"] = "Verwitwet"; $a->strings["Uncertain"] = "Unsicher"; -$a->strings["Complicated"] = "Kompliziert"; +$a->strings["It's complicated"] = "Ist kompliziert"; $a->strings["Don't care"] = "Ist mir nicht wichtig"; $a->strings["Ask me"] = "Frag mich"; $a->strings["Starts:"] = "Beginnt:"; @@ -1304,8 +1365,8 @@ $a->strings["remove"] = "löschen"; $a->strings["[remove]"] = "[löschen]"; $a->strings["Filed under:"] = "Abgelegt unter:"; $a->strings["Click to open/close"] = "Zum öffnen/schließen klicken"; -$a->strings["Select an alternate language"] = "Alternative Sprache auswählen"; $a->strings["default"] = "standard"; +$a->strings["Select an alternate language"] = "Alternative Sprache auswählen"; $a->strings["activity"] = "Aktivität"; $a->strings["comment"] = "Kommentar"; $a->strings["post"] = "Beitrag"; @@ -1322,6 +1383,7 @@ $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"] = ""; $a->strings["Logout"] = "Abmelden"; $a->strings["End this session"] = "Diese Sitzung beenden"; $a->strings["Status"] = "Status"; @@ -1361,6 +1423,7 @@ $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["Saved Folders"] = "Gespeicherte Ordner"; @@ -1438,14 +1501,16 @@ $a->strings["Please visit %s to approve or reject the suggestion."] = "Bitte bes $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["image/photo"] = "Bild/Foto"; +$a->strings["link"] = "Verweis"; $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."] = "Der Formular-Sicherheits-Token war nicht korrekt. Der Grund ist wahrscheinlich, dass das Formular zu lange (>3 Stunden) offen war, bevor es abgeschickt wurde."; -$a->strings["View status"] = "Status anzeigen"; -$a->strings["View profile"] = "Profil anzeigen"; -$a->strings["View photos"] = "Fotos ansehen"; -$a->strings["View recent"] = "Neueste anzeigen"; +$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["View Status"] = "Pinnwand anschauen"; +$a->strings["View Profile"] = "Profil anschauen"; +$a->strings["View Photos"] = "Bilder anschauen"; +$a->strings["Network Posts"] = "Netzwerk Beiträge"; +$a->strings["Edit Contact"] = "Kontakt bearbeiten"; $a->strings["Send PM"] = "Private Nachricht senden"; $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"; @@ -1503,7 +1568,7 @@ $a->strings["Or login using OpenID: "] = "Oder melde dich mit deiner OpenID an: $a->strings["Forgot your password?"] = "Passwort vergessen?"; $a->strings["Edit profile"] = "Profil bearbeiten"; $a->strings["Message"] = "Nachricht"; -$a->strings["g A l F d"] = "l. d, F G \\U\\h\\\\r"; +$a->strings["g A l F d"] = "l, d. F G \\U\\h\\r"; $a->strings["F d"] = "d. F"; $a->strings["Birthday Reminders"] = "Geburtstagserinnerungen"; $a->strings["Birthdays this week:"] = "Geburtstage diese Woche:"; @@ -1511,4 +1576,3 @@ $a->strings["[today]"] = "[heute]"; $a->strings["Event Reminders"] = "Veranstaltungserinnerungen"; $a->strings["Events this week:"] = "Veranstaltungen diese Woche"; $a->strings["[No description]"] = "[keine Beschreibung]"; -$a->strings['Update Error at %s'] = 'Fehler beim Updaten von %s'; diff --git a/view/en/follow_notify_eml.tpl b/view/en/follow_notify_eml.tpl index ae758c9a8..917024b84 100644 --- a/view/en/follow_notify_eml.tpl +++ b/view/en/follow_notify_eml.tpl @@ -1,14 +1,14 @@ -Dear $myname, +Dear $[myname], -You have a new follower at $sitename - '$requestor'. +You have a new follower at $[sitename] - '$[requestor]'. -You may visit their profile at $url. +You may visit their profile at $[url]. Please login to your site to approve or ignore/cancel the request. -$siteurl +$[siteurl] Regards, - $sitename administrator \ No newline at end of file + $[sitename] administrator diff --git a/view/en/friend_complete_eml.tpl b/view/en/friend_complete_eml.tpl index ab12fcb6b..89f578388 100644 --- a/view/en/friend_complete_eml.tpl +++ b/view/en/friend_complete_eml.tpl @@ -1,22 +1,22 @@ -Dear $username, +Dear $[username], - Great news... '$fn' at '$dfrn_url' has accepted -your connection request at '$sitename'. + Great news... '$[fn]' at '$[dfrn_url]' has accepted +your connection request at '$[sitename]'. You are now mutual friends and may exchange status updates, photos, and email without restriction. -Please visit your 'Contacts' page at $sitename if you wish to make +Please visit your 'Contacts' page at $[sitename] if you wish to make any changes to this relationship. -$siteurl +$[siteurl] [For instance, you may create a separate profile with information that is not -available to the general public - and assign viewing rights to '$fn']. +available to the general public - and assign viewing rights to '$[fn]']. Sincerely, - $sitename Administrator + $[sitename] Administrator diff --git a/view/en/intro_complete_eml.tpl b/view/en/intro_complete_eml.tpl index a60745ec5..cd78b2a15 100644 --- a/view/en/intro_complete_eml.tpl +++ b/view/en/intro_complete_eml.tpl @@ -1,22 +1,22 @@ -Dear $username, +Dear $[username], - '$fn' at '$dfrn_url' has accepted -your connection request at '$sitename'. + '$[fn]' at '$[dfrn_url]' has accepted +your connection request at '$[sitename]'. - '$fn' has chosen to accept you a "fan", which restricts + '$[fn]' has chosen to accept you a "fan", which restricts some forms of communication - such as private messaging and some profile interactions. If this is a celebrity or community page, these settings were applied automatically. - '$fn' may choose to extend this into a two-way or more permissive + '$[fn]' may choose to extend this into a two-way or more permissive relationship in the future. - You will start receiving public status updates from '$fn', + You will start receiving public status updates from '$[fn]', which will appear on your 'Network' page at -$siteurl +$[siteurl] Sincerely, - $sitename Administrator + $[sitename] Administrator diff --git a/view/en/lostpass_eml.tpl b/view/en/lostpass_eml.tpl index c350236a4..1330caa12 100644 --- a/view/en/lostpass_eml.tpl +++ b/view/en/lostpass_eml.tpl @@ -1,6 +1,6 @@ -Dear $username, - A request was recently received at $sitename to reset your account +Dear $[username], + A request was recently received at $[sitename] to reset your account password. In order to confirm this request, please select the verification link below or paste it into your web browser address bar. @@ -12,7 +12,7 @@ issued this request. Follow this link to verify your identity: -$reset_link +$[reset_link] You will then receive a follow-up message containing the new password. @@ -20,13 +20,13 @@ You may change that password from your account settings page after logging in. The login details are as follows: -Site Location: $siteurl -Login Name: $email +Site Location: $[siteurl] +Login Name: $[email] Sincerely, - $sitename Administrator + $[sitename] Administrator diff --git a/view/en/passchanged_eml.tpl b/view/en/passchanged_eml.tpl index 9692159e1..e7cc0e2dc 100644 --- a/view/en/passchanged_eml.tpl +++ b/view/en/passchanged_eml.tpl @@ -1,5 +1,5 @@ -Dear $username, +Dear $[username], Your password has been changed as requested. Please retain this information for your records (or change your password immediately to something that you will remember). @@ -7,14 +7,14 @@ something that you will remember). Your login details are as follows: -Site Location: $siteurl -Login Name: $email -Password: $new_password +Site Location: $[siteurl] +Login Name: $[email] +Password: $[new_password] You may change that password from your account settings page after logging in. Sincerely, - $sitename Administrator + $[sitename] Administrator diff --git a/view/en/register_open_eml.tpl b/view/en/register_open_eml.tpl index 221e6ec74..c55ac1e7e 100644 --- a/view/en/register_open_eml.tpl +++ b/view/en/register_open_eml.tpl @@ -1,12 +1,12 @@ -Dear $username, - Thank you for registering at $sitename. Your account has been created. +Dear $[username], + Thank you for registering at $[sitename]. Your account has been created. The login details are as follows: -Site Location: $siteurl -Login Name: $email -Password: $password +Site Location: $[siteurl] +Login Name: $[email] +Password: $[password] You may change your password from your account "Settings" page after logging in. @@ -26,9 +26,9 @@ If you are new and do not know anybody here, they may help you to make some new and interesting friends. -Thank you and welcome to $sitename. +Thank you and welcome to $[sitename]. Sincerely, - $sitename Administrator + $[sitename] Administrator diff --git a/view/en/register_verify_eml.tpl b/view/en/register_verify_eml.tpl index 60c38d800..73980bb5c 100644 --- a/view/en/register_verify_eml.tpl +++ b/view/en/register_verify_eml.tpl @@ -1,25 +1,25 @@ -A new user registration request was received at $sitename which requires +A new user registration request was received at $[sitename] which requires your approval. The login details are as follows: -Full Name: $username -Site Location: $siteurl -Login Name: $email +Full Name: $[username] +Site Location: $[siteurl] +Login Name: $[email] To approve this request please visit the following link: -$siteurl/regmod/allow/$hash +$[siteurl]/regmod/allow/$[hash] To deny the request and remove the account, please visit: -$siteurl/regmod/deny/$hash +$[siteurl]/regmod/deny/$[hash] Thank you. diff --git a/view/en/request_notify_eml.tpl b/view/en/request_notify_eml.tpl index 9eef7a61e..ad118a673 100644 --- a/view/en/request_notify_eml.tpl +++ b/view/en/request_notify_eml.tpl @@ -1,17 +1,17 @@ -Dear $myname, +Dear $[myname], -You have just received a connection request at $sitename +You have just received a connection request at $[sitename] -from '$requestor'. +from '$[requestor]'. -You may visit their profile at $url. +You may visit their profile at $[url]. Please login to your site to view the complete introduction and approve or ignore/cancel the request. -$siteurl +$[siteurl] Regards, - $sitename administrator \ No newline at end of file + $[sitename] administrator diff --git a/view/eo/messages.po b/view/eo/messages.po new file mode 100644 index 000000000..dea7d919d --- /dev/null +++ b/view/eo/messages.po @@ -0,0 +1,6954 @@ +# FRIENDICA Distributed Social Network +# Copyright (C) 2010, 2011 the Friendica Project +# This file is distributed under the same license as the Friendica package. +# +# Translators: +# Diego Souza , 2012. +# Martin Schmitt , 2012. +msgid "" +msgstr "" +"Project-Id-Version: friendica\n" +"Report-Msgid-Bugs-To: http://bugs.friendica.com/\n" +"POT-Creation-Date: 2012-04-16 10:00-0700\n" +"PO-Revision-Date: 2012-04-18 17:16+0000\n" +"Last-Translator: Martin Schmitt \n" +"Language-Team: Esperanto (http://www.transifex.net/projects/p/friendica/language/eo/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: eo\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +#: ../../mod/oexchange.php:25 +msgid "Post successful." +msgstr "Sukcese afiŝita." + +#: ../../mod/update_notes.php:41 ../../mod/update_community.php:18 +#: ../../mod/update_network.php:22 ../../mod/update_profile.php:41 +msgid "[Embedded content - reload page to view]" +msgstr "[Enigita enhavo - reŝargu paĝon por spekti ĝin]" + +#: ../../mod/crepair.php:102 +msgid "Contact settings applied." +msgstr "Kontaktagordoj estas konservita." + +#: ../../mod/crepair.php:104 +msgid "Contact update failed." +msgstr "Ĝisdatigo de kontakto malsukcesis." + +#: ../../mod/crepair.php:115 ../../mod/wall_attach.php:44 +#: ../../mod/fsuggest.php:78 ../../mod/events.php:110 ../../mod/api.php:26 +#: ../../mod/api.php:31 ../../mod/photos.php:130 ../../mod/photos.php:866 +#: ../../mod/editpost.php:10 ../../mod/install.php:171 +#: ../../mod/notifications.php:66 ../../mod/contacts.php:125 +#: ../../mod/settings.php:99 ../../mod/settings.php:514 +#: ../../mod/settings.php:519 ../../mod/manage.php:86 ../../mod/network.php:6 +#: ../../mod/notes.php:20 ../../mod/wallmessage.php:9 +#: ../../mod/wallmessage.php:33 ../../mod/wallmessage.php:79 +#: ../../mod/wallmessage.php:103 ../../mod/attach.php:33 +#: ../../mod/group.php:19 ../../mod/viewcontacts.php:22 +#: ../../mod/register.php:38 ../../mod/regmod.php:116 ../../mod/item.php:124 +#: ../../mod/item.php:140 ../../mod/profile_photo.php:19 +#: ../../mod/profile_photo.php:139 ../../mod/profile_photo.php:150 +#: ../../mod/profile_photo.php:163 ../../mod/message.php:38 +#: ../../mod/message.php:90 ../../mod/allfriends.php:9 +#: ../../mod/nogroup.php:25 ../../mod/wall_upload.php:46 +#: ../../mod/follow.php:8 ../../mod/common.php:9 ../../mod/display.php:138 +#: ../../mod/profiles.php:7 ../../mod/profiles.php:329 +#: ../../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:461 ../../include/items.php:3170 +#: ../../index.php:309 +msgid "Permission denied." +msgstr "Malpermesita." + +#: ../../mod/crepair.php:129 ../../mod/fsuggest.php:20 +#: ../../mod/fsuggest.php:92 ../../mod/dfrn_confirm.php:118 +msgid "Contact not found." +msgstr "Kontakto ne trovita." + +#: ../../mod/crepair.php:135 +msgid "Repair Contact Settings" +msgstr "Ripari kontaktagordoj." + +#: ../../mod/crepair.php:137 +msgid "" +"WARNING: This is highly advanced and if you enter incorrect" +" information your communications with this contact may stop working." +msgstr "AVERTO: Tio estas tre altnivela kaj se vi entajpus malĝustan informojn, komunikado kun la kontakto eble ne plu funkcios." + +#: ../../mod/crepair.php:138 +msgid "" +"Please use your browser 'Back' button now if you are " +"uncertain what to do on this page." +msgstr "Bonvolu klaki 'malantaŭen' en via retesplorilo nun se vi ne scias kion faru ĉi tie." + +#: ../../mod/crepair.php:144 +msgid "Return to contact editor" +msgstr "Reen al kontakta redaktilo" + +#: ../../mod/crepair.php:148 ../../mod/settings.php:534 +#: ../../mod/settings.php:560 ../../mod/admin.php:544 ../../mod/admin.php:553 +msgid "Name" +msgstr "Nomo" + +#: ../../mod/crepair.php:149 +msgid "Account Nickname" +msgstr "Kaŝnomo de la konto" + +#: ../../mod/crepair.php:150 +msgid "@Tagname - overrides Name/Nickname" +msgstr "@Marknomo - Transpasas nomon/kaŝnomon" + +#: ../../mod/crepair.php:151 +msgid "Account URL" +msgstr "Adreso de la konto" + +#: ../../mod/crepair.php:152 +msgid "Friend Request URL" +msgstr "Kontaktpeta adreso" + +#: ../../mod/crepair.php:153 +msgid "Friend Confirm URL" +msgstr "Kontaktkonfirma adreso" + +#: ../../mod/crepair.php:154 +msgid "Notification Endpoint URL" +msgstr "Finpunkta adreso por atentigoj" + +#: ../../mod/crepair.php:155 +msgid "Poll/Feed URL" +msgstr "Adreso de fluo" + +#: ../../mod/crepair.php:156 +msgid "New photo from this URL" +msgstr "Nova bildo el tiu adreso" + +#: ../../mod/crepair.php:166 ../../mod/fsuggest.php:107 +#: ../../mod/events.php:400 ../../mod/photos.php:901 ../../mod/photos.php:959 +#: ../../mod/photos.php:1194 ../../mod/photos.php:1234 +#: ../../mod/photos.php:1274 ../../mod/photos.php:1305 +#: ../../mod/install.php:251 ../../mod/install.php:289 +#: ../../mod/localtime.php:45 ../../mod/contacts.php:325 +#: ../../mod/settings.php:532 ../../mod/settings.php:678 +#: ../../mod/settings.php:739 ../../mod/settings.php:930 +#: ../../mod/manage.php:109 ../../mod/group.php:85 ../../mod/admin.php:374 +#: ../../mod/admin.php:541 ../../mod/admin.php:670 ../../mod/admin.php:850 +#: ../../mod/admin.php:930 ../../mod/profiles.php:498 ../../mod/invite.php:119 +#: ../../addon/facebook/facebook.php:552 ../../addon/yourls/yourls.php:76 +#: ../../addon/ljpost/ljpost.php:93 ../../addon/nsfw/nsfw.php:57 +#: ../../addon/planets/planets.php:158 +#: ../../addon/uhremotestorage/uhremotestorage.php:89 +#: ../../addon/randplace/randplace.php:177 ../../addon/dwpost/dwpost.php:93 +#: ../../addon/drpost/drpost.php:110 ../../addon/geonames/geonames.php:187 +#: ../../addon/oembed.old/oembed.php:41 ../../addon/impressum/impressum.php:80 +#: ../../addon/blockem/blockem.php:57 ../../addon/qcomment/qcomment.php:61 +#: ../../addon/openstreetmap/openstreetmap.php:70 +#: ../../addon/mathjax/mathjax.php:42 ../../addon/editplain/editplain.php:84 +#: ../../addon/blackout/blackout.php:94 ../../addon/gravatar/gravatar.php:86 +#: ../../addon/pageheader/pageheader.php:55 ../../addon/ijpost/ijpost.php:93 +#: ../../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:553 ../../addon/tumblr/tumblr.php:90 +#: ../../addon/numfriends/numfriends.php:85 ../../addon/gnot/gnot.php:88 +#: ../../addon/wppost/wppost.php:102 ../../addon/showmore/showmore.php:48 +#: ../../addon/piwik/piwik.php:89 ../../addon/twitter/twitter.php:180 +#: ../../addon/twitter/twitter.php:209 ../../addon/twitter/twitter.php:375 +#: ../../addon/irc/irc.php:55 ../../addon/blogger/blogger.php:102 +#: ../../addon/posterous/posterous.php:90 +#: ../../view/theme/diabook-red/config.php:64 +#: ../../view/theme/diabook-blue/config.php:64 +#: ../../view/theme/diabook/config.php:76 +#: ../../view/theme/quattro/config.php:52 +#: ../../view/theme/diabook-aerith/config.php:64 +#: ../../include/conversation.php:555 +msgid "Submit" +msgstr "Sendi" + +#: ../../mod/help.php:30 +msgid "Help:" +msgstr "Helpo:" + +#: ../../mod/help.php:34 ../../include/nav.php:86 +msgid "Help" +msgstr "Helpo" + +#: ../../mod/help.php:38 ../../index.php:228 +msgid "Not Found" +msgstr "Ne trovita" + +#: ../../mod/help.php:41 ../../index.php:231 +msgid "Page not found." +msgstr "Paĝo ne trovita" + +#: ../../mod/wall_attach.php:58 +#, php-format +msgid "File exceeds size limit of %d" +msgstr "Dosiero estas pli granda ol la limito de %d" + +#: ../../mod/wall_attach.php:86 ../../mod/wall_attach.php:97 +msgid "File upload failed." +msgstr "Alŝutado malsukcesis." + +#: ../../mod/fsuggest.php:63 +msgid "Friend suggestion sent." +msgstr "Amikosugesto sendita." + +#: ../../mod/fsuggest.php:97 +msgid "Suggest Friends" +msgstr "Sugesti amikojn" + +#: ../../mod/fsuggest.php:99 +#, php-format +msgid "Suggest a friend for %s" +msgstr "Sugesti amikon por %s" + +#: ../../mod/events.php:62 +msgid "Event description and start time are required." +msgstr "Okazo bezonas priskribon kaj startotempon." + +#: ../../mod/events.php:230 +msgid "l, F j" +msgstr "l, F j" + +#: ../../mod/events.php:252 +msgid "Edit event" +msgstr "Redakti okazon" + +#: ../../mod/events.php:272 ../../include/text.php:1053 +msgid "link to source" +msgstr "ligi al fonto" + +#: ../../mod/events.php:296 ../../view/theme/diabook-red/theme.php:243 +#: ../../view/theme/diabook-blue/theme.php:243 +#: ../../view/theme/diabook/theme.php:253 +#: ../../view/theme/diabook-aerith/theme.php:244 ../../include/nav.php:52 +#: ../../boot.php:1471 +msgid "Events" +msgstr "Okazoj" + +#: ../../mod/events.php:297 +msgid "Create New Event" +msgstr "Krei novan okazon" + +#: ../../mod/events.php:298 +msgid "Previous" +msgstr "antaŭa" + +#: ../../mod/events.php:299 ../../mod/install.php:210 +msgid "Next" +msgstr "sekva" + +#: ../../mod/events.php:371 +msgid "hour:minute" +msgstr "horo:minuto" + +#: ../../mod/events.php:380 +msgid "Event details" +msgstr "Detaloj de okazo" + +#: ../../mod/events.php:381 +#, php-format +msgid "Format is %s %s. Starting date and Description are required." +msgstr "Formato estas %s %s. Startotempo kaj priskribo estas bezonataj" + +#: ../../mod/events.php:383 +msgid "Event Starts:" +msgstr "Okazo startas:" + +#: ../../mod/events.php:386 +msgid "Finish date/time is not known or not relevant" +msgstr "Fina dato/tempo ne estas konata aŭ ne bezonata" + +#: ../../mod/events.php:388 +msgid "Event Finishes:" +msgstr "Okazo finas:" + +#: ../../mod/events.php:391 +msgid "Adjust for viewer timezone" +msgstr "Agordi al horzono de la leganto" + +#: ../../mod/events.php:393 +msgid "Description:" +msgstr "Priskribo" + +#: ../../mod/events.php:395 ../../include/event.php:37 +#: ../../include/bb2diaspora.php:260 ../../boot.php:1083 +msgid "Location:" +msgstr "Loko:" + +#: ../../mod/events.php:397 +msgid "Share this event" +msgstr "Kunhavigi la okazon" + +#: ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 +#: ../../mod/dfrn_request.php:752 ../../mod/settings.php:533 +#: ../../mod/settings.php:559 ../../addon/js_upload/js_upload.php:45 +msgid "Cancel" +msgstr "Nuligi" + +#: ../../mod/tagrm.php:41 +msgid "Tag removed" +msgstr "Marko forviŝita" + +#: ../../mod/tagrm.php:79 +msgid "Remove Item Tag" +msgstr "Forviŝi markon" + +#: ../../mod/tagrm.php:81 +msgid "Select a tag to remove: " +msgstr "Elektu forviŝontan markon:" + +#: ../../mod/tagrm.php:93 ../../mod/delegate.php:130 +msgid "Remove" +msgstr "Forviŝi" + +#: ../../mod/dfrn_poll.php:94 ../../mod/dfrn_poll.php:522 +#, php-format +msgid "%s welcomes %s" +msgstr "%s salutas %s" + +#: ../../mod/api.php:76 ../../mod/api.php:102 +msgid "Authorize application connection" +msgstr "Rajtigi programkonekton" + +#: ../../mod/api.php:77 +msgid "Return to your app and insert this Securty Code:" +msgstr "Reiru al via programo kaj entajpu la securecan kodon:" + +#: ../../mod/api.php:89 +msgid "Please login to continue." +msgstr "Bonvolu ensaluti por pluigi." + +#: ../../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 "Ĉu rajtigi ĉi tiun programon por atingi viajn afiŝojn kaj kontaktojn kaj/aŭ krei novajn afiŝojn?" + +#: ../../mod/api.php:105 ../../mod/dfrn_request.php:740 +#: ../../mod/settings.php:844 ../../mod/settings.php:850 +#: ../../mod/settings.php:858 ../../mod/settings.php:862 +#: ../../mod/settings.php:867 ../../mod/settings.php:873 +#: ../../mod/settings.php:879 ../../mod/settings.php:885 +#: ../../mod/settings.php:921 ../../mod/settings.php:922 +#: ../../mod/settings.php:923 ../../mod/settings.php:924 +#: ../../mod/register.php:532 ../../mod/profiles.php:475 +msgid "Yes" +msgstr "Jes" + +#: ../../mod/api.php:106 ../../mod/dfrn_request.php:741 +#: ../../mod/settings.php:844 ../../mod/settings.php:850 +#: ../../mod/settings.php:858 ../../mod/settings.php:862 +#: ../../mod/settings.php:867 ../../mod/settings.php:873 +#: ../../mod/settings.php:879 ../../mod/settings.php:885 +#: ../../mod/settings.php:921 ../../mod/settings.php:922 +#: ../../mod/settings.php:923 ../../mod/settings.php:924 +#: ../../mod/register.php:533 ../../mod/profiles.php:476 +msgid "No" +msgstr "Ne" + +#: ../../mod/photos.php:43 +msgid "Photo Albums" +msgstr "Bildalbumoj" + +#: ../../mod/photos.php:51 ../../mod/photos.php:151 ../../mod/photos.php:880 +#: ../../mod/photos.php:951 ../../mod/photos.php:966 ../../mod/photos.php:1383 +#: ../../mod/photos.php:1395 ../../addon/communityhome/communityhome.php:110 +#: ../../view/theme/diabook-red/theme.php:113 +#: ../../view/theme/diabook-blue/theme.php:113 +#: ../../view/theme/diabook/theme.php:119 +#: ../../view/theme/diabook-aerith/theme.php:114 +msgid "Contact Photos" +msgstr "Kontaktbildoj" + +#: ../../mod/photos.php:58 ../../mod/photos.php:976 ../../mod/photos.php:1425 +msgid "Upload New Photos" +msgstr "Alŝuti novajn bildojn" + +#: ../../mod/photos.php:69 ../../mod/settings.php:20 +msgid "everybody" +msgstr "ĉiuj" + +#: ../../mod/photos.php:140 +msgid "Contact information unavailable" +msgstr "Kontaktoj informoj ne disponeblas" + +#: ../../mod/photos.php:151 ../../mod/photos.php:598 ../../mod/photos.php:951 +#: ../../mod/photos.php:966 ../../mod/register.php:335 +#: ../../mod/register.php:342 ../../mod/register.php:349 +#: ../../mod/profile_photo.php:60 ../../mod/profile_photo.php:67 +#: ../../mod/profile_photo.php:74 ../../mod/profile_photo.php:174 +#: ../../mod/profile_photo.php:252 ../../mod/profile_photo.php:261 +#: ../../addon/communityhome/communityhome.php:111 +#: ../../view/theme/diabook-red/theme.php:114 +#: ../../view/theme/diabook-blue/theme.php:114 +#: ../../view/theme/diabook/theme.php:120 +#: ../../view/theme/diabook-aerith/theme.php:115 +msgid "Profile Photos" +msgstr "Profilbildoj" + +#: ../../mod/photos.php:161 +msgid "Album not found." +msgstr "Albumo ne trovita." + +#: ../../mod/photos.php:179 ../../mod/photos.php:960 +msgid "Delete Album" +msgstr "Forviŝi albumon" + +#: ../../mod/photos.php:242 ../../mod/photos.php:1195 +msgid "Delete Photo" +msgstr "Forviŝi bildon" + +#: ../../mod/photos.php:529 +msgid "was tagged in a" +msgstr "estas markita en" + +#: ../../mod/photos.php:529 ../../mod/like.php:127 ../../mod/tagger.php:70 +#: ../../addon/communityhome/communityhome.php:163 +#: ../../view/theme/diabook-red/theme.php:85 +#: ../../view/theme/diabook-blue/theme.php:85 +#: ../../view/theme/diabook/theme.php:91 +#: ../../view/theme/diabook-aerith/theme.php:86 ../../include/text.php:1304 +#: ../../include/diaspora.php:1654 ../../include/conversation.php:53 +#: ../../include/conversation.php:126 +msgid "photo" +msgstr "bildo" + +#: ../../mod/photos.php:529 +msgid "by" +msgstr "de" + +#: ../../mod/photos.php:632 ../../addon/js_upload/js_upload.php:315 +msgid "Image exceeds size limit of " +msgstr "Bildo estas pli granda ol la limito de" + +#: ../../mod/photos.php:640 +msgid "Image file is empty." +msgstr "Bilddosiero estas malplena." + +#: ../../mod/photos.php:654 ../../mod/profile_photo.php:124 +#: ../../mod/wall_upload.php:69 +msgid "Unable to process image." +msgstr "Ne eblas procedi la bildon." + +#: ../../mod/photos.php:674 ../../mod/profile_photo.php:257 +#: ../../mod/wall_upload.php:88 +msgid "Image upload failed." +msgstr "Alŝuto de bildo malsukcesis." + +#: ../../mod/photos.php:760 ../../mod/community.php:16 +#: ../../mod/dfrn_request.php:671 ../../mod/viewcontacts.php:17 +#: ../../mod/display.php:7 ../../mod/search.php:71 ../../mod/directory.php:29 +msgid "Public access denied." +msgstr "Publika atingo ne permesita." + +#: ../../mod/photos.php:770 +msgid "No photos selected" +msgstr "Neniu bildoj elektita" + +#: ../../mod/photos.php:847 +msgid "Access to this item is restricted." +msgstr "Atingo al tio elemento estas limigita." + +#: ../../mod/photos.php:908 +msgid "Upload Photos" +msgstr "Alŝuti bildojn" + +#: ../../mod/photos.php:911 ../../mod/photos.php:955 +msgid "New album name: " +msgstr "Nomo por nova albumo:" + +#: ../../mod/photos.php:912 +msgid "or existing album name: " +msgstr "aŭ nomo de estanta albumo:" + +#: ../../mod/photos.php:913 +msgid "Do not show a status post for this upload" +msgstr "Ne kreu statan afiŝon por tio alŝuto." + +#: ../../mod/photos.php:915 ../../mod/photos.php:1190 +msgid "Permissions" +msgstr "Permesoj" + +#: ../../mod/photos.php:970 +msgid "Edit Album" +msgstr "Redakti albumon" + +#: ../../mod/photos.php:985 ../../mod/photos.php:1408 +msgid "View Photo" +msgstr "Vidi bildon" + +#: ../../mod/photos.php:1020 +msgid "Permission denied. Access to this item may be restricted." +msgstr "Malpermesita. Atingo al tio elemento eble estas limigita." + +#: ../../mod/photos.php:1022 +msgid "Photo not available" +msgstr "La bildo ne disponeblas" + +#: ../../mod/photos.php:1072 +msgid "View photo" +msgstr "Vidi bildon" + +#: ../../mod/photos.php:1072 +msgid "Edit photo" +msgstr "Redakti bildon" + +#: ../../mod/photos.php:1073 +msgid "Use as profile photo" +msgstr "Uzi kiel profilbildo" + +#: ../../mod/photos.php:1079 ../../include/conversation.php:480 +msgid "Private Message" +msgstr "Privata mesaĝo" + +#: ../../mod/photos.php:1101 +msgid "View Full Size" +msgstr "Vidi plengrande " + +#: ../../mod/photos.php:1169 +msgid "Tags: " +msgstr "Markoj:" + +#: ../../mod/photos.php:1172 +msgid "[Remove any tag]" +msgstr "[Forviŝi iun markon]" + +#: ../../mod/photos.php:1183 +msgid "New album name" +msgstr "Nova nomo de albumo" + +#: ../../mod/photos.php:1186 +msgid "Caption" +msgstr "Apudskribo" + +#: ../../mod/photos.php:1188 +msgid "Add a Tag" +msgstr "Aldoni markon" + +#: ../../mod/photos.php:1192 +msgid "" +"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" +msgstr "Ekzemple: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" + +#: ../../mod/photos.php:1212 ../../include/conversation.php:529 +msgid "I like this (toggle)" +msgstr "Mi ŝatas tion (ŝalti)" + +#: ../../mod/photos.php:1213 ../../include/conversation.php:530 +msgid "I don't like this (toggle)" +msgstr "Mi malŝatas tion(ŝalti)" + +#: ../../mod/photos.php:1214 ../../include/conversation.php:956 +msgid "Share" +msgstr "Kunhavigi" + +#: ../../mod/photos.php:1215 ../../mod/editpost.php:104 +#: ../../mod/wallmessage.php:145 ../../mod/message.php:188 +#: ../../mod/message.php:357 ../../include/conversation.php:362 +#: ../../include/conversation.php:698 ../../include/conversation.php:975 +msgid "Please wait" +msgstr "Bonvolu atendi" + +#: ../../mod/photos.php:1231 ../../mod/photos.php:1271 +#: ../../mod/photos.php:1302 ../../include/conversation.php:552 +msgid "This is you" +msgstr "Tiu estas vi" + +#: ../../mod/photos.php:1233 ../../mod/photos.php:1273 +#: ../../mod/photos.php:1304 ../../include/conversation.php:554 +#: ../../boot.php:495 +msgid "Comment" +msgstr "Komenti" + +#: ../../mod/photos.php:1235 ../../mod/editpost.php:125 +#: ../../include/conversation.php:556 ../../include/conversation.php:993 +msgid "Preview" +msgstr "Antaŭrigardi" + +#: ../../mod/photos.php:1332 ../../mod/settings.php:595 +#: ../../mod/settings.php:676 ../../mod/group.php:168 ../../mod/admin.php:548 +#: ../../include/conversation.php:318 ../../include/conversation.php:576 +msgid "Delete" +msgstr "Forviŝi" + +#: ../../mod/photos.php:1414 +msgid "View Album" +msgstr "Vidi albumon" + +#: ../../mod/photos.php:1423 +msgid "Recent Photos" +msgstr "̂Ĵusaj bildoj" + +#: ../../mod/community.php:21 +msgid "Not available." +msgstr "Ne disponebla." + +#: ../../mod/community.php:30 ../../view/theme/diabook-red/theme.php:245 +#: ../../view/theme/diabook-blue/theme.php:245 +#: ../../view/theme/diabook/theme.php:255 +#: ../../view/theme/diabook-aerith/theme.php:246 ../../include/nav.php:101 +msgid "Community" +msgstr "Komunumo" + +#: ../../mod/community.php:61 ../../mod/search.php:115 +msgid "No results." +msgstr "Nenion trovita." + +#: ../../mod/friendica.php:47 +msgid "This is Friendica, version" +msgstr "Tio estas Friendica en la versio" + +#: ../../mod/friendica.php:48 +msgid "running at web location" +msgstr "instalita ĉe la adreso" + +#: ../../mod/friendica.php:50 +msgid "" +"Please visit Friendica.com to learn " +"more about the Friendica project." +msgstr "Bonvolu iri al Friendica.com por lerni pli pri la projekto Friendica" + +#: ../../mod/friendica.php:52 +msgid "Bug reports and issues: please visit" +msgstr "Cimraportoj kaj atendindaĵo: bonvolu iri al" + +#: ../../mod/friendica.php:53 +msgid "" +"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - " +"dot com" +msgstr "Sugestoj, laŭdoj, donacoj ktp - bonvolu sendi mesĝon al \"Info\" ĉe Friendica - punkto com" + +#: ../../mod/friendica.php:58 +msgid "Installed plugins/addons/apps:" +msgstr "Instalitaj kromprogramoj/programoj:" + +#: ../../mod/friendica.php:71 +msgid "No installed plugins/addons/apps" +msgstr "Neniom da instalitaj aldonaĵoj/programoj" + +#: ../../mod/editpost.php:17 ../../mod/editpost.php:27 +msgid "Item not found" +msgstr "Elemento ne trovita" + +#: ../../mod/editpost.php:36 +msgid "Edit post" +msgstr "Redakti afiŝon" + +#: ../../mod/editpost.php:80 ../../include/conversation.php:942 +msgid "Post to Email" +msgstr "Sendi tra retpoŝto" + +#: ../../mod/editpost.php:95 ../../mod/settings.php:594 +#: ../../include/conversation.php:563 +msgid "Edit" +msgstr "Redakti" + +#: ../../mod/editpost.php:96 ../../mod/wallmessage.php:143 +#: ../../mod/message.php:186 ../../mod/message.php:355 +#: ../../include/conversation.php:957 +msgid "Upload photo" +msgstr "Alŝuti bildon" + +#: ../../mod/editpost.php:97 ../../include/conversation.php:959 +msgid "Attach file" +msgstr "Kunligi dosieron" + +#: ../../mod/editpost.php:98 ../../mod/wallmessage.php:144 +#: ../../mod/message.php:187 ../../mod/message.php:356 +#: ../../include/conversation.php:961 +msgid "Insert web link" +msgstr "Enmeti retan adreson" + +#: ../../mod/editpost.php:99 +msgid "Insert YouTube video" +msgstr "Enmeti videton ĉe YouTube" + +#: ../../mod/editpost.php:100 +msgid "Insert Vorbis [.ogg] video" +msgstr "Enmeti videton en formato Vorbis [.ogg]" + +#: ../../mod/editpost.php:101 +msgid "Insert Vorbis [.ogg] audio" +msgstr "Enmeti sonon en formato Vorbis [.ogg]" + +#: ../../mod/editpost.php:102 ../../include/conversation.php:967 +msgid "Set your location" +msgstr "Agordi vian lokon" + +#: ../../mod/editpost.php:103 ../../include/conversation.php:969 +msgid "Clear browser location" +msgstr "Forviŝu retesplorilan lokon" + +#: ../../mod/editpost.php:105 ../../include/conversation.php:976 +msgid "Permission settings" +msgstr "Permesagordoj" + +#: ../../mod/editpost.php:113 ../../include/conversation.php:985 +msgid "CC: email addresses" +msgstr "CC: retpoŝtadresojn" + +#: ../../mod/editpost.php:114 ../../include/conversation.php:986 +msgid "Public post" +msgstr "Publika afiŝo" + +#: ../../mod/editpost.php:117 ../../include/conversation.php:972 +msgid "Set title" +msgstr "Redakti titolon" + +#: ../../mod/editpost.php:119 ../../include/conversation.php:974 +msgid "Categories (comma-separated list)" +msgstr "Kategorioj (disigita per komo)" + +#: ../../mod/editpost.php:120 ../../include/conversation.php:988 +msgid "Example: bob@example.com, mary@example.com" +msgstr "Ekzemple: bob@example.com, mary@example.com" + +#: ../../mod/dfrn_request.php:93 +msgid "This introduction has already been accepted." +msgstr "Tia prezento jam estas akceptita" + +#: ../../mod/dfrn_request.php:117 ../../mod/dfrn_request.php:427 +msgid "Profile location is not valid or does not contain profile information." +msgstr "La adreso de la profilo ne validas aŭ ne enhavas profilinformojn." + +#: ../../mod/dfrn_request.php:122 ../../mod/dfrn_request.php:432 +msgid "Warning: profile location has no identifiable owner name." +msgstr "Averto: La adreso de la profilo ne enhavas identeblan personan nomon." + +#: ../../mod/dfrn_request.php:124 ../../mod/dfrn_request.php:434 +msgid "Warning: profile location has no profile photo." +msgstr "Averto: La adreso de la profilo ne enhavas bildon." + +#: ../../mod/dfrn_request.php:127 ../../mod/dfrn_request.php:437 +#, 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 bezonataj parametroj ne trovita ĉe la donata adreso." +msgstr[1] "%d bezonataj parametroj ne trovita ĉe la donata adreso." + +#: ../../mod/dfrn_request.php:168 +msgid "Introduction complete." +msgstr "Prezento sukcesis." + +#: ../../mod/dfrn_request.php:192 +msgid "Unrecoverable protocol error." +msgstr "Neĝustigebla eraro en protokolo." + +#: ../../mod/dfrn_request.php:220 +msgid "Profile unavailable." +msgstr "Profilo ne estas disponebla." + +#: ../../mod/dfrn_request.php:245 +#, php-format +msgid "%s has received too many connection requests today." +msgstr "%s hodiaŭ ricevis tro multe da konektpetoj." + +#: ../../mod/dfrn_request.php:246 +msgid "Spam protection measures have been invoked." +msgstr "Kontraŭspamilo estas aktivita." + +#: ../../mod/dfrn_request.php:247 +msgid "Friends are advised to please try again in 24 hours." +msgstr "Amikoj, vi bonvolu ripeti post 24 horoj." + +#: ../../mod/dfrn_request.php:309 +msgid "Invalid locator" +msgstr "Nevalida adreso." + +#: ../../mod/dfrn_request.php:318 +msgid "Invalid email address." +msgstr "Nevalida repoŝtadreso." + +#: ../../mod/dfrn_request.php:344 +msgid "This account has not been configured for email. Request failed." +msgstr "La konto ne estas agordita por retpoŝto. La peto malsukcesis." + +#: ../../mod/dfrn_request.php:372 +msgid "Unable to resolve your name at the provided location." +msgstr "Via nomo ne troveblas al la donita adreso." + +#: ../../mod/dfrn_request.php:385 +msgid "You have already introduced yourself here." +msgstr "Vi vin jam prezentis tie." + +#: ../../mod/dfrn_request.php:389 +#, php-format +msgid "Apparently you are already friends with %s." +msgstr "Ŝajnas kvazaŭ vi jam amikiĝis kun %s." + +#: ../../mod/dfrn_request.php:410 +msgid "Invalid profile URL." +msgstr "Nevalida adreso de profilo." + +#: ../../mod/dfrn_request.php:416 ../../mod/follow.php:20 +msgid "Disallowed profile URL." +msgstr "Malpermesita adreso de profilo." + +#: ../../mod/dfrn_request.php:485 ../../mod/contacts.php:102 +msgid "Failed to update contact record." +msgstr "Ĝisdatigo de via kontaktrikordo malsukcesis." + +#: ../../mod/dfrn_request.php:506 +msgid "Your introduction has been sent." +msgstr "Via prezento estas sendita." + +#: ../../mod/dfrn_request.php:559 +msgid "Please login to confirm introduction." +msgstr "Bonvolu ensaluti por jesigi la prezenton." + +#: ../../mod/dfrn_request.php:573 +msgid "" +"Incorrect identity currently logged in. Please login to " +"this profile." +msgstr "Malĝusta identaĵo ensalutata. Bonvolu ensaluti en tiun profilon." + +#: ../../mod/dfrn_request.php:585 +#, php-format +msgid "Welcome home %s." +msgstr "Bonvenon hejme, %s." + +#: ../../mod/dfrn_request.php:586 +#, php-format +msgid "Please confirm your introduction/connection request to %s." +msgstr "Bonvolu konfirmi vian prezenton / kontaktpeton al %s." + +#: ../../mod/dfrn_request.php:587 +msgid "Confirm" +msgstr "Konfirmi." + +#: ../../mod/dfrn_request.php:628 ../../include/items.php:2690 +msgid "[Name Withheld]" +msgstr "[Kaŝita nomo]" + +#: ../../mod/dfrn_request.php:715 +msgid "" +"Please enter your 'Identity Address' from one of the following supported " +"communications networks:" +msgstr "Bonvolu entajpi vian 'Identecan Adreson' de iu de tiuj subtenataj komunikaj retejoj: " + +#: ../../mod/dfrn_request.php:731 +msgid "Connect as an email follower (Coming soon)" +msgstr "Konektu kiel retpoŝta sekvanto (Baldaŭ venos)" + +#: ../../mod/dfrn_request.php:733 +msgid "" +"If you are not yet a member of the free social web, follow this link to find a public" +" Friendica site and join us today." +msgstr "Se vi ne estas membro de la libra interkona reto, sekvu ĉi-ligilon por trovi publikan Friendica retejon kaj aliĝi kun ni hodiaŭ." + +#: ../../mod/dfrn_request.php:736 +msgid "Friend/Connection Request" +msgstr "Prezento / Konektpeto" + +#: ../../mod/dfrn_request.php:737 +msgid "" +"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, " +"testuser@identi.ca" +msgstr "Ekzemploj: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca" + +#: ../../mod/dfrn_request.php:738 +msgid "Please answer the following:" +msgstr "Bonvolu respondi:" + +#: ../../mod/dfrn_request.php:739 +#, php-format +msgid "Does %s know you?" +msgstr "Ĉu %s konas vin?" + +#: ../../mod/dfrn_request.php:742 +msgid "Add a personal note:" +msgstr "Aldoni personan noton:" + +#: ../../mod/dfrn_request.php:744 ../../include/contact_selectors.php:76 +msgid "Friendica" +msgstr "Friendica" + +#: ../../mod/dfrn_request.php:745 +msgid "StatusNet/Federated Social Web" +msgstr "StatusNet/Federaciaj interkonaj retejoj" + +#: ../../mod/dfrn_request.php:746 ../../mod/settings.php:629 +#: ../../include/contact_selectors.php:80 +msgid "Diaspora" +msgstr "Diaspora" + +#: ../../mod/dfrn_request.php:747 +#, php-format +msgid "" +" - please do not use this form. Instead, enter %s into your Diaspora search" +" bar." +msgstr " - bonvolu ne uzi ĉi formo. Anstataŭe, entajpu %s en la Diaspora serĉilo." + +#: ../../mod/dfrn_request.php:748 +msgid "Your Identity Address:" +msgstr "Via identeca adreso:" + +#: ../../mod/dfrn_request.php:751 +msgid "Submit Request" +msgstr "Sendi peton" + +#: ../../mod/install.php:111 +msgid "Friendica Social Communications Server - Setup" +msgstr "Friendica Interkona Komunikada Servilo - Instalo" + +#: ../../mod/install.php:117 ../../mod/install.php:157 +#: ../../mod/install.php:230 +msgid "Database connection" +msgstr "Datumbaza konekto" + +#: ../../mod/install.php:124 +msgid "Could not connect to database." +msgstr "Ne eblas konekti la datumbazon." + +#: ../../mod/install.php:128 +msgid "Could not create table." +msgstr "Ne eblas krei tabelon." + +#: ../../mod/install.php:133 +msgid "Your Friendica site database has been installed." +msgstr "La datumbazo de vi Friendica retjo estas instalita." + +#: ../../mod/install.php:134 +msgid "" +"IMPORTANT: You will need to [manually] setup a scheduled task for the " +"poller." +msgstr "GRAVA: Vi bezonas [mane] agordi planitan taskon por la Friendica poller." + +#: ../../mod/install.php:135 ../../mod/install.php:151 +#: ../../mod/install.php:209 +msgid "Please see the file \"INSTALL.txt\"." +msgstr "Bonvolu legi la dosieron \"INSTALL.txt\"." + +#: ../../mod/install.php:137 +msgid "Proceed to registration" +msgstr "Pluigi al la registrilo" + +#: ../../mod/install.php:143 +msgid "Proceed with Installation" +msgstr "Pluigi la instalado" + +#: ../../mod/install.php:150 +msgid "" +"You may need to import the file \"database.sql\" manually using phpmyadmin " +"or mysql." +msgstr "Vi bezonas mane importi la dosieron \"database.sql\" tra phpmyadmin aŭ mysql." + +#: ../../mod/install.php:158 +msgid "Database import failed." +msgstr "Importo de la datumbazo malsukcesis." + +#: ../../mod/install.php:206 +msgid "System check" +msgstr "Sistema kontrolo" + +#: ../../mod/install.php:211 +msgid "Check again" +msgstr "Ree kontroli" + +#: ../../mod/install.php:231 +msgid "" +"In order to install Friendica we need to know how to connect to your " +"database." +msgstr "Por instali Friendica, ni bezonas scii kiel konekti al via datumbazo." + +#: ../../mod/install.php:232 +msgid "" +"Please contact your hosting provider or site administrator if you have " +"questions about these settings." +msgstr "Bonvolu kontakti vian servilprovizanton aŭ administranton se vi havas demandoj pri ĉi tiaj agordoj." + +#: ../../mod/install.php:233 +msgid "" +"The database you specify below should already exist. If it does not, please " +"create it before continuing." +msgstr "La datumbazo nomata malsupren jam ekzistu. Se ĝi ne ekzistas, bonvolu unue krei ĝin antaŭ progresi." + +#: ../../mod/install.php:237 +msgid "Database Server Name" +msgstr "Nomo de datumbaza servilo." + +#: ../../mod/install.php:238 +msgid "Database Login Name" +msgstr "Salutnomo ĉe la datumbazo." + +#: ../../mod/install.php:239 +msgid "Database Login Password" +msgstr "Pasvorto ĉe la datumbazo." + +#: ../../mod/install.php:240 +msgid "Database Name" +msgstr "Nomo de la datumbazo." + +#: ../../mod/install.php:241 ../../mod/install.php:280 +msgid "Site administrator email address" +msgstr "Retpoŝtadreso de la reteja administranto" + +#: ../../mod/install.php:241 ../../mod/install.php:280 +msgid "" +"Your account email address must match this in order to use the web admin " +"panel." +msgstr "La repoŝtadreso de via konto bezonas esti la sama por uzi la TTTa administrilo." + +#: ../../mod/install.php:245 ../../mod/install.php:283 +msgid "Please select a default timezone for your website" +msgstr "Bonvolu elekti defaŭltan horzonon por via retejo." + +#: ../../mod/install.php:270 +msgid "Site settings" +msgstr "Retejaj agordoj" + +#: ../../mod/install.php:323 +msgid "Could not find a command line version of PHP in the web server PATH." +msgstr "Komanda linia versio de PHP ne trovita en $PATH de la retservilo." + +#: ../../mod/install.php:326 +msgid "PHP executable path" +msgstr "Vojo de la komanda linia versio de PHP" + +#: ../../mod/install.php:326 +msgid "Enter full path to php executable" +msgstr "Entajpu plenan vojon al la komanda linia versio de PHP" + +#: ../../mod/install.php:331 +msgid "Command line PHP" +msgstr "komanda linia versio de PHP" + +#: ../../mod/install.php:340 +msgid "" +"The command line version of PHP on your system does not have " +"\"register_argc_argv\" enabled." +msgstr "En via komanda linia versio de PHP je via sistemo, \"register_argc_argv\" ne estas aktivita." + +#: ../../mod/install.php:341 +msgid "This is required for message delivery to work." +msgstr "Tio estas bezonata por la livero de mesaĝoj." + +#: ../../mod/install.php:343 +msgid "PHP register_argc_argv" +msgstr "PHP register_argc_argv" + +#: ../../mod/install.php:364 +msgid "" +"Error: the \"openssl_pkey_new\" function on this system is not able to " +"generate encryption keys" +msgstr "Eraro: La funkcio \"openssl_pkey_new\" je tia sistemo ne eblas generi ĉifroŝlosilojn." + +#: ../../mod/install.php:365 +msgid "" +"If running under Windows, please see " +"\"http://www.php.net/manual/en/openssl.installation.php\"." +msgstr "Se la operaciumo sistemo estas Windows, bonvolu legi: http://www.php.net/manual/en/openssl.installation.php" + +#: ../../mod/install.php:367 +msgid "Generate encryption keys" +msgstr "Generi ĉifroŝlosilojn" + +#: ../../mod/install.php:374 +msgid "libCurl PHP module" +msgstr "PHP modulo libCurl" + +#: ../../mod/install.php:375 +msgid "GD graphics PHP module" +msgstr "PHP modulo GD" + +#: ../../mod/install.php:376 +msgid "OpenSSL PHP module" +msgstr "PHP modulo OpenSSL" + +#: ../../mod/install.php:377 +msgid "mysqli PHP module" +msgstr "PHP modulo mysqli" + +#: ../../mod/install.php:378 +msgid "mb_string PHP module" +msgstr "PHP modulo mb_string" + +#: ../../mod/install.php:383 ../../mod/install.php:385 +msgid "Apace mod_rewrite module" +msgstr "Apache modulo mod_rewrite" + +#: ../../mod/install.php:383 +msgid "" +"Error: Apache webserver mod-rewrite module is required but not installed." +msgstr "Eraro: La modulo mod_rewrite en la Apache retservilo estas bezonata sed ne instalita." + +#: ../../mod/install.php:390 +msgid "Error: libCURL PHP module required but not installed." +msgstr "Eraro: La modulo libCURL en PHP estas bezonata sed ne instalita." + +#: ../../mod/install.php:394 +msgid "" +"Error: GD graphics PHP module with JPEG support required but not installed." +msgstr "Eraro: La modulo GD en PHP kun subteno por JPEG estas bezonata sed ne instalita." + +#: ../../mod/install.php:398 +msgid "Error: openssl PHP module required but not installed." +msgstr "Eraro: La modulo OpenSSL en PHP estas bezonata sed ne instalita." + +#: ../../mod/install.php:402 +msgid "Error: mysqli PHP module required but not installed." +msgstr "Eraro: La modulo mysqli en PHP estas bezonata sed ne instalita." + +#: ../../mod/install.php:406 +msgid "Error: mb_string PHP module required but not installed." +msgstr "Eraro: La modulo mb_string en PHP estas bezonata sed ne instalita." + +#: ../../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 "La reta instalilo bezonas skribi dosieron nomata \".htconfig.php\" en la baza dosierujo de la retservilo, sed ne sukcesis." + +#: ../../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 "Tio ĉi plej ofte estas agordo rilate al permesoj, ĉar la servilo eble ne povas skribi en via dosierujo, eĉ se vi mem povas skribi." + +#: ../../mod/install.php:425 +msgid "" +"Please check with your site documentation or support people to see if this " +"situation can be corrected." +msgstr "Bonvolu kontroli la dokumentojn de via servilo aŭ teĥnikiston por ekscii ĉu la situacio ĝustigeblas." + +#: ../../mod/install.php:426 +msgid "" +"If not, you may be required to perform a manual installation. Please see the" +" file \"INSTALL.txt\" for instructions." +msgstr "Se ne, vi eble bezonas instali mane. Bonvolu legi la dosieron \"INSTALL.txt\" por pluaj instruaĵoj." + +#: ../../mod/install.php:429 +msgid ".htconfig.php is writable" +msgstr ".htconfig.php estas skribebla." + +#: ../../mod/install.php:436 +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 "Ne povis skribi la datumbaza agordoj en la dosiero \".htconfig.php\". Bonvolu uzi la inkluzivan tekston por krei agordan dosieron en la baza dosierujo de la retservilo." + +#: ../../mod/install.php:461 +msgid "Errors encountered creating database tables." +msgstr "Okazis eraroj dum la kreado de tabeloj en la datumbazo." + +#: ../../mod/localtime.php:12 ../../include/event.php:11 +#: ../../include/bb2diaspora.php:238 +msgid "l F d, Y \\@ g:i A" +msgstr "l F d, Y \\@ g:i A" + +#: ../../mod/localtime.php:24 +msgid "Time Conversion" +msgstr "Konverto de tempo" + +#: ../../mod/localtime.php:26 +msgid "" +"Friendika provides this service for sharing events with other networks and " +"friends in unknown timezones." +msgstr "Friendica provizas tiun servon por kunhavigi okazojn kun aliaj retoj kaj amikoj en aliaj horzonoj." + +#: ../../mod/localtime.php:30 +#, php-format +msgid "UTC time: %s" +msgstr "UTC horo: %s" + +#: ../../mod/localtime.php:33 +#, php-format +msgid "Current timezone: %s" +msgstr "Aktuala horzono: %s" + +#: ../../mod/localtime.php:36 +#, php-format +msgid "Converted localtime: %s" +msgstr "Konvertita loka horo: %s" + +#: ../../mod/localtime.php:41 +msgid "Please select your timezone:" +msgstr "Bonvolu elekti vian horzonon:" + +#: ../../mod/match.php:12 +msgid "Profile Match" +msgstr "Kongrua profilo" + +#: ../../mod/match.php:20 +msgid "No keywords to match. Please add keywords to your default profile." +msgstr "Neniom da kategoriaj vortoj kongruas. Bonvolu aldoni kategoriajn vortojn al via defaŭlta profilo." + +#: ../../mod/match.php:57 +msgid "is interested in:" +msgstr "interesiĝas pri:" + +#: ../../mod/match.php:58 ../../mod/suggest.php:59 +#: ../../include/contact_widgets.php:9 ../../boot.php:1027 +msgid "Connect" +msgstr "Konekti" + +#: ../../mod/match.php:65 ../../mod/dirfind.php:57 +msgid "No matches" +msgstr "Nenio estas trovita" + +#: ../../mod/lockview.php:39 +msgid "Remote privacy information not available." +msgstr "Informoj pri fora privateca ne estas disponebla." + +#: ../../mod/lockview.php:43 +msgid "Visible to:" +msgstr "Videbla al:" + +#: ../../mod/home.php:26 ../../addon/communityhome/communityhome.php:179 +#, php-format +msgid "Welcome to %s" +msgstr "Bonvenon ĉe %s" + +#: ../../mod/notifications.php:26 +msgid "Invalid request identifier." +msgstr "Nevalida peta identigilo." + +#: ../../mod/notifications.php:35 ../../mod/notifications.php:161 +#: ../../mod/notifications.php:207 +msgid "Discard" +msgstr "Forviŝi" + +#: ../../mod/notifications.php:51 ../../mod/notifications.php:160 +#: ../../mod/notifications.php:206 ../../mod/contacts.php:308 +#: ../../mod/contacts.php:351 +msgid "Ignore" +msgstr "Ignori" + +#: ../../mod/notifications.php:75 +msgid "System" +msgstr "Sistemo" + +#: ../../mod/notifications.php:80 ../../include/nav.php:113 +msgid "Network" +msgstr "Reto" + +#: ../../mod/notifications.php:85 ../../mod/network.php:182 +msgid "Personal" +msgstr "Propra" + +#: ../../mod/notifications.php:90 ../../view/theme/diabook-red/theme.php:239 +#: ../../view/theme/diabook-blue/theme.php:239 +#: ../../view/theme/diabook/theme.php:249 +#: ../../view/theme/diabook-aerith/theme.php:240 ../../include/nav.php:77 +#: ../../include/nav.php:115 +msgid "Home" +msgstr "Hejmo" + +#: ../../mod/notifications.php:95 ../../include/nav.php:121 +msgid "Introductions" +msgstr "Prezentoj" + +#: ../../mod/notifications.php:100 ../../mod/message.php:102 +#: ../../include/nav.php:128 +msgid "Messages" +msgstr "Mesaĝoj" + +#: ../../mod/notifications.php:119 +msgid "Show Ignored Requests" +msgstr "Montri ignoritajn petojn" + +#: ../../mod/notifications.php:119 +msgid "Hide Ignored Requests" +msgstr "Kaŝi ignoritajn petojn" + +#: ../../mod/notifications.php:145 ../../mod/notifications.php:191 +msgid "Notification type: " +msgstr "Tipo de atentigo:" + +#: ../../mod/notifications.php:146 +msgid "Friend Suggestion" +msgstr "Amikosugestoj" + +#: ../../mod/notifications.php:148 +#, php-format +msgid "suggested by %s" +msgstr "sugestita de %s" + +#: ../../mod/notifications.php:153 ../../mod/notifications.php:200 +#: ../../mod/contacts.php:356 +msgid "Hide this contact from others" +msgstr "Kaŝi ĉi tiun kontakton al aliaj" + +#: ../../mod/notifications.php:154 ../../mod/notifications.php:201 +msgid "Post a new friend activity" +msgstr "Afiŝi novan amikecan aktivecon" + +#: ../../mod/notifications.php:154 ../../mod/notifications.php:201 +msgid "if applicable" +msgstr "se aplikebla" + +#: ../../mod/notifications.php:157 ../../mod/notifications.php:204 +#: ../../mod/admin.php:546 +msgid "Approve" +msgstr "Aprobi" + +#: ../../mod/notifications.php:177 +msgid "Claims to be known to you: " +msgstr "Pensas ke vi konas ilin:" + +#: ../../mod/notifications.php:177 +msgid "yes" +msgstr "jes" + +#: ../../mod/notifications.php:177 +msgid "no" +msgstr "ne" + +#: ../../mod/notifications.php:184 +msgid "Approve as: " +msgstr "Aprobi kiel:" + +#: ../../mod/notifications.php:185 +msgid "Friend" +msgstr "Amiko" + +#: ../../mod/notifications.php:186 +msgid "Sharer" +msgstr "Kunhaviganto" + +#: ../../mod/notifications.php:186 +msgid "Fan/Admirer" +msgstr "Fanatikulo/Admiranto" + +#: ../../mod/notifications.php:192 +msgid "Friend/Connect Request" +msgstr "Kontaktpeto" + +#: ../../mod/notifications.php:192 +msgid "New Follower" +msgstr "Nova abonanto" + +#: ../../mod/notifications.php:213 +msgid "No introductions." +msgstr "Neniom da prezentoj" + +#: ../../mod/notifications.php:216 ../../include/nav.php:122 +msgid "Notifications" +msgstr "Atentigoj" + +#: ../../mod/notifications.php:253 ../../mod/notifications.php:378 +#: ../../mod/notifications.php:465 +#, php-format +msgid "%s liked %s's post" +msgstr "%s ŝatis la afiŝon de %s" + +#: ../../mod/notifications.php:262 ../../mod/notifications.php:387 +#: ../../mod/notifications.php:474 +#, php-format +msgid "%s disliked %s's post" +msgstr "%s malŝatis la afiŝon de %s" + +#: ../../mod/notifications.php:276 ../../mod/notifications.php:401 +#: ../../mod/notifications.php:488 +#, php-format +msgid "%s is now friends with %s" +msgstr "%s amikiĝis kun %s" + +#: ../../mod/notifications.php:283 ../../mod/notifications.php:408 +#, php-format +msgid "%s created a new post" +msgstr "%s kreis novan afiŝon" + +#: ../../mod/notifications.php:284 ../../mod/notifications.php:409 +#: ../../mod/notifications.php:497 +#, php-format +msgid "%s commented on %s's post" +msgstr "%s komentis pri la afiŝo de %s" + +#: ../../mod/notifications.php:298 +msgid "No more network notifications." +msgstr "Ne pli da retaj atentigoj." + +#: ../../mod/notifications.php:302 +msgid "Network Notifications" +msgstr "Retaj Atentigoj" + +#: ../../mod/notifications.php:328 ../../mod/notify.php:61 +msgid "No more system notifications." +msgstr "Ne pli da sistemaj atentigoj." + +#: ../../mod/notifications.php:332 ../../mod/notify.php:65 +msgid "System Notifications" +msgstr "Sistemaj Atentigoj" + +#: ../../mod/notifications.php:423 +msgid "No more personal notifications." +msgstr "Ne pli da personaj atentigoj" + +#: ../../mod/notifications.php:427 +msgid "Personal Notifications" +msgstr "Personaj Atentigoj" + +#: ../../mod/notifications.php:504 +msgid "No more home notifications." +msgstr "Ne pli da hejmrilataj atentigoj." + +#: ../../mod/notifications.php:508 +msgid "Home Notifications" +msgstr "Hejmrilataj atentigoj" + +#: ../../mod/contacts.php:63 ../../mod/contacts.php:143 +msgid "Could not access contact record." +msgstr "Ne eblis atingi kontaktrikordo." + +#: ../../mod/contacts.php:77 +msgid "Could not locate selected profile." +msgstr "Ne trovis elektitan profilon." + +#: ../../mod/contacts.php:100 +msgid "Contact updated." +msgstr "Kontakto estas ĝisdatigita." + +#: ../../mod/contacts.php:165 +msgid "Contact has been blocked" +msgstr "Kontakto estas blokita." + +#: ../../mod/contacts.php:165 +msgid "Contact has been unblocked" +msgstr "Kontakto estas malblokita." + +#: ../../mod/contacts.php:179 +msgid "Contact has been ignored" +msgstr "Kontakto estas ignorita." + +#: ../../mod/contacts.php:179 +msgid "Contact has been unignored" +msgstr "Kontakto estas malignorita." + +#: ../../mod/contacts.php:200 +msgid "stopped following" +msgstr "ne plu sekvas" + +#: ../../mod/contacts.php:221 +msgid "Contact has been removed." +msgstr "Kontakto estas forigita." + +#: ../../mod/contacts.php:251 +#, php-format +msgid "You are mutual friends with %s" +msgstr "Vi estas reciproka amiko de %s" + +#: ../../mod/contacts.php:255 +#, php-format +msgid "You are sharing with %s" +msgstr "Vi kunhavigas kun %s" + +#: ../../mod/contacts.php:260 +#, php-format +msgid "%s is sharing with you" +msgstr "%s kunhavigas kun vi" + +#: ../../mod/contacts.php:277 +msgid "Private communications are not available for this contact." +msgstr "Privataj komunikadoj ne disponeblas por ĉi tiu kontakto." + +#: ../../mod/contacts.php:280 +msgid "Never" +msgstr "Neniam" + +#: ../../mod/contacts.php:284 +msgid "(Update was successful)" +msgstr "(Ĝisdatigo sukcesis.)" + +#: ../../mod/contacts.php:284 +msgid "(Update was not successful)" +msgstr "(Ĝisdatigo malsukcesis.)" + +#: ../../mod/contacts.php:286 +msgid "Suggest friends" +msgstr "Sugesti amikojn" + +#: ../../mod/contacts.php:290 +#, php-format +msgid "Network type: %s" +msgstr "Reta tipo: %s" + +#: ../../mod/contacts.php:293 +#, php-format +msgid "%d contact in common" +msgid_plural "%d contacts in common" +msgstr[0] "%d komuna kontakto" +msgstr[1] "%d komunaj kontaktoj" + +#: ../../mod/contacts.php:298 +msgid "View all contacts" +msgstr "Vidi ĉiujn kontaktojn" + +#: ../../mod/contacts.php:303 ../../mod/contacts.php:350 +#: ../../mod/admin.php:550 +msgid "Unblock" +msgstr "Malbloki" + +#: ../../mod/contacts.php:303 ../../mod/contacts.php:350 +#: ../../mod/admin.php:549 +msgid "Block" +msgstr "Bloki" + +#: ../../mod/contacts.php:308 ../../mod/contacts.php:351 +msgid "Unignore" +msgstr "Malignori" + +#: ../../mod/contacts.php:313 +msgid "Repair" +msgstr "Ripari" + +#: ../../mod/contacts.php:323 +msgid "Contact Editor" +msgstr "Kontakta redaktilo." + +#: ../../mod/contacts.php:326 +msgid "Profile Visibility" +msgstr "Videbleco de profilo" + +#: ../../mod/contacts.php:327 +#, php-format +msgid "" +"Please choose the profile you would like to display to %s when viewing your " +"profile securely." +msgstr "Bonvolu elekti la profilon kiu vi volas montri al %s aspektinde kiam sekure aspektante vian profilon." + +#: ../../mod/contacts.php:328 +msgid "Contact Information / Notes" +msgstr "Kontaktaj informoj / Notoj" + +#: ../../mod/contacts.php:329 +msgid "Edit contact notes" +msgstr "Redakti kontaktnotojn" + +#: ../../mod/contacts.php:334 ../../mod/contacts.php:507 +#: ../../mod/viewcontacts.php:62 ../../mod/nogroup.php:40 +#, php-format +msgid "Visit %s's profile [%s]" +msgstr "Viziti la profilon de %s [%s]" + +#: ../../mod/contacts.php:335 +msgid "Block/Unblock contact" +msgstr "Bloki/Malbloki kontakton" + +#: ../../mod/contacts.php:336 +msgid "Ignore contact" +msgstr "Ignori kontakton" + +#: ../../mod/contacts.php:337 +msgid "Repair URL settings" +msgstr "Ripari URL agordoj" + +#: ../../mod/contacts.php:338 +msgid "View conversations" +msgstr "Vidi konversaciojn" + +#: ../../mod/contacts.php:340 +msgid "Delete contact" +msgstr "Forviŝi kontakton" + +#: ../../mod/contacts.php:344 +msgid "Last update:" +msgstr "Plej ĵusa ĝisdatigo:" + +#: ../../mod/contacts.php:345 +msgid "Update public posts" +msgstr "Ĝisdatigi publikajn afiŝojn" + +#: ../../mod/contacts.php:347 ../../mod/admin.php:979 +msgid "Update now" +msgstr "Ĝisdatigi nun" + +#: ../../mod/contacts.php:354 +msgid "Currently blocked" +msgstr "Nuntempe blokata" + +#: ../../mod/contacts.php:355 +msgid "Currently ignored" +msgstr "Nuntempe ignorata" + +#: ../../mod/contacts.php:356 +msgid "" +"Replies/likes to your public posts may still be visible" +msgstr "Rispondoj/ŝataĵo al viaj publikaj afiŝoj eble plu estos videbla" + +#: ../../mod/contacts.php:405 +msgid "Suggestions" +msgstr "Sugestoj" + +#: ../../mod/contacts.php:410 ../../mod/group.php:191 +msgid "All Contacts" +msgstr "Ĉiuj Kontaktoj" + +#: ../../mod/contacts.php:415 +msgid "Unblocked Contacts" +msgstr "Malblokitaj Kontaktoj" + +#: ../../mod/contacts.php:421 +msgid "Blocked Contacts" +msgstr "Blokitaj Kontaktoj" + +#: ../../mod/contacts.php:427 +msgid "Ignored Contacts" +msgstr "Ignoritaj Kontaktoj" + +#: ../../mod/contacts.php:433 +msgid "Hidden Contacts" +msgstr "Kaŝitaj Kontaktoj" + +#: ../../mod/contacts.php:483 +msgid "Mutual Friendship" +msgstr "Reciproka amikeco" + +#: ../../mod/contacts.php:487 +msgid "is a fan of yours" +msgstr "estas admiranto de vi" + +#: ../../mod/contacts.php:491 +msgid "you are a fan of" +msgstr "vi estas admiranto de" + +#: ../../mod/contacts.php:508 ../../mod/nogroup.php:41 +msgid "Edit contact" +msgstr "Redakti kontakton" + +#: ../../mod/contacts.php:529 ../../view/theme/diabook-red/theme.php:241 +#: ../../view/theme/diabook-blue/theme.php:241 +#: ../../view/theme/diabook/theme.php:251 +#: ../../view/theme/diabook-aerith/theme.php:242 ../../include/nav.php:139 +msgid "Contacts" +msgstr "Kontaktoj" + +#: ../../mod/contacts.php:533 +msgid "Search your contacts" +msgstr "Serĉi viajn kontaktojn" + +#: ../../mod/contacts.php:534 ../../mod/directory.php:57 +msgid "Finding: " +msgstr "Trovata:" + +#: ../../mod/contacts.php:535 ../../mod/directory.php:59 +#: ../../include/contact_widgets.php:33 +msgid "Find" +msgstr "Trovi" + +#: ../../mod/lostpass.php:16 +msgid "No valid account found." +msgstr "Ne trovis validan konton." + +#: ../../mod/lostpass.php:32 +msgid "Password reset request issued. Check your email." +msgstr "Eldonis riparadon de pasvorto. Legu vian retpoŝton." + +#: ../../mod/lostpass.php:43 +#, php-format +msgid "Password reset requested at %s" +msgstr "Pasvorta riparado petita je %s" + +#: ../../mod/lostpass.php:45 ../../mod/lostpass.php:107 +#: ../../mod/register.php:388 ../../mod/register.php:442 +#: ../../mod/regmod.php:54 ../../mod/dfrn_confirm.php:732 +#: ../../addon/facebook/facebook.php:625 +#: ../../addon/facebook/facebook.php:1090 +#: ../../addon/testdrive/testdrive.php:58 ../../include/items.php:2699 +msgid "Administrator" +msgstr "Administranto" + +#: ../../mod/lostpass.php:65 +msgid "" +"Request could not be verified. (You may have previously submitted it.) " +"Password reset failed." +msgstr "Ne povis konfirmi la peton. (Eble vi sendis ĝin antaŭ.) Pasvorta riparado malsukcesis." + +#: ../../mod/lostpass.php:83 ../../boot.php:809 +msgid "Password Reset" +msgstr "Pasvorta riparado" + +#: ../../mod/lostpass.php:84 +msgid "Your password has been reset as requested." +msgstr "Via pasvorto estis riparita laŭ via peto." + +#: ../../mod/lostpass.php:85 +msgid "Your new password is" +msgstr "Via nova pasvorto estas" + +#: ../../mod/lostpass.php:86 +msgid "Save or copy your new password - and then" +msgstr "Memorigi vian novan pasvorton - kaj poste" + +#: ../../mod/lostpass.php:87 +msgid "click here to login" +msgstr "klaku ĉi tie por ensaluti" + +#: ../../mod/lostpass.php:88 +msgid "" +"Your password may be changed from the Settings page after " +"successful login." +msgstr "Vi povas ŝangi vian pasvorton sur la paĝo agordoj kiam vi sukcese ensalutis." + +#: ../../mod/lostpass.php:119 +msgid "Forgot your Password?" +msgstr "Ĉu vi forgesis vian pasvorton?" + +#: ../../mod/lostpass.php:120 +msgid "" +"Enter your email address and submit to have your password reset. Then check " +"your email for further instructions." +msgstr "Entajpu vian retpoŝtadreson kaj sendu por pasvorta riparado. Poste, bonvolu legi vian retpoŝton por trovi pliajn instrukciojn." + +#: ../../mod/lostpass.php:121 +msgid "Nickname or Email: " +msgstr "Salutnomo aŭ retpoŝtadreso: " + +#: ../../mod/lostpass.php:122 +msgid "Reset" +msgstr "Repari" + +#: ../../mod/settings.php:49 ../../include/nav.php:137 +msgid "Account settings" +msgstr "Kontoagordoj" + +#: ../../mod/settings.php:54 +msgid "Display settings" +msgstr "Ekranagordoj" + +#: ../../mod/settings.php:60 +msgid "Connector settings" +msgstr "Konektiloagordoj" + +#: ../../mod/settings.php:65 +msgid "Plugin settings" +msgstr "Agordoj pri kromprogramoj" + +#: ../../mod/settings.php:70 +msgid "Connected apps" +msgstr "Konektitaj programoj" + +#: ../../mod/settings.php:75 +msgid "Export personal data" +msgstr "Eksporti personan datumaron" + +#: ../../mod/settings.php:83 ../../mod/admin.php:631 ../../mod/admin.php:817 +#: ../../addon/mathjax/mathjax.php:36 ../../include/nav.php:137 +msgid "Settings" +msgstr "Agordoj" + +#: ../../mod/settings.php:126 +msgid "Missing some important data!" +msgstr "Mankas importantaj datumoj!" + +#: ../../mod/settings.php:129 ../../mod/settings.php:558 +#: ../../mod/admin.php:89 +msgid "Update" +msgstr "Ĝisdatigi" + +#: ../../mod/settings.php:234 +msgid "Failed to connect with email account using the settings provided." +msgstr "Ne sukcesis konekti al retpoŝtkonto kun la provizitaj agordoj." + +#: ../../mod/settings.php:239 +msgid "Email settings updated." +msgstr "Retpoŝtagordoj ĝisdatigita" + +#: ../../mod/settings.php:298 +msgid "Passwords do not match. Password unchanged." +msgstr "La pasvortoj ne estas egala. Pasvorto ne ŝanĝita." + +#: ../../mod/settings.php:303 +msgid "Empty passwords are not allowed. Password unchanged." +msgstr "Malplenaj pasvortoj ne estas permesita. Pasvorto ne ŝanĝita." + +#: ../../mod/settings.php:314 +msgid "Password changed." +msgstr "Pasvorto ŝanĝita." + +#: ../../mod/settings.php:316 +msgid "Password update failed. Please try again." +msgstr "Ĝisdatigo de pasvorto malsukcesis. Bonvolu provi refoje." + +#: ../../mod/settings.php:379 +msgid " Please use a shorter name." +msgstr " Bonvolu uzi pli mallongan nomon." + +#: ../../mod/settings.php:381 +msgid " Name too short." +msgstr " Nomo estas tro mallonga." + +#: ../../mod/settings.php:387 +msgid " Not valid email." +msgstr " Repoŝtadreso ne validas." + +#: ../../mod/settings.php:389 +msgid " Cannot change to that email." +msgstr " Ne povas ŝanĝi al tio retpoŝtadreso." + +#: ../../mod/settings.php:461 ../../addon/facebook/facebook.php:450 +#: ../../addon/impressum/impressum.php:75 +#: ../../addon/openstreetmap/openstreetmap.php:80 +#: ../../addon/mathjax/mathjax.php:64 ../../addon/piwik/piwik.php:105 +#: ../../addon/twitter/twitter.php:370 +msgid "Settings updated." +msgstr "Agordoj ĝisdatigita." + +#: ../../mod/settings.php:531 ../../mod/settings.php:557 +#: ../../mod/settings.php:593 +msgid "Add application" +msgstr "Aldoni programon" + +#: ../../mod/settings.php:535 ../../mod/settings.php:561 +#: ../../addon/statusnet/statusnet.php:547 +msgid "Consumer Key" +msgstr "Ŝlosilo de kliento" + +#: ../../mod/settings.php:536 ../../mod/settings.php:562 +#: ../../addon/statusnet/statusnet.php:546 +msgid "Consumer Secret" +msgstr "Sekreto de kliento" + +#: ../../mod/settings.php:537 ../../mod/settings.php:563 +msgid "Redirect" +msgstr "Alidirekto" + +#: ../../mod/settings.php:538 ../../mod/settings.php:564 +msgid "Icon url" +msgstr "Piktograma adreso" + +#: ../../mod/settings.php:549 +msgid "You can't edit this application." +msgstr "Ĉi tio programo ne estas redaktebla." + +#: ../../mod/settings.php:592 +msgid "Connected Apps" +msgstr "Konektitaj Programoj" + +#: ../../mod/settings.php:596 +msgid "Client key starts with" +msgstr "Ŝlosilo de kliento komencas kun" + +#: ../../mod/settings.php:597 +msgid "No name" +msgstr "Neniu nomo" + +#: ../../mod/settings.php:598 +msgid "Remove authorization" +msgstr "Forviŝi rajtigon" + +#: ../../mod/settings.php:609 +msgid "No Plugin settings configured" +msgstr "Neniom da kromprogramoagordoj farita" + +#: ../../mod/settings.php:617 ../../addon/widgets/widgets.php:123 +msgid "Plugin Settings" +msgstr "Kromprogramoagordoj" + +#: ../../mod/settings.php:629 ../../mod/settings.php:630 +#, php-format +msgid "Built-in support for %s connectivity is %s" +msgstr "Integrita subteno por %s koneto estas %s" + +#: ../../mod/settings.php:629 ../../mod/settings.php:630 +msgid "enabled" +msgstr "ŝaltita" + +#: ../../mod/settings.php:629 ../../mod/settings.php:630 +msgid "disabled" +msgstr "malŝaltita" + +#: ../../mod/settings.php:630 +msgid "StatusNet" +msgstr "StatusNet" + +#: ../../mod/settings.php:660 +msgid "Connector Settings" +msgstr "Konektiloagordoj" + +#: ../../mod/settings.php:665 +msgid "Email/Mailbox Setup" +msgstr "Agordoj pri Retpoŝto" + +#: ../../mod/settings.php:666 +msgid "" +"If you wish to communicate with email contacts using this service " +"(optional), please specify how to connect to your mailbox." +msgstr "Se vi volas uzi ĉi tiun servon por komuniki tra retpoŝto (nedeviga), bonvolu specifi kiel konekti al vian retpoŝtkonton." + +#: ../../mod/settings.php:667 +msgid "Last successful email check:" +msgstr "Plej ĵusa sukcesa kontrolo de poŝto:" + +#: ../../mod/settings.php:668 +msgid "Email access is disabled on this site." +msgstr "Retpoŝta atingo ne disponeblas ĉi tie." + +#: ../../mod/settings.php:669 +msgid "IMAP server name:" +msgstr "Nomo de IMAP servilo:" + +#: ../../mod/settings.php:670 +msgid "IMAP port:" +msgstr "Numero de IMAP pordo:" + +#: ../../mod/settings.php:671 +msgid "Security:" +msgstr "Sekureco:" + +#: ../../mod/settings.php:671 ../../mod/settings.php:676 +msgid "None" +msgstr "Nenio" + +#: ../../mod/settings.php:672 +msgid "Email login name:" +msgstr "Retpoŝta salutnomo:" + +#: ../../mod/settings.php:673 +msgid "Email password:" +msgstr "Retpoŝta pasvorto:" + +#: ../../mod/settings.php:674 +msgid "Reply-to address:" +msgstr "Responda adreso (Reply-to):" + +#: ../../mod/settings.php:675 +msgid "Send public posts to all email contacts:" +msgstr "Sendu publikajn afiŝojn al ĉiuj retpoŝtkontaktoj:" + +#: ../../mod/settings.php:676 +msgid "Action after import:" +msgstr "Ago post la importado:" + +#: ../../mod/settings.php:676 +msgid "Mark as seen" +msgstr "Marki kiel legita" + +#: ../../mod/settings.php:676 +msgid "Move to folder" +msgstr "Movi al dosierujo" + +#: ../../mod/settings.php:677 +msgid "Move to folder:" +msgstr "Movi al dosierujo:" + +#: ../../mod/settings.php:737 +msgid "Display Settings" +msgstr "Ekranagordoj" + +#: ../../mod/settings.php:743 +msgid "Display Theme:" +msgstr "Vidiga etoso:" + +#: ../../mod/settings.php:744 +msgid "Update browser every xx seconds" +msgstr "Ĝisdatigu retesplorilon ĉiu xxx sekundoj" + +#: ../../mod/settings.php:744 +msgid "Minimum of 10 seconds, no maximum" +msgstr "Minimume 10 sekundoj, sen maksimumo" + +#: ../../mod/settings.php:745 +msgid "Number of items to display on the network page:" +msgstr "Kvanto da elementoj kiuj estos montrata ĉe la reto paĝo." + +#: ../../mod/settings.php:745 +msgid "Maximum of 100 items" +msgstr "Maksimume 100 eroj" + +#: ../../mod/settings.php:746 +msgid "Don't show emoticons" +msgstr "Ne montru ridetulojn." + +#: ../../mod/settings.php:811 ../../mod/admin.php:162 ../../mod/admin.php:522 +msgid "Normal Account" +msgstr "Normala konto" + +#: ../../mod/settings.php:812 +msgid "This account is a normal personal profile" +msgstr "Tiu konto estas normala persona profilo" + +#: ../../mod/settings.php:815 ../../mod/admin.php:163 ../../mod/admin.php:523 +msgid "Soapbox Account" +msgstr "Konto ĉe Soapbox" + +#: ../../mod/settings.php:816 +msgid "Automatically approve all connection/friend requests as read-only fans" +msgstr "Aŭtomate konfirmi ĉiujn kontaktpetojn kiel nurlegaj admirantoj" + +#: ../../mod/settings.php:819 ../../mod/admin.php:164 ../../mod/admin.php:524 +msgid "Community/Celebrity Account" +msgstr "Komunuma/eminentula Konto" + +#: ../../mod/settings.php:820 +msgid "" +"Automatically approve all connection/friend requests as read-write fans" +msgstr "Aŭtomate konfirmi ĉiujn kontaktpetojn kiel admirantoj kapable legi kaj skribi" + +#: ../../mod/settings.php:823 ../../mod/admin.php:165 ../../mod/admin.php:525 +msgid "Automatic Friend Account" +msgstr "Aŭtomata Amika Konto" + +#: ../../mod/settings.php:824 +msgid "Automatically approve all connection/friend requests as friends" +msgstr "Aŭtomate konfirmi ĉiujn kontaktpetojn kiel amikoj" + +#: ../../mod/settings.php:834 +msgid "OpenID:" +msgstr "OpenID:" + +#: ../../mod/settings.php:834 +msgid "(Optional) Allow this OpenID to login to this account." +msgstr "(Nedeviga) Permesi atingon al la konton al ĉi tio OpenID." + +#: ../../mod/settings.php:844 +msgid "Publish your default profile in your local site directory?" +msgstr "Publikigi vian defaŭltan profilon en la loka reteja katalogo?" + +#: ../../mod/settings.php:850 +msgid "Publish your default profile in the global social directory?" +msgstr "Publikigi vian defaŭltan profilon en la tutmonda interkona katalogo?" + +#: ../../mod/settings.php:858 +msgid "Hide your contact/friend list from viewers of your default profile?" +msgstr "Kaŝi vian liston de kontaktoj/amiko al spektantoj de via defaŭlta profilo?" + +#: ../../mod/settings.php:862 +msgid "Hide your profile details from unknown viewers?" +msgstr "Kaŝi viajn profilajn detalojn al nekonataj spektantoj?" + +#: ../../mod/settings.php:867 +msgid "Allow friends to post to your profile page?" +msgstr "Ĉu amikoj povu afiŝi al via profilo?" + +#: ../../mod/settings.php:873 +msgid "Allow friends to tag your posts?" +msgstr "Ĉu amikoj povu aldoni markojn al viaj afiŝoj?" + +#: ../../mod/settings.php:879 +msgid "Allow us to suggest you as a potential friend to new members?" +msgstr "Ĉu ni povu sugesti vin kiel amiko al novaj membroj?" + +#: ../../mod/settings.php:885 +msgid "Permit unknown people to send you private mail?" +msgstr "Permesigi nekonatulojn sendi retpoŝton al vi?" + +#: ../../mod/settings.php:896 +msgid "Profile is not published." +msgstr "Profilo ne estas publika." + +#: ../../mod/settings.php:902 ../../mod/profile_photo.php:211 +msgid "or" +msgstr "aŭ" + +#: ../../mod/settings.php:907 +msgid "Your Identity Address is" +msgstr "Via identeco adreso estas" + +#: ../../mod/settings.php:918 +msgid "Automatically expire posts after this many days:" +msgstr "Automatike senvalidigi afiŝojn post tiom da tagoj:" + +#: ../../mod/settings.php:918 +msgid "If empty, posts will not expire. Expired posts will be deleted" +msgstr "Se malplena, afiŝoj neniam senvalidiĝos. Senvalidigitajn afiŝon estos forviŝata" + +#: ../../mod/settings.php:919 +msgid "Advanced expiration settings" +msgstr "Detalaj agordoj rilate al senvalidiĝo" + +#: ../../mod/settings.php:920 +msgid "Advanced Expiration" +msgstr "Detala senvalidiĝo" + +#: ../../mod/settings.php:921 +msgid "Expire posts:" +msgstr "Senvalidigi afiŝojn:" + +#: ../../mod/settings.php:922 +msgid "Expire personal notes:" +msgstr "Senvalidigi personajn notojn:" + +#: ../../mod/settings.php:923 +msgid "Expire starred posts:" +msgstr "Senvalidigi steligitajn afiŝojn:" + +#: ../../mod/settings.php:924 +msgid "Expire photos:" +msgstr "Senvalidigi bildojn:" + +#: ../../mod/settings.php:928 +msgid "Account Settings" +msgstr "Kontoagordoj" + +#: ../../mod/settings.php:937 +msgid "Password Settings" +msgstr "Agordoj pri Pasvorto" + +#: ../../mod/settings.php:938 +msgid "New Password:" +msgstr "Nova pasvorto:" + +#: ../../mod/settings.php:939 +msgid "Confirm:" +msgstr "Konfirmi:" + +#: ../../mod/settings.php:939 +msgid "Leave password fields blank unless changing" +msgstr "Lasu pasvortkampojn malplenaj se vi ne ŝanĝas la pasvorton." + +#: ../../mod/settings.php:943 +msgid "Basic Settings" +msgstr "Bazaj Agordoj" + +#: ../../mod/settings.php:944 ../../include/profile_advanced.php:15 +msgid "Full Name:" +msgstr "Plena Nomo:" + +#: ../../mod/settings.php:945 +msgid "Email Address:" +msgstr "Retpoŝtadreso:" + +#: ../../mod/settings.php:946 +msgid "Your Timezone:" +msgstr "Via Horzono:" + +#: ../../mod/settings.php:947 +msgid "Default Post Location:" +msgstr "Defaŭlta Loko por Afiŝoj:" + +#: ../../mod/settings.php:948 +msgid "Use Browser Location:" +msgstr "Uzu Lokon laŭ Retesplorilo:" + +#: ../../mod/settings.php:951 +msgid "Security and Privacy Settings" +msgstr "Agordoj pri Sekureco kaj Privateco" + +#: ../../mod/settings.php:953 +msgid "Maximum Friend Requests/Day:" +msgstr "Taga maksimumo da kontaktpetoj:" + +#: ../../mod/settings.php:953 ../../mod/settings.php:968 +msgid "(to prevent spam abuse)" +msgstr "(por malhelpi spamaĵojn)" + +#: ../../mod/settings.php:954 +msgid "Default Post Permissions" +msgstr "Defaŭltaj permesoj por afiŝoj" + +#: ../../mod/settings.php:955 +msgid "(click to open/close)" +msgstr "(klaku por malfermi/fermi)" + +#: ../../mod/settings.php:968 +msgid "Maximum private messages per day from unknown people:" +msgstr "Taga maksimumo da privataj mesaĝoj." + +#: ../../mod/settings.php:971 +msgid "Notification Settings" +msgstr "Agordoj pri Atentigoj" + +#: ../../mod/settings.php:972 +msgid "By default post a status message when:" +msgstr "Defaŭlte afiŝi statmesaĝon okaze de:" + +#: ../../mod/settings.php:973 +msgid "accepting a friend request" +msgstr "akcepti kontaktpeton" + +#: ../../mod/settings.php:974 +msgid "making an interesting profile change" +msgstr "fari interesan profilŝanĝon" + +#: ../../mod/settings.php:975 +msgid "Send a notification email when:" +msgstr "Sendu atentiga repoŝton se:" + +#: ../../mod/settings.php:976 +msgid "You receive an introduction" +msgstr "Vi ricevas inviton" + +#: ../../mod/settings.php:977 +msgid "Your introductions are confirmed" +msgstr "Viaj prezentoj estas konfirmata." + +#: ../../mod/settings.php:978 +msgid "Someone writes on your profile wall" +msgstr "Iu skribas je via profila muro." + +#: ../../mod/settings.php:979 +msgid "Someone writes a followup comment" +msgstr "Iu skribas sekvan komenton" + +#: ../../mod/settings.php:980 +msgid "You receive a private message" +msgstr "Vi ricevas privatan mesaĝon." + +#: ../../mod/settings.php:981 +msgid "You receive a friend suggestion" +msgstr "Vi ricevas amikosugeston" + +#: ../../mod/settings.php:982 +msgid "You are tagged in a post" +msgstr "Vi estas markita en afiŝon" + +#: ../../mod/settings.php:985 +msgid "Advanced Page Settings" +msgstr "Specialaj agordoj pri paĝoj" + +#: ../../mod/manage.php:90 +msgid "Manage Identities and/or Pages" +msgstr "Administri identecojn kaj/aŭ paĝojn." + +#: ../../mod/manage.php:93 +msgid "" +"Toggle between different identities or community/group pages which share " +"your account details or which you have been granted \"manage\" permissions" +msgstr "Ŝalti inter aliaj identecojn aj komunumaj/grupaj paĝoj kiuj kunhavas viajn kontajn detalojn au por kiuj vi havas \"administranto\" permesojn." + +#: ../../mod/manage.php:95 +msgid "Select an identity to manage: " +msgstr "Elektu identencon por administrado:" + +#: ../../mod/network.php:43 +msgid "Search Results For:" +msgstr "Rezultoj de la serĉado pri:" + +#: ../../mod/network.php:82 ../../mod/search.php:16 +msgid "Remove term" +msgstr "Forviŝu terminon" + +#: ../../mod/network.php:91 ../../mod/search.php:13 +msgid "Saved Searches" +msgstr "Konservitaj Serĉadoj" + +#: ../../mod/network.php:92 ../../include/group.php:217 +msgid "add" +msgstr "aldoni" + +#: ../../mod/network.php:171 +msgid "Commented Order" +msgstr "Komenta Ordo" + +#: ../../mod/network.php:176 +msgid "Posted Order" +msgstr "Afiŝita Ordo" + +#: ../../mod/network.php:187 +msgid "New" +msgstr "Nova" + +#: ../../mod/network.php:192 +msgid "Starred" +msgstr "Steligita" + +#: ../../mod/network.php:197 +msgid "Shared Links" +msgstr "Kunhavigitaj Ligiloj" + +#: ../../mod/network.php:274 +#, 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] "Averto: La grupo enhavas %s membron el nesekuraj retejoj." +msgstr[1] "Averto: La grupo enhavas %s membrojn el nesekuraj retejoj." + +#: ../../mod/network.php:277 +msgid "Private messages to this group are at risk of public disclosure." +msgstr "La privateco de privataj mesaĝoj al ĉi tiu grupo ne ĉiam estas garantita." + +#: ../../mod/network.php:322 +msgid "No such group" +msgstr "Grupo ne estas trovita" + +#: ../../mod/network.php:333 +msgid "Group is empty" +msgstr "Grupo estas malplena" + +#: ../../mod/network.php:337 +msgid "Group: " +msgstr "Grupo:" + +#: ../../mod/network.php:347 +msgid "Contact: " +msgstr "Kontakto:" + +#: ../../mod/network.php:349 +msgid "Private messages to this person are at risk of public disclosure." +msgstr "La privateco de privataj mesaĝoj al ĉi tiu persono ne ĉiam estas garantita." + +#: ../../mod/network.php:354 +msgid "Invalid contact." +msgstr "Nevalida kontakto." + +#: ../../mod/notes.php:44 ../../boot.php:1476 +msgid "Personal Notes" +msgstr "Personaj Notoj" + +#: ../../mod/notes.php:63 ../../mod/filer.php:30 +#: ../../addon/facebook/facebook.php:683 ../../include/text.php:652 +msgid "Save" +msgstr "Konservi" + +#: ../../mod/wallmessage.php:42 ../../mod/wallmessage.php:112 +#, php-format +msgid "Number of daily wall messages for %s exceeded. Message failed." +msgstr "Number of daily wall messages for %s exceeded. Messaĝo malsukcesis." + +#: ../../mod/wallmessage.php:56 ../../mod/message.php:59 +msgid "No recipient selected." +msgstr "Neniom da ricevontoj." + +#: ../../mod/wallmessage.php:59 +msgid "Unable to check your home location." +msgstr "Ne eblas kontroli vian hejmlokon." + +#: ../../mod/wallmessage.php:62 ../../mod/message.php:66 +msgid "Message could not be sent." +msgstr "Ne povas sendi la mesaĝon." + +#: ../../mod/wallmessage.php:65 ../../mod/message.php:69 +msgid "Message collection failure." +msgstr "Malsukcese provis kolekti mesaĝojn." + +#: ../../mod/wallmessage.php:68 ../../mod/message.php:72 +msgid "Message sent." +msgstr "Mesaĝo estas sendita." + +#: ../../mod/wallmessage.php:86 ../../mod/wallmessage.php:95 +msgid "No recipient." +msgstr "Neniom da ricevontoj." + +#: ../../mod/wallmessage.php:124 ../../mod/message.php:169 +#: ../../include/conversation.php:910 +msgid "Please enter a link URL:" +msgstr "Bonvolu entajpu adreson de ligilo:" + +#: ../../mod/wallmessage.php:131 ../../mod/message.php:177 +msgid "Send Private Message" +msgstr "Sendi Privatan Mesaĝon" + +#: ../../mod/wallmessage.php:132 +#, php-format +msgid "" +"If you wish for %s to respond, please check that the privacy settings on " +"your site allow private mail from unknown senders." +msgstr "Se vi deziras ke %s respondu, bonvolu kontroli ke la privatecaj agordoj je via retejo permesas privatajn mesaĝojn de nekonataj sendantoj." + +#: ../../mod/wallmessage.php:133 ../../mod/message.php:178 +#: ../../mod/message.php:347 +msgid "To:" +msgstr "Al:" + +#: ../../mod/wallmessage.php:134 ../../mod/message.php:179 +#: ../../mod/message.php:348 +msgid "Subject:" +msgstr "Temo:" + +#: ../../mod/wallmessage.php:140 ../../mod/message.php:183 +#: ../../mod/message.php:351 ../../mod/invite.php:113 +msgid "Your message:" +msgstr "Via mesaĝo:" + +#: ../../mod/newmember.php:6 +msgid "Welcome to Friendica" +msgstr "Bonvenon ĉe Friendica" + +#: ../../mod/newmember.php:8 +msgid "New Member Checklist" +msgstr "Kontrololisto por Novaj Membroj" + +#: ../../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 "Lasu nin oferi al vi kelkajn konsolojn kaj ligilojn por plifaciligi vian komencon. Klaku iun elementon por viziti la rilatan paĝon. Ligilo al ĉi tiu paĝo videblos en via hejmpaĝo dum du semajnojn post via komenca membriĝo. Post du semajnoj, la ligilo silente malaperos. " + +#: ../../mod/newmember.php:16 +msgid "" +"On your Quick Start page - find a brief introduction to your " +"profile and network tabs, connect to Facebook, make some new connections, " +"and find some groups to join." +msgstr "Je via Rapida Starto paĝo - trovu mallongan enigon pri via profilo kaj la reto folioj, konektu al Facebook, faru novajn konektojn kaj trovu aliĝindajn grupojn." + +#: ../../mod/newmember.php:18 +msgid "" +"On your Settings page - change your initial password. Also make a " +"note of your Identity Address. This looks just like an email address - and " +"will be useful in making friends on the free social web." +msgstr "Bonvolu ŝanĝi vian pasvorton ĉe Agordoj. Krome, memorigu vian identadreson. Ĝi aspektas kiel retpoŝtadreso kaj estas bezonata por konekti al novaj amikon en la libera interkona reto." + +#: ../../mod/newmember.php:20 +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 "Kontrolu la aliajn agordojn, precipe la privatecajn agordojn. Nepublikigita profilo similas al havi telefonnumberon ne registrata en iu telefonlibro. Ĝenerale vi eble volas publikigi vian profilon. Alie, viaj amikoj kaj estontaj amikoj bezonas scii kiel rekte trovi vin." + +#: ../../mod/newmember.php:22 +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 "Enŝuti profilbildon se vi ankoraŭ ne havas ĝin. Laŭ studoj, homoj kun realaj biloj de si mem trovas novajn amikon duope pli probable ol homoj sen reala bildo." + +#: ../../mod/newmember.php:25 +msgid "" +"Authorise the Facebook Connector if you currently have a Facebook account " +"and we will (optionally) import all your Facebook friends and conversations." +msgstr "Rajtigu la Facebook Konektilon se vi nuntempe havas Facebook konton, kaj ni (nedeviga) enportu viajn Facebook amikojn kaj konversaciojn." + +#: ../../mod/newmember.php:27 +msgid "" +"If this is your own personal server, installing the Facebook addon " +"may ease your transition to the free social web." +msgstr "Se ĉi tiu estas via propra TTT servilo, instali la Facebook kromprogramon eble plifaciligos la transpason al la libera interkona reto." + +#: ../../mod/newmember.php:32 +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 "Entajpu la akreditaĵojn por via retpoŝtkonto en la konektilagordoj se vi volas importi aŭ interagi kun amikoj aŭ dissendlistoj tra via retkesto." + +#: ../../mod/newmember.php:34 +msgid "" +"Edit your default profile to your liking. Review the " +"settings for hiding your list of friends and hiding the profile from unknown" +" visitors." +msgstr "Redakti viajn defaŭltan profilon kiel vi ŝatas ĝin. Kontrolu la agordojn por kaŝi vian kontaktliston aŭ kaŝi vian profilon al nekonataj vizitantoj." + +#: ../../mod/newmember.php:36 +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 "Aldonu publikajn ŝlosilvortojn al via defaŭlta profilo, kiuj priskribas viajn interesojn. Ni eble povas trovi aliajn uzantojn kun similaj interesoj kaj sugesti amikojn." + +#: ../../mod/newmember.php:38 +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 Add New Contact dialog." +msgstr "Via kontaktpaĝo estas via portalo por administri amikojn kaj konekti kun amikoj en aliaj retoj. Vi kutime entajpas iliajn adreson aŭ URL adreso en la Aldonu Novan Kontakton dialogon." + +#: ../../mod/newmember.php:40 +msgid "" +"The Directory page lets you find other people in this network or other " +"federated sites. Look for a Connect or Follow link on " +"their profile page. Provide your own Identity Address if requested." +msgstr "Ĉe la Katalogo vi povas trovi aliajn homojn en ĉi tiu retejo, au en aliaj federaciaj retejoj. Elrigardi al KonektiSekvi ligiloj ĉe iliaj profilo. Donu vian propran Identecan Adreson se la retejo demandas ĝin." + +#: ../../mod/newmember.php:42 +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 "En la flanka strio de la Kontaktoj paĝo troviĝas kelkajn helpilojn por trovi novajn amikojn. Ni povas automate trovi amikojn per interesoj, serĉu ilin per nomo aŭ intereso kaj faras sugestojn baze de estantaj kontaktoj. Ĉe nova instalita retejo, la unuaj sugestoj kutime aperas post 24 horoj." + +#: ../../mod/newmember.php:44 +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 "Kiam vi trovis kelkajn novajn amikojn, ordigi ilin en grupoj por privata komunikado en la flanka strio de via Kontaktoj paĝo, kaj vi povas private komuniki kun ili je via Reto paĝo." + +#: ../../mod/newmember.php:46 +msgid "" +"Our help pages may be consulted for detail on other program" +" features and resources." +msgstr "Niaj Helpo paĝoj enhavas pli da detaloj pri aliaj programaj trajtoj." + +#: ../../mod/attach.php:8 +msgid "Item not available." +msgstr "Elemento ne disponeblas." + +#: ../../mod/attach.php:20 +msgid "Item was not found." +msgstr "Elemento ne trovita." + +#: ../../mod/group.php:29 +msgid "Group created." +msgstr "Grupo estas kreita." + +#: ../../mod/group.php:35 +msgid "Could not create group." +msgstr "Ne povas krei grupon." + +#: ../../mod/group.php:47 ../../mod/group.php:137 +msgid "Group not found." +msgstr "Grupo ne estas trovita." + +#: ../../mod/group.php:60 +msgid "Group name changed." +msgstr "La nomo de la grupo estas ŝanĝita." + +#: ../../mod/group.php:72 ../../mod/profperm.php:19 ../../index.php:308 +msgid "Permission denied" +msgstr "Malpermesita" + +#: ../../mod/group.php:90 +msgid "Create a group of contacts/friends." +msgstr "Krei grupon da kontaktoj/amikoj." + +#: ../../mod/group.php:91 ../../mod/group.php:177 +msgid "Group Name: " +msgstr "Nomo de la grupo:" + +#: ../../mod/group.php:110 +msgid "Group removed." +msgstr "Grupo estas forviŝita." + +#: ../../mod/group.php:112 +msgid "Unable to remove group." +msgstr "Ne eblas forviŝi grupon." + +#: ../../mod/group.php:176 +msgid "Group Editor" +msgstr "Grupa redaktilo" + +#: ../../mod/group.php:189 +msgid "Members" +msgstr "Anoj" + +#: ../../mod/group.php:221 ../../mod/profperm.php:105 +msgid "Click on a contact to add or remove." +msgstr "Klaku kontakton por aldoni aŭ forviŝi." + +#: ../../mod/profperm.php:25 ../../mod/profperm.php:55 +msgid "Invalid profile identifier." +msgstr "Nevaliada profila identigilo." + +#: ../../mod/profperm.php:101 +msgid "Profile Visibility Editor" +msgstr "Redaktilo por profila videbleco." + +#: ../../mod/profperm.php:103 ../../view/theme/diabook-red/theme.php:240 +#: ../../view/theme/diabook-blue/theme.php:240 +#: ../../view/theme/diabook/theme.php:250 +#: ../../view/theme/diabook-aerith/theme.php:241 +#: ../../include/profile_advanced.php:7 ../../include/profile_advanced.php:76 +#: ../../include/nav.php:50 ../../boot.php:1458 +msgid "Profile" +msgstr "Profilo" + +#: ../../mod/profperm.php:114 +msgid "Visible To" +msgstr "Videbla Al" + +#: ../../mod/profperm.php:130 +msgid "All Contacts (with secure profile access)" +msgstr "Ĉiuj Kontaktoj (kun sekura atingo al la profilo)" + +#: ../../mod/viewcontacts.php:39 +msgid "No contacts." +msgstr "Neniu kontaktojn." + +#: ../../mod/viewcontacts.php:76 ../../include/text.php:589 +msgid "View Contacts" +msgstr "Vidi Kontaktojn" + +#: ../../mod/register.php:64 +msgid "An invitation is required." +msgstr "Invio bezonata." + +#: ../../mod/register.php:69 +msgid "Invitation could not be verified." +msgstr "Ne povis kontroli la inviton." + +#: ../../mod/register.php:77 +msgid "Invalid OpenID url" +msgstr "Nevalida OpenID adreso" + +#: ../../mod/register.php:92 +msgid "Please enter the required information." +msgstr "Bonvolu entajpi la bezonatajn informojn." + +#: ../../mod/register.php:106 +msgid "Please use a shorter name." +msgstr "Bonvolu uzi pli mallongan nomon." + +#: ../../mod/register.php:108 +msgid "Name too short." +msgstr "Nomo estas tro mallonga." + +#: ../../mod/register.php:123 +msgid "That doesn't appear to be your full (First Last) name." +msgstr "Tio ŝajne ne estas via plena (persona, familia) nomo." + +#: ../../mod/register.php:128 +msgid "Your email domain is not among those allowed on this site." +msgstr "Via retpoŝtodomajno ne estas permesita ĉi tie." + +#: ../../mod/register.php:131 +msgid "Not a valid email address." +msgstr "Nevalida retpoŝtadreso." + +#: ../../mod/register.php:141 +msgid "Cannot use that email." +msgstr "Neuzebla retpoŝtadreso." + +#: ../../mod/register.php:147 +msgid "" +"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and " +"must also begin with a letter." +msgstr "Via kaŝnomo nur povas enhavi \"a-z\", \"0-9\", \"-\", kaj \"_\". Ĝi ankaŭ devas komenci kun litero." + +#: ../../mod/register.php:153 ../../mod/register.php:264 +msgid "Nickname is already registered. Please choose another." +msgstr "Tio kaŝnomo jam estas registrita. Bonvolu elekti alian." + +#: ../../mod/register.php:163 +msgid "" +"Nickname was once registered here and may not be re-used. Please choose " +"another." +msgstr "Tiu kaŝnomo iam estis registrita ĉi tie kaj ne ree uzeblas. Bonvolu elekti alian." + +#: ../../mod/register.php:182 +msgid "SERIOUS ERROR: Generation of security keys failed." +msgstr "GRAVA ERARO: La generacio de sekurecaj ĉifroŝlosiloj malsukcesis." + +#: ../../mod/register.php:250 +msgid "An error occurred during registration. Please try again." +msgstr "Eraro okazis dum registrado. Bonvolu provi denove." + +#: ../../mod/register.php:286 +msgid "An error occurred creating your default profile. Please try again." +msgstr "Eraro okazi dum kreado de via defaŭlta profilo. Bonvolu provi denove." + +#: ../../mod/register.php:386 ../../mod/regmod.php:52 +#, php-format +msgid "Registration details for %s" +msgstr "Detaloj de la registrado por %s" + +#: ../../mod/register.php:394 +msgid "" +"Registration successful. Please check your email for further instructions." +msgstr "Registrado sukcesis. Bonvolu kontroli vian retpoŝton por pli da instruoj." + +#: ../../mod/register.php:398 +msgid "Failed to send email message. Here is the message that failed." +msgstr "Malsukcesis sendi retpoŝton. Jen la malsukcesa mesaĝo." + +#: ../../mod/register.php:403 +msgid "Your registration can not be processed." +msgstr "Mi ne povas prilabori vian registradon." + +#: ../../mod/register.php:440 +#, php-format +msgid "Registration request at %s" +msgstr "Peto de registrado al %s" + +#: ../../mod/register.php:449 +msgid "Your registration is pending approval by the site owner." +msgstr "Via registrado bezonas apropbon de la administranto." + +#: ../../mod/register.php:487 +msgid "" +"This site has exceeded the number of allowed daily account registrations. " +"Please try again tomorrow." +msgstr "La retejo transiras la maksimuman kvanton da ĉiutagaj kontaj registradoj. Bonvolu provi denove morgaŭ." + +#: ../../mod/register.php:513 +msgid "" +"You may (optionally) fill in this form via OpenID by supplying your OpenID " +"and clicking 'Register'." +msgstr "Vi ankaŭ (nedeviga) povas plenigi la formularon tra OpenID se vi provizas vian OpenID adreson kaj klakas 'Registri'." + +#: ../../mod/register.php:514 +msgid "" +"If you are not familiar with OpenID, please leave that field blank and fill " +"in the rest of the items." +msgstr "Se vi ne konas OpenID, bonvolu lasi tiun kampon malplena kaj entajpu la aliajn elementojn." + +#: ../../mod/register.php:515 +msgid "Your OpenID (optional): " +msgstr "Via OpenID (nedeviga):" + +#: ../../mod/register.php:529 +msgid "Include your profile in member directory?" +msgstr "Aldoni vian profilon al la membrokatalogo?" + +#: ../../mod/register.php:549 +msgid "Membership on this site is by invitation only." +msgstr "Membriĝi ĉi tie nur eblas laŭ invito." + +#: ../../mod/register.php:550 +msgid "Your invitation ID: " +msgstr "Via invita idento: " + +#: ../../mod/register.php:553 ../../mod/admin.php:375 +msgid "Registration" +msgstr "Registrado" + +#: ../../mod/register.php:561 +msgid "Your Full Name (e.g. Joe Smith): " +msgstr "Via Plena Nomo (e.g. Joe Smith): " + +#: ../../mod/register.php:562 +msgid "Your Email Address: " +msgstr "Via Retpoŝtadreso: " + +#: ../../mod/register.php:563 +msgid "" +"Choose a profile nickname. This must begin with a text character. Your " +"profile address on this site will then be " +"'nickname@$sitename'." +msgstr "Elektu kaŝnomon por la profilo. Tiu bezonas komenci kun teksta litero. Poste, via profila adreso ĉi tie estos: 'kaŝnomo@$sitename'." + +#: ../../mod/register.php:564 +msgid "Choose a nickname: " +msgstr "Elektu kaŝnomon: " + +#: ../../mod/register.php:567 ../../include/nav.php:81 ../../boot.php:775 +msgid "Register" +msgstr "Registri" + +#: ../../mod/dirfind.php:23 +msgid "People Search" +msgstr "Serĉi Membrojn" + +#: ../../mod/like.php:127 ../../mod/tagger.php:70 +#: ../../addon/facebook/facebook.php:1574 +#: ../../addon/communityhome/communityhome.php:158 +#: ../../addon/communityhome/communityhome.php:167 +#: ../../view/theme/diabook-red/theme.php:80 +#: ../../view/theme/diabook-red/theme.php:89 +#: ../../view/theme/diabook-blue/theme.php:80 +#: ../../view/theme/diabook-blue/theme.php:89 +#: ../../view/theme/diabook/theme.php:86 ../../view/theme/diabook/theme.php:95 +#: ../../view/theme/diabook-aerith/theme.php:81 +#: ../../view/theme/diabook-aerith/theme.php:90 +#: ../../include/diaspora.php:1654 ../../include/conversation.php:48 +#: ../../include/conversation.php:57 ../../include/conversation.php:121 +#: ../../include/conversation.php:130 +msgid "status" +msgstr "staton" + +#: ../../mod/like.php:144 ../../addon/facebook/facebook.php:1578 +#: ../../addon/communityhome/communityhome.php:172 +#: ../../view/theme/diabook-red/theme.php:94 +#: ../../view/theme/diabook-blue/theme.php:94 +#: ../../view/theme/diabook/theme.php:100 +#: ../../view/theme/diabook-aerith/theme.php:95 +#: ../../include/diaspora.php:1670 ../../include/conversation.php:65 +#, php-format +msgid "%1$s likes %2$s's %3$s" +msgstr "%1$s ŝatas la %3$s de %2$s" + +#: ../../mod/like.php:146 ../../include/conversation.php:68 +#, php-format +msgid "%1$s doesn't like %2$s's %3$s" +msgstr "%1$s malŝatas la %3$s de %2$s" + +#: ../../mod/notice.php:15 ../../mod/viewsrc.php:15 ../../mod/admin.php:141 +#: ../../mod/admin.php:582 ../../mod/admin.php:761 ../../mod/display.php:37 +#: ../../mod/display.php:142 ../../include/items.php:3082 +msgid "Item not found." +msgstr "Elemento ne estas trovita." + +#: ../../mod/viewsrc.php:7 +msgid "Access denied." +msgstr "Atingo nepermesita." + +#: ../../mod/regmod.php:61 +msgid "Account approved." +msgstr "Konto aprobita." + +#: ../../mod/regmod.php:98 +#, php-format +msgid "Registration revoked for %s" +msgstr "Registraĵo por %s senvalidigita." + +#: ../../mod/regmod.php:110 +msgid "Please login." +msgstr "Bonvolu ensaluti." + +#: ../../mod/item.php:89 +msgid "Unable to locate original post." +msgstr "Ne eblas trovi originalan afiŝon." + +#: ../../mod/item.php:249 +msgid "Empty post discarded." +msgstr "Forviŝis malplenan afiŝon." + +#: ../../mod/item.php:372 ../../mod/wall_upload.php:85 +#: ../../mod/wall_upload.php:94 ../../mod/wall_upload.php:101 +#: ../../include/message.php:144 +msgid "Wall Photos" +msgstr "Muraj Bildoj" + +#: ../../mod/item.php:762 +msgid "System error. Post not saved." +msgstr "Sistema eraro. Afiŝo ne registrita." + +#: ../../mod/item.php:787 +#, php-format +msgid "" +"This message was sent to you by %s, a member of the Friendica social " +"network." +msgstr "Ĉi mesaĝo estas sendita al vi de %s, membro de la Friendica interkona reto." + +#: ../../mod/item.php:789 +#, php-format +msgid "You may visit them online at %s" +msgstr "Vi povas viziti ilin rete ĉe %s" + +#: ../../mod/item.php:790 +msgid "" +"Please contact the sender by replying to this post if you do not wish to " +"receive these messages." +msgstr "Bonvolu rispondi al ĉi mesaĝo kaj kontaktu la sendinto se vi ne volas ricevi tiujn mesaĝojn." + +#: ../../mod/item.php:792 +#, php-format +msgid "%s posted an update." +msgstr "%s publikigis afiŝon." + +#: ../../mod/profile_photo.php:30 +msgid "Image uploaded but image cropping failed." +msgstr "Bildo estas alŝutita, sed malsukcesis tranĉi la bildon." + +#: ../../mod/profile_photo.php:63 ../../mod/profile_photo.php:70 +#: ../../mod/profile_photo.php:77 ../../mod/profile_photo.php:264 +#, php-format +msgid "Image size reduction [%s] failed." +msgstr "Malsukcesis malpligrandigi [%s] la bildon." + +#: ../../mod/profile_photo.php:91 +msgid "" +"Shift-reload the page or clear browser cache if the new photo does not " +"display immediately." +msgstr "Reŝarĝu la paĝon au malplenigu la kaŝmemoro de la retesplorilo se la nova bildo ne tuj aperas." + +#: ../../mod/profile_photo.php:101 +msgid "Unable to process image" +msgstr "Ne eblas procezi bildon." + +#: ../../mod/profile_photo.php:115 ../../mod/wall_upload.php:60 +#, php-format +msgid "Image exceeds size limit of %d" +msgstr "Bildo estas pli granda ol la limito %d" + +#: ../../mod/profile_photo.php:207 +msgid "Upload File:" +msgstr "Alŝuti dosieron:" + +#: ../../mod/profile_photo.php:208 +msgid "Upload Profile Photo" +msgstr "Alŝuti profilbildon" + +#: ../../mod/profile_photo.php:209 +msgid "Upload" +msgstr "Alŝuti" + +#: ../../mod/profile_photo.php:211 +msgid "skip this step" +msgstr "Preterpasi tian paŝon" + +#: ../../mod/profile_photo.php:211 +msgid "select a photo from your photo albums" +msgstr "elekti bildon el viaj albumoj" + +#: ../../mod/profile_photo.php:224 +msgid "Crop Image" +msgstr "Stuci Bildon" + +#: ../../mod/profile_photo.php:225 +msgid "Please adjust the image cropping for optimum viewing." +msgstr "Bonvolu agordi la stuco de la bildo por optimuma aspekto." + +#: ../../mod/profile_photo.php:227 +msgid "Done Editing" +msgstr "Finigi Redaktado" + +#: ../../mod/profile_photo.php:255 +msgid "Image uploaded successfully." +msgstr "Bildo estas sukcese enŝutita." + +#: ../../mod/hcard.php:10 +msgid "No profile" +msgstr "Neniu profilo" + +#: ../../mod/removeme.php:45 ../../mod/removeme.php:48 +msgid "Remove My Account" +msgstr "Forigi Mian Konton" + +#: ../../mod/removeme.php:46 +msgid "" +"This will completely remove your account. Once this has been done it is not " +"recoverable." +msgstr "Tio tute forigos vian konton. Kiam farita, la konto ne estas restaŭrebla." + +#: ../../mod/removeme.php:47 +msgid "Please enter your password for verification:" +msgstr "Bonvolu entajpi vian pasvorton por kontrolado:" + +#: ../../mod/message.php:22 ../../include/nav.php:131 +msgid "New Message" +msgstr "Nova Mesaĝo" + +#: ../../mod/message.php:63 +msgid "Unable to locate contact information." +msgstr "Ne eblas trovi kontaktajn informojn." + +#: ../../mod/message.php:117 +msgid "Message deleted." +msgstr "Mesaĝo estas forviŝita." + +#: ../../mod/message.php:147 +msgid "Conversation removed." +msgstr "Dialogo estas forviŝita." + +#: ../../mod/message.php:219 +msgid "No messages." +msgstr "Neniom da mesaĝoj." + +#: ../../mod/message.php:226 +#, php-format +msgid "Unknown sender - %s" +msgstr "Nekonata sendanto - %s" + +#: ../../mod/message.php:229 +#, php-format +msgid "You and %s" +msgstr "Vi kaj %s" + +#: ../../mod/message.php:232 +#, php-format +msgid "%s and You" +msgstr "%s kaj vi" + +#: ../../mod/message.php:242 ../../mod/message.php:340 +msgid "Delete conversation" +msgstr "Forviŝi dialogon" + +#: ../../mod/message.php:245 +msgid "D, d M Y - g:i A" +msgstr "D, d M Y - g:i A" + +#: ../../mod/message.php:247 +#, php-format +msgid "%d message" +msgid_plural "%d messages" +msgstr[0] "%d mesaĝo" +msgstr[1] "%d mesaĝoj" + +#: ../../mod/message.php:282 +msgid "Message not available." +msgstr "Mesaĝo nedisponebla." + +#: ../../mod/message.php:324 +msgid "Delete message" +msgstr "Forviŝu mesaĝon" + +#: ../../mod/message.php:342 +msgid "" +"No secure communications available. You may be able to " +"respond from the sender's profile page." +msgstr "Sekura komunikado ne disponeblas. Vi eble povus respondi sur la profilpaĝo de la sendanto." + +#: ../../mod/message.php:346 +msgid "Send Reply" +msgstr "Respondi" + +#: ../../mod/allfriends.php:34 +#, php-format +msgid "Friends of %s" +msgstr "Amikoj de %s" + +#: ../../mod/allfriends.php:40 +msgid "No friends to display." +msgstr "Neniom da amiko al montri." + +#: ../../mod/admin.php:51 +msgid "Theme settings updated." +msgstr "Gisdatigis agordojn pri etosoj." + +#: ../../mod/admin.php:85 ../../mod/admin.php:373 +msgid "Site" +msgstr "Retejo" + +#: ../../mod/admin.php:86 ../../mod/admin.php:540 ../../mod/admin.php:552 +msgid "Users" +msgstr "Uzantoj" + +#: ../../mod/admin.php:87 ../../mod/admin.php:629 ../../mod/admin.php:669 +msgid "Plugins" +msgstr "Kromprogramoj" + +#: ../../mod/admin.php:88 ../../mod/admin.php:815 ../../mod/admin.php:849 +msgid "Themes" +msgstr "Etosoj" + +#: ../../mod/admin.php:103 ../../mod/admin.php:929 +msgid "Logs" +msgstr "Protokoloj" + +#: ../../mod/admin.php:108 +msgid "User registrations waiting for confirmation" +msgstr "Uzantaj registradoj atendante konfirmon" + +#: ../../mod/admin.php:177 ../../mod/admin.php:372 ../../mod/admin.php:539 +#: ../../mod/admin.php:628 ../../mod/admin.php:668 ../../mod/admin.php:814 +#: ../../mod/admin.php:848 ../../mod/admin.php:928 +msgid "Administration" +msgstr "Administrado" + +#: ../../mod/admin.php:178 +msgid "Summary" +msgstr "Resumo" + +#: ../../mod/admin.php:179 +msgid "Registered users" +msgstr "Registrataj uzantoj" + +#: ../../mod/admin.php:181 +msgid "Pending registrations" +msgstr "Okazontaj registradoj" + +#: ../../mod/admin.php:182 +msgid "Version" +msgstr "Versio" + +#: ../../mod/admin.php:184 +msgid "Active plugins" +msgstr "Ŝaltitaj kromprogramoj" + +#: ../../mod/admin.php:315 +msgid "Site settings updated." +msgstr "Ĝisdatigis retejaj agordoj." + +#: ../../mod/admin.php:359 +msgid "Closed" +msgstr "Ferma" + +#: ../../mod/admin.php:360 +msgid "Requires approval" +msgstr "Bezonas aprobon" + +#: ../../mod/admin.php:361 +msgid "Open" +msgstr "Malferma" + +#: ../../mod/admin.php:365 +msgid "No SSL policy, links will track page SSL state" +msgstr "Sen SSL strategio. Ligiloj sekvos la SSL staton de la paĝo." + +#: ../../mod/admin.php:366 +msgid "Force all links to use SSL" +msgstr "Devigi ke ĉiuj ligiloj uzu SSL." + +#: ../../mod/admin.php:367 +msgid "Self-signed certificate, use SSL for local links only (discouraged)" +msgstr "Memsubskribita atestilo, nur uzu SSL por lokaj ligiloj (malkuraĝigata)" + +#: ../../mod/admin.php:376 +msgid "File upload" +msgstr "Alŝuto" + +#: ../../mod/admin.php:377 +msgid "Policies" +msgstr "Politiko" + +#: ../../mod/admin.php:378 +msgid "Advanced" +msgstr "Altnivela" + +#: ../../mod/admin.php:382 ../../addon/statusnet/statusnet.php:544 +msgid "Site name" +msgstr "Nomo de retejo" + +#: ../../mod/admin.php:383 +msgid "Banner/Logo" +msgstr "Emblemo" + +#: ../../mod/admin.php:384 +msgid "System language" +msgstr "Sistema lingvo" + +#: ../../mod/admin.php:385 +msgid "System theme" +msgstr "Sistema etoso" + +#: ../../mod/admin.php:385 +msgid "" +"Default system theme - may be over-ridden by user profiles - change theme settings" +msgstr "Defaŭlta sistema etoso - transpasebla de uzantprofiloj - redakti agordoj pri etosoj" + +#: ../../mod/admin.php:386 +msgid "SSL link policy" +msgstr "Strategio por SSL ligiloj" + +#: ../../mod/admin.php:386 +msgid "Determines whether generated links should be forced to use SSL" +msgstr "Difinas ĉu generotaj ligiloj devige uzu SSL." + +#: ../../mod/admin.php:387 +msgid "Maximum image size" +msgstr "Maksimuma bildgrando" + +#: ../../mod/admin.php:387 +msgid "" +"Maximum size in bytes of uploaded images. Default is 0, which means no " +"limits." +msgstr "Maksimuma grando en bajtoj por alŝutotaj bildoj. Defaŭlte 0, kio signifas neniu limito." + +#: ../../mod/admin.php:389 +msgid "Register policy" +msgstr "Interkonsento pri registrado" + +#: ../../mod/admin.php:390 +msgid "Register text" +msgstr "Interkonsento teksto" + +#: ../../mod/admin.php:390 +msgid "Will be displayed prominently on the registration page." +msgstr "Tio estos eminente montrata en la registro paĝo." + +#: ../../mod/admin.php:391 +msgid "Accounts abandoned after x days" +msgstr "Kontoj forlasitaj post x tagoj" + +#: ../../mod/admin.php:391 +msgid "" +"Will not waste system resources polling external sites for abandoned " +"accounts. Enter 0 for no time limit." +msgstr "Mi ne malŝparu energion por enketi aliajn retejojn pri forlasitaj kontoj. Entajpu 0 por ne uzi templimo." + +#: ../../mod/admin.php:392 +msgid "Allowed friend domains" +msgstr "Permesitaj amikaj domainoj" + +#: ../../mod/admin.php:392 +msgid "" +"Comma separated list of domains which are allowed to establish friendships " +"with this site. Wildcards are accepted. Empty to allow any domains" +msgstr "Perkome disigita listo da domajnoj kiuj rajtas konstrui amikecojn kun ĉi tiu retejo. Ĵokeroj eblas. Malplena por rajtigi ĉiujn ajn domajnojn." + +#: ../../mod/admin.php:393 +msgid "Allowed email domains" +msgstr "Permesitaj retpoŝtaj domajnoj" + +#: ../../mod/admin.php:393 +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 "Perkome disigita listo da domajnoj kiuj uzeblas kiel retpoŝtaj adresoj en novaj registradoj. Ĵokeroj eblas. Malplena por rajtigi ĉiujn ajn domajnojn." + +#: ../../mod/admin.php:394 +msgid "Block public" +msgstr "Bloki publike" + +#: ../../mod/admin.php:394 +msgid "" +"Check to block public access to all otherwise public personal pages on this " +"site unless you are currently logged in." +msgstr "Elektu por bloki publikan atingon al ĉiuj alie publikajn paĝojn en ĉi tiu retejo kiam vi ne estas ensalutita." + +#: ../../mod/admin.php:395 +msgid "Force publish" +msgstr "Devigi publikigon" + +#: ../../mod/admin.php:395 +msgid "" +"Check to force all profiles on this site to be listed in the site directory." +msgstr "Elektu por devigi la registradon en la loka katalogo al ĉiuj profiloj en ĉi tiu retejo." + +#: ../../mod/admin.php:396 +msgid "Global directory update URL" +msgstr "Ĝenerala adreso por ĝisdatigi la katalogon" + +#: ../../mod/admin.php:396 +msgid "" +"URL to update the global directory. If this is not set, the global directory" +" is completely unavailable to the application." +msgstr "URL adreso por ĝisdatigi la tutmondan katalogon. Se ne agordita, la tutmonda katatolge tute ne disponeblas al la programo." + +#: ../../mod/admin.php:398 +msgid "Block multiple registrations" +msgstr "Bloki pluroblajn registradojn." + +#: ../../mod/admin.php:398 +msgid "Disallow users to register additional accounts for use as pages." +msgstr "Malpermesi al uzantoj la permeson por registri pluajn kontojn kiel paĝoj." + +#: ../../mod/admin.php:399 +msgid "OpenID support" +msgstr "Subteno por OpenID" + +#: ../../mod/admin.php:399 +msgid "OpenID support for registration and logins." +msgstr "Subteni OpenID por registrado kaj ensaluto." + +#: ../../mod/admin.php:400 +msgid "Fullname check" +msgstr "Kontroli plenan nomon" + +#: ../../mod/admin.php:400 +msgid "" +"Force users to register with a space between firstname and lastname in Full " +"name, as an antispam measure" +msgstr "Kiel kontraŭspamilo, devigi uzantoj al registrado kun spaceto inter la persona nomo kaj la familia nomo." + +#: ../../mod/admin.php:401 +msgid "UTF-8 Regular expressions" +msgstr "UTF-8 regulaj exprimoj" + +#: ../../mod/admin.php:401 +msgid "Use PHP UTF8 regular expressions" +msgstr "Uzi PHP UTF8 regulajn esprimojn." + +#: ../../mod/admin.php:402 +msgid "Show Community Page" +msgstr "Montri Komunuma Paĝo" + +#: ../../mod/admin.php:402 +msgid "" +"Display a Community page showing all recent public postings on this site." +msgstr "Montri komunuma paĝo kun ĉiuj ĵusaj afiŝoj en ĉi tiu retejo." + +#: ../../mod/admin.php:403 +msgid "Enable OStatus support" +msgstr "Ŝalti subtenon por OStatus" + +#: ../../mod/admin.php:403 +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 "Provizi integritan OStatus (identi.ca, status.net ktp) subtenon. Ĉiuj komunikadoj en OStatus estas publikaj, do privatecaj avertoj aperos de tempo al tempo." + +#: ../../mod/admin.php:404 +msgid "Enable Diaspora support" +msgstr "Ŝalti subtenon por Diaspora" + +#: ../../mod/admin.php:404 +msgid "Provide built-in Diaspora network compatibility." +msgstr "Provizi integritan Diaspora subtenon." + +#: ../../mod/admin.php:405 +msgid "Only allow Friendica contacts" +msgstr "Nur permesigi Friendica kontaktojn" + +#: ../../mod/admin.php:405 +msgid "" +"All contacts must use Friendica protocols. All other built-in communication " +"protocols disabled." +msgstr "Ĉiuj kontaktoj devas uzi Friendica protokolojn. Ĉiuj aliaj komunikaj protokoloj malaktivita." + +#: ../../mod/admin.php:406 +msgid "Verify SSL" +msgstr "Kontroli SSL" + +#: ../../mod/admin.php:406 +msgid "" +"If you wish, you can turn on strict certificate checking. This will mean you" +" cannot connect (at all) to self-signed SSL sites." +msgstr "Se vi deziras, vi povas aktivigi severan kontroladon de SSL atestiloj. Pro tio, vie (tute) ne eblos konekti al SSL retejoj kun memsubskribitaj atestiloj." + +#: ../../mod/admin.php:407 +msgid "Proxy user" +msgstr "Uzantnomo por retperanto" + +#: ../../mod/admin.php:408 +msgid "Proxy URL" +msgstr "URL adreso de retperanto" + +#: ../../mod/admin.php:409 +msgid "Network timeout" +msgstr "Reta tempolimo" + +#: ../../mod/admin.php:409 +msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." +msgstr "Valoro en sekundoj. Uzu 0 por mallimitigi (ne rekomendata)." + +#: ../../mod/admin.php:430 +#, php-format +msgid "%s user blocked/unblocked" +msgid_plural "%s users blocked/unblocked" +msgstr[0] "Blokis/malblokis %s uzanton" +msgstr[1] "Blokis/malblokis %s uzantojn" + +#: ../../mod/admin.php:437 +#, php-format +msgid "%s user deleted" +msgid_plural "%s users deleted" +msgstr[0] "%s uzanto forviŝita" +msgstr[1] "%s uzanto forviŝitaj" + +#: ../../mod/admin.php:471 +#, php-format +msgid "User '%s' deleted" +msgstr "Uzanto '%s' forviŝita" + +#: ../../mod/admin.php:478 +#, php-format +msgid "User '%s' unblocked" +msgstr "Uzanto '%s' malblokita" + +#: ../../mod/admin.php:478 +#, php-format +msgid "User '%s' blocked" +msgstr "Uzanto '%s' blokita" + +#: ../../mod/admin.php:542 +msgid "select all" +msgstr "elekti ĉiujn" + +#: ../../mod/admin.php:543 +msgid "User registrations waiting for confirm" +msgstr "Registriĝoj atendante aprobon" + +#: ../../mod/admin.php:544 +msgid "Request date" +msgstr "Dato de peto" + +#: ../../mod/admin.php:544 ../../mod/admin.php:553 +#: ../../include/contact_selectors.php:79 +msgid "Email" +msgstr "Retpoŝto" + +#: ../../mod/admin.php:545 +msgid "No registrations." +msgstr "Neniom da registriĝoj." + +#: ../../mod/admin.php:547 +msgid "Deny" +msgstr "Negi" + +#: ../../mod/admin.php:553 +msgid "Register date" +msgstr "Dato de registrado" + +#: ../../mod/admin.php:553 +msgid "Last login" +msgstr "Plej ĵusa ensaluto" + +#: ../../mod/admin.php:553 +msgid "Last item" +msgstr "Plej ĵusa elemento" + +#: ../../mod/admin.php:553 +msgid "Account" +msgstr "Konto" + +#: ../../mod/admin.php:555 +msgid "" +"Selected users will be deleted!\\n\\nEverything these users had posted on " +"this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "La elektitaj uzantkontoj estas forviŝotaj!\\n\\nĈiuj elementoj kiujn ili afiŝis je la retpaĝo estos permanente forviŝitaj.\\n\\nĈu vi certas?" + +#: ../../mod/admin.php:556 +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 "La uzanto {0} estas forviŝota!\\n\\nĈiuj elementoj kiujn li afiŝis je la retpaĝo estos permanente forviŝitaj.\\n\\nĈu vi certas?" + +#: ../../mod/admin.php:592 +#, php-format +msgid "Plugin %s disabled." +msgstr "Kromprogramo %s estas malŝaltita." + +#: ../../mod/admin.php:596 +#, php-format +msgid "Plugin %s enabled." +msgstr "Kromprogramo %s estas ŝaltita." + +#: ../../mod/admin.php:606 ../../mod/admin.php:785 +msgid "Disable" +msgstr "Malŝalti" + +#: ../../mod/admin.php:608 ../../mod/admin.php:787 +msgid "Enable" +msgstr "Ŝalti" + +#: ../../mod/admin.php:630 ../../mod/admin.php:816 +msgid "Toggle" +msgstr "Ŝalti/Malŝalti" + +#: ../../mod/admin.php:638 ../../mod/admin.php:826 +msgid "Author: " +msgstr "Aŭtoro: " + +#: ../../mod/admin.php:639 ../../mod/admin.php:827 +msgid "Maintainer: " +msgstr "Prizorganto: " + +#: ../../mod/admin.php:750 +msgid "No themes found." +msgstr "Ne trovis etosojn." + +#: ../../mod/admin.php:808 +msgid "Screenshot" +msgstr "Ekrankopio" + +#: ../../mod/admin.php:854 +msgid "[Experimental]" +msgstr "[Eksperimenta]" + +#: ../../mod/admin.php:855 +msgid "[Unsupported]" +msgstr "[Nesubtenata]" + +#: ../../mod/admin.php:878 +msgid "Log settings updated." +msgstr "Protokolagordoj ĝisdatigitaj." + +#: ../../mod/admin.php:931 +msgid "Clear" +msgstr "Forviŝi" + +#: ../../mod/admin.php:937 +msgid "Debugging" +msgstr "Sencimigado" + +#: ../../mod/admin.php:938 +msgid "Log file" +msgstr "Protokolo" + +#: ../../mod/admin.php:938 +msgid "" +"Must be writable by web server. Relative to your Friendica top-level " +"directory." +msgstr "Devas esti skribebla de la retservilo. Relativa al via plej supra Friendica dosierujo." + +#: ../../mod/admin.php:939 +msgid "Log level" +msgstr "Protokolnivelo" + +#: ../../mod/admin.php:980 +msgid "Close" +msgstr "Fermi" + +#: ../../mod/admin.php:986 +msgid "FTP Host" +msgstr "FTP Servilo" + +#: ../../mod/admin.php:987 +msgid "FTP Path" +msgstr "FTP Vojo" + +#: ../../mod/admin.php:988 +msgid "FTP User" +msgstr "FTP Uzanto" + +#: ../../mod/admin.php:989 +msgid "FTP Password" +msgstr "FTP Pasvorto" + +#: ../../mod/profile.php:21 ../../boot.php:940 +msgid "Requested profile is not available." +msgstr "La petita profilo ne disponeblas." + +#: ../../mod/profile.php:124 ../../mod/display.php:75 +msgid "Access to this profile has been restricted." +msgstr "Atingo al ĉi tio profilo estas limitigita" + +#: ../../mod/profile.php:145 +msgid "Tips for New Members" +msgstr "Konsilo por novaj membroj" + +#: ../../mod/ping.php:175 +msgid "{0} wants to be your friend" +msgstr "{0} volas amikiĝi kun vi" + +#: ../../mod/ping.php:180 +msgid "{0} sent you a message" +msgstr "{0} sendis mesaĝon al vi" + +#: ../../mod/ping.php:185 +msgid "{0} requested registration" +msgstr "{0} petis registradon" + +#: ../../mod/ping.php:191 +#, php-format +msgid "{0} commented %s's post" +msgstr "{0} komentis pri la afiŝo de %s" + +#: ../../mod/ping.php:196 +#, php-format +msgid "{0} liked %s's post" +msgstr "{0} satis la afiŝon de %s" + +#: ../../mod/ping.php:201 +#, php-format +msgid "{0} disliked %s's post" +msgstr "{0} malŝatis la afiŝon de %s" + +#: ../../mod/ping.php:206 +#, php-format +msgid "{0} is now friends with %s" +msgstr "{0} amikiĝis kun %s" + +#: ../../mod/ping.php:211 +msgid "{0} posted" +msgstr "{0} afiŝis" + +#: ../../mod/ping.php:216 +#, php-format +msgid "{0} tagged %s's post with #%s" +msgstr "{0} markis la afiŝon de %s kun #%s" + +#: ../../mod/ping.php:222 +msgid "{0} mentioned you in a post" +msgstr "{0} menciis vin en afiŝo" + +#: ../../mod/nogroup.php:58 +msgid "Contacts who are not members of a group" +msgstr "Kontaktoj kiuj ne estas en iu grupo" + +#: ../../mod/openid.php:24 +msgid "OpenID protocol error. No ID returned." +msgstr "Eraro en OpenID protokolo. Ne resendis identecon." + +#: ../../mod/openid.php:53 +msgid "" +"Account not found and OpenID registration is not permitted on this site." +msgstr "Ne trovis kontoj, kaj registrado tra OpenID estas malpermesita ĉi tie." + +#: ../../mod/openid.php:93 ../../include/auth.php:90 +#: ../../include/auth.php:153 +msgid "Login failed." +msgstr "Ensalutado malsukcesis." + +#: ../../mod/follow.php:27 +msgid "Connect URL missing." +msgstr "Ne ekzistas URL adreso por konekti." + +#: ../../mod/follow.php:47 +msgid "" +"This site is not configured to allow communications with other networks." +msgstr "Tiu retpaĝo ne permesas komunikadon kun aliaj retoj." + +#: ../../mod/follow.php:48 ../../mod/follow.php:63 +msgid "No compatible communication protocols or feeds were discovered." +msgstr "Ne malkovris kongruajn protokolojn por komunikado aŭ fluojn." + +#: ../../mod/follow.php:61 +msgid "The profile address specified does not provide adequate information." +msgstr "La specifita profiladreso ne enhavas sufiĉe da informoj." + +#: ../../mod/follow.php:65 +msgid "An author or name was not found." +msgstr "Ne trovis aŭtoron aŭ nomon." + +#: ../../mod/follow.php:67 +msgid "No browser URL could be matched to this address." +msgstr "Neniu retuma URL adreso kongruas al la adreso." + +#: ../../mod/follow.php:74 +msgid "" +"The profile address specified belongs to a network which has been disabled " +"on this site." +msgstr "Tiu profila adreso apartenas al retejo kiu estas maŝaltita je ĉi tiu retejo." + +#: ../../mod/follow.php:79 +msgid "" +"Limited profile. This person will be unable to receive direct/personal " +"notifications from you." +msgstr "Profilo limigata. Ĉi persono ne eblos ricevi rektajn/personajn atentigojn de vi. " + +#: ../../mod/follow.php:149 +msgid "Unable to retrieve contact information." +msgstr "Ne eblas ricevi kontaktinformojn." + +#: ../../mod/follow.php:195 +msgid "following" +msgstr "sekvanta" + +#: ../../mod/common.php:34 +msgid "Common Friends" +msgstr "Komunaj Amikoj" + +#: ../../mod/common.php:42 +msgid "No friends in common." +msgstr "Neniom da komunaj amikoj." + +#: ../../mod/display.php:135 +msgid "Item has been removed." +msgstr "Elemento estas forviŝita." + +#: ../../mod/apps.php:4 +msgid "Applications" +msgstr "Programoj" + +#: ../../mod/apps.php:7 +msgid "No installed applications." +msgstr "Neniom da instalitaj programoj." + +#: ../../mod/search.php:83 +msgid "Search This Site" +msgstr "Serĉi ĉi-tiun retejon" + +#: ../../mod/profiles.php:21 ../../mod/profiles.php:339 +#: ../../mod/profiles.php:453 ../../mod/dfrn_confirm.php:62 +msgid "Profile not found." +msgstr "Profilo ne trovita." + +#: ../../mod/profiles.php:31 +msgid "Profile Name is required." +msgstr "Nomo de profilo estas bezonata." + +#: ../../mod/profiles.php:143 +msgid "Marital Status" +msgstr "Amrilata Stato" + +#: ../../mod/profiles.php:144 +msgid "Romantic Partner" +msgstr "Kora Partnero" + +#: ../../mod/profiles.php:145 +msgid "Work/Employment" +msgstr "Laboro" + +#: ../../mod/profiles.php:146 +msgid "Religion" +msgstr "Religio" + +#: ../../mod/profiles.php:147 +msgid "Political Views" +msgstr "Politikaj Opinioj" + +#: ../../mod/profiles.php:148 +msgid "Gender" +msgstr "Sekso" + +#: ../../mod/profiles.php:149 +msgid "Sexual Preference" +msgstr "Seksa Prefero" + +#: ../../mod/profiles.php:150 +msgid "Homepage" +msgstr "Hejmpaĝo" + +#: ../../mod/profiles.php:151 +msgid "Interests" +msgstr "Interesoj" + +#: ../../mod/profiles.php:154 +msgid "Location" +msgstr "Loko" + +#: ../../mod/profiles.php:225 +msgid "Profile updated." +msgstr "Profilo ĝisdatigita." + +#: ../../mod/profiles.php:300 +msgid "public profile" +msgstr "publika profilo" + +#: ../../mod/profiles.php:302 +#, php-format +msgid "%1$s has an updated %2$s, changing %3$s." +msgstr "%1$s havas ĝisdatigigan %2$s, ŝanĝas %3$s." + +#: ../../mod/profiles.php:358 +msgid "Profile deleted." +msgstr "Profilo forviŝita." + +#: ../../mod/profiles.php:376 ../../mod/profiles.php:410 +msgid "Profile-" +msgstr "Profilo-" + +#: ../../mod/profiles.php:395 ../../mod/profiles.php:437 +msgid "New profile created." +msgstr "Nova profilo kreita." + +#: ../../mod/profiles.php:416 +msgid "Profile unavailable to clone." +msgstr "Ne eblas kopii profilon." + +#: ../../mod/profiles.php:474 +msgid "Hide your contact/friend list from viewers of this profile?" +msgstr "Kaŝi vian liston de kontaktoj/amikoj al vidantoj de ĉi-tio profilo?" + +#: ../../mod/profiles.php:497 +msgid "Edit Profile Details" +msgstr "Redakti Detalojn de Profilo" + +#: ../../mod/profiles.php:499 +msgid "View this profile" +msgstr "Vidi la profilon." + +#: ../../mod/profiles.php:500 +msgid "Create a new profile using these settings" +msgstr "Krei novan profilon kun tiaj agordoj" + +#: ../../mod/profiles.php:501 +msgid "Clone this profile" +msgstr "Kopii ĉi tiun profilon" + +#: ../../mod/profiles.php:502 +msgid "Delete this profile" +msgstr "Forviŝi ĉi tiun profilon" + +#: ../../mod/profiles.php:503 +msgid "Profile Name:" +msgstr "Nomo de Profilo:" + +#: ../../mod/profiles.php:504 +msgid "Your Full Name:" +msgstr "Via Plena Nomo:" + +#: ../../mod/profiles.php:505 +msgid "Title/Description:" +msgstr "Titolo/Priskribo:" + +#: ../../mod/profiles.php:506 +msgid "Your Gender:" +msgstr "Via Sekso:" + +#: ../../mod/profiles.php:507 +#, php-format +msgid "Birthday (%s):" +msgstr "Naskiĝtago (%s):" + +#: ../../mod/profiles.php:508 +msgid "Street Address:" +msgstr "Adreso:" + +#: ../../mod/profiles.php:509 +msgid "Locality/City:" +msgstr "Urbo:" + +#: ../../mod/profiles.php:510 +msgid "Postal/Zip Code:" +msgstr "Poŝtkodo:" + +#: ../../mod/profiles.php:511 +msgid "Country:" +msgstr "Lando:" + +#: ../../mod/profiles.php:512 +msgid "Region/State:" +msgstr "Ŝtato:" + +#: ../../mod/profiles.php:513 +msgid " Marital Status:" +msgstr " Civita Stato:" + +#: ../../mod/profiles.php:514 +msgid "Who: (if applicable)" +msgstr "Kiu (se aplikeble):" + +#: ../../mod/profiles.php:515 +msgid "Examples: cathy123, Cathy Williams, cathy@example.com" +msgstr "Ekzemploj: cathy123, Cathy Williams, cathy@example.com" + +#: ../../mod/profiles.php:516 ../../include/profile_advanced.php:43 +msgid "Sexual Preference:" +msgstr "Seksa Prefero:" + +#: ../../mod/profiles.php:517 +msgid "Homepage URL:" +msgstr "Adreso de Hejmpaĝo:" + +#: ../../mod/profiles.php:518 ../../include/profile_advanced.php:49 +msgid "Political Views:" +msgstr "Politikaj Opinioj:" + +#: ../../mod/profiles.php:519 +msgid "Religious Views:" +msgstr "Religiaj Opinioj:" + +#: ../../mod/profiles.php:520 +msgid "Public Keywords:" +msgstr "Publikaj ŝlosilvortoj:" + +#: ../../mod/profiles.php:521 +msgid "Private Keywords:" +msgstr "Privataj ŝlosilvortoj:" + +#: ../../mod/profiles.php:522 +msgid "Example: fishing photography software" +msgstr "Ekzemple: fiŝkapti fotografio programaro" + +#: ../../mod/profiles.php:523 +msgid "(Used for suggesting potential friends, can be seen by others)" +msgstr "(Por sugesti amikoj. Videbla al aliaj.)" + +#: ../../mod/profiles.php:524 +msgid "(Used for searching profiles, never shown to others)" +msgstr "(Por serĉi profilojn. Neniam videbla al aliaj.)" + +#: ../../mod/profiles.php:525 +msgid "Tell us about yourself..." +msgstr "Diru al ni pri vi..." + +#: ../../mod/profiles.php:526 +msgid "Hobbies/Interests" +msgstr "Ŝatokupoj/Interesoj" + +#: ../../mod/profiles.php:527 +msgid "Contact information and Social Networks" +msgstr "Kontaktaj informoj kaj Interkonaj Retejoj" + +#: ../../mod/profiles.php:528 +msgid "Musical interests" +msgstr "Muzikaj interesoj" + +#: ../../mod/profiles.php:529 +msgid "Books, literature" +msgstr "Libroj, literaturo" + +#: ../../mod/profiles.php:530 +msgid "Television" +msgstr "Televido" + +#: ../../mod/profiles.php:531 +msgid "Film/dance/culture/entertainment" +msgstr "Filmoj/dancoj/arto/amuzaĵoj" + +#: ../../mod/profiles.php:532 +msgid "Love/romance" +msgstr "Amo/romanco" + +#: ../../mod/profiles.php:533 +msgid "Work/employment" +msgstr "Laboro" + +#: ../../mod/profiles.php:534 +msgid "School/education" +msgstr "Lernejo/eduko" + +#: ../../mod/profiles.php:539 +msgid "" +"This is your public profile.
    It may " +"be visible to anybody using the internet." +msgstr "Ĉi tio estas via publika profilo. Ĝi eble estas videbla al ĉiuj en interreto. " + +#: ../../mod/profiles.php:549 ../../mod/directory.php:111 +msgid "Age: " +msgstr "Aĝo:" + +#: ../../mod/profiles.php:584 +msgid "Edit/Manage Profiles" +msgstr "Redakti/administri Profilojn" + +#: ../../mod/profiles.php:585 ../../boot.php:1049 +msgid "Change profile photo" +msgstr "Ŝanĝi profilbildon" + +#: ../../mod/profiles.php:586 ../../boot.php:1050 +msgid "Create New Profile" +msgstr "Krei novan profilon" + +#: ../../mod/profiles.php:597 ../../boot.php:1060 +msgid "Profile Image" +msgstr "Profilbildo" + +#: ../../mod/profiles.php:599 ../../boot.php:1063 +msgid "visible to everybody" +msgstr "videbla al ĉiuj" + +#: ../../mod/profiles.php:600 ../../boot.php:1064 +msgid "Edit visibility" +msgstr "Redakti videblecon" + +#: ../../mod/filer.php:29 ../../include/conversation.php:914 +msgid "Save to Folder:" +msgstr "Konservi en Dosierujo:" + +#: ../../mod/filer.php:29 +msgid "- select -" +msgstr "- elekti -" + +#: ../../mod/tagger.php:103 ../../include/conversation.php:138 +#, php-format +msgid "%1$s tagged %2$s's %3$s with %4$s" +msgstr "%1$s markis la %3$s de %2$s kun %4$s" + +#: ../../mod/delegate.php:95 +msgid "No potential page delegates located." +msgstr "Ne trovis delegiteblajn paĝojn." + +#: ../../mod/delegate.php:121 +msgid "Delegate Page Management" +msgstr "Administrado de Delegitajn Paĝojn" + +#: ../../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 "Delegitoj povas administri ĉiujn ecojn de la konto/paĝo, escepte bazaj kontoagordoj. Bonvolu ne delegitigi vian personan konton al iu al kiu vi ne plene fidas." + +#: ../../mod/delegate.php:124 +msgid "Existing Page Managers" +msgstr "Estantaj Administrantoj de la Paĝo" + +#: ../../mod/delegate.php:126 +msgid "Existing Page Delegates" +msgstr "Estantaj Delegitoj de la Paĝo" + +#: ../../mod/delegate.php:128 +msgid "Potential Delegates" +msgstr "Eblaj Delegitoj" + +#: ../../mod/delegate.php:131 +msgid "Add" +msgstr "Aldoni" + +#: ../../mod/delegate.php:132 +msgid "No entries." +msgstr "Neniom da afiŝoj." + +#: ../../mod/suggest.php:38 ../../view/theme/diabook-red/theme.php:149 +#: ../../view/theme/diabook-blue/theme.php:149 +#: ../../view/theme/diabook/theme.php:155 +#: ../../view/theme/diabook-aerith/theme.php:150 +#: ../../include/contact_widgets.php:34 +msgid "Friend Suggestions" +msgstr "Amikosugestoj." + +#: ../../mod/suggest.php:44 +msgid "" +"No suggestions available. If this is a new site, please try again in 24 " +"hours." +msgstr "Neniu sugestoj disponeblas. Se ĉi tiu estas nova retejo, bonvolu reprovi post 24 horoj." + +#: ../../mod/suggest.php:61 +msgid "Ignore/Hide" +msgstr "Ignori/Kaŝi" + +#: ../../mod/directory.php:47 ../../view/theme/diabook-red/theme.php:147 +#: ../../view/theme/diabook-blue/theme.php:147 +#: ../../view/theme/diabook/theme.php:153 +#: ../../view/theme/diabook-aerith/theme.php:148 +msgid "Global Directory" +msgstr "Tutmonda Katalogo" + +#: ../../mod/directory.php:55 +msgid "Find on this site" +msgstr "Trovi en ĉi retejo" + +#: ../../mod/directory.php:58 +msgid "Site Directory" +msgstr "Reteja Katalogo" + +#: ../../mod/directory.php:114 +msgid "Gender: " +msgstr "Sekso:" + +#: ../../mod/directory.php:140 +msgid "No entries (some entries may be hidden)." +msgstr "Neniom da afiŝoj (kelkaj afiŝoj eble ne estas videbla)." + +#: ../../mod/invite.php:35 +#, php-format +msgid "%s : Not a valid email address." +msgstr "%s: Ne estas valida retpoŝtadreso." + +#: ../../mod/invite.php:59 +msgid "Please join us on Friendica" +msgstr "Bonvolu aliĝi kun ni ĉe Friendica" + +#: ../../mod/invite.php:69 +#, php-format +msgid "%s : Message delivery failed." +msgstr "%s: La livero de la mesaĝo malsukcesis." + +#: ../../mod/invite.php:73 +#, php-format +msgid "%d message sent." +msgid_plural "%d messages sent." +msgstr[0] "Sendis %d mesaĝon." +msgstr[1] "Sendis %d mesaĝojn." + +#: ../../mod/invite.php:92 +msgid "You have no more invitations available" +msgstr "Vi ne plu disponeblas invitaĵojn" + +#: ../../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 "Vizitu %s por listo de publikaj retejoj kie vi povas aliĝi. Anoj de Friendica ĉe aliaj retejoj povas konekti unu kun la alian, kaj ankaŭ kun membroj de multaj aliaj retejoj." + +#: ../../mod/invite.php:102 +#, php-format +msgid "" +"To accept this invitation, please visit and register at %s or any other " +"public Friendica website." +msgstr "Por akcepti ĉi tiu invito, bonvolu viziti kaj registriĝi ĉe %s au alia publika Friendica retejo." + +#: ../../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 "Ĉiuj Friendica retejoj interkonektiĝas kaj kune faras grandan altprivatecan interkonan reton, kiun posedas kaj kontrolas ĝiaj membroj. Ili ankaŭ povas konekti kun multe de tradiciaj interkonaj retejoj. Vidu %s por listo de publikaj retejoj kie vi povas aliĝi." + +#: ../../mod/invite.php:106 +msgid "" +"Our apologies. This system is not currently configured to connect with other" +" public sites or invite members." +msgstr "Senkulpigu nin. La sistemo nuntempe ne estas agordita por konekti al aliaj retejoj au inviti membrojn." + +#: ../../mod/invite.php:111 +msgid "Send invitations" +msgstr "Sendi invitojn" + +#: ../../mod/invite.php:112 +msgid "Enter email addresses, one per line:" +msgstr "Entajpu retpoŝtadresojn, po unu por ĉiu linio." + +#: ../../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 "Ni bonkore invitas vin aliĝi kun ni kaj aliaj bonaj amikoj ĉe Friendica. Helpu nin krei pli bonan interkonan reton." + +#: ../../mod/invite.php:116 +msgid "You will need to supply this invitation code: $invite_code" +msgstr "Vi bezonas ĉi-tiun invitkodon: $invite_code" + +#: ../../mod/invite.php:116 +msgid "" +"Once you have registered, please connect with me via my profile page at:" +msgstr "Kiam vi registris, bonvolu konekti al mi tra mi profilo ĉe: " + +#: ../../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 "Por pli da informoj pri Friendica, kaj kial ni pensas ke ĝi estas grava, bonvolu viziti http://friendica.com" + +#: ../../mod/dfrn_confirm.php:119 +msgid "" +"This may occasionally happen if contact was requested by both persons and it" +" has already been approved." +msgstr "Tio ĉi okazis de tempo al tempo se ambaŭ personoj petas kontakton ka ĝi jam estas aprobita." + +#: ../../mod/dfrn_confirm.php:242 +msgid "Response from remote site was not understood." +msgstr "Ne komprenis la rispondon de la fora retejo." + +#: ../../mod/dfrn_confirm.php:251 +msgid "Unexpected response from remote site: " +msgstr "Neatendita rispondo de la fora retejo:" + +#: ../../mod/dfrn_confirm.php:259 +msgid "Confirmation completed successfully." +msgstr "Konfirmo sukcese kompletigita." + +#: ../../mod/dfrn_confirm.php:261 ../../mod/dfrn_confirm.php:275 +#: ../../mod/dfrn_confirm.php:282 +msgid "Remote site reported: " +msgstr "La fora retejo raportis:" + +#: ../../mod/dfrn_confirm.php:273 +msgid "Temporary failure. Please wait and try again." +msgstr "Dumtempa eraro. Bonvolu atendi kaj provi refoje." + +#: ../../mod/dfrn_confirm.php:280 +msgid "Introduction failed or was revoked." +msgstr "La prezento malsukcesis au estas revokita." + +#: ../../mod/dfrn_confirm.php:425 +msgid "Unable to set contact photo." +msgstr "Neeblas agordi la kontaktbildo." + +#: ../../mod/dfrn_confirm.php:477 ../../include/diaspora.php:507 +#: ../../include/conversation.php:101 +#, php-format +msgid "%1$s is now friends with %2$s" +msgstr "%1$s amikiĝis kun %2$s" + +#: ../../mod/dfrn_confirm.php:548 +#, php-format +msgid "No user record found for '%s' " +msgstr "Ne trovis uzanton '%s' " + +#: ../../mod/dfrn_confirm.php:558 +msgid "Our site encryption key is apparently messed up." +msgstr "Ŝajnas kvazaŭ la ĉifroŝlosilo de nia retejo estas fuŝita." + +#: ../../mod/dfrn_confirm.php:569 +msgid "Empty site URL was provided or URL could not be decrypted by us." +msgstr "Malplena adreso de retejo provizita, aŭ ni ne povis malĉifri la adreson." + +#: ../../mod/dfrn_confirm.php:590 +msgid "Contact record was not found for you on our site." +msgstr "Kontakto ne trovita por vi en via retejo." + +#: ../../mod/dfrn_confirm.php:604 +#, php-format +msgid "Site public key not available in contact record for URL %s." +msgstr "Publika ŝlosilo de retejo ne disponeblas en la kontaktrikordo por la URL adreso %s." + +#: ../../mod/dfrn_confirm.php:624 +msgid "" +"The ID provided by your system is a duplicate on our system. It should work " +"if you try again." +msgstr "La identeco provizita de via sistemo estas duoblo ĉe nia sistemo. Ĝi eble funkcias se vi provas refoje." + +#: ../../mod/dfrn_confirm.php:635 +msgid "Unable to set your contact credentials on our system." +msgstr "Ne sukcesis agordi la legitimaĵojn de via kontakto ĉe nia sistemo." + +#: ../../mod/dfrn_confirm.php:700 +msgid "Unable to update your contact profile details on our system" +msgstr "Neeblas ĝisdatigi viajn profildetalojn ĉe nia sistemo." + +#: ../../mod/dfrn_confirm.php:730 +#, php-format +msgid "Connection accepted at %s" +msgstr "Konekto akceptita je %s" + +#: ../../addon/facebook/facebook.php:467 +msgid "Facebook disabled" +msgstr "Facebook malŝaltita" + +#: ../../addon/facebook/facebook.php:472 +msgid "Updating contacts" +msgstr "Mi ĝisdatigas la kontaktojn." + +#: ../../addon/facebook/facebook.php:493 +msgid "Facebook API key is missing." +msgstr "La API ŝlosilo de Facebook ne estas konata ĉi tie." + +#: ../../addon/facebook/facebook.php:500 +msgid "Facebook Connect" +msgstr "Kontekto al Facebook" + +#: ../../addon/facebook/facebook.php:506 +msgid "Install Facebook connector for this account." +msgstr "Instali la Facebook konektilo por ĉi tiu konto." + +#: ../../addon/facebook/facebook.php:513 +msgid "Remove Facebook connector" +msgstr "Forigi la Facebook konektilon." + +#: ../../addon/facebook/facebook.php:518 +msgid "" +"Re-authenticate [This is necessary whenever your Facebook password is " +"changed.]" +msgstr "Reaŭtentiĝi [Tio estas bezonata ĉiam kiam vi ŝanĝis vian pasvorton ĉe Facebook.]" + +#: ../../addon/facebook/facebook.php:525 +msgid "Post to Facebook by default" +msgstr "Ĉiam afiŝi al Facebook." + +#: ../../addon/facebook/facebook.php:529 +msgid "Link all your Facebook friends and conversations on this website" +msgstr "Alligu ĉiujn viajn Facebook amikojn kaj konversaciojn je ĉi-tiu retejo." + +#: ../../addon/facebook/facebook.php:531 +msgid "" +"Facebook conversations consist of your profile wall and your friend" +" stream." +msgstr "Facebok konversacioj konsistas el via profilmuro kaj la fluo de viaj amikoj." + +#: ../../addon/facebook/facebook.php:532 +msgid "On this website, your Facebook friend stream is only visible to you." +msgstr "Je ĉi-tiu retejo, la fluo de viaj amikoj ĉe Facebook nur videblas al vi." + +#: ../../addon/facebook/facebook.php:533 +msgid "" +"The following settings determine the privacy of your Facebook profile wall " +"on this website." +msgstr "La sekvontaj agordoj difinas la privatecon de via Facebook profilmuro je ĉi-tiu retejo." + +#: ../../addon/facebook/facebook.php:537 +msgid "" +"On this website your Facebook profile wall conversations will only be " +"visible to you" +msgstr "Je ĉi-tiu retejo, la conversacioj sur via Facebook profilmuro nur videblas al vi." + +#: ../../addon/facebook/facebook.php:542 +msgid "Do not import your Facebook profile wall conversations" +msgstr "Ne importi konversaciojn de via Facebook profilmuro" + +#: ../../addon/facebook/facebook.php:544 +msgid "" +"If you choose to link conversations and leave both of these boxes unchecked," +" your Facebook profile wall will be merged with your profile wall on this " +"website and your privacy settings on this website will be used to determine " +"who may see the conversations." +msgstr "Se vi elektas alligi conversaciojn kaj ne elektas tiujn butonojn, via Facebook profilmuro estas kunigota kun via profilmuro ĉi tie. Viaj privatecaj agordoj ĉi tie difinos kiu povas vidi la coversaciojn." + +#: ../../addon/facebook/facebook.php:549 +msgid "Comma separated applications to ignore" +msgstr "Ignorotaj programoj, disigita per komo" + +#: ../../addon/facebook/facebook.php:623 +msgid "Problems with Facebook Real-Time Updates" +msgstr "Problemoj kun Facebook Realtempaj Ĝisdatigoj" + +#: ../../addon/facebook/facebook.php:647 +#: ../../include/contact_selectors.php:81 +msgid "Facebook" +msgstr "Facebook" + +#: ../../addon/facebook/facebook.php:648 +msgid "Facebook Connector Settings" +msgstr "Agordoj por la Facebook konektilo" + +#: ../../addon/facebook/facebook.php:659 +msgid "Facebook API Key" +msgstr "Facebook API ŝlosilo" + +#: ../../addon/facebook/facebook.php:668 +msgid "" +"Error: it appears that you have specified the App-ID and -Secret in your " +".htconfig.php file. As long as they are specified there, they cannot be set " +"using this form.

    " +msgstr "Eraro: Ŝajnas kvazaŭ vi agordis la App-ID kaj la sekreton en via .htconfig.php dosiero. Kiam ili estas agordita tie, vi ne povas agordi ĝin tra tiu ĉi formo.

    " + +#: ../../addon/facebook/facebook.php:673 +msgid "" +"Error: the given API Key seems to be incorrect (the application access token" +" could not be retrieved)." +msgstr "Eraro: La API ŝlosilo aspektas malĝusta (ne eblas ricevi la programa atingoĵetono)." + +#: ../../addon/facebook/facebook.php:675 +msgid "The given API Key seems to work correctly." +msgstr "La API ŝlosilo ŝajne ĝuste funkcias." + +#: ../../addon/facebook/facebook.php:677 +msgid "" +"The correctness of the API Key could not be detected. Somthing strange's " +"going on." +msgstr "Ne povis kontroli la ĝustecon de la API ŝlosilo. Ia stranga afero okazas. " + +#: ../../addon/facebook/facebook.php:680 +msgid "App-ID / API-Key" +msgstr "Programo ID / API Ŝlosilo" + +#: ../../addon/facebook/facebook.php:681 +msgid "Application secret" +msgstr "Programo sekreto" + +#: ../../addon/facebook/facebook.php:682 +#, php-format +msgid "Polling Interval (min. %1$s minutes)" +msgstr "Intervalo por la enketilo (poller intervalo, minimume %1$s mintuoj) " + +#: ../../addon/facebook/facebook.php:686 +msgid "Real-Time Updates" +msgstr "Realtempaj Ĝisdatigoj" + +#: ../../addon/facebook/facebook.php:690 +msgid "Real-Time Updates are activated." +msgstr "Realtempaj Ĝisdatigoj estas ŝaltita" + +#: ../../addon/facebook/facebook.php:691 +msgid "Deactivate Real-Time Updates" +msgstr "Malŝalti Realtempaj Ĝisdatigoj" + +#: ../../addon/facebook/facebook.php:693 +msgid "Real-Time Updates not activated." +msgstr "Realtempaj Ĝisdatigoj estas malŝaltita" + +#: ../../addon/facebook/facebook.php:693 +msgid "Activate Real-Time Updates" +msgstr "Ŝalti Realtempaj Ĝisdatigoj" + +#: ../../addon/facebook/facebook.php:707 +msgid "The new values have been saved." +msgstr "Konservis novajn valorojn." + +#: ../../addon/facebook/facebook.php:726 +msgid "Post to Facebook" +msgstr "Afiŝi al Facebook" + +#: ../../addon/facebook/facebook.php:818 +msgid "" +"Post to Facebook cancelled because of multi-network access permission " +"conflict." +msgstr "Afiŝado al Facebook nuligita ĉar okazis konflikto en la multretpermesoj." + +#: ../../addon/facebook/facebook.php:1039 +msgid "View on Friendica" +msgstr "Vidi ĉe Friendica" + +#: ../../addon/facebook/facebook.php:1072 +msgid "Facebook post failed. Queued for retry." +msgstr "Malsukcesis afiŝi ĉe Facebook. Enigita en vico." + +#: ../../addon/facebook/facebook.php:1108 +msgid "Your Facebook connection became invalid. Please Re-authenticate." +msgstr "Via Facbook konekto iĝis nevalida. Bonvolu reaŭtentiĝi." + +#: ../../addon/facebook/facebook.php:1109 +msgid "Facebook connection became invalid" +msgstr "Facebook konekto iĝis nevalida." + +#: ../../addon/facebook/facebook.php:1110 +#, 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 "Saluton %1$s,\n\nla kontekto inter viaj kontoj ĉe %2$s kaj Facebook malvalidiĝis. Tio kutime okazas post kiam via ŝangas vian pasvorton ĉe Facebook. Por reaktivigi la konekto, vi bezonas %3$sreaŭtentiĝi la Facebook konektilon%4$s." + +#: ../../addon/widgets/widget_like.php:58 +#, php-format +msgid "%d person likes this" +msgid_plural "%d people like this" +msgstr[0] "%d homo ŝatas tiun" +msgstr[1] "%d homoj ŝatas tiun" + +#: ../../addon/widgets/widget_like.php:61 +#, php-format +msgid "%d person doesn't like this" +msgid_plural "%d people don't like this" +msgstr[0] "%d homo malŝatas tiun" +msgstr[1] "%d homo malŝatas tiun" + +#: ../../addon/widgets/widgets.php:56 +msgid "Generate new key" +msgstr "Generi novan ĉifroŝlosilon" + +#: ../../addon/widgets/widgets.php:59 +msgid "Widgets key" +msgstr "Ŝlosilo por fenestraĵoj" + +#: ../../addon/widgets/widgets.php:61 +msgid "Widgets available" +msgstr "Disponeblaj fenestraĵoj" + +#: ../../addon/widgets/widget_friends.php:40 +msgid "Connect on Friendica!" +msgstr "Konekti ĉe Friendica!" + +#: ../../addon/yourls/yourls.php:55 +msgid "YourLS Settings" +msgstr "\"YourLS\" Agordoj" + +#: ../../addon/yourls/yourls.php:57 +msgid "URL: http://" +msgstr "URL adreso: http://" + +#: ../../addon/yourls/yourls.php:62 +msgid "Username:" +msgstr "Salutnomo:" + +#: ../../addon/yourls/yourls.php:67 +msgid "Password:" +msgstr "Pasvorto:" + +#: ../../addon/yourls/yourls.php:72 +msgid "Use SSL " +msgstr "Uzi SSL " + +#: ../../addon/yourls/yourls.php:92 +msgid "yourls Settings saved." +msgstr "Konservis la agordojn de YourLS." + +#: ../../addon/ljpost/ljpost.php:39 +msgid "Post to LiveJournal" +msgstr "Afiŝi ĉe LiveJournal" + +#: ../../addon/ljpost/ljpost.php:70 +msgid "LiveJournal Post Settings" +msgstr "Agordoj pri afiŝoj ĉe LiveJournal" + +#: ../../addon/ljpost/ljpost.php:72 +msgid "Enable LiveJournal Post Plugin" +msgstr "Ŝalti la LiveJournal-afiŝo kromprogramon." + +#: ../../addon/ljpost/ljpost.php:77 +msgid "LiveJournal username" +msgstr "LiveJournal Salutnomo" + +#: ../../addon/ljpost/ljpost.php:82 +msgid "LiveJournal password" +msgstr "LiveJournal pasvorto" + +#: ../../addon/ljpost/ljpost.php:87 +msgid "Post to LiveJournal by default" +msgstr "Defaŭlte afiŝi al LiveJournal" + +#: ../../addon/nsfw/nsfw.php:47 +msgid "Not Safe For Work (General Purpose Content Filter) settings" +msgstr "Not Safe For Work (ĝenerala filtrilo por enhavoj) agordoj" + +#: ../../addon/nsfw/nsfw.php:49 +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 "Tiu kromprogramo serĉas la malsupre agordatajn vortojn en afiŝoj kaj malvidebligis ilin se ili enhavas iun vorton. Tiel, afiŝoj ne montriĝis kiuj enhavas maladekvatan enhavon, ekzemple seksumaj aferoj, kiuj ne estas adekvata, ekzemple en la laborejo. En la reto, oni kutime markas tiajn afiŝojn #NSFW - Not Safe For Work - ne adekvata por la laborejo. La filtrilo ankaŭ serĉas ĉiujn vortojn kiujn vi agordas kaj tial funkcias kiel ĝenerala filtrilo." + +#: ../../addon/nsfw/nsfw.php:50 +msgid "Enable Content filter" +msgstr "Ŝalti la filtrilo por la enhavo" + +#: ../../addon/nsfw/nsfw.php:53 +msgid "Comma separated list of keywords to hide" +msgstr "Perkome disigita listo da kaŝontaj ŝlosilvortoj" + +#: ../../addon/nsfw/nsfw.php:58 +msgid "Use /expression/ to provide regular expressions" +msgstr "Uzu /expr/ por provizi regulajn esprimojn." + +#: ../../addon/nsfw/nsfw.php:74 +msgid "NSFW Settings saved." +msgstr "NSFW agordoj konservitaj." + +#: ../../addon/nsfw/nsfw.php:120 +#, php-format +msgid "%s - Click to open/close" +msgstr "%s - Klaku por malfermi/fermi" + +#: ../../addon/page/page.php:47 +msgid "Forums" +msgstr "Forumoj" + +#: ../../addon/planets/planets.php:150 +msgid "Planets Settings" +msgstr "Agordo pri Planets" + +#: ../../addon/planets/planets.php:152 +msgid "Enable Planets Plugin" +msgstr "Ŝalti la Planets kromprogamon" + +#: ../../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:796 +msgid "Login" +msgstr "Ensaluti" + +#: ../../addon/communityhome/communityhome.php:29 +#: ../../addon/communityhome/twillingham/communityhome.php:29 +msgid "OpenID" +msgstr "OpenID" + +#: ../../addon/communityhome/communityhome.php:38 +#: ../../addon/communityhome/twillingham/communityhome.php:38 +msgid "Latest users" +msgstr "Ĵusaj uzantoj" + +#: ../../addon/communityhome/communityhome.php:81 +#: ../../addon/communityhome/twillingham/communityhome.php:81 +msgid "Most active users" +msgstr "Plej aktivaj uzantoj" + +#: ../../addon/communityhome/communityhome.php:98 +msgid "Latest photos" +msgstr "Ĵusaj bildoj" + +#: ../../addon/communityhome/communityhome.php:133 +msgid "Latest likes" +msgstr "Ĵusaj ŝatitaĵoj" + +#: ../../addon/communityhome/communityhome.php:155 +#: ../../view/theme/diabook-red/theme.php:77 +#: ../../view/theme/diabook-blue/theme.php:77 +#: ../../view/theme/diabook/theme.php:83 +#: ../../view/theme/diabook-aerith/theme.php:78 ../../include/text.php:1302 +#: ../../include/conversation.php:45 ../../include/conversation.php:118 +msgid "event" +msgstr "okazo" + +#: ../../addon/uhremotestorage/uhremotestorage.php:84 +#, php-format +msgid "" +"Allow to use your friendica id (%s) to connecto to external unhosted-enabled" +" storage (like ownCloud). See RemoteStorage" +" WebFinger" +msgstr "Permesi vian identecon ĉe Friendica (%s) por konekti al eksteraj konservejoj subtenata de unhosted (ekz. OwnCloud). Vidu RemoteStorage WebFinger" + +#: ../../addon/uhremotestorage/uhremotestorage.php:85 +msgid "Template URL (with {category})" +msgstr "URL adreso de ŝablono (kun {category})" + +#: ../../addon/uhremotestorage/uhremotestorage.php:86 +msgid "OAuth end-point" +msgstr "OAuth finpunkto" + +#: ../../addon/uhremotestorage/uhremotestorage.php:87 +msgid "Api" +msgstr "Api" + +#: ../../addon/membersince/membersince.php:18 +msgid "Member since:" +msgstr "Membro ekde:" + +#: ../../addon/tictac/tictac.php:20 +msgid "Three Dimensional Tic-Tac-Toe" +msgstr "Tri-dimensia Tiktakto" + +#: ../../addon/tictac/tictac.php:53 +msgid "3D Tic-Tac-Toe" +msgstr "3D Tiktakto" + +#: ../../addon/tictac/tictac.php:58 +msgid "New game" +msgstr "Nova ludo" + +#: ../../addon/tictac/tictac.php:59 +msgid "New game with handicap" +msgstr "Nova ludo kun handikapo" + +#: ../../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 "Tri-dimensia tiktakto similas la tradician ludon, sed estas ludata sur pluraj ebenoj dum la sama tempo." + +#: ../../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 "Ĉi-kaze ekzistas tri ebenoj. Vi venkas vicigante tri signojn en una vico, en la sama ebeno, same kiel supren, malsupren aŭ diagonale, trans la ebenoj." + +#: ../../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 "La ludo kun handikapo malvalidigas la mezan pozicion sur la meza ebeno, ĉar la ludisto kio okupas ĉi tiun pozicion ĉiam havas avantaĝon." + +#: ../../addon/tictac/tictac.php:182 +msgid "You go first..." +msgstr "Estas via vico unue." + +#: ../../addon/tictac/tictac.php:187 +msgid "I'm going first this time..." +msgstr "Ĉi-tempe, unue estas mia vico." + +#: ../../addon/tictac/tictac.php:193 +msgid "You won!" +msgstr "Vi venkis!" + +#: ../../addon/tictac/tictac.php:199 ../../addon/tictac/tictac.php:224 +msgid "\"Cat\" game!" +msgstr "Sendecida ludo!" + +#: ../../addon/tictac/tictac.php:222 +msgid "I won!" +msgstr "Mi venkis!" + +#: ../../addon/randplace/randplace.php:169 +msgid "Randplace Settings" +msgstr "Randplace agordoj." + +#: ../../addon/randplace/randplace.php:171 +msgid "Enable Randplace Plugin" +msgstr "Aktivigi la Randplace kromprogramon." + +#: ../../addon/dwpost/dwpost.php:39 +msgid "Post to Dreamwidth" +msgstr "Afiŝi al Dreamwidth" + +#: ../../addon/dwpost/dwpost.php:70 +msgid "Dreamwidth Post Settings" +msgstr "Agordoj por Afiŝoj al Dreamwidth" + +#: ../../addon/dwpost/dwpost.php:72 +msgid "Enable dreamwidth Post Plugin" +msgstr "Ŝalti la Dreamwidth Kromprogramon" + +#: ../../addon/dwpost/dwpost.php:77 +msgid "dreamwidth username" +msgstr "Dreamwidth salutnomo" + +#: ../../addon/dwpost/dwpost.php:82 +msgid "dreamwidth password" +msgstr "Dreamwidth pasvorto" + +#: ../../addon/dwpost/dwpost.php:87 +msgid "Post to dreamwidth by default" +msgstr "Defaŭlte afiŝi al Dreamwidth" + +#: ../../addon/drpost/drpost.php:35 +msgid "Post to Drupal" +msgstr "Afiŝi al Drupal" + +#: ../../addon/drpost/drpost.php:72 +msgid "Drupal Post Settings" +msgstr "Agordoj por Drupal Afiŝoj" + +#: ../../addon/drpost/drpost.php:74 +msgid "Enable Drupal Post Plugin" +msgstr "Ŝalti la Drupal-afiŝo Kromprogramon" + +#: ../../addon/drpost/drpost.php:79 +msgid "Drupal username" +msgstr "Drupal salutnomo" + +#: ../../addon/drpost/drpost.php:84 +msgid "Drupal password" +msgstr "Drupal pasvorto" + +#: ../../addon/drpost/drpost.php:89 +msgid "Post Type - article,page,or blog" +msgstr "Tipo de Afiŝoj - article, page, aŭ blog" + +#: ../../addon/drpost/drpost.php:94 +msgid "Drupal site URL" +msgstr "URL adreso de Drupal retejo" + +#: ../../addon/drpost/drpost.php:99 +msgid "Drupal site uses clean URLS" +msgstr "Drupal retejo uzas purajn URL adresojn" + +#: ../../addon/drpost/drpost.php:104 +msgid "Post to Drupal by default" +msgstr "Defaŭlte afiŝi ĉe Drupal" + +#: ../../addon/drpost/drpost.php:184 ../../addon/wppost/wppost.php:190 +#: ../../addon/blogger/blogger.php:172 ../../addon/posterous/posterous.php:173 +msgid "Post from Friendica" +msgstr "Afiŝo de Friendica" + +#: ../../addon/geonames/geonames.php:143 +msgid "Geonames settings updated." +msgstr "Ĝidatigis la Geonames agordojn." + +#: ../../addon/geonames/geonames.php:179 +msgid "Geonames Settings" +msgstr "Geonames Agordoj" + +#: ../../addon/geonames/geonames.php:181 +msgid "Enable Geonames Plugin" +msgstr "Ŝalti la Geonames Kromprogramon" + +#: ../../addon/js_upload/js_upload.php:43 +msgid "Upload a file" +msgstr "Alŝuti dosieron" + +#: ../../addon/js_upload/js_upload.php:44 +msgid "Drop files here to upload" +msgstr "Ŝovmeti dosierojn ĉi tie por alŝuti ilin." + +#: ../../addon/js_upload/js_upload.php:46 +msgid "Failed" +msgstr "Malsukcesi" + +#: ../../addon/js_upload/js_upload.php:297 +msgid "No files were uploaded." +msgstr "Neniom da dosieroj alŝutita." + +#: ../../addon/js_upload/js_upload.php:303 +msgid "Uploaded file is empty" +msgstr "Alŝutita dosiero estas malplena." + +#: ../../addon/js_upload/js_upload.php:326 +msgid "File has an invalid extension, it should be one of " +msgstr "Dosiero havas nevalidan sufikson. Ĝi estu unu de " + +#: ../../addon/js_upload/js_upload.php:337 +msgid "Upload was cancelled, or server error encountered" +msgstr "Alŝutado estas nuligita aŭ okazis eraro sur la servilo" + +#: ../../addon/oembed.old/oembed.php:30 +msgid "OEmbed settings updated" +msgstr "Ĝisdatigis OEmbed agordojn" + +#: ../../addon/oembed.old/oembed.php:43 +msgid "Use OEmbed for YouTube videos" +msgstr "Uzi OEmbed por YouTube videtoj" + +#: ../../addon/oembed.old/oembed.php:71 +msgid "URL to embed:" +msgstr "Enigi la URL adreson:" + +#: ../../addon/impressum/impressum.php:34 +msgid "Impressum" +msgstr "Kolofono" + +#: ../../addon/impressum/impressum.php:47 +#: ../../addon/impressum/impressum.php:49 +#: ../../addon/impressum/impressum.php:81 +msgid "Site Owner" +msgstr "Proprietulo de la laĝo" + +#: ../../addon/impressum/impressum.php:47 +#: ../../addon/impressum/impressum.php:85 +msgid "Email Address" +msgstr "Retpoŝta Adreso" + +#: ../../addon/impressum/impressum.php:52 +#: ../../addon/impressum/impressum.php:83 +msgid "Postal Address" +msgstr "Poŝta Adreso" + +#: ../../addon/impressum/impressum.php:58 +msgid "" +"The impressum addon needs to be configured!
    Please add at least the " +"owner variable to your config file. For other variables please " +"refer to the README file of the addon." +msgstr "La kolofono (impressum) kromprogramo bezonas agordojn!
    Bonvolu aldoni minimume la owner variablon al via agorda dosiero. Por aliaj variabloj, bonvolu legi la README dosieron de la kromprogramo." + +#: ../../addon/impressum/impressum.php:81 +msgid "The page operators name." +msgstr "La nomo de la funkciigisto de la retejo." + +#: ../../addon/impressum/impressum.php:82 +msgid "Site Owners Profile" +msgstr "Profilo de la Proprietulo de la Retejo" + +#: ../../addon/impressum/impressum.php:82 +msgid "Profile address of the operator." +msgstr "La profilo de la funkciigisto de la retejo." + +#: ../../addon/impressum/impressum.php:83 +msgid "How to contact the operator via snail mail." +msgstr "Kiel kontakti la funkciigiston de la retejo tra paperpoŝto." + +#: ../../addon/impressum/impressum.php:84 +msgid "Notes" +msgstr "Notoj" + +#: ../../addon/impressum/impressum.php:84 +msgid "Additional notes that are displayed beneath the contact information." +msgstr "Pliaj notoj kiuj estas montrigota malsupre la kontaktinformojn." + +#: ../../addon/impressum/impressum.php:85 +msgid "How to contact the operator via email. (will be displayed obfuscated)" +msgstr "Kiel kontakti la funkciigiston de la retejo tra retpoŝto. (montriĝos vuale) " + +#: ../../addon/impressum/impressum.php:86 +msgid "Footer note" +msgstr "Paĝpiednoto" + +#: ../../addon/impressum/impressum.php:86 +msgid "Text for the footer." +msgstr "Teksto por la paĝpiedo." + +#: ../../addon/buglink/buglink.php:15 +msgid "Report Bug" +msgstr "Skribi cimraporton" + +#: ../../addon/blockem/blockem.php:51 +msgid "\"Blockem\" Settings" +msgstr "\"Blockem\" Agordoj" + +#: ../../addon/blockem/blockem.php:53 +msgid "Comma separated profile URLS to block" +msgstr "Blokotaj URL adresoj, disigita per komo" + +#: ../../addon/blockem/blockem.php:70 +msgid "BLOCKEM Settings saved." +msgstr "Konservis Agordojn de BLOCKEM." + +#: ../../addon/blockem/blockem.php:105 +#, php-format +msgid "Blocked %s - Click to open/close" +msgstr "%s blokita - Klaku por malfermi/fermi" + +#: ../../addon/blockem/blockem.php:160 +msgid "Unblock Author" +msgstr "Malbloki Aŭtoron" + +#: ../../addon/blockem/blockem.php:162 +msgid "Block Author" +msgstr "Bloki Aŭtoron" + +#: ../../addon/blockem/blockem.php:194 +msgid "blockem settings updated" +msgstr "Ĝisdatigis la blockem agordojn" + +#: ../../addon/qcomment/qcomment.php:51 +msgid ":-)" +msgstr ":-)" + +#: ../../addon/qcomment/qcomment.php:51 +msgid ":-(" +msgstr ":-(" + +#: ../../addon/qcomment/qcomment.php:51 +msgid "lol" +msgstr "lol" + +#: ../../addon/qcomment/qcomment.php:54 +msgid "Quick Comment Settings" +msgstr "Agordoj pri Rapidaj Komentoj" + +#: ../../addon/qcomment/qcomment.php:56 +msgid "" +"Quick comments are found near comment boxes, sometimes hidden. Click them to" +" provide simple replies." +msgstr "Rapidaj komentoj troviĝas apud komentkampoj, kelkfoje kaŝita. Klaku ilin por provizi simplajn rispondojn." + +#: ../../addon/qcomment/qcomment.php:57 +msgid "Enter quick comments, one per line" +msgstr "Entajpu rapidaj komentoj, po unu je linio." + +#: ../../addon/qcomment/qcomment.php:75 +msgid "Quick Comment settings saved." +msgstr "Konservis agordojn pri rapidaj komentoj." + +#: ../../addon/openstreetmap/openstreetmap.php:71 +msgid "Tile Server URL" +msgstr "Adreso de Kahelservilo" + +#: ../../addon/openstreetmap/openstreetmap.php:71 +msgid "" +"A list of public tile servers" +msgstr "Listo de publikaj kahelserviloj" + +#: ../../addon/openstreetmap/openstreetmap.php:72 +msgid "Default zoom" +msgstr "Defaŭlta zoma faktoro" + +#: ../../addon/openstreetmap/openstreetmap.php:72 +msgid "The default zoom level. (1:world, 18:highest)" +msgstr "La defaŭlta zoma faktoro. (1:tutmonda, 18:plej proksima)" + +#: ../../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 "La Mathjax kromprogramo bildigas matematikajn formulojn skribitajn en la LaTeX sintakso, cirkaŭigita de la komuna $$ aŭ eqnarray bloko en afiŝoj ĉe via muro, Reto folio kaj privataj mesaĝoj." + +#: ../../addon/mathjax/mathjax.php:38 +msgid "Use the MathJax renderer" +msgstr "Ĉu uzi la Mathjax bildigilo" + +#: ../../addon/mathjax/mathjax.php:72 +msgid "MathJax Base URL" +msgstr "Mathjax Baza URL Adreso" + +#: ../../addon/mathjax/mathjax.php:72 +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 "La URL adreso por la javascript dosiero kiu estas inkluzivigonta por uzi Mathjaz. Eblas esti aŭ la Mathjax CDN aŭ alia Mathjax instalo." + +#: ../../addon/editplain/editplain.php:46 +msgid "Editplain settings updated." +msgstr "Ĝisdatigis la Editplain agordojn." + +#: ../../addon/editplain/editplain.php:76 +msgid "Editplain Settings" +msgstr "Agordoj por Editplain" + +#: ../../addon/editplain/editplain.php:78 +msgid "Disable richtext status editor" +msgstr "Malŝalti la riĉteksto-redaktilon" + +#: ../../addon/gravatar/gravatar.php:71 +msgid "generic profile image" +msgstr "komuna profilbildo" + +#: ../../addon/gravatar/gravatar.php:72 +msgid "random geometric pattern" +msgstr "loteca geometria skemo" + +#: ../../addon/gravatar/gravatar.php:73 +msgid "monster face" +msgstr "monstrobildo" + +#: ../../addon/gravatar/gravatar.php:74 +msgid "computer generated face" +msgstr "komputita vizaĝo" + +#: ../../addon/gravatar/gravatar.php:75 +msgid "retro arcade style face" +msgstr "retrostila videoludstila vizaĝo" + +#: ../../addon/gravatar/gravatar.php:87 +msgid "Default avatar image" +msgstr "Defaŭlta avatarbildo" + +#: ../../addon/gravatar/gravatar.php:87 +msgid "Select default avatar image if none was found at Gravatar. See README" +msgstr "Elektu defaŭltan avatarbildon se neniu troviĝis ĉe Gravatar. Vidu README." + +#: ../../addon/gravatar/gravatar.php:88 +msgid "Rating of images" +msgstr "Pritakso de bildoj" + +#: ../../addon/gravatar/gravatar.php:88 +msgid "Select the appropriate avatar rating for your site. See README" +msgstr "Elektu la ĝustan pritakson de via avataro por via retejo. Vidu README." + +#: ../../addon/gravatar/gravatar.php:102 +msgid "Gravatar settings updated." +msgstr "Gravatar agordoj ĝisdatigitaj." + +#: ../../addon/testdrive/testdrive.php:85 +#, php-format +msgid "Your account on %s will expire in a few days." +msgstr "Via konto ĉe %s senvalidiĝos post kelkaj tagoj." + +#: ../../addon/testdrive/testdrive.php:86 +msgid "Your Friendica test account is about to expire." +msgstr "Via Friendica provkonto baldaŭ malaktiviĝos." + +#: ../../addon/testdrive/testdrive.php:87 +#, 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 "Saluton %1$s,\n\nVia testkonto ĉe %2$s senvalidiĝos post malpli ol kvin tagoj. Vi esperas ke vi ĝuis la teston kaj baldaŭ trovosĝustan Friendica retejon por via integrita sociala komunikado. Listo de publikaj retejoj troviĝas ĉe http://dir.friendica.com/siteinfo - kaj por pli da informoj pri kiel instali vian propran Friendica servilon, bonvolu viziti la retejon de la Friendica projekton ĉe http://friendica.com." + +#: ../../addon/pageheader/pageheader.php:50 +msgid "\"pageheader\" Settings" +msgstr "\"pageheader\" Agordoj" + +#: ../../addon/pageheader/pageheader.php:68 +msgid "pageheader Settings saved." +msgstr "Konservis Agordojn de pageheader." + +#: ../../addon/ijpost/ijpost.php:39 +msgid "Post to Insanejournal" +msgstr "Afiŝi al Insanejournal" + +#: ../../addon/ijpost/ijpost.php:70 +msgid "InsaneJournal Post Settings" +msgstr "Agordoj pri Insaenejournal Afiŝoj" + +#: ../../addon/ijpost/ijpost.php:72 +msgid "Enable InsaneJournal Post Plugin" +msgstr "Ŝalti la InsaneJournal afiŝo kromprogramon." + +#: ../../addon/ijpost/ijpost.php:77 +msgid "InsaneJournal username" +msgstr "Salutnomo ĉe InsaneJournal" + +#: ../../addon/ijpost/ijpost.php:82 +msgid "InsaneJournal password" +msgstr "Pasvorto ĉe InsaneJournal" + +#: ../../addon/ijpost/ijpost.php:87 +msgid "Post to InsaneJournal by default" +msgstr "Defaŭlte afiŝi ĉe InsaneJournal" + +#: ../../addon/viewsrc/viewsrc.php:37 +msgid "View Source" +msgstr "Vidi Fonton" + +#: ../../addon/statusnet/statusnet.php:134 +msgid "Post to StatusNet" +msgstr "Afiŝi ĉe StatusNet" + +#: ../../addon/statusnet/statusnet.php:176 +msgid "" +"Please contact your site administrator.
    The provided API URL is not " +"valid." +msgstr "Bonvolu kontaki vian retejan administranton.
    La API URL adreso ne validas." + +#: ../../addon/statusnet/statusnet.php:204 +msgid "We could not contact the StatusNet API with the Path you entered." +msgstr "Ni ne povis trovi la StatusNet API kun la vojo kiun vi entajpis." + +#: ../../addon/statusnet/statusnet.php:232 +msgid "StatusNet settings updated." +msgstr "StatusNet agordoj ĝisdatigita." + +#: ../../addon/statusnet/statusnet.php:257 +msgid "StatusNet Posting Settings" +msgstr "Agordoj por StausNet afiŝoj" + +#: ../../addon/statusnet/statusnet.php:271 +msgid "Globally Available StatusNet OAuthKeys" +msgstr "Ĝeneralaj disponeblaj StatusNet OAuth ŝlosiloj" + +#: ../../addon/statusnet/statusnet.php:272 +msgid "" +"There are preconfigured OAuth key pairs for some StatusNet servers " +"available. If you are useing one of them, please use these credentials. If " +"not feel free to connect to any other StatusNet instance (see below)." +msgstr "Disponeblas antaŭagorditaj ŝlosilparoj por kelkaj StatusNet serviloj. Se via uzas iun de iu, bonvolu uzi unun de tiuj legitimaĵojn. Se ne, bonvolu konekti al iu alia StatusNet servilo (vidu malsupre)." + +#: ../../addon/statusnet/statusnet.php:280 +msgid "Provide your own OAuth Credentials" +msgstr "Provizi viajn proprajn OAuth legitimaĵojn" + +#: ../../addon/statusnet/statusnet.php:281 +msgid "" +"No consumer key pair for StatusNet found. Register your Friendica Account as" +" an desktop client on your StatusNet account, copy the consumer key pair " +"here and enter the API base root.
    Before you register your own OAuth " +"key pair ask the administrator if there is already a key pair for this " +"Friendica installation at your favorited StatusNet installation." +msgstr "Ne trovis klientajn ŝlosilojn por StatusNet. Registru vian Friendica konton kiel klientkomputilo/desktop client en via StausNet konto. Kopiu la klientajn ŝlosilojn ĉi tien kaj entajpu la baza API radiko.
    Antaŭ vi registros viajn proprajn OAuth ŝlosilojn, demandu al la administranto ĉu jam ekzistas ŝlosiloj por ĉi-tiu Friendia retejo je via StatusNet retejo." + +#: ../../addon/statusnet/statusnet.php:283 +msgid "OAuth Consumer Key" +msgstr "OAuth Ŝlosilo de Kliento" + +#: ../../addon/statusnet/statusnet.php:286 +msgid "OAuth Consumer Secret" +msgstr "OAuth Sekreto de Kliento" + +#: ../../addon/statusnet/statusnet.php:289 +msgid "Base API Path (remember the trailing /)" +msgstr "Baza vojo al la API (ne forgesu la finan /)" + +#: ../../addon/statusnet/statusnet.php:310 +msgid "" +"To connect to your StatusNet account click the button below to get a " +"security code from StatusNet which you have to copy into the input box below" +" and submit the form. Only your public posts will be posted" +" to StatusNet." +msgstr "Por konekti al vian konton ĉe StatusNet, klaku la malsupran butonon por atingi sekurecan kodon de StatusNet, kiun vi devas alglui en la malsupra kampo kaj sendi la formon. Nur viaj publikaj afiŝoj estos afiŝota al StatusNet." + +#: ../../addon/statusnet/statusnet.php:311 +msgid "Log in with StatusNet" +msgstr "Ensaluti kun StatusNet." + +#: ../../addon/statusnet/statusnet.php:313 +msgid "Copy the security code from StatusNet here" +msgstr "Alglui la kodon de StatusNet ĉi tie:" + +#: ../../addon/statusnet/statusnet.php:319 +msgid "Cancel Connection Process" +msgstr "Nuligi Konektadon" + +#: ../../addon/statusnet/statusnet.php:321 +msgid "Current StatusNet API is" +msgstr "La nuna StatusNet API estas" + +#: ../../addon/statusnet/statusnet.php:322 +msgid "Cancel StatusNet Connection" +msgstr "Nuligi Konekton al StatusNet" + +#: ../../addon/statusnet/statusnet.php:333 ../../addon/twitter/twitter.php:189 +msgid "Currently connected to: " +msgstr "Konektita al:" + +#: ../../addon/statusnet/statusnet.php:334 +msgid "" +"If enabled all your public postings can be posted to the " +"associated StatusNet account. You can choose to do so by default (here) or " +"for every posting separately in the posting options when writing the entry." +msgstr "Kiam ŝaltita, ĉiuj publikaj afiŝoj de vi ankaŭ eblas esti afiŝota al la asociigita StatusNet konto. Vi povas elekti ĝin defaŭlte (ĉi tie) au unuope por ĉiuj afiŝoj kiam vi skribos ilin." + +#: ../../addon/statusnet/statusnet.php:336 +msgid "" +"Note: Due your privacy settings (Hide your profile " +"details from unknown viewers?) the link potentially included in public " +"postings relayed to StatusNet will lead the visitor to a blank page " +"informing the visitor that the access to your profile has been restricted." +msgstr "Averto: Laŭ viaj privatecaj agordoj (Kaŝi viajn profilajn detalojn al nekonataj spektantoj?), la ligilo en publikaj afiŝoj plusendata al StatusNet gvidas vizitontojn al malplena paĝo sciigante ilin ke atingo al via profilo estas lmitigita." + +#: ../../addon/statusnet/statusnet.php:339 +msgid "Allow posting to StatusNet" +msgstr "Permesi afiŝojn al StatusNet" + +#: ../../addon/statusnet/statusnet.php:342 +msgid "Send public postings to StatusNet by default" +msgstr "Defaŭlte sendi publikajn afiŝojn al StatusNet" + +#: ../../addon/statusnet/statusnet.php:345 +msgid "Send #tag links to StatusNet" +msgstr "Sendu #marko ligilojn al StatusNet" + +#: ../../addon/statusnet/statusnet.php:350 ../../addon/twitter/twitter.php:206 +msgid "Clear OAuth configuration" +msgstr "Forviŝi OAuth agordojn" + +#: ../../addon/statusnet/statusnet.php:545 +msgid "API URL" +msgstr "API URL adreso" + +#: ../../addon/tumblr/tumblr.php:36 +msgid "Post to Tumblr" +msgstr "Afiŝi al Tumblr" + +#: ../../addon/tumblr/tumblr.php:67 +msgid "Tumblr Post Settings" +msgstr "Agordoj pri afiŝoj ĉe Tumblr" + +#: ../../addon/tumblr/tumblr.php:69 +msgid "Enable Tumblr Post Plugin" +msgstr "Ŝalti la kromprogramon por Tumblr afiŝoj" + +#: ../../addon/tumblr/tumblr.php:74 +msgid "Tumblr login" +msgstr "Salutnomo ĉe Tumblr" + +#: ../../addon/tumblr/tumblr.php:79 +msgid "Tumblr password" +msgstr "Pasvorto ĉe Tumblr" + +#: ../../addon/tumblr/tumblr.php:84 +msgid "Post to Tumblr by default" +msgstr "Defaŭlte afiŝi ĉe Tumblr" + +#: ../../addon/numfriends/numfriends.php:46 +msgid "Numfriends settings updated." +msgstr "Ĝisdatigis agordojn por Numfriends." + +#: ../../addon/numfriends/numfriends.php:77 +msgid "Numfriends Settings" +msgstr "Agordoj por Numfriends" + +#: ../../addon/numfriends/numfriends.php:79 +msgid "How many contacts to display on profile sidebar" +msgstr "Kiom da kontaktoj mi montru en la flanka strio" + +#: ../../addon/gnot/gnot.php:48 +msgid "Gnot settings updated." +msgstr "Ĝisdatigis Gnot agordojn." + +#: ../../addon/gnot/gnot.php:79 +msgid "Gnot Settings" +msgstr "Agordoj por Gnot" + +#: ../../addon/gnot/gnot.php:81 +msgid "" +"Allows threading of email comment notifications on Gmail and anonymising the" +" subject line." +msgstr "Permesas la ĉenadon de retpoŝtaj atentigoj pri komentoj ĉe Gmail kan anonimigado de la temlinio." + +#: ../../addon/gnot/gnot.php:82 +msgid "Enable this plugin/addon?" +msgstr "Ŝalti tiun kromprogramon?" + +#: ../../addon/gnot/gnot.php:97 +#, php-format +msgid "[Friendica:Notify] Comment to conversation #%d" +msgstr "[Friendica:Atentigo] Komento pri konversacio #%d" + +#: ../../addon/wppost/wppost.php:42 +msgid "Post to Wordpress" +msgstr "Afiŝi al Wordpress" + +#: ../../addon/wppost/wppost.php:74 +msgid "WordPress Post Settings" +msgstr "Agordoj por WordPress afiŝojn" + +#: ../../addon/wppost/wppost.php:76 +msgid "Enable WordPress Post Plugin" +msgstr "Ŝalti la Wordpress-afiŝo kromprogramon" + +#: ../../addon/wppost/wppost.php:81 +msgid "WordPress username" +msgstr "WordPress salutnomo" + +#: ../../addon/wppost/wppost.php:86 +msgid "WordPress password" +msgstr "WordPress pasvorto" + +#: ../../addon/wppost/wppost.php:91 +msgid "WordPress API URL" +msgstr "Wordpress API URL adreso" + +#: ../../addon/wppost/wppost.php:96 +msgid "Post to WordPress by default" +msgstr "Defaŭlte afiŝi al WordPress" + +#: ../../addon/showmore/showmore.php:38 +msgid "\"Show more\" Settings" +msgstr "\"Montri pli\" agordoj" + +#: ../../addon/showmore/showmore.php:41 +msgid "Enable Show More" +msgstr "Ŝalti \"montri pli\"" + +#: ../../addon/showmore/showmore.php:44 +msgid "Cutting posts after how much characters" +msgstr "Limitigi afiŝojn al kiom da literoj" + +#: ../../addon/showmore/showmore.php:65 +msgid "Show More Settings saved." +msgstr "Konservis \"montri pli\" agordojn." + +#: ../../addon/showmore/showmore.php:87 ../../include/conversation.php:466 +#: ../../boot.php:496 +msgid "show more" +msgstr "montri pli" + +#: ../../addon/piwik/piwik.php:79 +msgid "" +"This website is tracked using the Piwik " +"analytics tool." +msgstr "Ĉi retejo uzas Piwik kiel retuma analizilo." + +#: ../../addon/piwik/piwik.php:82 +#, php-format +msgid "" +"If you do not want that your visits are logged this way you can" +" set a cookie to prevent Piwik from tracking further visits of the site " +"(opt-out)." +msgstr "Se ni ne protokolu viajn vizitojn tiel, vi povas agordi kuketon por malpermesi Piwik al plu protokoli pliajn vizitojn (mem-for-elekti / opt-out)." + +#: ../../addon/piwik/piwik.php:90 +msgid "Piwik Base URL" +msgstr "Piwik baza URL adreso" + +#: ../../addon/piwik/piwik.php:90 +msgid "" +"Absolute path to your Piwik installation. (without protocol (http/s), with " +"trailing slash)" +msgstr "Absoluta vojo al via Piwik instalo. (sen protokolo (http/s), inkluzive vosta oblikva streketo)" + +#: ../../addon/piwik/piwik.php:91 +msgid "Site ID" +msgstr "Reteja idento" + +#: ../../addon/piwik/piwik.php:92 +msgid "Show opt-out cookie link?" +msgstr "Montru ligilon al kuketo por mem-for-elekti (opt-out)?" + +#: ../../addon/piwik/piwik.php:93 +msgid "Asynchronous tracking" +msgstr "Nesinkrona spurado." + +#: ../../addon/twitter/twitter.php:73 +msgid "Post to Twitter" +msgstr "Afiŝi ĉe Twitter" + +#: ../../addon/twitter/twitter.php:122 +msgid "Twitter settings updated." +msgstr "Ĝisdatigis Twitter agordojn." + +#: ../../addon/twitter/twitter.php:146 +msgid "Twitter Posting Settings" +msgstr "Agordoj por afiŝi ĉe Twitter" + +#: ../../addon/twitter/twitter.php:153 +msgid "" +"No consumer key pair for Twitter found. Please contact your site " +"administrator." +msgstr "Ne trovis klientajn ŝlosilojn por Twitter. Bonvolu kontakti vian retejan administranton." + +#: ../../addon/twitter/twitter.php:172 +msgid "" +"At this Friendica instance the Twitter plugin was enabled but you have not " +"yet connected your account to your Twitter account. To do so click the " +"button below to get a PIN from Twitter which you have to copy into the input" +" box below and submit the form. Only your public posts will" +" be posted to Twitter." +msgstr "Je ĉi tiu Friendica retejo, la Twitter kromprogramo jam estas ŝaltita, sed via konto anokoraŭ ne estas konektita kun via Twitter konto. Por fari tion, klaku la supran butonon por atingi nombrokodon de Twitter, kion vi kopiu en la supran eniga ĉelo, kaj sendu la formularon. Nur viaj publikaj afiŝoj estas plusendota al Twitter. " + +#: ../../addon/twitter/twitter.php:173 +msgid "Log in with Twitter" +msgstr "Ensaluti kun Twitter" + +#: ../../addon/twitter/twitter.php:175 +msgid "Copy the PIN from Twitter here" +msgstr "Alglui la PIN de Twitter ĉi tie" + +#: ../../addon/twitter/twitter.php:190 +msgid "" +"If enabled all your public postings can be posted to the " +"associated Twitter account. You can choose to do so by default (here) or for" +" every posting separately in the posting options when writing the entry." +msgstr "Kiam ŝaltita, ĉiuj publikaj afiŝoj de vi ankaŭ eblas esti afiŝota al la asociigita Twitter konto. Vi povas elekti ĝin defaŭlte (ĉi tie) au unuope por ĉiuj afiŝoj kiam vi skribos ilin." + +#: ../../addon/twitter/twitter.php:192 +msgid "" +"Note: Due your privacy settings (Hide your profile " +"details from unknown viewers?) the link potentially included in public " +"postings relayed to Twitter will lead the visitor to a blank page informing " +"the visitor that the access to your profile has been restricted." +msgstr "Averto: Laŭ viaj privatecaj agordoj (Kaŝi viajn profilajn detalojn al nekonataj spektantoj?), la ligilo en publikaj afiŝoj plusendata al Twitter gvidas vizitontojn al malplena paĝo sciigante ilin ke atingo al via profilo estas lmitigita." + +#: ../../addon/twitter/twitter.php:195 +msgid "Allow posting to Twitter" +msgstr "Permesi afiŝojn al Twitter" + +#: ../../addon/twitter/twitter.php:198 +msgid "Send public postings to Twitter by default" +msgstr "Defaŭlte sendi publikajn afiŝojn al Twitter" + +#: ../../addon/twitter/twitter.php:201 +msgid "Send #tag links to Twitter" +msgstr "Sendu #marko ligilon al Twitter" + +#: ../../addon/twitter/twitter.php:377 +msgid "Consumer key" +msgstr "Ŝlosilo de Kliento" + +#: ../../addon/twitter/twitter.php:378 +msgid "Consumer secret" +msgstr "Sekreto de Kliento" + +#: ../../addon/irc/irc.php:44 +msgid "IRC Settings" +msgstr "IRC Agordoj" + +#: ../../addon/irc/irc.php:46 +msgid "Channel(s) to auto connect (comma separated)" +msgstr "Aŭtomate konektiĝi al la kanalo(j) (disigita per komo)" + +#: ../../addon/irc/irc.php:51 +msgid "Popular Channels (comma separated)" +msgstr "Popularaj kanaloj (disigita per komo)" + +#: ../../addon/irc/irc.php:69 +msgid "IRC settings saved." +msgstr "IRC agordoj konservitaj." + +#: ../../addon/irc/irc.php:74 +msgid "IRC Chatroom" +msgstr "IRC babilejo" + +#: ../../addon/irc/irc.php:96 +msgid "Popular Channels" +msgstr "Popularaj Kanaloj" + +#: ../../addon/blogger/blogger.php:42 +msgid "Post to blogger" +msgstr "Afiŝi al blogger" + +#: ../../addon/blogger/blogger.php:74 +msgid "Blogger Post Settings" +msgstr "Agordo pri Blogger Afiŝoj" + +#: ../../addon/blogger/blogger.php:76 +msgid "Enable Blogger Post Plugin" +msgstr "Ŝalti la Blogger afiŝo kromprogramon" + +#: ../../addon/blogger/blogger.php:81 +msgid "Blogger username" +msgstr "Blogger uzantonomo" + +#: ../../addon/blogger/blogger.php:86 +msgid "Blogger password" +msgstr "Blogger pasvorto" + +#: ../../addon/blogger/blogger.php:91 +msgid "Blogger API URL" +msgstr "Blogger API URL" + +#: ../../addon/blogger/blogger.php:96 +msgid "Post to Blogger by default" +msgstr "Defaŭlte afiŝi al Blogger" + +#: ../../addon/posterous/posterous.php:36 +msgid "Post to Posterous" +msgstr "Afiŝi al Posterous" + +#: ../../addon/posterous/posterous.php:67 +msgid "Posterous Post Settings" +msgstr "Agordoj pri afiŝoj ĉe Posterous" + +#: ../../addon/posterous/posterous.php:69 +msgid "Enable Posterous Post Plugin" +msgstr "Ŝalti la Poserous-afiŝo kromprogramon" + +#: ../../addon/posterous/posterous.php:74 +msgid "Posterous login" +msgstr "Posterous salutnomo" + +#: ../../addon/posterous/posterous.php:79 +msgid "Posterous password" +msgstr "Posterous pasvorto" + +#: ../../addon/posterous/posterous.php:84 +msgid "Post to Posterous by default" +msgstr "Defaŭlte afiŝi al Posterous" + +#: ../../view/theme/diabook-red/theme.php:26 +#: ../../view/theme/diabook-blue/theme.php:26 +#: ../../view/theme/diabook/theme.php:32 +#: ../../view/theme/diabook-aerith/theme.php:27 +msgid "Last users" +msgstr "Ĵusaj uzantoj" + +#: ../../view/theme/diabook-red/theme.php:55 +#: ../../view/theme/diabook-blue/theme.php:55 +#: ../../view/theme/diabook/theme.php:61 +#: ../../view/theme/diabook-aerith/theme.php:56 +msgid "Last likes" +msgstr "Ĵusaj ŝatitaj elementoj" + +#: ../../view/theme/diabook-red/theme.php:100 +#: ../../view/theme/diabook-blue/theme.php:100 +#: ../../view/theme/diabook/theme.php:106 +#: ../../view/theme/diabook-aerith/theme.php:101 +msgid "Last photos" +msgstr "Ĵusaj bildoj" + +#: ../../view/theme/diabook-red/theme.php:145 +#: ../../view/theme/diabook-blue/theme.php:145 +#: ../../view/theme/diabook/theme.php:151 +#: ../../view/theme/diabook-aerith/theme.php:146 +msgid "Find Friends" +msgstr "Trovi Amikojn" + +#: ../../view/theme/diabook-red/theme.php:146 +#: ../../view/theme/diabook-blue/theme.php:146 +#: ../../view/theme/diabook/theme.php:152 +#: ../../view/theme/diabook-aerith/theme.php:147 +msgid "Local Directory" +msgstr "Loka Katalogo" + +#: ../../view/theme/diabook-red/theme.php:148 +#: ../../view/theme/diabook-blue/theme.php:148 +#: ../../view/theme/diabook/theme.php:154 +#: ../../view/theme/diabook-aerith/theme.php:149 +#: ../../include/contact_widgets.php:35 +msgid "Similar Interests" +msgstr "Similaj Interesoj" + +#: ../../view/theme/diabook-red/theme.php:150 +#: ../../view/theme/diabook-blue/theme.php:150 +#: ../../view/theme/diabook/theme.php:156 +#: ../../view/theme/diabook-aerith/theme.php:151 +#: ../../include/contact_widgets.php:37 +msgid "Invite Friends" +msgstr "Inviti amikojn" + +#: ../../view/theme/diabook-red/theme.php:165 +#: ../../view/theme/diabook-red/theme.php:246 +#: ../../view/theme/diabook-blue/theme.php:165 +#: ../../view/theme/diabook-blue/theme.php:246 +#: ../../view/theme/diabook/theme.php:172 +#: ../../view/theme/diabook/theme.php:256 +#: ../../view/theme/diabook-aerith/theme.php:166 +#: ../../view/theme/diabook-aerith/theme.php:247 +msgid "Community Pages" +msgstr "Komunumaj paĝoj" + +#: ../../view/theme/diabook-red/theme.php:198 +#: ../../view/theme/diabook-blue/theme.php:198 +#: ../../view/theme/diabook/theme.php:205 +#: ../../view/theme/diabook-aerith/theme.php:199 +msgid "Help or @NewHere ?" +msgstr "Helpu aŭ @NewHere ?" + +#: ../../view/theme/diabook-red/theme.php:204 +#: ../../view/theme/diabook-blue/theme.php:204 +#: ../../view/theme/diabook/theme.php:211 +#: ../../view/theme/diabook-aerith/theme.php:205 +msgid "Connect Services" +msgstr "Konekti Servojn" + +#: ../../view/theme/diabook-red/theme.php:210 +#: ../../view/theme/diabook-blue/theme.php:210 +#: ../../view/theme/diabook/theme.php:217 +#: ../../view/theme/diabook-aerith/theme.php:211 +msgid "PostIt to Friendica" +msgstr "PostIt al Friendica" + +#: ../../view/theme/diabook-red/theme.php:210 +#: ../../view/theme/diabook-blue/theme.php:210 +#: ../../view/theme/diabook/theme.php:217 +#: ../../view/theme/diabook-aerith/theme.php:211 +msgid "Post to Friendica" +msgstr "Afiŝi al Friendica" + +#: ../../view/theme/diabook-red/theme.php:211 +#: ../../view/theme/diabook-blue/theme.php:211 +#: ../../view/theme/diabook/theme.php:218 +#: ../../view/theme/diabook-aerith/theme.php:212 +msgid " from anywhere by bookmarking this Link." +msgstr " de iu kun ĉi tio ligilo." + +#: ../../view/theme/diabook-red/theme.php:239 +#: ../../view/theme/diabook-blue/theme.php:239 +#: ../../view/theme/diabook/theme.php:249 +#: ../../view/theme/diabook-aerith/theme.php:240 ../../include/nav.php:49 +#: ../../include/nav.php:115 +msgid "Your posts and conversations" +msgstr "Viaj afiŝoj kaj komunikadoj" + +#: ../../view/theme/diabook-red/theme.php:240 +#: ../../view/theme/diabook-blue/theme.php:240 +#: ../../view/theme/diabook/theme.php:250 +#: ../../view/theme/diabook-aerith/theme.php:241 ../../include/nav.php:50 +msgid "Your profile page" +msgstr "Via profilo" + +#: ../../view/theme/diabook-red/theme.php:241 +#: ../../view/theme/diabook-blue/theme.php:241 +#: ../../view/theme/diabook/theme.php:251 +#: ../../view/theme/diabook-aerith/theme.php:242 +msgid "Your contacts" +msgstr "Viaj kontaktoj" + +#: ../../view/theme/diabook-red/theme.php:242 +#: ../../view/theme/diabook-blue/theme.php:242 +#: ../../view/theme/diabook/theme.php:252 +#: ../../view/theme/diabook-aerith/theme.php:243 ../../include/nav.php:51 +#: ../../boot.php:1463 +msgid "Photos" +msgstr "Bildoj" + +#: ../../view/theme/diabook-red/theme.php:242 +#: ../../view/theme/diabook-blue/theme.php:242 +#: ../../view/theme/diabook/theme.php:252 +#: ../../view/theme/diabook-aerith/theme.php:243 ../../include/nav.php:51 +msgid "Your photos" +msgstr "Viaj bildoj" + +#: ../../view/theme/diabook-red/theme.php:243 +#: ../../view/theme/diabook-blue/theme.php:243 +#: ../../view/theme/diabook/theme.php:253 +#: ../../view/theme/diabook-aerith/theme.php:244 ../../include/nav.php:52 +msgid "Your events" +msgstr "Viaj okazoj" + +#: ../../view/theme/diabook-red/theme.php:244 +#: ../../view/theme/diabook-blue/theme.php:244 +#: ../../view/theme/diabook/theme.php:254 +#: ../../view/theme/diabook-aerith/theme.php:245 ../../include/nav.php:53 +msgid "Personal notes" +msgstr "Personaj notoj" + +#: ../../view/theme/diabook-red/theme.php:244 +#: ../../view/theme/diabook-blue/theme.php:244 +#: ../../view/theme/diabook/theme.php:254 +#: ../../view/theme/diabook-aerith/theme.php:245 ../../include/nav.php:53 +msgid "Your personal photos" +msgstr "Viaj personaj bildoj" + +#: ../../view/theme/diabook-red/config.php:66 +#: ../../view/theme/diabook-blue/config.php:66 +#: ../../view/theme/diabook/config.php:78 +#: ../../view/theme/quattro/config.php:54 +#: ../../view/theme/diabook-aerith/config.php:66 +msgid "Theme settings" +msgstr "Agordoj pri la etoso" + +#: ../../view/theme/diabook-red/config.php:67 +#: ../../view/theme/diabook-blue/config.php:67 +#: ../../view/theme/diabook/config.php:79 +#: ../../view/theme/diabook-aerith/config.php:67 +msgid "Set font-size for posts and comments" +msgstr "Agordi la tiparan grandon por afiŝoj kaj komentoj" + +#: ../../view/theme/diabook-red/config.php:68 +#: ../../view/theme/diabook-blue/config.php:68 +#: ../../view/theme/diabook/config.php:80 +#: ../../view/theme/diabook-aerith/config.php:68 +msgid "Set line-height for posts and comments" +msgstr "Agordi la linigrandon por afiŝoj kaj komentoj" + +#: ../../view/theme/diabook/config.php:81 +msgid "Set resolution for middle column" +msgstr "Agordi la distingivon por la meza kolumno" + +#: ../../view/theme/quattro/config.php:55 +msgid "Alignment" +msgstr "Ĝisrandigo" + +#: ../../view/theme/quattro/config.php:55 +msgid "Left" +msgstr "Maldekstren" + +#: ../../view/theme/quattro/config.php:55 +msgid "Center" +msgstr "Centren" + +#: ../../view/theme/quattro/config.php:56 +msgid "Color scheme" +msgstr "Kolorskemo" + +#: ../../include/profile_advanced.php:17 ../../boot.php:1085 +msgid "Gender:" +msgstr "Sekso:" + +#: ../../include/profile_advanced.php:22 +msgid "j F, Y" +msgstr "j F, Y" + +#: ../../include/profile_advanced.php:23 +msgid "j F" +msgstr "j F" + +#: ../../include/profile_advanced.php:30 ../../include/datetime.php:448 +#: ../../include/items.php:1402 +msgid "Birthday:" +msgstr "Naskiĝtago:" + +#: ../../include/profile_advanced.php:34 +msgid "Age:" +msgstr "Aĝo:" + +#: ../../include/profile_advanced.php:37 ../../boot.php:1088 +msgid "Status:" +msgstr "Stato:" + +#: ../../include/profile_advanced.php:45 ../../boot.php:1090 +msgid "Homepage:" +msgstr "Hejmpaĝo:" + +#: ../../include/profile_advanced.php:47 +msgid "Tags:" +msgstr "Markoj:" + +#: ../../include/profile_advanced.php:51 +msgid "Religion:" +msgstr "Religio:" + +#: ../../include/profile_advanced.php:53 +msgid "About:" +msgstr "Pri:" + +#: ../../include/profile_advanced.php:55 +msgid "Hobbies/Interests:" +msgstr "Ŝatokupoj/Interesoj:" + +#: ../../include/profile_advanced.php:57 +msgid "Contact information and Social Networks:" +msgstr "Kontaktinformoj kaj Interkonaj Retejoj:" + +#: ../../include/profile_advanced.php:59 +msgid "Musical interests:" +msgstr "Muzaikaj interesoj:" + +#: ../../include/profile_advanced.php:61 +msgid "Books, literature:" +msgstr "Libroj, literaturo:" + +#: ../../include/profile_advanced.php:63 +msgid "Television:" +msgstr "Televido:" + +#: ../../include/profile_advanced.php:65 +msgid "Film/dance/culture/entertainment:" +msgstr "Filmoj/dancoj/arto/amuzaĵoj:" + +#: ../../include/profile_advanced.php:67 +msgid "Love/Romance:" +msgstr "Amo/romanco:" + +#: ../../include/profile_advanced.php:69 +msgid "Work/employment:" +msgstr "Laboro:" + +#: ../../include/profile_advanced.php:71 +msgid "School/education:" +msgstr "Lernejo/eduko:" + +#: ../../include/contact_selectors.php:32 +msgid "Unknown | Not categorised" +msgstr "Nekonata | Nekatorigita" + +#: ../../include/contact_selectors.php:33 +msgid "Block immediately" +msgstr "Bloki tuj" + +#: ../../include/contact_selectors.php:34 +msgid "Shady, spammer, self-marketer" +msgstr "Suspekta, spamisto, memmerkatisto" + +#: ../../include/contact_selectors.php:35 +msgid "Known to me, but no opinion" +msgstr "Konata al mi, sed mi ne havas opinion" + +#: ../../include/contact_selectors.php:36 +msgid "OK, probably harmless" +msgstr "OK, verŝajne sendanĝera" + +#: ../../include/contact_selectors.php:37 +msgid "Reputable, has my trust" +msgstr "Fidinda laŭ mi" + +#: ../../include/contact_selectors.php:56 +msgid "Frequently" +msgstr "Ofte" + +#: ../../include/contact_selectors.php:57 +msgid "Hourly" +msgstr "Ĉiuhore" + +#: ../../include/contact_selectors.php:58 +msgid "Twice daily" +msgstr "Duope ĉiutage" + +#: ../../include/contact_selectors.php:59 +msgid "Daily" +msgstr "Ĉiutage" + +#: ../../include/contact_selectors.php:60 +msgid "Weekly" +msgstr "Ĉiusemajne" + +#: ../../include/contact_selectors.php:61 +msgid "Monthly" +msgstr "Ĉiumonate" + +#: ../../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/Tujmesaĝilo" + +#: ../../include/contact_selectors.php:85 +msgid "MySpace" +msgstr "MySpace" + +#: ../../include/profile_selectors.php:6 +msgid "Male" +msgstr "Vira" + +#: ../../include/profile_selectors.php:6 +msgid "Female" +msgstr "Ina" + +#: ../../include/profile_selectors.php:6 +msgid "Currently Male" +msgstr "Nuntempe Vira" + +#: ../../include/profile_selectors.php:6 +msgid "Currently Female" +msgstr "Nuntempe Ina" + +#: ../../include/profile_selectors.php:6 +msgid "Mostly Male" +msgstr "Ĉefe Vira" + +#: ../../include/profile_selectors.php:6 +msgid "Mostly Female" +msgstr "Ĉefe Ina" + +#: ../../include/profile_selectors.php:6 +msgid "Transgender" +msgstr "Transgenra" + +#: ../../include/profile_selectors.php:6 +msgid "Intersex" +msgstr "Interseksa" + +#: ../../include/profile_selectors.php:6 +msgid "Transsexual" +msgstr "Transseksa" + +#: ../../include/profile_selectors.php:6 +msgid "Hermaphrodite" +msgstr "Hermafrodita" + +#: ../../include/profile_selectors.php:6 +msgid "Neuter" +msgstr "Neŭtra" + +#: ../../include/profile_selectors.php:6 +msgid "Non-specific" +msgstr "Nespecifa" + +#: ../../include/profile_selectors.php:6 +msgid "Other" +msgstr "Alia" + +#: ../../include/profile_selectors.php:6 +msgid "Undecided" +msgstr "Nedecida" + +#: ../../include/profile_selectors.php:19 +msgid "Males" +msgstr "Viroj" + +#: ../../include/profile_selectors.php:19 +msgid "Females" +msgstr "Inoj" + +#: ../../include/profile_selectors.php:19 +msgid "Gay" +msgstr "Geja" + +#: ../../include/profile_selectors.php:19 +msgid "Lesbian" +msgstr "Lesba" + +#: ../../include/profile_selectors.php:19 +msgid "No Preference" +msgstr "Neniu Prefero" + +#: ../../include/profile_selectors.php:19 +msgid "Bisexual" +msgstr "Ambaŭseksema" + +#: ../../include/profile_selectors.php:19 +msgid "Autosexual" +msgstr "Memseksema" + +#: ../../include/profile_selectors.php:19 +msgid "Abstinent" +msgstr "Abstinema" + +#: ../../include/profile_selectors.php:19 +msgid "Virgin" +msgstr "Virgulino" + +#: ../../include/profile_selectors.php:19 +msgid "Deviant" +msgstr "Devia" + +#: ../../include/profile_selectors.php:19 +msgid "Fetish" +msgstr "Fetiĉo" + +#: ../../include/profile_selectors.php:19 +msgid "Oodles" +msgstr "Amasa" + +#: ../../include/profile_selectors.php:19 +msgid "Nonsexual" +msgstr "Neseksa" + +#: ../../include/profile_selectors.php:33 +msgid "Single" +msgstr "Sola" + +#: ../../include/profile_selectors.php:33 +msgid "Lonely" +msgstr "Soleca" + +#: ../../include/profile_selectors.php:33 +msgid "Available" +msgstr "Havebla" + +#: ../../include/profile_selectors.php:33 +msgid "Unavailable" +msgstr "Nehavebla" + +#: ../../include/profile_selectors.php:33 +msgid "Has crush" +msgstr "Sekrete enamiĝinta" + +#: ../../include/profile_selectors.php:33 +msgid "Infatuated" +msgstr "Blinda amo" + +#: ../../include/profile_selectors.php:33 +msgid "Dating" +msgstr "Rendevuanta" + +#: ../../include/profile_selectors.php:33 +msgid "Unfaithful" +msgstr "Malfidela" + +#: ../../include/profile_selectors.php:33 +msgid "Sex Addict" +msgstr "Seksmaniulo" + +#: ../../include/profile_selectors.php:33 +msgid "Friends" +msgstr "Amikoj" + +#: ../../include/profile_selectors.php:33 +msgid "Friends/Benefits" +msgstr "Amikoj/Avantaĝoj" + +#: ../../include/profile_selectors.php:33 +msgid "Casual" +msgstr "Neformala" + +#: ../../include/profile_selectors.php:33 +msgid "Engaged" +msgstr "Fianĉiginta" + +#: ../../include/profile_selectors.php:33 +msgid "Married" +msgstr "Edziĝinta" + +#: ../../include/profile_selectors.php:33 +msgid "Imaginarily married" +msgstr "Image edziĝinta" + +#: ../../include/profile_selectors.php:33 +msgid "Partners" +msgstr "Geparuloj" + +#: ../../include/profile_selectors.php:33 +msgid "Cohabiting" +msgstr "Kunloĝanta" + +#: ../../include/profile_selectors.php:33 +msgid "Common law" +msgstr "Registrita partnereco " + +#: ../../include/profile_selectors.php:33 +msgid "Happy" +msgstr "Feliĉa" + +#: ../../include/profile_selectors.php:33 +msgid "Not looking" +msgstr "Ne interesiĝis" + +#: ../../include/profile_selectors.php:33 +msgid "Swinger" +msgstr "Swinger" + +#: ../../include/profile_selectors.php:33 +msgid "Betrayed" +msgstr "Trompita" + +#: ../../include/profile_selectors.php:33 +msgid "Separated" +msgstr "Disiĝinta" + +#: ../../include/profile_selectors.php:33 +msgid "Unstable" +msgstr "Malfirma" + +#: ../../include/profile_selectors.php:33 +msgid "Divorced" +msgstr "Eksedziĝinta" + +#: ../../include/profile_selectors.php:33 +msgid "Imaginarily divorced" +msgstr "Image eksedziĝinta" + +#: ../../include/profile_selectors.php:33 +msgid "Widowed" +msgstr "Vidva" + +#: ../../include/profile_selectors.php:33 +msgid "Uncertain" +msgstr "Ne certa" + +#: ../../include/profile_selectors.php:33 +msgid "It's complicated" +msgstr "Estas komplika" + +#: ../../include/profile_selectors.php:33 +msgid "Don't care" +msgstr "Egala" + +#: ../../include/profile_selectors.php:33 +msgid "Ask me" +msgstr "Demandu min" + +#: ../../include/event.php:17 ../../include/bb2diaspora.php:244 +msgid "Starts:" +msgstr "Ekas:" + +#: ../../include/event.php:27 ../../include/bb2diaspora.php:252 +msgid "Finishes:" +msgstr "Finas:" + +#: ../../include/delivery.php:434 ../../include/notifier.php:651 +msgid "(no subject)" +msgstr "(neniu temo)" + +#: ../../include/delivery.php:441 ../../include/enotify.php:23 +#: ../../include/notifier.php:658 +msgid "noreply" +msgstr "nerespondi" + +#: ../../include/text.php:243 +msgid "prev" +msgstr "antaŭa" + +#: ../../include/text.php:245 +msgid "first" +msgstr "unua" + +#: ../../include/text.php:274 +msgid "last" +msgstr "lasta" + +#: ../../include/text.php:277 +msgid "next" +msgstr "sekvanta" + +#: ../../include/text.php:568 +msgid "No contacts" +msgstr "Neniu kontaktoj" + +#: ../../include/text.php:577 +#, php-format +msgid "%d Contact" +msgid_plural "%d Contacts" +msgstr[0] "%d Kontakto" +msgstr[1] "%d Kontaktoj" + +#: ../../include/text.php:650 ../../include/nav.php:91 +msgid "Search" +msgstr "Serĉi" + +#: ../../include/text.php:831 +msgid "Monday" +msgstr "Lundo" + +#: ../../include/text.php:831 +msgid "Tuesday" +msgstr "Mardo" + +#: ../../include/text.php:831 +msgid "Wednesday" +msgstr "Merkredo" + +#: ../../include/text.php:831 +msgid "Thursday" +msgstr "Ĵaŭdo" + +#: ../../include/text.php:831 +msgid "Friday" +msgstr "Vendredo" + +#: ../../include/text.php:831 +msgid "Saturday" +msgstr "Sabato" + +#: ../../include/text.php:831 +msgid "Sunday" +msgstr "Dimanĉo" + +#: ../../include/text.php:835 +msgid "January" +msgstr "Januaro" + +#: ../../include/text.php:835 +msgid "February" +msgstr "Februaro" + +#: ../../include/text.php:835 +msgid "March" +msgstr "Marto" + +#: ../../include/text.php:835 +msgid "April" +msgstr "Aprilo" + +#: ../../include/text.php:835 +msgid "May" +msgstr "Majo" + +#: ../../include/text.php:835 +msgid "June" +msgstr "Junio" + +#: ../../include/text.php:835 +msgid "July" +msgstr "Julio" + +#: ../../include/text.php:835 +msgid "August" +msgstr "Aŭgusto" + +#: ../../include/text.php:835 +msgid "September" +msgstr "Septembro" + +#: ../../include/text.php:835 +msgid "October" +msgstr "Oktobro" + +#: ../../include/text.php:835 +msgid "November" +msgstr "Novembro" + +#: ../../include/text.php:835 +msgid "December" +msgstr "Decembro" + +#: ../../include/text.php:919 +msgid "bytes" +msgstr "bajtoj" + +#: ../../include/text.php:936 +msgid "Categories:" +msgstr "Kategorioj:" + +#: ../../include/text.php:948 +msgid "remove" +msgstr "forviŝi" + +#: ../../include/text.php:948 +msgid "[remove]" +msgstr "[forviŝi]" + +#: ../../include/text.php:951 +msgid "Filed under:" +msgstr "Enarkivigita kiel:" + +#: ../../include/text.php:967 ../../include/text.php:979 +msgid "Click to open/close" +msgstr "Klaku por malfermi/fermi" + +#: ../../include/text.php:1084 +msgid "default" +msgstr "defaŭlta" + +#: ../../include/text.php:1096 +msgid "Select an alternate language" +msgstr "Elekti alian lingvon" + +#: ../../include/text.php:1306 +msgid "activity" +msgstr "aktiveco" + +#: ../../include/text.php:1308 +msgid "comment" +msgstr "komento" + +#: ../../include/text.php:1309 +msgid "post" +msgstr "afiŝo" + +#: ../../include/text.php:1464 +msgid "Item filed" +msgstr "Enarkivigis elementon " + +#: ../../include/diaspora.php:582 +msgid "Sharing notification from Diaspora network" +msgstr "Antentigo pri kunhavigado de la Diaspora reto" + +#: ../../include/diaspora.php:1969 +msgid "Attachments:" +msgstr "Kunsendaĵoj:" + +#: ../../include/diaspora.php:2152 +#, php-format +msgid "[Relayed] Comment authored by %s from network %s" +msgstr "[Plusendita] %s en la reto %s skribis komenton" + +#: ../../include/network.php:823 +msgid "view full size" +msgstr "vidi plengrande" + +#: ../../include/oembed.php:132 +msgid "Embedded content" +msgstr "Enigita enhavo" + +#: ../../include/oembed.php:141 +msgid "Embedding disabled" +msgstr "Malŝaltita enigitado" + +#: ../../include/group.php:25 +msgid "" +"A deleted group with this name was revived. Existing item permissions " +"may apply to this group and any future members. If this is " +"not what you intended, please create another group with a different name." +msgstr "Revivigis malnovan grupon kun la sama nomo. Permesoj por estantaj elementoj eble estas validaj por la grupo kaj estontaj membroj. Se tiu ne estas kiun vi atendis, bonvolu krei alian grupon kun alia nomo." + +#: ../../include/group.php:168 +msgid "Everybody" +msgstr "Ĉiuj" + +#: ../../include/group.php:191 +msgid "edit" +msgstr "redakti" + +#: ../../include/group.php:212 +msgid "Groups" +msgstr "Grupoj" + +#: ../../include/group.php:213 +msgid "Edit group" +msgstr "Redakti grupon" + +#: ../../include/group.php:214 +msgid "Create a new group" +msgstr "Krei novan grupon" + +#: ../../include/group.php:215 +msgid "Contacts not in any group" +msgstr "Kontaktoj en neniu grupo" + +#: ../../include/nav.php:46 ../../boot.php:795 +msgid "Logout" +msgstr "Elsaluti" + +#: ../../include/nav.php:46 +msgid "End this session" +msgstr "Fini ĉi-tiun seancon" + +#: ../../include/nav.php:49 ../../boot.php:1453 +msgid "Status" +msgstr "Stato" + +#: ../../include/nav.php:64 +msgid "Sign in" +msgstr "Ensaluti" + +#: ../../include/nav.php:77 +msgid "Home Page" +msgstr "Hejmpaĝo" + +#: ../../include/nav.php:81 +msgid "Create an account" +msgstr "Krei konton" + +#: ../../include/nav.php:86 +msgid "Help and documentation" +msgstr "Helpo kaj dokumentado" + +#: ../../include/nav.php:89 +msgid "Apps" +msgstr "Programoj" + +#: ../../include/nav.php:89 +msgid "Addon applications, utilities, games" +msgstr "Kromprogramoj, utilaĵoj, ludiloj" + +#: ../../include/nav.php:91 +msgid "Search site content" +msgstr "Serĉu la retejon" + +#: ../../include/nav.php:101 +msgid "Conversations on this site" +msgstr "Konversacioj je ĉi-tiu retejo" + +#: ../../include/nav.php:103 +msgid "Directory" +msgstr "Katalogo" + +#: ../../include/nav.php:103 +msgid "People directory" +msgstr "Katalogo de homoj" + +#: ../../include/nav.php:113 +msgid "Conversations from your friends" +msgstr "Konversacioj de viaj amikoj" + +#: ../../include/nav.php:121 +msgid "Friend Requests" +msgstr "Kontaktpetoj" + +#: ../../include/nav.php:123 +msgid "See all notifications" +msgstr "Vidu ĉiujn atentigojn" + +#: ../../include/nav.php:124 +msgid "Mark all system notifications seen" +msgstr "Marki ĉiujn atentigojn legita" + +#: ../../include/nav.php:128 +msgid "Private mail" +msgstr "Privata poŝto" + +#: ../../include/nav.php:129 +msgid "Inbox" +msgstr "Enirkesto" + +#: ../../include/nav.php:130 +msgid "Outbox" +msgstr "Elirkesto" + +#: ../../include/nav.php:134 +msgid "Manage" +msgstr "Administri" + +#: ../../include/nav.php:134 +msgid "Manage other pages" +msgstr "Administri aliajn paĝojn" + +#: ../../include/nav.php:138 ../../boot.php:1043 +msgid "Profiles" +msgstr "Profiloj:" + +#: ../../include/nav.php:138 ../../boot.php:1043 +msgid "Manage/edit profiles" +msgstr "Administri/redakti profilojn" + +#: ../../include/nav.php:139 +msgid "Manage/edit friends and contacts" +msgstr "Administri/redakti amikojn kaj kontaktojn" + +#: ../../include/nav.php:146 +msgid "Admin" +msgstr "Administrado" + +#: ../../include/nav.php:146 +msgid "Site setup and configuration" +msgstr "Agordoj pri la retejo" + +#: ../../include/nav.php:169 +msgid "Nothing new here" +msgstr "Estas neniu nova ĉi tie" + +#: ../../include/contact_widgets.php:6 +msgid "Add New Contact" +msgstr "Aldonu Novan Kontakton" + +#: ../../include/contact_widgets.php:7 +msgid "Enter address or web location" +msgstr "Entajpu adreson aŭ retlokon" + +#: ../../include/contact_widgets.php:8 +msgid "Example: bob@example.com, http://example.com/barbara" +msgstr "Ekzemple: 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] "Disponeblas %d invito" +msgstr[1] "Disponeblas %d invitoj" + +#: ../../include/contact_widgets.php:29 +msgid "Find People" +msgstr "Trovi Homojn" + +#: ../../include/contact_widgets.php:30 +msgid "Enter name or interest" +msgstr "Entajpu nomon aŭ intereson" + +#: ../../include/contact_widgets.php:31 +msgid "Connect/Follow" +msgstr "Konekti/Aboni" + +#: ../../include/contact_widgets.php:32 +msgid "Examples: Robert Morgenstein, Fishing" +msgstr "Ekzemple: Robert Morgenstein, Fishing" + +#: ../../include/contact_widgets.php:36 +msgid "Random Profile" +msgstr "Hazarda Profilo" + +#: ../../include/contact_widgets.php:68 +msgid "Networks" +msgstr "Retoj" + +#: ../../include/contact_widgets.php:71 +msgid "All Networks" +msgstr "Ĉiuj Retoj" + +#: ../../include/contact_widgets.php:98 +msgid "Saved Folders" +msgstr "Konservitaj Dosierujoj" + +#: ../../include/contact_widgets.php:101 ../../include/contact_widgets.php:129 +msgid "Everything" +msgstr "Ĉio" + +#: ../../include/contact_widgets.php:126 +msgid "Categories" +msgstr "Kategorioj" + +#: ../../include/auth.php:29 +msgid "Logged out." +msgstr "Elsalutita." + +#: ../../include/auth.php:106 +msgid "" +"We encountered a problem while logging in with the OpenID you provided. " +"Please check the correct spelling of the ID." +msgstr "Okazis problemo ensalutinta kun via OpenID. Bonvolu kontroli la ID." + +#: ../../include/auth.php:106 +msgid "The error message was:" +msgstr "La erarmesaĝo estis:" + +#: ../../include/datetime.php:43 ../../include/datetime.php:45 +msgid "Miscellaneous" +msgstr "Diversaj" + +#: ../../include/datetime.php:131 ../../include/datetime.php:263 +msgid "year" +msgstr "jaro" + +#: ../../include/datetime.php:136 ../../include/datetime.php:264 +msgid "month" +msgstr "monato" + +#: ../../include/datetime.php:141 ../../include/datetime.php:266 +msgid "day" +msgstr "tago" + +#: ../../include/datetime.php:254 +msgid "never" +msgstr "neniam" + +#: ../../include/datetime.php:260 +msgid "less than a second ago" +msgstr "antaŭ malpli ol unu sekundo" + +#: ../../include/datetime.php:263 +msgid "years" +msgstr "jaroj" + +#: ../../include/datetime.php:264 +msgid "months" +msgstr "monatoj" + +#: ../../include/datetime.php:265 +msgid "week" +msgstr "semajno" + +#: ../../include/datetime.php:265 +msgid "weeks" +msgstr "semajnoj" + +#: ../../include/datetime.php:266 +msgid "days" +msgstr "tagoj" + +#: ../../include/datetime.php:267 +msgid "hour" +msgstr "horo" + +#: ../../include/datetime.php:267 +msgid "hours" +msgstr "horoj" + +#: ../../include/datetime.php:268 +msgid "minute" +msgstr "minuto" + +#: ../../include/datetime.php:268 +msgid "minutes" +msgstr "minutoj" + +#: ../../include/datetime.php:269 +msgid "second" +msgstr "sekundo" + +#: ../../include/datetime.php:269 +msgid "seconds" +msgstr "sekundoj" + +#: ../../include/datetime.php:277 +#, php-format +msgid "%1$d %2$s ago" +msgstr "antaŭ %1$d %2$s" + +#: ../../include/poller.php:543 +msgid "From: " +msgstr "De: " + +#: ../../include/bbcode.php:203 ../../include/bbcode.php:223 +msgid "$1 wrote:" +msgstr "$1 skribis:" + +#: ../../include/bbcode.php:238 ../../include/bbcode.php:304 +msgid "Image/photo" +msgstr "Bildo" + +#: ../../include/dba.php:41 +#, php-format +msgid "Cannot locate DNS info for database server '%s'" +msgstr "Ne trovis DNS informojn por datumbaza servilo '%s'." + +#: ../../include/message.php:15 ../../include/message.php:171 +msgid "[no subject]" +msgstr "[neniu temo]" + +#: ../../include/acl_selectors.php:286 +msgid "Visible to everybody" +msgstr "Videbla al ĉiuj" + +#: ../../include/acl_selectors.php:287 +msgid "show" +msgstr "montru" + +#: ../../include/acl_selectors.php:288 +msgid "don't show" +msgstr "ne montru" + +#: ../../include/enotify.php:14 +msgid "Friendica Notification" +msgstr "Friendica Atentigo" + +#: ../../include/enotify.php:17 +msgid "Thank You," +msgstr "Dankon," + +#: ../../include/enotify.php:19 +#, php-format +msgid "%s Administrator" +msgstr "%s Administranto" + +#: ../../include/enotify.php:35 +#, php-format +msgid "%s " +msgstr "%s " + +#: ../../include/enotify.php:39 +#, php-format +msgid "[Friendica:Notify] New mail received at %s" +msgstr "[Friendica:Atentigo] Ricevis novan retpoŝton ĉe %s" + +#: ../../include/enotify.php:41 +#, php-format +msgid "%s sent you a new private message at %s." +msgstr "%s sendis novan mesaĝon al vi ĉe %s." + +#: ../../include/enotify.php:42 +#, php-format +msgid "%s sent you %s." +msgstr "%s sendis al vi %s." + +#: ../../include/enotify.php:42 +msgid "a private message" +msgstr "privatan mesaĝon" + +#: ../../include/enotify.php:43 +#, php-format +msgid "Please visit %s to view and/or reply to your private messages." +msgstr "Bonvolu viziti %s por vidi aŭ respondi viajn privatajn mesaĝojn." + +#: ../../include/enotify.php:73 +#, php-format +msgid "%s's" +msgstr "de %s verkita" + +#: ../../include/enotify.php:77 +msgid "your" +msgstr "via" + +#: ../../include/enotify.php:84 +#, php-format +msgid "[Friendica:Notify] Comment to conversation #%d by %s" +msgstr "[Friendica:Atentigo] Komento pri konversacio #%d de %s" + +#: ../../include/enotify.php:85 +#, php-format +msgid "%s commented on an item/conversation you have been following." +msgstr "%s komentis pri elemento/konversacio kiun vi sekvas." + +#: ../../include/enotify.php:86 +#, php-format +msgid "%s commented on %s." +msgstr "%s komentis pri %s." + +#: ../../include/enotify.php:88 ../../include/enotify.php:101 +#: ../../include/enotify.php:112 ../../include/enotify.php:123 +#, php-format +msgid "Please visit %s to view and/or reply to the conversation." +msgstr "Bonvolu viziti %s por vidi aŭ respondi la konversacion." + +#: ../../include/enotify.php:95 +#, php-format +msgid "[Friendica:Notify] %s posted to your profile wall" +msgstr "[Friendica:Atentigo] %s afiŝis al via profilmuro" + +#: ../../include/enotify.php:97 +#, php-format +msgid "%s posted to your profile wall at %s" +msgstr "%s skribis al via profila muro ĉe %s" + +#: ../../include/enotify.php:99 +#, php-format +msgid "%s posted to %s" +msgstr "%s afiŝis al %s" + +#: ../../include/enotify.php:99 +msgid "your profile wall." +msgstr "via profilmuro." + +#: ../../include/enotify.php:108 +#, php-format +msgid "[Friendica:Notify] %s tagged you" +msgstr "[Friendica:Atentigo] %s markis vin" + +#: ../../include/enotify.php:109 +#, php-format +msgid "%s tagged you at %s" +msgstr "%s markis vin kiel %s" + +#: ../../include/enotify.php:110 +#, php-format +msgid "%s %s." +msgstr "%s %s." + +#: ../../include/enotify.php:110 +msgid "tagged you" +msgstr "markis vin" + +#: ../../include/enotify.php:119 +#, php-format +msgid "[Friendica:Notify] %s tagged your post" +msgstr "[Friendica:Atentigo] %s markis vian afiŝon" + +#: ../../include/enotify.php:120 +#, php-format +msgid "%s tagged your post at %s" +msgstr "%s markis vian afiŝon kiel %s" + +#: ../../include/enotify.php:121 +#, php-format +msgid "%s tagged %s" +msgstr "%s markis %s" + +#: ../../include/enotify.php:121 +msgid "your post" +msgstr "vian afiŝon" + +#: ../../include/enotify.php:130 +msgid "[Friendica:Notify] Introduction received" +msgstr "[Friendica:Atentigo] Ricevis prezenton" + +#: ../../include/enotify.php:131 +#, php-format +msgid "You've received an introduction from '%s' at %s" +msgstr "Vi ricevis prezento de '%s' ĉe %s" + +#: ../../include/enotify.php:132 +#, php-format +msgid "You've received %s from %s." +msgstr "Vi ricevis %s de %s." + +#: ../../include/enotify.php:132 +msgid "an introduction" +msgstr "prezenton" + +#: ../../include/enotify.php:133 ../../include/enotify.php:150 +#, php-format +msgid "You may visit their profile at %s" +msgstr "Vi povas vidi la profilon de li aŭ ŝi ĉe %s" + +#: ../../include/enotify.php:135 +#, php-format +msgid "Please visit %s to approve or reject the introduction." +msgstr "Bonvolu viziti %s por aprobi aŭ malaprobi la prezenton." + +#: ../../include/enotify.php:142 +msgid "[Friendica:Notify] Friend suggestion received" +msgstr "[Friendica:Atentigo] Ricevis amikosugeston" + +#: ../../include/enotify.php:143 +#, php-format +msgid "You've received a friend suggestion from '%s' at %s" +msgstr "'%s' ĉe %s rekomendis amikon al vi" + +#: ../../include/enotify.php:144 +#, php-format +msgid "You've received %s for %s from %s." +msgstr "Vi ricevis %s kun %s de %s." + +#: ../../include/enotify.php:145 +msgid "a friend suggestion" +msgstr "sugeston por amikiĝi" + +#: ../../include/enotify.php:148 +msgid "Name:" +msgstr "Nomo:" + +#: ../../include/enotify.php:149 +msgid "Photo:" +msgstr "Bildo:" + +#: ../../include/enotify.php:152 +#, php-format +msgid "Please visit %s to approve or reject the suggestion." +msgstr "Bonvolu viziti %s por aprobi aŭ malaprobi la sugeston." + +#: ../../include/items.php:2697 +msgid "A new person is sharing with you at " +msgstr "Nova persono kunhavigas kun vi ĉe " + +#: ../../include/items.php:2697 +msgid "You have a new follower at " +msgstr "Vi havas novan sekvanton ĉe " + +#: ../../include/bb2diaspora.php:102 ../../include/bb2diaspora.php:112 +#: ../../include/bb2diaspora.php:113 +msgid "image/photo" +msgstr "bildo" + +#: ../../include/bb2diaspora.php:102 +msgid "link" +msgstr "ligilo" + +#: ../../include/security.php:21 +msgid "Welcome " +msgstr "Bonvenon " + +#: ../../include/security.php:22 +msgid "Please upload a profile photo." +msgstr "Bonvolu alŝuti profilbildon." + +#: ../../include/security.php:25 +msgid "Welcome back " +msgstr "Bonvenon " + +#: ../../include/security.php:329 +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 "La sekuriga ĵetono de la formo estis malĝusta. Tio verŝajne okazis ĉar la formo estis malfermita dum tro longa tempo (>3 horoj) antaŭ la sendado." + +#: ../../include/Contact.php:145 ../../include/conversation.php:809 +msgid "View Status" +msgstr "Vidi Staton" + +#: ../../include/Contact.php:146 ../../include/conversation.php:810 +msgid "View Profile" +msgstr "Vidi Profilon" + +#: ../../include/Contact.php:147 ../../include/conversation.php:811 +msgid "View Photos" +msgstr "Vidi Bildojn" + +#: ../../include/Contact.php:148 ../../include/Contact.php:161 +#: ../../include/conversation.php:812 +msgid "Network Posts" +msgstr "Enretaj Afiŝoj" + +#: ../../include/Contact.php:149 ../../include/Contact.php:161 +#: ../../include/conversation.php:813 +msgid "Edit Contact" +msgstr "Redakti Kontakton" + +#: ../../include/Contact.php:150 ../../include/Contact.php:161 +#: ../../include/conversation.php:814 +msgid "Send PM" +msgstr "Sendi PM" + +#: ../../include/conversation.php:163 +msgid "post/item" +msgstr "afiŝo/elemento" + +#: ../../include/conversation.php:164 +#, php-format +msgid "%1$s marked %2$s's %3$s as favorite" +msgstr "%1$s markis la %3$s de %2$s kiel preferita." + +#: ../../include/conversation.php:317 ../../include/conversation.php:575 +msgid "Select" +msgstr "Elekti" + +#: ../../include/conversation.php:334 ../../include/conversation.php:668 +#: ../../include/conversation.php:669 +#, php-format +msgid "View %s's profile @ %s" +msgstr "Vidi la profilon de %s ĉe %s" + +#: ../../include/conversation.php:344 ../../include/conversation.php:680 +#, php-format +msgid "%s from %s" +msgstr "%s de %s" + +#: ../../include/conversation.php:360 +msgid "View in context" +msgstr "Vidi kun kunteksto" + +#: ../../include/conversation.php:465 +#, php-format +msgid "%d comment" +msgid_plural "%d comments" +msgstr[0] "%d komento" +msgstr[1] "%d komentoj" + +#: ../../include/conversation.php:529 +msgid "like" +msgstr "ŝati" + +#: ../../include/conversation.php:530 +msgid "dislike" +msgstr "malŝati" + +#: ../../include/conversation.php:532 +msgid "Share this" +msgstr "Kunhavigi ĉi tiun" + +#: ../../include/conversation.php:532 +msgid "share" +msgstr "kunhavigi" + +#: ../../include/conversation.php:588 +msgid "add star" +msgstr "aldoni stelon" + +#: ../../include/conversation.php:589 +msgid "remove star" +msgstr "forpreni stelon" + +#: ../../include/conversation.php:590 +msgid "toggle star status" +msgstr "ŝalti/malŝalti steloŝtato" + +#: ../../include/conversation.php:593 +msgid "starred" +msgstr "steligita" + +#: ../../include/conversation.php:594 +msgid "add tag" +msgstr "aldoni markon" + +#: ../../include/conversation.php:598 +msgid "save to folder" +msgstr "konservi en dosierujo" + +#: ../../include/conversation.php:670 +msgid "to" +msgstr "al" + +#: ../../include/conversation.php:671 +msgid "Wall-to-Wall" +msgstr "Muro-al-Muro" + +#: ../../include/conversation.php:672 +msgid "via Wall-To-Wall:" +msgstr "tra Muro-al-Muro:" + +#: ../../include/conversation.php:717 +msgid "Delete Selected Items" +msgstr "Forviŝi Elektitajn Elementojn" + +#: ../../include/conversation.php:868 +#, php-format +msgid "%s likes this." +msgstr "%s ŝatas tiun." + +#: ../../include/conversation.php:868 +#, php-format +msgid "%s doesn't like this." +msgstr "%s malŝatas tiun." + +#: ../../include/conversation.php:872 +#, php-format +msgid "%2$d people like this." +msgstr "%2$d homoj ŝatas tiun." + +#: ../../include/conversation.php:874 +#, php-format +msgid "%2$d people don't like this." +msgstr "%2$d homojmalŝatas tiun." + +#: ../../include/conversation.php:880 +msgid "and" +msgstr "kaj" + +#: ../../include/conversation.php:883 +#, php-format +msgid ", and %d other people" +msgstr ", kaj %d aliaj homoj." + +#: ../../include/conversation.php:884 +#, php-format +msgid "%s like this." +msgstr "%s ŝatas tiun." + +#: ../../include/conversation.php:884 +#, php-format +msgid "%s don't like this." +msgstr "%s malŝatas tiun." + +#: ../../include/conversation.php:909 +msgid "Visible to everybody" +msgstr "Videbla al ĉiuj" + +#: ../../include/conversation.php:911 +msgid "Please enter a video link/URL:" +msgstr "Bonvolu entajpi ligilon/adreson de video:" + +#: ../../include/conversation.php:912 +msgid "Please enter an audio link/URL:" +msgstr "Bonvolu entajpi ligilon/adreson de sono:" + +#: ../../include/conversation.php:913 +msgid "Tag term:" +msgstr "Markfrazo:" + +#: ../../include/conversation.php:915 +msgid "Where are you right now?" +msgstr "Kie vi estas nun?" + +#: ../../include/conversation.php:958 +msgid "upload photo" +msgstr "alŝuti bildon" + +#: ../../include/conversation.php:960 +msgid "attach file" +msgstr "kunsendi dosieron" + +#: ../../include/conversation.php:962 +msgid "web link" +msgstr "TTT ligilo" + +#: ../../include/conversation.php:963 +msgid "Insert video link" +msgstr "Alglui ligilon de video" + +#: ../../include/conversation.php:964 +msgid "video link" +msgstr "video ligilo" + +#: ../../include/conversation.php:965 +msgid "Insert audio link" +msgstr "Alglui ligilon de sono" + +#: ../../include/conversation.php:966 +msgid "audio link" +msgstr "sono ligilo" + +#: ../../include/conversation.php:968 +msgid "set location" +msgstr "agordi lokon" + +#: ../../include/conversation.php:970 +msgid "clear location" +msgstr "forviŝi lokon" + +#: ../../include/conversation.php:977 +msgid "permissions" +msgstr "permesoj" + +#: ../../boot.php:494 +msgid "Delete this item?" +msgstr "Forviŝi ĉi tiun elementon?" + +#: ../../boot.php:497 +msgid "show fewer" +msgstr "montri malpli" + +#: ../../boot.php:774 +msgid "Create a New Account" +msgstr "Krei Novan Konton" + +#: ../../boot.php:798 +msgid "Nickname or Email address: " +msgstr "Kaŝnomo aŭ retpoŝtadreso:" + +#: ../../boot.php:799 +msgid "Password: " +msgstr "Pasvorto:" + +#: ../../boot.php:802 +msgid "Or login using OpenID: " +msgstr "Aŭ ensaluti per OpenID:" + +#: ../../boot.php:808 +msgid "Forgot your password?" +msgstr "Ĉu vi vorgesis vian pasvorton?" + +#: ../../boot.php:975 +msgid "Edit profile" +msgstr "Redakti profilon" + +#: ../../boot.php:1035 +msgid "Message" +msgstr "Mesaĝo" + +#: ../../boot.php:1151 ../../boot.php:1223 +msgid "g A l F d" +msgstr "\\j\\e \\l\\a G\\a \\h\\o\\r\\o, l F d" + +#: ../../boot.php:1152 ../../boot.php:1224 +msgid "F d" +msgstr "F d" + +#: ../../boot.php:1177 +msgid "Birthday Reminders" +msgstr "Memorigilo pri naskiĝtagoj" + +#: ../../boot.php:1178 +msgid "Birthdays this week:" +msgstr "Naskiĝtagoj ĉi-semajne:" + +#: ../../boot.php:1201 ../../boot.php:1266 +msgid "[today]" +msgstr "[hodiaŭ]" + +#: ../../boot.php:1247 +msgid "Event Reminders" +msgstr "Memorigiloj pri Okazoj" + +#: ../../boot.php:1248 +msgid "Events this week:" +msgstr "Okazoj ĉi-semajne:" + +#: ../../boot.php:1260 +msgid "[No description]" +msgstr "[Neniu priskribo]" diff --git a/view/eo/strings.php b/view/eo/strings.php new file mode 100644 index 000000000..33c856ed0 --- /dev/null +++ b/view/eo/strings.php @@ -0,0 +1,1578 @@ +strings["Post successful."] = "Sukcese afiŝita."; +$a->strings["[Embedded content - reload page to view]"] = "[Enigita enhavo - reŝargu paĝon por spekti ĝin]"; +$a->strings["Contact settings applied."] = "Kontaktagordoj estas konservita."; +$a->strings["Contact update failed."] = "Ĝisdatigo de kontakto malsukcesis."; +$a->strings["Permission denied."] = "Malpermesita."; +$a->strings["Contact not found."] = "Kontakto ne trovita."; +$a->strings["Repair Contact Settings"] = "Ripari kontaktagordoj."; +$a->strings["WARNING: This is highly advanced and if you enter incorrect information your communications with this contact may stop working."] = "AVERTO: Tio estas tre altnivela kaj se vi entajpus malĝustan informojn, komunikado kun la kontakto eble ne plu funkcios."; +$a->strings["Please use your browser 'Back' button now if you are uncertain what to do on this page."] = "Bonvolu klaki 'malantaŭen' en via retesplorilo nun se vi ne scias kion faru ĉi tie."; +$a->strings["Return to contact editor"] = "Reen al kontakta redaktilo"; +$a->strings["Name"] = "Nomo"; +$a->strings["Account Nickname"] = "Kaŝnomo de la konto"; +$a->strings["@Tagname - overrides Name/Nickname"] = "@Marknomo - Transpasas nomon/kaŝnomon"; +$a->strings["Account URL"] = "Adreso de la konto"; +$a->strings["Friend Request URL"] = "Kontaktpeta adreso"; +$a->strings["Friend Confirm URL"] = "Kontaktkonfirma adreso"; +$a->strings["Notification Endpoint URL"] = "Finpunkta adreso por atentigoj"; +$a->strings["Poll/Feed URL"] = "Adreso de fluo"; +$a->strings["New photo from this URL"] = "Nova bildo el tiu adreso"; +$a->strings["Submit"] = "Sendi"; +$a->strings["Help:"] = "Helpo:"; +$a->strings["Help"] = "Helpo"; +$a->strings["Not Found"] = "Ne trovita"; +$a->strings["Page not found."] = "Paĝo ne trovita"; +$a->strings["File exceeds size limit of %d"] = "Dosiero estas pli granda ol la limito de %d"; +$a->strings["File upload failed."] = "Alŝutado malsukcesis."; +$a->strings["Friend suggestion sent."] = "Amikosugesto sendita."; +$a->strings["Suggest Friends"] = "Sugesti amikojn"; +$a->strings["Suggest a friend for %s"] = "Sugesti amikon por %s"; +$a->strings["Event description and start time are required."] = "Okazo bezonas priskribon kaj startotempon."; +$a->strings["l, F j"] = "l, F j"; +$a->strings["Edit event"] = "Redakti okazon"; +$a->strings["link to source"] = "ligi al fonto"; +$a->strings["Events"] = "Okazoj"; +$a->strings["Create New Event"] = "Krei novan okazon"; +$a->strings["Previous"] = "antaŭa"; +$a->strings["Next"] = "sekva"; +$a->strings["hour:minute"] = "horo:minuto"; +$a->strings["Event details"] = "Detaloj de okazo"; +$a->strings["Format is %s %s. Starting date and Description are required."] = "Formato estas %s %s. Startotempo kaj priskribo estas bezonataj"; +$a->strings["Event Starts:"] = "Okazo startas:"; +$a->strings["Finish date/time is not known or not relevant"] = "Fina dato/tempo ne estas konata aŭ ne bezonata"; +$a->strings["Event Finishes:"] = "Okazo finas:"; +$a->strings["Adjust for viewer timezone"] = "Agordi al horzono de la leganto"; +$a->strings["Description:"] = "Priskribo"; +$a->strings["Location:"] = "Loko:"; +$a->strings["Share this event"] = "Kunhavigi la okazon"; +$a->strings["Cancel"] = "Nuligi"; +$a->strings["Tag removed"] = "Marko forviŝita"; +$a->strings["Remove Item Tag"] = "Forviŝi markon"; +$a->strings["Select a tag to remove: "] = "Elektu forviŝontan markon:"; +$a->strings["Remove"] = "Forviŝi"; +$a->strings["%s welcomes %s"] = "%s salutas %s"; +$a->strings["Authorize application connection"] = "Rajtigi programkonekton"; +$a->strings["Return to your app and insert this Securty Code:"] = "Reiru al via programo kaj entajpu la securecan kodon:"; +$a->strings["Please login to continue."] = "Bonvolu ensaluti por pluigi."; +$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Ĉu rajtigi ĉi tiun programon por atingi viajn afiŝojn kaj kontaktojn kaj/aŭ krei novajn afiŝojn?"; +$a->strings["Yes"] = "Jes"; +$a->strings["No"] = "Ne"; +$a->strings["Photo Albums"] = "Bildalbumoj"; +$a->strings["Contact Photos"] = "Kontaktbildoj"; +$a->strings["Upload New Photos"] = "Alŝuti novajn bildojn"; +$a->strings["everybody"] = "ĉiuj"; +$a->strings["Contact information unavailable"] = "Kontaktoj informoj ne disponeblas"; +$a->strings["Profile Photos"] = "Profilbildoj"; +$a->strings["Album not found."] = "Albumo ne trovita."; +$a->strings["Delete Album"] = "Forviŝi albumon"; +$a->strings["Delete Photo"] = "Forviŝi bildon"; +$a->strings["was tagged in a"] = "estas markita en"; +$a->strings["photo"] = "bildo"; +$a->strings["by"] = "de"; +$a->strings["Image exceeds size limit of "] = "Bildo estas pli granda ol la limito de"; +$a->strings["Image file is empty."] = "Bilddosiero estas malplena."; +$a->strings["Unable to process image."] = "Ne eblas procedi la bildon."; +$a->strings["Image upload failed."] = "Alŝuto de bildo malsukcesis."; +$a->strings["Public access denied."] = "Publika atingo ne permesita."; +$a->strings["No photos selected"] = "Neniu bildoj elektita"; +$a->strings["Access to this item is restricted."] = "Atingo al tio elemento estas limigita."; +$a->strings["Upload Photos"] = "Alŝuti bildojn"; +$a->strings["New album name: "] = "Nomo por nova albumo:"; +$a->strings["or existing album name: "] = "aŭ nomo de estanta albumo:"; +$a->strings["Do not show a status post for this upload"] = "Ne kreu statan afiŝon por tio alŝuto."; +$a->strings["Permissions"] = "Permesoj"; +$a->strings["Edit Album"] = "Redakti albumon"; +$a->strings["View Photo"] = "Vidi bildon"; +$a->strings["Permission denied. Access to this item may be restricted."] = "Malpermesita. Atingo al tio elemento eble estas limigita."; +$a->strings["Photo not available"] = "La bildo ne disponeblas"; +$a->strings["View photo"] = "Vidi bildon"; +$a->strings["Edit photo"] = "Redakti bildon"; +$a->strings["Use as profile photo"] = "Uzi kiel profilbildo"; +$a->strings["Private Message"] = "Privata mesaĝo"; +$a->strings["View Full Size"] = "Vidi plengrande "; +$a->strings["Tags: "] = "Markoj:"; +$a->strings["[Remove any tag]"] = "[Forviŝi iun markon]"; +$a->strings["New album name"] = "Nova nomo de albumo"; +$a->strings["Caption"] = "Apudskribo"; +$a->strings["Add a Tag"] = "Aldoni markon"; +$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Ekzemple: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"; +$a->strings["I like this (toggle)"] = "Mi ŝatas tion (ŝalti)"; +$a->strings["I don't like this (toggle)"] = "Mi malŝatas tion(ŝalti)"; +$a->strings["Share"] = "Kunhavigi"; +$a->strings["Please wait"] = "Bonvolu atendi"; +$a->strings["This is you"] = "Tiu estas vi"; +$a->strings["Comment"] = "Komenti"; +$a->strings["Preview"] = "Antaŭrigardi"; +$a->strings["Delete"] = "Forviŝi"; +$a->strings["View Album"] = "Vidi albumon"; +$a->strings["Recent Photos"] = "̂Ĵusaj bildoj"; +$a->strings["Not available."] = "Ne disponebla."; +$a->strings["Community"] = "Komunumo"; +$a->strings["No results."] = "Nenion trovita."; +$a->strings["This is Friendica, version"] = "Tio estas Friendica en la versio"; +$a->strings["running at web location"] = "instalita ĉe la adreso"; +$a->strings["Please visit Friendica.com to learn more about the Friendica project."] = "Bonvolu iri al Friendica.com por lerni pli pri la projekto Friendica"; +$a->strings["Bug reports and issues: please visit"] = "Cimraportoj kaj atendindaĵo: bonvolu iri al"; +$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Sugestoj, laŭdoj, donacoj ktp - bonvolu sendi mesĝon al \"Info\" ĉe Friendica - punkto com"; +$a->strings["Installed plugins/addons/apps:"] = "Instalitaj kromprogramoj/programoj:"; +$a->strings["No installed plugins/addons/apps"] = "Neniom da instalitaj aldonaĵoj/programoj"; +$a->strings["Item not found"] = "Elemento ne trovita"; +$a->strings["Edit post"] = "Redakti afiŝon"; +$a->strings["Post to Email"] = "Sendi tra retpoŝto"; +$a->strings["Edit"] = "Redakti"; +$a->strings["Upload photo"] = "Alŝuti bildon"; +$a->strings["Attach file"] = "Kunligi dosieron"; +$a->strings["Insert web link"] = "Enmeti retan adreson"; +$a->strings["Insert YouTube video"] = "Enmeti videton ĉe YouTube"; +$a->strings["Insert Vorbis [.ogg] video"] = "Enmeti videton en formato Vorbis [.ogg]"; +$a->strings["Insert Vorbis [.ogg] audio"] = "Enmeti sonon en formato Vorbis [.ogg]"; +$a->strings["Set your location"] = "Agordi vian lokon"; +$a->strings["Clear browser location"] = "Forviŝu retesplorilan lokon"; +$a->strings["Permission settings"] = "Permesagordoj"; +$a->strings["CC: email addresses"] = "CC: retpoŝtadresojn"; +$a->strings["Public post"] = "Publika afiŝo"; +$a->strings["Set title"] = "Redakti titolon"; +$a->strings["Categories (comma-separated list)"] = "Kategorioj (disigita per komo)"; +$a->strings["Example: bob@example.com, mary@example.com"] = "Ekzemple: bob@example.com, mary@example.com"; +$a->strings["This introduction has already been accepted."] = "Tia prezento jam estas akceptita"; +$a->strings["Profile location is not valid or does not contain profile information."] = "La adreso de la profilo ne validas aŭ ne enhavas profilinformojn."; +$a->strings["Warning: profile location has no identifiable owner name."] = "Averto: La adreso de la profilo ne enhavas identeblan personan nomon."; +$a->strings["Warning: profile location has no profile photo."] = "Averto: La adreso de la profilo ne enhavas bildon."; +$a->strings["%d required parameter was not found at the given location"] = array( + 0 => "%d bezonataj parametroj ne trovita ĉe la donata adreso.", + 1 => "%d bezonataj parametroj ne trovita ĉe la donata adreso.", +); +$a->strings["Introduction complete."] = "Prezento sukcesis."; +$a->strings["Unrecoverable protocol error."] = "Neĝustigebla eraro en protokolo."; +$a->strings["Profile unavailable."] = "Profilo ne estas disponebla."; +$a->strings["%s has received too many connection requests today."] = "%s hodiaŭ ricevis tro multe da konektpetoj."; +$a->strings["Spam protection measures have been invoked."] = "Kontraŭspamilo estas aktivita."; +$a->strings["Friends are advised to please try again in 24 hours."] = "Amikoj, vi bonvolu ripeti post 24 horoj."; +$a->strings["Invalid locator"] = "Nevalida adreso."; +$a->strings["Invalid email address."] = "Nevalida repoŝtadreso."; +$a->strings["This account has not been configured for email. Request failed."] = "La konto ne estas agordita por retpoŝto. La peto malsukcesis."; +$a->strings["Unable to resolve your name at the provided location."] = "Via nomo ne troveblas al la donita adreso."; +$a->strings["You have already introduced yourself here."] = "Vi vin jam prezentis tie."; +$a->strings["Apparently you are already friends with %s."] = "Ŝajnas kvazaŭ vi jam amikiĝis kun %s."; +$a->strings["Invalid profile URL."] = "Nevalida adreso de profilo."; +$a->strings["Disallowed profile URL."] = "Malpermesita adreso de profilo."; +$a->strings["Failed to update contact record."] = "Ĝisdatigo de via kontaktrikordo malsukcesis."; +$a->strings["Your introduction has been sent."] = "Via prezento estas sendita."; +$a->strings["Please login to confirm introduction."] = "Bonvolu ensaluti por jesigi la prezenton."; +$a->strings["Incorrect identity currently logged in. Please login to this profile."] = "Malĝusta identaĵo ensalutata. Bonvolu ensaluti en tiun profilon."; +$a->strings["Welcome home %s."] = "Bonvenon hejme, %s."; +$a->strings["Please confirm your introduction/connection request to %s."] = "Bonvolu konfirmi vian prezenton / kontaktpeton al %s."; +$a->strings["Confirm"] = "Konfirmi."; +$a->strings["[Name Withheld]"] = "[Kaŝita nomo]"; +$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Bonvolu entajpi vian 'Identecan Adreson' de iu de tiuj subtenataj komunikaj retejoj: "; +$a->strings["Connect as an email follower (Coming soon)"] = "Konektu kiel retpoŝta sekvanto (Baldaŭ venos)"; +$a->strings["If you are not yet a member of the free social web, follow this link to find a public Friendica site and join us today."] = "Se vi ne estas membro de la libra interkona reto, sekvu ĉi-ligilon por trovi publikan Friendica retejon kaj aliĝi kun ni hodiaŭ."; +$a->strings["Friend/Connection Request"] = "Prezento / Konektpeto"; +$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Ekzemploj: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"; +$a->strings["Please answer the following:"] = "Bonvolu respondi:"; +$a->strings["Does %s know you?"] = "Ĉu %s konas vin?"; +$a->strings["Add a personal note:"] = "Aldoni personan noton:"; +$a->strings["Friendica"] = "Friendica"; +$a->strings["StatusNet/Federated Social Web"] = "StatusNet/Federaciaj interkonaj retejoj"; +$a->strings["Diaspora"] = "Diaspora"; +$a->strings[" - please do not use this form. Instead, enter %s into your Diaspora search bar."] = " - bonvolu ne uzi ĉi formo. Anstataŭe, entajpu %s en la Diaspora serĉilo."; +$a->strings["Your Identity Address:"] = "Via identeca adreso:"; +$a->strings["Submit Request"] = "Sendi peton"; +$a->strings["Friendica Social Communications Server - Setup"] = "Friendica Interkona Komunikada Servilo - Instalo"; +$a->strings["Database connection"] = "Datumbaza konekto"; +$a->strings["Could not connect to database."] = "Ne eblas konekti la datumbazon."; +$a->strings["Could not create table."] = "Ne eblas krei tabelon."; +$a->strings["Your Friendica site database has been installed."] = "La datumbazo de vi Friendica retjo estas instalita."; +$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "GRAVA: Vi bezonas [mane] agordi planitan taskon por la Friendica poller."; +$a->strings["Please see the file \"INSTALL.txt\"."] = "Bonvolu legi la dosieron \"INSTALL.txt\"."; +$a->strings["Proceed to registration"] = "Pluigi al la registrilo"; +$a->strings["Proceed with Installation"] = "Pluigi la instalado"; +$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Vi bezonas mane importi la dosieron \"database.sql\" tra phpmyadmin aŭ mysql."; +$a->strings["Database import failed."] = "Importo de la datumbazo malsukcesis."; +$a->strings["System check"] = "Sistema kontrolo"; +$a->strings["Check again"] = "Ree kontroli"; +$a->strings["In order to install Friendica we need to know how to connect to your database."] = "Por instali Friendica, ni bezonas scii kiel konekti al via datumbazo."; +$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Bonvolu kontakti vian servilprovizanton aŭ administranton se vi havas demandoj pri ĉi tiaj agordoj."; +$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "La datumbazo nomata malsupren jam ekzistu. Se ĝi ne ekzistas, bonvolu unue krei ĝin antaŭ progresi."; +$a->strings["Database Server Name"] = "Nomo de datumbaza servilo."; +$a->strings["Database Login Name"] = "Salutnomo ĉe la datumbazo."; +$a->strings["Database Login Password"] = "Pasvorto ĉe la datumbazo."; +$a->strings["Database Name"] = "Nomo de la datumbazo."; +$a->strings["Site administrator email address"] = "Retpoŝtadreso de la reteja administranto"; +$a->strings["Your account email address must match this in order to use the web admin panel."] = "La repoŝtadreso de via konto bezonas esti la sama por uzi la TTTa administrilo."; +$a->strings["Please select a default timezone for your website"] = "Bonvolu elekti defaŭltan horzonon por via retejo."; +$a->strings["Site settings"] = "Retejaj agordoj"; +$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Komanda linia versio de PHP ne trovita en $PATH de la retservilo."; +$a->strings["PHP executable path"] = "Vojo de la komanda linia versio de PHP"; +$a->strings["Enter full path to php executable"] = "Entajpu plenan vojon al la komanda linia versio de PHP"; +$a->strings["Command line PHP"] = "komanda linia versio de PHP"; +$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "En via komanda linia versio de PHP je via sistemo, \"register_argc_argv\" ne estas aktivita."; +$a->strings["This is required for message delivery to work."] = "Tio estas bezonata por la livero de mesaĝoj."; +$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"] = "Eraro: La funkcio \"openssl_pkey_new\" je tia sistemo ne eblas generi ĉifroŝlosilojn."; +$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Se la operaciumo sistemo estas Windows, bonvolu legi: http://www.php.net/manual/en/openssl.installation.php"; +$a->strings["Generate encryption keys"] = "Generi ĉifroŝlosilojn"; +$a->strings["libCurl PHP module"] = "PHP modulo libCurl"; +$a->strings["GD graphics PHP module"] = "PHP modulo GD"; +$a->strings["OpenSSL PHP module"] = "PHP modulo OpenSSL"; +$a->strings["mysqli PHP module"] = "PHP modulo mysqli"; +$a->strings["mb_string PHP module"] = "PHP modulo mb_string"; +$a->strings["Apace mod_rewrite module"] = "Apache modulo mod_rewrite"; +$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Eraro: La modulo mod_rewrite en la Apache retservilo estas bezonata sed ne instalita."; +$a->strings["Error: libCURL PHP module required but not installed."] = "Eraro: La modulo libCURL en PHP estas bezonata sed ne instalita."; +$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Eraro: La modulo GD en PHP kun subteno por JPEG estas bezonata sed ne instalita."; +$a->strings["Error: openssl PHP module required but not installed."] = "Eraro: La modulo OpenSSL en PHP estas bezonata sed ne instalita."; +$a->strings["Error: mysqli PHP module required but not installed."] = "Eraro: La modulo mysqli en PHP estas bezonata sed ne instalita."; +$a->strings["Error: mb_string PHP module required but not installed."] = "Eraro: La modulo mb_string en PHP estas bezonata sed ne instalita."; +$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."] = "La reta instalilo bezonas skribi dosieron nomata \".htconfig.php\" en la baza dosierujo de la retservilo, sed ne sukcesis."; +$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."] = "Tio ĉi plej ofte estas agordo rilate al permesoj, ĉar la servilo eble ne povas skribi en via dosierujo, eĉ se vi mem povas skribi."; +$a->strings["Please check with your site documentation or support people to see if this situation can be corrected."] = "Bonvolu kontroli la dokumentojn de via servilo aŭ teĥnikiston por ekscii ĉu la situacio ĝustigeblas."; +$a->strings["If not, you may be required to perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "Se ne, vi eble bezonas instali mane. Bonvolu legi la dosieron \"INSTALL.txt\" por pluaj instruaĵoj."; +$a->strings[".htconfig.php is writable"] = ".htconfig.php estas skribebla."; +$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."] = "Ne povis skribi la datumbaza agordoj en la dosiero \".htconfig.php\". Bonvolu uzi la inkluzivan tekston por krei agordan dosieron en la baza dosierujo de la retservilo."; +$a->strings["Errors encountered creating database tables."] = "Okazis eraroj dum la kreado de tabeloj en la datumbazo."; +$a->strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ g:i A"; +$a->strings["Time Conversion"] = "Konverto de tempo"; +$a->strings["Friendika provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica provizas tiun servon por kunhavigi okazojn kun aliaj retoj kaj amikoj en aliaj horzonoj."; +$a->strings["UTC time: %s"] = "UTC horo: %s"; +$a->strings["Current timezone: %s"] = "Aktuala horzono: %s"; +$a->strings["Converted localtime: %s"] = "Konvertita loka horo: %s"; +$a->strings["Please select your timezone:"] = "Bonvolu elekti vian horzonon:"; +$a->strings["Profile Match"] = "Kongrua profilo"; +$a->strings["No keywords to match. Please add keywords to your default profile."] = "Neniom da kategoriaj vortoj kongruas. Bonvolu aldoni kategoriajn vortojn al via defaŭlta profilo."; +$a->strings["is interested in:"] = "interesiĝas pri:"; +$a->strings["Connect"] = "Konekti"; +$a->strings["No matches"] = "Nenio estas trovita"; +$a->strings["Remote privacy information not available."] = "Informoj pri fora privateca ne estas disponebla."; +$a->strings["Visible to:"] = "Videbla al:"; +$a->strings["Welcome to %s"] = "Bonvenon ĉe %s"; +$a->strings["Invalid request identifier."] = "Nevalida peta identigilo."; +$a->strings["Discard"] = "Forviŝi"; +$a->strings["Ignore"] = "Ignori"; +$a->strings["System"] = "Sistemo"; +$a->strings["Network"] = "Reto"; +$a->strings["Personal"] = "Propra"; +$a->strings["Home"] = "Hejmo"; +$a->strings["Introductions"] = "Prezentoj"; +$a->strings["Messages"] = "Mesaĝoj"; +$a->strings["Show Ignored Requests"] = "Montri ignoritajn petojn"; +$a->strings["Hide Ignored Requests"] = "Kaŝi ignoritajn petojn"; +$a->strings["Notification type: "] = "Tipo de atentigo:"; +$a->strings["Friend Suggestion"] = "Amikosugestoj"; +$a->strings["suggested by %s"] = "sugestita de %s"; +$a->strings["Hide this contact from others"] = "Kaŝi ĉi tiun kontakton al aliaj"; +$a->strings["Post a new friend activity"] = "Afiŝi novan amikecan aktivecon"; +$a->strings["if applicable"] = "se aplikebla"; +$a->strings["Approve"] = "Aprobi"; +$a->strings["Claims to be known to you: "] = "Pensas ke vi konas ilin:"; +$a->strings["yes"] = "jes"; +$a->strings["no"] = "ne"; +$a->strings["Approve as: "] = "Aprobi kiel:"; +$a->strings["Friend"] = "Amiko"; +$a->strings["Sharer"] = "Kunhaviganto"; +$a->strings["Fan/Admirer"] = "Fanatikulo/Admiranto"; +$a->strings["Friend/Connect Request"] = "Kontaktpeto"; +$a->strings["New Follower"] = "Nova abonanto"; +$a->strings["No introductions."] = "Neniom da prezentoj"; +$a->strings["Notifications"] = "Atentigoj"; +$a->strings["%s liked %s's post"] = "%s ŝatis la afiŝon de %s"; +$a->strings["%s disliked %s's post"] = "%s malŝatis la afiŝon de %s"; +$a->strings["%s is now friends with %s"] = "%s amikiĝis kun %s"; +$a->strings["%s created a new post"] = "%s kreis novan afiŝon"; +$a->strings["%s commented on %s's post"] = "%s komentis pri la afiŝo de %s"; +$a->strings["No more network notifications."] = "Ne pli da retaj atentigoj."; +$a->strings["Network Notifications"] = "Retaj Atentigoj"; +$a->strings["No more system notifications."] = "Ne pli da sistemaj atentigoj."; +$a->strings["System Notifications"] = "Sistemaj Atentigoj"; +$a->strings["No more personal notifications."] = "Ne pli da personaj atentigoj"; +$a->strings["Personal Notifications"] = "Personaj Atentigoj"; +$a->strings["No more home notifications."] = "Ne pli da hejmrilataj atentigoj."; +$a->strings["Home Notifications"] = "Hejmrilataj atentigoj"; +$a->strings["Could not access contact record."] = "Ne eblis atingi kontaktrikordo."; +$a->strings["Could not locate selected profile."] = "Ne trovis elektitan profilon."; +$a->strings["Contact updated."] = "Kontakto estas ĝisdatigita."; +$a->strings["Contact has been blocked"] = "Kontakto estas blokita."; +$a->strings["Contact has been unblocked"] = "Kontakto estas malblokita."; +$a->strings["Contact has been ignored"] = "Kontakto estas ignorita."; +$a->strings["Contact has been unignored"] = "Kontakto estas malignorita."; +$a->strings["stopped following"] = "ne plu sekvas"; +$a->strings["Contact has been removed."] = "Kontakto estas forigita."; +$a->strings["You are mutual friends with %s"] = "Vi estas reciproka amiko de %s"; +$a->strings["You are sharing with %s"] = "Vi kunhavigas kun %s"; +$a->strings["%s is sharing with you"] = "%s kunhavigas kun vi"; +$a->strings["Private communications are not available for this contact."] = "Privataj komunikadoj ne disponeblas por ĉi tiu kontakto."; +$a->strings["Never"] = "Neniam"; +$a->strings["(Update was successful)"] = "(Ĝisdatigo sukcesis.)"; +$a->strings["(Update was not successful)"] = "(Ĝisdatigo malsukcesis.)"; +$a->strings["Suggest friends"] = "Sugesti amikojn"; +$a->strings["Network type: %s"] = "Reta tipo: %s"; +$a->strings["%d contact in common"] = array( + 0 => "%d komuna kontakto", + 1 => "%d komunaj kontaktoj", +); +$a->strings["View all contacts"] = "Vidi ĉiujn kontaktojn"; +$a->strings["Unblock"] = "Malbloki"; +$a->strings["Block"] = "Bloki"; +$a->strings["Unignore"] = "Malignori"; +$a->strings["Repair"] = "Ripari"; +$a->strings["Contact Editor"] = "Kontakta redaktilo."; +$a->strings["Profile Visibility"] = "Videbleco de profilo"; +$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Bonvolu elekti la profilon kiu vi volas montri al %s aspektinde kiam sekure aspektante vian profilon."; +$a->strings["Contact Information / Notes"] = "Kontaktaj informoj / Notoj"; +$a->strings["Edit contact notes"] = "Redakti kontaktnotojn"; +$a->strings["Visit %s's profile [%s]"] = "Viziti la profilon de %s [%s]"; +$a->strings["Block/Unblock contact"] = "Bloki/Malbloki kontakton"; +$a->strings["Ignore contact"] = "Ignori kontakton"; +$a->strings["Repair URL settings"] = "Ripari URL agordoj"; +$a->strings["View conversations"] = "Vidi konversaciojn"; +$a->strings["Delete contact"] = "Forviŝi kontakton"; +$a->strings["Last update:"] = "Plej ĵusa ĝisdatigo:"; +$a->strings["Update public posts"] = "Ĝisdatigi publikajn afiŝojn"; +$a->strings["Update now"] = "Ĝisdatigi nun"; +$a->strings["Currently blocked"] = "Nuntempe blokata"; +$a->strings["Currently ignored"] = "Nuntempe ignorata"; +$a->strings["Replies/likes to your public posts may still be visible"] = "Rispondoj/ŝataĵo al viaj publikaj afiŝoj eble plu estos videbla"; +$a->strings["Suggestions"] = "Sugestoj"; +$a->strings["All Contacts"] = "Ĉiuj Kontaktoj"; +$a->strings["Unblocked Contacts"] = "Malblokitaj Kontaktoj"; +$a->strings["Blocked Contacts"] = "Blokitaj Kontaktoj"; +$a->strings["Ignored Contacts"] = "Ignoritaj Kontaktoj"; +$a->strings["Hidden Contacts"] = "Kaŝitaj Kontaktoj"; +$a->strings["Mutual Friendship"] = "Reciproka amikeco"; +$a->strings["is a fan of yours"] = "estas admiranto de vi"; +$a->strings["you are a fan of"] = "vi estas admiranto de"; +$a->strings["Edit contact"] = "Redakti kontakton"; +$a->strings["Contacts"] = "Kontaktoj"; +$a->strings["Search your contacts"] = "Serĉi viajn kontaktojn"; +$a->strings["Finding: "] = "Trovata:"; +$a->strings["Find"] = "Trovi"; +$a->strings["No valid account found."] = "Ne trovis validan konton."; +$a->strings["Password reset request issued. Check your email."] = "Eldonis riparadon de pasvorto. Legu vian retpoŝton."; +$a->strings["Password reset requested at %s"] = "Pasvorta riparado petita je %s"; +$a->strings["Administrator"] = "Administranto"; +$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Ne povis konfirmi la peton. (Eble vi sendis ĝin antaŭ.) Pasvorta riparado malsukcesis."; +$a->strings["Password Reset"] = "Pasvorta riparado"; +$a->strings["Your password has been reset as requested."] = "Via pasvorto estis riparita laŭ via peto."; +$a->strings["Your new password is"] = "Via nova pasvorto estas"; +$a->strings["Save or copy your new password - and then"] = "Memorigi vian novan pasvorton - kaj poste"; +$a->strings["click here to login"] = "klaku ĉi tie por ensaluti"; +$a->strings["Your password may be changed from the Settings page after successful login."] = "Vi povas ŝangi vian pasvorton sur la paĝo agordoj kiam vi sukcese ensalutis."; +$a->strings["Forgot your Password?"] = "Ĉu vi forgesis vian pasvorton?"; +$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Entajpu vian retpoŝtadreson kaj sendu por pasvorta riparado. Poste, bonvolu legi vian retpoŝton por trovi pliajn instrukciojn."; +$a->strings["Nickname or Email: "] = "Salutnomo aŭ retpoŝtadreso: "; +$a->strings["Reset"] = "Repari"; +$a->strings["Account settings"] = "Kontoagordoj"; +$a->strings["Display settings"] = "Ekranagordoj"; +$a->strings["Connector settings"] = "Konektiloagordoj"; +$a->strings["Plugin settings"] = "Agordoj pri kromprogramoj"; +$a->strings["Connected apps"] = "Konektitaj programoj"; +$a->strings["Export personal data"] = "Eksporti personan datumaron"; +$a->strings["Settings"] = "Agordoj"; +$a->strings["Missing some important data!"] = "Mankas importantaj datumoj!"; +$a->strings["Update"] = "Ĝisdatigi"; +$a->strings["Failed to connect with email account using the settings provided."] = "Ne sukcesis konekti al retpoŝtkonto kun la provizitaj agordoj."; +$a->strings["Email settings updated."] = "Retpoŝtagordoj ĝisdatigita"; +$a->strings["Passwords do not match. Password unchanged."] = "La pasvortoj ne estas egala. Pasvorto ne ŝanĝita."; +$a->strings["Empty passwords are not allowed. Password unchanged."] = "Malplenaj pasvortoj ne estas permesita. Pasvorto ne ŝanĝita."; +$a->strings["Password changed."] = "Pasvorto ŝanĝita."; +$a->strings["Password update failed. Please try again."] = "Ĝisdatigo de pasvorto malsukcesis. Bonvolu provi refoje."; +$a->strings[" Please use a shorter name."] = " Bonvolu uzi pli mallongan nomon."; +$a->strings[" Name too short."] = " Nomo estas tro mallonga."; +$a->strings[" Not valid email."] = " Repoŝtadreso ne validas."; +$a->strings[" Cannot change to that email."] = " Ne povas ŝanĝi al tio retpoŝtadreso."; +$a->strings["Settings updated."] = "Agordoj ĝisdatigita."; +$a->strings["Add application"] = "Aldoni programon"; +$a->strings["Consumer Key"] = "Ŝlosilo de kliento"; +$a->strings["Consumer Secret"] = "Sekreto de kliento"; +$a->strings["Redirect"] = "Alidirekto"; +$a->strings["Icon url"] = "Piktograma adreso"; +$a->strings["You can't edit this application."] = "Ĉi tio programo ne estas redaktebla."; +$a->strings["Connected Apps"] = "Konektitaj Programoj"; +$a->strings["Client key starts with"] = "Ŝlosilo de kliento komencas kun"; +$a->strings["No name"] = "Neniu nomo"; +$a->strings["Remove authorization"] = "Forviŝi rajtigon"; +$a->strings["No Plugin settings configured"] = "Neniom da kromprogramoagordoj farita"; +$a->strings["Plugin Settings"] = "Kromprogramoagordoj"; +$a->strings["Built-in support for %s connectivity is %s"] = "Integrita subteno por %s koneto estas %s"; +$a->strings["enabled"] = "ŝaltita"; +$a->strings["disabled"] = "malŝaltita"; +$a->strings["StatusNet"] = "StatusNet"; +$a->strings["Connector Settings"] = "Konektiloagordoj"; +$a->strings["Email/Mailbox Setup"] = "Agordoj pri Retpoŝto"; +$a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "Se vi volas uzi ĉi tiun servon por komuniki tra retpoŝto (nedeviga), bonvolu specifi kiel konekti al vian retpoŝtkonton."; +$a->strings["Last successful email check:"] = "Plej ĵusa sukcesa kontrolo de poŝto:"; +$a->strings["Email access is disabled on this site."] = "Retpoŝta atingo ne disponeblas ĉi tie."; +$a->strings["IMAP server name:"] = "Nomo de IMAP servilo:"; +$a->strings["IMAP port:"] = "Numero de IMAP pordo:"; +$a->strings["Security:"] = "Sekureco:"; +$a->strings["None"] = "Nenio"; +$a->strings["Email login name:"] = "Retpoŝta salutnomo:"; +$a->strings["Email password:"] = "Retpoŝta pasvorto:"; +$a->strings["Reply-to address:"] = "Responda adreso (Reply-to):"; +$a->strings["Send public posts to all email contacts:"] = "Sendu publikajn afiŝojn al ĉiuj retpoŝtkontaktoj:"; +$a->strings["Action after import:"] = "Ago post la importado:"; +$a->strings["Mark as seen"] = "Marki kiel legita"; +$a->strings["Move to folder"] = "Movi al dosierujo"; +$a->strings["Move to folder:"] = "Movi al dosierujo:"; +$a->strings["Display Settings"] = "Ekranagordoj"; +$a->strings["Display Theme:"] = "Vidiga etoso:"; +$a->strings["Update browser every xx seconds"] = "Ĝisdatigu retesplorilon ĉiu xxx sekundoj"; +$a->strings["Minimum of 10 seconds, no maximum"] = "Minimume 10 sekundoj, sen maksimumo"; +$a->strings["Number of items to display on the network page:"] = "Kvanto da elementoj kiuj estos montrata ĉe la reto paĝo."; +$a->strings["Maximum of 100 items"] = "Maksimume 100 eroj"; +$a->strings["Don't show emoticons"] = "Ne montru ridetulojn."; +$a->strings["Normal Account"] = "Normala konto"; +$a->strings["This account is a normal personal profile"] = "Tiu konto estas normala persona profilo"; +$a->strings["Soapbox Account"] = "Konto ĉe Soapbox"; +$a->strings["Automatically approve all connection/friend requests as read-only fans"] = "Aŭtomate konfirmi ĉiujn kontaktpetojn kiel nurlegaj admirantoj"; +$a->strings["Community/Celebrity Account"] = "Komunuma/eminentula Konto"; +$a->strings["Automatically approve all connection/friend requests as read-write fans"] = "Aŭtomate konfirmi ĉiujn kontaktpetojn kiel admirantoj kapable legi kaj skribi"; +$a->strings["Automatic Friend Account"] = "Aŭtomata Amika Konto"; +$a->strings["Automatically approve all connection/friend requests as friends"] = "Aŭtomate konfirmi ĉiujn kontaktpetojn kiel amikoj"; +$a->strings["OpenID:"] = "OpenID:"; +$a->strings["(Optional) Allow this OpenID to login to this account."] = "(Nedeviga) Permesi atingon al la konton al ĉi tio OpenID."; +$a->strings["Publish your default profile in your local site directory?"] = "Publikigi vian defaŭltan profilon en la loka reteja katalogo?"; +$a->strings["Publish your default profile in the global social directory?"] = "Publikigi vian defaŭltan profilon en la tutmonda interkona katalogo?"; +$a->strings["Hide your contact/friend list from viewers of your default profile?"] = "Kaŝi vian liston de kontaktoj/amiko al spektantoj de via defaŭlta profilo?"; +$a->strings["Hide your profile details from unknown viewers?"] = "Kaŝi viajn profilajn detalojn al nekonataj spektantoj?"; +$a->strings["Allow friends to post to your profile page?"] = "Ĉu amikoj povu afiŝi al via profilo?"; +$a->strings["Allow friends to tag your posts?"] = "Ĉu amikoj povu aldoni markojn al viaj afiŝoj?"; +$a->strings["Allow us to suggest you as a potential friend to new members?"] = "Ĉu ni povu sugesti vin kiel amiko al novaj membroj?"; +$a->strings["Permit unknown people to send you private mail?"] = "Permesigi nekonatulojn sendi retpoŝton al vi?"; +$a->strings["Profile is not published."] = "Profilo ne estas publika."; +$a->strings["or"] = "aŭ"; +$a->strings["Your Identity Address is"] = "Via identeco adreso estas"; +$a->strings["Automatically expire posts after this many days:"] = "Automatike senvalidigi afiŝojn post tiom da tagoj:"; +$a->strings["If empty, posts will not expire. Expired posts will be deleted"] = "Se malplena, afiŝoj neniam senvalidiĝos. Senvalidigitajn afiŝon estos forviŝata"; +$a->strings["Advanced expiration settings"] = "Detalaj agordoj rilate al senvalidiĝo"; +$a->strings["Advanced Expiration"] = "Detala senvalidiĝo"; +$a->strings["Expire posts:"] = "Senvalidigi afiŝojn:"; +$a->strings["Expire personal notes:"] = "Senvalidigi personajn notojn:"; +$a->strings["Expire starred posts:"] = "Senvalidigi steligitajn afiŝojn:"; +$a->strings["Expire photos:"] = "Senvalidigi bildojn:"; +$a->strings["Account Settings"] = "Kontoagordoj"; +$a->strings["Password Settings"] = "Agordoj pri Pasvorto"; +$a->strings["New Password:"] = "Nova pasvorto:"; +$a->strings["Confirm:"] = "Konfirmi:"; +$a->strings["Leave password fields blank unless changing"] = "Lasu pasvortkampojn malplenaj se vi ne ŝanĝas la pasvorton."; +$a->strings["Basic Settings"] = "Bazaj Agordoj"; +$a->strings["Full Name:"] = "Plena Nomo:"; +$a->strings["Email Address:"] = "Retpoŝtadreso:"; +$a->strings["Your Timezone:"] = "Via Horzono:"; +$a->strings["Default Post Location:"] = "Defaŭlta Loko por Afiŝoj:"; +$a->strings["Use Browser Location:"] = "Uzu Lokon laŭ Retesplorilo:"; +$a->strings["Security and Privacy Settings"] = "Agordoj pri Sekureco kaj Privateco"; +$a->strings["Maximum Friend Requests/Day:"] = "Taga maksimumo da kontaktpetoj:"; +$a->strings["(to prevent spam abuse)"] = "(por malhelpi spamaĵojn)"; +$a->strings["Default Post Permissions"] = "Defaŭltaj permesoj por afiŝoj"; +$a->strings["(click to open/close)"] = "(klaku por malfermi/fermi)"; +$a->strings["Maximum private messages per day from unknown people:"] = "Taga maksimumo da privataj mesaĝoj."; +$a->strings["Notification Settings"] = "Agordoj pri Atentigoj"; +$a->strings["By default post a status message when:"] = "Defaŭlte afiŝi statmesaĝon okaze de:"; +$a->strings["accepting a friend request"] = "akcepti kontaktpeton"; +$a->strings["making an interesting profile change"] = "fari interesan profilŝanĝon"; +$a->strings["Send a notification email when:"] = "Sendu atentiga repoŝton se:"; +$a->strings["You receive an introduction"] = "Vi ricevas inviton"; +$a->strings["Your introductions are confirmed"] = "Viaj prezentoj estas konfirmata."; +$a->strings["Someone writes on your profile wall"] = "Iu skribas je via profila muro."; +$a->strings["Someone writes a followup comment"] = "Iu skribas sekvan komenton"; +$a->strings["You receive a private message"] = "Vi ricevas privatan mesaĝon."; +$a->strings["You receive a friend suggestion"] = "Vi ricevas amikosugeston"; +$a->strings["You are tagged in a post"] = "Vi estas markita en afiŝon"; +$a->strings["Advanced Page Settings"] = "Specialaj agordoj pri paĝoj"; +$a->strings["Manage Identities and/or Pages"] = "Administri identecojn kaj/aŭ paĝojn."; +$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Ŝalti inter aliaj identecojn aj komunumaj/grupaj paĝoj kiuj kunhavas viajn kontajn detalojn au por kiuj vi havas \"administranto\" permesojn."; +$a->strings["Select an identity to manage: "] = "Elektu identencon por administrado:"; +$a->strings["Search Results For:"] = "Rezultoj de la serĉado pri:"; +$a->strings["Remove term"] = "Forviŝu terminon"; +$a->strings["Saved Searches"] = "Konservitaj Serĉadoj"; +$a->strings["add"] = "aldoni"; +$a->strings["Commented Order"] = "Komenta Ordo"; +$a->strings["Posted Order"] = "Afiŝita Ordo"; +$a->strings["New"] = "Nova"; +$a->strings["Starred"] = "Steligita"; +$a->strings["Shared Links"] = "Kunhavigitaj Ligiloj"; +$a->strings["Warning: This group contains %s member from an insecure network."] = array( + 0 => "Averto: La grupo enhavas %s membron el nesekuraj retejoj.", + 1 => "Averto: La grupo enhavas %s membrojn el nesekuraj retejoj.", +); +$a->strings["Private messages to this group are at risk of public disclosure."] = "La privateco de privataj mesaĝoj al ĉi tiu grupo ne ĉiam estas garantita."; +$a->strings["No such group"] = "Grupo ne estas trovita"; +$a->strings["Group is empty"] = "Grupo estas malplena"; +$a->strings["Group: "] = "Grupo:"; +$a->strings["Contact: "] = "Kontakto:"; +$a->strings["Private messages to this person are at risk of public disclosure."] = "La privateco de privataj mesaĝoj al ĉi tiu persono ne ĉiam estas garantita."; +$a->strings["Invalid contact."] = "Nevalida kontakto."; +$a->strings["Personal Notes"] = "Personaj Notoj"; +$a->strings["Save"] = "Konservi"; +$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "Number of daily wall messages for %s exceeded. Messaĝo malsukcesis."; +$a->strings["No recipient selected."] = "Neniom da ricevontoj."; +$a->strings["Unable to check your home location."] = "Ne eblas kontroli vian hejmlokon."; +$a->strings["Message could not be sent."] = "Ne povas sendi la mesaĝon."; +$a->strings["Message collection failure."] = "Malsukcese provis kolekti mesaĝojn."; +$a->strings["Message sent."] = "Mesaĝo estas sendita."; +$a->strings["No recipient."] = "Neniom da ricevontoj."; +$a->strings["Please enter a link URL:"] = "Bonvolu entajpu adreson de ligilo:"; +$a->strings["Send Private Message"] = "Sendi Privatan Mesaĝon"; +$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "Se vi deziras ke %s respondu, bonvolu kontroli ke la privatecaj agordoj je via retejo permesas privatajn mesaĝojn de nekonataj sendantoj."; +$a->strings["To:"] = "Al:"; +$a->strings["Subject:"] = "Temo:"; +$a->strings["Your message:"] = "Via mesaĝo:"; +$a->strings["Welcome to Friendica"] = "Bonvenon ĉe Friendica"; +$a->strings["New Member Checklist"] = "Kontrololisto por Novaj Membroj"; +$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."] = "Lasu nin oferi al vi kelkajn konsolojn kaj ligilojn por plifaciligi vian komencon. Klaku iun elementon por viziti la rilatan paĝon. Ligilo al ĉi tiu paĝo videblos en via hejmpaĝo dum du semajnojn post via komenca membriĝo. Post du semajnoj, la ligilo silente malaperos. "; +$a->strings["On your Quick Start page - find a brief introduction to your profile and network tabs, connect to Facebook, make some new connections, and find some groups to join."] = "Je via Rapida Starto paĝo - trovu mallongan enigon pri via profilo kaj la reto folioj, konektu al Facebook, faru novajn konektojn kaj trovu aliĝindajn grupojn."; +$a->strings["On your Settings page - change your initial password. Also make a note of your Identity Address. This looks just like an email address - and will be useful in making friends on the free social web."] = "Bonvolu ŝanĝi vian pasvorton ĉe Agordoj. Krome, memorigu vian identadreson. Ĝi aspektas kiel retpoŝtadreso kaj estas bezonata por konekti al novaj amikon en la libera interkona reto."; +$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."] = "Kontrolu la aliajn agordojn, precipe la privatecajn agordojn. Nepublikigita profilo similas al havi telefonnumberon ne registrata en iu telefonlibro. Ĝenerale vi eble volas publikigi vian profilon. Alie, viaj amikoj kaj estontaj amikoj bezonas scii kiel rekte trovi vin."; +$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."] = "Enŝuti profilbildon se vi ankoraŭ ne havas ĝin. Laŭ studoj, homoj kun realaj biloj de si mem trovas novajn amikon duope pli probable ol homoj sen reala bildo."; +$a->strings["Authorise the Facebook Connector if you currently have a Facebook account and we will (optionally) import all your Facebook friends and conversations."] = "Rajtigu la Facebook Konektilon se vi nuntempe havas Facebook konton, kaj ni (nedeviga) enportu viajn Facebook amikojn kaj konversaciojn."; +$a->strings["If this is your own personal server, installing the Facebook addon may ease your transition to the free social web."] = "Se ĉi tiu estas via propra TTT servilo, instali la Facebook kromprogramon eble plifaciligos la transpason al la libera interkona reto."; +$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"] = "Entajpu la akreditaĵojn por via retpoŝtkonto en la konektilagordoj se vi volas importi aŭ interagi kun amikoj aŭ dissendlistoj tra via retkesto."; +$a->strings["Edit your default profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."] = "Redakti viajn defaŭltan profilon kiel vi ŝatas ĝin. Kontrolu la agordojn por kaŝi vian kontaktliston aŭ kaŝi vian profilon al nekonataj vizitantoj."; +$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."] = "Aldonu publikajn ŝlosilvortojn al via defaŭlta profilo, kiuj priskribas viajn interesojn. Ni eble povas trovi aliajn uzantojn kun similaj interesoj kaj sugesti amikojn."; +$a->strings["Your Contacts page is your gateway to managing friendships and connecting with friends on other networks. Typically you enter their address or site URL in the Add New Contact dialog."] = "Via kontaktpaĝo estas via portalo por administri amikojn kaj konekti kun amikoj en aliaj retoj. Vi kutime entajpas iliajn adreson aŭ URL adreso en la Aldonu Novan Kontakton dialogon."; +$a->strings["The Directory page lets you find other people in this network or other federated sites. Look for a Connect or Follow link on their profile page. Provide your own Identity Address if requested."] = "Ĉe la Katalogo vi povas trovi aliajn homojn en ĉi tiu retejo, au en aliaj federaciaj retejoj. Elrigardi al KonektiSekvi ligiloj ĉe iliaj profilo. Donu vian propran Identecan Adreson se la retejo demandas ĝin."; +$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."] = "En la flanka strio de la Kontaktoj paĝo troviĝas kelkajn helpilojn por trovi novajn amikojn. Ni povas automate trovi amikojn per interesoj, serĉu ilin per nomo aŭ intereso kaj faras sugestojn baze de estantaj kontaktoj. Ĉe nova instalita retejo, la unuaj sugestoj kutime aperas post 24 horoj."; +$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."] = "Kiam vi trovis kelkajn novajn amikojn, ordigi ilin en grupoj por privata komunikado en la flanka strio de via Kontaktoj paĝo, kaj vi povas private komuniki kun ili je via Reto paĝo."; +$a->strings["Our help pages may be consulted for detail on other program features and resources."] = "Niaj Helpo paĝoj enhavas pli da detaloj pri aliaj programaj trajtoj."; +$a->strings["Item not available."] = "Elemento ne disponeblas."; +$a->strings["Item was not found."] = "Elemento ne trovita."; +$a->strings["Group created."] = "Grupo estas kreita."; +$a->strings["Could not create group."] = "Ne povas krei grupon."; +$a->strings["Group not found."] = "Grupo ne estas trovita."; +$a->strings["Group name changed."] = "La nomo de la grupo estas ŝanĝita."; +$a->strings["Permission denied"] = "Malpermesita"; +$a->strings["Create a group of contacts/friends."] = "Krei grupon da kontaktoj/amikoj."; +$a->strings["Group Name: "] = "Nomo de la grupo:"; +$a->strings["Group removed."] = "Grupo estas forviŝita."; +$a->strings["Unable to remove group."] = "Ne eblas forviŝi grupon."; +$a->strings["Group Editor"] = "Grupa redaktilo"; +$a->strings["Members"] = "Anoj"; +$a->strings["Click on a contact to add or remove."] = "Klaku kontakton por aldoni aŭ forviŝi."; +$a->strings["Invalid profile identifier."] = "Nevaliada profila identigilo."; +$a->strings["Profile Visibility Editor"] = "Redaktilo por profila videbleco."; +$a->strings["Profile"] = "Profilo"; +$a->strings["Visible To"] = "Videbla Al"; +$a->strings["All Contacts (with secure profile access)"] = "Ĉiuj Kontaktoj (kun sekura atingo al la profilo)"; +$a->strings["No contacts."] = "Neniu kontaktojn."; +$a->strings["View Contacts"] = "Vidi Kontaktojn"; +$a->strings["An invitation is required."] = "Invio bezonata."; +$a->strings["Invitation could not be verified."] = "Ne povis kontroli la inviton."; +$a->strings["Invalid OpenID url"] = "Nevalida OpenID adreso"; +$a->strings["Please enter the required information."] = "Bonvolu entajpi la bezonatajn informojn."; +$a->strings["Please use a shorter name."] = "Bonvolu uzi pli mallongan nomon."; +$a->strings["Name too short."] = "Nomo estas tro mallonga."; +$a->strings["That doesn't appear to be your full (First Last) name."] = "Tio ŝajne ne estas via plena (persona, familia) nomo."; +$a->strings["Your email domain is not among those allowed on this site."] = "Via retpoŝtodomajno ne estas permesita ĉi tie."; +$a->strings["Not a valid email address."] = "Nevalida retpoŝtadreso."; +$a->strings["Cannot use that email."] = "Neuzebla retpoŝtadreso."; +$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and must also begin with a letter."] = "Via kaŝnomo nur povas enhavi \"a-z\", \"0-9\", \"-\", kaj \"_\". Ĝi ankaŭ devas komenci kun litero."; +$a->strings["Nickname is already registered. Please choose another."] = "Tio kaŝnomo jam estas registrita. Bonvolu elekti alian."; +$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "Tiu kaŝnomo iam estis registrita ĉi tie kaj ne ree uzeblas. Bonvolu elekti alian."; +$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "GRAVA ERARO: La generacio de sekurecaj ĉifroŝlosiloj malsukcesis."; +$a->strings["An error occurred during registration. Please try again."] = "Eraro okazis dum registrado. Bonvolu provi denove."; +$a->strings["An error occurred creating your default profile. Please try again."] = "Eraro okazi dum kreado de via defaŭlta profilo. Bonvolu provi denove."; +$a->strings["Registration details for %s"] = "Detaloj de la registrado por %s"; +$a->strings["Registration successful. Please check your email for further instructions."] = "Registrado sukcesis. Bonvolu kontroli vian retpoŝton por pli da instruoj."; +$a->strings["Failed to send email message. Here is the message that failed."] = "Malsukcesis sendi retpoŝton. Jen la malsukcesa mesaĝo."; +$a->strings["Your registration can not be processed."] = "Mi ne povas prilabori vian registradon."; +$a->strings["Registration request at %s"] = "Peto de registrado al %s"; +$a->strings["Your registration is pending approval by the site owner."] = "Via registrado bezonas apropbon de la administranto."; +$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "La retejo transiras la maksimuman kvanton da ĉiutagaj kontaj registradoj. Bonvolu provi denove morgaŭ."; +$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Vi ankaŭ (nedeviga) povas plenigi la formularon tra OpenID se vi provizas vian OpenID adreson kaj klakas 'Registri'."; +$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Se vi ne konas OpenID, bonvolu lasi tiun kampon malplena kaj entajpu la aliajn elementojn."; +$a->strings["Your OpenID (optional): "] = "Via OpenID (nedeviga):"; +$a->strings["Include your profile in member directory?"] = "Aldoni vian profilon al la membrokatalogo?"; +$a->strings["Membership on this site is by invitation only."] = "Membriĝi ĉi tie nur eblas laŭ invito."; +$a->strings["Your invitation ID: "] = "Via invita idento: "; +$a->strings["Registration"] = "Registrado"; +$a->strings["Your Full Name (e.g. Joe Smith): "] = "Via Plena Nomo (e.g. Joe Smith): "; +$a->strings["Your Email Address: "] = "Via Retpoŝtadreso: "; +$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be 'nickname@\$sitename'."] = "Elektu kaŝnomon por la profilo. Tiu bezonas komenci kun teksta litero. Poste, via profila adreso ĉi tie estos: 'kaŝnomo@\$sitename'."; +$a->strings["Choose a nickname: "] = "Elektu kaŝnomon: "; +$a->strings["Register"] = "Registri"; +$a->strings["People Search"] = "Serĉi Membrojn"; +$a->strings["status"] = "staton"; +$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s ŝatas la %3\$s de %2\$s"; +$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s malŝatas la %3\$s de %2\$s"; +$a->strings["Item not found."] = "Elemento ne estas trovita."; +$a->strings["Access denied."] = "Atingo nepermesita."; +$a->strings["Account approved."] = "Konto aprobita."; +$a->strings["Registration revoked for %s"] = "Registraĵo por %s senvalidigita."; +$a->strings["Please login."] = "Bonvolu ensaluti."; +$a->strings["Unable to locate original post."] = "Ne eblas trovi originalan afiŝon."; +$a->strings["Empty post discarded."] = "Forviŝis malplenan afiŝon."; +$a->strings["Wall Photos"] = "Muraj Bildoj"; +$a->strings["System error. Post not saved."] = "Sistema eraro. Afiŝo ne registrita."; +$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "Ĉi mesaĝo estas sendita al vi de %s, membro de la Friendica interkona reto."; +$a->strings["You may visit them online at %s"] = "Vi povas viziti ilin rete ĉe %s"; +$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Bonvolu rispondi al ĉi mesaĝo kaj kontaktu la sendinto se vi ne volas ricevi tiujn mesaĝojn."; +$a->strings["%s posted an update."] = "%s publikigis afiŝon."; +$a->strings["Image uploaded but image cropping failed."] = "Bildo estas alŝutita, sed malsukcesis tranĉi la bildon."; +$a->strings["Image size reduction [%s] failed."] = "Malsukcesis malpligrandigi [%s] la bildon."; +$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Reŝarĝu la paĝon au malplenigu la kaŝmemoro de la retesplorilo se la nova bildo ne tuj aperas."; +$a->strings["Unable to process image"] = "Ne eblas procezi bildon."; +$a->strings["Image exceeds size limit of %d"] = "Bildo estas pli granda ol la limito %d"; +$a->strings["Upload File:"] = "Alŝuti dosieron:"; +$a->strings["Upload Profile Photo"] = "Alŝuti profilbildon"; +$a->strings["Upload"] = "Alŝuti"; +$a->strings["skip this step"] = "Preterpasi tian paŝon"; +$a->strings["select a photo from your photo albums"] = "elekti bildon el viaj albumoj"; +$a->strings["Crop Image"] = "Stuci Bildon"; +$a->strings["Please adjust the image cropping for optimum viewing."] = "Bonvolu agordi la stuco de la bildo por optimuma aspekto."; +$a->strings["Done Editing"] = "Finigi Redaktado"; +$a->strings["Image uploaded successfully."] = "Bildo estas sukcese enŝutita."; +$a->strings["No profile"] = "Neniu profilo"; +$a->strings["Remove My Account"] = "Forigi Mian Konton"; +$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Tio tute forigos vian konton. Kiam farita, la konto ne estas restaŭrebla."; +$a->strings["Please enter your password for verification:"] = "Bonvolu entajpi vian pasvorton por kontrolado:"; +$a->strings["New Message"] = "Nova Mesaĝo"; +$a->strings["Unable to locate contact information."] = "Ne eblas trovi kontaktajn informojn."; +$a->strings["Message deleted."] = "Mesaĝo estas forviŝita."; +$a->strings["Conversation removed."] = "Dialogo estas forviŝita."; +$a->strings["No messages."] = "Neniom da mesaĝoj."; +$a->strings["Unknown sender - %s"] = "Nekonata sendanto - %s"; +$a->strings["You and %s"] = "Vi kaj %s"; +$a->strings["%s and You"] = "%s kaj vi"; +$a->strings["Delete conversation"] = "Forviŝi dialogon"; +$a->strings["D, d M Y - g:i A"] = "D, d M Y - g:i A"; +$a->strings["%d message"] = array( + 0 => "%d mesaĝo", + 1 => "%d mesaĝoj", +); +$a->strings["Message not available."] = "Mesaĝo nedisponebla."; +$a->strings["Delete message"] = "Forviŝu mesaĝon"; +$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Sekura komunikado ne disponeblas. Vi eble povus respondi sur la profilpaĝo de la sendanto."; +$a->strings["Send Reply"] = "Respondi"; +$a->strings["Friends of %s"] = "Amikoj de %s"; +$a->strings["No friends to display."] = "Neniom da amiko al montri."; +$a->strings["Theme settings updated."] = "Gisdatigis agordojn pri etosoj."; +$a->strings["Site"] = "Retejo"; +$a->strings["Users"] = "Uzantoj"; +$a->strings["Plugins"] = "Kromprogramoj"; +$a->strings["Themes"] = "Etosoj"; +$a->strings["Logs"] = "Protokoloj"; +$a->strings["User registrations waiting for confirmation"] = "Uzantaj registradoj atendante konfirmon"; +$a->strings["Administration"] = "Administrado"; +$a->strings["Summary"] = "Resumo"; +$a->strings["Registered users"] = "Registrataj uzantoj"; +$a->strings["Pending registrations"] = "Okazontaj registradoj"; +$a->strings["Version"] = "Versio"; +$a->strings["Active plugins"] = "Ŝaltitaj kromprogramoj"; +$a->strings["Site settings updated."] = "Ĝisdatigis retejaj agordoj."; +$a->strings["Closed"] = "Ferma"; +$a->strings["Requires approval"] = "Bezonas aprobon"; +$a->strings["Open"] = "Malferma"; +$a->strings["No SSL policy, links will track page SSL state"] = "Sen SSL strategio. Ligiloj sekvos la SSL staton de la paĝo."; +$a->strings["Force all links to use SSL"] = "Devigi ke ĉiuj ligiloj uzu SSL."; +$a->strings["Self-signed certificate, use SSL for local links only (discouraged)"] = "Memsubskribita atestilo, nur uzu SSL por lokaj ligiloj (malkuraĝigata)"; +$a->strings["File upload"] = "Alŝuto"; +$a->strings["Policies"] = "Politiko"; +$a->strings["Advanced"] = "Altnivela"; +$a->strings["Site name"] = "Nomo de retejo"; +$a->strings["Banner/Logo"] = "Emblemo"; +$a->strings["System language"] = "Sistema lingvo"; +$a->strings["System theme"] = "Sistema etoso"; +$a->strings["Default system theme - may be over-ridden by user profiles - change theme settings"] = "Defaŭlta sistema etoso - transpasebla de uzantprofiloj - redakti agordoj pri etosoj"; +$a->strings["SSL link policy"] = "Strategio por SSL ligiloj"; +$a->strings["Determines whether generated links should be forced to use SSL"] = "Difinas ĉu generotaj ligiloj devige uzu SSL."; +$a->strings["Maximum image size"] = "Maksimuma bildgrando"; +$a->strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Maksimuma grando en bajtoj por alŝutotaj bildoj. Defaŭlte 0, kio signifas neniu limito."; +$a->strings["Register policy"] = "Interkonsento pri registrado"; +$a->strings["Register text"] = "Interkonsento teksto"; +$a->strings["Will be displayed prominently on the registration page."] = "Tio estos eminente montrata en la registro paĝo."; +$a->strings["Accounts abandoned after x days"] = "Kontoj forlasitaj post x tagoj"; +$a->strings["Will not waste system resources polling external sites for abandoned accounts. Enter 0 for no time limit."] = "Mi ne malŝparu energion por enketi aliajn retejojn pri forlasitaj kontoj. Entajpu 0 por ne uzi templimo."; +$a->strings["Allowed friend domains"] = "Permesitaj amikaj domainoj"; +$a->strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "Perkome disigita listo da domajnoj kiuj rajtas konstrui amikecojn kun ĉi tiu retejo. Ĵokeroj eblas. Malplena por rajtigi ĉiujn ajn domajnojn."; +$a->strings["Allowed email domains"] = "Permesitaj retpoŝtaj domajnoj"; +$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"] = "Perkome disigita listo da domajnoj kiuj uzeblas kiel retpoŝtaj adresoj en novaj registradoj. Ĵokeroj eblas. Malplena por rajtigi ĉiujn ajn domajnojn."; +$a->strings["Block public"] = "Bloki publike"; +$a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = "Elektu por bloki publikan atingon al ĉiuj alie publikajn paĝojn en ĉi tiu retejo kiam vi ne estas ensalutita."; +$a->strings["Force publish"] = "Devigi publikigon"; +$a->strings["Check to force all profiles on this site to be listed in the site directory."] = "Elektu por devigi la registradon en la loka katalogo al ĉiuj profiloj en ĉi tiu retejo."; +$a->strings["Global directory update URL"] = "Ĝenerala adreso por ĝisdatigi la katalogon"; +$a->strings["URL to update the global directory. If this is not set, the global directory is completely unavailable to the application."] = "URL adreso por ĝisdatigi la tutmondan katalogon. Se ne agordita, la tutmonda katatolge tute ne disponeblas al la programo."; +$a->strings["Block multiple registrations"] = "Bloki pluroblajn registradojn."; +$a->strings["Disallow users to register additional accounts for use as pages."] = "Malpermesi al uzantoj la permeson por registri pluajn kontojn kiel paĝoj."; +$a->strings["OpenID support"] = "Subteno por OpenID"; +$a->strings["OpenID support for registration and logins."] = "Subteni OpenID por registrado kaj ensaluto."; +$a->strings["Fullname check"] = "Kontroli plenan nomon"; +$a->strings["Force users to register with a space between firstname and lastname in Full name, as an antispam measure"] = "Kiel kontraŭspamilo, devigi uzantoj al registrado kun spaceto inter la persona nomo kaj la familia nomo."; +$a->strings["UTF-8 Regular expressions"] = "UTF-8 regulaj exprimoj"; +$a->strings["Use PHP UTF8 regular expressions"] = "Uzi PHP UTF8 regulajn esprimojn."; +$a->strings["Show Community Page"] = "Montri Komunuma Paĝo"; +$a->strings["Display a Community page showing all recent public postings on this site."] = "Montri komunuma paĝo kun ĉiuj ĵusaj afiŝoj en ĉi tiu retejo."; +$a->strings["Enable OStatus support"] = "Ŝalti subtenon por 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."] = "Provizi integritan OStatus (identi.ca, status.net ktp) subtenon. Ĉiuj komunikadoj en OStatus estas publikaj, do privatecaj avertoj aperos de tempo al tempo."; +$a->strings["Enable Diaspora support"] = "Ŝalti subtenon por Diaspora"; +$a->strings["Provide built-in Diaspora network compatibility."] = "Provizi integritan Diaspora subtenon."; +$a->strings["Only allow Friendica contacts"] = "Nur permesigi Friendica kontaktojn"; +$a->strings["All contacts must use Friendica protocols. All other built-in communication protocols disabled."] = "Ĉiuj kontaktoj devas uzi Friendica protokolojn. Ĉiuj aliaj komunikaj protokoloj malaktivita."; +$a->strings["Verify SSL"] = "Kontroli SSL"; +$a->strings["If you wish, you can turn on strict certificate checking. This will mean you cannot connect (at all) to self-signed SSL sites."] = "Se vi deziras, vi povas aktivigi severan kontroladon de SSL atestiloj. Pro tio, vie (tute) ne eblos konekti al SSL retejoj kun memsubskribitaj atestiloj."; +$a->strings["Proxy user"] = "Uzantnomo por retperanto"; +$a->strings["Proxy URL"] = "URL adreso de retperanto"; +$a->strings["Network timeout"] = "Reta tempolimo"; +$a->strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "Valoro en sekundoj. Uzu 0 por mallimitigi (ne rekomendata)."; +$a->strings["%s user blocked/unblocked"] = array( + 0 => "Blokis/malblokis %s uzanton", + 1 => "Blokis/malblokis %s uzantojn", +); +$a->strings["%s user deleted"] = array( + 0 => "%s uzanto forviŝita", + 1 => "%s uzanto forviŝitaj", +); +$a->strings["User '%s' deleted"] = "Uzanto '%s' forviŝita"; +$a->strings["User '%s' unblocked"] = "Uzanto '%s' malblokita"; +$a->strings["User '%s' blocked"] = "Uzanto '%s' blokita"; +$a->strings["select all"] = "elekti ĉiujn"; +$a->strings["User registrations waiting for confirm"] = "Registriĝoj atendante aprobon"; +$a->strings["Request date"] = "Dato de peto"; +$a->strings["Email"] = "Retpoŝto"; +$a->strings["No registrations."] = "Neniom da registriĝoj."; +$a->strings["Deny"] = "Negi"; +$a->strings["Register date"] = "Dato de registrado"; +$a->strings["Last login"] = "Plej ĵusa ensaluto"; +$a->strings["Last item"] = "Plej ĵusa elemento"; +$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?"] = "La elektitaj uzantkontoj estas forviŝotaj!\\n\\nĈiuj elementoj kiujn ili afiŝis je la retpaĝo estos permanente forviŝitaj.\\n\\nĈu vi certas?"; +$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?"] = "La uzanto {0} estas forviŝota!\\n\\nĈiuj elementoj kiujn li afiŝis je la retpaĝo estos permanente forviŝitaj.\\n\\nĈu vi certas?"; +$a->strings["Plugin %s disabled."] = "Kromprogramo %s estas malŝaltita."; +$a->strings["Plugin %s enabled."] = "Kromprogramo %s estas ŝaltita."; +$a->strings["Disable"] = "Malŝalti"; +$a->strings["Enable"] = "Ŝalti"; +$a->strings["Toggle"] = "Ŝalti/Malŝalti"; +$a->strings["Author: "] = "Aŭtoro: "; +$a->strings["Maintainer: "] = "Prizorganto: "; +$a->strings["No themes found."] = "Ne trovis etosojn."; +$a->strings["Screenshot"] = "Ekrankopio"; +$a->strings["[Experimental]"] = "[Eksperimenta]"; +$a->strings["[Unsupported]"] = "[Nesubtenata]"; +$a->strings["Log settings updated."] = "Protokolagordoj ĝisdatigitaj."; +$a->strings["Clear"] = "Forviŝi"; +$a->strings["Debugging"] = "Sencimigado"; +$a->strings["Log file"] = "Protokolo"; +$a->strings["Must be writable by web server. Relative to your Friendica top-level directory."] = "Devas esti skribebla de la retservilo. Relativa al via plej supra Friendica dosierujo."; +$a->strings["Log level"] = "Protokolnivelo"; +$a->strings["Close"] = "Fermi"; +$a->strings["FTP Host"] = "FTP Servilo"; +$a->strings["FTP Path"] = "FTP Vojo"; +$a->strings["FTP User"] = "FTP Uzanto"; +$a->strings["FTP Password"] = "FTP Pasvorto"; +$a->strings["Requested profile is not available."] = "La petita profilo ne disponeblas."; +$a->strings["Access to this profile has been restricted."] = "Atingo al ĉi tio profilo estas limitigita"; +$a->strings["Tips for New Members"] = "Konsilo por novaj membroj"; +$a->strings["{0} wants to be your friend"] = "{0} volas amikiĝi kun vi"; +$a->strings["{0} sent you a message"] = "{0} sendis mesaĝon al vi"; +$a->strings["{0} requested registration"] = "{0} petis registradon"; +$a->strings["{0} commented %s's post"] = "{0} komentis pri la afiŝo de %s"; +$a->strings["{0} liked %s's post"] = "{0} satis la afiŝon de %s"; +$a->strings["{0} disliked %s's post"] = "{0} malŝatis la afiŝon de %s"; +$a->strings["{0} is now friends with %s"] = "{0} amikiĝis kun %s"; +$a->strings["{0} posted"] = "{0} afiŝis"; +$a->strings["{0} tagged %s's post with #%s"] = "{0} markis la afiŝon de %s kun #%s"; +$a->strings["{0} mentioned you in a post"] = "{0} menciis vin en afiŝo"; +$a->strings["Contacts who are not members of a group"] = "Kontaktoj kiuj ne estas en iu grupo"; +$a->strings["OpenID protocol error. No ID returned."] = "Eraro en OpenID protokolo. Ne resendis identecon."; +$a->strings["Account not found and OpenID registration is not permitted on this site."] = "Ne trovis kontoj, kaj registrado tra OpenID estas malpermesita ĉi tie."; +$a->strings["Login failed."] = "Ensalutado malsukcesis."; +$a->strings["Connect URL missing."] = "Ne ekzistas URL adreso por konekti."; +$a->strings["This site is not configured to allow communications with other networks."] = "Tiu retpaĝo ne permesas komunikadon kun aliaj retoj."; +$a->strings["No compatible communication protocols or feeds were discovered."] = "Ne malkovris kongruajn protokolojn por komunikado aŭ fluojn."; +$a->strings["The profile address specified does not provide adequate information."] = "La specifita profiladreso ne enhavas sufiĉe da informoj."; +$a->strings["An author or name was not found."] = "Ne trovis aŭtoron aŭ nomon."; +$a->strings["No browser URL could be matched to this address."] = "Neniu retuma URL adreso kongruas al la adreso."; +$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "Tiu profila adreso apartenas al retejo kiu estas maŝaltita je ĉi tiu retejo."; +$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Profilo limigata. Ĉi persono ne eblos ricevi rektajn/personajn atentigojn de vi. "; +$a->strings["Unable to retrieve contact information."] = "Ne eblas ricevi kontaktinformojn."; +$a->strings["following"] = "sekvanta"; +$a->strings["Common Friends"] = "Komunaj Amikoj"; +$a->strings["No friends in common."] = "Neniom da komunaj amikoj."; +$a->strings["Item has been removed."] = "Elemento estas forviŝita."; +$a->strings["Applications"] = "Programoj"; +$a->strings["No installed applications."] = "Neniom da instalitaj programoj."; +$a->strings["Search This Site"] = "Serĉi ĉi-tiun retejon"; +$a->strings["Profile not found."] = "Profilo ne trovita."; +$a->strings["Profile Name is required."] = "Nomo de profilo estas bezonata."; +$a->strings["Marital Status"] = "Amrilata Stato"; +$a->strings["Romantic Partner"] = "Kora Partnero"; +$a->strings["Work/Employment"] = "Laboro"; +$a->strings["Religion"] = "Religio"; +$a->strings["Political Views"] = "Politikaj Opinioj"; +$a->strings["Gender"] = "Sekso"; +$a->strings["Sexual Preference"] = "Seksa Prefero"; +$a->strings["Homepage"] = "Hejmpaĝo"; +$a->strings["Interests"] = "Interesoj"; +$a->strings["Location"] = "Loko"; +$a->strings["Profile updated."] = "Profilo ĝisdatigita."; +$a->strings["public profile"] = "publika profilo"; +$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s havas ĝisdatigigan %2\$s, ŝanĝas %3\$s."; +$a->strings["Profile deleted."] = "Profilo forviŝita."; +$a->strings["Profile-"] = "Profilo-"; +$a->strings["New profile created."] = "Nova profilo kreita."; +$a->strings["Profile unavailable to clone."] = "Ne eblas kopii profilon."; +$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Kaŝi vian liston de kontaktoj/amikoj al vidantoj de ĉi-tio profilo?"; +$a->strings["Edit Profile Details"] = "Redakti Detalojn de Profilo"; +$a->strings["View this profile"] = "Vidi la profilon."; +$a->strings["Create a new profile using these settings"] = "Krei novan profilon kun tiaj agordoj"; +$a->strings["Clone this profile"] = "Kopii ĉi tiun profilon"; +$a->strings["Delete this profile"] = "Forviŝi ĉi tiun profilon"; +$a->strings["Profile Name:"] = "Nomo de Profilo:"; +$a->strings["Your Full Name:"] = "Via Plena Nomo:"; +$a->strings["Title/Description:"] = "Titolo/Priskribo:"; +$a->strings["Your Gender:"] = "Via Sekso:"; +$a->strings["Birthday (%s):"] = "Naskiĝtago (%s):"; +$a->strings["Street Address:"] = "Adreso:"; +$a->strings["Locality/City:"] = "Urbo:"; +$a->strings["Postal/Zip Code:"] = "Poŝtkodo:"; +$a->strings["Country:"] = "Lando:"; +$a->strings["Region/State:"] = "Ŝtato:"; +$a->strings[" Marital Status:"] = " Civita Stato:"; +$a->strings["Who: (if applicable)"] = "Kiu (se aplikeble):"; +$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Ekzemploj: cathy123, Cathy Williams, cathy@example.com"; +$a->strings["Sexual Preference:"] = "Seksa Prefero:"; +$a->strings["Homepage URL:"] = "Adreso de Hejmpaĝo:"; +$a->strings["Political Views:"] = "Politikaj Opinioj:"; +$a->strings["Religious Views:"] = "Religiaj Opinioj:"; +$a->strings["Public Keywords:"] = "Publikaj ŝlosilvortoj:"; +$a->strings["Private Keywords:"] = "Privataj ŝlosilvortoj:"; +$a->strings["Example: fishing photography software"] = "Ekzemple: fiŝkapti fotografio programaro"; +$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(Por sugesti amikoj. Videbla al aliaj.)"; +$a->strings["(Used for searching profiles, never shown to others)"] = "(Por serĉi profilojn. Neniam videbla al aliaj.)"; +$a->strings["Tell us about yourself..."] = "Diru al ni pri vi..."; +$a->strings["Hobbies/Interests"] = "Ŝatokupoj/Interesoj"; +$a->strings["Contact information and Social Networks"] = "Kontaktaj informoj kaj Interkonaj Retejoj"; +$a->strings["Musical interests"] = "Muzikaj interesoj"; +$a->strings["Books, literature"] = "Libroj, literaturo"; +$a->strings["Television"] = "Televido"; +$a->strings["Film/dance/culture/entertainment"] = "Filmoj/dancoj/arto/amuzaĵoj"; +$a->strings["Love/romance"] = "Amo/romanco"; +$a->strings["Work/employment"] = "Laboro"; +$a->strings["School/education"] = "Lernejo/eduko"; +$a->strings["This is your public profile.
    It may be visible to anybody using the internet."] = "Ĉi tio estas via publika profilo. Ĝi eble estas videbla al ĉiuj en interreto. "; +$a->strings["Age: "] = "Aĝo:"; +$a->strings["Edit/Manage Profiles"] = "Redakti/administri Profilojn"; +$a->strings["Change profile photo"] = "Ŝanĝi profilbildon"; +$a->strings["Create New Profile"] = "Krei novan profilon"; +$a->strings["Profile Image"] = "Profilbildo"; +$a->strings["visible to everybody"] = "videbla al ĉiuj"; +$a->strings["Edit visibility"] = "Redakti videblecon"; +$a->strings["Save to Folder:"] = "Konservi en Dosierujo:"; +$a->strings["- select -"] = "- elekti -"; +$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s markis la %3\$s de %2\$s kun %4\$s"; +$a->strings["No potential page delegates located."] = "Ne trovis delegiteblajn paĝojn."; +$a->strings["Delegate Page Management"] = "Administrado de Delegitajn Paĝojn"; +$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."] = "Delegitoj povas administri ĉiujn ecojn de la konto/paĝo, escepte bazaj kontoagordoj. Bonvolu ne delegitigi vian personan konton al iu al kiu vi ne plene fidas."; +$a->strings["Existing Page Managers"] = "Estantaj Administrantoj de la Paĝo"; +$a->strings["Existing Page Delegates"] = "Estantaj Delegitoj de la Paĝo"; +$a->strings["Potential Delegates"] = "Eblaj Delegitoj"; +$a->strings["Add"] = "Aldoni"; +$a->strings["No entries."] = "Neniom da afiŝoj."; +$a->strings["Friend Suggestions"] = "Amikosugestoj."; +$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Neniu sugestoj disponeblas. Se ĉi tiu estas nova retejo, bonvolu reprovi post 24 horoj."; +$a->strings["Ignore/Hide"] = "Ignori/Kaŝi"; +$a->strings["Global Directory"] = "Tutmonda Katalogo"; +$a->strings["Find on this site"] = "Trovi en ĉi retejo"; +$a->strings["Site Directory"] = "Reteja Katalogo"; +$a->strings["Gender: "] = "Sekso:"; +$a->strings["No entries (some entries may be hidden)."] = "Neniom da afiŝoj (kelkaj afiŝoj eble ne estas videbla)."; +$a->strings["%s : Not a valid email address."] = "%s: Ne estas valida retpoŝtadreso."; +$a->strings["Please join us on Friendica"] = "Bonvolu aliĝi kun ni ĉe Friendica"; +$a->strings["%s : Message delivery failed."] = "%s: La livero de la mesaĝo malsukcesis."; +$a->strings["%d message sent."] = array( + 0 => "Sendis %d mesaĝon.", + 1 => "Sendis %d mesaĝojn.", +); +$a->strings["You have no more invitations available"] = "Vi ne plu disponeblas invitaĵojn"; +$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."] = "Vizitu %s por listo de publikaj retejoj kie vi povas aliĝi. Anoj de Friendica ĉe aliaj retejoj povas konekti unu kun la alian, kaj ankaŭ kun membroj de multaj aliaj retejoj."; +$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "Por akcepti ĉi tiu invito, bonvolu viziti kaj registriĝi ĉe %s au alia publika Friendica retejo."; +$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."] = "Ĉiuj Friendica retejoj interkonektiĝas kaj kune faras grandan altprivatecan interkonan reton, kiun posedas kaj kontrolas ĝiaj membroj. Ili ankaŭ povas konekti kun multe de tradiciaj interkonaj retejoj. Vidu %s por listo de publikaj retejoj kie vi povas aliĝi."; +$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Senkulpigu nin. La sistemo nuntempe ne estas agordita por konekti al aliaj retejoj au inviti membrojn."; +$a->strings["Send invitations"] = "Sendi invitojn"; +$a->strings["Enter email addresses, one per line:"] = "Entajpu retpoŝtadresojn, po unu por ĉiu linio."; +$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "Ni bonkore invitas vin aliĝi kun ni kaj aliaj bonaj amikoj ĉe Friendica. Helpu nin krei pli bonan interkonan reton."; +$a->strings["You will need to supply this invitation code: \$invite_code"] = "Vi bezonas ĉi-tiun invitkodon: \$invite_code"; +$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Kiam vi registris, bonvolu konekti al mi tra mi profilo ĉe: "; +$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "Por pli da informoj pri Friendica, kaj kial ni pensas ke ĝi estas grava, bonvolu viziti http://friendica.com"; +$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "Tio ĉi okazis de tempo al tempo se ambaŭ personoj petas kontakton ka ĝi jam estas aprobita."; +$a->strings["Response from remote site was not understood."] = "Ne komprenis la rispondon de la fora retejo."; +$a->strings["Unexpected response from remote site: "] = "Neatendita rispondo de la fora retejo:"; +$a->strings["Confirmation completed successfully."] = "Konfirmo sukcese kompletigita."; +$a->strings["Remote site reported: "] = "La fora retejo raportis:"; +$a->strings["Temporary failure. Please wait and try again."] = "Dumtempa eraro. Bonvolu atendi kaj provi refoje."; +$a->strings["Introduction failed or was revoked."] = "La prezento malsukcesis au estas revokita."; +$a->strings["Unable to set contact photo."] = "Neeblas agordi la kontaktbildo."; +$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s amikiĝis kun %2\$s"; +$a->strings["No user record found for '%s' "] = "Ne trovis uzanton '%s' "; +$a->strings["Our site encryption key is apparently messed up."] = "Ŝajnas kvazaŭ la ĉifroŝlosilo de nia retejo estas fuŝita."; +$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "Malplena adreso de retejo provizita, aŭ ni ne povis malĉifri la adreson."; +$a->strings["Contact record was not found for you on our site."] = "Kontakto ne trovita por vi en via retejo."; +$a->strings["Site public key not available in contact record for URL %s."] = "Publika ŝlosilo de retejo ne disponeblas en la kontaktrikordo por la URL adreso %s."; +$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "La identeco provizita de via sistemo estas duoblo ĉe nia sistemo. Ĝi eble funkcias se vi provas refoje."; +$a->strings["Unable to set your contact credentials on our system."] = "Ne sukcesis agordi la legitimaĵojn de via kontakto ĉe nia sistemo."; +$a->strings["Unable to update your contact profile details on our system"] = "Neeblas ĝisdatigi viajn profildetalojn ĉe nia sistemo."; +$a->strings["Connection accepted at %s"] = "Konekto akceptita je %s"; +$a->strings["Facebook disabled"] = "Facebook malŝaltita"; +$a->strings["Updating contacts"] = "Mi ĝisdatigas la kontaktojn."; +$a->strings["Facebook API key is missing."] = "La API ŝlosilo de Facebook ne estas konata ĉi tie."; +$a->strings["Facebook Connect"] = "Kontekto al Facebook"; +$a->strings["Install Facebook connector for this account."] = "Instali la Facebook konektilo por ĉi tiu konto."; +$a->strings["Remove Facebook connector"] = "Forigi la Facebook konektilon."; +$a->strings["Re-authenticate [This is necessary whenever your Facebook password is changed.]"] = "Reaŭtentiĝi [Tio estas bezonata ĉiam kiam vi ŝanĝis vian pasvorton ĉe Facebook.]"; +$a->strings["Post to Facebook by default"] = "Ĉiam afiŝi al Facebook."; +$a->strings["Link all your Facebook friends and conversations on this website"] = "Alligu ĉiujn viajn Facebook amikojn kaj konversaciojn je ĉi-tiu retejo."; +$a->strings["Facebook conversations consist of your profile wall and your friend stream."] = "Facebok konversacioj konsistas el via profilmuro kaj la fluo de viaj amikoj."; +$a->strings["On this website, your Facebook friend stream is only visible to you."] = "Je ĉi-tiu retejo, la fluo de viaj amikoj ĉe Facebook nur videblas al vi."; +$a->strings["The following settings determine the privacy of your Facebook profile wall on this website."] = "La sekvontaj agordoj difinas la privatecon de via Facebook profilmuro je ĉi-tiu retejo."; +$a->strings["On this website your Facebook profile wall conversations will only be visible to you"] = "Je ĉi-tiu retejo, la conversacioj sur via Facebook profilmuro nur videblas al vi."; +$a->strings["Do not import your Facebook profile wall conversations"] = "Ne importi konversaciojn de via Facebook profilmuro"; +$a->strings["If you choose to link conversations and leave both of these boxes unchecked, your Facebook profile wall will be merged with your profile wall on this website and your privacy settings on this website will be used to determine who may see the conversations."] = "Se vi elektas alligi conversaciojn kaj ne elektas tiujn butonojn, via Facebook profilmuro estas kunigota kun via profilmuro ĉi tie. Viaj privatecaj agordoj ĉi tie difinos kiu povas vidi la coversaciojn."; +$a->strings["Comma separated applications to ignore"] = "Ignorotaj programoj, disigita per komo"; +$a->strings["Problems with Facebook Real-Time Updates"] = "Problemoj kun Facebook Realtempaj Ĝisdatigoj"; +$a->strings["Facebook"] = "Facebook"; +$a->strings["Facebook Connector Settings"] = "Agordoj por la Facebook konektilo"; +$a->strings["Facebook API Key"] = "Facebook API ŝlosilo"; +$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.

    "] = "Eraro: Ŝajnas kvazaŭ vi agordis la App-ID kaj la sekreton en via .htconfig.php dosiero. Kiam ili estas agordita tie, vi ne povas agordi ĝin tra tiu ĉi formo.

    "; +$a->strings["Error: the given API Key seems to be incorrect (the application access token could not be retrieved)."] = "Eraro: La API ŝlosilo aspektas malĝusta (ne eblas ricevi la programa atingoĵetono)."; +$a->strings["The given API Key seems to work correctly."] = "La API ŝlosilo ŝajne ĝuste funkcias."; +$a->strings["The correctness of the API Key could not be detected. Somthing strange's going on."] = "Ne povis kontroli la ĝustecon de la API ŝlosilo. Ia stranga afero okazas. "; +$a->strings["App-ID / API-Key"] = "Programo ID / API Ŝlosilo"; +$a->strings["Application secret"] = "Programo sekreto"; +$a->strings["Polling Interval (min. %1\$s minutes)"] = "Intervalo por la enketilo (poller intervalo, minimume %1\$s mintuoj) "; +$a->strings["Real-Time Updates"] = "Realtempaj Ĝisdatigoj"; +$a->strings["Real-Time Updates are activated."] = "Realtempaj Ĝisdatigoj estas ŝaltita"; +$a->strings["Deactivate Real-Time Updates"] = "Malŝalti Realtempaj Ĝisdatigoj"; +$a->strings["Real-Time Updates not activated."] = "Realtempaj Ĝisdatigoj estas malŝaltita"; +$a->strings["Activate Real-Time Updates"] = "Ŝalti Realtempaj Ĝisdatigoj"; +$a->strings["The new values have been saved."] = "Konservis novajn valorojn."; +$a->strings["Post to Facebook"] = "Afiŝi al Facebook"; +$a->strings["Post to Facebook cancelled because of multi-network access permission conflict."] = "Afiŝado al Facebook nuligita ĉar okazis konflikto en la multretpermesoj."; +$a->strings["View on Friendica"] = "Vidi ĉe Friendica"; +$a->strings["Facebook post failed. Queued for retry."] = "Malsukcesis afiŝi ĉe Facebook. Enigita en vico."; +$a->strings["Your Facebook connection became invalid. Please Re-authenticate."] = "Via Facbook konekto iĝis nevalida. Bonvolu reaŭtentiĝi."; +$a->strings["Facebook connection became invalid"] = "Facebook konekto iĝis nevalida."; +$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."] = "Saluton %1\$s,\n\nla kontekto inter viaj kontoj ĉe %2\$s kaj Facebook malvalidiĝis. Tio kutime okazas post kiam via ŝangas vian pasvorton ĉe Facebook. Por reaktivigi la konekto, vi bezonas %3\$sreaŭtentiĝi la Facebook konektilon%4\$s."; +$a->strings["%d person likes this"] = array( + 0 => "%d homo ŝatas tiun", + 1 => "%d homoj ŝatas tiun", +); +$a->strings["%d person doesn't like this"] = array( + 0 => "%d homo malŝatas tiun", + 1 => "%d homo malŝatas tiun", +); +$a->strings["Generate new key"] = "Generi novan ĉifroŝlosilon"; +$a->strings["Widgets key"] = "Ŝlosilo por fenestraĵoj"; +$a->strings["Widgets available"] = "Disponeblaj fenestraĵoj"; +$a->strings["Connect on Friendica!"] = "Konekti ĉe Friendica!"; +$a->strings["YourLS Settings"] = "\"YourLS\" Agordoj"; +$a->strings["URL: http://"] = "URL adreso: http://"; +$a->strings["Username:"] = "Salutnomo:"; +$a->strings["Password:"] = "Pasvorto:"; +$a->strings["Use SSL "] = "Uzi SSL "; +$a->strings["yourls Settings saved."] = "Konservis la agordojn de YourLS."; +$a->strings["Post to LiveJournal"] = "Afiŝi ĉe LiveJournal"; +$a->strings["LiveJournal Post Settings"] = "Agordoj pri afiŝoj ĉe LiveJournal"; +$a->strings["Enable LiveJournal Post Plugin"] = "Ŝalti la LiveJournal-afiŝo kromprogramon."; +$a->strings["LiveJournal username"] = "LiveJournal Salutnomo"; +$a->strings["LiveJournal password"] = "LiveJournal pasvorto"; +$a->strings["Post to LiveJournal by default"] = "Defaŭlte afiŝi al LiveJournal"; +$a->strings["Not Safe For Work (General Purpose Content Filter) settings"] = "Not Safe For Work (ĝenerala filtrilo por enhavoj) agordoj"; +$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."] = "Tiu kromprogramo serĉas la malsupre agordatajn vortojn en afiŝoj kaj malvidebligis ilin se ili enhavas iun vorton. Tiel, afiŝoj ne montriĝis kiuj enhavas maladekvatan enhavon, ekzemple seksumaj aferoj, kiuj ne estas adekvata, ekzemple en la laborejo. En la reto, oni kutime markas tiajn afiŝojn #NSFW - Not Safe For Work - ne adekvata por la laborejo. La filtrilo ankaŭ serĉas ĉiujn vortojn kiujn vi agordas kaj tial funkcias kiel ĝenerala filtrilo."; +$a->strings["Enable Content filter"] = "Ŝalti la filtrilo por la enhavo"; +$a->strings["Comma separated list of keywords to hide"] = "Perkome disigita listo da kaŝontaj ŝlosilvortoj"; +$a->strings["Use /expression/ to provide regular expressions"] = "Uzu /expr/ por provizi regulajn esprimojn."; +$a->strings["NSFW Settings saved."] = "NSFW agordoj konservitaj."; +$a->strings["%s - Click to open/close"] = "%s - Klaku por malfermi/fermi"; +$a->strings["Forums"] = "Forumoj"; +$a->strings["Planets Settings"] = "Agordo pri Planets"; +$a->strings["Enable Planets Plugin"] = "Ŝalti la Planets kromprogamon"; +$a->strings["Login"] = "Ensaluti"; +$a->strings["OpenID"] = "OpenID"; +$a->strings["Latest users"] = "Ĵusaj uzantoj"; +$a->strings["Most active users"] = "Plej aktivaj uzantoj"; +$a->strings["Latest photos"] = "Ĵusaj bildoj"; +$a->strings["Latest likes"] = "Ĵusaj ŝatitaĵoj"; +$a->strings["event"] = "okazo"; +$a->strings["Allow to use your friendica id (%s) to connecto to external unhosted-enabled storage (like ownCloud). See RemoteStorage WebFinger"] = "Permesi vian identecon ĉe Friendica (%s) por konekti al eksteraj konservejoj subtenata de unhosted (ekz. OwnCloud). Vidu RemoteStorage WebFinger"; +$a->strings["Template URL (with {category})"] = "URL adreso de ŝablono (kun {category})"; +$a->strings["OAuth end-point"] = "OAuth finpunkto"; +$a->strings["Api"] = "Api"; +$a->strings["Member since:"] = "Membro ekde:"; +$a->strings["Three Dimensional Tic-Tac-Toe"] = "Tri-dimensia Tiktakto"; +$a->strings["3D Tic-Tac-Toe"] = "3D Tiktakto"; +$a->strings["New game"] = "Nova ludo"; +$a->strings["New game with handicap"] = "Nova ludo kun handikapo"; +$a->strings["Three dimensional tic-tac-toe is just like the traditional game except that it is played on multiple levels simultaneously. "] = "Tri-dimensia tiktakto similas la tradician ludon, sed estas ludata sur pluraj ebenoj dum la sama tempo."; +$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."] = "Ĉi-kaze ekzistas tri ebenoj. Vi venkas vicigante tri signojn en una vico, en la sama ebeno, same kiel supren, malsupren aŭ diagonale, trans la ebenoj."; +$a->strings["The handicap game disables the center position on the middle level because the player claiming this square often has an unfair advantage."] = "La ludo kun handikapo malvalidigas la mezan pozicion sur la meza ebeno, ĉar la ludisto kio okupas ĉi tiun pozicion ĉiam havas avantaĝon."; +$a->strings["You go first..."] = "Estas via vico unue."; +$a->strings["I'm going first this time..."] = "Ĉi-tempe, unue estas mia vico."; +$a->strings["You won!"] = "Vi venkis!"; +$a->strings["\"Cat\" game!"] = "Sendecida ludo!"; +$a->strings["I won!"] = "Mi venkis!"; +$a->strings["Randplace Settings"] = "Randplace agordoj."; +$a->strings["Enable Randplace Plugin"] = "Aktivigi la Randplace kromprogramon."; +$a->strings["Post to Dreamwidth"] = "Afiŝi al Dreamwidth"; +$a->strings["Dreamwidth Post Settings"] = "Agordoj por Afiŝoj al Dreamwidth"; +$a->strings["Enable dreamwidth Post Plugin"] = "Ŝalti la Dreamwidth Kromprogramon"; +$a->strings["dreamwidth username"] = "Dreamwidth salutnomo"; +$a->strings["dreamwidth password"] = "Dreamwidth pasvorto"; +$a->strings["Post to dreamwidth by default"] = "Defaŭlte afiŝi al Dreamwidth"; +$a->strings["Post to Drupal"] = "Afiŝi al Drupal"; +$a->strings["Drupal Post Settings"] = "Agordoj por Drupal Afiŝoj"; +$a->strings["Enable Drupal Post Plugin"] = "Ŝalti la Drupal-afiŝo Kromprogramon"; +$a->strings["Drupal username"] = "Drupal salutnomo"; +$a->strings["Drupal password"] = "Drupal pasvorto"; +$a->strings["Post Type - article,page,or blog"] = "Tipo de Afiŝoj - article, page, aŭ blog"; +$a->strings["Drupal site URL"] = "URL adreso de Drupal retejo"; +$a->strings["Drupal site uses clean URLS"] = "Drupal retejo uzas purajn URL adresojn"; +$a->strings["Post to Drupal by default"] = "Defaŭlte afiŝi ĉe Drupal"; +$a->strings["Post from Friendica"] = "Afiŝo de Friendica"; +$a->strings["Geonames settings updated."] = "Ĝidatigis la Geonames agordojn."; +$a->strings["Geonames Settings"] = "Geonames Agordoj"; +$a->strings["Enable Geonames Plugin"] = "Ŝalti la Geonames Kromprogramon"; +$a->strings["Upload a file"] = "Alŝuti dosieron"; +$a->strings["Drop files here to upload"] = "Ŝovmeti dosierojn ĉi tie por alŝuti ilin."; +$a->strings["Failed"] = "Malsukcesi"; +$a->strings["No files were uploaded."] = "Neniom da dosieroj alŝutita."; +$a->strings["Uploaded file is empty"] = "Alŝutita dosiero estas malplena."; +$a->strings["File has an invalid extension, it should be one of "] = "Dosiero havas nevalidan sufikson. Ĝi estu unu de "; +$a->strings["Upload was cancelled, or server error encountered"] = "Alŝutado estas nuligita aŭ okazis eraro sur la servilo"; +$a->strings["OEmbed settings updated"] = "Ĝisdatigis OEmbed agordojn"; +$a->strings["Use OEmbed for YouTube videos"] = "Uzi OEmbed por YouTube videtoj"; +$a->strings["URL to embed:"] = "Enigi la URL adreson:"; +$a->strings["Impressum"] = "Kolofono"; +$a->strings["Site Owner"] = "Proprietulo de la laĝo"; +$a->strings["Email Address"] = "Retpoŝta Adreso"; +$a->strings["Postal Address"] = "Poŝta Adreso"; +$a->strings["The impressum addon needs to be configured!
    Please add at least the owner variable to your config file. For other variables please refer to the README file of the addon."] = "La kolofono (impressum) kromprogramo bezonas agordojn!
    Bonvolu aldoni minimume la owner variablon al via agorda dosiero. Por aliaj variabloj, bonvolu legi la README dosieron de la kromprogramo."; +$a->strings["The page operators name."] = "La nomo de la funkciigisto de la retejo."; +$a->strings["Site Owners Profile"] = "Profilo de la Proprietulo de la Retejo"; +$a->strings["Profile address of the operator."] = "La profilo de la funkciigisto de la retejo."; +$a->strings["How to contact the operator via snail mail."] = "Kiel kontakti la funkciigiston de la retejo tra paperpoŝto."; +$a->strings["Notes"] = "Notoj"; +$a->strings["Additional notes that are displayed beneath the contact information."] = "Pliaj notoj kiuj estas montrigota malsupre la kontaktinformojn."; +$a->strings["How to contact the operator via email. (will be displayed obfuscated)"] = "Kiel kontakti la funkciigiston de la retejo tra retpoŝto. (montriĝos vuale) "; +$a->strings["Footer note"] = "Paĝpiednoto"; +$a->strings["Text for the footer."] = "Teksto por la paĝpiedo."; +$a->strings["Report Bug"] = "Skribi cimraporton"; +$a->strings["\"Blockem\" Settings"] = "\"Blockem\" Agordoj"; +$a->strings["Comma separated profile URLS to block"] = "Blokotaj URL adresoj, disigita per komo"; +$a->strings["BLOCKEM Settings saved."] = "Konservis Agordojn de BLOCKEM."; +$a->strings["Blocked %s - Click to open/close"] = "%s blokita - Klaku por malfermi/fermi"; +$a->strings["Unblock Author"] = "Malbloki Aŭtoron"; +$a->strings["Block Author"] = "Bloki Aŭtoron"; +$a->strings["blockem settings updated"] = "Ĝisdatigis la blockem agordojn"; +$a->strings[":-)"] = ":-)"; +$a->strings[":-("] = ":-("; +$a->strings["lol"] = "lol"; +$a->strings["Quick Comment Settings"] = "Agordoj pri Rapidaj Komentoj"; +$a->strings["Quick comments are found near comment boxes, sometimes hidden. Click them to provide simple replies."] = "Rapidaj komentoj troviĝas apud komentkampoj, kelkfoje kaŝita. Klaku ilin por provizi simplajn rispondojn."; +$a->strings["Enter quick comments, one per line"] = "Entajpu rapidaj komentoj, po unu je linio."; +$a->strings["Quick Comment settings saved."] = "Konservis agordojn pri rapidaj komentoj."; +$a->strings["Tile Server URL"] = "Adreso de Kahelservilo"; +$a->strings["A list of public tile servers"] = "Listo de publikaj kahelserviloj"; +$a->strings["Default zoom"] = "Defaŭlta zoma faktoro"; +$a->strings["The default zoom level. (1:world, 18:highest)"] = "La defaŭlta zoma faktoro. (1:tutmonda, 18:plej proksima)"; +$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."] = "La Mathjax kromprogramo bildigas matematikajn formulojn skribitajn en la LaTeX sintakso, cirkaŭigita de la komuna $$ aŭ eqnarray bloko en afiŝoj ĉe via muro, Reto folio kaj privataj mesaĝoj."; +$a->strings["Use the MathJax renderer"] = "Ĉu uzi la Mathjax bildigilo"; +$a->strings["MathJax Base URL"] = "Mathjax Baza URL Adreso"; +$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."] = "La URL adreso por la javascript dosiero kiu estas inkluzivigonta por uzi Mathjaz. Eblas esti aŭ la Mathjax CDN aŭ alia Mathjax instalo."; +$a->strings["Editplain settings updated."] = "Ĝisdatigis la Editplain agordojn."; +$a->strings["Editplain Settings"] = "Agordoj por Editplain"; +$a->strings["Disable richtext status editor"] = "Malŝalti la riĉteksto-redaktilon"; +$a->strings["generic profile image"] = "komuna profilbildo"; +$a->strings["random geometric pattern"] = "loteca geometria skemo"; +$a->strings["monster face"] = "monstrobildo"; +$a->strings["computer generated face"] = "komputita vizaĝo"; +$a->strings["retro arcade style face"] = "retrostila videoludstila vizaĝo"; +$a->strings["Default avatar image"] = "Defaŭlta avatarbildo"; +$a->strings["Select default avatar image if none was found at Gravatar. See README"] = "Elektu defaŭltan avatarbildon se neniu troviĝis ĉe Gravatar. Vidu README."; +$a->strings["Rating of images"] = "Pritakso de bildoj"; +$a->strings["Select the appropriate avatar rating for your site. See README"] = "Elektu la ĝustan pritakson de via avataro por via retejo. Vidu README."; +$a->strings["Gravatar settings updated."] = "Gravatar agordoj ĝisdatigitaj."; +$a->strings["Your account on %s will expire in a few days."] = "Via konto ĉe %s senvalidiĝos post kelkaj tagoj."; +$a->strings["Your Friendica test account is about to expire."] = "Via Friendica provkonto baldaŭ malaktiviĝos."; +$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."] = "Saluton %1\$s,\n\nVia testkonto ĉe %2\$s senvalidiĝos post malpli ol kvin tagoj. Vi esperas ke vi ĝuis la teston kaj baldaŭ trovosĝustan Friendica retejon por via integrita sociala komunikado. Listo de publikaj retejoj troviĝas ĉe http://dir.friendica.com/siteinfo - kaj por pli da informoj pri kiel instali vian propran Friendica servilon, bonvolu viziti la retejon de la Friendica projekton ĉe http://friendica.com."; +$a->strings["\"pageheader\" Settings"] = "\"pageheader\" Agordoj"; +$a->strings["pageheader Settings saved."] = "Konservis Agordojn de pageheader."; +$a->strings["Post to Insanejournal"] = "Afiŝi al Insanejournal"; +$a->strings["InsaneJournal Post Settings"] = "Agordoj pri Insaenejournal Afiŝoj"; +$a->strings["Enable InsaneJournal Post Plugin"] = "Ŝalti la InsaneJournal afiŝo kromprogramon."; +$a->strings["InsaneJournal username"] = "Salutnomo ĉe InsaneJournal"; +$a->strings["InsaneJournal password"] = "Pasvorto ĉe InsaneJournal"; +$a->strings["Post to InsaneJournal by default"] = "Defaŭlte afiŝi ĉe InsaneJournal"; +$a->strings["View Source"] = "Vidi Fonton"; +$a->strings["Post to StatusNet"] = "Afiŝi ĉe StatusNet"; +$a->strings["Please contact your site administrator.
    The provided API URL is not valid."] = "Bonvolu kontaki vian retejan administranton.
    La API URL adreso ne validas."; +$a->strings["We could not contact the StatusNet API with the Path you entered."] = "Ni ne povis trovi la StatusNet API kun la vojo kiun vi entajpis."; +$a->strings["StatusNet settings updated."] = "StatusNet agordoj ĝisdatigita."; +$a->strings["StatusNet Posting Settings"] = "Agordoj por StausNet afiŝoj"; +$a->strings["Globally Available StatusNet OAuthKeys"] = "Ĝeneralaj disponeblaj StatusNet OAuth ŝlosiloj"; +$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)."] = "Disponeblas antaŭagorditaj ŝlosilparoj por kelkaj StatusNet serviloj. Se via uzas iun de iu, bonvolu uzi unun de tiuj legitimaĵojn. Se ne, bonvolu konekti al iu alia StatusNet servilo (vidu malsupre)."; +$a->strings["Provide your own OAuth Credentials"] = "Provizi viajn proprajn OAuth legitimaĵojn"; +$a->strings["No consumer key pair for StatusNet found. Register your Friendica Account as an desktop client on your StatusNet account, copy the consumer key pair here and enter the API base root.
    Before you register your own OAuth key pair ask the administrator if there is already a key pair for this Friendica installation at your favorited StatusNet installation."] = "Ne trovis klientajn ŝlosilojn por StatusNet. Registru vian Friendica konton kiel klientkomputilo/desktop client en via StausNet konto. Kopiu la klientajn ŝlosilojn ĉi tien kaj entajpu la baza API radiko.
    Antaŭ vi registros viajn proprajn OAuth ŝlosilojn, demandu al la administranto ĉu jam ekzistas ŝlosiloj por ĉi-tiu Friendia retejo je via StatusNet retejo."; +$a->strings["OAuth Consumer Key"] = "OAuth Ŝlosilo de Kliento"; +$a->strings["OAuth Consumer Secret"] = "OAuth Sekreto de Kliento"; +$a->strings["Base API Path (remember the trailing /)"] = "Baza vojo al la API (ne forgesu la finan /)"; +$a->strings["To connect to your StatusNet account click the button below to get a security code from StatusNet which you have to copy into the input box below and submit the form. Only your public posts will be posted to StatusNet."] = "Por konekti al vian konton ĉe StatusNet, klaku la malsupran butonon por atingi sekurecan kodon de StatusNet, kiun vi devas alglui en la malsupra kampo kaj sendi la formon. Nur viaj publikaj afiŝoj estos afiŝota al StatusNet."; +$a->strings["Log in with StatusNet"] = "Ensaluti kun StatusNet."; +$a->strings["Copy the security code from StatusNet here"] = "Alglui la kodon de StatusNet ĉi tie:"; +$a->strings["Cancel Connection Process"] = "Nuligi Konektadon"; +$a->strings["Current StatusNet API is"] = "La nuna StatusNet API estas"; +$a->strings["Cancel StatusNet Connection"] = "Nuligi Konekton al StatusNet"; +$a->strings["Currently connected to: "] = "Konektita al:"; +$a->strings["If enabled all your public postings can be posted to the associated StatusNet account. You can choose to do so by default (here) or for every posting separately in the posting options when writing the entry."] = "Kiam ŝaltita, ĉiuj publikaj afiŝoj de vi ankaŭ eblas esti afiŝota al la asociigita StatusNet konto. Vi povas elekti ĝin defaŭlte (ĉi tie) au unuope por ĉiuj afiŝoj kiam vi skribos ilin."; +$a->strings["Note: Due your privacy settings (Hide your profile details from unknown viewers?) the link potentially included in public postings relayed to StatusNet will lead the visitor to a blank page informing the visitor that the access to your profile has been restricted."] = "Averto: Laŭ viaj privatecaj agordoj (Kaŝi viajn profilajn detalojn al nekonataj spektantoj?), la ligilo en publikaj afiŝoj plusendata al StatusNet gvidas vizitontojn al malplena paĝo sciigante ilin ke atingo al via profilo estas lmitigita."; +$a->strings["Allow posting to StatusNet"] = "Permesi afiŝojn al StatusNet"; +$a->strings["Send public postings to StatusNet by default"] = "Defaŭlte sendi publikajn afiŝojn al StatusNet"; +$a->strings["Send #tag links to StatusNet"] = "Sendu #marko ligilojn al StatusNet"; +$a->strings["Clear OAuth configuration"] = "Forviŝi OAuth agordojn"; +$a->strings["API URL"] = "API URL adreso"; +$a->strings["Post to Tumblr"] = "Afiŝi al Tumblr"; +$a->strings["Tumblr Post Settings"] = "Agordoj pri afiŝoj ĉe Tumblr"; +$a->strings["Enable Tumblr Post Plugin"] = "Ŝalti la kromprogramon por Tumblr afiŝoj"; +$a->strings["Tumblr login"] = "Salutnomo ĉe Tumblr"; +$a->strings["Tumblr password"] = "Pasvorto ĉe Tumblr"; +$a->strings["Post to Tumblr by default"] = "Defaŭlte afiŝi ĉe Tumblr"; +$a->strings["Numfriends settings updated."] = "Ĝisdatigis agordojn por Numfriends."; +$a->strings["Numfriends Settings"] = "Agordoj por Numfriends"; +$a->strings["How many contacts to display on profile sidebar"] = "Kiom da kontaktoj mi montru en la flanka strio"; +$a->strings["Gnot settings updated."] = "Ĝisdatigis Gnot agordojn."; +$a->strings["Gnot Settings"] = "Agordoj por Gnot"; +$a->strings["Allows threading of email comment notifications on Gmail and anonymising the subject line."] = "Permesas la ĉenadon de retpoŝtaj atentigoj pri komentoj ĉe Gmail kan anonimigado de la temlinio."; +$a->strings["Enable this plugin/addon?"] = "Ŝalti tiun kromprogramon?"; +$a->strings["[Friendica:Notify] Comment to conversation #%d"] = "[Friendica:Atentigo] Komento pri konversacio #%d"; +$a->strings["Post to Wordpress"] = "Afiŝi al Wordpress"; +$a->strings["WordPress Post Settings"] = "Agordoj por WordPress afiŝojn"; +$a->strings["Enable WordPress Post Plugin"] = "Ŝalti la Wordpress-afiŝo kromprogramon"; +$a->strings["WordPress username"] = "WordPress salutnomo"; +$a->strings["WordPress password"] = "WordPress pasvorto"; +$a->strings["WordPress API URL"] = "Wordpress API URL adreso"; +$a->strings["Post to WordPress by default"] = "Defaŭlte afiŝi al WordPress"; +$a->strings["\"Show more\" Settings"] = "\"Montri pli\" agordoj"; +$a->strings["Enable Show More"] = "Ŝalti \"montri pli\""; +$a->strings["Cutting posts after how much characters"] = "Limitigi afiŝojn al kiom da literoj"; +$a->strings["Show More Settings saved."] = "Konservis \"montri pli\" agordojn."; +$a->strings["show more"] = "montri pli"; +$a->strings["This website is tracked using the Piwik analytics tool."] = "Ĉi retejo uzas Piwik kiel retuma analizilo."; +$a->strings["If you do not want that your visits are logged this way you can set a cookie to prevent Piwik from tracking further visits of the site (opt-out)."] = "Se ni ne protokolu viajn vizitojn tiel, vi povas agordi kuketon por malpermesi Piwik al plu protokoli pliajn vizitojn (mem-for-elekti / opt-out)."; +$a->strings["Piwik Base URL"] = "Piwik baza URL adreso"; +$a->strings["Absolute path to your Piwik installation. (without protocol (http/s), with trailing slash)"] = "Absoluta vojo al via Piwik instalo. (sen protokolo (http/s), inkluzive vosta oblikva streketo)"; +$a->strings["Site ID"] = "Reteja idento"; +$a->strings["Show opt-out cookie link?"] = "Montru ligilon al kuketo por mem-for-elekti (opt-out)?"; +$a->strings["Asynchronous tracking"] = "Nesinkrona spurado."; +$a->strings["Post to Twitter"] = "Afiŝi ĉe Twitter"; +$a->strings["Twitter settings updated."] = "Ĝisdatigis Twitter agordojn."; +$a->strings["Twitter Posting Settings"] = "Agordoj por afiŝi ĉe Twitter"; +$a->strings["No consumer key pair for Twitter found. Please contact your site administrator."] = "Ne trovis klientajn ŝlosilojn por Twitter. Bonvolu kontakti vian retejan administranton."; +$a->strings["At this Friendica instance the Twitter plugin was enabled but you have not yet connected your account to your Twitter account. To do so click the button below to get a PIN from Twitter which you have to copy into the input box below and submit the form. Only your public posts will be posted to Twitter."] = "Je ĉi tiu Friendica retejo, la Twitter kromprogramo jam estas ŝaltita, sed via konto anokoraŭ ne estas konektita kun via Twitter konto. Por fari tion, klaku la supran butonon por atingi nombrokodon de Twitter, kion vi kopiu en la supran eniga ĉelo, kaj sendu la formularon. Nur viaj publikaj afiŝoj estas plusendota al Twitter. "; +$a->strings["Log in with Twitter"] = "Ensaluti kun Twitter"; +$a->strings["Copy the PIN from Twitter here"] = "Alglui la PIN de Twitter ĉi tie"; +$a->strings["If enabled all your public postings can be posted to the associated Twitter account. You can choose to do so by default (here) or for every posting separately in the posting options when writing the entry."] = "Kiam ŝaltita, ĉiuj publikaj afiŝoj de vi ankaŭ eblas esti afiŝota al la asociigita Twitter konto. Vi povas elekti ĝin defaŭlte (ĉi tie) au unuope por ĉiuj afiŝoj kiam vi skribos ilin."; +$a->strings["Note: Due your privacy settings (Hide your profile details from unknown viewers?) the link potentially included in public postings relayed to Twitter will lead the visitor to a blank page informing the visitor that the access to your profile has been restricted."] = "Averto: Laŭ viaj privatecaj agordoj (Kaŝi viajn profilajn detalojn al nekonataj spektantoj?), la ligilo en publikaj afiŝoj plusendata al Twitter gvidas vizitontojn al malplena paĝo sciigante ilin ke atingo al via profilo estas lmitigita."; +$a->strings["Allow posting to Twitter"] = "Permesi afiŝojn al Twitter"; +$a->strings["Send public postings to Twitter by default"] = "Defaŭlte sendi publikajn afiŝojn al Twitter"; +$a->strings["Send #tag links to Twitter"] = "Sendu #marko ligilon al Twitter"; +$a->strings["Consumer key"] = "Ŝlosilo de Kliento"; +$a->strings["Consumer secret"] = "Sekreto de Kliento"; +$a->strings["IRC Settings"] = "IRC Agordoj"; +$a->strings["Channel(s) to auto connect (comma separated)"] = "Aŭtomate konektiĝi al la kanalo(j) (disigita per komo)"; +$a->strings["Popular Channels (comma separated)"] = "Popularaj kanaloj (disigita per komo)"; +$a->strings["IRC settings saved."] = "IRC agordoj konservitaj."; +$a->strings["IRC Chatroom"] = "IRC babilejo"; +$a->strings["Popular Channels"] = "Popularaj Kanaloj"; +$a->strings["Post to blogger"] = "Afiŝi al blogger"; +$a->strings["Blogger Post Settings"] = "Agordo pri Blogger Afiŝoj"; +$a->strings["Enable Blogger Post Plugin"] = "Ŝalti la Blogger afiŝo kromprogramon"; +$a->strings["Blogger username"] = "Blogger uzantonomo"; +$a->strings["Blogger password"] = "Blogger pasvorto"; +$a->strings["Blogger API URL"] = "Blogger API URL"; +$a->strings["Post to Blogger by default"] = "Defaŭlte afiŝi al Blogger"; +$a->strings["Post to Posterous"] = "Afiŝi al Posterous"; +$a->strings["Posterous Post Settings"] = "Agordoj pri afiŝoj ĉe Posterous"; +$a->strings["Enable Posterous Post Plugin"] = "Ŝalti la Poserous-afiŝo kromprogramon"; +$a->strings["Posterous login"] = "Posterous salutnomo"; +$a->strings["Posterous password"] = "Posterous pasvorto"; +$a->strings["Post to Posterous by default"] = "Defaŭlte afiŝi al Posterous"; +$a->strings["Last users"] = "Ĵusaj uzantoj"; +$a->strings["Last likes"] = "Ĵusaj ŝatitaj elementoj"; +$a->strings["Last photos"] = "Ĵusaj bildoj"; +$a->strings["Find Friends"] = "Trovi Amikojn"; +$a->strings["Local Directory"] = "Loka Katalogo"; +$a->strings["Similar Interests"] = "Similaj Interesoj"; +$a->strings["Invite Friends"] = "Inviti amikojn"; +$a->strings["Community Pages"] = "Komunumaj paĝoj"; +$a->strings["Help or @NewHere ?"] = "Helpu aŭ @NewHere ?"; +$a->strings["Connect Services"] = "Konekti Servojn"; +$a->strings["PostIt to Friendica"] = "PostIt al Friendica"; +$a->strings["Post to Friendica"] = "Afiŝi al Friendica"; +$a->strings[" from anywhere by bookmarking this Link."] = " de iu kun ĉi tio ligilo."; +$a->strings["Your posts and conversations"] = "Viaj afiŝoj kaj komunikadoj"; +$a->strings["Your profile page"] = "Via profilo"; +$a->strings["Your contacts"] = "Viaj kontaktoj"; +$a->strings["Photos"] = "Bildoj"; +$a->strings["Your photos"] = "Viaj bildoj"; +$a->strings["Your events"] = "Viaj okazoj"; +$a->strings["Personal notes"] = "Personaj notoj"; +$a->strings["Your personal photos"] = "Viaj personaj bildoj"; +$a->strings["Theme settings"] = "Agordoj pri la etoso"; +$a->strings["Set font-size for posts and comments"] = "Agordi la tiparan grandon por afiŝoj kaj komentoj"; +$a->strings["Set line-height for posts and comments"] = "Agordi la linigrandon por afiŝoj kaj komentoj"; +$a->strings["Set resolution for middle column"] = "Agordi la distingivon por la meza kolumno"; +$a->strings["Alignment"] = "Ĝisrandigo"; +$a->strings["Left"] = "Maldekstren"; +$a->strings["Center"] = "Centren"; +$a->strings["Color scheme"] = "Kolorskemo"; +$a->strings["Gender:"] = "Sekso:"; +$a->strings["j F, Y"] = "j F, Y"; +$a->strings["j F"] = "j F"; +$a->strings["Birthday:"] = "Naskiĝtago:"; +$a->strings["Age:"] = "Aĝo:"; +$a->strings["Status:"] = "Stato:"; +$a->strings["Homepage:"] = "Hejmpaĝo:"; +$a->strings["Tags:"] = "Markoj:"; +$a->strings["Religion:"] = "Religio:"; +$a->strings["About:"] = "Pri:"; +$a->strings["Hobbies/Interests:"] = "Ŝatokupoj/Interesoj:"; +$a->strings["Contact information and Social Networks:"] = "Kontaktinformoj kaj Interkonaj Retejoj:"; +$a->strings["Musical interests:"] = "Muzaikaj interesoj:"; +$a->strings["Books, literature:"] = "Libroj, literaturo:"; +$a->strings["Television:"] = "Televido:"; +$a->strings["Film/dance/culture/entertainment:"] = "Filmoj/dancoj/arto/amuzaĵoj:"; +$a->strings["Love/Romance:"] = "Amo/romanco:"; +$a->strings["Work/employment:"] = "Laboro:"; +$a->strings["School/education:"] = "Lernejo/eduko:"; +$a->strings["Unknown | Not categorised"] = "Nekonata | Nekatorigita"; +$a->strings["Block immediately"] = "Bloki tuj"; +$a->strings["Shady, spammer, self-marketer"] = "Suspekta, spamisto, memmerkatisto"; +$a->strings["Known to me, but no opinion"] = "Konata al mi, sed mi ne havas opinion"; +$a->strings["OK, probably harmless"] = "OK, verŝajne sendanĝera"; +$a->strings["Reputable, has my trust"] = "Fidinda laŭ mi"; +$a->strings["Frequently"] = "Ofte"; +$a->strings["Hourly"] = "Ĉiuhore"; +$a->strings["Twice daily"] = "Duope ĉiutage"; +$a->strings["Daily"] = "Ĉiutage"; +$a->strings["Weekly"] = "Ĉiusemajne"; +$a->strings["Monthly"] = "Ĉiumonate"; +$a->strings["OStatus"] = "OStatus"; +$a->strings["RSS/Atom"] = "RSS/Atom"; +$a->strings["Zot!"] = "Zot!"; +$a->strings["LinkedIn"] = "LinkedIn"; +$a->strings["XMPP/IM"] = "XMPP/Tujmesaĝilo"; +$a->strings["MySpace"] = "MySpace"; +$a->strings["Male"] = "Vira"; +$a->strings["Female"] = "Ina"; +$a->strings["Currently Male"] = "Nuntempe Vira"; +$a->strings["Currently Female"] = "Nuntempe Ina"; +$a->strings["Mostly Male"] = "Ĉefe Vira"; +$a->strings["Mostly Female"] = "Ĉefe Ina"; +$a->strings["Transgender"] = "Transgenra"; +$a->strings["Intersex"] = "Interseksa"; +$a->strings["Transsexual"] = "Transseksa"; +$a->strings["Hermaphrodite"] = "Hermafrodita"; +$a->strings["Neuter"] = "Neŭtra"; +$a->strings["Non-specific"] = "Nespecifa"; +$a->strings["Other"] = "Alia"; +$a->strings["Undecided"] = "Nedecida"; +$a->strings["Males"] = "Viroj"; +$a->strings["Females"] = "Inoj"; +$a->strings["Gay"] = "Geja"; +$a->strings["Lesbian"] = "Lesba"; +$a->strings["No Preference"] = "Neniu Prefero"; +$a->strings["Bisexual"] = "Ambaŭseksema"; +$a->strings["Autosexual"] = "Memseksema"; +$a->strings["Abstinent"] = "Abstinema"; +$a->strings["Virgin"] = "Virgulino"; +$a->strings["Deviant"] = "Devia"; +$a->strings["Fetish"] = "Fetiĉo"; +$a->strings["Oodles"] = "Amasa"; +$a->strings["Nonsexual"] = "Neseksa"; +$a->strings["Single"] = "Sola"; +$a->strings["Lonely"] = "Soleca"; +$a->strings["Available"] = "Havebla"; +$a->strings["Unavailable"] = "Nehavebla"; +$a->strings["Has crush"] = "Sekrete enamiĝinta"; +$a->strings["Infatuated"] = "Blinda amo"; +$a->strings["Dating"] = "Rendevuanta"; +$a->strings["Unfaithful"] = "Malfidela"; +$a->strings["Sex Addict"] = "Seksmaniulo"; +$a->strings["Friends"] = "Amikoj"; +$a->strings["Friends/Benefits"] = "Amikoj/Avantaĝoj"; +$a->strings["Casual"] = "Neformala"; +$a->strings["Engaged"] = "Fianĉiginta"; +$a->strings["Married"] = "Edziĝinta"; +$a->strings["Imaginarily married"] = "Image edziĝinta"; +$a->strings["Partners"] = "Geparuloj"; +$a->strings["Cohabiting"] = "Kunloĝanta"; +$a->strings["Common law"] = "Registrita partnereco "; +$a->strings["Happy"] = "Feliĉa"; +$a->strings["Not looking"] = "Ne interesiĝis"; +$a->strings["Swinger"] = "Swinger"; +$a->strings["Betrayed"] = "Trompita"; +$a->strings["Separated"] = "Disiĝinta"; +$a->strings["Unstable"] = "Malfirma"; +$a->strings["Divorced"] = "Eksedziĝinta"; +$a->strings["Imaginarily divorced"] = "Image eksedziĝinta"; +$a->strings["Widowed"] = "Vidva"; +$a->strings["Uncertain"] = "Ne certa"; +$a->strings["It's complicated"] = "Estas komplika"; +$a->strings["Don't care"] = "Egala"; +$a->strings["Ask me"] = "Demandu min"; +$a->strings["Starts:"] = "Ekas:"; +$a->strings["Finishes:"] = "Finas:"; +$a->strings["(no subject)"] = "(neniu temo)"; +$a->strings["noreply"] = "nerespondi"; +$a->strings["prev"] = "antaŭa"; +$a->strings["first"] = "unua"; +$a->strings["last"] = "lasta"; +$a->strings["next"] = "sekvanta"; +$a->strings["No contacts"] = "Neniu kontaktoj"; +$a->strings["%d Contact"] = array( + 0 => "%d Kontakto", + 1 => "%d Kontaktoj", +); +$a->strings["Search"] = "Serĉi"; +$a->strings["Monday"] = "Lundo"; +$a->strings["Tuesday"] = "Mardo"; +$a->strings["Wednesday"] = "Merkredo"; +$a->strings["Thursday"] = "Ĵaŭdo"; +$a->strings["Friday"] = "Vendredo"; +$a->strings["Saturday"] = "Sabato"; +$a->strings["Sunday"] = "Dimanĉo"; +$a->strings["January"] = "Januaro"; +$a->strings["February"] = "Februaro"; +$a->strings["March"] = "Marto"; +$a->strings["April"] = "Aprilo"; +$a->strings["May"] = "Majo"; +$a->strings["June"] = "Junio"; +$a->strings["July"] = "Julio"; +$a->strings["August"] = "Aŭgusto"; +$a->strings["September"] = "Septembro"; +$a->strings["October"] = "Oktobro"; +$a->strings["November"] = "Novembro"; +$a->strings["December"] = "Decembro"; +$a->strings["bytes"] = "bajtoj"; +$a->strings["Categories:"] = "Kategorioj:"; +$a->strings["remove"] = "forviŝi"; +$a->strings["[remove]"] = "[forviŝi]"; +$a->strings["Filed under:"] = "Enarkivigita kiel:"; +$a->strings["Click to open/close"] = "Klaku por malfermi/fermi"; +$a->strings["default"] = "defaŭlta"; +$a->strings["Select an alternate language"] = "Elekti alian lingvon"; +$a->strings["activity"] = "aktiveco"; +$a->strings["comment"] = "komento"; +$a->strings["post"] = "afiŝo"; +$a->strings["Item filed"] = "Enarkivigis elementon "; +$a->strings["Sharing notification from Diaspora network"] = "Antentigo pri kunhavigado de la Diaspora reto"; +$a->strings["Attachments:"] = "Kunsendaĵoj:"; +$a->strings["[Relayed] Comment authored by %s from network %s"] = "[Plusendita] %s en la reto %s skribis komenton"; +$a->strings["view full size"] = "vidi plengrande"; +$a->strings["Embedded content"] = "Enigita enhavo"; +$a->strings["Embedding disabled"] = "Malŝaltita enigitado"; +$a->strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Revivigis malnovan grupon kun la sama nomo. Permesoj por estantaj elementoj eble estas validaj por la grupo kaj estontaj membroj. Se tiu ne estas kiun vi atendis, bonvolu krei alian grupon kun alia nomo."; +$a->strings["Everybody"] = "Ĉiuj"; +$a->strings["edit"] = "redakti"; +$a->strings["Groups"] = "Grupoj"; +$a->strings["Edit group"] = "Redakti grupon"; +$a->strings["Create a new group"] = "Krei novan grupon"; +$a->strings["Contacts not in any group"] = "Kontaktoj en neniu grupo"; +$a->strings["Logout"] = "Elsaluti"; +$a->strings["End this session"] = "Fini ĉi-tiun seancon"; +$a->strings["Status"] = "Stato"; +$a->strings["Sign in"] = "Ensaluti"; +$a->strings["Home Page"] = "Hejmpaĝo"; +$a->strings["Create an account"] = "Krei konton"; +$a->strings["Help and documentation"] = "Helpo kaj dokumentado"; +$a->strings["Apps"] = "Programoj"; +$a->strings["Addon applications, utilities, games"] = "Kromprogramoj, utilaĵoj, ludiloj"; +$a->strings["Search site content"] = "Serĉu la retejon"; +$a->strings["Conversations on this site"] = "Konversacioj je ĉi-tiu retejo"; +$a->strings["Directory"] = "Katalogo"; +$a->strings["People directory"] = "Katalogo de homoj"; +$a->strings["Conversations from your friends"] = "Konversacioj de viaj amikoj"; +$a->strings["Friend Requests"] = "Kontaktpetoj"; +$a->strings["See all notifications"] = "Vidu ĉiujn atentigojn"; +$a->strings["Mark all system notifications seen"] = "Marki ĉiujn atentigojn legita"; +$a->strings["Private mail"] = "Privata poŝto"; +$a->strings["Inbox"] = "Enirkesto"; +$a->strings["Outbox"] = "Elirkesto"; +$a->strings["Manage"] = "Administri"; +$a->strings["Manage other pages"] = "Administri aliajn paĝojn"; +$a->strings["Profiles"] = "Profiloj:"; +$a->strings["Manage/edit profiles"] = "Administri/redakti profilojn"; +$a->strings["Manage/edit friends and contacts"] = "Administri/redakti amikojn kaj kontaktojn"; +$a->strings["Admin"] = "Administrado"; +$a->strings["Site setup and configuration"] = "Agordoj pri la retejo"; +$a->strings["Nothing new here"] = "Estas neniu nova ĉi tie"; +$a->strings["Add New Contact"] = "Aldonu Novan Kontakton"; +$a->strings["Enter address or web location"] = "Entajpu adreson aŭ retlokon"; +$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Ekzemple: bob@example.com, http://example.com/barbara"; +$a->strings["%d invitation available"] = array( + 0 => "Disponeblas %d invito", + 1 => "Disponeblas %d invitoj", +); +$a->strings["Find People"] = "Trovi Homojn"; +$a->strings["Enter name or interest"] = "Entajpu nomon aŭ intereson"; +$a->strings["Connect/Follow"] = "Konekti/Aboni"; +$a->strings["Examples: Robert Morgenstein, Fishing"] = "Ekzemple: Robert Morgenstein, Fishing"; +$a->strings["Random Profile"] = "Hazarda Profilo"; +$a->strings["Networks"] = "Retoj"; +$a->strings["All Networks"] = "Ĉiuj Retoj"; +$a->strings["Saved Folders"] = "Konservitaj Dosierujoj"; +$a->strings["Everything"] = "Ĉio"; +$a->strings["Categories"] = "Kategorioj"; +$a->strings["Logged out."] = "Elsalutita."; +$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Okazis problemo ensalutinta kun via OpenID. Bonvolu kontroli la ID."; +$a->strings["The error message was:"] = "La erarmesaĝo estis:"; +$a->strings["Miscellaneous"] = "Diversaj"; +$a->strings["year"] = "jaro"; +$a->strings["month"] = "monato"; +$a->strings["day"] = "tago"; +$a->strings["never"] = "neniam"; +$a->strings["less than a second ago"] = "antaŭ malpli ol unu sekundo"; +$a->strings["years"] = "jaroj"; +$a->strings["months"] = "monatoj"; +$a->strings["week"] = "semajno"; +$a->strings["weeks"] = "semajnoj"; +$a->strings["days"] = "tagoj"; +$a->strings["hour"] = "horo"; +$a->strings["hours"] = "horoj"; +$a->strings["minute"] = "minuto"; +$a->strings["minutes"] = "minutoj"; +$a->strings["second"] = "sekundo"; +$a->strings["seconds"] = "sekundoj"; +$a->strings["%1\$d %2\$s ago"] = "antaŭ %1\$d %2\$s"; +$a->strings["From: "] = "De: "; +$a->strings["$1 wrote:"] = "$1 skribis:"; +$a->strings["Image/photo"] = "Bildo"; +$a->strings["Cannot locate DNS info for database server '%s'"] = "Ne trovis DNS informojn por datumbaza servilo '%s'."; +$a->strings["[no subject]"] = "[neniu temo]"; +$a->strings["Visible to everybody"] = "Videbla al ĉiuj"; +$a->strings["show"] = "montru"; +$a->strings["don't show"] = "ne montru"; +$a->strings["Friendica Notification"] = "Friendica Atentigo"; +$a->strings["Thank You,"] = "Dankon,"; +$a->strings["%s Administrator"] = "%s Administranto"; +$a->strings["%s "] = "%s "; +$a->strings["[Friendica:Notify] New mail received at %s"] = "[Friendica:Atentigo] Ricevis novan retpoŝton ĉe %s"; +$a->strings["%s sent you a new private message at %s."] = "%s sendis novan mesaĝon al vi ĉe %s."; +$a->strings["%s sent you %s."] = "%s sendis al vi %s."; +$a->strings["a private message"] = "privatan mesaĝon"; +$a->strings["Please visit %s to view and/or reply to your private messages."] = "Bonvolu viziti %s por vidi aŭ respondi viajn privatajn mesaĝojn."; +$a->strings["%s's"] = "de %s verkita"; +$a->strings["your"] = "via"; +$a->strings["[Friendica:Notify] Comment to conversation #%d by %s"] = "[Friendica:Atentigo] Komento pri konversacio #%d de %s"; +$a->strings["%s commented on an item/conversation you have been following."] = "%s komentis pri elemento/konversacio kiun vi sekvas."; +$a->strings["%s commented on %s."] = "%s komentis pri %s."; +$a->strings["Please visit %s to view and/or reply to the conversation."] = "Bonvolu viziti %s por vidi aŭ respondi la konversacion."; +$a->strings["[Friendica:Notify] %s posted to your profile wall"] = "[Friendica:Atentigo] %s afiŝis al via profilmuro"; +$a->strings["%s posted to your profile wall at %s"] = "%s skribis al via profila muro ĉe %s"; +$a->strings["%s posted to %s"] = "%s afiŝis al %s"; +$a->strings["your profile wall."] = "via profilmuro."; +$a->strings["[Friendica:Notify] %s tagged you"] = "[Friendica:Atentigo] %s markis vin"; +$a->strings["%s tagged you at %s"] = "%s markis vin kiel %s"; +$a->strings["%s %s."] = "%s %s."; +$a->strings["tagged you"] = "markis vin"; +$a->strings["[Friendica:Notify] %s tagged your post"] = "[Friendica:Atentigo] %s markis vian afiŝon"; +$a->strings["%s tagged your post at %s"] = "%s markis vian afiŝon kiel %s"; +$a->strings["%s tagged %s"] = "%s markis %s"; +$a->strings["your post"] = "vian afiŝon"; +$a->strings["[Friendica:Notify] Introduction received"] = "[Friendica:Atentigo] Ricevis prezenton"; +$a->strings["You've received an introduction from '%s' at %s"] = "Vi ricevis prezento de '%s' ĉe %s"; +$a->strings["You've received %s from %s."] = "Vi ricevis %s de %s."; +$a->strings["an introduction"] = "prezenton"; +$a->strings["You may visit their profile at %s"] = "Vi povas vidi la profilon de li aŭ ŝi ĉe %s"; +$a->strings["Please visit %s to approve or reject the introduction."] = "Bonvolu viziti %s por aprobi aŭ malaprobi la prezenton."; +$a->strings["[Friendica:Notify] Friend suggestion received"] = "[Friendica:Atentigo] Ricevis amikosugeston"; +$a->strings["You've received a friend suggestion from '%s' at %s"] = "'%s' ĉe %s rekomendis amikon al vi"; +$a->strings["You've received %s for %s from %s."] = "Vi ricevis %s kun %s de %s."; +$a->strings["a friend suggestion"] = "sugeston por amikiĝi"; +$a->strings["Name:"] = "Nomo:"; +$a->strings["Photo:"] = "Bildo:"; +$a->strings["Please visit %s to approve or reject the suggestion."] = "Bonvolu viziti %s por aprobi aŭ malaprobi la sugeston."; +$a->strings["A new person is sharing with you at "] = "Nova persono kunhavigas kun vi ĉe "; +$a->strings["You have a new follower at "] = "Vi havas novan sekvanton ĉe "; +$a->strings["image/photo"] = "bildo"; +$a->strings["link"] = "ligilo"; +$a->strings["Welcome "] = "Bonvenon "; +$a->strings["Please upload a profile photo."] = "Bonvolu alŝuti profilbildon."; +$a->strings["Welcome back "] = "Bonvenon "; +$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."] = "La sekuriga ĵetono de la formo estis malĝusta. Tio verŝajne okazis ĉar la formo estis malfermita dum tro longa tempo (>3 horoj) antaŭ la sendado."; +$a->strings["View Status"] = "Vidi Staton"; +$a->strings["View Profile"] = "Vidi Profilon"; +$a->strings["View Photos"] = "Vidi Bildojn"; +$a->strings["Network Posts"] = "Enretaj Afiŝoj"; +$a->strings["Edit Contact"] = "Redakti Kontakton"; +$a->strings["Send PM"] = "Sendi PM"; +$a->strings["post/item"] = "afiŝo/elemento"; +$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "%1\$s markis la %3\$s de %2\$s kiel preferita."; +$a->strings["Select"] = "Elekti"; +$a->strings["View %s's profile @ %s"] = "Vidi la profilon de %s ĉe %s"; +$a->strings["%s from %s"] = "%s de %s"; +$a->strings["View in context"] = "Vidi kun kunteksto"; +$a->strings["%d comment"] = array( + 0 => "%d komento", + 1 => "%d komentoj", +); +$a->strings["like"] = "ŝati"; +$a->strings["dislike"] = "malŝati"; +$a->strings["Share this"] = "Kunhavigi ĉi tiun"; +$a->strings["share"] = "kunhavigi"; +$a->strings["add star"] = "aldoni stelon"; +$a->strings["remove star"] = "forpreni stelon"; +$a->strings["toggle star status"] = "ŝalti/malŝalti steloŝtato"; +$a->strings["starred"] = "steligita"; +$a->strings["add tag"] = "aldoni markon"; +$a->strings["save to folder"] = "konservi en dosierujo"; +$a->strings["to"] = "al"; +$a->strings["Wall-to-Wall"] = "Muro-al-Muro"; +$a->strings["via Wall-To-Wall:"] = "tra Muro-al-Muro:"; +$a->strings["Delete Selected Items"] = "Forviŝi Elektitajn Elementojn"; +$a->strings["%s likes this."] = "%s ŝatas tiun."; +$a->strings["%s doesn't like this."] = "%s malŝatas tiun."; +$a->strings["%2\$d people like this."] = "%2\$d homoj ŝatas tiun."; +$a->strings["%2\$d people don't like this."] = "%2\$d homojmalŝatas tiun."; +$a->strings["and"] = "kaj"; +$a->strings[", and %d other people"] = ", kaj %d aliaj homoj."; +$a->strings["%s like this."] = "%s ŝatas tiun."; +$a->strings["%s don't like this."] = "%s malŝatas tiun."; +$a->strings["Visible to everybody"] = "Videbla al ĉiuj"; +$a->strings["Please enter a video link/URL:"] = "Bonvolu entajpi ligilon/adreson de video:"; +$a->strings["Please enter an audio link/URL:"] = "Bonvolu entajpi ligilon/adreson de sono:"; +$a->strings["Tag term:"] = "Markfrazo:"; +$a->strings["Where are you right now?"] = "Kie vi estas nun?"; +$a->strings["upload photo"] = "alŝuti bildon"; +$a->strings["attach file"] = "kunsendi dosieron"; +$a->strings["web link"] = "TTT ligilo"; +$a->strings["Insert video link"] = "Alglui ligilon de video"; +$a->strings["video link"] = "video ligilo"; +$a->strings["Insert audio link"] = "Alglui ligilon de sono"; +$a->strings["audio link"] = "sono ligilo"; +$a->strings["set location"] = "agordi lokon"; +$a->strings["clear location"] = "forviŝi lokon"; +$a->strings["permissions"] = "permesoj"; +$a->strings["Delete this item?"] = "Forviŝi ĉi tiun elementon?"; +$a->strings["show fewer"] = "montri malpli"; +$a->strings["Create a New Account"] = "Krei Novan Konton"; +$a->strings["Nickname or Email address: "] = "Kaŝnomo aŭ retpoŝtadreso:"; +$a->strings["Password: "] = "Pasvorto:"; +$a->strings["Or login using OpenID: "] = "Aŭ ensaluti per OpenID:"; +$a->strings["Forgot your password?"] = "Ĉu vi vorgesis vian pasvorton?"; +$a->strings["Edit profile"] = "Redakti profilon"; +$a->strings["Message"] = "Mesaĝo"; +$a->strings["g A l F d"] = "\\j\\e \\l\\a G\\a \\h\\o\\r\\o, l F d"; +$a->strings["F d"] = "F d"; +$a->strings["Birthday Reminders"] = "Memorigilo pri naskiĝtagoj"; +$a->strings["Birthdays this week:"] = "Naskiĝtagoj ĉi-semajne:"; +$a->strings["[today]"] = "[hodiaŭ]"; +$a->strings["Event Reminders"] = "Memorigiloj pri Okazoj"; +$a->strings["Events this week:"] = "Okazoj ĉi-semajne:"; +$a->strings["[No description]"] = "[Neniu priskribo]"; diff --git a/view/es/messages.po b/view/es/messages.po index d3f8557e9..54de3ee64 100644 --- a/view/es/messages.po +++ b/view/es/messages.po @@ -3136,7 +3136,7 @@ msgstr "Cuentas abandonadas después de x días" #: ../../mod/admin.php:313 msgid "" -"Will not waste system resources polling external sites for abandonded " +"Will not waste system resources polling external sites for abandoned " "accounts. Enter 0 for no time limit." msgstr "" "No gastará recursos del sistema creando encuestas desde sitios externos para" diff --git a/view/es/strings.php b/view/es/strings.php index ac53a45a9..d2b8e240e 100644 --- a/view/es/strings.php +++ b/view/es/strings.php @@ -674,7 +674,7 @@ $a->strings["Maximum image size"] = "Tamaño máximo de la imagen"; $a->strings["Register policy"] = "Política de registros"; $a->strings["Register text"] = "Términos"; $a->strings["Accounts abandoned after x days"] = "Cuentas abandonadas después de x días"; -$a->strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "No gastará recursos del sistema creando encuestas desde sitios externos para cuentas abandonadas. Introduzca 0 para ningún límite temporal."; +$a->strings["Will not waste system resources polling external sites for abandoned accounts. Enter 0 for no time limit."] = "No gastará recursos del sistema creando encuestas desde sitios externos para cuentas abandonadas. Introduzca 0 para ningún límite temporal."; $a->strings["Allowed friend domains"] = "Dominios amigos permitidos"; $a->strings["Allowed email domains"] = "Dominios de correo permitidos"; $a->strings["Block public"] = "Bloqueo público"; diff --git a/view/filebrowser.tpl b/view/filebrowser.tpl new file mode 100644 index 000000000..1e97237f4 --- /dev/null +++ b/view/filebrowser.tpl @@ -0,0 +1,84 @@ + + + + + + + + + +
    +
      +
    • FileBrowser
    • +
    +
    +
    + +
    +
    + {{ for $path as $p }}$p.1{{ endfor }} +
    +
    +
      + {{ for $folders as $f }}
    • $f.1
    • {{ endfor }} +
    +
    +
    +
      + {{ for $files as $f }} +
    • $f.1
    • + {{ endfor }} +
    +
    +
    +
    +
    + +
    + + + diff --git a/view/fr/messages.po b/view/fr/messages.po index 345405760..5628299b8 100644 --- a/view/fr/messages.po +++ b/view/fr/messages.po @@ -3111,7 +3111,7 @@ msgstr "Les comptes sont abandonnés après x jours" #: ../../mod/admin.php:313 msgid "" -"Will not waste system resources polling external sites for abandonded " +"Will not waste system resources polling external sites for abandoned " "accounts. Enter 0 for no time limit." msgstr "" "Pour ne pas gaspiller les ressources système, on cesse d'interroger les " diff --git a/view/fr/strings.php b/view/fr/strings.php index dda24d3be..e24070ab9 100644 --- a/view/fr/strings.php +++ b/view/fr/strings.php @@ -674,7 +674,7 @@ $a->strings["Maximum image size"] = "Taille maximale des images"; $a->strings["Register policy"] = "Politique d'inscription"; $a->strings["Register text"] = "Texte d'inscription"; $a->strings["Accounts abandoned after x days"] = "Les comptes sont abandonnés après x jours"; -$a->strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Pour ne pas gaspiller les ressources système, on cesse d'interroger les sites distants pour les comptes abandonnés. Mettre 0 pour désactiver cette fonction."; +$a->strings["Will not waste system resources polling external sites for abandoned accounts. Enter 0 for no time limit."] = "Pour ne pas gaspiller les ressources système, on cesse d'interroger les sites distants pour les comptes abandonnés. Mettre 0 pour désactiver cette fonction."; $a->strings["Allowed friend domains"] = "Domaines autorisés"; $a->strings["Allowed email domains"] = "Domaines courriel autorisés"; $a->strings["Block public"] = "Interdire la publication globale"; diff --git a/view/it/messages.po b/view/it/messages.po index e0375764f..855a24ee8 100644 --- a/view/it/messages.po +++ b/view/it/messages.po @@ -3104,7 +3104,7 @@ msgstr "Account abbandonati dopo x giorni" #: ../../mod/admin.php:313 msgid "" -"Will not waste system resources polling external sites for abandonded " +"Will not waste system resources polling external sites for abandoned " "accounts. Enter 0 for no time limit." msgstr "" "Non spreca risorse di sistema controllando siti esterni per gli account " diff --git a/view/it/strings.php b/view/it/strings.php index 5fd187f7a..93bcbd465 100644 --- a/view/it/strings.php +++ b/view/it/strings.php @@ -674,7 +674,7 @@ $a->strings["Maximum image size"] = "Massima dimensione immagini"; $a->strings["Register policy"] = "Politica di registrazione"; $a->strings["Register text"] = "Testo registrazione"; $a->strings["Accounts abandoned after x days"] = "Account abbandonati dopo x giorni"; -$a->strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Non spreca risorse di sistema controllando siti esterni per gli account abbandonati. Immettere 0 per nessun limite di tempo."; +$a->strings["Will not waste system resources polling external sites for abandoned accounts. Enter 0 for no time limit."] = "Non spreca risorse di sistema controllando siti esterni per gli account abbandonati. Immettere 0 per nessun limite di tempo."; $a->strings["Allowed friend domains"] = "Domini amici consentiti"; $a->strings["Allowed email domains"] = "Domini email consentiti"; $a->strings["Block public"] = "Blocca pagine pubbliche"; diff --git a/view/jot-header.tpl b/view/jot-header.tpl index 67e5eb681..f1c283470 100644 --- a/view/jot-header.tpl +++ b/view/jot-header.tpl @@ -26,7 +26,7 @@ function initEditor(cb){ mode : "specific_textareas", editor_selector: $editselect, auto_focus: "profile-jot-text", - plugins : "bbcode,paste,autoresize", + plugins : "bbcode,paste,autoresize, inlinepopups", theme_advanced_buttons1 : "bold,italic,underline,undo,redo,link,unlink,image,forecolor,formatselect,code", theme_advanced_buttons2 : "", theme_advanced_buttons3 : "", @@ -44,6 +44,7 @@ function initEditor(cb){ convert_urls: false, content_css: "$baseurl/view/custom_tinymce.css", theme_advanced_path : false, + file_browser_callback : "fcFileBrowser", setup : function(ed) { cPopup = null; ed.onKeyDown.add(function(ed,e) { diff --git a/view/theme/diabook-aerith/admin_users.tpl b/view/theme/diabook-aerith/admin_users.tpl new file mode 100644 index 000000000..a03573aac --- /dev/null +++ b/view/theme/diabook-aerith/admin_users.tpl @@ -0,0 +1,89 @@ + +
    +

    $title - $page

    + + + + +

    $h_pending

    + {{ if $pending }} + + + + {{ for $th_pending as $th }}{{ endfor }} + + + + + + {{ for $pending as $u }} + + + + + + + + {{ endfor }} + +
    $th
    $u.created$u.name + + +
    + +
    + {{ else }} +

    $no_pending

    + {{ endif }} + + + + +

    $h_users

    + {{ if $users }} + + + + + {{ for $th_users as $th }}{{ endfor }} + + + + + + {{ for $users as $u }} + + + + + + + + + + + + {{ endfor }} + +
    $th
    $u.nickname$u.name$u.register_date$u.lastitem_date + + +
    + +
    + {{ else }} + NO USERS?!? + {{ endif }} + +
    diff --git a/view/theme/diabook-aerith/ch_directory_item.tpl b/view/theme/diabook-aerith/ch_directory_item.tpl new file mode 100755 index 000000000..db1936e4b --- /dev/null +++ b/view/theme/diabook-aerith/ch_directory_item.tpl @@ -0,0 +1,10 @@ + +
    +
    +
    + + $alt-text + +
    +
    +
    diff --git a/view/theme/diabook-aerith/comment_item.tpl b/view/theme/diabook-aerith/comment_item.tpl index 47046c371..ee4dfba45 100644 --- a/view/theme/diabook-aerith/comment_item.tpl +++ b/view/theme/diabook-aerith/comment_item.tpl @@ -12,13 +12,13 @@
    - img - url - video - u - i - b - quote + img + url + video + u + i + b + quote {{ if $qcomment }}
    - Password:
    -
    -   $error - -

    - -EOF; - -} -?> - - - \ No newline at end of file diff --git a/view/theme/diabook-aerith/fpostit/friendika-32.png b/view/theme/diabook-aerith/fpostit/friendika-32.png deleted file mode 100644 index 61764bf20..000000000 Binary files a/view/theme/diabook-aerith/fpostit/friendika-32.png and /dev/null differ diff --git a/view/theme/diabook-aerith/group_side.tpl b/view/theme/diabook-aerith/group_side.tpl old mode 100644 new mode 100755 index 642019049..8600402f2 --- a/view/theme/diabook-aerith/group_side.tpl +++ b/view/theme/diabook-aerith/group_side.tpl @@ -25,5 +25,10 @@ {{ endfor }}
+ {{ if $ungrouped }} + + {{ endif }} diff --git a/view/theme/diabook-aerith/icons/block.png b/view/theme/diabook-aerith/icons/block.png new file mode 100755 index 000000000..a0b1dffe9 Binary files /dev/null and b/view/theme/diabook-aerith/icons/block.png differ diff --git a/view/theme/diabook-aerith/jot.tpl b/view/theme/diabook-aerith/jot.tpl index ee30da7bf..0928c9f36 100644 --- a/view/theme/diabook-aerith/jot.tpl +++ b/view/theme/diabook-aerith/jot.tpl @@ -14,6 +14,7 @@ +
diff --git a/view/theme/diabook-aerith/login.tpl b/view/theme/diabook-aerith/login.tpl new file mode 100644 index 000000000..efa7c2d6d --- /dev/null +++ b/view/theme/diabook-aerith/login.tpl @@ -0,0 +1,33 @@ + +
+ + +
+ {{ inc field_input.tpl with $field=$lname }}{{ endinc }} + {{ inc field_password.tpl with $field=$lpassword }}{{ endinc }} +
+ + {{ if $openid }} +
+ {{ inc field_openid.tpl with $field=$lopenid }}{{ endinc }} +
+ {{ endif }} + +
+ +
+ + + + {{ for $hiddens as $k=>$v }} + + {{ endfor }} + + +
+ + + diff --git a/view/theme/diabook-aerith/nav.tpl b/view/theme/diabook-aerith/nav.tpl index 6fab83afc..5f316bcdd 100644 --- a/view/theme/diabook-aerith/nav.tpl +++ b/view/theme/diabook-aerith/nav.tpl @@ -26,6 +26,7 @@ + {{ endif }} {{ if $nav.messages }} @@ -35,8 +36,6 @@ @@ -45,7 +44,7 @@ {{ if $nav.notifications }} + {{ endif }} {{ if $nav.messages }} @@ -35,8 +36,6 @@ @@ -63,16 +62,18 @@ {{ endif }} +
  • + + {{ if $nav.directory }} {{ endif }} - {{ if $nav.apps }} {{ endif }} - {{ if $nav.settings }} + {{ if $nav.home }} + {{ endif }} {{ if $nav.messages }} @@ -35,8 +36,6 @@ @@ -63,16 +62,18 @@ {{ endif }} +
  • + + {{ if $nav.directory }} {{ endif }} - {{ if $nav.apps }} {{ endif }} - {{ if $nav.settings }} + {{ if $nav.home }} @@ -64,12 +62,12 @@ {{ endif }} +
  • +