diff --git a/.gitignore b/.gitignore index 34675be90b..5fe71a7a87 100644 --- a/.gitignore +++ b/.gitignore @@ -21,5 +21,6 @@ report/ .buildpath .externalToolBuilders .settings +#ignore OSX .DS_Store files +.DS_Store -view/theme/smoothly \ No newline at end of file diff --git a/boot.php b/boot.php index 7581934509..efaf3ce0ab 100644 --- a/boot.php +++ b/boot.php @@ -11,9 +11,9 @@ require_once('include/cache.php'); require_once('library/Mobile_Detect/Mobile_Detect.php'); define ( 'FRIENDICA_PLATFORM', 'Friendica'); -define ( 'FRIENDICA_VERSION', '3.0.1464' ); +define ( 'FRIENDICA_VERSION', '3.0.1479' ); define ( 'DFRN_PROTOCOL_VERSION', '2.23' ); -define ( 'DB_UPDATE_VERSION', 1155 ); +define ( 'DB_UPDATE_VERSION', 1156 ); define ( 'EOL', "
\r\n" ); define ( 'ATOM_TIME', 'Y-m-d\TH:i:s\Z' ); diff --git a/database.sql b/database.sql index da3462a752..0f82616f7b 100644 --- a/database.sql +++ b/database.sql @@ -273,7 +273,7 @@ CREATE TABLE IF NOT EXISTS `event` ( KEY `start` ( `start` ), KEY `finish` ( `finish` ), KEY `adjust` ( `adjust` ), - KEY `ignore` ( `ignore` ), + KEY `ignore` ( `ignore` ) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- -------------------------------------------------------- @@ -592,11 +592,13 @@ CREATE TABLE IF NOT EXISTS `item` ( -- CREATE TABLE IF NOT EXISTS `item_id` ( + `id` int(11) NOT NULL AUTO_INCREMENT, `iid` int(11) NOT NULL, `uid` int(11) NOT NULL, `sid` char(255) NOT NULL, `service` char(255) NOT NULL, - PRIMARY KEY (`iid`), + PRIMARY KEY (`id`), + KEY `iid` (`iid`), KEY `uid` (`uid`), KEY `sid` (`sid`), KEY `service` (`service`) diff --git a/doc/Installing-Connectors.md b/doc/Installing-Connectors.md index 328e3b6c48..83d6954e76 100644 --- a/doc/Installing-Connectors.md +++ b/doc/Installing-Connectors.md @@ -100,20 +100,17 @@ b. The url should be your site URL with a trailing slash. You **may** be required to provide a privacy and/or terms of service URL. -c. Set the following values in your .htconfig.php file - -``` -$a->config['facebook']['appid'] = 'xxxxxxxxxxx'; -$a->config['facebook']['appsecret'] = 'xxxxxxxxxxxxxxx'; -``` - -Replace with the settings Facebook gives you. - -d. Navigate to Set Web->Site URL & Domain -> Website Settings. Set Site URL +c. Navigate to Set Web->Site URL & Domain -> Website Settings. Set Site URL to yoursubdomain.yourdomain.com. Set Site Domain to your yourdomain.com. +d. Install the Facebook plugin on your Friendica site at 'admin/plugins'. You should then see a link for Facebook under 'Plugin Features' on the sidebar of the admin panel. Select that. -On Friendica, visit the Facebook Settings section of the "Settings->Connector Settings" page. And click 'Install Facebook Connector'. +e. Enter the App-ID and App Secret that Facebook gave you. Change any other settings as desired. + + +On Friendica, each member who wishes to use the Facebook connector should visit the Facebook Settings section of their "Settings->Connector Settings" page, and click 'Install Facebook Connector'. + +Choose the appropriate settings for your usage and privacy requirements. This will ask you to login to Facebook and grant permission to the plugin to do its stuff. Allow it to do so. diff --git a/include/Photo.php b/include/Photo.php index 8e4eb84bdb..00c424c64c 100644 --- a/include/Photo.php +++ b/include/Photo.php @@ -663,7 +663,7 @@ function import_profile_photo($photo,$uid,$cid) { intval($uid), intval($cid) ); - if(count($r)) { + if(count($r) && strlen($r[0]['resource-id'])) { $hash = $r[0]['resource-id']; } else { diff --git a/include/bbcode.php b/include/bbcode.php index c30908e2d4..ef4a9aa9ba 100644 --- a/include/bbcode.php +++ b/include/bbcode.php @@ -198,10 +198,6 @@ function bbcode($Text,$preserve_nl = false, $tryoembed = true) { $a = get_app(); - // Move all spaces out of the tags - $Text = preg_replace("/\[(\w*)\](\s*)/ism", '$2[$1]', $Text); - $Text = preg_replace("/(\s*)\[\/(\w*)\]/ism", '[/$2]$1', $Text); - // Hide all [noparse] contained bbtags by spacefying them // POSSIBLE BUG --> Will the 'preg' functions crash if there's an embedded image? @@ -210,6 +206,10 @@ function bbcode($Text,$preserve_nl = false, $tryoembed = true) { $Text = preg_replace_callback("/\[pre\](.*?)\[\/pre\]/ism", 'bb_spacefy',$Text); + // Move all spaces out of the tags + $Text = preg_replace("/\[(\w*)\](\s*)/ism", '$2[$1]', $Text); + $Text = preg_replace("/(\s*)\[\/(\w*)\]/ism", '[/$2]$1', $Text); + // Extract the private images which use data url's since preg has issues with // large data sizes. Stash them away while we do bbcode conversion, and then put them back // in after we've done all the regex matching. We cannot use any preg functions to do this. diff --git a/include/conversation.php b/include/conversation.php index 30ac3533de..b41f3f0b76 100644 --- a/include/conversation.php +++ b/include/conversation.php @@ -99,7 +99,7 @@ function localize_item(&$item){ $item['body'] = item_redir_and_replace_images($extracted['body'], $extracted['images'], $item['contact-id']); $xmlhead="<"."?xml version='1.0' encoding='UTF-8' ?".">"; - if ($item['verb']=== ACTIVITY_LIKE || $item['verb']=== ACTIVITY_DISLIKE){ + if (activity_match($item['verb'],ACTIVITY_LIKE) || activity_match($item['verb'],ACTIVITY_DISLIKE)){ $r = q("SELECT * from `item`,`contact` WHERE `item`.`contact-id`=`contact`.`id` AND `item`.`uri`='%s';", @@ -132,18 +132,16 @@ function localize_item(&$item){ $plink = '[url=' . $obj['plink'] . ']' . $post_type . '[/url]'; - switch($item['verb']){ - case ACTIVITY_LIKE : - $bodyverb = t('%1$s likes %2$s\'s %3$s'); - break; - case ACTIVITY_DISLIKE: - $bodyverb = t('%1$s doesn\'t like %2$s\'s %3$s'); - break; + if(activity_match($item['verb'],ACTIVITY_LIKE)) { + $bodyverb = t('%1$s likes %2$s\'s %3$s'); + } + elseif(activity_match($item['verb'],ACTIVITY_DISLIKE)) { + $bodyverb = t('%1$s doesn\'t like %2$s\'s %3$s'); } $item['body'] = sprintf($bodyverb, $author, $objauthor, $plink); } - if ($item['verb']=== ACTIVITY_FRIEND){ + if (activity_match($item['verb'],ACTIVITY_FRIEND)) { if ($item['object-type']=="" || $item['object-type']!== ACTIVITY_OBJ_PERSON) return; @@ -230,7 +228,7 @@ function localize_item(&$item){ $item['body'] = sprintf($txt, $A, t($verb)); } - if ($item['verb']===ACTIVITY_TAG){ + if (activity_match($item['verb'],ACTIVITY_TAG)) { $r = q("SELECT * from `item`,`contact` WHERE `item`.`contact-id`=`contact`.`id` AND `item`.`uri`='%s';", dbesc($item['parent-uri'])); @@ -267,7 +265,7 @@ function localize_item(&$item){ $item['body'] = sprintf( t('%1$s tagged %2$s\'s %3$s with %4$s'), $author, $objauthor, $plink, $tag ); } - if ($item['verb']=== ACTIVITY_FAVORITE){ + if (activity_match($item['verb'],ACTIVITY_FAVORITE)){ if ($item['object-type']== "") return; @@ -332,9 +330,8 @@ function count_descendants($item) { if($total > 0) { foreach($item['children'] as $child) { - if($child['verb'] === ACTIVITY_LIKE || $child['verb'] === ACTIVITY_DISLIKE) { + if(! visible_activity($child)) $total --; - } $total += count_descendants($child); } } @@ -342,361 +339,21 @@ function count_descendants($item) { return $total; } -/** - * Recursively prepare a thread for HTML - */ +function visible_activity($item) { -function prepare_threads_body($a, $items, $cmnt_tpl, $page_writeable, $mode, $profile_owner, $alike, $dlike, $previewing, $thread_level=1) { - $result = array(); - - $wall_template = 'wall_thread.tpl'; - $wallwall_template = 'wallwall_thread.tpl'; - $items_seen = 0; - $nb_items = count($items); - - $total_children = $nb_items; - - foreach($items as $item) { - if($item['network'] === NETWORK_MAIL && local_user() != $item['uid']) { - // Don't count it as a visible item - $nb_items--; - $total_children --; - } - if($item['verb'] === ACTIVITY_LIKE || $item['verb'] === ACTIVITY_DISLIKE) { - $nb_items --; - $total_children --; + if(activity_match($item['verb'],ACTIVITY_LIKE) || activity_match($item['verb'],ACTIVITY_DISLIKE)) + return false; + if(activity_match($item['verb'],ACTIVITY_FOLLOW) && $item['object-type'] === ACTIVITY_OBJ_NOTE) { + if(! (($item['self']) && ($item['uid'] == local_user()))) { + return false; } } - foreach($items as $item) { - // prevent private email reply to public conversation from leaking. - if($item['network'] === NETWORK_MAIL && local_user() != $item['uid']) { - continue; - } - - if($item['verb'] === ACTIVITY_LIKE || $item['verb'] === ACTIVITY_DISLIKE) { - continue; - } - - $items_seen++; - - $comment = ''; - $template = $wall_template; - $commentww = ''; - $sparkle = ''; - $owner_url = $owner_photo = $owner_name = ''; - $buttons = ''; - $dropping = false; - $star = false; - $isstarred = "unstarred"; - $photo = $item['photo']; - $thumb = $item['thumb']; - $indent = ''; - $osparkle = ''; - $visiting = false; - $lastcollapsed = false; - $firstcollapsed = false; - $total_children += count_descendants($item); - - $toplevelpost = (($item['id'] == $item['parent']) ? true : false); - - - if($item['uid'] == local_user()) - $dropping = true; - elseif(is_array($_SESSION['remote'])) { - foreach($_SESSION['remote'] as $visitor) { - if($visitor['cid'] == $item['contact-id']) { - $dropping = true; - $visiting = true; - break; - } - } - } - - $item_writeable = (($item['writable'] || $item['self']) ? true : false); - - // This will allow us to comment on wall-to-wall items owned by our friends - // and community forums even if somebody else wrote the post. - - if($visiting && $mode == 'profile') - $item_writeable = true; - - $show_comment_box = ((($page_writeable) && ($item_writeable)) ? true : false); - $lock = ((($item['private'] == 1) || (($item['uid'] == local_user()) && (strlen($item['allow_cid']) || strlen($item['allow_gid']) - || strlen($item['deny_cid']) || strlen($item['deny_gid'])))) - ? t('Private Message') - : false); - $redirect_url = $a->get_baseurl($ssl_state) . '/redir/' . $item['cid'] ; - $shareable = ((($profile_owner == local_user()) && ($item['private'] != 1)) ? true : 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 = array( - 'dropping' => $dropping, - 'select' => t('Select'), - 'delete' => t('Delete'), - ); - - $filer = (($profile_owner == local_user()) ? t("save to folder") : false); - - $diff_author = ((link_compare($item['url'],$item['author-link'])) ? false : true); - $profile_name = (((strlen($item['author-name'])) && $diff_author) ? $item['author-name'] : $item['name']); - if($item['author-link'] && (! $item['author-name'])) - $profile_name = $item['author-link']; - - $sp = false; - $profile_link = best_link_url($item,$sp); - if($profile_link === 'mailbox') - $profile_link = ''; - if($sp) - $sparkle = ' sparkle'; - else - $profile_link = zrl($profile_link); - - $normalised = normalise_link((strlen($item['author-link'])) ? $item['author-link'] : $item['url']); - if(($normalised != 'mailbox') && (x($a->contacts,$normalised))) - $profile_avatar = $a->contacts[$normalised]['thumb']; - else - $profile_avatar = (((strlen($item['author-avatar'])) && $diff_author) ? $item['author-avatar'] : $a->get_cached_avatar_image($thumb)); - - $locate = array('location' => $item['location'], 'coord' => $item['coord'], 'html' => ''); - call_hooks('render_location',$locate); - $location = ((strlen($locate['html'])) ? $locate['html'] : render_location_google($locate)); - - $tags=array(); - foreach(explode(',',$item['tag']) as $tag){ - $tag = trim($tag); - if ($tag!="") $tags[] = bbcode($tag); - } - - $like = ((x($alike,$item['uri'])) ? format_like($alike[$item['uri']],$alike[$item['uri'] . '-l'],'like',$item['uri']) : ''); - $dislike = ((x($dlike,$item['uri'])) ? format_like($dlike[$item['uri']],$dlike[$item['uri'] . '-l'],'dislike',$item['uri']) : ''); - - if($toplevelpost) { - if((! $item['self']) && ($mode !== 'profile')) { - if($item['wall']) { - - // On the network page, I am the owner. On the display page it will be the profile owner. - // This will have been stored in $a->page_contact by our calling page. - // Put this person as the wall owner of the wall-to-wall notice. - - $owner_url = zrl($a->page_contact['url']); - $owner_photo = $a->page_contact['thumb']; - $owner_name = $a->page_contact['name']; - $template = $wallwall_template; - $commentww = 'ww'; - } - else if($item['owner-link']) { - - $owner_linkmatch = (($item['owner-link']) && link_compare($item['owner-link'],$item['author-link'])); - $alias_linkmatch = (($item['alias']) && link_compare($item['alias'],$item['author-link'])); - $owner_namematch = (($item['owner-name']) && $item['owner-name'] == $item['author-name']); - if((! $owner_linkmatch) && (! $alias_linkmatch) && (! $owner_namematch)) { - - // The author url doesn't match the owner (typically the contact) - // and also doesn't match the contact alias. - // The name match is a hack to catch several weird cases where URLs are - // all over the park. It can be tricked, but this prevents you from - // seeing "Bob Smith to Bob Smith via Wall-to-wall" and you know darn - // well that it's the same Bob Smith. - - // But it could be somebody else with the same name. It just isn't highly likely. - - - $owner_url = $item['owner-link']; - $owner_photo = $item['owner-avatar']; - $owner_name = $item['owner-name']; - $template = $wallwall_template; - $commentww = 'ww'; - // If it is our contact, use a friendly redirect link - if((link_compare($item['owner-link'],$item['url'])) - && ($item['network'] === NETWORK_DFRN)) { - $owner_url = $redirect_url; - $osparkle = ' sparkle'; - } - else - $owner_url = zrl($owner_url); - } - } - } - if($profile_owner == local_user()) { - $isstarred = (($item['starred']) ? "starred" : "unstarred"); - - $star = array( - 'do' => t("add star"), - 'undo' => t("remove star"), - 'toggle' => t("toggle star status"), - 'classdo' => (($item['starred']) ? "hidden" : ""), - 'classundo' => (($item['starred']) ? "" : "hidden"), - 'starred' => t('starred'), - 'tagger' => t("add tag"), - 'classtagger' => "", - ); - } - } else { - $indent = 'comment'; - // Collapse comments - if(($nb_items > 2) || ($thread_level > 2)) { - if($items_seen == 1) { - $firstcollapsed = true; - } - if($thread_level > 2) { - if($items_seen == $nb_items) - $lastcollapsed = true; - } - else if($items_seen == ($nb_items - 2)) { - $lastcollapsed = true; - } - } - } - - if(intval(get_config('system','thread_allow')) && $a->theme_thread_allow) { - $comments_threaded = true; - } - else { - $comments_threaded = false; - } - - if($page_writeable) { - $buttons = array( - 'like' => array( t("I like this \x28toggle\x29"), t("like")), - 'dislike' => array( t("I don't like this \x28toggle\x29"), t("dislike")), - ); - if ($shareable) $buttons['share'] = array( t('Share this'), t('share')); - - - if($show_comment_box) { - $qc = $qcomment = null; - - if(in_array('qcomment',$a->plugins)) { - $qc = ((local_user()) ? get_pconfig(local_user(),'qcomment','words') : null); - $qcomment = (($qc) ? explode("\n",$qc) : null); - } - $comment = replace_macros($cmnt_tpl,array( - '$return_path' => '', - '$threaded' => $comments_threaded, - '$jsreload' => (($mode === 'display') ? $_SESSION['return_url'] : ''), - '$type' => (($mode === 'profile') ? 'wall-comment' : 'net-comment'), - '$id' => $item['item_id'], - '$parent' => $item['item_id'], - '$qcomment' => $qcomment, - '$profile_uid' => $profile_owner, - '$mylink' => $a->contact['url'], - '$mytitle' => t('This is you'), - '$myphoto' => $a->contact['thumb'], - '$comment' => t('Comment'), - '$submit' => t('Submit'), - '$edbold' => t('Bold'), - '$editalic' => t('Italic'), - '$eduline' => t('Underline'), - '$edquote' => t('Quote'), - '$edcode' => t('Code'), - '$edimg' => t('Image'), - '$edurl' => t('Link'), - '$edvideo' => t('Video'), - '$preview' => t('Preview'), - '$indent' => $indent, - '$sourceapp' => t($a->sourcename), - '$ww' => (($mode === 'network') ? $commentww : '') - )); - } - } - - if(strcmp(datetime_convert('UTC','UTC',$item['created']),datetime_convert('UTC','UTC','now - 12 hours')) > 0) - $indent .= ' shiny'; - - localize_item($item); - - $body = prepare_body($item,true); - - $tmp_item = array( - // collapse comments in template. I don't like this much... - 'comment_firstcollapsed' => $firstcollapsed, - 'comment_lastcollapsed' => $lastcollapsed, - // template to use to render item (wall, walltowall, search) - 'template' => $template, - - 'type' => implode("",array_slice(explode("/",$item['verb']),-1)), - 'tags' => $tags, - 'body' => template_escape($body), - 'text' => strip_tags(template_escape($body)), - 'id' => $item['item_id'], - 'linktitle' => sprintf( t('View %s\'s profile @ %s'), $profile_name, ((strlen($item['author-link'])) ? $item['author-link'] : $item['url'])), - 'olinktitle' => sprintf( t('View %s\'s profile @ %s'), $owner_name, ((strlen($item['owner-link'])) ? $item['owner-link'] : $item['url'])), - 'to' => t('to'), - 'wall' => t('Wall-to-Wall'), - 'vwall' => t('via Wall-To-Wall:'), - 'profile_url' => $profile_link, - 'item_photo_menu' => item_photo_menu($item), - 'name' => template_escape($profile_name), - 'thumb' => $profile_avatar, - 'osparkle' => $osparkle, - 'sparkle' => $sparkle, - 'title' => template_escape($item['title']), - 'localtime' => datetime_convert('UTC', date_default_timezone_get(), $item['created'], 'r'), - - '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' => $indent, - 'owner_url' => $owner_url, - 'owner_photo' => $owner_photo, - 'owner_name' => template_escape($owner_name), - 'plink' => get_plink($item), - 'edpost' => $edpost, - 'isstarred' => $isstarred, - 'star' => $star, - 'filer' => $filer, - 'drop' => $drop, - 'vote' => $buttons, - 'like' => $like, - 'dislike' => $dislike, - 'comment' => $comment, - 'previewing' => $previewing, - 'wait' => t('Please wait'), - 'thread_level' => $thread_level, - ); - - $arr = array('item' => $item, 'output' => $tmp_item); - call_hooks('display_item', $arr); - - $item_result = $arr['output']; - if($firstcollapsed) { - $item_result['num_comments'] = sprintf( tt('%d comment','%d comments',$total_children),$total_children ); - $item_result['hide_text'] = t('show more'); - } - - $item_result['children'] = array(); - if(count($item['children'])) { - $item_result['children'] = prepare_threads_body($a, $item['children'], $cmnt_tpl, $page_writeable, $mode, $profile_owner, $alike, $dlike, $previewing, ($thread_level + 1)); - } - $item_result['private'] = $item['private']; - $item_result['toplevel'] = ($toplevelpost ? 'toplevel_item' : ''); - - /* - * I don't like this very much... - */ - if(get_config('system','thread_allow') && $a->theme_thread_allow) { - $item_result['flatten'] = false; - $item_result['threaded'] = true; - } - else { - $item_result['flatten'] = true; - $item_result['threaded'] = false; - if(!$toplevelpost) { - $item_result['comment'] = false; - } - } - - $result[] = $item_result; - } - - return $result; + return true; } + /** * "Render" a conversation or list of items for HTML display. * There are two major forms of display: @@ -762,8 +419,6 @@ function conversation(&$a, $items, $mode, $update, $preview = false) { $items = $cb['items']; $cmnt_tpl = get_markup_template('comment_item.tpl'); - $tpl = 'wall_item.tpl'; - $wallwall = 'wallwall_item.tpl'; $hide_comments_tpl = get_markup_template('hide_comments.tpl'); $alike = array(); @@ -783,7 +438,7 @@ function conversation(&$a, $items, $mode, $update, $preview = false) { // "New Item View" on network page or search page results // - just loop through the items and format them minimally for display - //$tpl = get_markup_template('search_item.tpl'); +// $tpl = get_markup_template('search_item.tpl'); $tpl = 'search_item.tpl'; foreach($items as $item) { @@ -814,6 +469,21 @@ function conversation(&$a, $items, $mode, $update, $preview = false) { + $tags=array(); + $hashtags = array(); + $mentions = array(); + foreach(explode(',',$item['tag']) as $tag){ + $tag = trim($tag); + if ($tag!="") { + $t = bbcode($tag); + $tags[] = $t; + if($t[0] == '#') + $hashtags[] = $t; + elseif($t[0] == '@') + $mentions[] = $t; + } + } + $sp = false; $profile_link = best_link_url($item,$sp); if($profile_link === 'mailbox') @@ -843,6 +513,7 @@ function conversation(&$a, $items, $mode, $update, $preview = false) { $drop = array( 'dropping' => $dropping, + 'pagedrop' => $page_dropping, 'select' => t('Select'), 'delete' => t('Delete'), ); @@ -856,7 +527,9 @@ function conversation(&$a, $items, $mode, $update, $preview = false) { $body = prepare_body($item,true); - //$tmp_item = replace_macros($tpl,array( + + list($categories, $folders) = get_cats_and_terms($item); + $tmp_item = array( 'template' => $tpl, 'id' => (($preview) ? 'P0' : $item['item_id']), @@ -869,6 +542,15 @@ function conversation(&$a, $items, $mode, $update, $preview = false) { 'thumb' => $profile_avatar, 'title' => template_escape($item['title']), 'body' => template_escape($body), + 'tags' => template_escape($tags), + 'hashtags' => template_escape($hashtags), + 'mentions' => template_escape($mentions), + 'txt_cats' => t('Categories:'), + 'txt_folders' => t('Filed under:'), + 'has_cats' => ((count($categories)) ? 'true' : ''), + 'has_folders' => ((count($folders)) ? 'true' : ''), + 'categories' => $categories, + 'folders' => $folders, 'text' => strip_tags(template_escape($body)), 'localtime' => datetime_convert('UTC', date_default_timezone_get(), $item['created'], 'r'), 'ago' => (($item['app']) ? sprintf( t('%s from %s'),relative_date($item['created']),$item['app']) : relative_date($item['created'])), @@ -926,10 +608,12 @@ function conversation(&$a, $items, $mode, $update, $preview = false) { if($item['network'] === NETWORK_MAIL && local_user() != $item['uid']) { continue; } - if($item['verb'] === ACTIVITY_LIKE || $item['verb'] === ACTIVITY_DISLIKE) { + if(! visible_activity($item)) { continue; } + $item['pagedrop'] = $page_dropping; + if($item['id'] == $item['parent']) { $item_object = new Item($item); $conv->add_thread($item_object); @@ -946,6 +630,7 @@ function conversation(&$a, $items, $mode, $update, $preview = false) { $o = replace_macros($page_template, array( '$baseurl' => $a->get_baseurl($ssl_state), + '$remove' => t('remove'), '$mode' => $mode, '$user' => $a->user, '$threads' => $threads, @@ -996,6 +681,7 @@ function item_photo_menu($item){ if(! count($a->contacts)) load_contact_links(local_user()); } + $sub_link=""; $poke_link=""; $contact_url=""; $pm_url=""; @@ -1003,6 +689,10 @@ function item_photo_menu($item){ $photos_link=""; $posts_link=""; + if((local_user()) && local_user() == $item['uid'] && $item['parent'] == $item['id'] && (! $item['self'])) { + $sub_link = 'javascript:dosubthread(' . $item['id'] . '); return false;'; + } + $sparkle = false; $profile_link = best_link_url($item,$sparkle,$ssl_state); if($profile_link === 'mailbox') @@ -1043,6 +733,7 @@ function item_photo_menu($item){ } $menu = Array( + t("Follow Thread") => $sub_link, t("View Status") => $status_link, t("View Profile") => $profile_link, t("View Photos") => $photos_link, @@ -1061,7 +752,11 @@ function item_photo_menu($item){ $o = ""; foreach($menu as $k=>$v){ - if ($v!="") $o .= "
  • $k
  • \n"; + if(strpos($v,'javascript:') === 0) { + $v = substr($v,11); + $o .= "
  • $k
  • \n"; + } + elseif ($v!="") $o .= "
  • $k
  • \n"; } return $o; }} @@ -1250,6 +945,7 @@ function status_editor($a,$x, $notes_cid = 0, $popup=false) { '$profile_uid' => $x['profile_uid'], '$preview' => t('Preview'), '$sourceapp' => t($a->sourcename), + '$cancel' => t('Cancel') )); diff --git a/include/diaspora.php b/include/diaspora.php index baee0420ba..497bc7f39f 100755 --- a/include/diaspora.php +++ b/include/diaspora.php @@ -2061,11 +2061,20 @@ function diaspora_profile($importer,$xml,$msg) { $image_url = unxmlify($xml->image_url); $birthday = unxmlify($xml->birthday); - $r = q("SELECT DISTINCT ( `resource-id` ) FROM `photo` WHERE `uid` = %d AND `contact-id` = %d AND `album` = 'Contact Photos' ", + + $handle_parts = explode("@", $diaspora_handle); + if($name === '') { + $name = $handle_parts[0]; + } + if(strpos($image_url, $handle_parts[1]) === false) { + $image_url = "http://" . $handle_parts[1] . $image_url; + } + +/* $r = q("SELECT DISTINCT ( `resource-id` ) FROM `photo` WHERE `uid` = %d AND `contact-id` = %d AND `album` = 'Contact Photos' ", intval($importer['uid']), intval($contact['id']) ); - $oldphotos = ((count($r)) ? $r : null); + $oldphotos = ((count($r)) ? $r : null);*/ require_once('include/Photo.php'); @@ -2098,7 +2107,7 @@ function diaspora_profile($importer,$xml,$msg) { intval($importer['uid']) ); - if($r) { +/* if($r) { if($oldphotos) { foreach($oldphotos as $ph) { q("DELETE FROM `photo` WHERE `uid` = %d AND `contact-id` = %d AND `album` = 'Contact Photos' AND `resource-id` = '%s' ", @@ -2108,7 +2117,7 @@ function diaspora_profile($importer,$xml,$msg) { ); } } - } + } */ return; diff --git a/include/items.php b/include/items.php index f70e96fcbe..06ff8f2894 100755 --- a/include/items.php +++ b/include/items.php @@ -1186,7 +1186,7 @@ function tag_deliver($uid,$item_id) { // use a local photo if we have one - $r = q("select thumb from contact where uid = %d and nurl = '%s' limit 1", + $r = q("select * from contact where uid = %d and nurl = '%s' limit 1", intval($u[0]['uid']), dbesc(normalise_link($item['author-link'])) ); @@ -1210,6 +1210,11 @@ function tag_deliver($uid,$item_id) { 'otype' => 'item' )); + + $arr = array('item' => $item, 'user' => $u[0], 'contact' => $r[0]); + + call_hooks('tagged', $arr); + if((! $community_page) && (! $prvgroup)) return; diff --git a/include/onepoll.php b/include/onepoll.php index 09e7bb7638..4ca60a2fd0 100644 --- a/include/onepoll.php +++ b/include/onepoll.php @@ -275,7 +275,7 @@ function onepoll_run($argv, $argc){ openssl_private_decrypt(hex2bin($mailconf[0]['pass']),$password,$x[0]['prvkey']); $mbox = email_connect($mailbox,$mailconf[0]['user'],$password); unset($password); - logger("Mail: Connect"); + logger("Mail: Connect to " . $mailconf[0]['user']); if($mbox) { q("UPDATE `mailacct` SET `last_check` = '%s' WHERE `id` = %d AND `uid` = %d LIMIT 1", dbesc(datetime_convert()), @@ -289,7 +289,7 @@ function onepoll_run($argv, $argc){ $msgs = email_poll($mbox,$contact['addr']); if(count($msgs)) { - logger("Mail: Parsing ".count($msgs)." mails.", LOGGER_DEBUG); + logger("Mail: Parsing ".count($msgs)." mails for ".$mailconf[0]['user'], LOGGER_DEBUG); foreach($msgs as $msg_uid) { logger("Mail: Parsing mail ".$msg_uid, LOGGER_DATA); @@ -339,15 +339,15 @@ function onepoll_run($argv, $argc){ case 0: break; case 1: - logger("Mail: Deleting ".$msg_uid); + logger("Mail: Deleting ".$msg_uid." for ".$mailconf[0]['user']); imap_delete($mbox, $msg_uid, FT_UID); break; case 2: - logger("Mail: Mark as seen ".$msg_uid); + logger("Mail: Mark as seen ".$msg_uid." for ".$mailconf[0]['user']); imap_setflag_full($mbox, $msg_uid, "\\Seen", ST_UID); break; case 3: - logger("Mail: Moving ".$msg_uid." to ".$mailconf[0]['movetofolder']); + logger("Mail: Moving ".$msg_uid." to ".$mailconf[0]['movetofolder']." for ".$mailconf[0]['user']); imap_setflag_full($mbox, $msg_uid, "\\Seen", ST_UID); if ($mailconf[0]['movetofolder'] != "") imap_mail_move($mbox, $msg_uid, $mailconf[0]['movetofolder'], FT_UID); @@ -377,12 +377,12 @@ function onepoll_run($argv, $argc){ $r = email_get_msg($mbox,$msg_uid, $reply); if(! $r) { - logger("Mail: can't fetch msg ".$msg_uid); + logger("Mail: can't fetch msg ".$msg_uid." for ".$mailconf[0]['user']); continue; } $datarray['body'] = escape_tags($r['body']); - logger("Mail: Importing ".$msg_uid); + logger("Mail: Importing ".$msg_uid." for ".$mailconf[0]['user']); // some mailing lists have the original author as 'from' - add this sender info to msg body. // todo: adding a gravatar for the original author would be cool @@ -423,15 +423,15 @@ function onepoll_run($argv, $argc){ case 0: break; case 1: - logger("Mail: Deleting ".$msg_uid); + logger("Mail: Deleting ".$msg_uid." for ".$mailconf[0]['user']); imap_delete($mbox, $msg_uid, FT_UID); break; case 2: - logger("Mail: Mark as seen ".$msg_uid); + logger("Mail: Mark as seen ".$msg_uid." for ".$mailconf[0]['user']); imap_setflag_full($mbox, $msg_uid, "\\Seen", ST_UID); break; case 3: - logger("Mail: Moving ".$msg_uid." to ".$mailconf[0]['movetofolder']); + logger("Mail: Moving ".$msg_uid." to ".$mailconf[0]['movetofolder']." for ".$mailconf[0]['user']); imap_setflag_full($mbox, $msg_uid, "\\Seen", ST_UID); if ($mailconf[0]['movetofolder'] != "") imap_mail_move($mbox, $msg_uid, $mailconf[0]['movetofolder'], FT_UID); diff --git a/include/plugin.php b/include/plugin.php index 3eeb0ccaa8..db3224f296 100644 --- a/include/plugin.php +++ b/include/plugin.php @@ -9,9 +9,6 @@ function uninstall_plugin($plugin){ dbesc($plugin) ); - // define THISPLUGIN, make life easy to plugin devs :-) - define("THISPLUGIN", 'addon/' . $plugin . '/' . $plugin . '.php'); - @include_once('addon/' . $plugin . '/' . $plugin . '.php'); if(function_exists($plugin . '_uninstall')) { $func = $plugin . '_uninstall'; @@ -23,9 +20,6 @@ if (! function_exists('install_plugin')){ function install_plugin($plugin) { // silently fail if plugin was removed - // define THISPLUGIN, make life easy to plugin devs :-) - define("THISPLUGIN", 'addon/' . $plugin . '/' . $plugin . '.php'); - if(! file_exists('addon/' . $plugin . '/' . $plugin . '.php')) return false; logger("Addons: installing " . $plugin); @@ -83,9 +77,6 @@ function reload_plugins() { $fname = 'addon/' . $pl . '/' . $pl . '.php'; - // define THISPLUGIN, make life easy to plugin devs :-) - define("THISPLUGIN", $fname); - if(file_exists($fname)) { $t = @filemtime($fname); foreach($installed as $i) { @@ -171,8 +162,6 @@ function call_hooks($name, &$data = null) { if((is_array($a->hooks)) && (array_key_exists($name,$a->hooks))) { foreach($a->hooks[$name] as $hook) { - // define THISPLUGIN, make life easy to plugin devs :-) - define("THISPLUGIN", $hook[0]); @include_once($hook[0]); if(function_exists($hook[1])) { $func = $hook[1]; diff --git a/include/text.php b/include/text.php index c1e01343a8..23e3e50611 100644 --- a/include/text.php +++ b/include/text.php @@ -1016,35 +1016,8 @@ function prepare_body($item,$attach = false) { } $s .= '
    '; } - $matches = false; - $cnt = preg_match_all('/<(.*?)>/',$item['file'],$matches,PREG_SET_ORDER); - if($cnt) { -// logger('prepare_text: categories: ' . print_r($matches,true), LOGGER_DEBUG); - foreach($matches as $mtch) { - if(strlen($x)) - $x .= ','; - $x .= xmlify(file_tag_decode($mtch[1])) - . ((local_user() == $item['uid']) ? ' ' . t('[remove]') . '' : ''); - } - if(strlen($x)) - $s .= '
    ' . t('Categories:') . ' ' . $x . '
    '; - } - $matches = false; - $x = ''; - $cnt = preg_match_all('/\[(.*?)\]/',$item['file'],$matches,PREG_SET_ORDER); - if($cnt) { -// logger('prepare_text: filed_under: ' . print_r($matches,true), LOGGER_DEBUG); - foreach($matches as $mtch) { - if(strlen($x)) - $x .= '   '; - $x .= xmlify(file_tag_decode($mtch[1])) . ' ' . t('[remove]') . ''; - } - if(strlen($x) && (local_user() == $item['uid'])) - $s .= '
    ' . t('Filed under:') . ' ' . $x . '
    '; - } - // Look for spoiler $spoilersearch = '
    '; @@ -1098,6 +1071,73 @@ function prepare_text($text) { }} +/** + * returns + * [ + * //categories [ + * { + * 'name': 'category name', + * 'removeurl': 'url to remove this category', + * 'first': 'is the first in this array? true/false', + * 'last': 'is the last in this array? true/false', + * } , + * .... + * ], + * // folders [ + * 'name': 'folder name', + * 'removeurl': 'url to remove this folder', + * 'first': 'is the first in this array? true/false', + * 'last': 'is the last in this array? true/false', + * } , + * .... + * ] + * ] + */ +function get_cats_and_terms($item) { + $a = get_app(); + $categories = array(); + $folders = array(); + + $matches = false; $first = true; + $cnt = preg_match_all('/<(.*?)>/',$item['file'],$matches,PREG_SET_ORDER); + if($cnt) { + foreach($matches as $mtch) { + $categories[] = array( + 'name' => xmlify(file_tag_decode($mtch[1])), + 'url' => "#", + 'removeurl' => ((local_user() == $item['uid'])?$a->get_baseurl() . '/filerm/' . $item['id'] . '?f=&cat=' . xmlify(file_tag_decode($mtch[1])):""), + 'first' => $first, + 'last' => false + ); + $first = false; + } + } + if (count($categories)) $categories[count($categories)-1]['last'] = true; + + + if(local_user() == $item['uid']) { + $matches = false; $first = true; + $cnt = preg_match_all('/\[(.*?)\]/',$item['file'],$matches,PREG_SET_ORDER); + if($cnt) { + foreach($matches as $mtch) { + $folders[] = array( + 'name' => xmlify(file_tag_decode($mtch[1])), + 'url' => "#", + 'removeurl' => ((local_user() == $item['uid'])?$a->get_baseurl() . '/filerm/' . $item['id'] . '?f=&term=' . xmlify(file_tag_decode($mtch[1])):""), + 'first' => $first, + 'last' => false + ); + $first = false; + } + } + } + + if (count($folders)) $folders[count($folders)-1]['last'] = true; + + return array($categories, $folders); +} + + /** * return atom link elements for all of our hubs */ diff --git a/include/user.php b/include/user.php index 2d06ef3742..282bbdbba2 100644 --- a/include/user.php +++ b/include/user.php @@ -277,18 +277,24 @@ function create_user($arr) { require_once('include/group.php'); group_add($newuid, t('Friends')); - if(! get_config('system', 'newuser_public')) { - $r = q("SELECT id FROM `group` WHERE uid = %d AND name = '%s'", - intval($newuid), - dbesc(t('Friends')) + $r = q("SELECT id FROM `group` WHERE uid = %d AND name = '%s'", + intval($newuid), + dbesc(t('Friends')) + ); + if($r && count($r)) { + $def_gid = $r[0]['id']; + + q("UPDATE user SET def_gid = %d WHERE uid = %d", + intval($r[0]['id']), + intval($newuid) + ); + } + + if(get_config('system', 'newuser_private') && $def_gid) { + q("UPDATE user SET allow_gid = '%s' WHERE uid = %d", + dbesc("<" . $def_gid . ">"), + intval($newuid) ); - if($r) { - q("UPDATE user SET def_gid = %d, allow_gid = '%s' WHERE uid = %d", - intval($r[0]['id']), - dbesc("<" . $r[0]['id'] . ">"), - intval($newuid) - ); - } } } diff --git a/js/country.js b/js/country.js index 1494dad2e4..96165409a4 100644 --- a/js/country.js +++ b/js/country.js @@ -275,7 +275,7 @@ aStates[249]="|'Adan|'Ataq|Abyan|Al Bayda'|Al Hudaydah|Al Jawf|Al Mahrah|Al Mahw aStates[250]="|Kosovo|Montenegro|Serbia|Vojvodina"; aStates[251]="|Central|Copperbelt|Eastern|Luapula|Lusaka|North-Western|Northern|Southern|Western"; aStates[252]="|Bulawayo|Harare|ManicalandMashonaland Central|Mashonaland East|Mashonaland West|Masvingo|Matabeleland North|Matabeleland South|Midlands"; -aStates[253]="|Self Hosted|Private Server|Architects Of Sleep|DFRN|Distributed Friend Network|ErrLock|Free-Beer.ch|Foojbook|Free-Haven|Friendica.eu|Friendika.me.4.it|Friendika - I Ask Questions|Frndc.com|Hikado|Hipatia|Hungerfreunde|Kaluguran Community|Kak Ste|Karl.Markx.pm|Loozah Social Club|MyFriendica.net|MyFriendNetwork|Oi!|OpenMindSpace|Optimistisch|Recolutionari.es|SilverLips|Sparkling Network|SPRACI|Styliztique|Sysfu Social Club|Trevena|theshi.re|Tumpambae|Uzmiac|Other"; +aStates[253]="|Self Hosted|Private Server|Architects Of Sleep|DFRN|Distributed Friend Network|ErrLock|Free-Beer.ch|Foojbook|Free-Haven|Friendica.eu|Friendika.me.4.it|Friendika - I Ask Questions|Frndc.com|Hikado|Hipatia|Hungerfreunde|Kaluguran Community|Kak Ste|Karl.Markx.pm|Loozah Social Club|MyFriendica.net|MyFriendNetwork|Oi!|OpenMindSpace|Optimistisch|Pplsnet|Recolutionari.es|SilverLips|Sparkling Network|SPRACI|Styliztique|Sysfu Social Club|Trevena|theshi.re|Tumpambae|Uzmiac|Other"; /* * gArCountryInfo * (0) Country name diff --git a/js/main.js b/js/main.js index 6ab574c4e8..bd6dfc8520 100644 --- a/js/main.js +++ b/js/main.js @@ -144,6 +144,29 @@ if(mail == 0) { mail = ''; $('#mail-update-li').removeClass('show') } else { $('#mail-update-li').addClass('show') } $('#mail-update-li').html(mail); + + var allevents = $(data).find('all-events').text(); + if(allevents == 0) { allevents = ''; $('#allevents-update').removeClass('show') } else { $('#allevents-update').addClass('show') } + $('#allevents-update').html(allevents); + + var alleventstoday = $(data).find('all-events-today').text(); + if(alleventstoday == 0) { $('#allevents-update').removeClass('notif-allevents-today') } else { $('#allevents-update').addClass('notif-allevents-today') } + + var events = $(data).find('events').text(); + if(events == 0) { events = ''; $('#events-update').removeClass('show') } else { $('#events-update').addClass('show') } + $('#events-update').html(events); + + var eventstoday = $(data).find('events-today').text(); + if(eventstoday == 0) { $('#events-update').removeClass('notif-events-today') } else { $('#events-update').addClass('notif-events-today') } + + var birthdays = $(data).find('birthdays').text(); + if(birthdays == 0) {birthdays = ''; $('#birthdays-update').removeClass('show') } else { $('#birthdays-update').addClass('show') } + $('#birthdays-update').html(birthdays); + + var birthdaystoday = $(data).find('birthdays-today').text(); + if(birthdaystoday == 0) { $('#birthdays-update').removeClass('notif-birthdays-today') } else { $('#birthdays-update').addClass('notif-birthdays-today') } + + var eNotif = $(data).find('notif') if (eNotif.children("note").length==0){ @@ -357,11 +380,17 @@ unpause(); $('#like-rotator-' + ident.toString()).show(); $.get('like/' + ident.toString() + '?verb=' + verb, NavUpdate ); -// if(timer) clearTimeout(timer); -// timer = setTimeout(NavUpdate,3000); liking = 1; } + function dosubthread(ident) { + unpause(); + $('#like-rotator-' + ident.toString()).show(); + $.get('subthread/' + ident.toString(), NavUpdate ); + liking = 1; + } + + function dostar(ident) { ident = ident.toString(); $('#like-rotator-' + ident).show(); diff --git a/library/HTML5/TreeBuilder.php b/library/HTML5/TreeBuilder.php index 578e73682b..2a789f4df9 100644 --- a/library/HTML5/TreeBuilder.php +++ b/library/HTML5/TreeBuilder.php @@ -158,6 +158,8 @@ class HTML5_TreeBuilder { if ($this->ignore_lf_token) $this->ignore_lf_token--; $this->ignored = false; + + $token['name'] = str_replace(':', '-', $token['name']); // indenting is a little wonky, this can be changed later on switch ($mode) { @@ -1429,7 +1431,7 @@ class HTML5_TreeBuilder { case 'tbody': case 'td': case 'tfoot': case 'th': case 'thead': case 'tr': // parse error break; - + /* A start tag token not covered by the previous entries */ default: /* Reconstruct the active formatting elements, if any. */ @@ -3038,7 +3040,7 @@ class HTML5_TreeBuilder { private function insertElement($token, $append = true) { $el = $this->dom->createElementNS(self::NS_HTML, $token['name']); - + if (!empty($token['attr'])) { foreach($token['attr'] as $attr) { diff --git a/mod/admin.php b/mod/admin.php index db4d4cff25..ee04830548 100644 --- a/mod/admin.php +++ b/mod/admin.php @@ -254,7 +254,7 @@ function admin_page_site_post(&$a){ $force_publish = ((x($_POST,'publish_all')) ? True : False); $global_directory = ((x($_POST,'directory_submit_url')) ? notags(trim($_POST['directory_submit_url'])) : ''); $thread_allow = ((x($_POST,'thread_allow')) ? True : False); - $newuser_public = ((x($_POST,'newuser_public')) ? True : False); + $newuser_private = ((x($_POST,'newuser_private')) ? True : False); $no_multi_reg = ((x($_POST,'no_multi_reg')) ? True : False); $no_openid = !((x($_POST,'no_openid')) ? True : False); $no_regfullname = !((x($_POST,'no_regfullname')) ? True : False); @@ -355,7 +355,7 @@ function admin_page_site_post(&$a){ set_config('system','directory_submit_url', $global_directory); } set_config('system','thread_allow', $thread_allow); - set_config('system','newuser_public', $newuser_public); + set_config('system','newuser_private', $newuser_private); set_config('system','block_extended_register', $no_multi_reg); set_config('system','no_openid', $no_openid); @@ -467,14 +467,14 @@ function admin_page_site(&$a) { '$force_publish' => array('publish_all', t("Force publish"), get_config('system','publish_all'), t("Check to force all profiles on this site to be listed in the site directory.")), '$global_directory' => array('directory_submit_url', t("Global directory update URL"), get_config('system','directory_submit_url'), t("URL to update the global directory. If this is not set, the global directory is completely unavailable to the application.")), '$thread_allow' => array('thread_allow', t("Allow threaded items"), get_config('system','thread_allow'), t("Allow infinite level threading for items on this site.")), - '$newuser_public' => array('newuser_public', t("No default permissions for new users"), get_config('system','newuser_public'), t("New users will have no private permissions set for their posts by default, making their posts public until they change it.")), + '$newuser_private' => array('newuser_private', t("Private posts by default for new users"), get_config('system','newuser_private'), t("Set default post permissions for all new members to the default privacy group rather than public.")), '$no_multi_reg' => array('no_multi_reg', t("Block multiple registrations"), get_config('system','block_extended_register'), t("Disallow users to register additional accounts for use as pages.")), '$no_openid' => array('no_openid', t("OpenID support"), !get_config('system','no_openid'), t("OpenID support for registration and logins.")), '$no_regfullname' => array('no_regfullname', t("Fullname check"), !get_config('system','no_regfullname'), t("Force users to register with a space between firstname and lastname in Full name, as an antispam measure")), '$no_utf' => array('no_utf', t("UTF-8 Regular expressions"), !get_config('system','no_utf'), t("Use PHP UTF8 regular expressions")), '$no_community_page' => array('no_community_page', t("Show Community Page"), !get_config('system','no_community_page'), t("Display a Community page showing all recent public postings on this site.")), - '$ostatus_disabled' => array('ostatus_disabled', t("Enable OStatus support"), !get_config('system','ostatus_disable'), t("Provide built-in OStatus \x28identi.ca, status.net, etc.\x29 compatibility. All communications in OStatus are public, so privacy warnings will be occasionally displayed.")), + '$ostatus_disabled' => array('ostatus_disabled', t("Enable OStatus support"), !get_config('system','ostatus_disabled'), t("Provide built-in OStatus \x28identi.ca, status.net, etc.\x29 compatibility. All communications in OStatus are public, so privacy warnings will be occasionally displayed.")), '$diaspora_enabled' => array('diaspora_enabled', t("Enable Diaspora support"), get_config('system','diaspora_enabled'), t("Provide built-in Diaspora network compatibility.")), '$dfrn_only' => array('dfrn_only', t('Only allow Friendica contacts'), get_config('system','dfrn_only'), t("All contacts must use Friendica protocols. All other built-in communication protocols disabled.")), '$verifyssl' => array('verifyssl', t("Verify SSL"), get_config('system','verifyssl'), t("If you wish, you can turn on strict certificate checking. This will mean you cannot connect (at all) to self-signed SSL sites.")), @@ -664,6 +664,7 @@ function admin_page_users(&$a){ ); function _setup_users($e){ + $a = get_app(); $accounts = Array( t('Normal Account'), t('Soapbox Account'), @@ -674,6 +675,7 @@ function admin_page_users(&$a){ $e['register_date'] = relative_date($e['register_date']); $e['login_date'] = relative_date($e['login_date']); $e['lastitem_date'] = relative_date($e['lastitem_date']); + $e['is_admin'] = ($e['email'] === $a->config['admin_email']); return $e; } $users = array_map("_setup_users", $users); @@ -694,6 +696,7 @@ function admin_page_users(&$a){ '$delete' => t('Delete'), '$block' => t('Block'), '$unblock' => t('Unblock'), + '$siteadmin' => t('Site admin'), '$h_users' => t('Users'), '$th_users' => array( t('Name'), t('Email'), t('Register date'), t('Last login'), t('Last item'), t('Account') ), diff --git a/mod/content.php b/mod/content.php index e6789860db..d827b5b57b 100644 --- a/mod/content.php +++ b/mod/content.php @@ -584,6 +584,8 @@ function render_content(&$a, $items, $mode, $update, $preview = false) { if (!$comments_collapsed){ $threads[$threadsid]['num_comments'] = sprintf( tt('%d comment','%d comments',$comments[$item['parent']]),$comments[$item['parent']] ); + $threads[$threadsid]['hidden_comments_num'] = $comments[$item['parent']]; + $threads[$threadsid]['hidden_comments_text'] = tt('comment', 'comments', $comments[$item['parent']]); $threads[$threadsid]['hide_text'] = t('show more'); $comments_collapsed = true; $comment_firstcollapsed = true; diff --git a/mod/editpost.php b/mod/editpost.php index b44afe245f..03d5263a1d 100644 --- a/mod/editpost.php +++ b/mod/editpost.php @@ -133,6 +133,7 @@ function editpost_content(&$a) { '$preview' => t('Preview'), '$jotplugins' => $jotplugins, '$sourceapp' => t($a->sourcename), + '$cancel' => t('Cancel') )); return $o; diff --git a/mod/events.php b/mod/events.php index c448dc0f2e..527e1ec3fd 100755 --- a/mod/events.php +++ b/mod/events.php @@ -141,6 +141,20 @@ function events_content(&$a) { return; } + if(($a->argc > 2) && ($a->argv[1] === 'ignore') && intval($a->argv[2])) { + $r = q("update event set ignore = 1 where id = %d and uid = %d limit 1", + intval($a->argv[2]), + intval(local_user()) + ); + } + + if(($a->argc > 2) && ($a->argv[1] === 'unignore') && intval($a->argv[2])) { + $r = q("update event set ignore = 0 where id = %d and uid = %d limit 1", + intval($a->argv[2]), + intval(local_user()) + ); + } + $htpl = get_markup_template('event_head.tpl'); $a->page['htmlhead'] .= replace_macros($htpl,array('$baseurl' => $a->get_baseurl())); @@ -157,6 +171,7 @@ function events_content(&$a) { $mode = 'view'; $y = 0; $m = 0; + $ignored = ((x($_REQUEST,'ignored')) ? intval($_REQUEST['ignored']) : 0); if($a->argc > 1) { if($a->argc > 2 && $a->argv[1] == 'event') { @@ -234,10 +249,11 @@ function events_content(&$a) { } else { $r = q("SELECT `event`.*, `item`.`id` AS `itemid`,`item`.`plink`, `item`.`author-name`, `item`.`author-avatar`, `item`.`author-link` FROM `event` LEFT JOIN `item` ON `item`.`event-id` = `event`.`id` - WHERE `event`.`uid` = %d + WHERE `event`.`uid` = %d and event.ignore = %d AND (( `adjust` = 0 AND `finish` >= '%s' AND `start` <= '%s' ) OR ( `adjust` = 1 AND `finish` >= '%s' AND `start` <= '%s' )) ", intval(local_user()), + intval($ignored), dbesc($start), dbesc($finish), dbesc($adjust_start), diff --git a/mod/fbrowser.php b/mod/fbrowser.php index 3f034226e1..5ee813b4d6 100644 --- a/mod/fbrowser.php +++ b/mod/fbrowser.php @@ -46,7 +46,7 @@ function fbrowser_content($a){ } $r = q("SELECT `resource-id`, `id`, `filename`, type, min(`scale`) AS `hiq`,max(`scale`) AS `loq`, `desc` - FROM `photo` WHERE `uid` = %d $sql_extra + FROM `photo` WHERE `uid` = %d AND (height <= 320 AND width <= 320) $sql_extra GROUP BY `resource-id` $sql_extra2", intval(local_user()) ); diff --git a/mod/item.php b/mod/item.php index 52ea9d58c9..7d36d7f70a 100644 --- a/mod/item.php +++ b/mod/item.php @@ -373,8 +373,8 @@ function item_post(&$a) { $match = null; - if((! $preview) && preg_match_all("/\[img\](.*?)\[\/img\]/",$body,$match)) { - $images = $match[1]; + if((! $preview) && preg_match_all("/\[img([\=0-9x]*?)\](.*?)\[\/img\]/",$body,$match)) { + $images = $match[2]; if(count($images)) { foreach($images as $image) { if(! stristr($image,$a->get_baseurl() . '/photo/')) diff --git a/mod/network.php b/mod/network.php index 97f00eeda9..d77a644126 100644 --- a/mod/network.php +++ b/mod/network.php @@ -471,7 +471,7 @@ function network_content(&$a, $update = 0) { } } - if((! $group) && (! $cid) && (! $update)) { + if((! $group) && (! $cid) && (! $update) && (! get_config('theme','hide_eventlist'))) { $o .= get_birthdays(); $o .= get_events(); } diff --git a/mod/newmember.php b/mod/newmember.php index e17a0db037..8028e7e08d 100644 --- a/mod/newmember.php +++ b/mod/newmember.php @@ -69,7 +69,7 @@ function newmember_content(&$a) { $o .= '
  • ' . '' . t('Group Your Contacts') . '
    ' . t('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.') . '
  • ' . EOL; - if(! get_config('system', 'newuser_public')) { + if(get_config('system', 'newuser_private')) { $o .= '
  • ' . '' . t("Why Aren't My Posts Public?") . '
    ' . t("Friendica respects your privacy. By default, your posts will only show up to people you've added as friends. For more information, see the help section from the link above.") . '
  • ' . EOL; } diff --git a/mod/parse_url.php b/mod/parse_url.php index 083a39b55f..9adee8f65c 100644 --- a/mod/parse_url.php +++ b/mod/parse_url.php @@ -307,16 +307,26 @@ function parse_url_content(&$a) { $image = ""; - if(sizeof($siteinfo["images"]) > 0){ - /* - Execute below code only if image is present in siteinfo - */ - foreach ($siteinfo["images"] as $imagedata) - if($textmode) - $image .= '[img='.$imagedata["width"].'x'.$imagedata["height"].']'.$imagedata["src"].'[/img]'; + if(sizeof($siteinfo["images"]) > 0){ + /* Execute below code only if image is present in siteinfo */ + + $total_images = 0; + $max_images = get_config('system','max_bookmark_images'); + if($max_images === false) + $max_images = 2; else - $image .= 'photo'; + $max_images = intval($max_images); + + foreach ($siteinfo["images"] as $imagedata) { + if($textmode) + $image .= '[img='.$imagedata["width"].'x'.$imagedata["height"].']'.$imagedata["src"].'[/img]' . "\n"; + else + $image .= 'photo
    '; + $total_images ++; + if($max_images && $max_images >= $total_images) + break; } + } if(strlen($text)) { if($textmode) diff --git a/mod/ping.php b/mod/ping.php index 55dcb26bb5..9704fe7005 100644 --- a/mod/ping.php +++ b/mod/ping.php @@ -55,11 +55,12 @@ function ping_init(&$a) { $dislikes = array(); $friends = array(); $posts = array(); + $home = 0; $network = 0; $r = q("SELECT `item`.`id`,`item`.`parent`, `item`.`verb`, `item`.`wall`, `item`.`author-name`, - `item`.`author-link`, `item`.`author-avatar`, `item`.`created`, `item`.`object`, + `item`.`contact-id`, `item`.`author-link`, `item`.`author-avatar`, `item`.`created`, `item`.`object`, `pitem`.`author-name` as `pname`, `pitem`.`author-link` as `plink` FROM `item` INNER JOIN `item` as `pitem` ON `pitem`.`id`=`item`.`parent` WHERE `item`.`unseen` = 1 AND `item`.`visible` = 1 AND @@ -70,6 +71,9 @@ function ping_init(&$a) { if(count($r)) { + $arr = array('items' => $r); + call_hooks('network_ping', $arr); + foreach ($r as $it) { if($it['wall']) @@ -140,6 +144,48 @@ function ping_init(&$a) { $register = "0"; } + $all_events = 0; + $all_events_today = 0; + $events = 0; + $events_today = 0; + $birthdays = 0; + $birthdays_today = 0; + + + $ev = q("SELECT count(`event`.`id`) as total, type, start, adjust FROM `event` + WHERE `event`.`uid` = %d AND `start` < '%s' AND `finish` > '%s' and `ignore` = 0 + ORDER BY `start` ASC ", + intval(local_user()), + dbesc(datetime_convert('UTC','UTC','now + 7 days')), + dbesc(datetime_convert('UTC','UTC','now')) + ); + + if($ev && count($ev)) { + $all_events = intval($ev[0]['total']); + + if($all_events) { + $str_now = datetime_convert('UTC',$a->timezone,'now','Y-m-d'); + foreach($ev as $x) { + $bd = false; + if($x['type'] === 'birthday') { + $birthdays ++; + $bd = true; + } + else { + $events ++; + } + if(datetime_convert('UTC',((intval($x['adjust'])) ? $a->timezone : 'UTC'), $x['start'],'Y-m-d') === $str_now) { + $all_events_today ++; + if($bd) + $birthdays_today ++; + else + $events_today ++; + } + } + } + } + + function xmlize($href, $name, $url, $photo, $date, $seen, $message){ $data = array('href' => &$href, 'name' => &$name, 'url'=>&$url, 'photo'=>&$photo, 'date'=>&$date, 'seen'=>&$seen, 'messsage'=>&$message); @@ -153,8 +199,15 @@ function ping_init(&$a) { echo "$intro $mail $network - $home"; + $home\r\n"; if ($register!=0) echo "$register"; + + echo "$all_events + $all_events_today + $events + $events_today + $birthdays + $birthdays_today\r\n"; $tot = $mail+$intro+$register+count($comments)+count($likes)+count($dislikes)+count($friends)+count($posts)+count($tags); diff --git a/mod/profile.php b/mod/profile.php index a4dce79180..b33b181de1 100644 --- a/mod/profile.php +++ b/mod/profile.php @@ -304,7 +304,7 @@ function profile_content(&$a, $update = 0) { $items = array(); } - if($is_owner && ! $update) { + if($is_owner && (! $update) && (! get_config('theme','hide_eventlist'))) { $o .= get_birthdays(); $o .= get_events(); } diff --git a/mod/register.php b/mod/register.php index 6bf287d424..a8fa100c8f 100644 --- a/mod/register.php +++ b/mod/register.php @@ -247,6 +247,8 @@ function register_content(&$a) { call_hooks('register_form',$arr); + $o = $arr['template']; + $o = replace_macros($o, array( '$oidhtml' => $oidhtml, '$invitations' => get_config('system','invitation_only'), diff --git a/mod/subthread.php b/mod/subthread.php new file mode 100644 index 0000000000..c29a9b87c2 --- /dev/null +++ b/mod/subthread.php @@ -0,0 +1,160 @@ +argc > 1) ? notags(trim($a->argv[1])) : 0); + + $r = q("SELECT * FROM `item` WHERE `parent` = '%s' OR `parent-uri` = '%s' and parent = id LIMIT 1", + dbesc($item_id), + dbesc($item_id) + ); + + if(! $item_id || (! count($r))) { + logger('subthread: no item ' . $item_id); + return; + } + + $item = $r[0]; + + $owner_uid = $item['uid']; + + if(! can_write_wall($a,$owner_uid)) { + return; + } + + $remote_owner = null; + + if(! $item['wall']) { + // The top level post may have been written by somebody on another system + $r = q("SELECT * FROM `contact` WHERE `id` = %d AND `uid` = %d LIMIT 1", + intval($item['contact-id']), + intval($item['uid']) + ); + if(! count($r)) + return; + if(! $r[0]['self']) + $remote_owner = $r[0]; + } + + // this represents the post owner on this system. + + $r = q("SELECT `contact`.*, `user`.`nickname` FROM `contact` LEFT JOIN `user` ON `contact`.`uid` = `user`.`uid` + WHERE `contact`.`self` = 1 AND `contact`.`uid` = %d LIMIT 1", + intval($owner_uid) + ); + if(count($r)) + $owner = $r[0]; + + if(! $owner) { + logger('like: no owner'); + return; + } + + if(! $remote_owner) + $remote_owner = $owner; + + + // This represents the person posting + + if((local_user()) && (local_user() == $owner_uid)) { + $contact = $owner; + } + else { + $r = q("SELECT * FROM `contact` WHERE `id` = %d AND `uid` = %d LIMIT 1", + intval($_SESSION['visitor_id']), + intval($owner_uid) + ); + if(count($r)) + $contact = $r[0]; + } + if(! $contact) { + return; + } + + $uri = item_new_uri($a->get_hostname(),$owner_uid); + + $post_type = (($item['resource-id']) ? t('photo') : t('status')); + $objtype = (($item['resource-id']) ? ACTIVITY_OBJ_PHOTO : ACTIVITY_OBJ_NOTE ); + $link = xmlify('' . "\n") ; + $body = $item['body']; + + $obj = <<< EOT + + + $objtype + 1 + {$item['uri']} + $link + + $body + +EOT; + $bodyverb = t('%1$s is following %2$s\'s %3$s'); + + if(! isset($bodyverb)) + return; + + $arr = array(); + + $arr['uri'] = $uri; + $arr['uid'] = $owner_uid; + $arr['contact-id'] = $contact['id']; + $arr['type'] = 'activity'; + $arr['wall'] = $item['wall']; + $arr['origin'] = 1; + $arr['gravity'] = GRAVITY_LIKE; + $arr['parent'] = $item['id']; + $arr['parent-uri'] = $item['uri']; + $arr['thr-parent'] = $item['uri']; + $arr['owner-name'] = $remote_owner['name']; + $arr['owner-link'] = $remote_owner['url']; + $arr['owner-avatar'] = $remote_owner['thumb']; + $arr['author-name'] = $contact['name']; + $arr['author-link'] = $contact['url']; + $arr['author-avatar'] = $contact['thumb']; + + $ulink = '[url=' . $contact['url'] . ']' . $contact['name'] . '[/url]'; + $alink = '[url=' . $item['author-link'] . ']' . $item['author-name'] . '[/url]'; + $plink = '[url=' . $a->get_baseurl() . '/display/' . $owner['nickname'] . '/' . $item['id'] . ']' . $post_type . '[/url]'; + $arr['body'] = sprintf( $bodyverb, $ulink, $alink, $plink ); + + $arr['verb'] = $activity; + $arr['object-type'] = $objtype; + $arr['object'] = $obj; + $arr['allow_cid'] = $item['allow_cid']; + $arr['allow_gid'] = $item['allow_gid']; + $arr['deny_cid'] = $item['deny_cid']; + $arr['deny_gid'] = $item['deny_gid']; + $arr['visible'] = 1; + $arr['unseen'] = 1; + $arr['last-child'] = 0; + + $post_id = item_store($arr); + + if(! $item['visible']) { + $r = q("UPDATE `item` SET `visible` = 1 WHERE `id` = %d AND `uid` = %d LIMIT 1", + intval($item['id']), + intval($owner_uid) + ); + } + + $arr['id'] = $post_id; + + call_hooks('post_local_end', $arr); + + killme(); + +} + + diff --git a/object/Item.php b/object/Item.php index 7fa3fed2d3..892040dd31 100644 --- a/object/Item.php +++ b/object/Item.php @@ -63,7 +63,7 @@ class Item extends BaseObject { if($item['network'] === NETWORK_MAIL && local_user() != $item['uid']) { continue; } - if($item['verb'] === ACTIVITY_LIKE || $item['verb'] === ACTIVITY_DISLIKE) { + if(! visible_activity($item)) { continue; } $child = new Item($item); @@ -112,6 +112,7 @@ class Item extends BaseObject { $drop = array( 'dropping' => $dropping, + 'pagedrop' => $item['pagedrop'], 'select' => t('Select'), 'delete' => t('Delete'), ); @@ -143,10 +144,20 @@ class Item extends BaseObject { $location = ((strlen($locate['html'])) ? $locate['html'] : render_location_google($locate)); $tags=array(); + $hashtags = array(); + $mentions = array(); foreach(explode(',',$item['tag']) as $tag){ $tag = trim($tag); - if ($tag!="") $tags[] = bbcode($tag); - } + if ($tag!="") { + $t = bbcode($tag); + $tags[] = $t; + if($t[0] == '#') + $hashtags[] = $t; + elseif($t[0] == '@') + $mentions[] = $t; + } + + } $like = ((x($alike,$item['uri'])) ? format_like($alike[$item['uri']],$alike[$item['uri'] . '-l'],'like',$item['uri']) : ''); $dislike = ((x($dlike,$item['uri'])) ? format_like($dlike[$item['uri']],$dlike[$item['uri'] . '-l'],'dislike',$item['uri']) : ''); @@ -195,11 +206,21 @@ class Item extends BaseObject { $body = prepare_body($item,true); + list($categories, $folders) = get_cats_and_terms($item); + $tmp_item = array( 'template' => $this->get_template(), 'type' => implode("",array_slice(explode("/",$item['verb']),-1)), 'tags' => $tags, + 'hashtags' => $hashtags, + 'mentions' => $mentions, + 'txt_cats' => t('Categories:'), + 'txt_folders' => t('Filed under:'), + 'has_cats' => ((count($categories)) ? 'true' : ''), + 'has_folders' => ((count($folders)) ? 'true' : ''), + 'categories' => $categories, + 'folders' => $folders, 'body' => template_escape($body), 'text' => strip_tags(template_escape($body)), 'id' => $this->get_id(), @@ -254,6 +275,8 @@ class Item extends BaseObject { if(($nb_children > 2) || ($thread_level > 1)) { $result['children'][0]['comment_firstcollapsed'] = true; $result['children'][0]['num_comments'] = sprintf( tt('%d comment','%d comments',$total_children),$total_children ); + $result['children'][0]['hidden_comments_num'] = $total_children; + $result['children'][0]['hidden_comments_text'] = tt('comment', 'comments', $total_children); $result['children'][0]['hide_text'] = t('show more'); if($thread_level > 1) { $result['children'][$nb_children - 1]['comment_lastcollapsed'] = true; @@ -264,6 +287,11 @@ class Item extends BaseObject { } } + if ($this->is_toplevel()) { + $result['total_comments_num'] = $total_children; + $result['total_comments_text'] = tt('comment', 'comments', $total_children); + } + $result['private'] = $item['private']; $result['toplevel'] = ($this->is_toplevel() ? 'toplevel_item' : ''); @@ -304,11 +332,9 @@ class Item extends BaseObject { * Only add what will be displayed */ if($item->get_data_value('network') === NETWORK_MAIL && local_user() != $item->get_data_value('uid')) { - logger('[WARN] Item::add_child : Item is a mail ('. $item->get_id() .').', LOGGER_DEBUG); return false; } - if($item->get_data_value('verb') === ACTIVITY_LIKE || $item->get_data_value('verb') === ACTIVITY_DISLIKE) { - logger('[WARN] Item::add_child : Item is a (dis)like ('. $item->get_id() .').', LOGGER_DEBUG); + if(activity_match($item->get_data_value('verb'),ACTIVITY_LIKE) || activity_match($item->get_data_value('verb'),ACTIVITY_DISLIKE)) { return false; } @@ -571,7 +597,6 @@ class Item extends BaseObject { $this->owner_url = zrl($a->page_contact['url']); $this->owner_photo = $a->page_contact['thumb']; $this->owner_name = $a->page_contact['name']; - $this->set_template('wall2wall'); $this->wall_to_wall = true; } else if($this->get_data_value('owner-link')) { @@ -593,7 +618,6 @@ class Item extends BaseObject { $this->owner_photo = $this->get_data_value('owner-avatar'); $this->owner_name = $this->get_data_value('owner-name'); - $this->set_template('wall2wall'); $this->wall_to_wall = true; // If it is our contact, use a friendly redirect link if((link_compare($this->get_data_value('owner-link'),$this->get_data_value('url'))) @@ -634,5 +658,9 @@ class Item extends BaseObject { private function is_visiting() { return $this->visiting; } + + + + } ?> diff --git a/update.php b/update.php index cf6fa138ea..3d3eec6f97 100644 --- a/update.php +++ b/update.php @@ -1,6 +1,6 @@ \n" "Language-Team: LANGUAGE \n" @@ -56,8 +56,9 @@ msgstr "" #: ../../mod/profiles.php:413 ../../mod/delegate.php:6 #: ../../mod/suggest.php:28 ../../mod/invite.php:13 ../../mod/invite.php:81 #: ../../mod/dfrn_confirm.php:53 ../../addon/facebook/facebook.php:510 -#: ../../addon/facebook/facebook.php:516 -#: ../../addon/dav/friendica/layout.fnk.php:354 ../../include/items.php:3844 +#: ../../addon/facebook/facebook.php:516 ../../addon/fbpost/fbpost.php:159 +#: ../../addon/fbpost/fbpost.php:165 +#: ../../addon/dav/friendica/layout.fnk.php:354 ../../include/items.php:3913 #: ../../index.php:317 msgid "Permission denied." msgstr "" @@ -88,7 +89,7 @@ msgid "Return to contact editor" msgstr "" #: ../../mod/crepair.php:148 ../../mod/settings.php:545 -#: ../../mod/settings.php:571 ../../mod/admin.php:690 ../../mod/admin.php:699 +#: ../../mod/settings.php:571 ../../mod/admin.php:692 ../../mod/admin.php:702 msgid "Name" msgstr "" @@ -125,30 +126,30 @@ msgid "New photo from this URL" msgstr "" #: ../../mod/crepair.php:166 ../../mod/fsuggest.php:107 -#: ../../mod/events.php:439 ../../mod/photos.php:1005 +#: ../../mod/events.php:455 ../../mod/photos.php:1005 #: ../../mod/photos.php:1081 ../../mod/photos.php:1338 #: ../../mod/photos.php:1378 ../../mod/photos.php:1419 #: ../../mod/photos.php:1451 ../../mod/install.php:246 #: ../../mod/install.php:284 ../../mod/localtime.php:45 ../../mod/poke.php:199 -#: ../../mod/content.php:691 ../../mod/contacts.php:348 +#: ../../mod/content.php:693 ../../mod/contacts.php:348 #: ../../mod/settings.php:543 ../../mod/settings.php:697 #: ../../mod/settings.php:769 ../../mod/settings.php:976 #: ../../mod/group.php:85 ../../mod/mood.php:137 ../../mod/message.php:294 -#: ../../mod/message.php:480 ../../mod/admin.php:443 ../../mod/admin.php:687 -#: ../../mod/admin.php:823 ../../mod/admin.php:1022 ../../mod/admin.php:1109 +#: ../../mod/message.php:480 ../../mod/admin.php:443 ../../mod/admin.php:689 +#: ../../mod/admin.php:826 ../../mod/admin.php:1025 ../../mod/admin.php:1112 #: ../../mod/profiles.php:583 ../../mod/invite.php:119 #: ../../addon/fromgplus/fromgplus.php:40 #: ../../addon/facebook/facebook.php:619 #: ../../addon/snautofollow/snautofollow.php:64 ../../addon/bg/bg.php:90 -#: ../../addon/yourls/yourls.php:76 ../../addon/ljpost/ljpost.php:93 -#: ../../addon/nsfw/nsfw.php:57 ../../addon/page/page.php:210 -#: ../../addon/planets/planets.php:158 +#: ../../addon/fbpost/fbpost.php:226 ../../addon/yourls/yourls.php:76 +#: ../../addon/ljpost/ljpost.php:93 ../../addon/nsfw/nsfw.php:88 +#: ../../addon/page/page.php:210 ../../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/startpage/startpage.php:92 #: ../../addon/geonames/geonames.php:187 ../../addon/oembed.old/oembed.php:41 -#: ../../addon/forumlist/forumlist.php:169 -#: ../../addon/impressum/impressum.php:82 +#: ../../addon/forumlist/forumlist.php:163 +#: ../../addon/impressum/impressum.php:83 #: ../../addon/notimeline/notimeline.php:64 ../../addon/blockem/blockem.php:57 #: ../../addon/qcomment/qcomment.php:61 #: ../../addon/openstreetmap/openstreetmap.php:70 @@ -158,7 +159,7 @@ msgstr "" #: ../../addon/mathjax/mathjax.php:42 ../../addon/editplain/editplain.php:84 #: ../../addon/blackout/blackout.php:98 ../../addon/gravatar/gravatar.php:95 #: ../../addon/pageheader/pageheader.php:55 ../../addon/ijpost/ijpost.php:93 -#: ../../addon/jappixmini/jappixmini.php:302 +#: ../../addon/jappixmini/jappixmini.php:307 #: ../../addon/statusnet/statusnet.php:278 #: ../../addon/statusnet/statusnet.php:292 #: ../../addon/statusnet/statusnet.php:318 @@ -169,13 +170,13 @@ msgstr "" #: ../../addon/wppost/wppost.php:110 ../../addon/showmore/showmore.php:48 #: ../../addon/piwik/piwik.php:89 ../../addon/twitter/twitter.php:180 #: ../../addon/twitter/twitter.php:209 ../../addon/twitter/twitter.php:394 -#: ../../addon/irc/irc.php:55 ../../addon/blogger/blogger.php:102 -#: ../../addon/posterous/posterous.php:103 +#: ../../addon/irc/irc.php:55 ../../addon/fromapp/fromapp.php:77 +#: ../../addon/blogger/blogger.php:102 ../../addon/posterous/posterous.php:103 #: ../../view/theme/cleanzero/config.php:80 #: ../../view/theme/diabook/theme.php:757 #: ../../view/theme/diabook/config.php:190 -#: ../../view/theme/quattro/config.php:52 ../../view/theme/dispy/config.php:70 -#: ../../include/conversation.php:591 ../../object/Item.php:532 +#: ../../view/theme/quattro/config.php:53 ../../view/theme/dispy/config.php:70 +#: ../../object/Item.php:560 msgid "Submit" msgstr "" @@ -222,90 +223,91 @@ msgstr "" msgid "Event title and start time are required." msgstr "" -#: ../../mod/events.php:263 +#: ../../mod/events.php:279 msgid "l, F j" msgstr "" -#: ../../mod/events.php:285 +#: ../../mod/events.php:301 msgid "Edit event" msgstr "" -#: ../../mod/events.php:307 ../../include/text.php:1147 +#: ../../mod/events.php:323 ../../include/text.php:1187 msgid "link to source" msgstr "" -#: ../../mod/events.php:331 ../../view/theme/diabook/theme.php:131 -#: ../../include/nav.php:52 ../../boot.php:1683 +#: ../../mod/events.php:347 ../../view/theme/diabook/theme.php:131 +#: ../../include/nav.php:52 ../../boot.php:1689 msgid "Events" msgstr "" -#: ../../mod/events.php:332 +#: ../../mod/events.php:348 msgid "Create New Event" msgstr "" -#: ../../mod/events.php:333 ../../addon/dav/friendica/layout.fnk.php:263 +#: ../../mod/events.php:349 ../../addon/dav/friendica/layout.fnk.php:263 msgid "Previous" msgstr "" -#: ../../mod/events.php:334 ../../mod/install.php:205 +#: ../../mod/events.php:350 ../../mod/install.php:205 #: ../../addon/dav/friendica/layout.fnk.php:266 msgid "Next" msgstr "" -#: ../../mod/events.php:407 +#: ../../mod/events.php:423 msgid "hour:minute" msgstr "" -#: ../../mod/events.php:417 +#: ../../mod/events.php:433 msgid "Event details" msgstr "" -#: ../../mod/events.php:418 +#: ../../mod/events.php:434 #, php-format msgid "Format is %s %s. Starting date and Title are required." msgstr "" -#: ../../mod/events.php:420 +#: ../../mod/events.php:436 msgid "Event Starts:" msgstr "" -#: ../../mod/events.php:420 ../../mod/events.php:434 +#: ../../mod/events.php:436 ../../mod/events.php:450 msgid "Required" msgstr "" -#: ../../mod/events.php:423 +#: ../../mod/events.php:439 msgid "Finish date/time is not known or not relevant" msgstr "" -#: ../../mod/events.php:425 +#: ../../mod/events.php:441 msgid "Event Finishes:" msgstr "" -#: ../../mod/events.php:428 +#: ../../mod/events.php:444 msgid "Adjust for viewer timezone" msgstr "" -#: ../../mod/events.php:430 +#: ../../mod/events.php:446 msgid "Description:" msgstr "" -#: ../../mod/events.php:432 ../../mod/directory.php:134 +#: ../../mod/events.php:448 ../../mod/directory.php:134 #: ../../include/event.php:40 ../../include/bb2diaspora.php:412 #: ../../boot.php:1226 msgid "Location:" msgstr "" -#: ../../mod/events.php:434 +#: ../../mod/events.php:450 msgid "Title:" msgstr "" -#: ../../mod/events.php:436 +#: ../../mod/events.php:452 msgid "Share this event" msgstr "" -#: ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 +#: ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 ../../mod/editpost.php:136 #: ../../mod/dfrn_request.php:847 ../../mod/settings.php:544 #: ../../mod/settings.php:570 ../../addon/js_upload/js_upload.php:45 +#: ../../include/conversation.php:935 msgid "Cancel" msgstr "" @@ -373,7 +375,7 @@ msgstr "" msgid "No" msgstr "" -#: ../../mod/photos.php:46 ../../boot.php:1676 +#: ../../mod/photos.php:46 ../../boot.php:1682 msgid "Photo Albums" msgstr "" @@ -403,8 +405,8 @@ msgstr "" #: ../../mod/profile_photo.php:204 ../../mod/profile_photo.php:296 #: ../../mod/profile_photo.php:305 #: ../../addon/communityhome/communityhome.php:111 -#: ../../view/theme/diabook/theme.php:599 ../../include/user.php:318 -#: ../../include/user.php:325 ../../include/user.php:332 +#: ../../view/theme/diabook/theme.php:599 ../../include/user.php:324 +#: ../../include/user.php:331 ../../include/user.php:338 msgid "Profile Photos" msgstr "" @@ -426,9 +428,9 @@ msgstr "" #: ../../mod/photos.php:584 ../../mod/like.php:145 ../../mod/tagger.php:62 #: ../../addon/communityhome/communityhome.php:163 -#: ../../view/theme/diabook/theme.php:570 ../../include/text.php:1399 +#: ../../view/theme/diabook/theme.php:570 ../../include/text.php:1439 #: ../../include/diaspora.php:1824 ../../include/conversation.php:125 -#: ../../include/conversation.php:255 +#: ../../include/conversation.php:253 msgid "photo" msgstr "" @@ -534,8 +536,8 @@ msgstr "" msgid "Use as profile photo" msgstr "" -#: ../../mod/photos.php:1224 ../../mod/content.php:601 -#: ../../include/conversation.php:428 ../../object/Item.php:103 +#: ../../mod/photos.php:1224 ../../mod/content.php:603 +#: ../../object/Item.php:103 msgid "Private Message" msgstr "" @@ -575,53 +577,50 @@ msgstr "" msgid "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" msgstr "" -#: ../../mod/photos.php:1356 ../../mod/content.php:665 -#: ../../include/conversation.php:565 ../../object/Item.php:185 +#: ../../mod/photos.php:1356 ../../mod/content.php:667 +#: ../../object/Item.php:196 msgid "I like this (toggle)" msgstr "" -#: ../../mod/photos.php:1357 ../../mod/content.php:666 -#: ../../include/conversation.php:566 ../../object/Item.php:186 +#: ../../mod/photos.php:1357 ../../mod/content.php:668 +#: ../../object/Item.php:197 msgid "I don't like this (toggle)" msgstr "" -#: ../../mod/photos.php:1358 ../../include/conversation.php:1214 +#: ../../mod/photos.php:1358 ../../include/conversation.php:896 msgid "Share" msgstr "" #: ../../mod/photos.php:1359 ../../mod/editpost.php:112 -#: ../../mod/content.php:482 ../../mod/content.php:843 +#: ../../mod/content.php:482 ../../mod/content.php:845 #: ../../mod/wallmessage.php:152 ../../mod/message.php:293 -#: ../../mod/message.php:481 ../../include/conversation.php:659 -#: ../../include/conversation.php:891 ../../include/conversation.php:1233 -#: ../../object/Item.php:237 +#: ../../mod/message.php:481 ../../include/conversation.php:570 +#: ../../include/conversation.php:915 ../../object/Item.php:258 msgid "Please wait" msgstr "" #: ../../mod/photos.php:1375 ../../mod/photos.php:1416 -#: ../../mod/photos.php:1448 ../../mod/content.php:688 -#: ../../include/conversation.php:588 ../../object/Item.php:529 +#: ../../mod/photos.php:1448 ../../mod/content.php:690 +#: ../../object/Item.php:557 msgid "This is you" msgstr "" #: ../../mod/photos.php:1377 ../../mod/photos.php:1418 -#: ../../mod/photos.php:1450 ../../mod/content.php:690 -#: ../../include/conversation.php:590 ../../boot.php:574 -#: ../../object/Item.php:531 +#: ../../mod/photos.php:1450 ../../mod/content.php:692 ../../boot.php:574 +#: ../../object/Item.php:559 msgid "Comment" msgstr "" #: ../../mod/photos.php:1379 ../../mod/editpost.php:133 -#: ../../mod/content.php:700 ../../include/conversation.php:600 -#: ../../include/conversation.php:1251 ../../object/Item.php:541 +#: ../../mod/content.php:702 ../../include/conversation.php:933 +#: ../../object/Item.php:569 msgid "Preview" msgstr "" #: ../../mod/photos.php:1479 ../../mod/content.php:439 -#: ../../mod/content.php:721 ../../mod/settings.php:606 -#: ../../mod/settings.php:695 ../../mod/group.php:168 ../../mod/admin.php:694 -#: ../../include/conversation.php:440 ../../include/conversation.php:847 -#: ../../object/Item.php:116 +#: ../../mod/content.php:723 ../../mod/settings.php:606 +#: ../../mod/settings.php:695 ../../mod/group.php:168 ../../mod/admin.php:696 +#: ../../include/conversation.php:515 ../../object/Item.php:117 msgid "Delete" msgstr "" @@ -687,29 +686,28 @@ msgstr "" msgid "Edit post" msgstr "" -#: ../../mod/editpost.php:88 ../../include/conversation.php:1200 +#: ../../mod/editpost.php:88 ../../include/conversation.php:882 msgid "Post to Email" msgstr "" -#: ../../mod/editpost.php:103 ../../mod/content.php:708 -#: ../../mod/settings.php:605 ../../include/conversation.php:433 -#: ../../object/Item.php:107 +#: ../../mod/editpost.php:103 ../../mod/content.php:710 +#: ../../mod/settings.php:605 ../../object/Item.php:107 msgid "Edit" msgstr "" #: ../../mod/editpost.php:104 ../../mod/wallmessage.php:150 #: ../../mod/message.php:291 ../../mod/message.php:478 -#: ../../include/conversation.php:1215 +#: ../../include/conversation.php:897 msgid "Upload photo" msgstr "" -#: ../../mod/editpost.php:105 ../../include/conversation.php:1217 +#: ../../mod/editpost.php:105 ../../include/conversation.php:899 msgid "Attach file" msgstr "" #: ../../mod/editpost.php:106 ../../mod/wallmessage.php:151 #: ../../mod/message.php:292 ../../mod/message.php:479 -#: ../../include/conversation.php:1219 +#: ../../include/conversation.php:901 msgid "Insert web link" msgstr "" @@ -725,35 +723,35 @@ msgstr "" msgid "Insert Vorbis [.ogg] audio" msgstr "" -#: ../../mod/editpost.php:110 ../../include/conversation.php:1225 +#: ../../mod/editpost.php:110 ../../include/conversation.php:907 msgid "Set your location" msgstr "" -#: ../../mod/editpost.php:111 ../../include/conversation.php:1227 +#: ../../mod/editpost.php:111 ../../include/conversation.php:909 msgid "Clear browser location" msgstr "" -#: ../../mod/editpost.php:113 ../../include/conversation.php:1234 +#: ../../mod/editpost.php:113 ../../include/conversation.php:916 msgid "Permission settings" msgstr "" -#: ../../mod/editpost.php:121 ../../include/conversation.php:1243 +#: ../../mod/editpost.php:121 ../../include/conversation.php:925 msgid "CC: email addresses" msgstr "" -#: ../../mod/editpost.php:122 ../../include/conversation.php:1244 +#: ../../mod/editpost.php:122 ../../include/conversation.php:926 msgid "Public post" msgstr "" -#: ../../mod/editpost.php:125 ../../include/conversation.php:1230 +#: ../../mod/editpost.php:125 ../../include/conversation.php:912 msgid "Set title" msgstr "" -#: ../../mod/editpost.php:127 ../../include/conversation.php:1232 +#: ../../mod/editpost.php:127 ../../include/conversation.php:914 msgid "Categories (comma-separated list)" msgstr "" -#: ../../mod/editpost.php:128 ../../include/conversation.php:1246 +#: ../../mod/editpost.php:128 ../../include/conversation.php:928 msgid "Example: bob@example.com, mary@example.com" msgstr "" @@ -874,7 +872,7 @@ msgstr "" msgid "Confirm" msgstr "" -#: ../../mod/dfrn_request.php:715 ../../include/items.php:3223 +#: ../../mod/dfrn_request.php:715 ../../include/items.php:3292 msgid "[Name Withheld]" msgstr "" @@ -1294,148 +1292,130 @@ msgstr "" msgid "Group: " msgstr "" -#: ../../mod/content.php:438 ../../mod/content.php:720 -#: ../../include/conversation.php:439 ../../include/conversation.php:846 -#: ../../object/Item.php:115 +#: ../../mod/content.php:438 ../../mod/content.php:722 +#: ../../include/conversation.php:514 ../../object/Item.php:116 msgid "Select" msgstr "" -#: ../../mod/content.php:455 ../../mod/content.php:813 -#: ../../mod/content.php:814 ../../include/conversation.php:627 -#: ../../include/conversation.php:628 ../../include/conversation.php:863 -#: ../../object/Item.php:206 ../../object/Item.php:207 +#: ../../mod/content.php:455 ../../mod/content.php:815 +#: ../../mod/content.php:816 ../../include/conversation.php:533 +#: ../../object/Item.php:227 ../../object/Item.php:228 #, php-format msgid "View %s's profile @ %s" msgstr "" -#: ../../mod/content.php:465 ../../mod/content.php:825 -#: ../../include/conversation.php:641 ../../include/conversation.php:874 -#: ../../object/Item.php:219 +#: ../../mod/content.php:465 ../../mod/content.php:827 +#: ../../include/conversation.php:553 ../../object/Item.php:240 #, php-format msgid "%s from %s" msgstr "" -#: ../../mod/content.php:480 ../../include/conversation.php:889 +#: ../../mod/content.php:480 ../../include/conversation.php:568 msgid "View in context" msgstr "" -#: ../../mod/content.php:586 ../../include/conversation.php:668 -#: ../../object/Item.php:256 +#: ../../mod/content.php:586 ../../object/Item.php:277 #, php-format msgid "%d comment" msgid_plural "%d comments" msgstr[0] "" msgstr[1] "" -#: ../../mod/content.php:587 ../../addon/page/page.php:76 +#: ../../mod/content.php:588 ../../include/text.php:1443 +#: ../../object/Item.php:279 ../../object/Item.php:292 +msgid "comment" +msgid_plural "comments" +msgstr[0] "" +msgstr[1] "" + +#: ../../mod/content.php:589 ../../addon/page/page.php:76 #: ../../addon/page/page.php:110 ../../addon/showmore/showmore.php:119 -#: ../../include/contact_widgets.php:195 ../../include/conversation.php:669 -#: ../../boot.php:575 ../../object/Item.php:257 +#: ../../include/contact_widgets.php:195 ../../boot.php:575 +#: ../../object/Item.php:280 msgid "show more" msgstr "" -#: ../../mod/content.php:665 ../../include/conversation.php:565 -#: ../../object/Item.php:185 +#: ../../mod/content.php:667 ../../object/Item.php:196 msgid "like" msgstr "" -#: ../../mod/content.php:666 ../../include/conversation.php:566 -#: ../../object/Item.php:186 +#: ../../mod/content.php:668 ../../object/Item.php:197 msgid "dislike" msgstr "" -#: ../../mod/content.php:668 ../../include/conversation.php:568 -#: ../../object/Item.php:188 +#: ../../mod/content.php:670 ../../object/Item.php:199 msgid "Share this" msgstr "" -#: ../../mod/content.php:668 ../../include/conversation.php:568 -#: ../../object/Item.php:188 +#: ../../mod/content.php:670 ../../object/Item.php:199 msgid "share" msgstr "" -#: ../../mod/content.php:692 ../../include/conversation.php:592 -#: ../../object/Item.php:533 +#: ../../mod/content.php:694 ../../object/Item.php:561 msgid "Bold" msgstr "" -#: ../../mod/content.php:693 ../../include/conversation.php:593 -#: ../../object/Item.php:534 +#: ../../mod/content.php:695 ../../object/Item.php:562 msgid "Italic" msgstr "" -#: ../../mod/content.php:694 ../../include/conversation.php:594 -#: ../../object/Item.php:535 +#: ../../mod/content.php:696 ../../object/Item.php:563 msgid "Underline" msgstr "" -#: ../../mod/content.php:695 ../../include/conversation.php:595 -#: ../../object/Item.php:536 +#: ../../mod/content.php:697 ../../object/Item.php:564 msgid "Quote" msgstr "" -#: ../../mod/content.php:696 ../../include/conversation.php:596 -#: ../../object/Item.php:537 +#: ../../mod/content.php:698 ../../object/Item.php:565 msgid "Code" msgstr "" -#: ../../mod/content.php:697 ../../include/conversation.php:597 -#: ../../object/Item.php:538 +#: ../../mod/content.php:699 ../../object/Item.php:566 msgid "Image" msgstr "" -#: ../../mod/content.php:698 ../../include/conversation.php:598 -#: ../../object/Item.php:539 +#: ../../mod/content.php:700 ../../object/Item.php:567 msgid "Link" msgstr "" -#: ../../mod/content.php:699 ../../include/conversation.php:599 -#: ../../object/Item.php:540 +#: ../../mod/content.php:701 ../../object/Item.php:568 msgid "Video" msgstr "" -#: ../../mod/content.php:733 ../../include/conversation.php:529 -#: ../../object/Item.php:169 +#: ../../mod/content.php:735 ../../object/Item.php:180 msgid "add star" msgstr "" -#: ../../mod/content.php:734 ../../include/conversation.php:530 -#: ../../object/Item.php:170 +#: ../../mod/content.php:736 ../../object/Item.php:181 msgid "remove star" msgstr "" -#: ../../mod/content.php:735 ../../include/conversation.php:531 -#: ../../object/Item.php:171 +#: ../../mod/content.php:737 ../../object/Item.php:182 msgid "toggle star status" msgstr "" -#: ../../mod/content.php:738 ../../include/conversation.php:534 -#: ../../object/Item.php:174 +#: ../../mod/content.php:740 ../../object/Item.php:185 msgid "starred" msgstr "" -#: ../../mod/content.php:739 ../../include/conversation.php:535 -#: ../../object/Item.php:175 +#: ../../mod/content.php:741 ../../object/Item.php:186 msgid "add tag" msgstr "" -#: ../../mod/content.php:743 ../../include/conversation.php:443 -#: ../../object/Item.php:119 +#: ../../mod/content.php:745 ../../object/Item.php:120 msgid "save to folder" msgstr "" -#: ../../mod/content.php:815 ../../include/conversation.php:629 -#: ../../object/Item.php:208 +#: ../../mod/content.php:817 ../../object/Item.php:229 msgid "to" msgstr "" -#: ../../mod/content.php:816 ../../include/conversation.php:630 -#: ../../object/Item.php:209 +#: ../../mod/content.php:818 ../../object/Item.php:230 msgid "Wall-to-Wall" msgstr "" -#: ../../mod/content.php:817 ../../include/conversation.php:631 -#: ../../object/Item.php:210 +#: ../../mod/content.php:819 ../../object/Item.php:231 msgid "via Wall-To-Wall:" msgstr "" @@ -1520,7 +1500,7 @@ msgid "if applicable" msgstr "" #: ../../mod/notifications.php:157 ../../mod/notifications.php:204 -#: ../../mod/admin.php:692 +#: ../../mod/admin.php:694 msgid "Approve" msgstr "" @@ -1721,12 +1701,12 @@ msgid "View all contacts" msgstr "" #: ../../mod/contacts.php:315 ../../mod/contacts.php:374 -#: ../../mod/admin.php:696 +#: ../../mod/admin.php:698 msgid "Unblock" msgstr "" #: ../../mod/contacts.php:315 ../../mod/contacts.php:374 -#: ../../mod/admin.php:695 +#: ../../mod/admin.php:697 msgid "Block" msgstr "" @@ -1823,7 +1803,7 @@ msgstr "" msgid "Update public posts" msgstr "" -#: ../../mod/contacts.php:371 ../../mod/admin.php:1167 +#: ../../mod/contacts.php:371 ../../mod/admin.php:1170 msgid "Update now" msgstr "" @@ -1951,9 +1931,9 @@ msgstr "" #: ../../mod/register.php:90 ../../mod/register.php:144 #: ../../mod/regmod.php:54 ../../mod/dfrn_confirm.php:752 #: ../../addon/facebook/facebook.php:702 -#: ../../addon/facebook/facebook.php:1200 +#: ../../addon/facebook/facebook.php:1200 ../../addon/fbpost/fbpost.php:661 #: ../../addon/public_server/public_server.php:62 -#: ../../addon/testdrive/testdrive.php:67 ../../include/items.php:3232 +#: ../../addon/testdrive/testdrive.php:67 ../../include/items.php:3301 #: ../../boot.php:788 msgid "Administrator" msgstr "" @@ -2037,7 +2017,7 @@ msgid "Remove account" msgstr "" #: ../../mod/settings.php:69 ../../mod/newmember.php:22 -#: ../../mod/admin.php:782 ../../mod/admin.php:987 +#: ../../mod/admin.php:785 ../../mod/admin.php:990 #: ../../addon/dav/friendica/layout.fnk.php:225 #: ../../addon/mathjax/mathjax.php:36 ../../view/theme/diabook/theme.php:643 #: ../../view/theme/diabook/theme.php:773 ../../include/nav.php:137 @@ -2101,7 +2081,7 @@ msgid "Private forum has no privacy permissions and no default privacy group." msgstr "" #: ../../mod/settings.php:471 ../../addon/facebook/facebook.php:495 -#: ../../addon/impressum/impressum.php:77 +#: ../../addon/fbpost/fbpost.php:144 ../../addon/impressum/impressum.php:78 #: ../../addon/openstreetmap/openstreetmap.php:80 #: ../../addon/mathjax/mathjax.php:66 ../../addon/piwik/piwik.php:105 #: ../../addon/twitter/twitter.php:389 @@ -2641,13 +2621,14 @@ msgstr "" msgid "Invalid contact." msgstr "" -#: ../../mod/notes.php:44 ../../boot.php:1690 +#: ../../mod/notes.php:44 ../../boot.php:1696 msgid "Personal Notes" msgstr "" #: ../../mod/notes.php:63 ../../mod/filer.php:30 #: ../../addon/facebook/facebook.php:770 #: ../../addon/privacy_image_cache/privacy_image_cache.php:263 +#: ../../addon/fbpost/fbpost.php:267 #: ../../addon/dav/friendica/layout.fnk.php:441 #: ../../addon/dav/friendica/layout.fnk.php:488 ../../include/text.php:681 msgid "Save" @@ -2684,7 +2665,7 @@ msgstr "" #: ../../mod/wallmessage.php:123 ../../mod/wallmessage.php:131 #: ../../mod/message.php:242 ../../mod/message.php:250 -#: ../../include/conversation.php:1151 ../../include/conversation.php:1168 +#: ../../include/conversation.php:833 ../../include/conversation.php:850 msgid "Please enter a link URL:" msgstr "" @@ -2767,7 +2748,7 @@ msgstr "" #: ../../mod/newmember.php:32 ../../mod/profperm.php:103 #: ../../view/theme/diabook/theme.php:128 ../../include/profile_advanced.php:7 #: ../../include/profile_advanced.php:84 ../../include/nav.php:50 -#: ../../boot.php:1666 +#: ../../boot.php:1672 msgid "Profile" msgstr "" @@ -2809,7 +2790,7 @@ msgid "Connecting" msgstr "" #: ../../mod/newmember.php:49 ../../mod/newmember.php:51 -#: ../../addon/facebook/facebook.php:728 +#: ../../addon/facebook/facebook.php:728 ../../addon/fbpost/fbpost.php:239 #: ../../include/contact_selectors.php:81 msgid "Facebook" msgstr "" @@ -3045,38 +3026,38 @@ msgstr "" msgid "Include your profile in member directory?" msgstr "" -#: ../../mod/register.php:253 +#: ../../mod/register.php:255 msgid "Membership on this site is by invitation only." msgstr "" -#: ../../mod/register.php:254 +#: ../../mod/register.php:256 msgid "Your invitation ID: " msgstr "" -#: ../../mod/register.php:257 ../../mod/admin.php:444 +#: ../../mod/register.php:259 ../../mod/admin.php:444 msgid "Registration" msgstr "" -#: ../../mod/register.php:265 +#: ../../mod/register.php:267 msgid "Your Full Name (e.g. Joe Smith): " msgstr "" -#: ../../mod/register.php:266 +#: ../../mod/register.php:268 msgid "Your Email Address: " msgstr "" -#: ../../mod/register.php:267 +#: ../../mod/register.php:269 msgid "" "Choose a profile nickname. This must begin with a text character. Your " "profile address on this site will then be 'nickname@$sitename'." msgstr "" -#: ../../mod/register.php:268 +#: ../../mod/register.php:270 msgid "Choose a nickname: " msgstr "" -#: ../../mod/register.php:271 ../../include/nav.php:81 ../../boot.php:887 +#: ../../mod/register.php:273 ../../include/nav.php:81 ../../boot.php:887 msgid "Register" msgstr "" @@ -3085,32 +3066,32 @@ msgid "People Search" msgstr "" #: ../../mod/like.php:145 ../../mod/like.php:298 ../../mod/tagger.php:62 -#: ../../addon/facebook/facebook.php:1594 +#: ../../addon/facebook/facebook.php:1598 #: ../../addon/communityhome/communityhome.php:158 #: ../../addon/communityhome/communityhome.php:167 #: ../../view/theme/diabook/theme.php:565 #: ../../view/theme/diabook/theme.php:574 ../../include/diaspora.php:1824 #: ../../include/conversation.php:120 ../../include/conversation.php:129 -#: ../../include/conversation.php:250 ../../include/conversation.php:259 +#: ../../include/conversation.php:248 ../../include/conversation.php:257 msgid "status" msgstr "" -#: ../../mod/like.php:162 ../../addon/facebook/facebook.php:1598 +#: ../../mod/like.php:162 ../../addon/facebook/facebook.php:1602 #: ../../addon/communityhome/communityhome.php:172 #: ../../view/theme/diabook/theme.php:579 ../../include/diaspora.php:1840 -#: ../../include/conversation.php:137 +#: ../../include/conversation.php:136 #, php-format msgid "%1$s likes %2$s's %3$s" msgstr "" -#: ../../mod/like.php:164 ../../include/conversation.php:140 +#: ../../mod/like.php:164 ../../include/conversation.php:139 #, php-format msgid "%1$s doesn't like %2$s's %3$s" msgstr "" #: ../../mod/notice.php:15 ../../mod/viewsrc.php:15 ../../mod/admin.php:159 -#: ../../mod/admin.php:731 ../../mod/admin.php:930 ../../mod/display.php:29 -#: ../../mod/display.php:145 ../../include/items.php:3710 +#: ../../mod/admin.php:734 ../../mod/admin.php:933 ../../mod/display.php:29 +#: ../../mod/display.php:145 ../../include/items.php:3779 msgid "Item not found." msgstr "" @@ -3119,7 +3100,7 @@ msgid "Access denied." msgstr "" #: ../../mod/fbrowser.php:25 ../../view/theme/diabook/theme.php:130 -#: ../../include/nav.php:51 ../../boot.php:1673 +#: ../../include/nav.php:51 ../../boot.php:1679 msgid "Photos" msgstr "" @@ -3180,7 +3161,7 @@ msgstr "" msgid "%s posted an update." msgstr "" -#: ../../mod/mood.php:62 ../../include/conversation.php:228 +#: ../../mod/mood.php:62 ../../include/conversation.php:226 #, php-format msgid "%1$s is currently %2$s" msgstr "" @@ -3358,15 +3339,15 @@ msgstr "" msgid "Site" msgstr "" -#: ../../mod/admin.php:97 ../../mod/admin.php:686 ../../mod/admin.php:698 +#: ../../mod/admin.php:97 ../../mod/admin.php:688 ../../mod/admin.php:701 msgid "Users" msgstr "" -#: ../../mod/admin.php:98 ../../mod/admin.php:780 ../../mod/admin.php:822 +#: ../../mod/admin.php:98 ../../mod/admin.php:783 ../../mod/admin.php:825 msgid "Plugins" msgstr "" -#: ../../mod/admin.php:99 ../../mod/admin.php:985 ../../mod/admin.php:1021 +#: ../../mod/admin.php:99 ../../mod/admin.php:988 ../../mod/admin.php:1024 msgid "Themes" msgstr "" @@ -3374,7 +3355,7 @@ msgstr "" msgid "DB updates" msgstr "" -#: ../../mod/admin.php:115 ../../mod/admin.php:122 ../../mod/admin.php:1108 +#: ../../mod/admin.php:115 ../../mod/admin.php:122 ../../mod/admin.php:1111 msgid "Logs" msgstr "" @@ -3390,19 +3371,19 @@ msgstr "" msgid "User registrations waiting for confirmation" msgstr "" -#: ../../mod/admin.php:183 ../../mod/admin.php:668 +#: ../../mod/admin.php:183 ../../mod/admin.php:669 msgid "Normal Account" msgstr "" -#: ../../mod/admin.php:184 ../../mod/admin.php:669 +#: ../../mod/admin.php:184 ../../mod/admin.php:670 msgid "Soapbox Account" msgstr "" -#: ../../mod/admin.php:185 ../../mod/admin.php:670 +#: ../../mod/admin.php:185 ../../mod/admin.php:671 msgid "Community/Celebrity Account" msgstr "" -#: ../../mod/admin.php:186 ../../mod/admin.php:671 +#: ../../mod/admin.php:186 ../../mod/admin.php:672 msgid "Automatic Friend Account" msgstr "" @@ -3418,9 +3399,9 @@ msgstr "" msgid "Message queues" msgstr "" -#: ../../mod/admin.php:212 ../../mod/admin.php:441 ../../mod/admin.php:685 -#: ../../mod/admin.php:779 ../../mod/admin.php:821 ../../mod/admin.php:984 -#: ../../mod/admin.php:1020 ../../mod/admin.php:1107 +#: ../../mod/admin.php:212 ../../mod/admin.php:441 ../../mod/admin.php:687 +#: ../../mod/admin.php:782 ../../mod/admin.php:824 ../../mod/admin.php:987 +#: ../../mod/admin.php:1023 ../../mod/admin.php:1110 msgid "Administration" msgstr "" @@ -3633,13 +3614,13 @@ msgid "Allow infinite level threading for items on this site." msgstr "" #: ../../mod/admin.php:470 -msgid "No default permissions for new users" +msgid "Private posts by default for new users" msgstr "" #: ../../mod/admin.php:470 msgid "" -"New users will have no private permissions set for their posts by default, " -"making their posts public until they change it." +"Set default post permissions for all new members to the default privacy " +"group rather than public." msgstr "" #: ../../mod/admin.php:472 @@ -3845,148 +3826,152 @@ msgstr "" msgid "User '%s' blocked" msgstr "" -#: ../../mod/admin.php:688 +#: ../../mod/admin.php:690 msgid "select all" msgstr "" -#: ../../mod/admin.php:689 +#: ../../mod/admin.php:691 msgid "User registrations waiting for confirm" msgstr "" -#: ../../mod/admin.php:690 +#: ../../mod/admin.php:692 msgid "Request date" msgstr "" -#: ../../mod/admin.php:690 ../../mod/admin.php:699 +#: ../../mod/admin.php:692 ../../mod/admin.php:702 #: ../../include/contact_selectors.php:79 msgid "Email" msgstr "" -#: ../../mod/admin.php:691 +#: ../../mod/admin.php:693 msgid "No registrations." msgstr "" -#: ../../mod/admin.php:693 +#: ../../mod/admin.php:695 msgid "Deny" msgstr "" #: ../../mod/admin.php:699 +msgid "Site admin" +msgstr "" + +#: ../../mod/admin.php:702 msgid "Register date" msgstr "" -#: ../../mod/admin.php:699 +#: ../../mod/admin.php:702 msgid "Last login" msgstr "" -#: ../../mod/admin.php:699 +#: ../../mod/admin.php:702 msgid "Last item" msgstr "" -#: ../../mod/admin.php:699 +#: ../../mod/admin.php:702 msgid "Account" msgstr "" -#: ../../mod/admin.php:701 +#: ../../mod/admin.php:704 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:702 +#: ../../mod/admin.php:705 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:743 +#: ../../mod/admin.php:746 #, php-format msgid "Plugin %s disabled." msgstr "" -#: ../../mod/admin.php:747 +#: ../../mod/admin.php:750 #, php-format msgid "Plugin %s enabled." msgstr "" -#: ../../mod/admin.php:757 ../../mod/admin.php:955 +#: ../../mod/admin.php:760 ../../mod/admin.php:958 msgid "Disable" msgstr "" -#: ../../mod/admin.php:759 ../../mod/admin.php:957 +#: ../../mod/admin.php:762 ../../mod/admin.php:960 msgid "Enable" msgstr "" -#: ../../mod/admin.php:781 ../../mod/admin.php:986 +#: ../../mod/admin.php:784 ../../mod/admin.php:989 msgid "Toggle" msgstr "" -#: ../../mod/admin.php:789 ../../mod/admin.php:996 +#: ../../mod/admin.php:792 ../../mod/admin.php:999 msgid "Author: " msgstr "" -#: ../../mod/admin.php:790 ../../mod/admin.php:997 +#: ../../mod/admin.php:793 ../../mod/admin.php:1000 msgid "Maintainer: " msgstr "" -#: ../../mod/admin.php:919 +#: ../../mod/admin.php:922 msgid "No themes found." msgstr "" -#: ../../mod/admin.php:978 +#: ../../mod/admin.php:981 msgid "Screenshot" msgstr "" -#: ../../mod/admin.php:1026 +#: ../../mod/admin.php:1029 msgid "[Experimental]" msgstr "" -#: ../../mod/admin.php:1027 +#: ../../mod/admin.php:1030 msgid "[Unsupported]" msgstr "" -#: ../../mod/admin.php:1054 +#: ../../mod/admin.php:1057 msgid "Log settings updated." msgstr "" -#: ../../mod/admin.php:1110 +#: ../../mod/admin.php:1113 msgid "Clear" msgstr "" -#: ../../mod/admin.php:1116 +#: ../../mod/admin.php:1119 msgid "Debugging" msgstr "" -#: ../../mod/admin.php:1117 +#: ../../mod/admin.php:1120 msgid "Log file" msgstr "" -#: ../../mod/admin.php:1117 +#: ../../mod/admin.php:1120 msgid "" "Must be writable by web server. Relative to your Friendica top-level " "directory." msgstr "" -#: ../../mod/admin.php:1118 +#: ../../mod/admin.php:1121 msgid "Log level" msgstr "" -#: ../../mod/admin.php:1168 +#: ../../mod/admin.php:1171 msgid "Close" msgstr "" -#: ../../mod/admin.php:1174 +#: ../../mod/admin.php:1177 msgid "FTP Host" msgstr "" -#: ../../mod/admin.php:1175 +#: ../../mod/admin.php:1178 msgid "FTP Path" msgstr "" -#: ../../mod/admin.php:1176 +#: ../../mod/admin.php:1179 msgid "FTP User" msgstr "" -#: ../../mod/admin.php:1177 +#: ../../mod/admin.php:1180 msgid "FTP Password" msgstr "" @@ -4002,48 +3987,48 @@ msgstr "" msgid "Tips for New Members" msgstr "" -#: ../../mod/ping.php:185 +#: ../../mod/ping.php:238 msgid "{0} wants to be your friend" msgstr "" -#: ../../mod/ping.php:190 +#: ../../mod/ping.php:243 msgid "{0} sent you a message" msgstr "" -#: ../../mod/ping.php:195 +#: ../../mod/ping.php:248 msgid "{0} requested registration" msgstr "" -#: ../../mod/ping.php:201 +#: ../../mod/ping.php:254 #, php-format msgid "{0} commented %s's post" msgstr "" -#: ../../mod/ping.php:206 +#: ../../mod/ping.php:259 #, php-format msgid "{0} liked %s's post" msgstr "" -#: ../../mod/ping.php:211 +#: ../../mod/ping.php:264 #, php-format msgid "{0} disliked %s's post" msgstr "" -#: ../../mod/ping.php:216 +#: ../../mod/ping.php:269 #, php-format msgid "{0} is now friends with %s" msgstr "" -#: ../../mod/ping.php:221 +#: ../../mod/ping.php:274 msgid "{0} posted" msgstr "" -#: ../../mod/ping.php:226 +#: ../../mod/ping.php:279 #, php-format msgid "{0} tagged %s's post with #%s" msgstr "" -#: ../../mod/ping.php:232 +#: ../../mod/ping.php:285 msgid "{0} mentioned you in a post" msgstr "" @@ -4405,8 +4390,8 @@ msgstr "" msgid "Edit visibility" msgstr "" -#: ../../mod/filer.php:29 ../../include/conversation.php:1155 -#: ../../include/conversation.php:1172 +#: ../../mod/filer.php:29 ../../include/conversation.php:837 +#: ../../include/conversation.php:854 msgid "Save to Folder:" msgstr "" @@ -4414,7 +4399,7 @@ msgstr "" msgid "- select -" msgstr "" -#: ../../mod/tagger.php:95 ../../include/conversation.php:267 +#: ../../mod/tagger.php:95 ../../include/conversation.php:265 #, php-format msgid "%1$s tagged %2$s's %3$s with %4$s" msgstr "" @@ -4672,7 +4657,7 @@ msgid "Unable to set contact photo." msgstr "" #: ../../mod/dfrn_confirm.php:477 ../../include/diaspora.php:608 -#: ../../include/conversation.php:173 +#: ../../include/conversation.php:171 #, php-format msgid "%1$s is now friends with %2$s" msgstr "" @@ -4747,7 +4732,7 @@ msgstr "" msgid "Updating contacts" msgstr "" -#: ../../addon/facebook/facebook.php:551 +#: ../../addon/facebook/facebook.php:551 ../../addon/fbpost/fbpost.php:192 msgid "Facebook API key is missing." msgstr "" @@ -4763,13 +4748,13 @@ msgstr "" msgid "Remove Facebook connector" msgstr "" -#: ../../addon/facebook/facebook.php:576 +#: ../../addon/facebook/facebook.php:576 ../../addon/fbpost/fbpost.php:217 msgid "" "Re-authenticate [This is necessary whenever your Facebook password is " "changed.]" msgstr "" -#: ../../addon/facebook/facebook.php:583 +#: ../../addon/facebook/facebook.php:583 ../../addon/fbpost/fbpost.php:224 msgid "Post to Facebook by default" msgstr "" @@ -4835,11 +4820,11 @@ msgstr "" msgid "Facebook Connector Settings" msgstr "" -#: ../../addon/facebook/facebook.php:744 +#: ../../addon/facebook/facebook.php:744 ../../addon/fbpost/fbpost.php:255 msgid "Facebook API Key" msgstr "" -#: ../../addon/facebook/facebook.php:754 +#: ../../addon/facebook/facebook.php:754 ../../addon/fbpost/fbpost.php:262 msgid "" "Error: it appears that you have specified the App-ID and -Secret in your ." "htconfig.php file. As long as they are specified there, they cannot be set " @@ -4862,11 +4847,11 @@ msgid "" "going on." msgstr "" -#: ../../addon/facebook/facebook.php:766 +#: ../../addon/facebook/facebook.php:766 ../../addon/fbpost/fbpost.php:264 msgid "App-ID / API-Key" msgstr "" -#: ../../addon/facebook/facebook.php:767 +#: ../../addon/facebook/facebook.php:767 ../../addon/fbpost/fbpost.php:265 msgid "Application secret" msgstr "" @@ -4901,38 +4886,38 @@ msgstr "" msgid "Activate Real-Time Updates" msgstr "" -#: ../../addon/facebook/facebook.php:799 +#: ../../addon/facebook/facebook.php:799 ../../addon/fbpost/fbpost.php:282 #: ../../addon/dav/friendica/layout.fnk.php:361 msgid "The new values have been saved." msgstr "" -#: ../../addon/facebook/facebook.php:823 +#: ../../addon/facebook/facebook.php:823 ../../addon/fbpost/fbpost.php:301 msgid "Post to Facebook" msgstr "" -#: ../../addon/facebook/facebook.php:921 +#: ../../addon/facebook/facebook.php:921 ../../addon/fbpost/fbpost.php:399 msgid "" "Post to Facebook cancelled because of multi-network access permission " "conflict." msgstr "" -#: ../../addon/facebook/facebook.php:1149 +#: ../../addon/facebook/facebook.php:1149 ../../addon/fbpost/fbpost.php:610 msgid "View on Friendica" msgstr "" -#: ../../addon/facebook/facebook.php:1182 +#: ../../addon/facebook/facebook.php:1182 ../../addon/fbpost/fbpost.php:643 msgid "Facebook post failed. Queued for retry." msgstr "" -#: ../../addon/facebook/facebook.php:1222 +#: ../../addon/facebook/facebook.php:1222 ../../addon/fbpost/fbpost.php:683 msgid "Your Facebook connection became invalid. Please Re-authenticate." msgstr "" -#: ../../addon/facebook/facebook.php:1223 +#: ../../addon/facebook/facebook.php:1223 ../../addon/fbpost/fbpost.php:684 msgid "Facebook connection became invalid" msgstr "" -#: ../../addon/facebook/facebook.php:1224 +#: ../../addon/facebook/facebook.php:1224 ../../addon/fbpost/fbpost.php:685 #, php-format msgid "" "Hi %1$s,\n" @@ -4986,6 +4971,26 @@ msgstr "" msgid "Delete the whole cache" msgstr "" +#: ../../addon/fbpost/fbpost.php:172 +msgid "Facebook Post disabled" +msgstr "" + +#: ../../addon/fbpost/fbpost.php:199 +msgid "Facebook Post" +msgstr "" + +#: ../../addon/fbpost/fbpost.php:205 +msgid "Install Facebook Post connector for this account." +msgstr "" + +#: ../../addon/fbpost/fbpost.php:212 +msgid "Remove Facebook Post connector" +msgstr "" + +#: ../../addon/fbpost/fbpost.php:240 +msgid "Facebook Post Settings" +msgstr "" + #: ../../addon/widgets/widget_like.php:58 #, php-format msgid "%d person likes this" @@ -5045,11 +5050,11 @@ msgid "did something obscenely biological to" msgstr "" #: ../../addon/morepokes/morepokes.php:22 -msgid "point out the new poke feature to" +msgid "point out the poke feature to" msgstr "" #: ../../addon/morepokes/morepokes.php:22 -msgid "pointed out the new poke feature to" +msgid "pointed out the poke feature to" msgstr "" #: ../../addon/morepokes/morepokes.php:23 @@ -5061,112 +5066,108 @@ msgid "declared undying love for" msgstr "" #: ../../addon/morepokes/morepokes.php:24 -msgid "set fire to" -msgstr "" - -#: ../../addon/morepokes/morepokes.php:25 msgid "patent" msgstr "" -#: ../../addon/morepokes/morepokes.php:25 +#: ../../addon/morepokes/morepokes.php:24 msgid "patented" msgstr "" -#: ../../addon/morepokes/morepokes.php:26 +#: ../../addon/morepokes/morepokes.php:25 msgid "stroke beard" msgstr "" -#: ../../addon/morepokes/morepokes.php:26 +#: ../../addon/morepokes/morepokes.php:25 msgid "stroked their beard at" msgstr "" -#: ../../addon/morepokes/morepokes.php:27 +#: ../../addon/morepokes/morepokes.php:26 msgid "" "bemoan the declining standards of modern secondary and tertiary education to" msgstr "" -#: ../../addon/morepokes/morepokes.php:27 +#: ../../addon/morepokes/morepokes.php:26 msgid "" "bemoans the declining standards of modern secondary and tertiary education to" msgstr "" -#: ../../addon/morepokes/morepokes.php:28 +#: ../../addon/morepokes/morepokes.php:27 msgid "hug" msgstr "" -#: ../../addon/morepokes/morepokes.php:28 +#: ../../addon/morepokes/morepokes.php:27 msgid "hugged" msgstr "" -#: ../../addon/morepokes/morepokes.php:29 +#: ../../addon/morepokes/morepokes.php:28 msgid "kiss" msgstr "" -#: ../../addon/morepokes/morepokes.php:29 +#: ../../addon/morepokes/morepokes.php:28 msgid "kissed" msgstr "" -#: ../../addon/morepokes/morepokes.php:30 +#: ../../addon/morepokes/morepokes.php:29 msgid "raise eyebrows at" msgstr "" -#: ../../addon/morepokes/morepokes.php:30 +#: ../../addon/morepokes/morepokes.php:29 msgid "raised their eyebrows at" msgstr "" -#: ../../addon/morepokes/morepokes.php:31 +#: ../../addon/morepokes/morepokes.php:30 msgid "insult" msgstr "" -#: ../../addon/morepokes/morepokes.php:31 +#: ../../addon/morepokes/morepokes.php:30 msgid "insulted" msgstr "" -#: ../../addon/morepokes/morepokes.php:32 +#: ../../addon/morepokes/morepokes.php:31 msgid "praise" msgstr "" -#: ../../addon/morepokes/morepokes.php:32 +#: ../../addon/morepokes/morepokes.php:31 msgid "praised" msgstr "" -#: ../../addon/morepokes/morepokes.php:33 +#: ../../addon/morepokes/morepokes.php:32 msgid "be dubious of" msgstr "" -#: ../../addon/morepokes/morepokes.php:33 +#: ../../addon/morepokes/morepokes.php:32 msgid "was dubious of" msgstr "" -#: ../../addon/morepokes/morepokes.php:34 +#: ../../addon/morepokes/morepokes.php:33 msgid "eat" msgstr "" -#: ../../addon/morepokes/morepokes.php:34 +#: ../../addon/morepokes/morepokes.php:33 msgid "ate" msgstr "" -#: ../../addon/morepokes/morepokes.php:35 +#: ../../addon/morepokes/morepokes.php:34 msgid "giggle and fawn at" msgstr "" -#: ../../addon/morepokes/morepokes.php:35 +#: ../../addon/morepokes/morepokes.php:34 msgid "giggled and fawned at" msgstr "" -#: ../../addon/morepokes/morepokes.php:36 +#: ../../addon/morepokes/morepokes.php:35 msgid "doubt" msgstr "" -#: ../../addon/morepokes/morepokes.php:36 +#: ../../addon/morepokes/morepokes.php:35 msgid "doubted" msgstr "" -#: ../../addon/morepokes/morepokes.php:37 +#: ../../addon/morepokes/morepokes.php:36 msgid "glare" msgstr "" -#: ../../addon/morepokes/morepokes.php:37 +#: ../../addon/morepokes/morepokes.php:36 msgid "glared at" msgstr "" @@ -5218,11 +5219,11 @@ msgstr "" msgid "Post to LiveJournal by default" msgstr "" -#: ../../addon/nsfw/nsfw.php:47 +#: ../../addon/nsfw/nsfw.php:78 msgid "Not Safe For Work (General Purpose Content Filter) settings" msgstr "" -#: ../../addon/nsfw/nsfw.php:49 +#: ../../addon/nsfw/nsfw.php:80 msgid "" "This plugin looks in posts for the words/text you specify below, and " "collapses any content containing those keywords so it is not displayed at " @@ -5232,33 +5233,33 @@ msgid "" "can thereby be used as a general purpose content filter." msgstr "" -#: ../../addon/nsfw/nsfw.php:50 +#: ../../addon/nsfw/nsfw.php:81 msgid "Enable Content filter" msgstr "" -#: ../../addon/nsfw/nsfw.php:53 +#: ../../addon/nsfw/nsfw.php:84 msgid "Comma separated list of keywords to hide" msgstr "" -#: ../../addon/nsfw/nsfw.php:58 +#: ../../addon/nsfw/nsfw.php:89 msgid "Use /expression/ to provide regular expressions" msgstr "" -#: ../../addon/nsfw/nsfw.php:74 +#: ../../addon/nsfw/nsfw.php:105 msgid "NSFW Settings saved." msgstr "" -#: ../../addon/nsfw/nsfw.php:121 +#: ../../addon/nsfw/nsfw.php:157 #, php-format msgid "%s - Click to open/close" msgstr "" #: ../../addon/page/page.php:61 ../../addon/page/page.php:91 -#: ../../addon/forumlist/forumlist.php:54 +#: ../../addon/forumlist/forumlist.php:55 msgid "Forums" msgstr "" -#: ../../addon/page/page.php:129 ../../addon/forumlist/forumlist.php:88 +#: ../../addon/page/page.php:129 ../../addon/forumlist/forumlist.php:89 msgid "Forums:" msgstr "" @@ -5270,7 +5271,7 @@ msgstr "" msgid "Page Settings" msgstr "" -#: ../../addon/page/page.php:196 ../../addon/forumlist/forumlist.php:155 +#: ../../addon/page/page.php:196 msgid "How many forums to display on sidebar without paging" msgstr "" @@ -5322,8 +5323,8 @@ msgid "Latest likes" msgstr "" #: ../../addon/communityhome/communityhome.php:155 -#: ../../view/theme/diabook/theme.php:562 ../../include/text.php:1397 -#: ../../include/conversation.php:117 ../../include/conversation.php:247 +#: ../../view/theme/diabook/theme.php:562 ../../include/text.php:1437 +#: ../../include/conversation.php:117 ../../include/conversation.php:245 msgid "event" msgstr "" @@ -6103,7 +6104,7 @@ msgstr "" msgid "URL to embed:" msgstr "" -#: ../../addon/forumlist/forumlist.php:57 +#: ../../addon/forumlist/forumlist.php:58 msgid "show/hide" msgstr "" @@ -6111,84 +6112,84 @@ msgstr "" msgid "No forum subscriptions" msgstr "" -#: ../../addon/forumlist/forumlist.php:124 +#: ../../addon/forumlist/forumlist.php:125 msgid "Forumlist settings updated." msgstr "" -#: ../../addon/forumlist/forumlist.php:153 +#: ../../addon/forumlist/forumlist.php:150 msgid "Forumlist Settings" msgstr "" -#: ../../addon/forumlist/forumlist.php:158 -msgid "Randomise Forumlist/Forum list" +#: ../../addon/forumlist/forumlist.php:152 +msgid "Randomise forum list" msgstr "" -#: ../../addon/forumlist/forumlist.php:161 -msgid "Show forumlists/forums on profile forumlist" +#: ../../addon/forumlist/forumlist.php:155 +msgid "Show forums on profile page" msgstr "" -#: ../../addon/impressum/impressum.php:36 +#: ../../addon/impressum/impressum.php:37 msgid "Impressum" msgstr "" -#: ../../addon/impressum/impressum.php:49 -#: ../../addon/impressum/impressum.php:51 -#: ../../addon/impressum/impressum.php:83 +#: ../../addon/impressum/impressum.php:50 +#: ../../addon/impressum/impressum.php:52 +#: ../../addon/impressum/impressum.php:84 msgid "Site Owner" msgstr "" -#: ../../addon/impressum/impressum.php:49 -#: ../../addon/impressum/impressum.php:87 +#: ../../addon/impressum/impressum.php:50 +#: ../../addon/impressum/impressum.php:88 msgid "Email Address" msgstr "" -#: ../../addon/impressum/impressum.php:54 -#: ../../addon/impressum/impressum.php:85 +#: ../../addon/impressum/impressum.php:55 +#: ../../addon/impressum/impressum.php:86 msgid "Postal Address" msgstr "" -#: ../../addon/impressum/impressum.php:60 +#: ../../addon/impressum/impressum.php:61 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 "" -#: ../../addon/impressum/impressum.php:83 +#: ../../addon/impressum/impressum.php:84 msgid "The page operators name." msgstr "" -#: ../../addon/impressum/impressum.php:84 +#: ../../addon/impressum/impressum.php:85 msgid "Site Owners Profile" msgstr "" -#: ../../addon/impressum/impressum.php:84 +#: ../../addon/impressum/impressum.php:85 msgid "Profile address of the operator." msgstr "" -#: ../../addon/impressum/impressum.php:85 +#: ../../addon/impressum/impressum.php:86 msgid "How to contact the operator via snail mail. You can use BBCode here." msgstr "" -#: ../../addon/impressum/impressum.php:86 +#: ../../addon/impressum/impressum.php:87 msgid "Notes" msgstr "" -#: ../../addon/impressum/impressum.php:86 +#: ../../addon/impressum/impressum.php:87 msgid "" "Additional notes that are displayed beneath the contact information. You can " "use BBCode here." msgstr "" -#: ../../addon/impressum/impressum.php:87 +#: ../../addon/impressum/impressum.php:88 msgid "How to contact the operator via email. (will be displayed obfuscated)" msgstr "" -#: ../../addon/impressum/impressum.php:88 +#: ../../addon/impressum/impressum.php:89 msgid "Footer note" msgstr "" -#: ../../addon/impressum/impressum.php:88 +#: ../../addon/impressum/impressum.php:89 msgid "Text for the footer. You can use BBCode here." msgstr "" @@ -6498,6 +6499,58 @@ msgstr "" msgid "Post to InsaneJournal by default" msgstr "" +#: ../../addon/jappixmini/jappixmini.php:266 +msgid "Jappix Mini addon settings" +msgstr "" + +#: ../../addon/jappixmini/jappixmini.php:268 +msgid "Activate addon" +msgstr "" + +#: ../../addon/jappixmini/jappixmini.php:271 +msgid "Do not insert the Jappixmini Chat-Widget into the webinterface" +msgstr "" + +#: ../../addon/jappixmini/jappixmini.php:274 +msgid "Jabber username" +msgstr "" + +#: ../../addon/jappixmini/jappixmini.php:277 +msgid "Jabber server" +msgstr "" + +#: ../../addon/jappixmini/jappixmini.php:281 +msgid "Jabber BOSH host" +msgstr "" + +#: ../../addon/jappixmini/jappixmini.php:285 +msgid "Jabber password" +msgstr "" + +#: ../../addon/jappixmini/jappixmini.php:290 +msgid "Encrypt Jabber password with Friendica password (recommended)" +msgstr "" + +#: ../../addon/jappixmini/jappixmini.php:293 +msgid "Friendica password" +msgstr "" + +#: ../../addon/jappixmini/jappixmini.php:296 +msgid "Approve subscription requests from Friendica contacts automatically" +msgstr "" + +#: ../../addon/jappixmini/jappixmini.php:299 +msgid "Subscribe to Friendica contacts automatically" +msgstr "" + +#: ../../addon/jappixmini/jappixmini.php:302 +msgid "Purge internal list of jabber addresses of contacts" +msgstr "" + +#: ../../addon/jappixmini/jappixmini.php:308 +msgid "Add contact" +msgstr "" + #: ../../addon/viewsrc/viewsrc.php:37 msgid "View Source" msgstr "" @@ -6868,6 +6921,23 @@ msgstr "" msgid "Popular Channels" msgstr "" +#: ../../addon/fromapp/fromapp.php:38 +msgid "Fromapp settings updated." +msgstr "" + +#: ../../addon/fromapp/fromapp.php:64 +msgid "FromApp Settings" +msgstr "" + +#: ../../addon/fromapp/fromapp.php:66 +msgid "" +"The application name you would like to show your posts originating from." +msgstr "" + +#: ../../addon/fromapp/fromapp.php:70 +msgid "Use this application name even if another application was used." +msgstr "" + #: ../../addon/blogger/blogger.php:42 msgid "Post to blogger" msgstr "" @@ -6930,7 +7000,7 @@ msgstr "" #: ../../view/theme/cleanzero/config.php:82 #: ../../view/theme/diabook/config.php:192 -#: ../../view/theme/quattro/config.php:54 ../../view/theme/dispy/config.php:72 +#: ../../view/theme/quattro/config.php:55 ../../view/theme/dispy/config.php:72 msgid "Theme settings" msgstr "" @@ -6949,7 +7019,7 @@ msgid "Set theme width" msgstr "" #: ../../view/theme/cleanzero/config.php:86 -#: ../../view/theme/quattro/config.php:56 +#: ../../view/theme/quattro/config.php:57 msgid "Color scheme" msgstr "" @@ -7124,15 +7194,15 @@ msgstr "" msgid "Last tweets" msgstr "" -#: ../../view/theme/quattro/config.php:55 +#: ../../view/theme/quattro/config.php:56 msgid "Alignment" msgstr "" -#: ../../view/theme/quattro/config.php:55 +#: ../../view/theme/quattro/config.php:56 msgid "Left" msgstr "" -#: ../../view/theme/quattro/config.php:55 +#: ../../view/theme/quattro/config.php:56 msgid "Center" msgstr "" @@ -7410,7 +7480,7 @@ msgid "Sex Addict" msgstr "" #: ../../include/profile_selectors.php:42 ../../include/user.php:278 -#: ../../include/user.php:283 +#: ../../include/user.php:282 msgid "Friends" msgstr "" @@ -7553,7 +7623,7 @@ msgstr[1] "" msgid "poke" msgstr "" -#: ../../include/text.php:719 ../../include/conversation.php:212 +#: ../../include/text.php:719 ../../include/conversation.php:210 msgid "poked" msgstr "" @@ -7729,47 +7799,27 @@ msgstr "" msgid "bytes" msgstr "" -#: ../../include/text.php:1027 ../../include/text.php:1042 -msgid "remove" -msgstr "" - -#: ../../include/text.php:1027 ../../include/text.php:1042 -msgid "[remove]" -msgstr "" - -#: ../../include/text.php:1030 -msgid "Categories:" -msgstr "" - -#: ../../include/text.php:1045 -msgid "Filed under:" -msgstr "" - -#: ../../include/text.php:1061 ../../include/text.php:1073 +#: ../../include/text.php:1034 ../../include/text.php:1046 msgid "Click to open/close" msgstr "" -#: ../../include/text.php:1179 ../../include/user.php:236 +#: ../../include/text.php:1219 ../../include/user.php:236 msgid "default" msgstr "" -#: ../../include/text.php:1191 +#: ../../include/text.php:1231 msgid "Select an alternate language" msgstr "" -#: ../../include/text.php:1401 +#: ../../include/text.php:1441 msgid "activity" msgstr "" -#: ../../include/text.php:1403 -msgid "comment" -msgstr "" - -#: ../../include/text.php:1404 +#: ../../include/text.php:1444 msgid "post" msgstr "" -#: ../../include/text.php:1559 +#: ../../include/text.php:1599 msgid "Item filed" msgstr "" @@ -7777,7 +7827,7 @@ msgstr "" msgid "Sharing notification from Diaspora network" msgstr "" -#: ../../include/diaspora.php:2202 +#: ../../include/diaspora.php:2211 msgid "Attachments:" msgstr "" @@ -7832,7 +7882,7 @@ msgstr "" msgid "End this session" msgstr "" -#: ../../include/nav.php:49 ../../boot.php:1659 +#: ../../include/nav.php:49 ../../boot.php:1665 msgid "Status" msgstr "" @@ -8062,12 +8112,12 @@ msgstr "" msgid "%1$d %2$s ago" msgstr "" -#: ../../include/datetime.php:472 ../../include/items.php:1621 +#: ../../include/datetime.php:472 ../../include/items.php:1688 #, php-format msgid "%s's birthday" msgstr "" -#: ../../include/datetime.php:473 ../../include/items.php:1622 +#: ../../include/datetime.php:473 ../../include/items.php:1689 #, php-format msgid "Happy Birthday %s" msgstr "" @@ -8341,15 +8391,15 @@ msgstr "" msgid "following" msgstr "" -#: ../../include/items.php:3230 +#: ../../include/items.php:3299 msgid "A new person is sharing with you at " msgstr "" -#: ../../include/items.php:3230 +#: ../../include/items.php:3299 msgid "You have a new follower at " msgstr "" -#: ../../include/items.php:3911 +#: ../../include/items.php:3980 msgid "Archives" msgstr "" @@ -8443,163 +8493,175 @@ msgstr "" msgid "stopped following" msgstr "" -#: ../../include/Contact.php:220 ../../include/conversation.php:1052 +#: ../../include/Contact.php:220 ../../include/conversation.php:734 msgid "Poke" msgstr "" -#: ../../include/Contact.php:221 ../../include/conversation.php:1046 +#: ../../include/Contact.php:221 ../../include/conversation.php:728 msgid "View Status" msgstr "" -#: ../../include/Contact.php:222 ../../include/conversation.php:1047 +#: ../../include/Contact.php:222 ../../include/conversation.php:729 msgid "View Profile" msgstr "" -#: ../../include/Contact.php:223 ../../include/conversation.php:1048 +#: ../../include/Contact.php:223 ../../include/conversation.php:730 msgid "View Photos" msgstr "" #: ../../include/Contact.php:224 ../../include/Contact.php:237 -#: ../../include/conversation.php:1049 +#: ../../include/conversation.php:731 msgid "Network Posts" msgstr "" #: ../../include/Contact.php:225 ../../include/Contact.php:237 -#: ../../include/conversation.php:1050 +#: ../../include/conversation.php:732 msgid "Edit Contact" msgstr "" #: ../../include/Contact.php:226 ../../include/Contact.php:237 -#: ../../include/conversation.php:1051 +#: ../../include/conversation.php:733 msgid "Send PM" msgstr "" -#: ../../include/conversation.php:208 +#: ../../include/conversation.php:206 #, php-format msgid "%1$s poked %2$s" msgstr "" -#: ../../include/conversation.php:292 +#: ../../include/conversation.php:290 msgid "post/item" msgstr "" -#: ../../include/conversation.php:293 +#: ../../include/conversation.php:291 #, php-format msgid "%1$s marked %2$s's %3$s as favorite" msgstr "" -#: ../../include/conversation.php:952 +#: ../../include/conversation.php:545 ../../object/Item.php:218 +msgid "Categories:" +msgstr "" + +#: ../../include/conversation.php:546 ../../object/Item.php:219 +msgid "Filed under:" +msgstr "" + +#: ../../include/conversation.php:630 +msgid "remove" +msgstr "" + +#: ../../include/conversation.php:634 msgid "Delete Selected Items" msgstr "" -#: ../../include/conversation.php:1110 +#: ../../include/conversation.php:792 #, php-format msgid "%s likes this." msgstr "" -#: ../../include/conversation.php:1110 +#: ../../include/conversation.php:792 #, php-format msgid "%s doesn't like this." msgstr "" -#: ../../include/conversation.php:1114 +#: ../../include/conversation.php:796 #, php-format msgid "%2$d people like this." msgstr "" -#: ../../include/conversation.php:1116 +#: ../../include/conversation.php:798 #, php-format msgid "%2$d people don't like this." msgstr "" -#: ../../include/conversation.php:1122 +#: ../../include/conversation.php:804 msgid "and" msgstr "" -#: ../../include/conversation.php:1125 +#: ../../include/conversation.php:807 #, php-format msgid ", and %d other people" msgstr "" -#: ../../include/conversation.php:1126 +#: ../../include/conversation.php:808 #, php-format msgid "%s like this." msgstr "" -#: ../../include/conversation.php:1126 +#: ../../include/conversation.php:808 #, php-format msgid "%s don't like this." msgstr "" -#: ../../include/conversation.php:1150 ../../include/conversation.php:1167 +#: ../../include/conversation.php:832 ../../include/conversation.php:849 msgid "Visible to everybody" msgstr "" -#: ../../include/conversation.php:1152 ../../include/conversation.php:1169 +#: ../../include/conversation.php:834 ../../include/conversation.php:851 msgid "Please enter a video link/URL:" msgstr "" -#: ../../include/conversation.php:1153 ../../include/conversation.php:1170 +#: ../../include/conversation.php:835 ../../include/conversation.php:852 msgid "Please enter an audio link/URL:" msgstr "" -#: ../../include/conversation.php:1154 ../../include/conversation.php:1171 +#: ../../include/conversation.php:836 ../../include/conversation.php:853 msgid "Tag term:" msgstr "" -#: ../../include/conversation.php:1156 ../../include/conversation.php:1173 +#: ../../include/conversation.php:838 ../../include/conversation.php:855 msgid "Where are you right now?" msgstr "" -#: ../../include/conversation.php:1216 +#: ../../include/conversation.php:898 msgid "upload photo" msgstr "" -#: ../../include/conversation.php:1218 +#: ../../include/conversation.php:900 msgid "attach file" msgstr "" -#: ../../include/conversation.php:1220 +#: ../../include/conversation.php:902 msgid "web link" msgstr "" -#: ../../include/conversation.php:1221 +#: ../../include/conversation.php:903 msgid "Insert video link" msgstr "" -#: ../../include/conversation.php:1222 +#: ../../include/conversation.php:904 msgid "video link" msgstr "" -#: ../../include/conversation.php:1223 +#: ../../include/conversation.php:905 msgid "Insert audio link" msgstr "" -#: ../../include/conversation.php:1224 +#: ../../include/conversation.php:906 msgid "audio link" msgstr "" -#: ../../include/conversation.php:1226 +#: ../../include/conversation.php:908 msgid "set location" msgstr "" -#: ../../include/conversation.php:1228 +#: ../../include/conversation.php:910 msgid "clear location" msgstr "" -#: ../../include/conversation.php:1235 +#: ../../include/conversation.php:917 msgid "permissions" msgstr "" -#: ../../include/plugin.php:400 ../../include/plugin.php:402 +#: ../../include/plugin.php:389 ../../include/plugin.php:391 msgid "Click here to upgrade." msgstr "" -#: ../../include/plugin.php:408 +#: ../../include/plugin.php:397 msgid "This action exceeds the limits set by your subscription plan." msgstr "" -#: ../../include/plugin.php:413 +#: ../../include/plugin.php:402 msgid "This action is not available under your subscription plan." msgstr "" @@ -8685,18 +8747,18 @@ msgstr "" msgid "Events this week:" msgstr "" -#: ../../boot.php:1662 +#: ../../boot.php:1668 msgid "Status Messages and Posts" msgstr "" -#: ../../boot.php:1669 +#: ../../boot.php:1675 msgid "Profile Details" msgstr "" -#: ../../boot.php:1686 +#: ../../boot.php:1692 msgid "Events and Calendar" msgstr "" -#: ../../boot.php:1693 +#: ../../boot.php:1699 msgid "Only You Can See This" msgstr "" diff --git a/util/typo.php b/util/typo.php index bb2fc67c9f..a8055c8418 100644 --- a/util/typo.php +++ b/util/typo.php @@ -25,6 +25,13 @@ echo $file . "\n"; include_once($file); } + + echo "Directory: object\n"; + $files = glob('object/*.php'); + foreach($files as $file) { + echo $file . "\n"; + include_once($file); + } echo "Directory: addon\n"; $dirs = glob('addon/*'); diff --git a/view/admin_site.tpl b/view/admin_site.tpl index 6564565f7e..ceba97d3f1 100644 --- a/view/admin_site.tpl +++ b/view/admin_site.tpl @@ -76,7 +76,7 @@ {{ inc field_checkbox.tpl with $field=$dfrn_only }}{{ endinc }} {{ inc field_input.tpl with $field=$global_directory }}{{ endinc }} {{ inc field_checkbox.tpl with $field=$thread_allow }}{{ endinc }} - {{ inc field_checkbox.tpl with $field=$newuser_public }}{{ endinc }} + {{ inc field_checkbox.tpl with $field=$newuser_private }}{{ endinc }}
    diff --git a/view/admin_users.tpl b/view/admin_users.tpl index f67e4a0f74..c9ab0e3f73 100644 --- a/view/admin_users.tpl +++ b/view/admin_users.tpl @@ -70,11 +70,20 @@ $u.register_date $u.login_date $u.lastitem_date - $u.page-flags - + $u.page-flags {{ if $u.is_admin }}($siteadmin){{ endif }} + + {{ if $u.is_admin }} +   + {{ else }} + + {{ endif }} - - + {{ if $u.is_admin }} +   + {{ else }} + + + {{ endif }} {{ endfor }} diff --git a/view/ca/messages.po b/view/ca/messages.po index 25c3ce6dc9..2abf83b96e 100644 --- a/view/ca/messages.po +++ b/view/ca/messages.po @@ -4,19 +4,20 @@ # # Translators: # Rafael GARAU ESPINÓS , 2012. +# Rafael GARAU , 2012. msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: http://bugs.friendica.com/\n" -"POT-Creation-Date: 2012-03-06 15:09-0800\n" -"PO-Revision-Date: 2012-03-08 21:58+0000\n" -"Last-Translator: Rafael GARAU ESPINÓS \n" -"Language-Team: Catalan (http://www.transifex.net/projects/p/friendica/language/ca/)\n" +"POT-Creation-Date: 2012-09-25 10:00-0700\n" +"PO-Revision-Date: 2012-09-26 08:15+0000\n" +"Last-Translator: Rafael GARAU \n" +"Language-Team: Catalan (http://www.transifex.com/projects/p/friendica/language/ca/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: ca\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ../../mod/oexchange.php:25 msgid "Post successful." @@ -35,25 +36,32 @@ msgstr "Ajustos de Contacte aplicats." msgid "Contact update failed." msgstr "Fracassà l'actualització de Contacte" -#: ../../mod/crepair.php:115 ../../mod/wall_attach.php:43 -#: ../../mod/fsuggest.php:78 ../../mod/events.php:110 ../../mod/api.php:26 -#: ../../mod/api.php:31 ../../mod/photos.php:129 ../../mod/photos.php:865 -#: ../../mod/editpost.php:10 ../../mod/install.php:171 -#: ../../mod/notifications.php:62 ../../mod/contacts.php:125 -#: ../../mod/settings.php:49 ../../mod/settings.php:411 -#: ../../mod/settings.php:416 ../../mod/manage.php:86 ../../mod/network.php:6 -#: ../../mod/notes.php:20 ../../mod/attach.php:33 ../../mod/group.php:19 -#: ../../mod/viewcontacts.php:22 ../../mod/register.php:36 -#: ../../mod/regmod.php:111 ../../mod/item.php:124 ../../mod/item.php:140 -#: ../../mod/profile_photo.php:19 ../../mod/profile_photo.php:137 -#: ../../mod/profile_photo.php:148 ../../mod/profile_photo.php:159 -#: ../../mod/message.php:9 ../../mod/message.php:46 ../../mod/allfriends.php:9 -#: ../../mod/wall_upload.php:42 ../../mod/follow.php:8 ../../mod/common.php:9 -#: ../../mod/display.php:133 ../../mod/profiles.php:7 -#: ../../mod/profiles.php:229 ../../mod/delegate.php:6 +#: ../../mod/crepair.php:115 ../../mod/wall_attach.php:55 +#: ../../mod/fsuggest.php:78 ../../mod/events.php:140 ../../mod/api.php:26 +#: ../../mod/api.php:31 ../../mod/photos.php:128 ../../mod/photos.php:972 +#: ../../mod/editpost.php:10 ../../mod/install.php:151 ../../mod/poke.php:135 +#: ../../mod/notifications.php:66 ../../mod/contacts.php:146 +#: ../../mod/settings.php:86 ../../mod/settings.php:525 +#: ../../mod/settings.php:530 ../../mod/manage.php:87 ../../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:126 +#: ../../mod/item.php:142 ../../mod/mood.php:114 +#: ../../mod/profile_photo.php:19 ../../mod/profile_photo.php:169 +#: ../../mod/profile_photo.php:180 ../../mod/profile_photo.php:193 +#: ../../mod/message.php:38 ../../mod/message.php:168 +#: ../../mod/allfriends.php:9 ../../mod/nogroup.php:25 +#: ../../mod/wall_upload.php:64 ../../mod/follow.php:9 +#: ../../mod/display.php:141 ../../mod/profiles.php:7 +#: ../../mod/profiles.php:413 ../../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:332 -#: ../../include/items.php:3030 ../../index.php:288 +#: ../../mod/dfrn_confirm.php:53 ../../addon/facebook/facebook.php:510 +#: ../../addon/facebook/facebook.php:516 ../../addon/fbpost/fbpost.php:159 +#: ../../addon/fbpost/fbpost.php:165 +#: ../../addon/dav/friendica/layout.fnk.php:354 ../../include/items.php:3908 +#: ../../index.php:317 msgid "Permission denied." msgstr "Permís denegat." @@ -82,18 +90,18 @@ msgstr "Si us plau, prem el botó 'Tornar' ara si no saps segur msgid "Return to contact editor" msgstr "Tornar al editor de contactes" -#: ../../mod/crepair.php:148 ../../mod/settings.php:462 -#: ../../mod/settings.php:488 ../../mod/admin.php:484 ../../mod/admin.php:493 +#: ../../mod/crepair.php:148 ../../mod/settings.php:545 +#: ../../mod/settings.php:571 ../../mod/admin.php:692 ../../mod/admin.php:702 msgid "Name" msgstr "Nom" #: ../../mod/crepair.php:149 msgid "Account Nickname" -msgstr "Malnom de Compte" +msgstr "Àlies del Compte" #: ../../mod/crepair.php:150 msgid "@Tagname - overrides Name/Nickname" -msgstr "@Tagname - té prel·lació sobre Nom/Malnom" +msgstr "@Tagname - té prel·lació sobre Nom/Àlies" #: ../../mod/crepair.php:151 msgid "Account URL" @@ -120,38 +128,57 @@ msgid "New photo from this URL" msgstr "Nova foto d'aquesta URL" #: ../../mod/crepair.php:166 ../../mod/fsuggest.php:107 -#: ../../mod/events.php:400 ../../mod/photos.php:900 ../../mod/photos.php:958 -#: ../../mod/photos.php:1182 ../../mod/photos.php:1222 -#: ../../mod/photos.php:1262 ../../mod/photos.php:1293 -#: ../../mod/install.php:251 ../../mod/install.php:289 -#: ../../mod/localtime.php:45 ../../mod/contacts.php:319 -#: ../../mod/settings.php:460 ../../mod/settings.php:603 -#: ../../mod/settings.php:797 ../../mod/manage.php:109 ../../mod/group.php:80 -#: ../../mod/admin.php:313 ../../mod/admin.php:481 ../../mod/admin.php:609 -#: ../../mod/admin.php:776 ../../mod/admin.php:856 ../../mod/profiles.php:375 -#: ../../mod/invite.php:106 ../../addon/facebook/facebook.php:411 -#: ../../addon/yourls/yourls.php:76 ../../addon/ljpost/ljpost.php:92 -#: ../../addon/nsfw/nsfw.php:57 +#: ../../mod/events.php:455 ../../mod/photos.php:1005 +#: ../../mod/photos.php:1081 ../../mod/photos.php:1338 +#: ../../mod/photos.php:1378 ../../mod/photos.php:1419 +#: ../../mod/photos.php:1451 ../../mod/install.php:246 +#: ../../mod/install.php:284 ../../mod/localtime.php:45 ../../mod/poke.php:199 +#: ../../mod/content.php:693 ../../mod/contacts.php:348 +#: ../../mod/settings.php:543 ../../mod/settings.php:697 +#: ../../mod/settings.php:769 ../../mod/settings.php:976 +#: ../../mod/group.php:85 ../../mod/mood.php:137 ../../mod/message.php:294 +#: ../../mod/message.php:480 ../../mod/admin.php:443 ../../mod/admin.php:689 +#: ../../mod/admin.php:826 ../../mod/admin.php:1025 ../../mod/admin.php:1112 +#: ../../mod/profiles.php:583 ../../mod/invite.php:119 +#: ../../addon/fromgplus/fromgplus.php:40 +#: ../../addon/facebook/facebook.php:619 +#: ../../addon/snautofollow/snautofollow.php:64 ../../addon/bg/bg.php:90 +#: ../../addon/fbpost/fbpost.php:226 ../../addon/yourls/yourls.php:76 +#: ../../addon/ljpost/ljpost.php:93 ../../addon/nsfw/nsfw.php:88 +#: ../../addon/page/page.php:210 ../../addon/planets/planets.php:158 #: ../../addon/uhremotestorage/uhremotestorage.php:89 -#: ../../addon/randplace/randplace.php:179 ../../addon/dwpost/dwpost.php:92 -#: ../../addon/drpost/drpost.php:110 ../../addon/geonames/geonames.php:187 -#: ../../addon/oembed.old/oembed.php:41 ../../addon/impressum/impressum.php:69 -#: ../../addon/blockem/blockem.php:57 ../../addon/qcomment/qcomment.php:61 +#: ../../addon/randplace/randplace.php:177 ../../addon/dwpost/dwpost.php:93 +#: ../../addon/drpost/drpost.php:110 ../../addon/startpage/startpage.php:92 +#: ../../addon/geonames/geonames.php:187 ../../addon/oembed.old/oembed.php:41 +#: ../../addon/forumlist/forumlist.php:169 +#: ../../addon/impressum/impressum.php:83 +#: ../../addon/notimeline/notimeline.php:64 ../../addon/blockem/blockem.php:57 +#: ../../addon/qcomment/qcomment.php:61 #: ../../addon/openstreetmap/openstreetmap.php:70 -#: ../../addon/editplain/editplain.php:84 ../../addon/blackout/blackout.php:94 -#: ../../addon/pageheader/pageheader.php:52 -#: ../../addon/statusnet/statusnet.php:273 -#: ../../addon/statusnet/statusnet.php:287 -#: ../../addon/statusnet/statusnet.php:313 -#: ../../addon/statusnet/statusnet.php:320 -#: ../../addon/statusnet/statusnet.php:345 -#: ../../addon/statusnet/statusnet.php:532 ../../addon/tumblr/tumblr.php:90 +#: ../../addon/group_text/group_text.php:84 +#: ../../addon/libravatar/libravatar.php:99 +#: ../../addon/libertree/libertree.php:90 ../../addon/altpager/altpager.php:87 +#: ../../addon/mathjax/mathjax.php:42 ../../addon/editplain/editplain.php:84 +#: ../../addon/blackout/blackout.php:98 ../../addon/gravatar/gravatar.php:95 +#: ../../addon/pageheader/pageheader.php:55 ../../addon/ijpost/ijpost.php:93 +#: ../../addon/jappixmini/jappixmini.php:307 +#: ../../addon/statusnet/statusnet.php:278 +#: ../../addon/statusnet/statusnet.php:292 +#: ../../addon/statusnet/statusnet.php:318 +#: ../../addon/statusnet/statusnet.php:325 +#: ../../addon/statusnet/statusnet.php:353 +#: ../../addon/statusnet/statusnet.php:576 ../../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:175 -#: ../../addon/twitter/twitter.php:201 ../../addon/twitter/twitter.php:355 -#: ../../addon/posterous/posterous.php:90 -#: ../../view/theme/quattro/theme.php:15 ../../include/conversation.php:552 +#: ../../addon/wppost/wppost.php:110 ../../addon/showmore/showmore.php:48 +#: ../../addon/piwik/piwik.php:89 ../../addon/twitter/twitter.php:180 +#: ../../addon/twitter/twitter.php:209 ../../addon/twitter/twitter.php:394 +#: ../../addon/irc/irc.php:55 ../../addon/fromapp/fromapp.php:77 +#: ../../addon/blogger/blogger.php:102 ../../addon/posterous/posterous.php:103 +#: ../../view/theme/cleanzero/config.php:80 +#: ../../view/theme/diabook/theme.php:757 +#: ../../view/theme/diabook/config.php:190 +#: ../../view/theme/quattro/config.php:53 ../../view/theme/dispy/config.php:70 +#: ../../include/conversation.php:607 ../../object/Item.php:559 msgid "Submit" msgstr "Enviar" @@ -159,24 +186,25 @@ msgstr "Enviar" msgid "Help:" msgstr "Ajuda:" -#: ../../mod/help.php:34 ../../include/nav.php:82 +#: ../../mod/help.php:34 ../../addon/dav/friendica/layout.fnk.php:225 +#: ../../include/nav.php:86 msgid "Help" msgstr "Ajuda" -#: ../../mod/help.php:38 ../../index.php:221 +#: ../../mod/help.php:38 ../../index.php:226 msgid "Not Found" msgstr "No trobat" -#: ../../mod/help.php:41 ../../index.php:224 +#: ../../mod/help.php:41 ../../index.php:229 msgid "Page not found." msgstr "Pàgina no trobada." -#: ../../mod/wall_attach.php:57 +#: ../../mod/wall_attach.php:69 #, php-format msgid "File exceeds size limit of %d" msgstr "L'arxiu excedeix la mida límit de %d" -#: ../../mod/wall_attach.php:85 ../../mod/wall_attach.php:96 +#: ../../mod/wall_attach.php:110 ../../mod/wall_attach.php:121 msgid "File upload failed." msgstr "La càrrega de fitxers ha fallat." @@ -191,85 +219,97 @@ msgstr "Suggerir Amics" #: ../../mod/fsuggest.php:99 #, php-format msgid "Suggest a friend for %s" -msgstr "Suggerir una amic per a %s" +msgstr "Suggerir un amic per a %s" -#: ../../mod/events.php:62 -msgid "Event description and start time are required." -msgstr "Es requereix descripció de l'esdeveniment i l'hora d'inici." +#: ../../mod/events.php:66 +msgid "Event title and start time are required." +msgstr "Títol d'esdeveniment i hora d'inici requerits." -#: ../../mod/events.php:230 +#: ../../mod/events.php:279 msgid "l, F j" msgstr "l, F j" -#: ../../mod/events.php:252 +#: ../../mod/events.php:301 msgid "Edit event" msgstr "Editar esdeveniment" -#: ../../mod/events.php:272 ../../include/text.php:982 +#: ../../mod/events.php:323 ../../include/text.php:1187 msgid "link to source" msgstr "Enllaç al origen" -#: ../../mod/events.php:296 ../../include/nav.php:50 ../../boot.php:1349 +#: ../../mod/events.php:347 ../../view/theme/diabook/theme.php:131 +#: ../../include/nav.php:52 ../../boot.php:1689 msgid "Events" msgstr "Esdeveniments" -#: ../../mod/events.php:297 +#: ../../mod/events.php:348 msgid "Create New Event" msgstr "Crear un nou esdeveniment" -#: ../../mod/events.php:298 +#: ../../mod/events.php:349 ../../addon/dav/friendica/layout.fnk.php:263 msgid "Previous" msgstr "Previ" -#: ../../mod/events.php:299 ../../mod/install.php:210 +#: ../../mod/events.php:350 ../../mod/install.php:205 +#: ../../addon/dav/friendica/layout.fnk.php:266 msgid "Next" -msgstr "Proper" +msgstr "Següent" -#: ../../mod/events.php:371 +#: ../../mod/events.php:423 msgid "hour:minute" msgstr "hora:minut" -#: ../../mod/events.php:380 +#: ../../mod/events.php:433 msgid "Event details" msgstr "Detalls del esdeveniment" -#: ../../mod/events.php:381 +#: ../../mod/events.php:434 #, php-format -msgid "Format is %s %s. Starting date and Description are required." -msgstr "El format és %s %s. Es requereix Data d'inici i Descripció." +msgid "Format is %s %s. Starting date and Title are required." +msgstr "El Format és %s %s. Data d'inici i títol requerits." -#: ../../mod/events.php:383 +#: ../../mod/events.php:436 msgid "Event Starts:" msgstr "Inici d'Esdeveniment:" -#: ../../mod/events.php:386 +#: ../../mod/events.php:436 ../../mod/events.php:450 +msgid "Required" +msgstr "Requerit" + +#: ../../mod/events.php:439 msgid "Finish date/time is not known or not relevant" msgstr "La data/hora de finalització no es coneixen o no són relevants" -#: ../../mod/events.php:388 +#: ../../mod/events.php:441 msgid "Event Finishes:" msgstr "L'esdeveniment Finalitza:" -#: ../../mod/events.php:391 +#: ../../mod/events.php:444 msgid "Adjust for viewer timezone" msgstr "Ajustar a la zona horaria de l'espectador" -#: ../../mod/events.php:393 +#: ../../mod/events.php:446 msgid "Description:" msgstr "Descripció:" -#: ../../mod/events.php:395 ../../include/event.php:37 -#: ../../include/bb2diaspora.php:260 ../../boot.php:980 +#: ../../mod/events.php:448 ../../mod/directory.php:134 +#: ../../include/event.php:40 ../../include/bb2diaspora.php:412 +#: ../../boot.php:1226 msgid "Location:" msgstr "Ubicació:" -#: ../../mod/events.php:397 +#: ../../mod/events.php:450 +msgid "Title:" +msgstr "Títol:" + +#: ../../mod/events.php:452 msgid "Share this event" msgstr "Compartir aquest esdeveniment" -#: ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 -#: ../../mod/dfrn_request.php:686 ../../mod/settings.php:461 -#: ../../mod/settings.php:487 ../../addon/js_upload/js_upload.php:45 +#: ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 ../../mod/editpost.php:136 +#: ../../mod/dfrn_request.php:847 ../../mod/settings.php:544 +#: ../../mod/settings.php:570 ../../addon/js_upload/js_upload.php:45 +#: ../../include/conversation.php:1307 msgid "Cancel" msgstr "Cancel·lar" @@ -286,10 +326,11 @@ msgid "Select a tag to remove: " msgstr "Selecciona etiqueta a esborrar:" #: ../../mod/tagrm.php:93 ../../mod/delegate.php:130 +#: ../../addon/dav/common/wdcal_edit.inc.php:468 msgid "Remove" msgstr "Esborrar" -#: ../../mod/dfrn_poll.php:91 ../../mod/dfrn_poll.php:517 +#: ../../mod/dfrn_poll.php:99 ../../mod/dfrn_poll.php:530 #, php-format msgid "%s welcomes %s" msgstr "%s Benvingut %s" @@ -312,290 +353,334 @@ msgid "" " and/or create new posts for you?" msgstr "Vol autoritzar a aquesta aplicació per accedir als teus missatges i contactes, i/o crear nous enviaments per a vostè?" -#: ../../mod/api.php:105 ../../mod/dfrn_request.php:676 -#: ../../mod/settings.php:692 ../../mod/settings.php:698 -#: ../../mod/settings.php:706 ../../mod/settings.php:710 -#: ../../mod/settings.php:715 ../../mod/settings.php:721 -#: ../../mod/settings.php:727 ../../mod/settings.php:787 -#: ../../mod/settings.php:788 ../../mod/settings.php:789 -#: ../../mod/settings.php:790 ../../mod/register.php:524 -#: ../../mod/profiles.php:357 +#: ../../mod/api.php:105 ../../mod/dfrn_request.php:835 +#: ../../mod/settings.php:892 ../../mod/settings.php:898 +#: ../../mod/settings.php:906 ../../mod/settings.php:910 +#: ../../mod/settings.php:915 ../../mod/settings.php:921 +#: ../../mod/settings.php:927 ../../mod/settings.php:933 +#: ../../mod/settings.php:963 ../../mod/settings.php:964 +#: ../../mod/settings.php:965 ../../mod/settings.php:966 +#: ../../mod/settings.php:967 ../../mod/register.php:236 +#: ../../mod/profiles.php:563 msgid "Yes" msgstr "Si" -#: ../../mod/api.php:106 ../../mod/dfrn_request.php:677 -#: ../../mod/settings.php:692 ../../mod/settings.php:698 -#: ../../mod/settings.php:706 ../../mod/settings.php:710 -#: ../../mod/settings.php:715 ../../mod/settings.php:721 -#: ../../mod/settings.php:727 ../../mod/settings.php:787 -#: ../../mod/settings.php:788 ../../mod/settings.php:789 -#: ../../mod/settings.php:790 ../../mod/register.php:525 -#: ../../mod/profiles.php:358 +#: ../../mod/api.php:106 ../../mod/dfrn_request.php:836 +#: ../../mod/settings.php:892 ../../mod/settings.php:898 +#: ../../mod/settings.php:906 ../../mod/settings.php:910 +#: ../../mod/settings.php:915 ../../mod/settings.php:921 +#: ../../mod/settings.php:927 ../../mod/settings.php:933 +#: ../../mod/settings.php:963 ../../mod/settings.php:964 +#: ../../mod/settings.php:965 ../../mod/settings.php:966 +#: ../../mod/settings.php:967 ../../mod/register.php:237 +#: ../../mod/profiles.php:564 msgid "No" msgstr "No" -#: ../../mod/photos.php:42 +#: ../../mod/photos.php:46 ../../boot.php:1682 msgid "Photo Albums" msgstr "Àlbum de Fotos" -#: ../../mod/photos.php:50 ../../mod/photos.php:150 ../../mod/photos.php:879 -#: ../../mod/photos.php:950 ../../mod/photos.php:965 ../../mod/photos.php:1371 -#: ../../mod/photos.php:1383 ../../addon/communityhome/communityhome.php:110 +#: ../../mod/photos.php:54 ../../mod/photos.php:149 ../../mod/photos.php:986 +#: ../../mod/photos.php:1073 ../../mod/photos.php:1088 +#: ../../mod/photos.php:1530 ../../mod/photos.php:1542 +#: ../../addon/communityhome/communityhome.php:110 +#: ../../view/theme/diabook/theme.php:598 msgid "Contact Photos" msgstr "Fotos de Contacte" -#: ../../mod/photos.php:57 ../../mod/photos.php:975 ../../mod/photos.php:1413 +#: ../../mod/photos.php:61 ../../mod/photos.php:1104 ../../mod/photos.php:1580 msgid "Upload New Photos" msgstr "Actualitzar Noves Fotos" -#: ../../mod/photos.php:68 ../../mod/settings.php:11 +#: ../../mod/photos.php:74 ../../mod/settings.php:23 msgid "everybody" msgstr "tothom" -#: ../../mod/photos.php:139 +#: ../../mod/photos.php:138 msgid "Contact information unavailable" msgstr "Informació del Contacte no disponible" -#: ../../mod/photos.php:150 ../../mod/photos.php:597 ../../mod/photos.php:950 -#: ../../mod/photos.php:965 ../../mod/register.php:327 -#: ../../mod/register.php:334 ../../mod/register.php:341 -#: ../../mod/profile_photo.php:58 ../../mod/profile_photo.php:65 -#: ../../mod/profile_photo.php:72 ../../mod/profile_photo.php:170 -#: ../../mod/profile_photo.php:246 ../../mod/profile_photo.php:255 +#: ../../mod/photos.php:149 ../../mod/photos.php:653 ../../mod/photos.php:1073 +#: ../../mod/photos.php:1088 ../../mod/profile_photo.php:74 +#: ../../mod/profile_photo.php:81 ../../mod/profile_photo.php:88 +#: ../../mod/profile_photo.php:204 ../../mod/profile_photo.php:296 +#: ../../mod/profile_photo.php:305 #: ../../addon/communityhome/communityhome.php:111 +#: ../../view/theme/diabook/theme.php:599 ../../include/user.php:324 +#: ../../include/user.php:331 ../../include/user.php:338 msgid "Profile Photos" msgstr "Fotos del Perfil" -#: ../../mod/photos.php:160 +#: ../../mod/photos.php:159 msgid "Album not found." msgstr "Àlbum no trobat." -#: ../../mod/photos.php:178 ../../mod/photos.php:959 +#: ../../mod/photos.php:177 ../../mod/photos.php:1082 msgid "Delete Album" msgstr "Eliminar Àlbum" -#: ../../mod/photos.php:241 ../../mod/photos.php:1183 +#: ../../mod/photos.php:240 ../../mod/photos.php:1339 msgid "Delete Photo" msgstr "Eliminar Foto" -#: ../../mod/photos.php:528 +#: ../../mod/photos.php:584 msgid "was tagged in a" msgstr "Fou etiquetat a un" -#: ../../mod/photos.php:528 ../../mod/like.php:127 ../../mod/tagger.php:70 -#: ../../addon/communityhome/communityhome.php:163 ../../include/text.php:1226 -#: ../../include/diaspora.php:1600 ../../include/conversation.php:53 -#: ../../include/conversation.php:126 +#: ../../mod/photos.php:584 ../../mod/like.php:145 ../../mod/tagger.php:62 +#: ../../addon/communityhome/communityhome.php:163 +#: ../../view/theme/diabook/theme.php:570 ../../include/text.php:1439 +#: ../../include/diaspora.php:1824 ../../include/conversation.php:125 +#: ../../include/conversation.php:253 msgid "photo" msgstr "foto" -#: ../../mod/photos.php:528 +#: ../../mod/photos.php:584 msgid "by" msgstr "per" -#: ../../mod/photos.php:631 ../../addon/js_upload/js_upload.php:315 +#: ../../mod/photos.php:689 ../../addon/js_upload/js_upload.php:315 msgid "Image exceeds size limit of " msgstr "La imatge excedeix el límit de " -#: ../../mod/photos.php:639 +#: ../../mod/photos.php:697 msgid "Image file is empty." msgstr "El fitxer de imatge és buit." -#: ../../mod/photos.php:653 ../../mod/profile_photo.php:122 -#: ../../mod/wall_upload.php:65 +#: ../../mod/photos.php:729 ../../mod/profile_photo.php:153 +#: ../../mod/wall_upload.php:110 msgid "Unable to process image." msgstr "Incapaç de processar la imatge." -#: ../../mod/photos.php:673 ../../mod/profile_photo.php:251 -#: ../../mod/wall_upload.php:84 +#: ../../mod/photos.php:756 ../../mod/profile_photo.php:301 +#: ../../mod/wall_upload.php:136 msgid "Image upload failed." msgstr "Actualització de la imatge fracassada." -#: ../../mod/photos.php:759 ../../mod/community.php:16 -#: ../../mod/dfrn_request.php:625 ../../mod/viewcontacts.php:17 -#: ../../mod/display.php:7 ../../mod/search.php:71 ../../mod/directory.php:33 +#: ../../mod/photos.php:842 ../../mod/community.php:18 +#: ../../mod/dfrn_request.php:760 ../../mod/viewcontacts.php:17 +#: ../../mod/display.php:7 ../../mod/search.php:73 ../../mod/directory.php:31 msgid "Public access denied." msgstr "Accés públic denegat." -#: ../../mod/photos.php:769 +#: ../../mod/photos.php:852 msgid "No photos selected" msgstr "No s'han seleccionat fotos" -#: ../../mod/photos.php:846 +#: ../../mod/photos.php:953 msgid "Access to this item is restricted." msgstr "L'accés a aquest element està restringit." -#: ../../mod/photos.php:907 +#: ../../mod/photos.php:1015 +#, php-format +msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage." +msgstr "Has emprat %1$.2f Mbytes de %2$.2f Mbytes del magatzem de fotos." + +#: ../../mod/photos.php:1018 +#, php-format +msgid "You have used %1$.2f Mbytes of photo storage." +msgstr "Has emprat %1$.2f Mbytes del magatzem de fotos." + +#: ../../mod/photos.php:1024 msgid "Upload Photos" msgstr "Carregar Fotos" -#: ../../mod/photos.php:910 ../../mod/photos.php:954 +#: ../../mod/photos.php:1028 ../../mod/photos.php:1077 msgid "New album name: " msgstr "Nou nom d'àlbum:" -#: ../../mod/photos.php:911 +#: ../../mod/photos.php:1029 msgid "or existing album name: " msgstr "o nom d'àlbum existent:" -#: ../../mod/photos.php:912 +#: ../../mod/photos.php:1030 msgid "Do not show a status post for this upload" msgstr "No tornis a mostrar un missatge d'estat d'aquesta pujada" -#: ../../mod/photos.php:914 ../../mod/photos.php:1178 +#: ../../mod/photos.php:1032 ../../mod/photos.php:1334 msgid "Permissions" msgstr "Permisos" -#: ../../mod/photos.php:969 +#: ../../mod/photos.php:1092 msgid "Edit Album" msgstr "Editar Àlbum" -#: ../../mod/photos.php:984 ../../mod/photos.php:1396 +#: ../../mod/photos.php:1098 +msgid "Show Newest First" +msgstr "" + +#: ../../mod/photos.php:1100 +msgid "Show Oldest First" +msgstr "" + +#: ../../mod/photos.php:1124 ../../mod/photos.php:1563 msgid "View Photo" msgstr "Veure Foto" -#: ../../mod/photos.php:1019 +#: ../../mod/photos.php:1159 msgid "Permission denied. Access to this item may be restricted." msgstr "Permís denegat. L'accés a aquest element pot estar restringit." -#: ../../mod/photos.php:1021 +#: ../../mod/photos.php:1161 msgid "Photo not available" msgstr "Foto no disponible" -#: ../../mod/photos.php:1071 +#: ../../mod/photos.php:1217 msgid "View photo" msgstr "Veure foto" -#: ../../mod/photos.php:1071 +#: ../../mod/photos.php:1217 msgid "Edit photo" msgstr "Editar foto" -#: ../../mod/photos.php:1072 +#: ../../mod/photos.php:1218 msgid "Use as profile photo" msgstr "Emprar com a foto del perfil" -#: ../../mod/photos.php:1078 ../../include/conversation.php:482 +#: ../../mod/photos.php:1224 ../../mod/content.php:603 +#: ../../include/conversation.php:436 ../../object/Item.php:103 msgid "Private Message" msgstr "Missatge Privat" -#: ../../mod/photos.php:1089 +#: ../../mod/photos.php:1243 msgid "View Full Size" msgstr "Veure'l a Mida Completa" -#: ../../mod/photos.php:1157 +#: ../../mod/photos.php:1311 msgid "Tags: " msgstr "Etiquetes:" -#: ../../mod/photos.php:1160 +#: ../../mod/photos.php:1314 msgid "[Remove any tag]" msgstr "Treure etiquetes" -#: ../../mod/photos.php:1171 +#: ../../mod/photos.php:1324 +msgid "Rotate CW (right)" +msgstr "Rotar CW (dreta)" + +#: ../../mod/photos.php:1325 +msgid "Rotate CCW (left)" +msgstr "Rotar CCW (esquerra)" + +#: ../../mod/photos.php:1327 msgid "New album name" msgstr "Nou nom d'àlbum" -#: ../../mod/photos.php:1174 +#: ../../mod/photos.php:1330 msgid "Caption" msgstr "Títol" -#: ../../mod/photos.php:1176 +#: ../../mod/photos.php:1332 msgid "Add a Tag" msgstr "Afegir una etiqueta" -#: ../../mod/photos.php:1180 +#: ../../mod/photos.php:1336 msgid "" "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" msgstr "Exemple: @bob, @Barbara_jensen, @jim@example.com, #California, #camping" -#: ../../mod/photos.php:1200 ../../include/conversation.php:529 +#: ../../mod/photos.php:1356 ../../mod/content.php:667 +#: ../../include/conversation.php:581 ../../object/Item.php:195 msgid "I like this (toggle)" msgstr "M'agrada això (canviar)" -#: ../../mod/photos.php:1201 ../../include/conversation.php:530 +#: ../../mod/photos.php:1357 ../../mod/content.php:668 +#: ../../include/conversation.php:582 ../../object/Item.php:196 msgid "I don't like this (toggle)" msgstr "No m'agrada això (canviar)" -#: ../../mod/photos.php:1202 ../../include/conversation.php:933 +#: ../../mod/photos.php:1358 ../../include/conversation.php:1268 msgid "Share" msgstr "Compartir" -#: ../../mod/photos.php:1203 ../../mod/editpost.php:104 -#: ../../mod/message.php:155 ../../mod/message.php:296 -#: ../../include/conversation.php:348 ../../include/conversation.php:694 -#: ../../include/conversation.php:950 +#: ../../mod/photos.php:1359 ../../mod/editpost.php:112 +#: ../../mod/content.php:482 ../../mod/content.php:845 +#: ../../mod/wallmessage.php:152 ../../mod/message.php:293 +#: ../../mod/message.php:481 ../../include/conversation.php:686 +#: ../../include/conversation.php:944 ../../include/conversation.php:1287 +#: ../../object/Item.php:257 msgid "Please wait" msgstr "Si us plau esperi" -#: ../../mod/photos.php:1219 ../../mod/photos.php:1259 -#: ../../mod/photos.php:1290 ../../include/conversation.php:549 +#: ../../mod/photos.php:1375 ../../mod/photos.php:1416 +#: ../../mod/photos.php:1448 ../../mod/content.php:690 +#: ../../include/conversation.php:604 ../../object/Item.php:556 msgid "This is you" msgstr "Aquest ets tu" -#: ../../mod/photos.php:1221 ../../mod/photos.php:1261 -#: ../../mod/photos.php:1292 ../../include/conversation.php:551 -#: ../../boot.php:447 +#: ../../mod/photos.php:1377 ../../mod/photos.php:1418 +#: ../../mod/photos.php:1450 ../../mod/content.php:692 +#: ../../include/conversation.php:606 ../../boot.php:574 +#: ../../object/Item.php:558 msgid "Comment" msgstr "Comentari" -#: ../../mod/photos.php:1223 ../../mod/editpost.php:123 -#: ../../include/conversation.php:553 ../../include/conversation.php:968 +#: ../../mod/photos.php:1379 ../../mod/editpost.php:133 +#: ../../mod/content.php:702 ../../include/conversation.php:616 +#: ../../include/conversation.php:1305 ../../object/Item.php:568 msgid "Preview" msgstr "Vista prèvia" -#: ../../mod/photos.php:1320 ../../mod/settings.php:520 -#: ../../mod/settings.php:601 ../../mod/group.php:158 ../../mod/admin.php:488 -#: ../../include/conversation.php:304 ../../include/conversation.php:573 +#: ../../mod/photos.php:1479 ../../mod/content.php:439 +#: ../../mod/content.php:723 ../../mod/settings.php:606 +#: ../../mod/settings.php:695 ../../mod/group.php:168 ../../mod/admin.php:696 +#: ../../include/conversation.php:448 ../../include/conversation.php:889 +#: ../../object/Item.php:116 msgid "Delete" msgstr "Esborrar" -#: ../../mod/photos.php:1402 +#: ../../mod/photos.php:1569 msgid "View Album" msgstr "Veure Àlbum" -#: ../../mod/photos.php:1411 +#: ../../mod/photos.php:1578 msgid "Recent Photos" msgstr "Fotos Recents" -#: ../../mod/community.php:21 +#: ../../mod/community.php:23 msgid "Not available." msgstr "No disponible." -#: ../../mod/community.php:30 ../../include/nav.php:97 +#: ../../mod/community.php:32 ../../view/theme/diabook/theme.php:133 +#: ../../include/nav.php:101 msgid "Community" msgstr "Comunitat" -#: ../../mod/community.php:60 ../../mod/search.php:118 +#: ../../mod/community.php:63 ../../mod/community.php:88 +#: ../../mod/search.php:148 ../../mod/search.php:174 msgid "No results." msgstr "Sense resultats." -#: ../../mod/friendica.php:43 +#: ../../mod/friendica.php:55 msgid "This is Friendica, version" msgstr "Això és Friendica, versió" -#: ../../mod/friendica.php:44 +#: ../../mod/friendica.php:56 msgid "running at web location" msgstr "funcionant en la ubicació web" -#: ../../mod/friendica.php:46 +#: ../../mod/friendica.php:58 msgid "" "Please visit Friendica.com to learn " "more about the Friendica project." msgstr "Si us plau, visiteu Friendica.com per obtenir més informació sobre el projecte Friendica." -#: ../../mod/friendica.php:48 +#: ../../mod/friendica.php:60 msgid "Bug reports and issues: please visit" msgstr "Pels informes d'error i problemes: si us plau, visiteu" -#: ../../mod/friendica.php:49 +#: ../../mod/friendica.php:61 msgid "" "Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - " "dot com" msgstr "Suggeriments, elogis, donacions, etc si us plau escrigui a \"Info\" en Friendica - dot com" -#: ../../mod/friendica.php:54 -msgid "Installed plugins/addons/apps" -msgstr "plugins/addons/apps instal·lats" +#: ../../mod/friendica.php:75 +msgid "Installed plugins/addons/apps:" +msgstr "plugins/addons/apps instal·lats:" -#: ../../mod/friendica.php:62 +#: ../../mod/friendica.php:88 msgid "No installed plugins/addons/apps" msgstr "plugins/addons/apps no instal·lats" @@ -607,253 +692,274 @@ msgstr "Element no trobat" msgid "Edit post" msgstr "Editar Enviament" -#: ../../mod/editpost.php:80 ../../include/conversation.php:919 +#: ../../mod/editpost.php:88 ../../include/conversation.php:1254 msgid "Post to Email" msgstr "Correu per enviar" -#: ../../mod/editpost.php:95 ../../mod/settings.php:519 -#: ../../include/conversation.php:560 +#: ../../mod/editpost.php:103 ../../mod/content.php:710 +#: ../../mod/settings.php:605 ../../include/conversation.php:441 +#: ../../object/Item.php:107 msgid "Edit" msgstr "Editar" -#: ../../mod/editpost.php:96 ../../mod/message.php:153 -#: ../../mod/message.php:294 ../../include/conversation.php:934 +#: ../../mod/editpost.php:104 ../../mod/wallmessage.php:150 +#: ../../mod/message.php:291 ../../mod/message.php:478 +#: ../../include/conversation.php:1269 msgid "Upload photo" msgstr "Carregar foto" -#: ../../mod/editpost.php:97 ../../include/conversation.php:936 +#: ../../mod/editpost.php:105 ../../include/conversation.php:1271 msgid "Attach file" msgstr "Adjunta fitxer" -#: ../../mod/editpost.php:98 ../../mod/message.php:154 -#: ../../mod/message.php:295 ../../include/conversation.php:938 +#: ../../mod/editpost.php:106 ../../mod/wallmessage.php:151 +#: ../../mod/message.php:292 ../../mod/message.php:479 +#: ../../include/conversation.php:1273 msgid "Insert web link" msgstr "Inserir enllaç web" -#: ../../mod/editpost.php:99 +#: ../../mod/editpost.php:107 msgid "Insert YouTube video" msgstr "Serà mostrat de forma preeminent a la pagina durant el procés de registre." -#: ../../mod/editpost.php:100 +#: ../../mod/editpost.php:108 msgid "Insert Vorbis [.ogg] video" msgstr "Inserir video Vorbis [.ogg]" -#: ../../mod/editpost.php:101 +#: ../../mod/editpost.php:109 msgid "Insert Vorbis [.ogg] audio" msgstr "Inserir audio Vorbis [.ogg]" -#: ../../mod/editpost.php:102 ../../include/conversation.php:944 +#: ../../mod/editpost.php:110 ../../include/conversation.php:1279 msgid "Set your location" msgstr "Canvia la teva ubicació" -#: ../../mod/editpost.php:103 ../../include/conversation.php:946 +#: ../../mod/editpost.php:111 ../../include/conversation.php:1281 msgid "Clear browser location" msgstr "neteja adreçes del navegador" -#: ../../mod/editpost.php:105 ../../include/conversation.php:951 +#: ../../mod/editpost.php:113 ../../include/conversation.php:1288 msgid "Permission settings" msgstr "Configuració de permisos" -#: ../../mod/editpost.php:113 ../../include/conversation.php:960 +#: ../../mod/editpost.php:121 ../../include/conversation.php:1297 msgid "CC: email addresses" msgstr "CC: Adreça de correu" -#: ../../mod/editpost.php:114 ../../include/conversation.php:961 +#: ../../mod/editpost.php:122 ../../include/conversation.php:1298 msgid "Public post" msgstr "Enviament públic" -#: ../../mod/editpost.php:117 ../../include/conversation.php:949 +#: ../../mod/editpost.php:125 ../../include/conversation.php:1284 msgid "Set title" msgstr "Canviar títol" -#: ../../mod/editpost.php:118 ../../include/conversation.php:963 +#: ../../mod/editpost.php:127 ../../include/conversation.php:1286 +msgid "Categories (comma-separated list)" +msgstr "Categories (lista separada per comes)" + +#: ../../mod/editpost.php:128 ../../include/conversation.php:1300 msgid "Example: bob@example.com, mary@example.com" msgstr "Exemple: bob@example.com, mary@example.com" -#: ../../mod/dfrn_request.php:92 +#: ../../mod/dfrn_request.php:93 msgid "This introduction has already been accepted." msgstr "Aquesta presentació ha estat acceptada." -#: ../../mod/dfrn_request.php:116 ../../mod/dfrn_request.php:381 +#: ../../mod/dfrn_request.php:118 ../../mod/dfrn_request.php:512 msgid "Profile location is not valid or does not contain profile information." msgstr "El perfil de situació no és vàlid o no contè informació de perfil" -#: ../../mod/dfrn_request.php:121 ../../mod/dfrn_request.php:386 +#: ../../mod/dfrn_request.php:123 ../../mod/dfrn_request.php:517 msgid "Warning: profile location has no identifiable owner name." msgstr "Atenció: El perfil de situació no te nom de propietari identificable." -#: ../../mod/dfrn_request.php:123 ../../mod/dfrn_request.php:388 +#: ../../mod/dfrn_request.php:125 ../../mod/dfrn_request.php:519 msgid "Warning: profile location has no profile photo." msgstr "Atenció: El perfil de situació no te foto de perfil" -#: ../../mod/dfrn_request.php:126 ../../mod/dfrn_request.php:391 +#: ../../mod/dfrn_request.php:128 ../../mod/dfrn_request.php:522 #, php-format msgid "%d required parameter was not found at the given location" msgid_plural "%d required parameters were not found at the given location" msgstr[0] "%d el paràmetre requerit no es va trobar al lloc indicat" msgstr[1] "%d els paràmetres requerits no es van trobar allloc indicat" -#: ../../mod/dfrn_request.php:167 +#: ../../mod/dfrn_request.php:170 msgid "Introduction complete." msgstr "Completada la presentació." -#: ../../mod/dfrn_request.php:191 +#: ../../mod/dfrn_request.php:209 msgid "Unrecoverable protocol error." msgstr "Error de protocol irrecuperable." -#: ../../mod/dfrn_request.php:219 +#: ../../mod/dfrn_request.php:237 msgid "Profile unavailable." msgstr "Perfil no disponible" -#: ../../mod/dfrn_request.php:244 +#: ../../mod/dfrn_request.php:262 #, php-format msgid "%s has received too many connection requests today." msgstr "%s avui ha rebut excesives peticions de connexió. " -#: ../../mod/dfrn_request.php:245 +#: ../../mod/dfrn_request.php:263 msgid "Spam protection measures have been invoked." msgstr "Mesures de protecció contra spam han estat invocades." -#: ../../mod/dfrn_request.php:246 +#: ../../mod/dfrn_request.php:264 msgid "Friends are advised to please try again in 24 hours." msgstr "S'aconsellà els amics que probin pasades 24 hores." -#: ../../mod/dfrn_request.php:306 +#: ../../mod/dfrn_request.php:326 msgid "Invalid locator" msgstr "Localitzador no vàlid" -#: ../../mod/dfrn_request.php:326 +#: ../../mod/dfrn_request.php:335 +msgid "Invalid email address." +msgstr "Adreça de correu no vàlida." + +#: ../../mod/dfrn_request.php:361 +msgid "This account has not been configured for email. Request failed." +msgstr "Aquest compte no s'ha configurat per al correu electrònic. Ha fallat la sol·licitud." + +#: ../../mod/dfrn_request.php:457 msgid "Unable to resolve your name at the provided location." msgstr "Incapaç de resoldre el teu nom al lloc facilitat." -#: ../../mod/dfrn_request.php:339 +#: ../../mod/dfrn_request.php:470 msgid "You have already introduced yourself here." msgstr "Has fer la teva presentació aquí." -#: ../../mod/dfrn_request.php:343 +#: ../../mod/dfrn_request.php:474 #, php-format msgid "Apparently you are already friends with %s." msgstr "Aparentment, ja tens amistat amb %s" -#: ../../mod/dfrn_request.php:364 +#: ../../mod/dfrn_request.php:495 msgid "Invalid profile URL." msgstr "Perfil URL no vàlid." -#: ../../mod/dfrn_request.php:370 ../../mod/follow.php:20 +#: ../../mod/dfrn_request.php:501 ../../include/follow.php:27 msgid "Disallowed profile URL." msgstr "Perfil URL no permès." -#: ../../mod/dfrn_request.php:439 ../../mod/contacts.php:102 +#: ../../mod/dfrn_request.php:570 ../../mod/contacts.php:123 msgid "Failed to update contact record." msgstr "Error en actualitzar registre de contacte." -#: ../../mod/dfrn_request.php:460 +#: ../../mod/dfrn_request.php:591 msgid "Your introduction has been sent." msgstr "La teva presentació ha estat enviada." -#: ../../mod/dfrn_request.php:513 +#: ../../mod/dfrn_request.php:644 msgid "Please login to confirm introduction." msgstr "Si us plau, entri per confirmar la presentació." -#: ../../mod/dfrn_request.php:527 +#: ../../mod/dfrn_request.php:658 msgid "" "Incorrect identity currently logged in. Please login to " "this profile." msgstr "Sesió iniciada amb la identificació incorrecta. Entra en aquest perfil." -#: ../../mod/dfrn_request.php:539 +#: ../../mod/dfrn_request.php:669 +msgid "Hide this contact" +msgstr "Amaga aquest contacte" + +#: ../../mod/dfrn_request.php:672 #, php-format msgid "Welcome home %s." msgstr "Benvingut de nou %s" -#: ../../mod/dfrn_request.php:540 +#: ../../mod/dfrn_request.php:673 #, php-format msgid "Please confirm your introduction/connection request to %s." msgstr "Si us plau, confirmi la seva sol·licitud de Presentació/Amistat a %s." -#: ../../mod/dfrn_request.php:541 +#: ../../mod/dfrn_request.php:674 msgid "Confirm" msgstr "Confirmar" -#: ../../mod/dfrn_request.php:582 ../../include/items.php:2566 +#: ../../mod/dfrn_request.php:715 ../../include/items.php:3287 msgid "[Name Withheld]" msgstr "[Nom Amagat]" -#: ../../mod/dfrn_request.php:666 -#, php-format -msgid "" -"Diaspora members: Please do not use this form. Instead, enter \"%s\" into " -"your Diaspora search bar." -msgstr "Membres de Diàspora: Si us plau, no utilitzi aquest formulari. Pel contrari, escriviu \"%s\" a la barra de cerca de Diàspora." - -#: ../../mod/dfrn_request.php:669 +#: ../../mod/dfrn_request.php:810 msgid "" "Please enter your 'Identity Address' from one of the following supported " -"social networks:" +"communications networks:" msgstr "Si us plau, introdueixi la seva \"Adreça Identificativa\" d'una de les següents xarxes socials suportades:" -#: ../../mod/dfrn_request.php:672 +#: ../../mod/dfrn_request.php:826 +msgid "Connect as an email follower (Coming soon)" +msgstr "Connectar com un seguidor de correu (Disponible aviat)" + +#: ../../mod/dfrn_request.php:828 +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 "Si encara no ets membre de la web social lliure, segueix aquest enllaç per a trobar un lloc Friendica públic i uneix-te avui." + +#: ../../mod/dfrn_request.php:831 msgid "Friend/Connection Request" msgstr "Sol·licitud d'Amistat" -#: ../../mod/dfrn_request.php:673 +#: ../../mod/dfrn_request.php:832 msgid "" "Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, " "testuser@identi.ca" msgstr "Exemples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca" -#: ../../mod/dfrn_request.php:674 +#: ../../mod/dfrn_request.php:833 msgid "Please answer the following:" msgstr "Si us plau, contesti les següents preguntes:" -#: ../../mod/dfrn_request.php:675 +#: ../../mod/dfrn_request.php:834 #, php-format msgid "Does %s know you?" msgstr "%s et coneix?" -#: ../../mod/dfrn_request.php:678 +#: ../../mod/dfrn_request.php:837 msgid "Add a personal note:" msgstr "Afegir una nota personal:" -#: ../../mod/dfrn_request.php:680 ../../include/contact_selectors.php:76 +#: ../../mod/dfrn_request.php:839 ../../include/contact_selectors.php:76 msgid "Friendica" msgstr "Friendica" -#: ../../mod/dfrn_request.php:681 +#: ../../mod/dfrn_request.php:840 msgid "StatusNet/Federated Social Web" msgstr "Web Social StatusNet/Federated " -#: ../../mod/dfrn_request.php:682 ../../mod/settings.php:555 +#: ../../mod/dfrn_request.php:841 ../../mod/settings.php:640 #: ../../include/contact_selectors.php:80 msgid "Diaspora" msgstr "Diaspora" -#: ../../mod/dfrn_request.php:683 -msgid "- please share from your own site as noted above" -msgstr "- si us plau, Comparteix des del teu propi lloc tal com s'ha dit abans." +#: ../../mod/dfrn_request.php:842 +#, php-format +msgid "" +" - please do not use this form. Instead, enter %s into your Diaspora search" +" bar." +msgstr " - per favor no utilitzi aquest formulari. Al contrari, entra %s en la barra de cerques de Diaspora." -#: ../../mod/dfrn_request.php:684 +#: ../../mod/dfrn_request.php:843 msgid "Your Identity Address:" msgstr "La Teva Adreça Identificativa:" -#: ../../mod/dfrn_request.php:685 +#: ../../mod/dfrn_request.php:846 msgid "Submit Request" msgstr "Sol·licitud Enviada" -#: ../../mod/install.php:111 +#: ../../mod/install.php:117 msgid "Friendica Social Communications Server - Setup" msgstr "Friendica Social Communications Server - Ajustos" -#: ../../mod/install.php:117 ../../mod/install.php:157 -#: ../../mod/install.php:230 -msgid "Database connection" -msgstr "Conexió a la base de dades" - -#: ../../mod/install.php:124 +#: ../../mod/install.php:123 msgid "Could not connect to database." msgstr "No puc connectar a la base de dades." -#: ../../mod/install.php:128 +#: ../../mod/install.php:127 msgid "Could not create table." msgstr "No puc creat taula." @@ -861,232 +967,246 @@ msgstr "No puc creat taula." msgid "Your Friendica site database has been installed." msgstr "La base de dades del teu lloc Friendica ha estat instal·lada." -#: ../../mod/install.php:134 -msgid "" -"IMPORTANT: You will need to [manually] setup a scheduled task for the " -"poller." -msgstr "IMPORTANT: necessitarà configurar [manualment] el programar una tasca pel sondejador (poller.php)" - -#: ../../mod/install.php:135 ../../mod/install.php:151 -#: ../../mod/install.php:209 -msgid "Please see the file \"INSTALL.txt\"." -msgstr "Per favor, consulti l'arxiu \"INSTALL.txt\"." - -#: ../../mod/install.php:137 -msgid "Proceed to registration" -msgstr "Procedir a la inscripció" - -#: ../../mod/install.php:143 -msgid "Proceed with Installation" -msgstr "Procedeixi amb la Instal·lació" - -#: ../../mod/install.php:150 +#: ../../mod/install.php:138 msgid "" "You may need to import the file \"database.sql\" manually using phpmyadmin " "or mysql." msgstr "Pot ser que hagi d'importar l'arxiu \"database.sql\" manualment amb phpmyadmin o mysql." -#: ../../mod/install.php:158 -msgid "Database import failed." -msgstr "La importació de base de dades ha fallat." +#: ../../mod/install.php:139 ../../mod/install.php:204 +#: ../../mod/install.php:488 +msgid "Please see the file \"INSTALL.txt\"." +msgstr "Per favor, consulti l'arxiu \"INSTALL.txt\"." -#: ../../mod/install.php:206 +#: ../../mod/install.php:201 msgid "System check" msgstr "Comprovació del Sistema" -#: ../../mod/install.php:211 +#: ../../mod/install.php:206 msgid "Check again" msgstr "Comprovi de nou" -#: ../../mod/install.php:231 +#: ../../mod/install.php:225 +msgid "Database connection" +msgstr "Conexió a la base de dades" + +#: ../../mod/install.php:226 msgid "" "In order to install Friendica we need to know how to connect to your " "database." msgstr "Per a instal·lar Friendica necessitem conèixer com connectar amb la deva base de dades." -#: ../../mod/install.php:232 +#: ../../mod/install.php:227 msgid "" "Please contact your hosting provider or site administrator if you have " "questions about these settings." msgstr "Per favor, posi's en contacte amb el seu proveïdor de hosting o administrador del lloc si té alguna pregunta sobre aquestes opcions." -#: ../../mod/install.php:233 +#: ../../mod/install.php:228 msgid "" "The database you specify below should already exist. If it does not, please " "create it before continuing." msgstr "La base de dades que especifiques ja hauria d'existir. Si no és així, crea-la abans de continuar." -#: ../../mod/install.php:237 +#: ../../mod/install.php:232 msgid "Database Server Name" msgstr "Nom del Servidor de base de Dades" -#: ../../mod/install.php:238 +#: ../../mod/install.php:233 msgid "Database Login Name" msgstr "Nom d'Usuari de la base de Dades" -#: ../../mod/install.php:239 +#: ../../mod/install.php:234 msgid "Database Login Password" msgstr "Contrasenya d'Usuari de la base de Dades" -#: ../../mod/install.php:240 +#: ../../mod/install.php:235 msgid "Database Name" msgstr "Nom de la base de Dades" -#: ../../mod/install.php:241 ../../mod/install.php:280 +#: ../../mod/install.php:236 ../../mod/install.php:275 msgid "Site administrator email address" msgstr "Adreça de correu del administrador del lloc" -#: ../../mod/install.php:241 ../../mod/install.php:280 +#: ../../mod/install.php:236 ../../mod/install.php:275 msgid "" "Your account email address must match this in order to use the web admin " "panel." msgstr "El seu compte d'adreça electrònica ha de coincidir per tal d'utilitzar el panell d'administració web." -#: ../../mod/install.php:245 ../../mod/install.php:283 +#: ../../mod/install.php:240 ../../mod/install.php:278 msgid "Please select a default timezone for your website" msgstr "Per favor, seleccioni una zona horària per defecte per al seu lloc web" -#: ../../mod/install.php:270 +#: ../../mod/install.php:265 msgid "Site settings" msgstr "Configuracions del lloc" -#: ../../mod/install.php:323 +#: ../../mod/install.php:318 msgid "Could not find a command line version of PHP in the web server PATH." msgstr "No es va poder trobar una versió de línia de comandos de PHP en la ruta del servidor web." -#: ../../mod/install.php:326 +#: ../../mod/install.php:319 +msgid "" +"If you don't have a command line version of PHP installed on server, you " +"will not be able to run background polling via cron. See 'Activating scheduled tasks'" +msgstr "Si no tens una versió de línia de comandos instal·lada al teu servidor PHP, no podràs fer córrer els sondejos via cron. Mira 'Activating scheduled tasks'" + +#: ../../mod/install.php:323 msgid "PHP executable path" msgstr "Direcció del executable PHP" -#: ../../mod/install.php:326 -msgid "Enter full path to php executable" -msgstr "Introdueixi el camí complet del executable php" +#: ../../mod/install.php:323 +msgid "" +"Enter full path to php executable. You can leave this blank to continue the " +"installation." +msgstr "Entra la ruta sencera fins l'executable de php. Pots deixar això buit per continuar l'instal·lació." -#: ../../mod/install.php:331 +#: ../../mod/install.php:328 msgid "Command line PHP" msgstr "Linia de comandos PHP" -#: ../../mod/install.php:340 +#: ../../mod/install.php:337 msgid "" "The command line version of PHP on your system does not have " "\"register_argc_argv\" enabled." msgstr "La versió de línia de comandos de PHP en el seu sistema no té \"register_argc_argv\" habilitat." -#: ../../mod/install.php:341 +#: ../../mod/install.php:338 msgid "This is required for message delivery to work." msgstr "Això és necessari perquè funcioni el lliurament de missatges." -#: ../../mod/install.php:343 -msgid "PHP \"register_argc_argv\"" -msgstr "PHP \"register_argc_argv\"" +#: ../../mod/install.php:340 +msgid "PHP register_argc_argv" +msgstr "PHP register_argc_argv" -#: ../../mod/install.php:364 +#: ../../mod/install.php:361 msgid "" "Error: the \"openssl_pkey_new\" function on this system is not able to " "generate encryption keys" msgstr "Error: la funció \"openssl_pkey_new\" en aquest sistema no és capaç de generar claus de xifrat" -#: ../../mod/install.php:365 +#: ../../mod/install.php:362 msgid "" "If running under Windows, please see " "\"http://www.php.net/manual/en/openssl.installation.php\"." msgstr "Si s'executa en Windows, per favor consulti la secció \"http://www.php.net/manual/en/openssl.installation.php\"." -#: ../../mod/install.php:367 +#: ../../mod/install.php:364 msgid "Generate encryption keys" msgstr "Generar claus d'encripció" -#: ../../mod/install.php:374 +#: ../../mod/install.php:371 msgid "libCurl PHP module" msgstr "Mòdul libCurl de PHP" -#: ../../mod/install.php:375 +#: ../../mod/install.php:372 msgid "GD graphics PHP module" msgstr "Mòdul GD de gràfics de PHP" -#: ../../mod/install.php:376 +#: ../../mod/install.php:373 msgid "OpenSSL PHP module" msgstr "Mòdul OpenSSl de PHP" -#: ../../mod/install.php:377 +#: ../../mod/install.php:374 msgid "mysqli PHP module" msgstr "Mòdul mysqli de PHP" -#: ../../mod/install.php:378 +#: ../../mod/install.php:375 msgid "mb_string PHP module" msgstr "Mòdul mb_string de PHP" -#: ../../mod/install.php:383 ../../mod/install.php:385 -msgid "Apace mod_rewrite module" -msgstr "Mòdul mod_rewrite de Apache" +#: ../../mod/install.php:380 ../../mod/install.php:382 +msgid "Apache mod_rewrite module" +msgstr "Apache mod_rewrite modul " -#: ../../mod/install.php:383 +#: ../../mod/install.php:380 msgid "" "Error: Apache webserver mod-rewrite module is required but not installed." msgstr "Error: el mòdul mod-rewrite del servidor web Apache és necessari però no està instal·lat." -#: ../../mod/install.php:390 +#: ../../mod/install.php:388 msgid "Error: libCURL PHP module required but not installed." msgstr "Error: El mòdul libCURL de PHP és necessari però no està instal·lat." -#: ../../mod/install.php:394 +#: ../../mod/install.php:392 msgid "" "Error: GD graphics PHP module with JPEG support required but not installed." msgstr "Error: el mòdul gràfic GD de PHP amb support per JPEG és necessari però no està instal·lat." -#: ../../mod/install.php:398 +#: ../../mod/install.php:396 msgid "Error: openssl PHP module required but not installed." msgstr "Error: El mòdul enssl de PHP és necessari però no està instal·lat." -#: ../../mod/install.php:402 +#: ../../mod/install.php:400 msgid "Error: mysqli PHP module required but not installed." msgstr "Error: El mòdul mysqli de PHP és necessari però no està instal·lat." -#: ../../mod/install.php:406 +#: ../../mod/install.php:404 msgid "Error: mb_string PHP module required but not installed." msgstr "Error: mòdul mb_string de PHP requerit però no instal·lat." -#: ../../mod/install.php:423 +#: ../../mod/install.php:421 msgid "" "The web installer needs to be able to create a file called \".htconfig.php\"" " in the top folder of your web server and it is unable to do so." msgstr "L'instal·lador web necessita crear un arxiu anomenat \".htconfig.php\" en la carpeta superior del seu servidor web però alguna cosa ho va impedir." -#: ../../mod/install.php:424 +#: ../../mod/install.php:422 msgid "" "This is most often a permission setting, as the web server may not be able " "to write files in your folder - even if you can." msgstr "Això freqüentment és a causa d'una configuració de permisos; el servidor web no pot escriure arxius en la carpeta - encara que sigui possible." -#: ../../mod/install.php:425 +#: ../../mod/install.php:423 msgid "" -"Please check with your site documentation or support people to see if this " -"situation can be corrected." -msgstr "Per favor, consulti amb la documentació del seu lloc o persones de suport per veure si aquesta situació es pot corregir." +"At the end of this procedure, we will give you a text to save in a file " +"named .htconfig.php in your Friendica top folder." +msgstr "Al final d'aquest procediment, et facilitarem un text que hauràs de guardar en un arxiu que s'anomena .htconfig.php que hi es a la carpeta principal del teu Friendica." -#: ../../mod/install.php:426 +#: ../../mod/install.php:424 msgid "" -"If not, you may be required to perform a manual installation. Please see the" -" file \"INSTALL.txt\" for instructions." -msgstr "Si no, vostè pot ser requerit per realitzar una instal·lació manual. Per favor, consulti l'arxiu \"INSTALL.txt\" per obtenir instruccions." +"You can alternatively skip this procedure and perform a manual installation." +" Please see the file \"INSTALL.txt\" for instructions." +msgstr "Alternativament, pots saltar-te aquest procediment i configurar-ho manualment. Per favor, mira l'arxiu \"INTALL.txt\" per a instruccions." -#: ../../mod/install.php:429 +#: ../../mod/install.php:427 msgid ".htconfig.php is writable" msgstr ".htconfig.php és escribible" -#: ../../mod/install.php:436 +#: ../../mod/install.php:439 +msgid "" +"Url rewrite in .htaccess is not working. Check your server configuration." +msgstr "URL rewrite en .htaccess no esta treballant. Comprova la configuració del teu servidor." + +#: ../../mod/install.php:441 +msgid "Url rewrite is working" +msgstr "URL rewrite està treballant" + +#: ../../mod/install.php:451 msgid "" "The database configuration file \".htconfig.php\" could not be written. " "Please use the enclosed text to create a configuration file in your web " "server root." msgstr "L'arxiu per a la configuració de la base de dades \".htconfig.php\" no es pot escriure. Per favor, usi el text adjunt per crear un arxiu de configuració en l'arrel del servidor web." -#: ../../mod/install.php:461 +#: ../../mod/install.php:475 msgid "Errors encountered creating database tables." msgstr "Trobats errors durant la creació de les taules de la base de dades." +#: ../../mod/install.php:486 +msgid "

    What next

    " +msgstr "

    Que es següent

    " + +#: ../../mod/install.php:487 +msgid "" +"IMPORTANT: You will need to [manually] setup a scheduled task for the " +"poller." +msgstr "IMPORTANT: necessitarà configurar [manualment] el programar una tasca pel sondejador (poller.php)" + #: ../../mod/localtime.php:12 ../../include/event.php:11 -#: ../../include/bb2diaspora.php:238 +#: ../../include/bb2diaspora.php:390 msgid "l F d, Y \\@ g:i A" msgstr "l F d, Y \\@ g:i A" @@ -1119,6 +1239,26 @@ msgstr "Conversión de hora local: %s" msgid "Please select your timezone:" msgstr "Si us plau, seleccioneu la vostra zona horària:" +#: ../../mod/poke.php:192 +msgid "Poke/Prod" +msgstr "" + +#: ../../mod/poke.php:193 +msgid "poke, prod or do other things to somebody" +msgstr "" + +#: ../../mod/poke.php:194 +msgid "Recipient" +msgstr "Recipient" + +#: ../../mod/poke.php:195 +msgid "Choose what you wish to do to recipient" +msgstr "" + +#: ../../mod/poke.php:198 +msgid "Make this post private" +msgstr "" + #: ../../mod/match.php:12 msgid "Profile Match" msgstr "Perfil Aconseguit" @@ -1132,11 +1272,11 @@ msgid "is interested in:" msgstr "està interessat en:" #: ../../mod/match.php:58 ../../mod/suggest.php:59 -#: ../../include/contact_widgets.php:9 ../../boot.php:930 +#: ../../include/contact_widgets.php:9 ../../boot.php:1164 msgid "Connect" msgstr "Connexió" -#: ../../mod/match.php:65 ../../mod/dirfind.php:57 +#: ../../mod/match.php:65 ../../mod/dirfind.php:60 msgid "No matches" msgstr "No hi ha coincidències" @@ -1148,7 +1288,172 @@ msgstr "Informació de privacitat remota no disponible." msgid "Visible to:" msgstr "Visible per a:" -#: ../../mod/home.php:26 ../../addon/communityhome/communityhome.php:179 +#: ../../mod/content.php:119 ../../mod/network.php:436 +msgid "No such group" +msgstr "Cap grup com" + +#: ../../mod/content.php:130 ../../mod/network.php:447 +msgid "Group is empty" +msgstr "El Grup es buit" + +#: ../../mod/content.php:134 ../../mod/network.php:451 +msgid "Group: " +msgstr "Grup:" + +#: ../../mod/content.php:438 ../../mod/content.php:722 +#: ../../include/conversation.php:447 ../../include/conversation.php:888 +#: ../../object/Item.php:115 +msgid "Select" +msgstr "Selecionar" + +#: ../../mod/content.php:455 ../../mod/content.php:815 +#: ../../mod/content.php:816 ../../include/conversation.php:654 +#: ../../include/conversation.php:655 ../../include/conversation.php:907 +#: ../../object/Item.php:226 ../../object/Item.php:227 +#, php-format +msgid "View %s's profile @ %s" +msgstr "Veure perfil de %s @ %s" + +#: ../../mod/content.php:465 ../../mod/content.php:827 +#: ../../include/conversation.php:668 ../../include/conversation.php:927 +#: ../../object/Item.php:239 +#, php-format +msgid "%s from %s" +msgstr "%s des de %s" + +#: ../../mod/content.php:480 ../../include/conversation.php:942 +msgid "View in context" +msgstr "Veure en context" + +#: ../../mod/content.php:586 ../../include/conversation.php:695 +#: ../../object/Item.php:276 +#, php-format +msgid "%d comment" +msgid_plural "%d comments" +msgstr[0] "%d comentari" +msgstr[1] "%d comentaris" + +#: ../../mod/content.php:588 ../../include/text.php:1443 +#: ../../include/conversation.php:697 ../../object/Item.php:278 +#: ../../object/Item.php:291 +msgid "comment" +msgid_plural "comments" +msgstr[0] "" +msgstr[1] "comentari" + +#: ../../mod/content.php:589 ../../addon/page/page.php:76 +#: ../../addon/page/page.php:110 ../../addon/showmore/showmore.php:119 +#: ../../include/contact_widgets.php:195 ../../include/conversation.php:698 +#: ../../boot.php:575 ../../object/Item.php:279 +msgid "show more" +msgstr "Mostrar més" + +#: ../../mod/content.php:667 ../../include/conversation.php:581 +#: ../../object/Item.php:195 +msgid "like" +msgstr "Agrada" + +#: ../../mod/content.php:668 ../../include/conversation.php:582 +#: ../../object/Item.php:196 +msgid "dislike" +msgstr "Desagrada" + +#: ../../mod/content.php:670 ../../include/conversation.php:584 +#: ../../object/Item.php:198 +msgid "Share this" +msgstr "Compartir això" + +#: ../../mod/content.php:670 ../../include/conversation.php:584 +#: ../../object/Item.php:198 +msgid "share" +msgstr "Compartir" + +#: ../../mod/content.php:694 ../../include/conversation.php:608 +#: ../../object/Item.php:560 +msgid "Bold" +msgstr "Negreta" + +#: ../../mod/content.php:695 ../../include/conversation.php:609 +#: ../../object/Item.php:561 +msgid "Italic" +msgstr "Itallica" + +#: ../../mod/content.php:696 ../../include/conversation.php:610 +#: ../../object/Item.php:562 +msgid "Underline" +msgstr "Subratllat" + +#: ../../mod/content.php:697 ../../include/conversation.php:611 +#: ../../object/Item.php:563 +msgid "Quote" +msgstr "Cometes" + +#: ../../mod/content.php:698 ../../include/conversation.php:612 +#: ../../object/Item.php:564 +msgid "Code" +msgstr "Codi" + +#: ../../mod/content.php:699 ../../include/conversation.php:613 +#: ../../object/Item.php:565 +msgid "Image" +msgstr "Imatge" + +#: ../../mod/content.php:700 ../../include/conversation.php:614 +#: ../../object/Item.php:566 +msgid "Link" +msgstr "Enllaç" + +#: ../../mod/content.php:701 ../../include/conversation.php:615 +#: ../../object/Item.php:567 +msgid "Video" +msgstr "Video" + +#: ../../mod/content.php:735 ../../include/conversation.php:545 +#: ../../object/Item.php:179 +msgid "add star" +msgstr "Afegir a favorits" + +#: ../../mod/content.php:736 ../../include/conversation.php:546 +#: ../../object/Item.php:180 +msgid "remove star" +msgstr "Esborrar favorit" + +#: ../../mod/content.php:737 ../../include/conversation.php:547 +#: ../../object/Item.php:181 +msgid "toggle star status" +msgstr "Canviar estatus de favorit" + +#: ../../mod/content.php:740 ../../include/conversation.php:550 +#: ../../object/Item.php:184 +msgid "starred" +msgstr "favorit" + +#: ../../mod/content.php:741 ../../include/conversation.php:551 +#: ../../object/Item.php:185 +msgid "add tag" +msgstr "afegir etiqueta" + +#: ../../mod/content.php:745 ../../include/conversation.php:451 +#: ../../object/Item.php:119 +msgid "save to folder" +msgstr "guardat a la carpeta" + +#: ../../mod/content.php:817 ../../include/conversation.php:656 +#: ../../object/Item.php:228 +msgid "to" +msgstr "a" + +#: ../../mod/content.php:818 ../../include/conversation.php:657 +#: ../../object/Item.php:229 +msgid "Wall-to-Wall" +msgstr "Mur-a-Mur" + +#: ../../mod/content.php:819 ../../include/conversation.php:658 +#: ../../object/Item.php:230 +msgid "via Wall-To-Wall:" +msgstr "via Mur-a-Mur" + +#: ../../mod/home.php:28 ../../addon/communityhome/communityhome.php:179 #, php-format msgid "Welcome to %s" msgstr "Benvingut a %s" @@ -1157,417 +1462,489 @@ msgstr "Benvingut a %s" msgid "Invalid request identifier." msgstr "Sol·licitud d'identificació no vàlida." -#: ../../mod/notifications.php:35 ../../mod/notifications.php:157 -#: ../../mod/notifications.php:203 +#: ../../mod/notifications.php:35 ../../mod/notifications.php:161 +#: ../../mod/notifications.php:207 msgid "Discard" msgstr "Descartar" -#: ../../mod/notifications.php:47 ../../mod/notifications.php:156 -#: ../../mod/notifications.php:202 ../../mod/contacts.php:302 -#: ../../mod/contacts.php:345 +#: ../../mod/notifications.php:51 ../../mod/notifications.php:160 +#: ../../mod/notifications.php:206 ../../mod/contacts.php:321 +#: ../../mod/contacts.php:375 msgid "Ignore" msgstr "Ignorar" -#: ../../mod/notifications.php:71 +#: ../../mod/notifications.php:75 msgid "System" msgstr "Sistema" -#: ../../mod/notifications.php:76 ../../include/nav.php:109 +#: ../../mod/notifications.php:80 ../../include/nav.php:113 msgid "Network" msgstr "Xarxa" -#: ../../mod/notifications.php:81 ../../mod/network.php:177 +#: ../../mod/notifications.php:85 ../../mod/network.php:300 msgid "Personal" msgstr "Personal" -#: ../../mod/notifications.php:86 ../../include/nav.php:73 -#: ../../include/nav.php:111 +#: ../../mod/notifications.php:90 ../../view/theme/diabook/theme.php:127 +#: ../../include/nav.php:77 ../../include/nav.php:115 msgid "Home" msgstr "Inici" -#: ../../mod/notifications.php:91 ../../include/nav.php:117 +#: ../../mod/notifications.php:95 ../../include/nav.php:121 msgid "Introductions" msgstr "Presentacions" -#: ../../mod/notifications.php:96 ../../mod/message.php:76 -#: ../../include/nav.php:124 +#: ../../mod/notifications.php:100 ../../mod/message.php:176 +#: ../../include/nav.php:128 msgid "Messages" msgstr "Missatges" -#: ../../mod/notifications.php:115 +#: ../../mod/notifications.php:119 msgid "Show Ignored Requests" msgstr "Mostra les Sol·licituds Ignorades" -#: ../../mod/notifications.php:115 +#: ../../mod/notifications.php:119 msgid "Hide Ignored Requests" msgstr "Amaga les Sol·licituds Ignorades" -#: ../../mod/notifications.php:141 ../../mod/notifications.php:187 +#: ../../mod/notifications.php:145 ../../mod/notifications.php:191 msgid "Notification type: " msgstr "Tipus de Notificació:" -#: ../../mod/notifications.php:142 +#: ../../mod/notifications.php:146 msgid "Friend Suggestion" msgstr "Amics Suggerits " -#: ../../mod/notifications.php:144 +#: ../../mod/notifications.php:148 #, php-format msgid "suggested by %s" msgstr "sugerit per %s" -#: ../../mod/notifications.php:149 ../../mod/notifications.php:196 -#: ../../mod/contacts.php:350 +#: ../../mod/notifications.php:153 ../../mod/notifications.php:200 +#: ../../mod/contacts.php:381 msgid "Hide this contact from others" msgstr "Amaga aquest contacte dels altres" -#: ../../mod/notifications.php:150 ../../mod/notifications.php:197 +#: ../../mod/notifications.php:154 ../../mod/notifications.php:201 msgid "Post a new friend activity" msgstr "Publica una activitat d'amic nova" -#: ../../mod/notifications.php:150 ../../mod/notifications.php:197 +#: ../../mod/notifications.php:154 ../../mod/notifications.php:201 msgid "if applicable" msgstr "si es pot aplicar" -#: ../../mod/notifications.php:153 ../../mod/notifications.php:200 -#: ../../mod/admin.php:486 +#: ../../mod/notifications.php:157 ../../mod/notifications.php:204 +#: ../../mod/admin.php:694 msgid "Approve" msgstr "Aprovar" -#: ../../mod/notifications.php:173 +#: ../../mod/notifications.php:177 msgid "Claims to be known to you: " msgstr "Diu que et coneix:" -#: ../../mod/notifications.php:173 +#: ../../mod/notifications.php:177 msgid "yes" msgstr "sí" -#: ../../mod/notifications.php:173 +#: ../../mod/notifications.php:177 msgid "no" msgstr "no" -#: ../../mod/notifications.php:180 +#: ../../mod/notifications.php:184 msgid "Approve as: " msgstr "Aprovat com:" -#: ../../mod/notifications.php:181 +#: ../../mod/notifications.php:185 msgid "Friend" msgstr "Amic" -#: ../../mod/notifications.php:182 +#: ../../mod/notifications.php:186 msgid "Sharer" msgstr "Partícip" -#: ../../mod/notifications.php:182 +#: ../../mod/notifications.php:186 msgid "Fan/Admirer" msgstr "Fan/Admirador" -#: ../../mod/notifications.php:188 +#: ../../mod/notifications.php:192 msgid "Friend/Connect Request" msgstr "Sol·licitud d'Amistat/Connexió" -#: ../../mod/notifications.php:188 +#: ../../mod/notifications.php:192 msgid "New Follower" msgstr "Nou Seguidor" -#: ../../mod/notifications.php:209 +#: ../../mod/notifications.php:213 msgid "No introductions." msgstr "Sense presentacions." -#: ../../mod/notifications.php:212 ../../include/nav.php:118 +#: ../../mod/notifications.php:216 ../../include/nav.php:122 msgid "Notifications" msgstr "Notificacions" -#: ../../mod/notifications.php:249 ../../mod/notifications.php:374 -#: ../../mod/notifications.php:461 +#: ../../mod/notifications.php:253 ../../mod/notifications.php:378 +#: ../../mod/notifications.php:465 #, php-format msgid "%s liked %s's post" msgstr "A %s li agrada l'enviament de %s" -#: ../../mod/notifications.php:258 ../../mod/notifications.php:383 -#: ../../mod/notifications.php:470 +#: ../../mod/notifications.php:262 ../../mod/notifications.php:387 +#: ../../mod/notifications.php:474 #, php-format msgid "%s disliked %s's post" msgstr "A %s no li agrada l'enviament de %s" -#: ../../mod/notifications.php:272 ../../mod/notifications.php:397 -#: ../../mod/notifications.php:484 +#: ../../mod/notifications.php:276 ../../mod/notifications.php:401 +#: ../../mod/notifications.php:488 #, php-format msgid "%s is now friends with %s" msgstr "%s es ara amic de %s" -#: ../../mod/notifications.php:279 ../../mod/notifications.php:404 +#: ../../mod/notifications.php:283 ../../mod/notifications.php:408 #, php-format msgid "%s created a new post" msgstr "%s ha creat un enviament nou" -#: ../../mod/notifications.php:280 ../../mod/notifications.php:405 -#: ../../mod/notifications.php:493 +#: ../../mod/notifications.php:284 ../../mod/notifications.php:409 +#: ../../mod/notifications.php:497 #, php-format msgid "%s commented on %s's post" msgstr "%s va comentar en l'enviament de %s" -#: ../../mod/notifications.php:294 +#: ../../mod/notifications.php:298 msgid "No more network notifications." msgstr "No més notificacions de xarxa." -#: ../../mod/notifications.php:298 +#: ../../mod/notifications.php:302 msgid "Network Notifications" msgstr "Notificacions de la Xarxa" -#: ../../mod/notifications.php:324 ../../mod/notify.php:61 +#: ../../mod/notifications.php:328 ../../mod/notify.php:61 msgid "No more system notifications." msgstr "No més notificacions del sistema." -#: ../../mod/notifications.php:328 ../../mod/notify.php:65 +#: ../../mod/notifications.php:332 ../../mod/notify.php:65 msgid "System Notifications" msgstr "Notificacions del Sistema" -#: ../../mod/notifications.php:419 +#: ../../mod/notifications.php:423 msgid "No more personal notifications." msgstr "No més notificacions personals." -#: ../../mod/notifications.php:423 +#: ../../mod/notifications.php:427 msgid "Personal Notifications" msgstr "Notificacions Personals" -#: ../../mod/notifications.php:500 +#: ../../mod/notifications.php:504 msgid "No more home notifications." msgstr "No més notificacions d'inici." -#: ../../mod/notifications.php:504 +#: ../../mod/notifications.php:508 msgid "Home Notifications" msgstr "Notificacions d'Inici" -#: ../../mod/contacts.php:63 ../../mod/contacts.php:143 +#: ../../mod/contacts.php:84 ../../mod/contacts.php:164 msgid "Could not access contact record." msgstr "No puc accedir al registre del contacte." -#: ../../mod/contacts.php:77 +#: ../../mod/contacts.php:98 msgid "Could not locate selected profile." msgstr "No puc localitzar el perfil seleccionat." -#: ../../mod/contacts.php:100 +#: ../../mod/contacts.php:121 msgid "Contact updated." msgstr "Contacte actualitzat." -#: ../../mod/contacts.php:165 +#: ../../mod/contacts.php:186 msgid "Contact has been blocked" msgstr "Elcontacte ha estat bloquejat" -#: ../../mod/contacts.php:165 +#: ../../mod/contacts.php:186 msgid "Contact has been unblocked" msgstr "El contacte ha estat desbloquejat" -#: ../../mod/contacts.php:179 +#: ../../mod/contacts.php:200 msgid "Contact has been ignored" msgstr "El contacte ha estat ignorat" -#: ../../mod/contacts.php:179 +#: ../../mod/contacts.php:200 msgid "Contact has been unignored" msgstr "El contacte ha estat recordat" -#: ../../mod/contacts.php:200 -msgid "stopped following" -msgstr "Deixar de seguir" +#: ../../mod/contacts.php:216 +msgid "Contact has been archived" +msgstr "El contacte ha estat arxivat" -#: ../../mod/contacts.php:221 +#: ../../mod/contacts.php:216 +msgid "Contact has been unarchived" +msgstr "El contacte ha estat desarxivat" + +#: ../../mod/contacts.php:229 msgid "Contact has been removed." msgstr "El contacte ha estat tret" -#: ../../mod/contacts.php:245 +#: ../../mod/contacts.php:263 #, php-format msgid "You are mutual friends with %s" msgstr "Ara te una amistat mutua amb %s" -#: ../../mod/contacts.php:249 +#: ../../mod/contacts.php:267 #, php-format msgid "You are sharing with %s" msgstr "Estas compartint amb %s" -#: ../../mod/contacts.php:254 +#: ../../mod/contacts.php:272 #, php-format msgid "%s is sharing with you" msgstr "%s esta compartint amb tú" -#: ../../mod/contacts.php:271 +#: ../../mod/contacts.php:289 msgid "Private communications are not available for this contact." msgstr "Comunicacions privades no disponibles per aquest contacte." -#: ../../mod/contacts.php:274 +#: ../../mod/contacts.php:292 msgid "Never" msgstr "Mai" -#: ../../mod/contacts.php:278 +#: ../../mod/contacts.php:296 msgid "(Update was successful)" msgstr "(L'actualització fou exitosa)" -#: ../../mod/contacts.php:278 +#: ../../mod/contacts.php:296 msgid "(Update was not successful)" msgstr "(L'actualització fracassà)" -#: ../../mod/contacts.php:280 +#: ../../mod/contacts.php:298 msgid "Suggest friends" msgstr "Suggerir amics" -#: ../../mod/contacts.php:284 +#: ../../mod/contacts.php:302 #, php-format msgid "Network type: %s" msgstr "Xarxa tipus: %s" -#: ../../mod/contacts.php:287 +#: ../../mod/contacts.php:305 ../../include/contact_widgets.php:190 #, php-format msgid "%d contact in common" msgid_plural "%d contacts in common" msgstr[0] "%d contacte en comú" msgstr[1] "%d contactes en comú" -#: ../../mod/contacts.php:292 +#: ../../mod/contacts.php:310 msgid "View all contacts" msgstr "Veure tots els contactes" -#: ../../mod/contacts.php:297 ../../mod/contacts.php:344 -#: ../../mod/admin.php:490 +#: ../../mod/contacts.php:315 ../../mod/contacts.php:374 +#: ../../mod/admin.php:698 msgid "Unblock" msgstr "Desbloquejar" -#: ../../mod/contacts.php:297 ../../mod/contacts.php:344 -#: ../../mod/admin.php:489 +#: ../../mod/contacts.php:315 ../../mod/contacts.php:374 +#: ../../mod/admin.php:697 msgid "Block" msgstr "Bloquejar" -#: ../../mod/contacts.php:302 ../../mod/contacts.php:345 +#: ../../mod/contacts.php:318 +msgid "Toggle Blocked status" +msgstr "Canvi de estatus blocat" + +#: ../../mod/contacts.php:321 ../../mod/contacts.php:375 msgid "Unignore" msgstr "Treure d'Ignorats" -#: ../../mod/contacts.php:307 +#: ../../mod/contacts.php:324 +msgid "Toggle Ignored status" +msgstr "Canvi de estatus ignorat" + +#: ../../mod/contacts.php:328 +msgid "Unarchive" +msgstr "Desarxivat" + +#: ../../mod/contacts.php:328 +msgid "Archive" +msgstr "Arxivat" + +#: ../../mod/contacts.php:331 +msgid "Toggle Archive status" +msgstr "Canvi de estatus del arxiu" + +#: ../../mod/contacts.php:334 msgid "Repair" msgstr "Reparar" -#: ../../mod/contacts.php:317 +#: ../../mod/contacts.php:337 +msgid "Advanced Contact Settings" +msgstr "Ajustos Avançats per als Contactes" + +#: ../../mod/contacts.php:343 +msgid "Communications lost with this contact!" +msgstr "La comunicació amb aquest contacte s'ha perdut!" + +#: ../../mod/contacts.php:346 msgid "Contact Editor" msgstr "Editor de Contactes" -#: ../../mod/contacts.php:320 +#: ../../mod/contacts.php:349 msgid "Profile Visibility" msgstr "Perfil de Visibilitat" -#: ../../mod/contacts.php:321 +#: ../../mod/contacts.php:350 #, php-format msgid "" "Please choose the profile you would like to display to %s when viewing your " "profile securely." msgstr "Si us plau triï el perfil que voleu mostrar a %s quan estigui veient el teu de forma segura." -#: ../../mod/contacts.php:322 +#: ../../mod/contacts.php:351 msgid "Contact Information / Notes" msgstr "Informació/Notes del contacte" -#: ../../mod/contacts.php:323 +#: ../../mod/contacts.php:352 msgid "Edit contact notes" msgstr "Editar notes de contactes" -#: ../../mod/contacts.php:328 ../../mod/contacts.php:497 -#: ../../mod/viewcontacts.php:60 +#: ../../mod/contacts.php:357 ../../mod/contacts.php:549 +#: ../../mod/viewcontacts.php:62 ../../mod/nogroup.php:40 #, php-format msgid "Visit %s's profile [%s]" msgstr "Visitar perfil de %s [%s]" -#: ../../mod/contacts.php:329 +#: ../../mod/contacts.php:358 msgid "Block/Unblock contact" msgstr "Bloquejar/Alliberar contacte" -#: ../../mod/contacts.php:330 +#: ../../mod/contacts.php:359 msgid "Ignore contact" msgstr "Ignore contacte" -#: ../../mod/contacts.php:331 +#: ../../mod/contacts.php:360 msgid "Repair URL settings" msgstr "Restablir configuració de URL" -#: ../../mod/contacts.php:332 +#: ../../mod/contacts.php:361 msgid "View conversations" msgstr "Veient conversacions" -#: ../../mod/contacts.php:334 +#: ../../mod/contacts.php:363 msgid "Delete contact" msgstr "Esborrar contacte" -#: ../../mod/contacts.php:338 +#: ../../mod/contacts.php:367 msgid "Last update:" msgstr "Última actualització:" -#: ../../mod/contacts.php:339 +#: ../../mod/contacts.php:369 msgid "Update public posts" msgstr "Actualitzar enviament públic" -#: ../../mod/contacts.php:341 ../../mod/admin.php:905 +#: ../../mod/contacts.php:371 ../../mod/admin.php:1170 msgid "Update now" msgstr "Actualitza ara" -#: ../../mod/contacts.php:348 +#: ../../mod/contacts.php:378 msgid "Currently blocked" msgstr "Bloquejat actualment" -#: ../../mod/contacts.php:349 +#: ../../mod/contacts.php:379 msgid "Currently ignored" msgstr "Ignorat actualment" -#: ../../mod/contacts.php:350 +#: ../../mod/contacts.php:380 +msgid "Currently archived" +msgstr "Actualment arxivat" + +#: ../../mod/contacts.php:381 msgid "" "Replies/likes to your public posts may still be visible" msgstr "Répliques/agraiments per als teus missatges públics poden romandre visibles" -#: ../../mod/contacts.php:399 ../../mod/group.php:179 +#: ../../mod/contacts.php:434 +msgid "Suggestions" +msgstr "Suggeriments" + +#: ../../mod/contacts.php:437 +msgid "Suggest potential friends" +msgstr "Suggerir amics potencials" + +#: ../../mod/contacts.php:440 ../../mod/group.php:191 msgid "All Contacts" msgstr "Tots els Contactes" -#: ../../mod/contacts.php:404 -msgid "Unblocked Contacts" -msgstr "Contactes Desbloquejats" +#: ../../mod/contacts.php:443 +msgid "Show all contacts" +msgstr "Mostrar tots els contactes" -#: ../../mod/contacts.php:410 -msgid "Blocked Contacts" -msgstr "Contactes Bloquejats" +#: ../../mod/contacts.php:446 +msgid "Unblocked" +msgstr "Desblocat" -#: ../../mod/contacts.php:416 -msgid "Ignored Contacts" -msgstr "Contactes Ignorats" +#: ../../mod/contacts.php:449 +msgid "Only show unblocked contacts" +msgstr "Mostrar únicament els contactes no blocats" -#: ../../mod/contacts.php:422 -msgid "Hidden Contacts" -msgstr "Contactes Amagats" +#: ../../mod/contacts.php:453 +msgid "Blocked" +msgstr "Blocat" -#: ../../mod/contacts.php:473 +#: ../../mod/contacts.php:456 +msgid "Only show blocked contacts" +msgstr "Mostrar únicament els contactes blocats" + +#: ../../mod/contacts.php:460 +msgid "Ignored" +msgstr "Ignorat" + +#: ../../mod/contacts.php:463 +msgid "Only show ignored contacts" +msgstr "Mostrar únicament els contactes ignorats" + +#: ../../mod/contacts.php:467 +msgid "Archived" +msgstr "Arxivat" + +#: ../../mod/contacts.php:470 +msgid "Only show archived contacts" +msgstr "Mostrar únicament els contactes arxivats" + +#: ../../mod/contacts.php:474 +msgid "Hidden" +msgstr "Amagat" + +#: ../../mod/contacts.php:477 +msgid "Only show hidden contacts" +msgstr "Mostrar únicament els contactes amagats" + +#: ../../mod/contacts.php:525 msgid "Mutual Friendship" msgstr "Amistat Mutua" -#: ../../mod/contacts.php:477 +#: ../../mod/contacts.php:529 msgid "is a fan of yours" msgstr "Es un fan teu" -#: ../../mod/contacts.php:481 +#: ../../mod/contacts.php:533 msgid "you are a fan of" msgstr "ets fan de" -#: ../../mod/contacts.php:498 ../../include/Contact.php:135 -#: ../../include/conversation.php:792 +#: ../../mod/contacts.php:550 ../../mod/nogroup.php:41 msgid "Edit contact" msgstr "Editar contacte" -#: ../../mod/contacts.php:519 ../../include/nav.php:132 +#: ../../mod/contacts.php:571 ../../view/theme/diabook/theme.php:129 +#: ../../include/nav.php:139 msgid "Contacts" msgstr "Contactes" -#: ../../mod/contacts.php:523 +#: ../../mod/contacts.php:575 msgid "Search your contacts" msgstr "Cercant el seus contactes" -#: ../../mod/contacts.php:524 ../../mod/directory.php:67 +#: ../../mod/contacts.php:576 ../../mod/directory.php:59 msgid "Finding: " msgstr "Cercant:" -#: ../../mod/contacts.php:525 ../../mod/directory.php:69 -#: ../../include/contact_widgets.php:34 +#: ../../mod/contacts.php:577 ../../mod/directory.php:61 +#: ../../include/contact_widgets.php:33 msgid "Find" msgstr "Cercar" @@ -1575,565 +1952,687 @@ msgstr "Cercar" msgid "No valid account found." msgstr "compte no vàlid trobat." -#: ../../mod/lostpass.php:31 +#: ../../mod/lostpass.php:32 msgid "Password reset request issued. Check your email." msgstr "Sol·licitut de restabliment de contrasenya enviat. Comprovi el seu correu." -#: ../../mod/lostpass.php:42 +#: ../../mod/lostpass.php:43 #, php-format msgid "Password reset requested at %s" msgstr "Contrasenya restablerta enviada a %s" -#: ../../mod/lostpass.php:44 ../../mod/lostpass.php:106 -#: ../../mod/register.php:380 ../../mod/register.php:434 -#: ../../mod/regmod.php:54 ../../mod/dfrn_confirm.php:726 -#: ../../include/items.php:2575 +#: ../../mod/lostpass.php:45 ../../mod/lostpass.php:107 +#: ../../mod/register.php:90 ../../mod/register.php:144 +#: ../../mod/regmod.php:54 ../../mod/dfrn_confirm.php:752 +#: ../../addon/facebook/facebook.php:702 +#: ../../addon/facebook/facebook.php:1200 ../../addon/fbpost/fbpost.php:661 +#: ../../addon/public_server/public_server.php:62 +#: ../../addon/testdrive/testdrive.php:67 ../../include/items.php:3296 +#: ../../boot.php:788 msgid "Administrator" msgstr "Administrador" -#: ../../mod/lostpass.php:64 +#: ../../mod/lostpass.php:65 msgid "" "Request could not be verified. (You may have previously submitted it.) " "Password reset failed." msgstr "La sol·licitut no pot ser verificada. (Hauries de presentar-la abans). Restabliment de contrasenya fracassat." -#: ../../mod/lostpass.php:82 ../../boot.php:723 +#: ../../mod/lostpass.php:83 ../../boot.php:925 msgid "Password Reset" msgstr "Restabliment de Contrasenya" -#: ../../mod/lostpass.php:83 +#: ../../mod/lostpass.php:84 msgid "Your password has been reset as requested." msgstr "La teva contrasenya fou restablerta com vas demanar." -#: ../../mod/lostpass.php:84 +#: ../../mod/lostpass.php:85 msgid "Your new password is" msgstr "La teva nova contrasenya es" -#: ../../mod/lostpass.php:85 +#: ../../mod/lostpass.php:86 msgid "Save or copy your new password - and then" msgstr "Guarda o copia la nova contrasenya - i llavors" -#: ../../mod/lostpass.php:86 +#: ../../mod/lostpass.php:87 msgid "click here to login" msgstr "clica aquí per identificarte" -#: ../../mod/lostpass.php:87 +#: ../../mod/lostpass.php:88 msgid "" "Your password may be changed from the Settings page after " "successful login." msgstr "Pots camviar la contrasenya des de la pàgina de Configuración desprès d'accedir amb èxit." -#: ../../mod/lostpass.php:118 +#: ../../mod/lostpass.php:119 msgid "Forgot your Password?" msgstr "Has Oblidat la Contrasenya?" -#: ../../mod/lostpass.php:119 +#: ../../mod/lostpass.php:120 msgid "" "Enter your email address and submit to have your password reset. Then check " "your email for further instructions." msgstr "Introdueixi la seva adreça de correu i enivii-la per restablir la seva contrasenya. Llavors comprovi el seu correu per a les següents instruccións. " -#: ../../mod/lostpass.php:120 -msgid "Nickname or Email: " -msgstr "Malnom o Correu:" - #: ../../mod/lostpass.php:121 +msgid "Nickname or Email: " +msgstr "Àlies o Correu:" + +#: ../../mod/lostpass.php:122 msgid "Reset" msgstr "Restablir" -#: ../../mod/settings.php:72 -msgid "Missing some important data!" -msgstr "Perdudes algunes dades importants!" - -#: ../../mod/settings.php:75 ../../mod/settings.php:486 ../../mod/admin.php:75 -msgid "Update" -msgstr "Actualitzar" - -#: ../../mod/settings.php:175 -msgid "Failed to connect with email account using the settings provided." -msgstr "Connexió fracassada amb el compte de correu emprant la configuració proveïda." - -#: ../../mod/settings.php:180 -msgid "Email settings updated." -msgstr "Configuració del correu electrònic actualitzada." - -#: ../../mod/settings.php:198 -msgid "Passwords do not match. Password unchanged." -msgstr "Les contrasenyes no coincideixen. Contrasenya no canviada." - -#: ../../mod/settings.php:203 -msgid "Empty passwords are not allowed. Password unchanged." -msgstr "No es permeten contasenyes buides. Contrasenya no canviada" - -#: ../../mod/settings.php:214 -msgid "Password changed." -msgstr "Contrasenya canviada." - -#: ../../mod/settings.php:216 -msgid "Password update failed. Please try again." -msgstr "Ha fallat l'actualització de la Contrasenya. Per favor, intenti-ho de nou." - -#: ../../mod/settings.php:280 -msgid " Please use a shorter name." -msgstr "Si us plau, faci servir un nom més curt." - -#: ../../mod/settings.php:282 -msgid " Name too short." -msgstr "Nom massa curt." - -#: ../../mod/settings.php:288 -msgid " Not valid email." -msgstr "Correu no vàlid." - -#: ../../mod/settings.php:290 -msgid " Cannot change to that email." -msgstr "No puc canviar a aquest correu." - -#: ../../mod/settings.php:358 ../../addon/facebook/facebook.php:321 -#: ../../addon/impressum/impressum.php:64 -#: ../../addon/openstreetmap/openstreetmap.php:80 -#: ../../addon/piwik/piwik.php:105 ../../addon/twitter/twitter.php:350 -msgid "Settings updated." -msgstr "Ajustos actualitzats." - -#: ../../mod/settings.php:422 ../../include/nav.php:130 +#: ../../mod/settings.php:30 ../../include/nav.php:137 msgid "Account settings" msgstr "Configuració del compte" -#: ../../mod/settings.php:427 +#: ../../mod/settings.php:35 +msgid "Display settings" +msgstr "Ajustos de pantalla" + +#: ../../mod/settings.php:41 msgid "Connector settings" msgstr "Configuració dels connectors" -#: ../../mod/settings.php:432 +#: ../../mod/settings.php:46 msgid "Plugin settings" msgstr "Configuració del plugin" -#: ../../mod/settings.php:437 -msgid "Connections" -msgstr "Connexions" +#: ../../mod/settings.php:51 +msgid "Connected apps" +msgstr "App connectada" -#: ../../mod/settings.php:442 +#: ../../mod/settings.php:56 msgid "Export personal data" msgstr "Exportar dades personals" -#: ../../mod/settings.php:459 ../../mod/settings.php:485 -#: ../../mod/settings.php:518 +#: ../../mod/settings.php:61 +msgid "Remove account" +msgstr "Esborrar compte" + +#: ../../mod/settings.php:69 ../../mod/newmember.php:22 +#: ../../mod/admin.php:785 ../../mod/admin.php:990 +#: ../../addon/dav/friendica/layout.fnk.php:225 +#: ../../addon/mathjax/mathjax.php:36 ../../view/theme/diabook/theme.php:643 +#: ../../view/theme/diabook/theme.php:773 ../../include/nav.php:137 +msgid "Settings" +msgstr "Ajustos" + +#: ../../mod/settings.php:113 +msgid "Missing some important data!" +msgstr "Perdudes algunes dades importants!" + +#: ../../mod/settings.php:116 ../../mod/settings.php:569 +msgid "Update" +msgstr "Actualitzar" + +#: ../../mod/settings.php:221 +msgid "Failed to connect with email account using the settings provided." +msgstr "Connexió fracassada amb el compte de correu emprant la configuració proveïda." + +#: ../../mod/settings.php:226 +msgid "Email settings updated." +msgstr "Configuració del correu electrònic actualitzada." + +#: ../../mod/settings.php:290 +msgid "Passwords do not match. Password unchanged." +msgstr "Les contrasenyes no coincideixen. Contrasenya no canviada." + +#: ../../mod/settings.php:295 +msgid "Empty passwords are not allowed. Password unchanged." +msgstr "No es permeten contasenyes buides. Contrasenya no canviada" + +#: ../../mod/settings.php:306 +msgid "Password changed." +msgstr "Contrasenya canviada." + +#: ../../mod/settings.php:308 +msgid "Password update failed. Please try again." +msgstr "Ha fallat l'actualització de la Contrasenya. Per favor, intenti-ho de nou." + +#: ../../mod/settings.php:373 +msgid " Please use a shorter name." +msgstr "Si us plau, faci servir un nom més curt." + +#: ../../mod/settings.php:375 +msgid " Name too short." +msgstr "Nom massa curt." + +#: ../../mod/settings.php:381 +msgid " Not valid email." +msgstr "Correu no vàlid." + +#: ../../mod/settings.php:383 +msgid " Cannot change to that email." +msgstr "No puc canviar a aquest correu." + +#: ../../mod/settings.php:437 +msgid "Private forum has no privacy permissions. Using default privacy group." +msgstr "Els Fòrums privats no tenen permisos de privacitat. Empra la privacitat de grup per defecte." + +#: ../../mod/settings.php:441 +msgid "Private forum has no privacy permissions and no default privacy group." +msgstr "Els Fòrums privats no tenen permisos de privacitat i tampoc privacitat per defecte de grup." + +#: ../../mod/settings.php:471 ../../addon/facebook/facebook.php:495 +#: ../../addon/fbpost/fbpost.php:144 ../../addon/impressum/impressum.php:78 +#: ../../addon/openstreetmap/openstreetmap.php:80 +#: ../../addon/mathjax/mathjax.php:66 ../../addon/piwik/piwik.php:105 +#: ../../addon/twitter/twitter.php:389 +msgid "Settings updated." +msgstr "Ajustos actualitzats." + +#: ../../mod/settings.php:542 ../../mod/settings.php:568 +#: ../../mod/settings.php:604 msgid "Add application" msgstr "Afegir aplicació" -#: ../../mod/settings.php:463 ../../mod/settings.php:489 -#: ../../addon/statusnet/statusnet.php:526 +#: ../../mod/settings.php:546 ../../mod/settings.php:572 +#: ../../addon/statusnet/statusnet.php:570 msgid "Consumer Key" msgstr "Consumer Key" -#: ../../mod/settings.php:464 ../../mod/settings.php:490 -#: ../../addon/statusnet/statusnet.php:525 +#: ../../mod/settings.php:547 ../../mod/settings.php:573 +#: ../../addon/statusnet/statusnet.php:569 msgid "Consumer Secret" msgstr "Consumer Secret" -#: ../../mod/settings.php:465 ../../mod/settings.php:491 +#: ../../mod/settings.php:548 ../../mod/settings.php:574 msgid "Redirect" msgstr "Redirigir" -#: ../../mod/settings.php:466 ../../mod/settings.php:492 +#: ../../mod/settings.php:549 ../../mod/settings.php:575 msgid "Icon url" msgstr "icona de url" -#: ../../mod/settings.php:477 +#: ../../mod/settings.php:560 msgid "You can't edit this application." msgstr "No pots editar aquesta aplicació." -#: ../../mod/settings.php:517 +#: ../../mod/settings.php:603 msgid "Connected Apps" msgstr "Aplicacions conectades" -#: ../../mod/settings.php:521 +#: ../../mod/settings.php:607 msgid "Client key starts with" msgstr "Les claus de client comançen amb" -#: ../../mod/settings.php:522 +#: ../../mod/settings.php:608 msgid "No name" msgstr "Sense nom" -#: ../../mod/settings.php:523 +#: ../../mod/settings.php:609 msgid "Remove authorization" msgstr "retirar l'autorització" -#: ../../mod/settings.php:535 +#: ../../mod/settings.php:620 msgid "No Plugin settings configured" msgstr "No s'han configurat ajustos de Plugin" -#: ../../mod/settings.php:542 ../../addon/widgets/widgets.php:122 +#: ../../mod/settings.php:628 ../../addon/widgets/widgets.php:123 msgid "Plugin Settings" msgstr "Ajustos de Plugin" -#: ../../mod/settings.php:555 ../../mod/settings.php:556 +#: ../../mod/settings.php:640 ../../mod/settings.php:641 #, php-format msgid "Built-in support for %s connectivity is %s" msgstr "El suport integrat per a la connectivitat de %s és %s" -#: ../../mod/settings.php:555 ../../mod/settings.php:556 +#: ../../mod/settings.php:640 ../../mod/settings.php:641 msgid "enabled" msgstr "habilitat" -#: ../../mod/settings.php:555 ../../mod/settings.php:556 +#: ../../mod/settings.php:640 ../../mod/settings.php:641 msgid "disabled" msgstr "deshabilitat" -#: ../../mod/settings.php:556 +#: ../../mod/settings.php:641 msgid "StatusNet" msgstr "StatusNet" -#: ../../mod/settings.php:584 +#: ../../mod/settings.php:673 +msgid "Email access is disabled on this site." +msgstr "L'accés al correu està deshabilitat en aquest lloc." + +#: ../../mod/settings.php:679 msgid "Connector Settings" msgstr "Configuració de connectors" -#: ../../mod/settings.php:590 +#: ../../mod/settings.php:684 msgid "Email/Mailbox Setup" msgstr "Preparació de Correu/Bústia" -#: ../../mod/settings.php:591 +#: ../../mod/settings.php:685 msgid "" "If you wish to communicate with email contacts using this service " "(optional), please specify how to connect to your mailbox." msgstr "Si vol comunicar-se amb els contactes de correu emprant aquest servei (opcional), Si us plau, especifiqui com connectar amb la seva bústia." -#: ../../mod/settings.php:592 +#: ../../mod/settings.php:686 msgid "Last successful email check:" msgstr "Última comprovació de correu amb èxit:" -#: ../../mod/settings.php:593 -msgid "Email access is disabled on this site." -msgstr "L'accés al correu està deshabilitat en aquest lloc." - -#: ../../mod/settings.php:594 +#: ../../mod/settings.php:688 msgid "IMAP server name:" msgstr "Nom del servidor IMAP:" -#: ../../mod/settings.php:595 +#: ../../mod/settings.php:689 msgid "IMAP port:" msgstr "Port IMAP:" -#: ../../mod/settings.php:596 +#: ../../mod/settings.php:690 msgid "Security:" msgstr "Seguretat:" -#: ../../mod/settings.php:596 ../../mod/settings.php:601 +#: ../../mod/settings.php:690 ../../mod/settings.php:695 +#: ../../addon/dav/common/wdcal_edit.inc.php:191 msgid "None" msgstr "Cap" -#: ../../mod/settings.php:597 +#: ../../mod/settings.php:691 msgid "Email login name:" msgstr "Nom d'usuari del correu" -#: ../../mod/settings.php:598 +#: ../../mod/settings.php:692 msgid "Email password:" msgstr "Contrasenya del correu:" -#: ../../mod/settings.php:599 +#: ../../mod/settings.php:693 msgid "Reply-to address:" msgstr "Adreça de resposta:" -#: ../../mod/settings.php:600 +#: ../../mod/settings.php:694 msgid "Send public posts to all email contacts:" msgstr "Enviar correu públic a tots els contactes del correu:" -#: ../../mod/settings.php:601 +#: ../../mod/settings.php:695 msgid "Action after import:" msgstr "Acció després d'importar:" -#: ../../mod/settings.php:601 +#: ../../mod/settings.php:695 msgid "Mark as seen" msgstr "Marcar com a vist" -#: ../../mod/settings.php:601 +#: ../../mod/settings.php:695 msgid "Move to folder" msgstr "Moure a la carpeta" -#: ../../mod/settings.php:602 +#: ../../mod/settings.php:696 msgid "Move to folder:" msgstr "Moure a la carpeta:" -#: ../../mod/settings.php:659 ../../mod/admin.php:142 ../../mod/admin.php:462 -msgid "Normal Account" -msgstr "Compte Normal" +#: ../../mod/settings.php:727 ../../mod/admin.php:402 +msgid "No special theme for mobile devices" +msgstr "" -#: ../../mod/settings.php:660 +#: ../../mod/settings.php:767 +msgid "Display Settings" +msgstr "Ajustos de Pantalla" + +#: ../../mod/settings.php:773 ../../mod/settings.php:784 +msgid "Display Theme:" +msgstr "Visualitzar el Tema:" + +#: ../../mod/settings.php:774 +msgid "Mobile Theme:" +msgstr "" + +#: ../../mod/settings.php:775 +msgid "Update browser every xx seconds" +msgstr "Actualitzar navegador cada xx segons" + +#: ../../mod/settings.php:775 +msgid "Minimum of 10 seconds, no maximum" +msgstr "Mínim cada 10 segons, no hi ha màxim" + +#: ../../mod/settings.php:776 +msgid "Number of items to display per page:" +msgstr "" + +#: ../../mod/settings.php:776 +msgid "Maximum of 100 items" +msgstr "Màxim de 100 elements" + +#: ../../mod/settings.php:777 +msgid "Don't show emoticons" +msgstr "No mostrar emoticons" + +#: ../../mod/settings.php:853 +msgid "Normal Account Page" +msgstr "Pàgina Normal del Compte " + +#: ../../mod/settings.php:854 msgid "This account is a normal personal profile" msgstr "Aques compte es un compte personal normal" -#: ../../mod/settings.php:663 ../../mod/admin.php:143 ../../mod/admin.php:463 -msgid "Soapbox Account" -msgstr "Compte Tribuna" +#: ../../mod/settings.php:857 +msgid "Soapbox Page" +msgstr "Pàgina de Soapbox" -#: ../../mod/settings.php:664 +#: ../../mod/settings.php:858 msgid "Automatically approve all connection/friend requests as read-only fans" msgstr "Aprova automàticament totes les sol·licituds de amistat/connexió com a fans de només lectura." -#: ../../mod/settings.php:667 ../../mod/admin.php:144 ../../mod/admin.php:464 -msgid "Community/Celebrity Account" +#: ../../mod/settings.php:861 +msgid "Community Forum/Celebrity Account" msgstr "Compte de Comunitat/Celebritat" -#: ../../mod/settings.php:668 +#: ../../mod/settings.php:862 msgid "" "Automatically approve all connection/friend requests as read-write fans" msgstr "Aprova automàticament totes les sol·licituds de amistat/connexió com a fans de lectura-escriptura" -#: ../../mod/settings.php:671 ../../mod/admin.php:145 ../../mod/admin.php:465 -msgid "Automatic Friend Account" -msgstr "Compte d'Amistat Automàtic" +#: ../../mod/settings.php:865 +msgid "Automatic Friend Page" +msgstr "Compte d'Amistat Automàtica" -#: ../../mod/settings.php:672 +#: ../../mod/settings.php:866 msgid "Automatically approve all connection/friend requests as friends" msgstr "Aprova totes les sol·licituds de amistat/connexió com a amic automàticament" -#: ../../mod/settings.php:682 +#: ../../mod/settings.php:869 +msgid "Private Forum [Experimental]" +msgstr "Fòrum Privat [Experimental]" + +#: ../../mod/settings.php:870 +msgid "Private forum - approved members only" +msgstr "Fòrum privat - Només membres aprovats" + +#: ../../mod/settings.php:882 msgid "OpenID:" msgstr "OpenID:" -#: ../../mod/settings.php:682 +#: ../../mod/settings.php:882 msgid "(Optional) Allow this OpenID to login to this account." msgstr "(Opcional) Permetre a aquest OpenID iniciar sessió en aquest compte." -#: ../../mod/settings.php:692 +#: ../../mod/settings.php:892 msgid "Publish your default profile in your local site directory?" msgstr "Publicar el teu perfil predeterminat en el directori del lloc local?" -#: ../../mod/settings.php:698 +#: ../../mod/settings.php:898 msgid "Publish your default profile in the global social directory?" msgstr "Publicar el teu perfil predeterminat al directori social global?" -#: ../../mod/settings.php:706 +#: ../../mod/settings.php:906 msgid "Hide your contact/friend list from viewers of your default profile?" msgstr "Amaga la teva llista de contactes/amics dels espectadors del seu perfil per defecte?" -#: ../../mod/settings.php:710 +#: ../../mod/settings.php:910 msgid "Hide your profile details from unknown viewers?" msgstr "Amagar els detalls del seu perfil a espectadors desconeguts?" -#: ../../mod/settings.php:715 +#: ../../mod/settings.php:915 msgid "Allow friends to post to your profile page?" msgstr "Permet als amics publicar en la seva pàgina de perfil?" -#: ../../mod/settings.php:721 +#: ../../mod/settings.php:921 msgid "Allow friends to tag your posts?" msgstr "Permet als amics d'etiquetar els teus missatges?" -#: ../../mod/settings.php:727 +#: ../../mod/settings.php:927 msgid "Allow us to suggest you as a potential friend to new members?" msgstr "Permeteu-nos suggerir-li com un amic potencial dels nous membres?" -#: ../../mod/settings.php:736 +#: ../../mod/settings.php:933 +msgid "Permit unknown people to send you private mail?" +msgstr "Permetre a desconeguts enviar missatges al teu correu privat?" + +#: ../../mod/settings.php:941 msgid "Profile is not published." msgstr "El Perfil no està publicat." -#: ../../mod/settings.php:768 ../../mod/profile_photo.php:206 +#: ../../mod/settings.php:944 ../../mod/profile_photo.php:248 msgid "or" msgstr "o" -#: ../../mod/settings.php:773 +#: ../../mod/settings.php:949 msgid "Your Identity Address is" msgstr "La seva Adreça d'Identitat és" -#: ../../mod/settings.php:784 +#: ../../mod/settings.php:960 msgid "Automatically expire posts after this many days:" msgstr "Després de aquests nombre de dies, els missatges caduquen automàticament:" -#: ../../mod/settings.php:784 +#: ../../mod/settings.php:960 msgid "If empty, posts will not expire. Expired posts will be deleted" msgstr "Si està buit, els missatges no caducarà. Missatges caducats s'eliminaran" -#: ../../mod/settings.php:785 +#: ../../mod/settings.php:961 msgid "Advanced expiration settings" msgstr "Configuració avançada d'expiració" -#: ../../mod/settings.php:786 +#: ../../mod/settings.php:962 msgid "Advanced Expiration" msgstr "Expiració Avançada" -#: ../../mod/settings.php:787 +#: ../../mod/settings.php:963 msgid "Expire posts:" msgstr "Expiració d'enviaments" -#: ../../mod/settings.php:788 +#: ../../mod/settings.php:964 msgid "Expire personal notes:" msgstr "Expiració de notes personals" -#: ../../mod/settings.php:789 +#: ../../mod/settings.php:965 msgid "Expire starred posts:" msgstr "Expiració de enviaments de favorits" -#: ../../mod/settings.php:790 +#: ../../mod/settings.php:966 msgid "Expire photos:" msgstr "Expiració de fotos" -#: ../../mod/settings.php:795 +#: ../../mod/settings.php:967 +msgid "Only expire posts by others:" +msgstr "Només expiren els enviaments dels altres:" + +#: ../../mod/settings.php:974 msgid "Account Settings" msgstr "Ajustos de Compte" -#: ../../mod/settings.php:803 +#: ../../mod/settings.php:982 msgid "Password Settings" msgstr "Ajustos de Contrasenya" -#: ../../mod/settings.php:804 +#: ../../mod/settings.php:983 msgid "New Password:" msgstr "Nova Contrasenya:" -#: ../../mod/settings.php:805 +#: ../../mod/settings.php:984 msgid "Confirm:" msgstr "Confirmar:" -#: ../../mod/settings.php:805 +#: ../../mod/settings.php:984 msgid "Leave password fields blank unless changing" msgstr "Deixi els camps de contrasenya buits per a no fer canvis" -#: ../../mod/settings.php:809 +#: ../../mod/settings.php:988 msgid "Basic Settings" msgstr "Ajustos Basics" -#: ../../mod/settings.php:810 ../../include/profile_advanced.php:15 +#: ../../mod/settings.php:989 ../../include/profile_advanced.php:15 msgid "Full Name:" msgstr "Nom Complet:" -#: ../../mod/settings.php:811 +#: ../../mod/settings.php:990 msgid "Email Address:" msgstr "Adreça de Correu:" -#: ../../mod/settings.php:812 +#: ../../mod/settings.php:991 msgid "Your Timezone:" msgstr "La teva zona Horària:" -#: ../../mod/settings.php:813 +#: ../../mod/settings.php:992 msgid "Default Post Location:" msgstr "Localització per Defecte del Missatge:" -#: ../../mod/settings.php:814 +#: ../../mod/settings.php:993 msgid "Use Browser Location:" msgstr "Ubicar-se amb el Navegador:" -#: ../../mod/settings.php:815 -msgid "Display Theme:" -msgstr "Visualitzar el Tema:" - -#: ../../mod/settings.php:816 -msgid "Update browser every xx seconds" -msgstr "Actualitzar navegador cada xx segons" - -#: ../../mod/settings.php:816 -msgid "Minimum of 10 seconds, no maximum" -msgstr "Mínim cada 10 segons, no hi ha màxim" - -#: ../../mod/settings.php:818 +#: ../../mod/settings.php:996 msgid "Security and Privacy Settings" msgstr "Ajustos de Seguretat i Privacitat" -#: ../../mod/settings.php:820 +#: ../../mod/settings.php:998 msgid "Maximum Friend Requests/Day:" msgstr "Nombre Màxim de Sol·licituds per Dia" -#: ../../mod/settings.php:820 +#: ../../mod/settings.php:998 ../../mod/settings.php:1017 msgid "(to prevent spam abuse)" msgstr "(per a prevenir abusos de spam)" -#: ../../mod/settings.php:821 +#: ../../mod/settings.php:999 msgid "Default Post Permissions" msgstr "Permisos de Correu per Defecte" -#: ../../mod/settings.php:822 +#: ../../mod/settings.php:1000 msgid "(click to open/close)" msgstr "(clicar per a obrir/tancar)" -#: ../../mod/settings.php:837 +#: ../../mod/settings.php:1017 +msgid "Maximum private messages per day from unknown people:" +msgstr "Màxim nombre de missatges, per dia, de desconeguts:" + +#: ../../mod/settings.php:1020 msgid "Notification Settings" msgstr "Ajustos de Notificació" -#: ../../mod/settings.php:838 +#: ../../mod/settings.php:1021 +msgid "By default post a status message when:" +msgstr "Enviar per defecte un missatge de estatus quan:" + +#: ../../mod/settings.php:1022 +msgid "accepting a friend request" +msgstr "Acceptar una sol·licitud d'amistat" + +#: ../../mod/settings.php:1023 +msgid "joining a forum/community" +msgstr "Unint-se a un fòrum/comunitat" + +#: ../../mod/settings.php:1024 +msgid "making an interesting profile change" +msgstr "fent un canvi al perfil" + +#: ../../mod/settings.php:1025 msgid "Send a notification email when:" msgstr "Envia un correu notificant quan:" -#: ../../mod/settings.php:839 +#: ../../mod/settings.php:1026 msgid "You receive an introduction" msgstr "Has rebut una presentació" -#: ../../mod/settings.php:840 +#: ../../mod/settings.php:1027 msgid "Your introductions are confirmed" msgstr "La teva presentació està confirmada" -#: ../../mod/settings.php:841 +#: ../../mod/settings.php:1028 msgid "Someone writes on your profile wall" msgstr "Algú ha escrit en el teu mur de perfil" -#: ../../mod/settings.php:842 +#: ../../mod/settings.php:1029 msgid "Someone writes a followup comment" msgstr "Algú ha escrit un comentari de seguiment" -#: ../../mod/settings.php:843 +#: ../../mod/settings.php:1030 msgid "You receive a private message" msgstr "Has rebut un missatge privat" -#: ../../mod/settings.php:844 +#: ../../mod/settings.php:1031 msgid "You receive a friend suggestion" msgstr "Has rebut una suggerencia d'un amic" -#: ../../mod/settings.php:845 +#: ../../mod/settings.php:1032 msgid "You are tagged in a post" msgstr "Estàs etiquetat en un enviament" -#: ../../mod/settings.php:848 -msgid "Advanced Page Settings" -msgstr "Ajustos Avançats de Pàgina" +#: ../../mod/settings.php:1033 +msgid "You are poked/prodded/etc. in a post" +msgstr "" -#: ../../mod/manage.php:90 +#: ../../mod/settings.php:1036 +msgid "Advanced Account/Page Type Settings" +msgstr "Ajustos Avançats de Compte/ Pàgina" + +#: ../../mod/settings.php:1037 +msgid "Change the behaviour of this account for special situations" +msgstr "Canviar el comportament d'aquest compte en situacions especials" + +#: ../../mod/manage.php:91 msgid "Manage Identities and/or Pages" msgstr "Administrar Identitats i/o Pàgines" -#: ../../mod/manage.php:93 +#: ../../mod/manage.php:94 msgid "" "Toggle between different identities or community/group pages which share " "your account details or which you have been granted \"manage\" permissions" msgstr "Alternar entre les diferents identitats o les pàgines de comunitats/grups que comparteixen les dades del seu compte o que se li ha concedit els permisos de \"administrar\"" -#: ../../mod/manage.php:95 +#: ../../mod/manage.php:96 msgid "Select an identity to manage: " msgstr "Seleccionar identitat a administrar:" -#: ../../mod/network.php:43 +#: ../../mod/network.php:97 msgid "Search Results For:" msgstr "Resultats de la Cerca Per a:" -#: ../../mod/network.php:77 ../../mod/search.php:16 +#: ../../mod/network.php:137 ../../mod/search.php:16 msgid "Remove term" msgstr "Traieu termini" -#: ../../mod/network.php:86 ../../mod/search.php:13 +#: ../../mod/network.php:146 ../../mod/search.php:13 msgid "Saved Searches" msgstr "Cerques Guardades" -#: ../../mod/network.php:87 ../../include/group.php:216 +#: ../../mod/network.php:147 ../../include/group.php:244 msgid "add" msgstr "afegir" -#: ../../mod/network.php:166 +#: ../../mod/network.php:287 msgid "Commented Order" msgstr "Ordre dels Comentaris" -#: ../../mod/network.php:171 +#: ../../mod/network.php:290 +msgid "Sort by Comment Date" +msgstr "Ordenar per Data de Comentari" + +#: ../../mod/network.php:293 msgid "Posted Order" msgstr "Ordre dels Enviaments" -#: ../../mod/network.php:182 +#: ../../mod/network.php:296 +msgid "Sort by Post Date" +msgstr "Ordenar per Data d'Enviament" + +#: ../../mod/network.php:303 +msgid "Posts that mention or involve you" +msgstr "Missatge que et menciona o t'impliquen" + +#: ../../mod/network.php:306 msgid "New" msgstr "Nou" -#: ../../mod/network.php:187 +#: ../../mod/network.php:309 +msgid "Activity Stream - by date" +msgstr "Activitat del Flux - per data" + +#: ../../mod/network.php:312 msgid "Starred" msgstr "Favorits" -#: ../../mod/network.php:192 -msgid "Bookmarks" -msgstr "Marcadors" +#: ../../mod/network.php:315 +msgid "Favourite Posts" +msgstr "Enviaments Favorits" -#: ../../mod/network.php:250 +#: ../../mod/network.php:318 +msgid "Shared Links" +msgstr "Enllaços Compartits" + +#: ../../mod/network.php:321 +msgid "Interesting Links" +msgstr "Enllaços Interesants" + +#: ../../mod/network.php:388 #, php-format msgid "Warning: This group contains %s member from an insecure network." msgid_plural "" @@ -2141,42 +2640,96 @@ msgid_plural "" msgstr[0] "Advertència: Aquest grup conté el membre %s en una xarxa insegura." msgstr[1] "Advertència: Aquest grup conté %s membres d'una xarxa insegura." -#: ../../mod/network.php:253 +#: ../../mod/network.php:391 msgid "Private messages to this group are at risk of public disclosure." msgstr "Els missatges privats a aquest grup es troben en risc de divulgació pública." -#: ../../mod/network.php:298 -msgid "No such group" -msgstr "Cap grup com" - -#: ../../mod/network.php:309 -msgid "Group is empty" -msgstr "El Grup es buit" - -#: ../../mod/network.php:313 -msgid "Group: " -msgstr "Grup:" - -#: ../../mod/network.php:323 +#: ../../mod/network.php:461 msgid "Contact: " msgstr "Contacte:" -#: ../../mod/network.php:325 +#: ../../mod/network.php:463 msgid "Private messages to this person are at risk of public disclosure." msgstr "Els missatges privats a aquesta persona es troben en risc de divulgació pública." -#: ../../mod/network.php:330 +#: ../../mod/network.php:468 msgid "Invalid contact." msgstr "Contacte no vàlid." -#: ../../mod/notes.php:44 ../../boot.php:1354 +#: ../../mod/notes.php:44 ../../boot.php:1696 msgid "Personal Notes" msgstr "Notes Personals" -#: ../../mod/notes.php:63 ../../include/text.php:645 +#: ../../mod/notes.php:63 ../../mod/filer.php:30 +#: ../../addon/facebook/facebook.php:770 +#: ../../addon/privacy_image_cache/privacy_image_cache.php:263 +#: ../../addon/fbpost/fbpost.php:267 +#: ../../addon/dav/friendica/layout.fnk.php:441 +#: ../../addon/dav/friendica/layout.fnk.php:488 ../../include/text.php:681 msgid "Save" msgstr "Guardar" +#: ../../mod/wallmessage.php:42 ../../mod/wallmessage.php:112 +#, php-format +msgid "Number of daily wall messages for %s exceeded. Message failed." +msgstr "Nombre diari de missatges al mur per %s excedit. El missatge ha fallat." + +#: ../../mod/wallmessage.php:56 ../../mod/message.php:59 +msgid "No recipient selected." +msgstr "No s'ha seleccionat destinatari." + +#: ../../mod/wallmessage.php:59 +msgid "Unable to check your home location." +msgstr "Incapaç de comprovar la localització." + +#: ../../mod/wallmessage.php:62 ../../mod/message.php:66 +msgid "Message could not be sent." +msgstr "El Missatge no ha estat enviat." + +#: ../../mod/wallmessage.php:65 ../../mod/message.php:69 +msgid "Message collection failure." +msgstr "Ha fallat la recollida del missatge." + +#: ../../mod/wallmessage.php:68 ../../mod/message.php:72 +msgid "Message sent." +msgstr "Missatge enviat." + +#: ../../mod/wallmessage.php:86 ../../mod/wallmessage.php:95 +msgid "No recipient." +msgstr "Sense destinatari." + +#: ../../mod/wallmessage.php:123 ../../mod/wallmessage.php:131 +#: ../../mod/message.php:242 ../../mod/message.php:250 +#: ../../include/conversation.php:1205 ../../include/conversation.php:1222 +msgid "Please enter a link URL:" +msgstr "Sius plau, entri l'enllaç URL:" + +#: ../../mod/wallmessage.php:138 ../../mod/message.php:278 +msgid "Send Private Message" +msgstr "Enviant Missatge Privat" + +#: ../../mod/wallmessage.php:139 +#, php-format +msgid "" +"If you wish for %s to respond, please check that the privacy settings on " +"your site allow private mail from unknown senders." +msgstr "si vols respondre a %s, comprova que els ajustos de privacitat del lloc permeten correus privats de remitents desconeguts." + +#: ../../mod/wallmessage.php:140 ../../mod/message.php:279 +#: ../../mod/message.php:469 +msgid "To:" +msgstr "Per a:" + +#: ../../mod/wallmessage.php:141 ../../mod/message.php:284 +#: ../../mod/message.php:471 +msgid "Subject:" +msgstr "Assumpte::" + +#: ../../mod/wallmessage.php:147 ../../mod/message.php:288 +#: ../../mod/message.php:474 ../../mod/invite.php:113 +msgid "Your message:" +msgstr "El teu missatge:" + #: ../../mod/newmember.php:6 msgid "Welcome to Friendica" msgstr "Benvingut a Friendica" @@ -2191,16 +2744,35 @@ msgid "" "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 "Ens agradaria oferir alguns consells i enllaços per ajudar a fer la seva experiència agradable. Feu clic a qualsevol element per visitar la pàgina corresponent. Un enllaç a aquesta pàgina serà visible des de la pàgina d'inici durant dues setmanes després de la seva inscripció inicial i després desapareixerà en silenci." +msgstr "Ens agradaria oferir alguns consells i enllaços per ajudar a fer la teva experiència agradable. Feu clic a qualsevol element per visitar la pàgina corresponent. Un enllaç a aquesta pàgina serà visible des de la pàgina d'inici durant dues setmanes després de la teva inscripció inicial i després desapareixerà en silenci." -#: ../../mod/newmember.php:16 +#: ../../mod/newmember.php:14 +msgid "Getting Started" +msgstr "" + +#: ../../mod/newmember.php:18 +msgid "Friendica Walk-Through" +msgstr "" + +#: ../../mod/newmember.php:18 +msgid "" +"On your Quick Start page - find a brief introduction to your " +"profile and network tabs, make some new connections, and find some groups to" +" join." +msgstr "" + +#: ../../mod/newmember.php:26 +msgid "Go to Your Settings" +msgstr "" + +#: ../../mod/newmember.php:26 msgid "" "On your 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 "En la de la seva configuració de la pàgina - canviï la contrasenya inicial. També prengui nota de la Adreça d'Identitat. Això s'assembla a una adreça de correu electrònic - i serà útil per fer amics a la xarxa social lliure." -#: ../../mod/newmember.php:18 +#: ../../mod/newmember.php:28 msgid "" "Review the other settings, particularly the privacy settings. An unpublished" " directory listing is like having an unlisted phone number. In general, you " @@ -2208,61 +2780,106 @@ msgid "" "potential friends know exactly how to find you." msgstr "Reviseu les altres configuracions, en particular la configuració de privadesa. Una llista de directoris no publicada és com tenir un número de telèfon no llistat. Normalment, hauria de publicar la seva llista - a menys que tots els seus amics i els amics potencials sàpiguen exactament com trobar-li." -#: ../../mod/newmember.php:20 +#: ../../mod/newmember.php:32 ../../mod/profperm.php:103 +#: ../../view/theme/diabook/theme.php:128 ../../include/profile_advanced.php:7 +#: ../../include/profile_advanced.php:84 ../../include/nav.php:50 +#: ../../boot.php:1672 +msgid "Profile" +msgstr "Perfil" + +#: ../../mod/newmember.php:36 ../../mod/profile_photo.php:244 +msgid "Upload Profile Photo" +msgstr "Pujar Foto del Perfil" + +#: ../../mod/newmember.php:36 msgid "" "Upload a profile photo if you have not done so already. Studies have shown " "that people with real photos of themselves are ten times more likely to make" " friends than people who do not." msgstr "Puji una foto del seu perfil si encara no ho ha fet. Els estudis han demostrat que les persones amb fotos reals de ells mateixos tenen deu vegades més probabilitats de fer amics que les persones que no ho fan." -#: ../../mod/newmember.php:23 -msgid "" -"Authorise the Facebook Connector if you currently have a Facebook account " -"and we will (optionally) import all your Facebook friends and conversations." -msgstr "Autoritzi el connector de Facebook si vostè té un compte al Facebook i nosaltres (opcionalment) importarem tots els teus amics de Facebook i les converses." +#: ../../mod/newmember.php:38 +msgid "Edit Your Profile" +msgstr "" -#: ../../mod/newmember.php:25 -msgid "" -"If this is your own personal server, installing the Facebook addon " -"may ease your transition to the free social web." -msgstr "Si aquesta és el seu servidor personal, la instal·lació del complement de Facebook pot facilitar la transició a la web social lliure." - -#: ../../mod/newmember.php:30 -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 "Introduïu les dades d'accés al correu electrònic a la seva pàgina de configuració de connector, si es desitja importar i relacionar-se amb amics o llistes de correu de la seva bústia d'email" - -#: ../../mod/newmember.php:32 +#: ../../mod/newmember.php:38 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 "Editi el perfil per defecte al seu gust. Reviseu la configuració per ocultar la seva llista d'amics i ocultar el perfil dels visitants desconeguts." -#: ../../mod/newmember.php:34 +#: ../../mod/newmember.php:40 +msgid "Profile Keywords" +msgstr "" + +#: ../../mod/newmember.php:40 msgid "" "Set some public keywords for your default profile which describe your " "interests. We may be able to find other people with similar interests and " "suggest friendships." msgstr "Estableix algunes paraules clau públiques al teu perfil predeterminat que descriguin els teus interessos. Podem ser capaços de trobar altres persones amb interessos similars i suggerir amistats." -#: ../../mod/newmember.php:36 +#: ../../mod/newmember.php:44 +msgid "Connecting" +msgstr "" + +#: ../../mod/newmember.php:49 ../../mod/newmember.php:51 +#: ../../addon/facebook/facebook.php:728 ../../addon/fbpost/fbpost.php:239 +#: ../../include/contact_selectors.php:81 +msgid "Facebook" +msgstr "Facebook" + +#: ../../mod/newmember.php:49 +msgid "" +"Authorise the Facebook Connector if you currently have a Facebook account " +"and we will (optionally) import all your Facebook friends and conversations." +msgstr "Autoritzi el connector de Facebook si vostè té un compte al Facebook i nosaltres (opcionalment) importarem tots els teus amics de Facebook i les converses." + +#: ../../mod/newmember.php:51 +msgid "" +"If this is your own personal server, installing the Facebook addon " +"may ease your transition to the free social web." +msgstr "Si aquesta és el seu servidor personal, la instal·lació del complement de Facebook pot facilitar la transició a la web social lliure." + +#: ../../mod/newmember.php:56 +msgid "Importing Emails" +msgstr "" + +#: ../../mod/newmember.php:56 +msgid "" +"Enter your email access information on your Connector Settings page if you " +"wish to import and interact with friends or mailing lists from your email " +"INBOX" +msgstr "Introduïu les dades d'accés al correu electrònic a la seva pàgina de configuració de connector, si es desitja importar i relacionar-se amb amics o llistes de correu de la seva bústia d'email" + +#: ../../mod/newmember.php:58 +msgid "Go to Your Contacts Page" +msgstr "" + +#: ../../mod/newmember.php:58 msgid "" "Your Contacts page is your gateway to managing friendships and connecting " "with friends on other networks. Typically you enter their address or site " "URL in the Add New Contact dialog." msgstr "La seva pàgina de Contactes és la seva porta d'entrada a la gestió de l'amistat i la connexió amb amics d'altres xarxes. Normalment, vostè entrar en la seva direcció o URL del lloc al diàleg Afegir Nou Contacte." -#: ../../mod/newmember.php:38 +#: ../../mod/newmember.php:60 +msgid "Go to Your Site's Directory" +msgstr "" + +#: ../../mod/newmember.php:60 msgid "" "The Directory page lets you find other people in this network or other " "federated sites. Look for a Connect or Follow link on " "their profile page. Provide your own Identity Address if requested." msgstr "La pàgina del Directori li permet trobar altres persones en aquesta xarxa o altres llocs federats. Busqui un enllaç Connectar o Seguir a la seva pàgina de perfil. Proporcioni la seva pròpia Adreça de Identitat si així ho sol·licita." -#: ../../mod/newmember.php:40 +#: ../../mod/newmember.php:62 +msgid "Finding New People" +msgstr "" + +#: ../../mod/newmember.php:62 msgid "" "On the side panel of the Contacts page are several tools to find new " "friends. We can match people by interest, look up people by name or " @@ -2271,14 +2888,41 @@ msgid "" "hours." msgstr "Al tauler lateral de la pàgina de contacte Hi ha diverses eines per trobar nous amics. Podem coincidir amb les persones per interesos, buscar persones pel nom o per interès, i oferir suggeriments basats en les relacions de la xarxa. En un nou lloc, els suggeriments d'amics, en general comencen a poblar el lloc a les 24 hores." -#: ../../mod/newmember.php:42 +#: ../../mod/newmember.php:66 ../../include/group.php:239 +msgid "Groups" +msgstr "Grups" + +#: ../../mod/newmember.php:70 +msgid "Group Your Contacts" +msgstr "" + +#: ../../mod/newmember.php:70 msgid "" "Once you have made some friends, organize them into private conversation " "groups from the sidebar of your Contacts page and then you can interact with" " each group privately on your Network page." msgstr "Una vegada que s'han fet alguns amics, organitzi'ls en grups de conversa privada a la barra lateral de la seva pàgina de contactes i després pot interactuar amb cada grup de forma privada a la pàgina de la xarxa." -#: ../../mod/newmember.php:44 +#: ../../mod/newmember.php:73 +msgid "Why Aren't My Posts Public?" +msgstr "" + +#: ../../mod/newmember.php:73 +msgid "" +"Friendica respects your privacy. By default, your posts will only show up to" +" people you've added as friends. For more information, see the help section " +"from the link above." +msgstr "" + +#: ../../mod/newmember.php:78 +msgid "Getting Help" +msgstr "" + +#: ../../mod/newmember.php:82 +msgid "Go to the Help Section" +msgstr "" + +#: ../../mod/newmember.php:82 msgid "" "Our help pages may be consulted for detail on other program" " features and resources." @@ -2292,51 +2936,51 @@ msgstr "Element no disponible" msgid "Item was not found." msgstr "Element no trobat." -#: ../../mod/group.php:27 +#: ../../mod/group.php:29 msgid "Group created." msgstr "Grup creat." -#: ../../mod/group.php:33 +#: ../../mod/group.php:35 msgid "Could not create group." msgstr "No puc crear grup." -#: ../../mod/group.php:43 ../../mod/group.php:127 +#: ../../mod/group.php:47 ../../mod/group.php:137 msgid "Group not found." msgstr "Grup no trobat" -#: ../../mod/group.php:56 +#: ../../mod/group.php:60 msgid "Group name changed." msgstr "Nom de Grup canviat." -#: ../../mod/group.php:67 ../../mod/profperm.php:19 ../../index.php:287 +#: ../../mod/group.php:72 ../../mod/profperm.php:19 ../../index.php:316 msgid "Permission denied" msgstr "Permís denegat" -#: ../../mod/group.php:85 +#: ../../mod/group.php:90 msgid "Create a group of contacts/friends." msgstr "Crear un grup de contactes/amics." -#: ../../mod/group.php:86 ../../mod/group.php:166 +#: ../../mod/group.php:91 ../../mod/group.php:177 msgid "Group Name: " msgstr "Nom del Grup:" -#: ../../mod/group.php:102 +#: ../../mod/group.php:110 msgid "Group removed." msgstr "Grup esborrat." -#: ../../mod/group.php:104 +#: ../../mod/group.php:112 msgid "Unable to remove group." msgstr "Incapaç de esborrar Grup." -#: ../../mod/group.php:165 +#: ../../mod/group.php:176 msgid "Group Editor" msgstr "Editor de Grup:" -#: ../../mod/group.php:177 +#: ../../mod/group.php:189 msgid "Members" msgstr "Membres" -#: ../../mod/group.php:209 ../../mod/profperm.php:105 +#: ../../mod/group.php:221 ../../mod/profperm.php:105 msgid "Click on a contact to add or remove." msgstr "Clicar sobre el contacte per afegir o esborrar." @@ -2348,12 +2992,6 @@ msgstr "Identificador del perfil no vàlid." msgid "Profile Visibility Editor" msgstr "Editor de Visibilitat del Perfil" -#: ../../mod/profperm.php:103 ../../include/profile_advanced.php:7 -#: ../../include/profile_advanced.php:76 ../../include/nav.php:48 -#: ../../boot.php:1336 -msgid "Profile" -msgstr "Perfil" - #: ../../mod/profperm.php:114 msgid "Visible To" msgstr "Visible Per" @@ -2366,309 +3004,271 @@ msgstr "Tots els Contactes (amb accés segur al perfil)" msgid "No contacts." msgstr "Sense Contactes" -#: ../../mod/viewcontacts.php:74 ../../include/text.php:584 +#: ../../mod/viewcontacts.php:76 ../../include/text.php:618 msgid "View Contacts" msgstr "Veure Contactes" -#: ../../mod/register.php:62 -msgid "An invitation is required." -msgstr "Es requereix invitació." - -#: ../../mod/register.php:67 -msgid "Invitation could not be verified." -msgstr "La invitació no ha pogut ser verificada." - -#: ../../mod/register.php:75 -msgid "Invalid OpenID url" -msgstr "OpenID url no vàlid" - -#: ../../mod/register.php:90 -msgid "Please enter the required information." -msgstr "Per favor, introdueixi la informació requerida." - -#: ../../mod/register.php:104 -msgid "Please use a shorter name." -msgstr "Per favor, empri un nom més curt." - -#: ../../mod/register.php:106 -msgid "Name too short." -msgstr "Nom massa curt." - -#: ../../mod/register.php:121 -msgid "That doesn't appear to be your full (First Last) name." -msgstr "Això no sembla ser el teu nom complet." - -#: ../../mod/register.php:126 -msgid "Your email domain is not among those allowed on this site." -msgstr "El seu domini de correu electrònic no es troba entre els permesos en aquest lloc." - -#: ../../mod/register.php:129 -msgid "Not a valid email address." -msgstr "Adreça de correu no vàlida." - -#: ../../mod/register.php:139 -msgid "Cannot use that email." -msgstr "No es pot utilitzar aquest correu electrònic." - -#: ../../mod/register.php:145 -msgid "" -"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and " -"must also begin with a letter." -msgstr "El teu sobrenom nomes pot contenir \"a-z\", \"0-9\", \"-\", i \"_\", i començar amb lletra." - -#: ../../mod/register.php:151 ../../mod/register.php:252 -msgid "Nickname is already registered. Please choose another." -msgstr "malnom ja registrat. Tria un altre." - -#: ../../mod/register.php:170 -msgid "SERIOUS ERROR: Generation of security keys failed." -msgstr "ERROR IMPORTANT: La generació de claus de seguretat ha fallat." - -#: ../../mod/register.php:238 -msgid "An error occurred during registration. Please try again." -msgstr "Un error ha succeït durant el registre. Intenta-ho de nou." - -#: ../../mod/register.php:274 -msgid "An error occurred creating your default profile. Please try again." -msgstr "Un error ha succeit durant la creació del teu perfil per defecte. Intenta-ho de nou." - -#: ../../mod/register.php:378 ../../mod/regmod.php:52 +#: ../../mod/register.php:88 ../../mod/regmod.php:52 #, php-format msgid "Registration details for %s" msgstr "Detalls del registre per a %s" -#: ../../mod/register.php:386 +#: ../../mod/register.php:96 msgid "" "Registration successful. Please check your email for further instructions." msgstr "Registrat amb èxit. Per favor, comprovi el seu correu per a posteriors instruccions." -#: ../../mod/register.php:390 +#: ../../mod/register.php:100 msgid "Failed to send email message. Here is the message that failed." msgstr "Error en enviar missatge de correu electrònic. Aquí està el missatge que ha fallat." -#: ../../mod/register.php:395 +#: ../../mod/register.php:105 msgid "Your registration can not be processed." msgstr "El seu registre no pot ser processat." -#: ../../mod/register.php:432 +#: ../../mod/register.php:142 #, php-format msgid "Registration request at %s" msgstr "Sol·licitud de registre a %s" -#: ../../mod/register.php:441 +#: ../../mod/register.php:151 msgid "Your registration is pending approval by the site owner." msgstr "El seu registre està pendent d'aprovació pel propietari del lloc." -#: ../../mod/register.php:479 +#: ../../mod/register.php:189 msgid "" "This site has exceeded the number of allowed daily account registrations. " "Please try again tomorrow." msgstr "Aquest lloc excedeix el nombre diari de registres de comptes. Per favor, provi de nou demà." -#: ../../mod/register.php:505 +#: ../../mod/register.php:217 msgid "" "You may (optionally) fill in this form via OpenID by supplying your OpenID " "and clicking 'Register'." msgstr "Vostè pot (opcionalment), omplir aquest formulari a través de OpenID mitjançant el subministrament de la seva OpenID i fent clic a 'Registrar'." -#: ../../mod/register.php:506 +#: ../../mod/register.php:218 msgid "" "If you are not familiar with OpenID, please leave that field blank and fill " "in the rest of the items." msgstr "Si vostè no està familiaritzat amb Twitter, si us plau deixi aquest camp en blanc i completi la resta dels elements." -#: ../../mod/register.php:507 +#: ../../mod/register.php:219 msgid "Your OpenID (optional): " msgstr "El seu OpenID (opcional):" -#: ../../mod/register.php:521 +#: ../../mod/register.php:233 msgid "Include your profile in member directory?" msgstr "Incloc el seu perfil al directori de membres?" -#: ../../mod/register.php:536 +#: ../../mod/register.php:255 msgid "Membership on this site is by invitation only." msgstr "Lloc accesible mitjançant invitació." -#: ../../mod/register.php:537 +#: ../../mod/register.php:256 msgid "Your invitation ID: " msgstr "El teu ID de invitació:" -#: ../../mod/register.php:540 ../../mod/admin.php:314 +#: ../../mod/register.php:259 ../../mod/admin.php:444 msgid "Registration" msgstr "Procés de Registre" -#: ../../mod/register.php:548 +#: ../../mod/register.php:267 msgid "Your Full Name (e.g. Joe Smith): " msgstr "El seu nom complet (per exemple, Joan Ningú):" -#: ../../mod/register.php:549 +#: ../../mod/register.php:268 msgid "Your Email Address: " msgstr "La Seva Adreça de Correu:" -#: ../../mod/register.php:550 +#: ../../mod/register.php:269 msgid "" "Choose a profile nickname. This must begin with a text character. Your " "profile address on this site will then be " "'nickname@$sitename'." -msgstr "Tria un nom de perfil. Això ha de començar amb un caràcter de text. La seva adreça de perfil en aquest lloc serà 'malnom@$sitename'." +msgstr "Tria un nom de perfil. Això ha de començar amb un caràcter de text. La seva adreça de perfil en aquest lloc serà 'alies@$sitename'." -#: ../../mod/register.php:551 +#: ../../mod/register.php:270 msgid "Choose a nickname: " -msgstr "Tria un malnom:" +msgstr "Tria un àlies:" -#: ../../mod/register.php:554 ../../include/nav.php:77 ../../boot.php:693 +#: ../../mod/register.php:273 ../../include/nav.php:81 ../../boot.php:887 msgid "Register" msgstr "Registrar" -#: ../../mod/dirfind.php:23 +#: ../../mod/dirfind.php:26 msgid "People Search" msgstr "Cercant Gent" -#: ../../mod/like.php:127 ../../mod/tagger.php:70 -#: ../../addon/facebook/facebook.php:1092 +#: ../../mod/like.php:145 ../../mod/like.php:298 ../../mod/tagger.php:62 +#: ../../addon/facebook/facebook.php:1598 #: ../../addon/communityhome/communityhome.php:158 #: ../../addon/communityhome/communityhome.php:167 -#: ../../include/diaspora.php:1600 ../../include/conversation.php:48 -#: ../../include/conversation.php:57 ../../include/conversation.php:121 -#: ../../include/conversation.php:130 +#: ../../view/theme/diabook/theme.php:565 +#: ../../view/theme/diabook/theme.php:574 ../../include/diaspora.php:1824 +#: ../../include/conversation.php:120 ../../include/conversation.php:129 +#: ../../include/conversation.php:248 ../../include/conversation.php:257 msgid "status" msgstr "estatus" -#: ../../mod/like.php:144 ../../addon/facebook/facebook.php:1096 +#: ../../mod/like.php:162 ../../addon/facebook/facebook.php:1602 #: ../../addon/communityhome/communityhome.php:172 -#: ../../include/diaspora.php:1616 ../../include/conversation.php:65 +#: ../../view/theme/diabook/theme.php:579 ../../include/diaspora.php:1840 +#: ../../include/conversation.php:136 #, php-format msgid "%1$s likes %2$s's %3$s" msgstr "a %1$s agrada %2$s de %3$s" -#: ../../mod/like.php:146 ../../include/conversation.php:68 +#: ../../mod/like.php:164 ../../include/conversation.php:139 #, php-format msgid "%1$s doesn't like %2$s's %3$s" msgstr "a %1$s no agrada %2$s de %3$s" -#: ../../mod/notice.php:15 ../../mod/viewsrc.php:15 ../../mod/admin.php:127 -#: ../../mod/admin.php:522 ../../mod/admin.php:700 ../../mod/display.php:29 -#: ../../mod/display.php:137 ../../mod/viewd.php:14 -#: ../../include/items.php:2942 +#: ../../mod/notice.php:15 ../../mod/viewsrc.php:15 ../../mod/admin.php:159 +#: ../../mod/admin.php:734 ../../mod/admin.php:933 ../../mod/display.php:29 +#: ../../mod/display.php:145 ../../include/items.php:3774 msgid "Item not found." msgstr "Article no trobat." -#: ../../mod/viewsrc.php:7 ../../mod/viewd.php:6 +#: ../../mod/viewsrc.php:7 msgid "Access denied." msgstr "Accés denegat." +#: ../../mod/fbrowser.php:25 ../../view/theme/diabook/theme.php:130 +#: ../../include/nav.php:51 ../../boot.php:1679 +msgid "Photos" +msgstr "Fotos" + +#: ../../mod/fbrowser.php:96 +msgid "Files" +msgstr "Arxius" + #: ../../mod/regmod.php:61 msgid "Account approved." msgstr "Compte aprovat." -#: ../../mod/regmod.php:93 +#: ../../mod/regmod.php:98 #, php-format msgid "Registration revoked for %s" msgstr "Procés de Registre revocat per a %s" -#: ../../mod/regmod.php:105 +#: ../../mod/regmod.php:110 msgid "Please login." msgstr "Si us plau, ingressa." -#: ../../mod/item.php:89 +#: ../../mod/item.php:91 msgid "Unable to locate original post." msgstr "No es pot localitzar post original." -#: ../../mod/item.php:249 +#: ../../mod/item.php:275 msgid "Empty post discarded." msgstr "Buidat després de rebutjar." -#: ../../mod/item.php:351 ../../mod/wall_upload.php:81 -#: ../../mod/wall_upload.php:90 ../../mod/wall_upload.php:97 -#: ../../include/message.php:143 +#: ../../mod/item.php:407 ../../mod/wall_upload.php:133 +#: ../../mod/wall_upload.php:142 ../../mod/wall_upload.php:149 +#: ../../include/message.php:144 msgid "Wall Photos" msgstr "Fotos del Mur" -#: ../../mod/item.php:833 +#: ../../mod/item.php:820 msgid "System error. Post not saved." msgstr "Error del sistema. Publicació no guardada." -#: ../../mod/item.php:858 +#: ../../mod/item.php:845 #, php-format msgid "" "This message was sent to you by %s, a member of the Friendica social " "network." msgstr "Aquest missatge va ser enviat a vostè per %s, un membre de la xarxa social Friendica." -#: ../../mod/item.php:860 +#: ../../mod/item.php:847 #, php-format msgid "You may visit them online at %s" msgstr "El pot visitar en línia a %s" -#: ../../mod/item.php:861 +#: ../../mod/item.php:848 msgid "" "Please contact the sender by replying to this post if you do not wish to " "receive these messages." msgstr "Si us plau, poseu-vos en contacte amb el remitent responent a aquest missatge si no voleu rebre aquests missatges." -#: ../../mod/item.php:863 +#: ../../mod/item.php:850 #, php-format msgid "%s posted an update." msgstr "%s ha publicat una actualització." -#: ../../mod/profile_photo.php:28 +#: ../../mod/mood.php:62 ../../include/conversation.php:226 +#, php-format +msgid "%1$s is currently %2$s" +msgstr "" + +#: ../../mod/mood.php:133 +msgid "Mood" +msgstr "" + +#: ../../mod/mood.php:134 +msgid "Set your current mood and tell your friends" +msgstr "" + +#: ../../mod/profile_photo.php:44 msgid "Image uploaded but image cropping failed." msgstr "Imatge pujada però no es va poder retallar." -#: ../../mod/profile_photo.php:61 ../../mod/profile_photo.php:68 -#: ../../mod/profile_photo.php:75 ../../mod/profile_photo.php:258 +#: ../../mod/profile_photo.php:77 ../../mod/profile_photo.php:84 +#: ../../mod/profile_photo.php:91 ../../mod/profile_photo.php:308 #, php-format msgid "Image size reduction [%s] failed." msgstr "La reducció de la imatge [%s] va fracassar." -#: ../../mod/profile_photo.php:89 +#: ../../mod/profile_photo.php:118 msgid "" "Shift-reload the page or clear browser cache if the new photo does not " "display immediately." msgstr "Recarregui la pàgina o netegi la caché del navegador si la nova foto no apareix immediatament." -#: ../../mod/profile_photo.php:99 +#: ../../mod/profile_photo.php:128 msgid "Unable to process image" msgstr "No es pot processar la imatge" -#: ../../mod/profile_photo.php:113 ../../mod/wall_upload.php:56 +#: ../../mod/profile_photo.php:144 ../../mod/wall_upload.php:88 #, php-format msgid "Image exceeds size limit of %d" msgstr "La imatge sobrepassa el límit de mida de %d" -#: ../../mod/profile_photo.php:203 +#: ../../mod/profile_photo.php:242 msgid "Upload File:" msgstr "Pujar arxiu:" -#: ../../mod/profile_photo.php:204 -msgid "Upload Profile Photo" -msgstr "Pujar Foto del Perfil" +#: ../../mod/profile_photo.php:243 +msgid "Select a profile:" +msgstr "" -#: ../../mod/profile_photo.php:205 +#: ../../mod/profile_photo.php:245 +#: ../../addon/dav/friendica/layout.fnk.php:152 msgid "Upload" msgstr "Pujar" -#: ../../mod/profile_photo.php:206 +#: ../../mod/profile_photo.php:248 msgid "skip this step" msgstr "saltar aquest pas" -#: ../../mod/profile_photo.php:206 +#: ../../mod/profile_photo.php:248 msgid "select a photo from your photo albums" msgstr "tria una foto dels teus àlbums" -#: ../../mod/profile_photo.php:219 +#: ../../mod/profile_photo.php:262 msgid "Crop Image" msgstr "retallar imatge" -#: ../../mod/profile_photo.php:220 +#: ../../mod/profile_photo.php:263 msgid "Please adjust the image cropping for optimum viewing." msgstr "Per favor, ajusta la retallada d'imatge per a una optima visualització." -#: ../../mod/profile_photo.php:221 +#: ../../mod/profile_photo.php:265 msgid "Done Editing" msgstr "Edició Feta" -#: ../../mod/profile_photo.php:249 +#: ../../mod/profile_photo.php:299 msgid "Image uploaded successfully." msgstr "Carregada de la imatge amb èxit." @@ -2690,88 +3290,71 @@ msgstr "Això eliminarà per complet el seu compte. Quan s'hagi fet això, no se msgid "Please enter your password for verification:" msgstr "Si us plau, introduïu la contrasenya per a la verificació:" -#: ../../mod/message.php:23 -msgid "No recipient selected." -msgstr "No s'ha seleccionat destinatari." - -#: ../../mod/message.php:26 -msgid "Unable to locate contact information." -msgstr "No es pot trobar informació de contacte." - -#: ../../mod/message.php:29 -msgid "Message could not be sent." -msgstr "El Missatge no ha estat enviat." - -#: ../../mod/message.php:32 -msgid "Message collection failure." -msgstr "Ha fallat la recollida del missatge." - -#: ../../mod/message.php:35 -msgid "Message sent." -msgstr "Missatge enviat." - -#: ../../mod/message.php:55 -msgid "Inbox" -msgstr "Safata d'entrada" - -#: ../../mod/message.php:60 -msgid "Outbox" -msgstr "Safata de sortida" - -#: ../../mod/message.php:65 +#: ../../mod/message.php:9 ../../include/nav.php:131 msgid "New Message" msgstr "Nou Missatge" -#: ../../mod/message.php:91 +#: ../../mod/message.php:63 +msgid "Unable to locate contact information." +msgstr "No es pot trobar informació de contacte." + +#: ../../mod/message.php:191 msgid "Message deleted." msgstr "Missatge eliminat." -#: ../../mod/message.php:121 +#: ../../mod/message.php:221 msgid "Conversation removed." msgstr "Conversació esborrada." -#: ../../mod/message.php:137 ../../include/conversation.php:887 -msgid "Please enter a link URL:" -msgstr "Sius plau, entri l'enllaç URL:" - -#: ../../mod/message.php:145 -msgid "Send Private Message" -msgstr "Enviant Missatge Privat" - -#: ../../mod/message.php:146 ../../mod/message.php:287 -msgid "To:" -msgstr "Per a:" - -#: ../../mod/message.php:147 ../../mod/message.php:288 -msgid "Subject:" -msgstr "Assumpte::" - -#: ../../mod/message.php:150 ../../mod/message.php:291 -#: ../../mod/invite.php:101 -msgid "Your message:" -msgstr "El teu missatge:" - -#: ../../mod/message.php:188 +#: ../../mod/message.php:327 msgid "No messages." msgstr "Sense missatges." -#: ../../mod/message.php:201 +#: ../../mod/message.php:334 +#, php-format +msgid "Unknown sender - %s" +msgstr "remitent desconegut - %s" + +#: ../../mod/message.php:337 +#, php-format +msgid "You and %s" +msgstr "Tu i %s" + +#: ../../mod/message.php:340 +#, php-format +msgid "%s and You" +msgstr "%s i Tu" + +#: ../../mod/message.php:350 ../../mod/message.php:462 msgid "Delete conversation" msgstr "Esborrar conversació" -#: ../../mod/message.php:204 +#: ../../mod/message.php:353 msgid "D, d M Y - g:i A" msgstr "D, d M Y - g:i A" -#: ../../mod/message.php:239 +#: ../../mod/message.php:356 +#, php-format +msgid "%d message" +msgid_plural "%d messages" +msgstr[0] "%d missatge" +msgstr[1] "%d missatges" + +#: ../../mod/message.php:391 msgid "Message not available." msgstr "Missatge no disponible." -#: ../../mod/message.php:276 +#: ../../mod/message.php:444 msgid "Delete message" msgstr "Esborra missatge" -#: ../../mod/message.php:286 +#: ../../mod/message.php:464 +msgid "" +"No secure communications available. You may be able to " +"respond from the sender's profile page." +msgstr "Comunicacions degures no disponibles. Tú pots respondre des de la pàgina de perfil del remitent." + +#: ../../mod/message.php:468 msgid "Send Reply" msgstr "Enviar Resposta" @@ -2784,582 +3367,742 @@ msgstr "Amics de %s" msgid "No friends to display." msgstr "No hi ha amics que mostrar" -#: ../../mod/admin.php:71 ../../mod/admin.php:312 +#: ../../mod/admin.php:55 +msgid "Theme settings updated." +msgstr "Ajustos de Tema actualitzats" + +#: ../../mod/admin.php:96 ../../mod/admin.php:442 msgid "Site" msgstr "Lloc" -#: ../../mod/admin.php:72 ../../mod/admin.php:480 ../../mod/admin.php:492 +#: ../../mod/admin.php:97 ../../mod/admin.php:688 ../../mod/admin.php:701 msgid "Users" msgstr "Usuaris" -#: ../../mod/admin.php:73 ../../mod/admin.php:569 ../../mod/admin.php:608 +#: ../../mod/admin.php:98 ../../mod/admin.php:783 ../../mod/admin.php:825 msgid "Plugins" msgstr "Plugins" -#: ../../mod/admin.php:74 ../../mod/admin.php:742 ../../mod/admin.php:775 +#: ../../mod/admin.php:99 ../../mod/admin.php:988 ../../mod/admin.php:1024 msgid "Themes" msgstr "Temes" -#: ../../mod/admin.php:89 ../../mod/admin.php:855 -msgid "Logs" -msgstr "Transcripcions" +#: ../../mod/admin.php:100 +msgid "DB updates" +msgstr "Actualitzacions de BD" -#: ../../mod/admin.php:94 +#: ../../mod/admin.php:115 ../../mod/admin.php:122 ../../mod/admin.php:1111 +msgid "Logs" +msgstr "Registres" + +#: ../../mod/admin.php:120 ../../include/nav.php:146 +msgid "Admin" +msgstr "Admin" + +#: ../../mod/admin.php:121 +msgid "Plugin Features" +msgstr "Característiques del Plugin" + +#: ../../mod/admin.php:123 msgid "User registrations waiting for confirmation" msgstr "Registre d'usuari a l'espera de confirmació" -#: ../../mod/admin.php:161 ../../mod/admin.php:311 ../../mod/admin.php:479 -#: ../../mod/admin.php:568 ../../mod/admin.php:607 ../../mod/admin.php:741 -#: ../../mod/admin.php:774 ../../mod/admin.php:854 +#: ../../mod/admin.php:183 ../../mod/admin.php:669 +msgid "Normal Account" +msgstr "Compte Normal" + +#: ../../mod/admin.php:184 ../../mod/admin.php:670 +msgid "Soapbox Account" +msgstr "Compte Tribuna" + +#: ../../mod/admin.php:185 ../../mod/admin.php:671 +msgid "Community/Celebrity Account" +msgstr "Compte de Comunitat/Celebritat" + +#: ../../mod/admin.php:186 ../../mod/admin.php:672 +msgid "Automatic Friend Account" +msgstr "Compte d'Amistat Automàtic" + +#: ../../mod/admin.php:187 +msgid "Blog Account" +msgstr "Compte de Blog" + +#: ../../mod/admin.php:188 +msgid "Private Forum" +msgstr "Fòrum Privat" + +#: ../../mod/admin.php:207 +msgid "Message queues" +msgstr "Cues de missatges" + +#: ../../mod/admin.php:212 ../../mod/admin.php:441 ../../mod/admin.php:687 +#: ../../mod/admin.php:782 ../../mod/admin.php:824 ../../mod/admin.php:987 +#: ../../mod/admin.php:1023 ../../mod/admin.php:1110 msgid "Administration" msgstr "Administració" -#: ../../mod/admin.php:162 +#: ../../mod/admin.php:213 msgid "Summary" msgstr "Sumari" -#: ../../mod/admin.php:163 +#: ../../mod/admin.php:215 msgid "Registered users" msgstr "Usuaris registrats" -#: ../../mod/admin.php:165 +#: ../../mod/admin.php:217 msgid "Pending registrations" msgstr "Registres d'usuari pendents" -#: ../../mod/admin.php:166 +#: ../../mod/admin.php:218 msgid "Version" msgstr "Versió" -#: ../../mod/admin.php:168 +#: ../../mod/admin.php:220 msgid "Active plugins" msgstr "Plugins actius" -#: ../../mod/admin.php:260 +#: ../../mod/admin.php:373 msgid "Site settings updated." msgstr "Ajustos del lloc actualitzats." -#: ../../mod/admin.php:304 +#: ../../mod/admin.php:428 msgid "Closed" msgstr "Tancat" -#: ../../mod/admin.php:305 +#: ../../mod/admin.php:429 msgid "Requires approval" msgstr "Requereix aprovació" -#: ../../mod/admin.php:306 +#: ../../mod/admin.php:430 msgid "Open" msgstr "Obert" -#: ../../mod/admin.php:315 +#: ../../mod/admin.php:434 +msgid "No SSL policy, links will track page SSL state" +msgstr "No existe una política de SSL, se hará un seguimiento de los vínculos de la página con SSL" + +#: ../../mod/admin.php:435 +msgid "Force all links to use SSL" +msgstr "Forzar a tots els enllaços a utilitzar SSL" + +#: ../../mod/admin.php:436 +msgid "Self-signed certificate, use SSL for local links only (discouraged)" +msgstr "Certificat auto-signat, utilitzar SSL només per a enllaços locals (desaconsellat)" + +#: ../../mod/admin.php:445 msgid "File upload" msgstr "Fitxer carregat" -#: ../../mod/admin.php:316 +#: ../../mod/admin.php:446 msgid "Policies" msgstr "Polítiques" -#: ../../mod/admin.php:317 +#: ../../mod/admin.php:447 msgid "Advanced" msgstr "Avançat" -#: ../../mod/admin.php:321 ../../addon/statusnet/statusnet.php:523 +#: ../../mod/admin.php:451 ../../addon/statusnet/statusnet.php:567 msgid "Site name" msgstr "Nom del lloc" -#: ../../mod/admin.php:322 +#: ../../mod/admin.php:452 msgid "Banner/Logo" msgstr "Senyera/Logo" -#: ../../mod/admin.php:323 +#: ../../mod/admin.php:453 msgid "System language" -msgstr "Idioma del Systema" +msgstr "Idioma del Sistema" -#: ../../mod/admin.php:324 +#: ../../mod/admin.php:454 msgid "System theme" msgstr "Tema del sistema" -#: ../../mod/admin.php:324 -msgid "Default system theme - may be over-ridden by user profiles" -msgstr "Tema per defecte del sitema - pot ser canviat als perfils dels usuaris" +#: ../../mod/admin.php:454 +msgid "" +"Default system theme - may be over-ridden by user profiles - change theme settings" +msgstr "Tema per defecte del sistema - pot ser obviat pels perfils del usuari - Canviar ajustos de tema" -#: ../../mod/admin.php:326 +#: ../../mod/admin.php:455 +msgid "Mobile system theme" +msgstr "" + +#: ../../mod/admin.php:455 +msgid "Theme for mobile devices" +msgstr "" + +#: ../../mod/admin.php:456 +msgid "SSL link policy" +msgstr "Política SSL per als enllaços" + +#: ../../mod/admin.php:456 +msgid "Determines whether generated links should be forced to use SSL" +msgstr "Determina si els enllaços generats han de ser forçats a utilitzar SSL" + +#: ../../mod/admin.php:457 msgid "Maximum image size" msgstr "Mida màxima de les imatges" -#: ../../mod/admin.php:326 +#: ../../mod/admin.php:457 msgid "" "Maximum size in bytes of uploaded images. Default is 0, which means no " "limits." msgstr "Mida màxima en bytes de les imatges a pujar. Per defecte es 0, que vol dir sense límits." -#: ../../mod/admin.php:328 +#: ../../mod/admin.php:458 +msgid "Maximum image length" +msgstr "" + +#: ../../mod/admin.php:458 +msgid "" +"Maximum length in pixels of the longest side of uploaded images. Default is " +"-1, which means no limits." +msgstr "" + +#: ../../mod/admin.php:459 +msgid "JPEG image quality" +msgstr "" + +#: ../../mod/admin.php:459 +msgid "" +"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " +"100, which is full quality." +msgstr "" + +#: ../../mod/admin.php:461 msgid "Register policy" msgstr "Política per a registrar" -#: ../../mod/admin.php:329 +#: ../../mod/admin.php:462 msgid "Register text" msgstr "Text al registrar" -#: ../../mod/admin.php:329 +#: ../../mod/admin.php:462 msgid "Will be displayed prominently on the registration page." -msgstr "Sea mostrat de forma peminent a la pagina durant el procés de registre." +msgstr "Serà mostrat de forma preminent a la pàgina durant el procés de registre." -#: ../../mod/admin.php:330 +#: ../../mod/admin.php:463 msgid "Accounts abandoned after x days" msgstr "Comptes abandonats després de x dies" -#: ../../mod/admin.php:330 +#: ../../mod/admin.php:463 msgid "" -"Will not waste system resources polling external sites for abandoned " +"Will not waste system resources polling external sites for abandonded " "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." -#: ../../mod/admin.php:331 +#: ../../mod/admin.php:464 msgid "Allowed friend domains" msgstr "Dominis amics permesos" -#: ../../mod/admin.php:331 +#: ../../mod/admin.php:464 msgid "" "Comma separated list of domains which are allowed to establish friendships " "with this site. Wildcards are accepted. Empty to allow any domains" msgstr "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." -#: ../../mod/admin.php:332 +#: ../../mod/admin.php:465 msgid "Allowed email domains" msgstr "Dominis de correu permesos" -#: ../../mod/admin.php:332 +#: ../../mod/admin.php:465 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 "Llista de dominis separada per comes, de adreçes de correu que són permeses per registrtar-se. S'admeten comodins. Deixa'l buit per a acceptar tots els dominis." -#: ../../mod/admin.php:333 +#: ../../mod/admin.php:466 msgid "Block public" msgstr "Bloqueig públic" -#: ../../mod/admin.php:333 +#: ../../mod/admin.php:466 msgid "" "Check to block public access to all otherwise public personal pages on this " "site unless you are currently logged in." -msgstr "Bloqueija l'accés públic a qualsevol pàgina del lloc fins que t'hagis identificat." +msgstr "Bloqueja l'accés públic a qualsevol pàgina del lloc fins que t'hagis identificat." -#: ../../mod/admin.php:334 +#: ../../mod/admin.php:467 msgid "Force publish" msgstr "Forçar publicació" -#: ../../mod/admin.php:334 +#: ../../mod/admin.php:467 msgid "" "Check to force all profiles on this site to be listed in the site directory." msgstr "Obliga a que tots el perfils en aquest lloc siguin mostrats en el directori del lloc." -#: ../../mod/admin.php:335 +#: ../../mod/admin.php:468 msgid "Global directory update URL" msgstr "Actualitzar URL del directori global" -#: ../../mod/admin.php:335 +#: ../../mod/admin.php:468 msgid "" "URL to update the global directory. If this is not set, the global directory" " is completely unavailable to the application." msgstr "URL per actualitzar el directori global. Si no es configura, el directori global serà completament inaccesible per a l'aplicació. " -#: ../../mod/admin.php:337 +#: ../../mod/admin.php:469 +msgid "Allow threaded items" +msgstr "" + +#: ../../mod/admin.php:469 +msgid "Allow infinite level threading for items on this site." +msgstr "" + +#: ../../mod/admin.php:470 +msgid "Private posts by default for new users" +msgstr "" + +#: ../../mod/admin.php:470 +msgid "" +"Set default post permissions for all new members to the default privacy " +"group rather than public." +msgstr "" + +#: ../../mod/admin.php:472 msgid "Block multiple registrations" msgstr "Bloquejar multiples registracions" -#: ../../mod/admin.php:337 +#: ../../mod/admin.php:472 msgid "Disallow users to register additional accounts for use as pages." msgstr "Inhabilita als usuaris el crear comptes adicionals per a usar com a pàgines." -#: ../../mod/admin.php:338 +#: ../../mod/admin.php:473 msgid "OpenID support" msgstr "Suport per a OpenID" -#: ../../mod/admin.php:338 +#: ../../mod/admin.php:473 msgid "OpenID support for registration and logins." msgstr "Suport per a registre i validació a OpenID." -#: ../../mod/admin.php:339 -msgid "Gravatar support" -msgstr "Suport per a gravatar" - -#: ../../mod/admin.php:339 -msgid "Search new user's photo on Gravatar." -msgstr "Cerca la nova foto d'usuari a Gravatar." - -#: ../../mod/admin.php:340 +#: ../../mod/admin.php:474 msgid "Fullname check" msgstr "Comprobació de nom complet" -#: ../../mod/admin.php:340 +#: ../../mod/admin.php:474 msgid "" "Force users to register with a space between firstname and lastname in Full " "name, as an antispam measure" -msgstr "Obliga els usuaris a col·locar un espai en blanc entre nom i cognoms, com a mesura antifemater" +msgstr "Obliga els usuaris a col·locar un espai en blanc entre nom i cognoms, com a mesura antispam" -#: ../../mod/admin.php:341 +#: ../../mod/admin.php:475 msgid "UTF-8 Regular expressions" msgstr "expresions regulars UTF-8" -#: ../../mod/admin.php:341 +#: ../../mod/admin.php:475 msgid "Use PHP UTF8 regular expressions" msgstr "Empri expresions regulars de PHP amb format UTF8" -#: ../../mod/admin.php:342 +#: ../../mod/admin.php:476 msgid "Show Community Page" msgstr "Mostra la Pàgina de Comunitat" -#: ../../mod/admin.php:342 +#: ../../mod/admin.php:476 msgid "" "Display a Community page showing all recent public postings on this site." msgstr "Mostra a la pàgina de comunitat tots els missatges públics recents, d'aquest lloc." -#: ../../mod/admin.php:343 +#: ../../mod/admin.php:477 msgid "Enable OStatus support" msgstr "Activa el suport per a OStatus" -#: ../../mod/admin.php:343 +#: ../../mod/admin.php:477 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 "Proveeix de compatibilitat integrada amb OStatus (identi.ca, status.net, etc). Totes les comunicacions a OStatus són públiques amb el que ocasionalment pots veure advertències." -#: ../../mod/admin.php:344 +#: ../../mod/admin.php:478 msgid "Enable Diaspora support" msgstr "Habilitar suport per Diaspora" -#: ../../mod/admin.php:344 +#: ../../mod/admin.php:478 msgid "Provide built-in Diaspora network compatibility." msgstr "Proveeix compatibilitat integrada amb la xarxa Diaspora" -#: ../../mod/admin.php:345 +#: ../../mod/admin.php:479 msgid "Only allow Friendica contacts" msgstr "Només permetre contactes de Friendica" -#: ../../mod/admin.php:345 +#: ../../mod/admin.php:479 msgid "" "All contacts must use Friendica protocols. All other built-in communication " "protocols disabled." msgstr "Tots els contactes " -#: ../../mod/admin.php:346 +#: ../../mod/admin.php:480 msgid "Verify SSL" msgstr "Verificar SSL" -#: ../../mod/admin.php:346 +#: ../../mod/admin.php:480 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 "Si ho vols, pots comprovar el certificat estrictament. Això farà que no puguis connectar (de cap manera) amb llocs amb certificats SSL autosignats." -#: ../../mod/admin.php:347 +#: ../../mod/admin.php:481 msgid "Proxy user" msgstr "proxy d'usuari" -#: ../../mod/admin.php:348 +#: ../../mod/admin.php:482 msgid "Proxy URL" msgstr "URL del proxy" -#: ../../mod/admin.php:349 +#: ../../mod/admin.php:483 msgid "Network timeout" msgstr "Temps excedit a la xarxa" -#: ../../mod/admin.php:349 +#: ../../mod/admin.php:483 msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." msgstr "Valor en segons. Canviat a 0 es sense límits (no recomenat)" -#: ../../mod/admin.php:370 +#: ../../mod/admin.php:484 +msgid "Delivery interval" +msgstr "Interval d'entrega" + +#: ../../mod/admin.php:484 +msgid "" +"Delay background delivery processes by this many seconds to reduce system " +"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " +"for large dedicated servers." +msgstr "Retardar processos d'entrega, en segon pla, en aquesta quantitat de segons, per reduir la càrrega del sistema . Recomanem : 4-5 per als servidors compartits , 2-3 per a servidors privats virtuals . 0-1 per els grans servidors dedicats." + +#: ../../mod/admin.php:485 +msgid "Poll interval" +msgstr "Interval entre sondejos" + +#: ../../mod/admin.php:485 +msgid "" +"Delay background polling processes by this many seconds to reduce system " +"load. If 0, use delivery interval." +msgstr "Endarrerir els processos de sondeig en segon pla durant aquest període, en segons, per tal de reduir la càrrega de treball del sistema, Si s'empra 0, s'utilitza l'interval d'entregues. " + +#: ../../mod/admin.php:486 +msgid "Maximum Load Average" +msgstr "Càrrega Màxima Sostinguda" + +#: ../../mod/admin.php:486 +msgid "" +"Maximum system load before delivery and poll processes are deferred - " +"default 50." +msgstr "Càrrega màxima del sistema abans d'apaçar els processos d'entrega i sondeig - predeterminat a 50." + +#: ../../mod/admin.php:503 +msgid "Update has been marked successful" +msgstr "L'actualització ha estat marcada amb èxit" + +#: ../../mod/admin.php:513 +#, php-format +msgid "Executing %s failed. Check system logs." +msgstr "Ha fracassat l'execució de %s. Comprova el registre del sistema." + +#: ../../mod/admin.php:516 +#, php-format +msgid "Update %s was successfully applied." +msgstr "L'actualització de %s es va aplicar amb èxit." + +#: ../../mod/admin.php:520 +#, php-format +msgid "Update %s did not return a status. Unknown if it succeeded." +msgstr "L'actualització de %s no ha retornat el seu estatus. Es desconeix si ha estat amb èxit." + +#: ../../mod/admin.php:523 +#, php-format +msgid "Update function %s could not be found." +msgstr "L'actualització de la funció %s no es pot trobar." + +#: ../../mod/admin.php:538 +msgid "No failed updates." +msgstr "No hi ha actualitzacions fallides." + +#: ../../mod/admin.php:542 +msgid "Failed Updates" +msgstr "Actualitzacions Fallides" + +#: ../../mod/admin.php:543 +msgid "" +"This does not include updates prior to 1139, which did not return a status." +msgstr "Això no inclou actualitzacions anteriors a 1139, raó per la que no ha retornat l'estatus." + +#: ../../mod/admin.php:544 +msgid "Mark success (if update was manually applied)" +msgstr "Marcat am èxit (si l'actualització es va fer manualment)" + +#: ../../mod/admin.php:545 +msgid "Attempt to execute this update step automatically" +msgstr "Intentant executar aquest pas d'actualització automàticament" + +#: ../../mod/admin.php:570 #, php-format msgid "%s user blocked/unblocked" msgid_plural "%s users blocked/unblocked" msgstr[0] "%s usuari bloquejar/desbloquejar" msgstr[1] "%s usuaris bloquejar/desbloquejar" -#: ../../mod/admin.php:377 +#: ../../mod/admin.php:577 #, php-format msgid "%s user deleted" msgid_plural "%s users deleted" msgstr[0] "%s usuari esborrat" msgstr[1] "%s usuaris esborrats" -#: ../../mod/admin.php:411 +#: ../../mod/admin.php:616 #, php-format msgid "User '%s' deleted" msgstr "Usuari %s' esborrat" -#: ../../mod/admin.php:418 +#: ../../mod/admin.php:624 #, php-format msgid "User '%s' unblocked" msgstr "Usuari %s' desbloquejat" -#: ../../mod/admin.php:418 +#: ../../mod/admin.php:624 #, php-format msgid "User '%s' blocked" msgstr "L'usuari '%s' és bloquejat" -#: ../../mod/admin.php:482 +#: ../../mod/admin.php:690 msgid "select all" msgstr "Seleccionar tot" -#: ../../mod/admin.php:483 +#: ../../mod/admin.php:691 msgid "User registrations waiting for confirm" msgstr "Registre d'usuari esperant confirmació" -#: ../../mod/admin.php:484 +#: ../../mod/admin.php:692 msgid "Request date" msgstr "Data de sol·licitud" -#: ../../mod/admin.php:484 ../../mod/admin.php:493 +#: ../../mod/admin.php:692 ../../mod/admin.php:702 #: ../../include/contact_selectors.php:79 msgid "Email" msgstr "Correu" -#: ../../mod/admin.php:485 +#: ../../mod/admin.php:693 msgid "No registrations." msgstr "Sense registres." -#: ../../mod/admin.php:487 +#: ../../mod/admin.php:695 msgid "Deny" msgstr "Denegar" -#: ../../mod/admin.php:493 +#: ../../mod/admin.php:699 +msgid "Site admin" +msgstr "" + +#: ../../mod/admin.php:702 msgid "Register date" msgstr "Data de registre" -#: ../../mod/admin.php:493 +#: ../../mod/admin.php:702 msgid "Last login" msgstr "Últim accés" -#: ../../mod/admin.php:493 +#: ../../mod/admin.php:702 msgid "Last item" msgstr "Últim element" -#: ../../mod/admin.php:493 +#: ../../mod/admin.php:702 msgid "Account" msgstr "Compte" -#: ../../mod/admin.php:495 +#: ../../mod/admin.php:704 msgid "" "Selected users will be deleted!\\n\\nEverything these users had posted on " "this site will be permanently deleted!\\n\\nAre you sure?" msgstr "Els usuaris seleccionats seran esborrats!\\n\\nqualsevol cosa que aquests usuaris hagin publicat en aquest lloc s'esborrarà!\\n\\nEsteu segur?" -#: ../../mod/admin.php:496 +#: ../../mod/admin.php:705 msgid "" "The user {0} will be deleted!\\n\\nEverything this user has posted on this " "site will be permanently deleted!\\n\\nAre you sure?" msgstr "L'usuari {0} s'eliminarà!\\n\\nQualsevol cosa que aquest usuari hagi publicat en aquest lloc s'esborrarà!\\n\\nEsteu segur?" -#: ../../mod/admin.php:532 +#: ../../mod/admin.php:746 #, php-format msgid "Plugin %s disabled." msgstr "Plugin %s deshabilitat." -#: ../../mod/admin.php:536 +#: ../../mod/admin.php:750 #, php-format msgid "Plugin %s enabled." msgstr "Plugin %s habilitat." -#: ../../mod/admin.php:546 ../../mod/admin.php:724 +#: ../../mod/admin.php:760 ../../mod/admin.php:958 msgid "Disable" msgstr "Deshabilitar" -#: ../../mod/admin.php:548 ../../mod/admin.php:726 +#: ../../mod/admin.php:762 ../../mod/admin.php:960 msgid "Enable" msgstr "Habilitar" -#: ../../mod/admin.php:570 ../../mod/admin.php:743 +#: ../../mod/admin.php:784 ../../mod/admin.php:989 msgid "Toggle" msgstr "Canviar" -#: ../../mod/admin.php:571 ../../mod/admin.php:744 ../../include/nav.php:130 -msgid "Settings" -msgstr "Ajustos" - -#: ../../mod/admin.php:578 ../../mod/admin.php:753 +#: ../../mod/admin.php:792 ../../mod/admin.php:999 msgid "Author: " msgstr "Autor:" -#: ../../mod/admin.php:579 ../../mod/admin.php:754 +#: ../../mod/admin.php:793 ../../mod/admin.php:1000 msgid "Maintainer: " msgstr "Encarregat:" -#: ../../mod/admin.php:689 +#: ../../mod/admin.php:922 msgid "No themes found." msgstr "No s'ha trobat temes." -#: ../../mod/admin.php:780 +#: ../../mod/admin.php:981 +msgid "Screenshot" +msgstr "Captura de pantalla" + +#: ../../mod/admin.php:1029 msgid "[Experimental]" msgstr "[Experimental]" -#: ../../mod/admin.php:781 +#: ../../mod/admin.php:1030 msgid "[Unsupported]" msgstr "[No soportat]" -#: ../../mod/admin.php:804 +#: ../../mod/admin.php:1057 msgid "Log settings updated." -msgstr "Configuració del transcriptor actualitzada." +msgstr "Configuració del registre actualitzada." -#: ../../mod/admin.php:857 +#: ../../mod/admin.php:1113 msgid "Clear" msgstr "Netejar" -#: ../../mod/admin.php:863 +#: ../../mod/admin.php:1119 msgid "Debugging" msgstr "Esplugar" -#: ../../mod/admin.php:864 +#: ../../mod/admin.php:1120 msgid "Log file" -msgstr "Arxiu de transcripció" +msgstr "Arxiu de registre" -#: ../../mod/admin.php:864 +#: ../../mod/admin.php:1120 msgid "" "Must be writable by web server. Relative to your Friendica top-level " "directory." msgstr "Ha de tenir permisos d'escriptura pel servidor web. En relació amb el seu directori Friendica de nivell superior." -#: ../../mod/admin.php:865 +#: ../../mod/admin.php:1121 msgid "Log level" msgstr "Nivell de transcripció" -#: ../../mod/admin.php:906 +#: ../../mod/admin.php:1171 msgid "Close" msgstr "Tancar" -#: ../../mod/admin.php:912 +#: ../../mod/admin.php:1177 msgid "FTP Host" msgstr "Amfitrió FTP" -#: ../../mod/admin.php:913 +#: ../../mod/admin.php:1178 msgid "FTP Path" msgstr "Direcció FTP" -#: ../../mod/admin.php:914 +#: ../../mod/admin.php:1179 msgid "FTP User" msgstr "Usuari FTP" -#: ../../mod/admin.php:915 +#: ../../mod/admin.php:1180 msgid "FTP Password" msgstr "Contrasenya FTP" -#: ../../mod/profile.php:15 ../../boot.php:845 +#: ../../mod/profile.php:22 ../../boot.php:1074 msgid "Requested profile is not available." msgstr "El perfil sol·licitat no està disponible." -#: ../../mod/profile.php:111 ../../mod/display.php:67 +#: ../../mod/profile.php:152 ../../mod/display.php:77 msgid "Access to this profile has been restricted." msgstr "L'accés a aquest perfil ha estat restringit." -#: ../../mod/profile.php:131 +#: ../../mod/profile.php:177 msgid "Tips for New Members" msgstr "Consells per a nous membres" -#: ../../mod/ping.php:174 +#: ../../mod/ping.php:235 msgid "{0} wants to be your friend" msgstr "{0} vol ser el teu amic" -#: ../../mod/ping.php:179 +#: ../../mod/ping.php:240 msgid "{0} sent you a message" msgstr "{0} t'ha enviat un missatge de" -#: ../../mod/ping.php:184 +#: ../../mod/ping.php:245 msgid "{0} requested registration" msgstr "{0} solicituts de registre" -#: ../../mod/ping.php:190 +#: ../../mod/ping.php:251 #, php-format msgid "{0} commented %s's post" msgstr "{0} va comentar l'enviament de %s" -#: ../../mod/ping.php:195 +#: ../../mod/ping.php:256 #, php-format msgid "{0} liked %s's post" msgstr "A {0} l'ha agradat l'enviament de %s" -#: ../../mod/ping.php:200 +#: ../../mod/ping.php:261 #, php-format msgid "{0} disliked %s's post" msgstr "A {0} no l'ha agradat l'enviament de %s" -#: ../../mod/ping.php:205 +#: ../../mod/ping.php:266 #, php-format msgid "{0} is now friends with %s" msgstr "{0} ara és amic de %s" -#: ../../mod/ping.php:210 +#: ../../mod/ping.php:271 msgid "{0} posted" msgstr "{0} publicat" -#: ../../mod/ping.php:215 +#: ../../mod/ping.php:276 #, php-format msgid "{0} tagged %s's post with #%s" msgstr "{0} va etiquetar la publicació de %s com #%s" -#: ../../mod/ping.php:221 +#: ../../mod/ping.php:282 msgid "{0} mentioned you in a post" msgstr "{0} et menciona en un missatge" -#: ../../mod/openid.php:63 ../../mod/openid.php:77 ../../include/auth.php:90 -#: ../../include/auth.php:115 ../../include/auth.php:169 +#: ../../mod/nogroup.php:58 +msgid "Contacts who are not members of a group" +msgstr "Contactes que no pertanyen a cap grup" + +#: ../../mod/openid.php:24 +msgid "OpenID protocol error. No ID returned." +msgstr "Error al protocol OpenID. No ha retornat ID." + +#: ../../mod/openid.php:53 +msgid "" +"Account not found and OpenID registration is not permitted on this site." +msgstr "Compte no trobat i el registrar-se amb OpenID no està permès en aquest lloc." + +#: ../../mod/openid.php:93 ../../include/auth.php:98 +#: ../../include/auth.php:161 msgid "Login failed." msgstr "Error d'accés." #: ../../mod/follow.php:27 -msgid "Connect URL missing." -msgstr "URL del connector perduda." +msgid "Contact added" +msgstr "Contacte afegit" -#: ../../mod/follow.php:47 -msgid "" -"This site is not configured to allow communications with other networks." -msgstr "Aquest lloc no està configurat per permetre les comunicacions amb altres xarxes." - -#: ../../mod/follow.php:48 ../../mod/follow.php:63 -msgid "No compatible communication protocols or feeds were discovered." -msgstr "Protocol de comunnicació no compatible o alimentador descobert." - -#: ../../mod/follow.php:61 -msgid "The profile address specified does not provide adequate information." -msgstr "L'adreça de perfil especificada no proveeix informació adient." - -#: ../../mod/follow.php:65 -msgid "An author or name was not found." -msgstr "Un autor o nom no va ser trobat" - -#: ../../mod/follow.php:67 -msgid "No browser URL could be matched to this address." -msgstr "Cap direcció URL del navegador coincideix amb aquesta adreça." - -#: ../../mod/follow.php:74 -msgid "" -"The profile address specified belongs to a network which has been disabled " -"on this site." -msgstr "La direcció del perfil especificat pertany a una xarxa que ha estat desactivada en aquest lloc." - -#: ../../mod/follow.php:79 -msgid "" -"Limited profile. This person will be unable to receive direct/personal " -"notifications from you." -msgstr "Perfil limitat. Aquesta persona no podrà rebre notificacions personals/directes de tu." - -#: ../../mod/follow.php:149 -msgid "Unable to retrieve contact information." -msgstr "No es pot recuperar la informació de contacte." - -#: ../../mod/follow.php:195 -msgid "following" -msgstr "seguint" - -#: ../../mod/common.php:34 +#: ../../mod/common.php:42 msgid "Common Friends" msgstr "Amics Comuns" -#: ../../mod/common.php:42 -msgid "No friends in common." -msgstr "No hi ha amics en comú." +#: ../../mod/common.php:78 +msgid "No contacts in common." +msgstr "Sense contactes en comú." -#: ../../mod/display.php:130 +#: ../../mod/share.php:28 +msgid "link" +msgstr "enllaç" + +#: ../../mod/display.php:138 msgid "Item has been removed." msgstr "El element ha estat esborrat." @@ -3371,227 +4114,328 @@ msgstr "Aplicacions" msgid "No installed applications." msgstr "Aplicacions no instal·lades." -#: ../../mod/search.php:83 -msgid "Search This Site" -msgstr "Cerca en Aquest Lloc" +#: ../../mod/search.php:85 ../../include/text.php:678 +#: ../../include/text.php:679 ../../include/nav.php:91 +msgid "Search" +msgstr "Cercar" -#: ../../mod/profiles.php:21 ../../mod/profiles.php:239 -#: ../../mod/profiles.php:344 ../../mod/dfrn_confirm.php:62 +#: ../../mod/profiles.php:21 ../../mod/profiles.php:423 +#: ../../mod/profiles.php:537 ../../mod/dfrn_confirm.php:62 msgid "Profile not found." msgstr "Perfil no trobat." -#: ../../mod/profiles.php:28 +#: ../../mod/profiles.php:31 msgid "Profile Name is required." msgstr "Nom de perfil requerit." -#: ../../mod/profiles.php:198 +#: ../../mod/profiles.php:160 +msgid "Marital Status" +msgstr "Estatus Marital" + +#: ../../mod/profiles.php:164 +msgid "Romantic Partner" +msgstr "Soci Romàntic" + +#: ../../mod/profiles.php:168 +msgid "Likes" +msgstr "Agrada" + +#: ../../mod/profiles.php:172 +msgid "Dislikes" +msgstr "No agrada" + +#: ../../mod/profiles.php:176 +msgid "Work/Employment" +msgstr "Treball/Ocupació" + +#: ../../mod/profiles.php:179 +msgid "Religion" +msgstr "Religió" + +#: ../../mod/profiles.php:183 +msgid "Political Views" +msgstr "Idees Polítiques" + +#: ../../mod/profiles.php:187 +msgid "Gender" +msgstr "Gènere" + +#: ../../mod/profiles.php:191 +msgid "Sexual Preference" +msgstr "Preferència sexual" + +#: ../../mod/profiles.php:195 +msgid "Homepage" +msgstr "Inici" + +#: ../../mod/profiles.php:199 +msgid "Interests" +msgstr "Interesos" + +#: ../../mod/profiles.php:203 +msgid "Address" +msgstr "Adreça" + +#: ../../mod/profiles.php:210 ../../addon/dav/common/wdcal_edit.inc.php:183 +msgid "Location" +msgstr "Ubicació" + +#: ../../mod/profiles.php:293 msgid "Profile updated." msgstr "Perfil actualitzat." -#: ../../mod/profiles.php:256 +#: ../../mod/profiles.php:360 +msgid " and " +msgstr " i " + +#: ../../mod/profiles.php:368 +msgid "public profile" +msgstr "perfil públic" + +#: ../../mod/profiles.php:371 +#, php-format +msgid "%1$s changed %2$s to “%3$s”" +msgstr "%1$s s'ha canviat de %2$s a “%3$s”" + +#: ../../mod/profiles.php:372 +#, php-format +msgid " - Visit %1$s's %2$s" +msgstr " - Visita %1$s de %2$s" + +#: ../../mod/profiles.php:375 +#, php-format +msgid "%1$s has an updated %2$s, changing %3$s." +msgstr "%1$s te una actualització %2$s, canviant %3$s." + +#: ../../mod/profiles.php:442 msgid "Profile deleted." msgstr "Perfil esborrat." -#: ../../mod/profiles.php:272 ../../mod/profiles.php:303 +#: ../../mod/profiles.php:460 ../../mod/profiles.php:494 msgid "Profile-" msgstr "Perfil-" -#: ../../mod/profiles.php:291 ../../mod/profiles.php:330 +#: ../../mod/profiles.php:479 ../../mod/profiles.php:521 msgid "New profile created." msgstr "Nou perfil creat." -#: ../../mod/profiles.php:309 +#: ../../mod/profiles.php:500 msgid "Profile unavailable to clone." msgstr "No es pot clonar el perfil." -#: ../../mod/profiles.php:356 +#: ../../mod/profiles.php:562 msgid "Hide your contact/friend list from viewers of this profile?" msgstr "Amaga la llista de contactes/amics en la vista d'aquest perfil?" -#: ../../mod/profiles.php:374 +#: ../../mod/profiles.php:582 msgid "Edit Profile Details" msgstr "Editor de Detalls del Perfil" -#: ../../mod/profiles.php:376 +#: ../../mod/profiles.php:584 msgid "View this profile" msgstr "Veure aquest perfil" -#: ../../mod/profiles.php:377 +#: ../../mod/profiles.php:585 msgid "Create a new profile using these settings" msgstr "Crear un nou perfil amb aquests ajustos" -#: ../../mod/profiles.php:378 +#: ../../mod/profiles.php:586 msgid "Clone this profile" msgstr "Clonar aquest perfil" -#: ../../mod/profiles.php:379 +#: ../../mod/profiles.php:587 msgid "Delete this profile" msgstr "Esborrar aquest perfil" -#: ../../mod/profiles.php:380 +#: ../../mod/profiles.php:588 msgid "Profile Name:" msgstr "Nom de Perfil:" -#: ../../mod/profiles.php:381 +#: ../../mod/profiles.php:589 msgid "Your Full Name:" msgstr "El Teu Nom Complet." -#: ../../mod/profiles.php:382 +#: ../../mod/profiles.php:590 msgid "Title/Description:" msgstr "Títol/Descripció:" -#: ../../mod/profiles.php:383 +#: ../../mod/profiles.php:591 msgid "Your Gender:" msgstr "Gènere:" -#: ../../mod/profiles.php:384 +#: ../../mod/profiles.php:592 #, php-format msgid "Birthday (%s):" msgstr "Aniversari (%s)" -#: ../../mod/profiles.php:385 +#: ../../mod/profiles.php:593 msgid "Street Address:" msgstr "Direcció:" -#: ../../mod/profiles.php:386 +#: ../../mod/profiles.php:594 msgid "Locality/City:" msgstr "Localitat/Ciutat:" -#: ../../mod/profiles.php:387 +#: ../../mod/profiles.php:595 msgid "Postal/Zip Code:" msgstr "Codi Postal:" -#: ../../mod/profiles.php:388 +#: ../../mod/profiles.php:596 msgid "Country:" msgstr "País" -#: ../../mod/profiles.php:389 +#: ../../mod/profiles.php:597 msgid "Region/State:" -msgstr "Región/Estat:" +msgstr "Regió/Estat:" -#: ../../mod/profiles.php:390 +#: ../../mod/profiles.php:598 msgid " Marital Status:" msgstr " Estat Civil:" -#: ../../mod/profiles.php:391 +#: ../../mod/profiles.php:599 msgid "Who: (if applicable)" msgstr "Qui? (si és aplicable)" -#: ../../mod/profiles.php:392 +#: ../../mod/profiles.php:600 msgid "Examples: cathy123, Cathy Williams, cathy@example.com" msgstr "Exemples: cathy123, Cathy Williams, cathy@example.com" -#: ../../mod/profiles.php:393 ../../include/profile_advanced.php:43 +#: ../../mod/profiles.php:601 +msgid "Since [date]:" +msgstr "Des de [data]" + +#: ../../mod/profiles.php:602 ../../include/profile_advanced.php:46 msgid "Sexual Preference:" msgstr "Preferència Sexual:" -#: ../../mod/profiles.php:394 +#: ../../mod/profiles.php:603 msgid "Homepage URL:" msgstr "Pàgina web URL:" -#: ../../mod/profiles.php:395 ../../include/profile_advanced.php:49 +#: ../../mod/profiles.php:604 ../../include/profile_advanced.php:50 +msgid "Hometown:" +msgstr "Lloc de residència:" + +#: ../../mod/profiles.php:605 ../../include/profile_advanced.php:54 msgid "Political Views:" msgstr "Idees Polítiques:" -#: ../../mod/profiles.php:396 +#: ../../mod/profiles.php:606 msgid "Religious Views:" msgstr "Creencies Religioses:" -#: ../../mod/profiles.php:397 +#: ../../mod/profiles.php:607 msgid "Public Keywords:" msgstr "Paraules Clau Públiques" -#: ../../mod/profiles.php:398 +#: ../../mod/profiles.php:608 msgid "Private Keywords:" msgstr "Paraules Clau Privades:" -#: ../../mod/profiles.php:399 +#: ../../mod/profiles.php:609 ../../include/profile_advanced.php:62 +msgid "Likes:" +msgstr "Agrada:" + +#: ../../mod/profiles.php:610 ../../include/profile_advanced.php:64 +msgid "Dislikes:" +msgstr "No Agrada" + +#: ../../mod/profiles.php:611 msgid "Example: fishing photography software" msgstr "Exemple: pesca fotografia programari" -#: ../../mod/profiles.php:400 +#: ../../mod/profiles.php:612 msgid "(Used for suggesting potential friends, can be seen by others)" msgstr "(Emprat per suggerir potencials amics, Altres poden veure-ho)" -#: ../../mod/profiles.php:401 +#: ../../mod/profiles.php:613 msgid "(Used for searching profiles, never shown to others)" msgstr "(Emprat durant la cerca de perfils, mai mostrat a ningú)" -#: ../../mod/profiles.php:402 +#: ../../mod/profiles.php:614 msgid "Tell us about yourself..." msgstr "Parla'ns de tú....." -#: ../../mod/profiles.php:403 +#: ../../mod/profiles.php:615 msgid "Hobbies/Interests" msgstr "Aficions/Interessos" -#: ../../mod/profiles.php:404 +#: ../../mod/profiles.php:616 msgid "Contact information and Social Networks" msgstr "Informació de contacte i Xarxes Socials" -#: ../../mod/profiles.php:405 +#: ../../mod/profiles.php:617 msgid "Musical interests" msgstr "Gustos musicals" -#: ../../mod/profiles.php:406 +#: ../../mod/profiles.php:618 msgid "Books, literature" msgstr "Llibres, Literatura" -#: ../../mod/profiles.php:407 +#: ../../mod/profiles.php:619 msgid "Television" msgstr "Televisió" -#: ../../mod/profiles.php:408 +#: ../../mod/profiles.php:620 msgid "Film/dance/culture/entertainment" msgstr "Cinema/ball/cultura/entreteniments" -#: ../../mod/profiles.php:409 +#: ../../mod/profiles.php:621 msgid "Love/romance" msgstr "Amor/sentiments" -#: ../../mod/profiles.php:410 +#: ../../mod/profiles.php:622 msgid "Work/employment" msgstr "Treball/ocupació" -#: ../../mod/profiles.php:411 +#: ../../mod/profiles.php:623 msgid "School/education" msgstr "Ensenyament/estudis" -#: ../../mod/profiles.php:416 +#: ../../mod/profiles.php:628 msgid "" "This is your public profile.
    It may " "be visible to anybody using the internet." msgstr "Aquest és el teu perfil públic.
    El qual pot ser visible per qualsevol qui faci servir Internet." -#: ../../mod/profiles.php:426 ../../mod/directory.php:124 +#: ../../mod/profiles.php:638 ../../mod/directory.php:111 msgid "Age: " msgstr "Edat:" -#: ../../mod/profiles.php:461 +#: ../../mod/profiles.php:677 msgid "Edit/Manage Profiles" msgstr "Editar/Gestionar Perfils" -#: ../../mod/profiles.php:462 ../../boot.php:946 +#: ../../mod/profiles.php:678 ../../boot.php:1192 msgid "Change profile photo" msgstr "Canviar la foto del perfil" -#: ../../mod/profiles.php:463 ../../boot.php:947 +#: ../../mod/profiles.php:679 ../../boot.php:1193 msgid "Create New Profile" msgstr "Crear un Nou Perfil" -#: ../../mod/profiles.php:473 ../../boot.php:957 +#: ../../mod/profiles.php:690 ../../boot.php:1203 msgid "Profile Image" msgstr "Imatge del Perfil" -#: ../../mod/profiles.php:475 ../../boot.php:960 +#: ../../mod/profiles.php:692 ../../boot.php:1206 msgid "visible to everybody" msgstr "Visible per tothom" -#: ../../mod/profiles.php:476 ../../boot.php:961 +#: ../../mod/profiles.php:693 ../../boot.php:1207 msgid "Edit visibility" msgstr "Editar visibilitat" -#: ../../mod/tagger.php:103 ../../include/conversation.php:138 +#: ../../mod/filer.php:29 ../../include/conversation.php:1209 +#: ../../include/conversation.php:1226 +msgid "Save to Folder:" +msgstr "Guardar a la Carpeta:" + +#: ../../mod/filer.php:29 +msgid "- select -" +msgstr "- seleccionar -" + +#: ../../mod/tagger.php:95 ../../include/conversation.php:265 #, php-format msgid "%1$s tagged %2$s's %3$s with %4$s" msgstr "%1$s etiquetats %2$s %3$s amb %4$s" @@ -3631,7 +4475,52 @@ msgstr "Afegir" msgid "No entries." msgstr "Sense entrades" -#: ../../mod/suggest.php:38 ../../include/contact_widgets.php:35 +#: ../../mod/babel.php:17 +msgid "Source (bbcode) text:" +msgstr "Text Codi (bbcode): " + +#: ../../mod/babel.php:23 +msgid "Source (Diaspora) text to convert to BBcode:" +msgstr "Font (Diaspora) Convertir text a BBcode" + +#: ../../mod/babel.php:31 +msgid "Source input: " +msgstr "Entrada de Codi:" + +#: ../../mod/babel.php:35 +msgid "bb2html: " +msgstr "bb2html: " + +#: ../../mod/babel.php:39 +msgid "bb2html2bb: " +msgstr "bb2html2bb: " + +#: ../../mod/babel.php:43 +msgid "bb2md: " +msgstr "bb2md: " + +#: ../../mod/babel.php:47 +msgid "bb2md2html: " +msgstr "bb2md2html: " + +#: ../../mod/babel.php:51 +msgid "bb2dia2bb: " +msgstr "bb2dia2bb: " + +#: ../../mod/babel.php:55 +msgid "bb2md2html2bb: " +msgstr "bb2md2html2bb: " + +#: ../../mod/babel.php:65 +msgid "Source input (Diaspora format): " +msgstr "Font d'entrada (format de Diaspora)" + +#: ../../mod/babel.php:70 +msgid "diaspora2bb: " +msgstr "diaspora2bb: " + +#: ../../mod/suggest.php:38 ../../view/theme/diabook/theme.php:626 +#: ../../include/contact_widgets.php:34 msgid "Friend Suggestions" msgstr "Amics Suggerits" @@ -3645,31 +4534,42 @@ msgstr "Cap suggeriment disponible. Si això és un nou lloc, si us plau torna a msgid "Ignore/Hide" msgstr "Ignorar/Amagar" -#: ../../mod/directory.php:51 +#: ../../mod/directory.php:49 ../../view/theme/diabook/theme.php:624 msgid "Global Directory" msgstr "Directori Global" #: ../../mod/directory.php:57 -msgid "Normal site view" -msgstr "Vista normal del lloc" - -#: ../../mod/directory.php:59 -msgid "Admin - View all site entries" -msgstr "Admin- Veure totes les entrades del lloc" - -#: ../../mod/directory.php:65 msgid "Find on this site" msgstr "Trobat en aquest lloc" -#: ../../mod/directory.php:68 +#: ../../mod/directory.php:60 msgid "Site Directory" msgstr "Directori Local" -#: ../../mod/directory.php:127 +#: ../../mod/directory.php:114 msgid "Gender: " msgstr "Gènere:" -#: ../../mod/directory.php:153 +#: ../../mod/directory.php:136 ../../include/profile_advanced.php:17 +#: ../../boot.php:1228 +msgid "Gender:" +msgstr "Gènere:" + +#: ../../mod/directory.php:138 ../../include/profile_advanced.php:37 +#: ../../boot.php:1231 +msgid "Status:" +msgstr "Estatus:" + +#: ../../mod/directory.php:140 ../../include/profile_advanced.php:48 +#: ../../boot.php:1233 +msgid "Homepage:" +msgstr "Pàgina web:" + +#: ../../mod/directory.php:142 ../../include/profile_advanced.php:58 +msgid "About:" +msgstr "Acerca de:" + +#: ../../mod/directory.php:180 msgid "No entries (some entries may be hidden)." msgstr "No hi ha entrades (algunes de les entrades poden estar amagades)." @@ -3679,9 +4579,8 @@ msgid "%s : Not a valid email address." msgstr "%s : No es una adreça de correu vàlida" #: ../../mod/invite.php:59 -#, php-format -msgid "Please join my network on %s" -msgstr "Si us plau, uneix-te a la meva xarxa en %s" +msgid "Please join us on Friendica" +msgstr "Per favor, uneixi's a nosaltres en Friendica" #: ../../mod/invite.php:69 #, php-format @@ -3699,179 +4598,245 @@ msgstr[1] "%d missatges enviats." msgid "You have no more invitations available" msgstr "No te més invitacions disponibles" -#: ../../mod/invite.php:99 -msgid "Send invitations" -msgstr "Enviant Invitacions" - #: ../../mod/invite.php:100 -msgid "Enter email addresses, one per line:" -msgstr "Entri adreçes de correu, una per línia:" +#, 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 "Visita %s per a una llista de llocs públics on unir-te. Els membres de Friendica d'altres llocs poden connectar-se de forma total, així com amb membres de moltes altres xarxes socials." #: ../../mod/invite.php:102 #, php-format -msgid "Please join my social network on %s" -msgstr "Per favor, uneix-te a la meva xarxa social en %s" +msgid "" +"To accept this invitation, please visit and register at %s or any other " +"public Friendica website." +msgstr "Per acceptar aquesta invitació, per favor visita i registra't a %s o en qualsevol altre pàgina web pública Friendica." #: ../../mod/invite.php:103 -msgid "To accept this invitation, please visit:" -msgstr "Per acceptar aquesta invitació, si us plau, visiti:" +#, 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 "Tots els llocs Friendica estàn interconnectats per crear una web social amb privacitat millorada, controlada i propietat dels seus membres. També poden connectar amb moltes xarxes socials tradicionals. Consulteu %s per a una llista de llocs de Friendica alternatius en que pot inscriure's." -#: ../../mod/invite.php:104 +#: ../../mod/invite.php:106 +msgid "" +"Our apologies. This system is not currently configured to connect with other" +" public sites or invite members." +msgstr "Nostres disculpes. Aquest sistema no està configurat actualment per connectar amb altres llocs públics o convidar als membres." + +#: ../../mod/invite.php:111 +msgid "Send invitations" +msgstr "Enviant Invitacions" + +#: ../../mod/invite.php:112 +msgid "Enter email addresses, one per line:" +msgstr "Entri adreçes de correu, una per línia:" + +#: ../../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 "Estàs cordialment convidat a ajuntarte a mi i altres amics propers en Friendica - i ajudar-nos a crear una millor web social." + +#: ../../mod/invite.php:116 msgid "You will need to supply this invitation code: $invite_code" msgstr "Vostè haurà de proporcionar aquest codi d'invitació: $invite_code" -#: ../../mod/invite.php:104 +#: ../../mod/invite.php:116 msgid "" "Once you have registered, please connect with me via my profile page at:" msgstr "Un cop registrat, si us plau contactar amb mi a través de la meva pàgina de perfil a:" +#: ../../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 "Per a més informació sobre el projecte Friendica i perque creiem que això es important, per favor, visita 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 "Això pot ocorre ocasionalment si el contacte fa una petició per ambdues persones i ja han estat aprovades." -#: ../../mod/dfrn_confirm.php:239 +#: ../../mod/dfrn_confirm.php:237 msgid "Response from remote site was not understood." msgstr "La resposta des del lloc remot no s'entenia." -#: ../../mod/dfrn_confirm.php:248 +#: ../../mod/dfrn_confirm.php:246 msgid "Unexpected response from remote site: " msgstr "Resposta inesperada de lloc remot:" -#: ../../mod/dfrn_confirm.php:256 +#: ../../mod/dfrn_confirm.php:254 msgid "Confirmation completed successfully." msgstr "La confirmació s'ha completat correctament." -#: ../../mod/dfrn_confirm.php:258 ../../mod/dfrn_confirm.php:272 -#: ../../mod/dfrn_confirm.php:279 +#: ../../mod/dfrn_confirm.php:256 ../../mod/dfrn_confirm.php:270 +#: ../../mod/dfrn_confirm.php:277 msgid "Remote site reported: " msgstr "El lloc remot informa:" -#: ../../mod/dfrn_confirm.php:270 +#: ../../mod/dfrn_confirm.php:268 msgid "Temporary failure. Please wait and try again." msgstr "Fallada temporal. Si us plau, espereu i torneu a intentar." -#: ../../mod/dfrn_confirm.php:277 +#: ../../mod/dfrn_confirm.php:275 msgid "Introduction failed or was revoked." msgstr "La presentació va fallar o va ser revocada." -#: ../../mod/dfrn_confirm.php:422 +#: ../../mod/dfrn_confirm.php:420 msgid "Unable to set contact photo." msgstr "No es pot canviar la foto de contacte." -#: ../../mod/dfrn_confirm.php:474 ../../include/diaspora.php:495 -#: ../../include/conversation.php:101 +#: ../../mod/dfrn_confirm.php:477 ../../include/diaspora.php:608 +#: ../../include/conversation.php:171 #, php-format msgid "%1$s is now friends with %2$s" msgstr "%1$s és ara amic amb %2$s" -#: ../../mod/dfrn_confirm.php:544 +#: ../../mod/dfrn_confirm.php:562 #, php-format msgid "No user record found for '%s' " msgstr "No es troben registres d'usuari per a '%s'" -#: ../../mod/dfrn_confirm.php:554 +#: ../../mod/dfrn_confirm.php:572 msgid "Our site encryption key is apparently messed up." msgstr "La nostra clau de xifrat del lloc pel que sembla en mal estat." -#: ../../mod/dfrn_confirm.php:565 +#: ../../mod/dfrn_confirm.php:583 msgid "Empty site URL was provided or URL could not be decrypted by us." msgstr "Es va proporcionar una URL del lloc buida o la URL no va poder ser desxifrada per nosaltres." -#: ../../mod/dfrn_confirm.php:586 +#: ../../mod/dfrn_confirm.php:604 msgid "Contact record was not found for you on our site." msgstr "No s'han trobat registres del contacte al nostre lloc." -#: ../../mod/dfrn_confirm.php:600 +#: ../../mod/dfrn_confirm.php:618 #, php-format msgid "Site public key not available in contact record for URL %s." msgstr "la clau pública del lloc no disponible en les dades del contacte per URL %s." -#: ../../mod/dfrn_confirm.php:620 +#: ../../mod/dfrn_confirm.php:638 msgid "" "The ID provided by your system is a duplicate on our system. It should work " "if you try again." msgstr "La ID proporcionada pel seu sistema és un duplicat en el nostre sistema. Hauria de treballar si intenta de nou." -#: ../../mod/dfrn_confirm.php:631 +#: ../../mod/dfrn_confirm.php:649 msgid "Unable to set your contact credentials on our system." msgstr "No es pot canviar les seves credencials de contacte en el nostre sistema." -#: ../../mod/dfrn_confirm.php:694 +#: ../../mod/dfrn_confirm.php:716 msgid "Unable to update your contact profile details on our system" msgstr "No es pot actualitzar els detalls del seu perfil de contacte en el nostre sistema" -#: ../../mod/dfrn_confirm.php:724 +#: ../../mod/dfrn_confirm.php:750 #, php-format msgid "Connection accepted at %s" msgstr "Connexió acceptada en %s" -#: ../../addon/facebook/facebook.php:338 +#: ../../mod/dfrn_confirm.php:799 +#, php-format +msgid "%1$s has joined %2$s" +msgstr "%1$s s'ha unit a %2$s" + +#: ../../addon/fromgplus/fromgplus.php:29 +msgid "Google+ Import Settings" +msgstr "Ajustos Google+ Import" + +#: ../../addon/fromgplus/fromgplus.php:32 +msgid "Enable Google+ Import" +msgstr "Habilita Google+ Import" + +#: ../../addon/fromgplus/fromgplus.php:35 +msgid "Google Account ID" +msgstr "ID del compte Google" + +#: ../../addon/fromgplus/fromgplus.php:55 +msgid "Google+ Import Settings saved." +msgstr "Ajustos Google+ Import guardats." + +#: ../../addon/facebook/facebook.php:523 msgid "Facebook disabled" msgstr "Facebook deshabilitat" -#: ../../addon/facebook/facebook.php:343 +#: ../../addon/facebook/facebook.php:528 msgid "Updating contacts" msgstr "Actualitzant contactes" -#: ../../addon/facebook/facebook.php:352 +#: ../../addon/facebook/facebook.php:551 ../../addon/fbpost/fbpost.php:192 msgid "Facebook API key is missing." msgstr "La clau del API de Facebook s'ha perdut." -#: ../../addon/facebook/facebook.php:359 +#: ../../addon/facebook/facebook.php:558 msgid "Facebook Connect" msgstr "Facebook Connectat" -#: ../../addon/facebook/facebook.php:365 +#: ../../addon/facebook/facebook.php:564 msgid "Install Facebook connector for this account." msgstr "Instal·lar el connector de Facebook per aquest compte." -#: ../../addon/facebook/facebook.php:372 +#: ../../addon/facebook/facebook.php:571 msgid "Remove Facebook connector" msgstr "Eliminar el connector de Faceboook" -#: ../../addon/facebook/facebook.php:377 +#: ../../addon/facebook/facebook.php:576 ../../addon/fbpost/fbpost.php:217 msgid "" "Re-authenticate [This is necessary whenever your Facebook password is " "changed.]" msgstr "Re-autentificar [Això és necessari cada vegada que la contrasenya de Facebook canvia.]" -#: ../../addon/facebook/facebook.php:384 +#: ../../addon/facebook/facebook.php:583 ../../addon/fbpost/fbpost.php:224 msgid "Post to Facebook by default" msgstr "Enviar a Facebook per defecte" -#: ../../addon/facebook/facebook.php:388 +#: ../../addon/facebook/facebook.php:589 +msgid "" +"Facebook friend linking has been disabled on this site. The following " +"settings will have no effect." +msgstr "La vinculació amb amics de Facebook s'ha deshabilitat en aquest lloc. Els ajustos que facis no faran efecte." + +#: ../../addon/facebook/facebook.php:593 +msgid "" +"Facebook friend linking has been disabled on this site. If you disable it, " +"you will be unable to re-enable it." +msgstr "La vinculació amb amics de Facebook s'ha deshabilitat en aquest lloc. Si esta deshabilitat, no es pot utilitzar." + +#: ../../addon/facebook/facebook.php:596 msgid "Link all your Facebook friends and conversations on this website" msgstr "Enllaça tots els teus amics i les converses de Facebook en aquest lloc web" -#: ../../addon/facebook/facebook.php:390 +#: ../../addon/facebook/facebook.php:598 msgid "" "Facebook conversations consist of your profile wall and your friend" " stream." -msgstr "Les converses de Facebook consisteixen en el perfil del mur i en el stream del seu amic." +msgstr "Les converses de Facebook consisteixen en el perfil del mur i en el flux del seu amic." -#: ../../addon/facebook/facebook.php:391 +#: ../../addon/facebook/facebook.php:599 msgid "On this website, your Facebook friend stream is only visible to you." -msgstr "En aquesta pàgina web, el stream del seu amic a Facebook només és visible per a vostè." +msgstr "En aquesta pàgina web, el flux del seu amic a Facebook només és visible per a vostè." -#: ../../addon/facebook/facebook.php:392 +#: ../../addon/facebook/facebook.php:600 msgid "" "The following settings determine the privacy of your Facebook profile wall " "on this website." msgstr "Les següents opcions determinen la privacitat del mur del seu perfil de Facebook en aquest lloc web." -#: ../../addon/facebook/facebook.php:396 +#: ../../addon/facebook/facebook.php:604 msgid "" "On this website your Facebook profile wall conversations will only be " "visible to you" msgstr "En aquesta pàgina web les seves converses al mur del perfil de Facebook només seran visible per a vostè" -#: ../../addon/facebook/facebook.php:401 +#: ../../addon/facebook/facebook.php:609 msgid "Do not import your Facebook profile wall conversations" msgstr "No importi les seves converses del mur del perfil de Facebook" -#: ../../addon/facebook/facebook.php:403 +#: ../../addon/facebook/facebook.php:611 msgid "" "If you choose to link conversations and leave both of these boxes unchecked," " your Facebook profile wall will be merged with your profile wall on this " @@ -3879,45 +4844,186 @@ msgid "" "who may see the conversations." msgstr "Si opta per vincular les converses i deixar ambdues caselles sense marcar, el mur del seu perfil de Facebook es fusionarà amb el mur del seu perfil en aquest lloc web i la seva configuració de privacitat en aquest website serà utilitzada per determinar qui pot veure les converses." -#: ../../addon/facebook/facebook.php:408 +#: ../../addon/facebook/facebook.php:616 msgid "Comma separated applications to ignore" msgstr "Separats per comes les aplicacions a ignorar" -#: ../../addon/facebook/facebook.php:476 -#: ../../include/contact_selectors.php:81 -msgid "Facebook" -msgstr "Facebook" +#: ../../addon/facebook/facebook.php:700 +msgid "Problems with Facebook Real-Time Updates" +msgstr "Problemes amb Actualitzacions en Temps Real a Facebook" -#: ../../addon/facebook/facebook.php:477 +#: ../../addon/facebook/facebook.php:729 msgid "Facebook Connector Settings" msgstr "Ajustos del Connector de Facebook" -#: ../../addon/facebook/facebook.php:491 +#: ../../addon/facebook/facebook.php:744 ../../addon/fbpost/fbpost.php:255 +msgid "Facebook API Key" +msgstr "Facebook API Key" + +#: ../../addon/facebook/facebook.php:754 ../../addon/fbpost/fbpost.php:262 +msgid "" +"Error: it appears that you have specified the App-ID and -Secret in your " +".htconfig.php file. As long as they are specified there, they cannot be set " +"using this form.

    " +msgstr "Error: Apareix que has especificat el App-ID i el Secret en el arxiu .htconfig.php. Per estar especificat allà, no pot ser canviat utilitzant aquest formulari.

    " + +#: ../../addon/facebook/facebook.php:759 +msgid "" +"Error: the given API Key seems to be incorrect (the application access token" +" could not be retrieved)." +msgstr "Error: la API Key facilitada sembla incorrecta (no es va poder recuperar el token d'accés de l'aplicatiu)." + +#: ../../addon/facebook/facebook.php:761 +msgid "The given API Key seems to work correctly." +msgstr "La API Key facilitada sembla treballar correctament." + +#: ../../addon/facebook/facebook.php:763 +msgid "" +"The correctness of the API Key could not be detected. Something strange's " +"going on." +msgstr "La correcció de la API key no pot ser detectada. Quelcom estrany ha succeït." + +#: ../../addon/facebook/facebook.php:766 ../../addon/fbpost/fbpost.php:264 +msgid "App-ID / API-Key" +msgstr "App-ID / API-Key" + +#: ../../addon/facebook/facebook.php:767 ../../addon/fbpost/fbpost.php:265 +msgid "Application secret" +msgstr "Application secret" + +#: ../../addon/facebook/facebook.php:768 +#, php-format +msgid "Polling Interval in minutes (minimum %1$s minutes)" +msgstr "Interval entre sondejos en minuts (mínim %1s minuts)" + +#: ../../addon/facebook/facebook.php:769 +msgid "" +"Synchronize comments (no comments on Facebook are missed, at the cost of " +"increased system load)" +msgstr "Sincronitzar els comentaris (els comentaris a Facebook es perden, a costa de la major càrrega del sistema)" + +#: ../../addon/facebook/facebook.php:773 +msgid "Real-Time Updates" +msgstr "Actualitzacions en Temps Real" + +#: ../../addon/facebook/facebook.php:777 +msgid "Real-Time Updates are activated." +msgstr "Actualitzacions en Temps Real està activat." + +#: ../../addon/facebook/facebook.php:778 +msgid "Deactivate Real-Time Updates" +msgstr "Actualitzacions en Temps Real Desactivat" + +#: ../../addon/facebook/facebook.php:780 +msgid "Real-Time Updates not activated." +msgstr "Actualitzacions en Temps Real no activat." + +#: ../../addon/facebook/facebook.php:780 +msgid "Activate Real-Time Updates" +msgstr "Actualitzacions en Temps Real Activat" + +#: ../../addon/facebook/facebook.php:799 ../../addon/fbpost/fbpost.php:282 +#: ../../addon/dav/friendica/layout.fnk.php:361 +msgid "The new values have been saved." +msgstr "Els nous valors s'han guardat." + +#: ../../addon/facebook/facebook.php:823 ../../addon/fbpost/fbpost.php:301 msgid "Post to Facebook" msgstr "Enviament a Facebook" -#: ../../addon/facebook/facebook.php:582 +#: ../../addon/facebook/facebook.php:921 ../../addon/fbpost/fbpost.php:399 msgid "" "Post to Facebook cancelled because of multi-network access permission " "conflict." msgstr "Enviament a Facebook cancel·lat perque hi ha un conflicte de permisos d'accés multi-xarxa." -#: ../../addon/facebook/facebook.php:651 -msgid "Image: " -msgstr "Imatge:" - -#: ../../addon/facebook/facebook.php:728 +#: ../../addon/facebook/facebook.php:1149 ../../addon/fbpost/fbpost.php:610 msgid "View on Friendica" msgstr "Vist en Friendica" -#: ../../addon/facebook/facebook.php:752 +#: ../../addon/facebook/facebook.php:1182 ../../addon/fbpost/fbpost.php:643 msgid "Facebook post failed. Queued for retry." msgstr "Enviament a Facebook fracassat. En cua per a reintent." -#: ../../addon/facebook/facebook.php:877 ../../addon/facebook/facebook.php:886 -#: ../../include/bb2diaspora.php:102 -msgid "link" -msgstr "enllaç" +#: ../../addon/facebook/facebook.php:1222 ../../addon/fbpost/fbpost.php:683 +msgid "Your Facebook connection became invalid. Please Re-authenticate." +msgstr "La seva connexió a Facebook es va convertir en no vàlida. Per favor, torni a autenticar-se" + +#: ../../addon/facebook/facebook.php:1223 ../../addon/fbpost/fbpost.php:684 +msgid "Facebook connection became invalid" +msgstr "La seva connexió a Facebook es va convertir en no vàlida" + +#: ../../addon/facebook/facebook.php:1224 ../../addon/fbpost/fbpost.php:685 +#, php-format +msgid "" +"Hi %1$s,\n" +"\n" +"The connection between your accounts on %2$s and Facebook became invalid. This usually happens after you change your Facebook-password. To enable the connection again, you have to %3$sre-authenticate the Facebook-connector%4$s." +msgstr "Hi %1$s,\n\nLa connexió entre els teus comptes en %2$s i Facebook s'han tornat no vàlides. Això passa normalment quan canvies la contrasenya de Facebook. Per activar la conexió novament has de %3$sre-autenticar el connector de Facebook%4$s." + +#: ../../addon/snautofollow/snautofollow.php:32 +msgid "StatusNet AutoFollow settings updated." +msgstr "Ajustos de AutoSeguiment a StatusNet actualitzats." + +#: ../../addon/snautofollow/snautofollow.php:56 +msgid "StatusNet AutoFollow Settings" +msgstr "Ajustos de AutoSeguiment a StatusNet" + +#: ../../addon/snautofollow/snautofollow.php:58 +msgid "Automatically follow any StatusNet followers/mentioners" +msgstr "Segueix Automaticament qualsevol seguidor/mencionador de StatusNet" + +#: ../../addon/bg/bg.php:51 +msgid "Bg settings updated." +msgstr "Ajustos de Bg actualitzats." + +#: ../../addon/bg/bg.php:82 +msgid "Bg Settings" +msgstr "Ajustos de Bg" + +#: ../../addon/bg/bg.php:84 ../../addon/numfriends/numfriends.php:79 +msgid "How many contacts to display on profile sidebar" +msgstr "Quants contactes per mostrar a la barra lateral el perfil" + +#: ../../addon/privacy_image_cache/privacy_image_cache.php:260 +msgid "Lifetime of the cache (in hours)" +msgstr "Temps de vida de la caché (en hores)" + +#: ../../addon/privacy_image_cache/privacy_image_cache.php:265 +msgid "Cache Statistics" +msgstr "Estadístiques de la caché" + +#: ../../addon/privacy_image_cache/privacy_image_cache.php:268 +msgid "Number of items" +msgstr "Nombre d'elements" + +#: ../../addon/privacy_image_cache/privacy_image_cache.php:270 +msgid "Size of the cache" +msgstr "Mida de la caché" + +#: ../../addon/privacy_image_cache/privacy_image_cache.php:272 +msgid "Delete the whole cache" +msgstr "Esborra tota la cachè" + +#: ../../addon/fbpost/fbpost.php:172 +msgid "Facebook Post disabled" +msgstr "" + +#: ../../addon/fbpost/fbpost.php:199 +msgid "Facebook Post" +msgstr "" + +#: ../../addon/fbpost/fbpost.php:205 +msgid "Install Facebook Post connector for this account." +msgstr "" + +#: ../../addon/fbpost/fbpost.php:212 +msgid "Remove Facebook Post connector" +msgstr "" + +#: ../../addon/fbpost/fbpost.php:240 +msgid "Facebook Post Settings" +msgstr "" #: ../../addon/widgets/widget_like.php:58 #, php-format @@ -3933,15 +5039,19 @@ msgid_plural "%d people don't like this" msgstr[0] "%d persona no li agrada això" msgstr[1] "%d persones no els agrada això" -#: ../../addon/widgets/widgets.php:55 +#: ../../addon/widgets/widget_friendheader.php:40 +msgid "Get added to this list!" +msgstr "S'afegeixen a aquesta llista!" + +#: ../../addon/widgets/widgets.php:56 msgid "Generate new key" msgstr "Generar nova clau" -#: ../../addon/widgets/widgets.php:58 +#: ../../addon/widgets/widgets.php:59 msgid "Widgets key" msgstr "Ginys clau" -#: ../../addon/widgets/widgets.php:60 +#: ../../addon/widgets/widgets.php:61 msgid "Widgets available" msgstr "Ginys disponibles" @@ -3949,6 +5059,153 @@ msgstr "Ginys disponibles" msgid "Connect on Friendica!" msgstr "Connectar en Friendica" +#: ../../addon/morepokes/morepokes.php:19 +msgid "bitchslap" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:19 +msgid "bitchslapped" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:20 +msgid "shag" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:20 +msgid "shagged" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:21 +msgid "do something obscenely biological to" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:21 +msgid "did something obscenely biological to" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:22 +msgid "point out the poke feature to" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:22 +msgid "pointed out the poke feature to" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:23 +msgid "declare undying love for" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:23 +msgid "declared undying love for" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:24 +msgid "patent" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:24 +msgid "patented" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:25 +msgid "stroke beard" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:25 +msgid "stroked their beard at" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:26 +msgid "" +"bemoan the declining standards of modern secondary and tertiary education to" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:26 +msgid "" +"bemoans the declining standards of modern secondary and tertiary education " +"to" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:27 +msgid "hug" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:27 +msgid "hugged" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:28 +msgid "kiss" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:28 +msgid "kissed" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:29 +msgid "raise eyebrows at" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:29 +msgid "raised their eyebrows at" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:30 +msgid "insult" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:30 +msgid "insulted" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:31 +msgid "praise" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:31 +msgid "praised" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:32 +msgid "be dubious of" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:32 +msgid "was dubious of" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:33 +msgid "eat" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:33 +msgid "ate" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:34 +msgid "giggle and fawn at" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:34 +msgid "giggled and fawned at" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:35 +msgid "doubt" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:35 +msgid "doubted" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:36 +msgid "glare" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:36 +msgid "glared at" +msgstr "" + #: ../../addon/yourls/yourls.php:55 msgid "YourLS Settings" msgstr "La Teva Configuració de LS" @@ -3973,60 +5230,107 @@ msgstr "Emprar SSL" msgid "yourls Settings saved." msgstr "Guardar la seva configuració." -#: ../../addon/ljpost/ljpost.php:38 +#: ../../addon/ljpost/ljpost.php:39 msgid "Post to LiveJournal" msgstr "Missatge a Livejournal" -#: ../../addon/ljpost/ljpost.php:69 +#: ../../addon/ljpost/ljpost.php:70 msgid "LiveJournal Post Settings" msgstr "Configuració d'enviaments a Livejournal" -#: ../../addon/ljpost/ljpost.php:71 +#: ../../addon/ljpost/ljpost.php:72 msgid "Enable LiveJournal Post Plugin" msgstr "Habilitat el plugin d'enviaments a Livejournal" -#: ../../addon/ljpost/ljpost.php:76 +#: ../../addon/ljpost/ljpost.php:77 msgid "LiveJournal username" msgstr "Nom d'usuari a Livejournal" -#: ../../addon/ljpost/ljpost.php:81 +#: ../../addon/ljpost/ljpost.php:82 msgid "LiveJournal password" msgstr "Contrasenya a Livejournal" -#: ../../addon/ljpost/ljpost.php:86 +#: ../../addon/ljpost/ljpost.php:87 msgid "Post to LiveJournal by default" msgstr "Enviar per defecte a Livejournal" -#: ../../addon/nsfw/nsfw.php:47 -msgid "\"Not Safe For Work\" Settings" -msgstr "Configuració de \"Not Safe For Work\"" +#: ../../addon/nsfw/nsfw.php:78 +msgid "Not Safe For Work (General Purpose Content Filter) settings" +msgstr "Ajustos, Not Safe For Work (Filtre de Contingut de Propòsit General)" -#: ../../addon/nsfw/nsfw.php:50 -msgid "Enable NSFW filter" -msgstr "Habilitar el filtre NSFW" +#: ../../addon/nsfw/nsfw.php:80 +msgid "" +"This plugin looks in posts for the words/text you specify below, and " +"collapses any content containing those keywords so it is not displayed at " +"inappropriate times, such as sexual innuendo that may be improper in a work " +"setting. It is polite and recommended to tag any content containing nudity " +"with #NSFW. This filter can also match any other word/text you specify, and" +" can thereby be used as a general purpose content filter." +msgstr "Aquest plugin es veu en enviaments amb les paraules/text que s'especifiquen a continuació , i amagarà qualsevol contingut que contingui les paraules clau de manera que no apareguin en moments inapropiats, com ara insinuacions sexuals que poden ser inadequades en un entorn de treball. És de bona educació i es recomana etiquetar qualsevol contingut que contingui nus amb #NSFW. Aquest filtre també es pot fer coincidir amb qualsevol paraula/text que especifiqueu, i per tant pot ser utilitzat com un filtre general de contingut." -#: ../../addon/nsfw/nsfw.php:53 -msgid "Comma separated words to treat as NSFW" -msgstr "Tractar com NSFW les paraules separades per comes " +#: ../../addon/nsfw/nsfw.php:81 +msgid "Enable Content filter" +msgstr "Activat el filtre de Contingut" -#: ../../addon/nsfw/nsfw.php:58 +#: ../../addon/nsfw/nsfw.php:84 +msgid "Comma separated list of keywords to hide" +msgstr "Llista separada per comes de paraules clau per ocultar" + +#: ../../addon/nsfw/nsfw.php:89 msgid "Use /expression/ to provide regular expressions" msgstr "Emprar /expressió/ per a proporcionar expressions regulars" -#: ../../addon/nsfw/nsfw.php:74 +#: ../../addon/nsfw/nsfw.php:105 msgid "NSFW Settings saved." msgstr "Configuració NSFW guardada." -#: ../../addon/nsfw/nsfw.php:120 +#: ../../addon/nsfw/nsfw.php:157 #, php-format msgid "%s - Click to open/close" msgstr "%s - Clicar per obrir/tancar" +#: ../../addon/page/page.php:61 ../../addon/page/page.php:91 +#: ../../addon/forumlist/forumlist.php:54 +msgid "Forums" +msgstr "Forums" + +#: ../../addon/page/page.php:129 ../../addon/forumlist/forumlist.php:88 +msgid "Forums:" +msgstr "Fòrums:" + +#: ../../addon/page/page.php:165 +msgid "Page settings updated." +msgstr "Actualitzats els ajustos de pàgina." + +#: ../../addon/page/page.php:194 +msgid "Page Settings" +msgstr "Ajustos de pàgina" + +#: ../../addon/page/page.php:196 ../../addon/forumlist/forumlist.php:155 +msgid "How many forums to display on sidebar without paging" +msgstr "Quants fòrums per mostrar a la barra lateral per pàgina" + +#: ../../addon/page/page.php:199 +msgid "Randomise Page/Forum list" +msgstr "Aleatoritza la llista de Pàgina/Fòrum" + +#: ../../addon/page/page.php:202 +msgid "Show pages/forums on profile page" +msgstr "Mostra pàgines/fòrums a la pàgina de perfil" + +#: ../../addon/planets/planets.php:150 +msgid "Planets Settings" +msgstr "Ajustos de Planet" + +#: ../../addon/planets/planets.php:152 +msgid "Enable Planets Plugin" +msgstr "Activa Plugin de Planet" + #: ../../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:62 ../../boot.php:710 +#: ../../include/nav.php:64 ../../boot.php:912 msgid "Login" msgstr "Identifica't" @@ -4036,7 +5340,8 @@ msgid "OpenID" msgstr "OpenID" #: ../../addon/communityhome/communityhome.php:38 -msgid "Last users" +#: ../../addon/communityhome/twillingham/communityhome.php:38 +msgid "Latest users" msgstr "Últims usuaris" #: ../../addon/communityhome/communityhome.php:81 @@ -4045,21 +5350,560 @@ msgid "Most active users" msgstr "Usuaris més actius" #: ../../addon/communityhome/communityhome.php:98 -msgid "Last photos" -msgstr "Últimes fotos" +msgid "Latest photos" +msgstr "Darreres fotos" #: ../../addon/communityhome/communityhome.php:133 -msgid "Last likes" -msgstr "Últims \"m'agrada\"" +msgid "Latest likes" +msgstr "Darrers agrada" -#: ../../addon/communityhome/communityhome.php:155 ../../include/text.php:1224 -#: ../../include/conversation.php:45 ../../include/conversation.php:118 +#: ../../addon/communityhome/communityhome.php:155 +#: ../../view/theme/diabook/theme.php:562 ../../include/text.php:1437 +#: ../../include/conversation.php:117 ../../include/conversation.php:245 msgid "event" msgstr "esdeveniment" -#: ../../addon/communityhome/twillingham/communityhome.php:38 -msgid "Latest users" -msgstr "Últims usuaris" +#: ../../addon/dav/common/wdcal_backend.inc.php:92 +#: ../../addon/dav/common/wdcal_backend.inc.php:166 +#: ../../addon/dav/common/wdcal_backend.inc.php:178 +#: ../../addon/dav/common/wdcal_backend.inc.php:206 +#: ../../addon/dav/common/wdcal_backend.inc.php:214 +#: ../../addon/dav/common/wdcal_backend.inc.php:229 +msgid "No access" +msgstr "Inaccessible" + +#: ../../addon/dav/common/wdcal_edit.inc.php:30 +#: ../../addon/dav/common/wdcal_edit.inc.php:738 +msgid "Could not open component for editing" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:140 +#: ../../addon/dav/friendica/layout.fnk.php:143 +#: ../../addon/dav/friendica/layout.fnk.php:422 +msgid "Go back to the calendar" +msgstr "Tornar al calendari" + +#: ../../addon/dav/common/wdcal_edit.inc.php:144 +msgid "Event data" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:146 +#: ../../addon/dav/friendica/main.php:239 +msgid "Calendar" +msgstr "Calendari" + +#: ../../addon/dav/common/wdcal_edit.inc.php:163 +msgid "Special color" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:169 +msgid "Subject" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:173 +msgid "Starts" +msgstr "Inicia" + +#: ../../addon/dav/common/wdcal_edit.inc.php:178 +msgid "Ends" +msgstr "Finalitza" + +#: ../../addon/dav/common/wdcal_edit.inc.php:185 +msgid "Description" +msgstr "Descripció" + +#: ../../addon/dav/common/wdcal_edit.inc.php:188 +msgid "Recurrence" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:190 +msgid "Frequency" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:194 +#: ../../include/contact_selectors.php:59 +msgid "Daily" +msgstr "Diari" + +#: ../../addon/dav/common/wdcal_edit.inc.php:197 +#: ../../include/contact_selectors.php:60 +msgid "Weekly" +msgstr "Setmanal" + +#: ../../addon/dav/common/wdcal_edit.inc.php:200 +#: ../../include/contact_selectors.php:61 +msgid "Monthly" +msgstr "Mensual" + +#: ../../addon/dav/common/wdcal_edit.inc.php:203 +msgid "Yearly" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:214 +#: ../../include/datetime.php:288 +msgid "days" +msgstr "dies" + +#: ../../addon/dav/common/wdcal_edit.inc.php:215 +#: ../../include/datetime.php:287 +msgid "weeks" +msgstr "setmanes" + +#: ../../addon/dav/common/wdcal_edit.inc.php:216 +#: ../../include/datetime.php:286 +msgid "months" +msgstr "mesos" + +#: ../../addon/dav/common/wdcal_edit.inc.php:217 +#: ../../include/datetime.php:285 +msgid "years" +msgstr "anys" + +#: ../../addon/dav/common/wdcal_edit.inc.php:218 +msgid "Interval" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:218 +msgid "All %select% %time%" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:222 +#: ../../addon/dav/common/wdcal_edit.inc.php:260 +#: ../../addon/dav/common/wdcal_edit.inc.php:481 +msgid "Days" +msgstr "Dies" + +#: ../../addon/dav/common/wdcal_edit.inc.php:231 +#: ../../addon/dav/common/wdcal_edit.inc.php:254 +#: ../../addon/dav/common/wdcal_edit.inc.php:270 +#: ../../addon/dav/common/wdcal_edit.inc.php:293 +#: ../../addon/dav/common/wdcal_edit.inc.php:305 ../../include/text.php:917 +msgid "Sunday" +msgstr "Diumenge" + +#: ../../addon/dav/common/wdcal_edit.inc.php:235 +#: ../../addon/dav/common/wdcal_edit.inc.php:274 +#: ../../addon/dav/common/wdcal_edit.inc.php:308 ../../include/text.php:917 +msgid "Monday" +msgstr "Dilluns" + +#: ../../addon/dav/common/wdcal_edit.inc.php:238 +#: ../../addon/dav/common/wdcal_edit.inc.php:277 ../../include/text.php:917 +msgid "Tuesday" +msgstr "Dimarts" + +#: ../../addon/dav/common/wdcal_edit.inc.php:241 +#: ../../addon/dav/common/wdcal_edit.inc.php:280 ../../include/text.php:917 +msgid "Wednesday" +msgstr "Dimecres" + +#: ../../addon/dav/common/wdcal_edit.inc.php:244 +#: ../../addon/dav/common/wdcal_edit.inc.php:283 ../../include/text.php:917 +msgid "Thursday" +msgstr "Dijous" + +#: ../../addon/dav/common/wdcal_edit.inc.php:247 +#: ../../addon/dav/common/wdcal_edit.inc.php:286 ../../include/text.php:917 +msgid "Friday" +msgstr "Divendres" + +#: ../../addon/dav/common/wdcal_edit.inc.php:250 +#: ../../addon/dav/common/wdcal_edit.inc.php:289 ../../include/text.php:917 +msgid "Saturday" +msgstr "Dissabte" + +#: ../../addon/dav/common/wdcal_edit.inc.php:297 +msgid "First day of week:" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:350 +#: ../../addon/dav/common/wdcal_edit.inc.php:373 +msgid "Day of month" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:354 +msgid "#num#th of each month" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:357 +msgid "#num#th-last of each month" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:360 +msgid "#num#th #wkday# of each month" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:363 +msgid "#num#th-last #wkday# of each month" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:372 +#: ../../addon/dav/friendica/layout.fnk.php:255 +msgid "Month" +msgstr "Mes" + +#: ../../addon/dav/common/wdcal_edit.inc.php:377 +msgid "#num#th of the given month" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:380 +msgid "#num#th-last of the given month" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:383 +msgid "#num#th #wkday# of the given month" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:386 +msgid "#num#th-last #wkday# of the given month" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:413 +msgid "Repeat until" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:417 +msgid "Infinite" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:420 +msgid "Until the following date" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:423 +msgid "Number of times" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:429 +msgid "Exceptions" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:432 +msgid "none" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:449 +msgid "Notification" +msgstr "Notificació" + +#: ../../addon/dav/common/wdcal_edit.inc.php:466 +msgid "Notify by" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:469 +msgid "E-Mail" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:470 +msgid "On Friendica / Display" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:474 +msgid "Time" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:478 +msgid "Hours" +msgstr "Hores" + +#: ../../addon/dav/common/wdcal_edit.inc.php:479 +msgid "Minutes" +msgstr "Minuts" + +#: ../../addon/dav/common/wdcal_edit.inc.php:480 +msgid "Seconds" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:482 +msgid "Weeks" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:485 +msgid "before the" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:486 +msgid "start of the event" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:487 +msgid "end of the event" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:492 +msgid "Add a notification" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:687 +msgid "The event #name# will start at #date" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:696 +msgid "#name# is about to begin." +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:769 +msgid "Saved" +msgstr "" + +#: ../../addon/dav/common/wdcal_configuration.php:148 +msgid "U.S. Time Format (mm/dd/YYYY)" +msgstr "Data en format U.S. (mm/dd/YYY)" + +#: ../../addon/dav/common/wdcal_configuration.php:243 +msgid "German Time Format (dd.mm.YYYY)" +msgstr "Data en format Alemany (dd.mm.YYYY)" + +#: ../../addon/dav/common/dav_caldav_backend_private.inc.php:39 +msgid "Private Events" +msgstr "" + +#: ../../addon/dav/common/dav_carddav_backend_private.inc.php:46 +msgid "Private Addressbooks" +msgstr "" + +#: ../../addon/dav/friendica/dav_caldav_backend_virtual_friendica.inc.php:36 +msgid "Friendica-Native events" +msgstr "" + +#: ../../addon/dav/friendica/dav_carddav_backend_virtual_friendica.inc.php:36 +#: ../../addon/dav/friendica/dav_carddav_backend_virtual_friendica.inc.php:59 +msgid "Friendica-Contacts" +msgstr "Friendica-Contactes" + +#: ../../addon/dav/friendica/dav_carddav_backend_virtual_friendica.inc.php:60 +msgid "Your Friendica-Contacts" +msgstr "Els teus Contactes a Friendica" + +#: ../../addon/dav/friendica/layout.fnk.php:99 +#: ../../addon/dav/friendica/layout.fnk.php:136 +msgid "" +"Something went wrong when trying to import the file. Sorry. Maybe some " +"events were imported anyway." +msgstr "" + +#: ../../addon/dav/friendica/layout.fnk.php:131 +msgid "Something went wrong when trying to import the file. Sorry." +msgstr "" + +#: ../../addon/dav/friendica/layout.fnk.php:134 +msgid "The ICS-File has been imported." +msgstr "" + +#: ../../addon/dav/friendica/layout.fnk.php:138 +msgid "No file was uploaded." +msgstr "" + +#: ../../addon/dav/friendica/layout.fnk.php:147 +msgid "Import a ICS-file" +msgstr "" + +#: ../../addon/dav/friendica/layout.fnk.php:150 +msgid "ICS-File" +msgstr "" + +#: ../../addon/dav/friendica/layout.fnk.php:151 +msgid "Overwrite all #num# existing events" +msgstr "" + +#: ../../addon/dav/friendica/layout.fnk.php:228 +msgid "New event" +msgstr "Nou esdeveniment" + +#: ../../addon/dav/friendica/layout.fnk.php:232 +msgid "Today" +msgstr "Avui" + +#: ../../addon/dav/friendica/layout.fnk.php:241 +msgid "Day" +msgstr "Dia" + +#: ../../addon/dav/friendica/layout.fnk.php:248 +msgid "Week" +msgstr "Setmana" + +#: ../../addon/dav/friendica/layout.fnk.php:260 +msgid "Reload" +msgstr "Recarregar" + +#: ../../addon/dav/friendica/layout.fnk.php:271 +msgid "Date" +msgstr "Data" + +#: ../../addon/dav/friendica/layout.fnk.php:313 +msgid "Error" +msgstr "Error" + +#: ../../addon/dav/friendica/layout.fnk.php:380 +msgid "The calendar has been updated." +msgstr "" + +#: ../../addon/dav/friendica/layout.fnk.php:393 +msgid "The new calendar has been created." +msgstr "" + +#: ../../addon/dav/friendica/layout.fnk.php:417 +msgid "The calendar has been deleted." +msgstr "" + +#: ../../addon/dav/friendica/layout.fnk.php:424 +msgid "Calendar Settings" +msgstr "Ajustos de Calendari" + +#: ../../addon/dav/friendica/layout.fnk.php:430 +msgid "Date format" +msgstr "Format de la data" + +#: ../../addon/dav/friendica/layout.fnk.php:439 +msgid "Time zone" +msgstr "Zona horària" + +#: ../../addon/dav/friendica/layout.fnk.php:445 +msgid "Calendars" +msgstr "" + +#: ../../addon/dav/friendica/layout.fnk.php:487 +msgid "Create a new calendar" +msgstr "" + +#: ../../addon/dav/friendica/layout.fnk.php:496 +msgid "Limitations" +msgstr "Limitacions" + +#: ../../addon/dav/friendica/layout.fnk.php:500 +#: ../../addon/libravatar/libravatar.php:82 +msgid "Warning" +msgstr "Avís" + +#: ../../addon/dav/friendica/layout.fnk.php:504 +msgid "Synchronization (iPhone, Thunderbird Lightning, Android, ...)" +msgstr "Syncronització (iPhone, Thunderbird Lightning, Android, ...)" + +#: ../../addon/dav/friendica/layout.fnk.php:511 +msgid "Synchronizing this calendar with the iPhone" +msgstr "Sncronitzant aquest calendari amb el iPhone" + +#: ../../addon/dav/friendica/layout.fnk.php:522 +msgid "Synchronizing your Friendica-Contacts with the iPhone" +msgstr "Sincronitzant els teus contactes a Friendica amb el iPhone" + +#: ../../addon/dav/friendica/main.php:202 +msgid "" +"The current version of this plugin has not been set up correctly. Please " +"contact the system administrator of your installation of friendica to fix " +"this." +msgstr "" + +#: ../../addon/dav/friendica/main.php:242 +msgid "Extended calendar with CalDAV-support" +msgstr "Calendari ampliat amb suport CalDAV" + +#: ../../addon/dav/friendica/main.php:279 +#: ../../addon/dav/friendica/main.php:280 ../../include/delivery.php:464 +#: ../../include/enotify.php:28 ../../include/notifier.php:710 +msgid "noreply" +msgstr "no contestar" + +#: ../../addon/dav/friendica/main.php:282 +msgid "Notification: " +msgstr "" + +#: ../../addon/dav/friendica/main.php:309 +msgid "The database tables have been installed." +msgstr "Les taules de la base de dades han estat instal·lades." + +#: ../../addon/dav/friendica/main.php:310 +msgid "An error occurred during the installation." +msgstr "Ha ocorregut un error durant la instal·lació." + +#: ../../addon/dav/friendica/main.php:316 +msgid "The database tables have been updated." +msgstr "" + +#: ../../addon/dav/friendica/main.php:317 +msgid "An error occurred during the update." +msgstr "" + +#: ../../addon/dav/friendica/main.php:333 +msgid "No system-wide settings yet." +msgstr "No tens enllestits els ajustos del sistema." + +#: ../../addon/dav/friendica/main.php:336 +msgid "Database status" +msgstr "Estat de la base de dades" + +#: ../../addon/dav/friendica/main.php:339 +msgid "Installed" +msgstr "Instal·lat" + +#: ../../addon/dav/friendica/main.php:343 +msgid "Upgrade needed" +msgstr "Necessites actualitzar" + +#: ../../addon/dav/friendica/main.php:343 +msgid "" +"Please back up all calendar data (the tables beginning with dav_*) before " +"proceeding. While all calendar events should be converted to the new " +"database structure, it's always safe to have a backup. Below, you can have a" +" look at the database-queries that will be made when pressing the " +"'update'-button." +msgstr "" + +#: ../../addon/dav/friendica/main.php:343 +msgid "Upgrade" +msgstr "Actualització" + +#: ../../addon/dav/friendica/main.php:346 +msgid "Not installed" +msgstr "No instal·lat" + +#: ../../addon/dav/friendica/main.php:346 +msgid "Install" +msgstr "Instal·lat" + +#: ../../addon/dav/friendica/main.php:350 +msgid "Unknown" +msgstr "" + +#: ../../addon/dav/friendica/main.php:350 +msgid "" +"Something really went wrong. I cannot recover from this state automatically," +" sorry. Please go to the database backend, back up the data, and delete all " +"tables beginning with 'dav_' manually. Afterwards, this installation routine" +" should be able to reinitialize the tables automatically." +msgstr "" + +#: ../../addon/dav/friendica/main.php:355 +msgid "Troubleshooting" +msgstr "Solució de problemes" + +#: ../../addon/dav/friendica/main.php:356 +msgid "Manual creation of the database tables:" +msgstr "Creació manual de les taules de la base de dades:" + +#: ../../addon/dav/friendica/main.php:357 +msgid "Show SQL-statements" +msgstr "Mostrar instruccions de SQL " + +#: ../../addon/dav/friendica/calendar.friendica.fnk.php:206 +msgid "Private Calendar" +msgstr "Calendari Privat" + +#: ../../addon/dav/friendica/calendar.friendica.fnk.php:207 +msgid "Friendica Events: Mine" +msgstr "Esdeveniments Friendica: Meus" + +#: ../../addon/dav/friendica/calendar.friendica.fnk.php:208 +msgid "Friendica Events: Contacts" +msgstr "Esdeveniments Friendica: Contactes" + +#: ../../addon/dav/friendica/calendar.friendica.fnk.php:248 +msgid "Private Addresses" +msgstr "" + +#: ../../addon/dav/friendica/calendar.friendica.fnk.php:249 +msgid "Friendica Contacts" +msgstr "" #: ../../addon/uhremotestorage/uhremotestorage.php:84 #, php-format @@ -4140,35 +5984,35 @@ msgstr "Empat!" msgid "I won!" msgstr "Vaig guanyar!" -#: ../../addon/randplace/randplace.php:171 +#: ../../addon/randplace/randplace.php:169 msgid "Randplace Settings" msgstr "Configuració de Randplace" -#: ../../addon/randplace/randplace.php:173 +#: ../../addon/randplace/randplace.php:171 msgid "Enable Randplace Plugin" msgstr "Habilitar el Plugin de Randplace" -#: ../../addon/dwpost/dwpost.php:38 +#: ../../addon/dwpost/dwpost.php:39 msgid "Post to Dreamwidth" msgstr "Missatge a Dreamwidth" -#: ../../addon/dwpost/dwpost.php:69 +#: ../../addon/dwpost/dwpost.php:70 msgid "Dreamwidth Post Settings" msgstr "Configuració d'enviaments a Dreamwidth" -#: ../../addon/dwpost/dwpost.php:71 +#: ../../addon/dwpost/dwpost.php:72 msgid "Enable dreamwidth Post Plugin" msgstr "Habilitat el plugin d'enviaments a Dreamwidth" -#: ../../addon/dwpost/dwpost.php:76 +#: ../../addon/dwpost/dwpost.php:77 msgid "dreamwidth username" msgstr "Nom d'usuari a Dreamwidth" -#: ../../addon/dwpost/dwpost.php:81 +#: ../../addon/dwpost/dwpost.php:82 msgid "dreamwidth password" msgstr "Contrasenya a Dreamwidth" -#: ../../addon/dwpost/dwpost.php:86 +#: ../../addon/dwpost/dwpost.php:87 msgid "Post to dreamwidth by default" msgstr "Enviar per defecte a Dreamwidth" @@ -4208,11 +6052,23 @@ msgstr "el Lloc Drupal empra URLS netes" msgid "Post to Drupal by default" msgstr "Enviar a Drupal per defecte" -#: ../../addon/drpost/drpost.php:184 ../../addon/wppost/wppost.php:172 -#: ../../addon/posterous/posterous.php:173 +#: ../../addon/drpost/drpost.php:184 ../../addon/wppost/wppost.php:201 +#: ../../addon/blogger/blogger.php:172 ../../addon/posterous/posterous.php:189 msgid "Post from Friendica" msgstr "Enviament des de Friendica" +#: ../../addon/startpage/startpage.php:83 +msgid "Startpage Settings" +msgstr "Ajustos de la pàgina d'inici" + +#: ../../addon/startpage/startpage.php:85 +msgid "Home page to load after login - leave blank for profile wall" +msgstr "Pàgina personal a carregar després d'accedir - deixar buit pel perfil del mur" + +#: ../../addon/startpage/startpage.php:88 +msgid "Examples: "network" or "notifications/system"" +msgstr "Exemples: \"xarxa\" o \"notificacions/sistema\"" + #: ../../addon/geonames/geonames.php:143 msgid "Geonames settings updated." msgstr "Actualitzada la configuració de Geonames." @@ -4225,6 +6081,24 @@ msgstr "Configuració de Geonames" msgid "Enable Geonames Plugin" msgstr "Habilitar Plugin de Geonames" +#: ../../addon/public_server/public_server.php:126 +#: ../../addon/testdrive/testdrive.php:94 +#, php-format +msgid "Your account on %s will expire in a few days." +msgstr "El teu compte en %s expirarà en pocs dies." + +#: ../../addon/public_server/public_server.php:127 +msgid "Your Friendica account is about to expire." +msgstr "El teu compte de Friendica està a punt de caducar." + +#: ../../addon/public_server/public_server.php:128 +#, php-format +msgid "" +"Hi %1$s,\n" +"\n" +"Your account on %2$s will expire in less than five days. You may keep your account by logging in at least once every 30 days" +msgstr "Hi %1$s,\n\nEl teu compte en %2$s expirara en menys de cinc dies. Pots mantenir el teu compte accedint al menys una vegada cada 30 dies." + #: ../../addon/js_upload/js_upload.php:43 msgid "Upload a file" msgstr "Carrega un arxiu" @@ -4265,45 +6139,111 @@ msgstr "Empreu OEmbed per videos YouTube" msgid "URL to embed:" msgstr "Adreça URL del recurs" -#: ../../addon/impressum/impressum.php:25 +#: ../../addon/forumlist/forumlist.php:57 +msgid "show/hide" +msgstr "mostra/amaga" + +#: ../../addon/forumlist/forumlist.php:72 +msgid "No forum subscriptions" +msgstr "" + +#: ../../addon/forumlist/forumlist.php:124 +msgid "Forumlist settings updated." +msgstr "" + +#: ../../addon/forumlist/forumlist.php:153 +msgid "Forumlist Settings" +msgstr "" + +#: ../../addon/forumlist/forumlist.php:158 +msgid "Randomise Forumlist/Forum list" +msgstr "" + +#: ../../addon/forumlist/forumlist.php:161 +msgid "Show forumlists/forums on profile forumlist" +msgstr "" + +#: ../../addon/impressum/impressum.php:37 msgid "Impressum" msgstr "Impressum" -#: ../../addon/impressum/impressum.php:38 -#: ../../addon/impressum/impressum.php:40 -#: ../../addon/impressum/impressum.php:70 +#: ../../addon/impressum/impressum.php:50 +#: ../../addon/impressum/impressum.php:52 +#: ../../addon/impressum/impressum.php:84 msgid "Site Owner" msgstr "Propietari del lloc" -#: ../../addon/impressum/impressum.php:38 -#: ../../addon/impressum/impressum.php:74 +#: ../../addon/impressum/impressum.php:50 +#: ../../addon/impressum/impressum.php:88 msgid "Email Address" msgstr "Adreça de correu" -#: ../../addon/impressum/impressum.php:43 -#: ../../addon/impressum/impressum.php:72 +#: ../../addon/impressum/impressum.php:55 +#: ../../addon/impressum/impressum.php:86 msgid "Postal Address" msgstr "Adreça postal" -#: ../../addon/impressum/impressum.php:49 +#: ../../addon/impressum/impressum.php:61 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 "El complement impressum s'ha de configurar!
    Si us plau afegiu almenys la variable propietari al fitxer de configuració. Per a les altres variables, consulteu el fitxer README del complement." -#: ../../addon/impressum/impressum.php:71 +#: ../../addon/impressum/impressum.php:84 +msgid "The page operators name." +msgstr "Nom de la pàgina del gestor." + +#: ../../addon/impressum/impressum.php:85 msgid "Site Owners Profile" msgstr "Perfil del Propietari del Lloc" -#: ../../addon/impressum/impressum.php:73 +#: ../../addon/impressum/impressum.php:85 +msgid "Profile address of the operator." +msgstr "Adreça del perfil del gestor." + +#: ../../addon/impressum/impressum.php:86 +msgid "How to contact the operator via snail mail. You can use BBCode here." +msgstr "Com posar-se en contacte amb l'operador a través de correu postal. Vostè pot utilitzar BBCode aquí." + +#: ../../addon/impressum/impressum.php:87 msgid "Notes" msgstr "Notes" +#: ../../addon/impressum/impressum.php:87 +msgid "" +"Additional notes that are displayed beneath the contact information. You can" +" use BBCode here." +msgstr "Notes addicionals que es mostren sota de la informació de contacte. Vostè pot usar BBCode aquí." + +#: ../../addon/impressum/impressum.php:88 +msgid "How to contact the operator via email. (will be displayed obfuscated)" +msgstr "Com contactar amb el gestor via correu electronic. ( es visualitzara ofuscat)" + +#: ../../addon/impressum/impressum.php:89 +msgid "Footer note" +msgstr "Nota a peu de pàgina" + +#: ../../addon/impressum/impressum.php:89 +msgid "Text for the footer. You can use BBCode here." +msgstr "Text pel peu de pàgina. Pots emprar BBCode aquí." + #: ../../addon/buglink/buglink.php:15 msgid "Report Bug" msgstr "Informar de problema" +#: ../../addon/notimeline/notimeline.php:32 +msgid "No Timeline settings updated." +msgstr "No s'han actualitzat els ajustos de la línia de temps" + +#: ../../addon/notimeline/notimeline.php:56 +msgid "No Timeline Settings" +msgstr "No hi han ajustos de la línia de temps" + +#: ../../addon/notimeline/notimeline.php:58 +msgid "Disable Archive selector on profile wall" +msgstr "Desactivar el selector d'arxius del mur de perfils" + #: ../../addon/blockem/blockem.php:51 msgid "\"Blockem\" Settings" msgstr "Configuració de \"Bloqueig\"" @@ -4381,10 +6321,139 @@ msgstr "Zoom per defecte" msgid "The default zoom level. (1:world, 18:highest)" msgstr "Nivell de zoom per defecte. (1: el món, 18: el més alt)" +#: ../../addon/group_text/group_text.php:46 #: ../../addon/editplain/editplain.php:46 msgid "Editplain settings updated." msgstr "Actualitzar la configuració de Editplain." +#: ../../addon/group_text/group_text.php:76 +msgid "Group Text" +msgstr "" + +#: ../../addon/group_text/group_text.php:78 +msgid "Use a text only (non-image) group selector in the \"group edit\" menu" +msgstr "" + +#: ../../addon/libravatar/libravatar.php:14 +msgid "Could NOT install Libravatar successfully.
    It requires PHP >= 5.3" +msgstr "No puc instal·lar Libravatar ,
    requereix PHP>=5.3" + +#: ../../addon/libravatar/libravatar.php:73 +#: ../../addon/gravatar/gravatar.php:71 +msgid "generic profile image" +msgstr "imatge de perfil genérica" + +#: ../../addon/libravatar/libravatar.php:74 +#: ../../addon/gravatar/gravatar.php:72 +msgid "random geometric pattern" +msgstr "Patró geometric aleatori" + +#: ../../addon/libravatar/libravatar.php:75 +#: ../../addon/gravatar/gravatar.php:73 +msgid "monster face" +msgstr "Cara monstruosa" + +#: ../../addon/libravatar/libravatar.php:76 +#: ../../addon/gravatar/gravatar.php:74 +msgid "computer generated face" +msgstr "Cara monstruosa generada per ordinador" + +#: ../../addon/libravatar/libravatar.php:77 +#: ../../addon/gravatar/gravatar.php:75 +msgid "retro arcade style face" +msgstr "Cara d'estil arcade retro" + +#: ../../addon/libravatar/libravatar.php:83 +#, php-format +msgid "Your PHP version %s is lower than the required PHP >= 5.3." +msgstr "La teva versió de PHP %s es inferior a la requerida, PHP>=5.3" + +#: ../../addon/libravatar/libravatar.php:84 +msgid "This addon is not functional on your server." +msgstr "Aquest addon no es funcional al teu servidor." + +#: ../../addon/libravatar/libravatar.php:93 +#: ../../addon/gravatar/gravatar.php:89 +msgid "Information" +msgstr "informació" + +#: ../../addon/libravatar/libravatar.php:93 +msgid "" +"Gravatar addon is installed. Please disable the Gravatar addon.
    The " +"Libravatar addon will fall back to Gravatar if nothing was found at " +"Libravatar." +msgstr "" + +#: ../../addon/libravatar/libravatar.php:100 +#: ../../addon/gravatar/gravatar.php:96 +msgid "Default avatar image" +msgstr "Imatge d'avatar per defecte" + +#: ../../addon/libravatar/libravatar.php:100 +msgid "Select default avatar image if none was found. See README" +msgstr "" + +#: ../../addon/libravatar/libravatar.php:112 +msgid "Libravatar settings updated." +msgstr "Ajustos de Libravatar actualitzats." + +#: ../../addon/libertree/libertree.php:36 +msgid "Post to libertree" +msgstr "Enviament a libertree" + +#: ../../addon/libertree/libertree.php:67 +msgid "libertree Post Settings" +msgstr "Ajustos d'enviaments a libertree" + +#: ../../addon/libertree/libertree.php:69 +msgid "Enable Libertree Post Plugin" +msgstr "Activa el plugin d'enviaments a libertree" + +#: ../../addon/libertree/libertree.php:74 +msgid "Libertree API token" +msgstr "Libertree API token" + +#: ../../addon/libertree/libertree.php:79 +msgid "Libertree site URL" +msgstr "lloc URL libertree" + +#: ../../addon/libertree/libertree.php:84 +msgid "Post to Libertree by default" +msgstr "Enviar a libertree per defecte" + +#: ../../addon/altpager/altpager.php:46 +msgid "Altpager settings updated." +msgstr "Ajustos de Altpagerr actualitzats." + +#: ../../addon/altpager/altpager.php:79 +msgid "Alternate Pagination Setting" +msgstr "Alternate Pagination Setting" + +#: ../../addon/altpager/altpager.php:81 +msgid "Use links to \"newer\" and \"older\" pages in place of page numbers?" +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 "El complement MathJax processa les fórmules matemàtiques escrites utilitzant la sintaxi de LaTeX, envoltades per l'habitual $$ o un bloc de \"eqnarray\" en les publicacions del seu mur, a la fitxa de la xarxa i correu privat." + +#: ../../addon/mathjax/mathjax.php:38 +msgid "Use the MathJax renderer" +msgstr "Utilitzar el processador Mathjax" + +#: ../../addon/mathjax/mathjax.php:74 +msgid "MathJax Base URL" +msgstr "URL Base de Mathjax" + +#: ../../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 "La URL del fitxer javascript que ha de ser inclòs per a usar Mathjax. Pot ser utilitzat per Mathjax CDN o un altre instal·lació de Mathjax." + #: ../../addon/editplain/editplain.php:76 msgid "Editplain Settings" msgstr "Configuració de Editplain" @@ -4393,15 +6462,127 @@ msgstr "Configuració de Editplain" msgid "Disable richtext status editor" msgstr "Deshabilitar l'editor d'estatus de texte enriquit" -#: ../../addon/pageheader/pageheader.php:47 +#: ../../addon/gravatar/gravatar.php:89 +msgid "" +"Libravatar addon is installed, too. Please disable Libravatar addon or this " +"Gravatar addon.
    The Libravatar addon will fall back to Gravatar if " +"nothing was found at Libravatar." +msgstr "" + +#: ../../addon/gravatar/gravatar.php:96 +msgid "Select default avatar image if none was found at Gravatar. See README" +msgstr "Se selecciona la imatge d'avatar per defecte si no es troba cap en Gravatar. Veure el README" + +#: ../../addon/gravatar/gravatar.php:97 +msgid "Rating of images" +msgstr "Classificació de les imatges" + +#: ../../addon/gravatar/gravatar.php:97 +msgid "Select the appropriate avatar rating for your site. See README" +msgstr "Selecciona la classe d'avatar apropiat pel teu lloc. Veure el README" + +#: ../../addon/gravatar/gravatar.php:111 +msgid "Gravatar settings updated." +msgstr "Ajustos de Gravatar actualitzats." + +#: ../../addon/testdrive/testdrive.php:95 +msgid "Your Friendica test account is about to expire." +msgstr "La teva provatura de Friendica esta a prop d'expirar." + +#: ../../addon/testdrive/testdrive.php:96 +#, php-format +msgid "" +"Hi %1$s,\n" +"\n" +"Your test account on %2$s will expire in less than five days. We hope you enjoyed this test drive and use this opportunity to find a permanent Friendica website for your integrated social communications. A list of public sites is available at http://dir.friendica.com/siteinfo - and for more information on setting up your own Friendica server please see the Friendica project website at http://friendica.com." +msgstr "Hola %1$s ,\n\nEl seu compte de prova a %2$s expirarà en menys de cinc dies . Esperem que hagi gaudit d'aquesta prova i aprofita aquesta oportunitat per trobar un lloc web Friendica permanent per a les teves comunicacions socials integrades . Una llista de llocs públics es troba disponible a http://dir.friendica.com/siteinfo - i per obtenir més informació sobre com configurar el vostre servidor Friendica consulteu el lloc web del projecte en el Friendica http://friendica.com ." + +#: ../../addon/pageheader/pageheader.php:50 msgid "\"pageheader\" Settings" msgstr "Configuració de la capçalera de pàgina." -#: ../../addon/pageheader/pageheader.php:65 +#: ../../addon/pageheader/pageheader.php:68 msgid "pageheader Settings saved." msgstr "guardada la configuració de la capçalera de pàgina." -#: ../../addon/viewsrc/viewsrc.php:25 +#: ../../addon/ijpost/ijpost.php:39 +msgid "Post to Insanejournal" +msgstr "Enviament a Insanejournal" + +#: ../../addon/ijpost/ijpost.php:70 +msgid "InsaneJournal Post Settings" +msgstr "Ajustos d'Enviament a Insanejournal" + +#: ../../addon/ijpost/ijpost.php:72 +msgid "Enable InsaneJournal Post Plugin" +msgstr "Habilita el Plugin d'Enviaments a Insanejournal" + +#: ../../addon/ijpost/ijpost.php:77 +msgid "InsaneJournal username" +msgstr "Nom d'usuari de Insanejournal" + +#: ../../addon/ijpost/ijpost.php:82 +msgid "InsaneJournal password" +msgstr "Contrasenya de Insanejournal" + +#: ../../addon/ijpost/ijpost.php:87 +msgid "Post to InsaneJournal by default" +msgstr "Enviar per defecte a Insanejournal" + +#: ../../addon/jappixmini/jappixmini.php:266 +msgid "Jappix Mini addon settings" +msgstr "" + +#: ../../addon/jappixmini/jappixmini.php:268 +msgid "Activate addon" +msgstr "" + +#: ../../addon/jappixmini/jappixmini.php:271 +msgid "" +"Do not insert the Jappixmini Chat-Widget into the webinterface" +msgstr "" + +#: ../../addon/jappixmini/jappixmini.php:274 +msgid "Jabber username" +msgstr "" + +#: ../../addon/jappixmini/jappixmini.php:277 +msgid "Jabber server" +msgstr "" + +#: ../../addon/jappixmini/jappixmini.php:281 +msgid "Jabber BOSH host" +msgstr "" + +#: ../../addon/jappixmini/jappixmini.php:285 +msgid "Jabber password" +msgstr "" + +#: ../../addon/jappixmini/jappixmini.php:290 +msgid "Encrypt Jabber password with Friendica password (recommended)" +msgstr "" + +#: ../../addon/jappixmini/jappixmini.php:293 +msgid "Friendica password" +msgstr "" + +#: ../../addon/jappixmini/jappixmini.php:296 +msgid "Approve subscription requests from Friendica contacts automatically" +msgstr "" + +#: ../../addon/jappixmini/jappixmini.php:299 +msgid "Subscribe to Friendica contacts automatically" +msgstr "" + +#: ../../addon/jappixmini/jappixmini.php:302 +msgid "Purge internal list of jabber addresses of contacts" +msgstr "" + +#: ../../addon/jappixmini/jappixmini.php:308 +msgid "Add contact" +msgstr "" + +#: ../../addon/viewsrc/viewsrc.php:37 msgid "View Source" msgstr "Veure les Fonts" @@ -4409,40 +6590,40 @@ msgstr "Veure les Fonts" msgid "Post to StatusNet" msgstr "Publica-ho a StatusNet" -#: ../../addon/statusnet/statusnet.php:175 +#: ../../addon/statusnet/statusnet.php:176 msgid "" "Please contact your site administrator.
    The provided API URL is not " "valid." msgstr "Si us plau, poseu-vos en contacte amb l'administrador del lloc.
    L'adreça URL de l'API proporcionada no és vàlida." -#: ../../addon/statusnet/statusnet.php:203 +#: ../../addon/statusnet/statusnet.php:204 msgid "We could not contact the StatusNet API with the Path you entered." msgstr "No hem pogut posar-nos en contacte amb l'API StatusNet amb la ruta que has introduït." -#: ../../addon/statusnet/statusnet.php:229 +#: ../../addon/statusnet/statusnet.php:232 msgid "StatusNet settings updated." msgstr "La configuració StatusNet actualitzada." -#: ../../addon/statusnet/statusnet.php:252 +#: ../../addon/statusnet/statusnet.php:257 msgid "StatusNet Posting Settings" msgstr "Configuració d'Enviaments per a StatusNet" -#: ../../addon/statusnet/statusnet.php:266 +#: ../../addon/statusnet/statusnet.php:271 msgid "Globally Available StatusNet OAuthKeys" msgstr "OAuthKeys de StatusNet Globalment Disponible" -#: ../../addon/statusnet/statusnet.php:267 +#: ../../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 "Hi ha preconfigurats parells clau OAuth per a alguns servidors StatusNet disponibles. Si està emprant un d'ells, utilitzi aquestes credencials. Si no és així no dubteu a connectar-se a qualsevol altra instància StatusNet (veure a baix)." -#: ../../addon/statusnet/statusnet.php:275 +#: ../../addon/statusnet/statusnet.php:280 msgid "Provide your own OAuth Credentials" msgstr "Proporcioneu les vostres credencials de OAuth" -#: ../../addon/statusnet/statusnet.php:276 +#: ../../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 " @@ -4451,19 +6632,19 @@ msgid "" "Friendica installation at your favorited StatusNet installation." msgstr "no s'ha trobat cap parell \"consumer key\" per StatusNet. Registra el teu compte Friendica com un client d'escriptori en el seu compte StatusNet, copieu el parell de \"consumer key\" aquí i entri a l'arrel de la base de l'API.
    Abans de registrar el seu parell de claus OAuth demani a l'administrador si ja hi ha un parell de claus per a aquesta instal·lació de Friendica en la instal·lació del teu favorit StatusNet." -#: ../../addon/statusnet/statusnet.php:278 +#: ../../addon/statusnet/statusnet.php:283 msgid "OAuth Consumer Key" msgstr "OAuth Consumer Key" -#: ../../addon/statusnet/statusnet.php:281 +#: ../../addon/statusnet/statusnet.php:286 msgid "OAuth Consumer Secret" msgstr "OAuth Consumer Secret" -#: ../../addon/statusnet/statusnet.php:284 +#: ../../addon/statusnet/statusnet.php:289 msgid "Base API Path (remember the trailing /)" msgstr "Base API Path (recorda deixar / al final)" -#: ../../addon/statusnet/statusnet.php:305 +#: ../../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" @@ -4471,38 +6652,38 @@ msgid "" " to StatusNet." msgstr "Per connectar al seu compte StatusNet, feu clic al botó de sota per obtenir un codi de seguretat StatusNet, que has de copiar a la casella de sota, i enviar el formulari. Només els missatges públics es publicaran en StatusNet." -#: ../../addon/statusnet/statusnet.php:306 +#: ../../addon/statusnet/statusnet.php:311 msgid "Log in with StatusNet" msgstr "Accedeixi com en StatusNet" -#: ../../addon/statusnet/statusnet.php:308 +#: ../../addon/statusnet/statusnet.php:313 msgid "Copy the security code from StatusNet here" msgstr "Copieu el codi de seguretat StatusNet aquí" -#: ../../addon/statusnet/statusnet.php:314 +#: ../../addon/statusnet/statusnet.php:319 msgid "Cancel Connection Process" msgstr "Cancel·lar el procés de connexió" -#: ../../addon/statusnet/statusnet.php:316 +#: ../../addon/statusnet/statusnet.php:321 msgid "Current StatusNet API is" msgstr "L'Actual StatusNet API és" -#: ../../addon/statusnet/statusnet.php:317 +#: ../../addon/statusnet/statusnet.php:322 msgid "Cancel StatusNet Connection" msgstr "Cancel·lar la connexió amb StatusNet" -#: ../../addon/statusnet/statusnet.php:328 ../../addon/twitter/twitter.php:184 +#: ../../addon/statusnet/statusnet.php:333 ../../addon/twitter/twitter.php:189 msgid "Currently connected to: " msgstr "Actualment connectat a: " -#: ../../addon/statusnet/statusnet.php:329 +#: ../../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 "Si està activat, tots els seus anuncis públics poden ser publicats en el compte StatusNet associat. Vostè pot optar per fer-ho per defecte (en aquest cas) o per cada missatge per separat en les opcions de comptabilització en escriure l'entrada." -#: ../../addon/statusnet/statusnet.php:331 +#: ../../addon/statusnet/statusnet.php:336 msgid "" "Note: Due your privacy settings (Hide your profile " "details from unknown viewers?) the link potentially included in public " @@ -4510,22 +6691,30 @@ msgid "" "informing the visitor that the access to your profile has been restricted." msgstr "Nota: A causa de les seves opcions de privacitat (Amaga els detalls del teu perfil dels espectadors desconeguts? ) el vincle potencialment inclòs en anuncis públics transmesos a StatusNet conduirà el visitant a una pàgina en blanc en la que informarà al visitants que l'accés al seu perfil s'ha restringit." -#: ../../addon/statusnet/statusnet.php:334 +#: ../../addon/statusnet/statusnet.php:339 msgid "Allow posting to StatusNet" msgstr "Permetre enviaments a StatusNet" -#: ../../addon/statusnet/statusnet.php:337 +#: ../../addon/statusnet/statusnet.php:342 msgid "Send public postings to StatusNet by default" msgstr "Enviar missatges públics a StatusNet per defecte" -#: ../../addon/statusnet/statusnet.php:342 ../../addon/twitter/twitter.php:198 +#: ../../addon/statusnet/statusnet.php:345 +msgid "Send linked #-tags and @-names to StatusNet" +msgstr "Enviar enllaços #-etiquetes i @-noms a StatusNet" + +#: ../../addon/statusnet/statusnet.php:350 ../../addon/twitter/twitter.php:206 msgid "Clear OAuth configuration" msgstr "Esborrar configuració de OAuth" -#: ../../addon/statusnet/statusnet.php:524 +#: ../../addon/statusnet/statusnet.php:568 msgid "API URL" msgstr "API URL" +#: ../../addon/infiniteimprobabilitydrive/infiniteimprobabilitydrive.php:19 +msgid "Infinite Improbability Drive" +msgstr "Infinite Improbability Drive" + #: ../../addon/tumblr/tumblr.php:36 msgid "Post to Tumblr" msgstr "Publica-ho al Tumblr" @@ -4558,10 +6747,6 @@ msgstr "Actualitzar la configuració de Numfriends." msgid "Numfriends Settings" msgstr "Configuració de Numfriends" -#: ../../addon/numfriends/numfriends.php:79 -msgid "How many contacts to display on profile sidebar" -msgstr "Quants contactes per mostrar a la barra lateral el perfil" - #: ../../addon/gnot/gnot.php:48 msgid "Gnot settings updated." msgstr "Configuració de Gnot actualitzada" @@ -4589,30 +6774,38 @@ msgstr "[Friendica: Notifica] Conversació comentada #%d" msgid "Post to Wordpress" msgstr "Publica-ho al Wordpress" -#: ../../addon/wppost/wppost.php:74 +#: ../../addon/wppost/wppost.php:76 msgid "WordPress Post Settings" msgstr "Configuració d'enviaments a WordPress" -#: ../../addon/wppost/wppost.php:76 +#: ../../addon/wppost/wppost.php:78 msgid "Enable WordPress Post Plugin" msgstr "Habilitar Configuració d'Enviaments a WordPress" -#: ../../addon/wppost/wppost.php:81 +#: ../../addon/wppost/wppost.php:83 msgid "WordPress username" msgstr "Nom d'usuari de WordPress" -#: ../../addon/wppost/wppost.php:86 +#: ../../addon/wppost/wppost.php:88 msgid "WordPress password" msgstr "Contrasenya de WordPress" -#: ../../addon/wppost/wppost.php:91 +#: ../../addon/wppost/wppost.php:93 msgid "WordPress API URL" msgstr "WordPress API URL" -#: ../../addon/wppost/wppost.php:96 +#: ../../addon/wppost/wppost.php:98 msgid "Post to WordPress by default" msgstr "Enviar a WordPress per defecte" +#: ../../addon/wppost/wppost.php:103 +msgid "Provide a backlink to the Friendica post" +msgstr "Proveeix un retroenllaç al missatge de Friendica" + +#: ../../addon/wppost/wppost.php:207 +msgid "Read the original post and comment stream on Friendica" +msgstr "Llegeix el missatge original i el flux de comentaris en Friendica" + #: ../../addon/showmore/showmore.php:38 msgid "\"Show more\" Settings" msgstr "Configuració de \"Mostrar més\"" @@ -4625,14 +6818,10 @@ msgstr "Habilita Mostrar Més" msgid "Cutting posts after how much characters" msgstr "Tallar els missatges després de quants caràcters" -#: ../../addon/showmore/showmore.php:64 +#: ../../addon/showmore/showmore.php:65 msgid "Show More Settings saved." msgstr "Guardada la configuració de \"Mostra Més\"." -#: ../../addon/showmore/showmore.php:86 -msgid "Show More" -msgstr "Mostra Més" - #: ../../addon/piwik/piwik.php:79 msgid "" "This website is tracked using the Piwik " @@ -4645,7 +6834,7 @@ 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 "Si no vol que les seves visites es transcribin d'aquesta manera vostè pot establir una cookie per evitar a Piwik a partir de noves visites del lloc web (opt-out)." +msgstr "Si no vol que les seves visites es registrin d'aquesta manera vostè pot establir una cookie per evitar a Piwik a partir de noves visites del lloc web (opt-out)." #: ../../addon/piwik/piwik.php:90 msgid "Piwik Base URL" @@ -4673,21 +6862,21 @@ msgstr "Seguiment asíncrono" msgid "Post to Twitter" msgstr "Publica-ho al Twitter" -#: ../../addon/twitter/twitter.php:119 +#: ../../addon/twitter/twitter.php:122 msgid "Twitter settings updated." msgstr "La configuració de Twitter actualitzada." -#: ../../addon/twitter/twitter.php:141 +#: ../../addon/twitter/twitter.php:146 msgid "Twitter Posting Settings" msgstr "Configuració d'Enviaments per a Twitter" -#: ../../addon/twitter/twitter.php:148 +#: ../../addon/twitter/twitter.php:153 msgid "" "No consumer key pair for Twitter found. Please contact your site " "administrator." msgstr "No s'ha pogut emparellar cap clau \"consumer key\" per a Twitter. Si us plau, poseu-vos en contacte amb l'administrador del lloc." -#: ../../addon/twitter/twitter.php:167 +#: ../../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 " @@ -4696,22 +6885,22 @@ msgid "" " be posted to Twitter." msgstr "En aquesta instància Friendica el plugin Twitter va ser habilitat, però encara no ha connectat el compte al seu compte de Twitter. Per a això feu clic al botó de sota per obtenir un PIN de Twitter que ha de copiar a la casella de sota i enviar el formulari. Només els missatges públics es publicaran a Twitter." -#: ../../addon/twitter/twitter.php:168 +#: ../../addon/twitter/twitter.php:173 msgid "Log in with Twitter" msgstr "Accedeixi com en Twitter" -#: ../../addon/twitter/twitter.php:170 +#: ../../addon/twitter/twitter.php:175 msgid "Copy the PIN from Twitter here" msgstr "Copieu el codi PIN de Twitter aquí" -#: ../../addon/twitter/twitter.php:185 +#: ../../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 "Si està activat, tots els seus anuncis públics poden ser publicats en el corresponent compte de Twitter. Vostè pot optar per fer-ho per defecte (en aquest cas) o per cada missatge per separat en les opcions de comptabilització en escriure l'entrada." -#: ../../addon/twitter/twitter.php:187 +#: ../../addon/twitter/twitter.php:192 msgid "" "Note: Due your privacy settings (Hide your profile " "details from unknown viewers?) the link potentially included in public " @@ -4719,69 +6908,338 @@ msgid "" "the visitor that the access to your profile has been restricted." msgstr "Nota: donada la seva configuració de privacitat ( Amaga els detalls del teu perfil dels espectadors desconeguts? ) el vincle potencialment inclòs en anuncis públics retransmesos a Twitter conduirà al visitant a una pàgina en blanc informar als visitants que l'accés al seu perfil s'ha restringit." -#: ../../addon/twitter/twitter.php:190 +#: ../../addon/twitter/twitter.php:195 msgid "Allow posting to Twitter" msgstr "Permetre anunci a Twitter" -#: ../../addon/twitter/twitter.php:193 +#: ../../addon/twitter/twitter.php:198 msgid "Send public postings to Twitter by default" msgstr "Enviar anuncis públics a Twitter per defecte" -#: ../../addon/twitter/twitter.php:357 +#: ../../addon/twitter/twitter.php:201 +msgid "Send linked #-tags and @-names to Twitter" +msgstr "Enviar enllaços #-etiquetes i @-noms a Twitter" + +#: ../../addon/twitter/twitter.php:396 msgid "Consumer key" msgstr "Consumer key" -#: ../../addon/twitter/twitter.php:358 +#: ../../addon/twitter/twitter.php:397 msgid "Consumer secret" msgstr "Consumer secret" -#: ../../addon/irc/irc.php:20 -msgid "irc Chatroom" -msgstr "irc Chatroom" +#: ../../addon/irc/irc.php:44 +msgid "IRC Settings" +msgstr "Ajustos de IRC" -#: ../../addon/posterous/posterous.php:36 +#: ../../addon/irc/irc.php:46 +msgid "Channel(s) to auto connect (comma separated)" +msgstr "Canal(s) per auto connectar (separats per comes)" + +#: ../../addon/irc/irc.php:51 +msgid "Popular Channels (comma separated)" +msgstr "Canals Populars (separats per comes)" + +#: ../../addon/irc/irc.php:69 +msgid "IRC settings saved." +msgstr "Ajustos del IRC guardats." + +#: ../../addon/irc/irc.php:74 +msgid "IRC Chatroom" +msgstr "IRC Chatroom" + +#: ../../addon/irc/irc.php:96 +msgid "Popular Channels" +msgstr "Canals Populars" + +#: ../../addon/fromapp/fromapp.php:38 +msgid "Fromapp settings updated." +msgstr "" + +#: ../../addon/fromapp/fromapp.php:64 +msgid "FromApp Settings" +msgstr "" + +#: ../../addon/fromapp/fromapp.php:66 +msgid "" +"The application name you would like to show your posts originating from." +msgstr "" + +#: ../../addon/fromapp/fromapp.php:70 +msgid "Use this application name even if another application was used." +msgstr "" + +#: ../../addon/blogger/blogger.php:42 +msgid "Post to blogger" +msgstr "Enviament a blogger" + +#: ../../addon/blogger/blogger.php:74 +msgid "Blogger Post Settings" +msgstr "Ajustos d'enviament a blogger" + +#: ../../addon/blogger/blogger.php:76 +msgid "Enable Blogger Post Plugin" +msgstr "Habilita el Plugin d'Enviaments a Blogger" + +#: ../../addon/blogger/blogger.php:81 +msgid "Blogger username" +msgstr "Nom d'usuari a blogger" + +#: ../../addon/blogger/blogger.php:86 +msgid "Blogger password" +msgstr "Contrasenya a blogger" + +#: ../../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 "Enviament a Blogger per defecte" + +#: ../../addon/posterous/posterous.php:37 msgid "Post to Posterous" msgstr "enviament a Posterous" -#: ../../addon/posterous/posterous.php:67 +#: ../../addon/posterous/posterous.php:70 msgid "Posterous Post Settings" msgstr "Configuració d'Enviaments a Posterous" -#: ../../addon/posterous/posterous.php:69 +#: ../../addon/posterous/posterous.php:72 msgid "Enable Posterous Post Plugin" msgstr "Habilitar plugin d'Enviament de Posterous" -#: ../../addon/posterous/posterous.php:74 +#: ../../addon/posterous/posterous.php:77 msgid "Posterous login" msgstr "Inici de sessió a Posterous" -#: ../../addon/posterous/posterous.php:79 +#: ../../addon/posterous/posterous.php:82 msgid "Posterous password" msgstr "Contrasenya a Posterous" -#: ../../addon/posterous/posterous.php:84 +#: ../../addon/posterous/posterous.php:87 +msgid "Posterous site ID" +msgstr "ID al lloc Posterous" + +#: ../../addon/posterous/posterous.php:92 +msgid "Posterous API token" +msgstr "Posterous API token" + +#: ../../addon/posterous/posterous.php:97 msgid "Post to Posterous by default" msgstr "Enviar a Posterous per defecte" -#: ../../view/theme/quattro/theme.php:17 +#: ../../view/theme/cleanzero/config.php:82 +#: ../../view/theme/diabook/config.php:192 +#: ../../view/theme/quattro/config.php:55 ../../view/theme/dispy/config.php:72 msgid "Theme settings" msgstr "Configuració de Temes" -#: ../../view/theme/quattro/theme.php:18 +#: ../../view/theme/cleanzero/config.php:83 +msgid "Set resize level for images in posts and comments (width and height)" +msgstr "Ajusteu el nivell de canvi de mida d'imatges en els missatges i comentaris ( amplada i alçada" + +#: ../../view/theme/cleanzero/config.php:84 +#: ../../view/theme/diabook/config.php:193 +#: ../../view/theme/dispy/config.php:73 +msgid "Set font-size for posts and comments" +msgstr "Canvia la mida del tipus de lletra per enviaments i comentaris" + +#: ../../view/theme/cleanzero/config.php:85 +msgid "Set theme width" +msgstr "Ajustar l'ample del tema" + +#: ../../view/theme/cleanzero/config.php:86 +#: ../../view/theme/quattro/config.php:57 +msgid "Color scheme" +msgstr "Esquema de colors" + +#: ../../view/theme/diabook/theme.php:127 ../../include/nav.php:49 +#: ../../include/nav.php:115 +msgid "Your posts and conversations" +msgstr "Els teus anuncis i converses" + +#: ../../view/theme/diabook/theme.php:128 ../../include/nav.php:50 +msgid "Your profile page" +msgstr "La seva pàgina de perfil" + +#: ../../view/theme/diabook/theme.php:129 +msgid "Your contacts" +msgstr "Els teus contactes" + +#: ../../view/theme/diabook/theme.php:130 ../../include/nav.php:51 +msgid "Your photos" +msgstr "Les seves fotos" + +#: ../../view/theme/diabook/theme.php:131 ../../include/nav.php:52 +msgid "Your events" +msgstr "Els seus esdeveniments" + +#: ../../view/theme/diabook/theme.php:132 ../../include/nav.php:53 +msgid "Personal notes" +msgstr "Notes personals" + +#: ../../view/theme/diabook/theme.php:132 ../../include/nav.php:53 +msgid "Your personal photos" +msgstr "Les seves fotos personals" + +#: ../../view/theme/diabook/theme.php:134 +#: ../../view/theme/diabook/theme.php:643 +#: ../../view/theme/diabook/theme.php:747 +#: ../../view/theme/diabook/config.php:201 +msgid "Community Pages" +msgstr "Pàgines de la Comunitat" + +#: ../../view/theme/diabook/theme.php:490 +#: ../../view/theme/diabook/theme.php:749 +#: ../../view/theme/diabook/config.php:203 +msgid "Community Profiles" +msgstr "Perfils de Comunitat" + +#: ../../view/theme/diabook/theme.php:511 +#: ../../view/theme/diabook/theme.php:754 +#: ../../view/theme/diabook/config.php:208 +msgid "Last users" +msgstr "Últims usuaris" + +#: ../../view/theme/diabook/theme.php:540 +#: ../../view/theme/diabook/theme.php:756 +#: ../../view/theme/diabook/config.php:210 +msgid "Last likes" +msgstr "Últims \"m'agrada\"" + +#: ../../view/theme/diabook/theme.php:585 +#: ../../view/theme/diabook/theme.php:755 +#: ../../view/theme/diabook/config.php:209 +msgid "Last photos" +msgstr "Últimes fotos" + +#: ../../view/theme/diabook/theme.php:622 +#: ../../view/theme/diabook/theme.php:752 +#: ../../view/theme/diabook/config.php:206 +msgid "Find Friends" +msgstr "Trobar Amistats" + +#: ../../view/theme/diabook/theme.php:623 +msgid "Local Directory" +msgstr "Directori Local" + +#: ../../view/theme/diabook/theme.php:625 ../../include/contact_widgets.php:35 +msgid "Similar Interests" +msgstr "Aficions Similars" + +#: ../../view/theme/diabook/theme.php:627 ../../include/contact_widgets.php:37 +msgid "Invite Friends" +msgstr "Invita Amics" + +#: ../../view/theme/diabook/theme.php:678 +#: ../../view/theme/diabook/theme.php:748 +#: ../../view/theme/diabook/config.php:202 +msgid "Earth Layers" +msgstr "Earth Layers" + +#: ../../view/theme/diabook/theme.php:683 +msgid "Set zoomfactor for Earth Layers" +msgstr "Ajustar el factor de zoom per Earth Layers" + +#: ../../view/theme/diabook/theme.php:684 +#: ../../view/theme/diabook/config.php:199 +msgid "Set longitude (X) for Earth Layers" +msgstr "Ajustar longitud (X) per Earth Layers" + +#: ../../view/theme/diabook/theme.php:685 +#: ../../view/theme/diabook/config.php:200 +msgid "Set latitude (Y) for Earth Layers" +msgstr "Ajustar latitud (Y) per Earth Layers" + +#: ../../view/theme/diabook/theme.php:698 +#: ../../view/theme/diabook/theme.php:750 +#: ../../view/theme/diabook/config.php:204 +msgid "Help or @NewHere ?" +msgstr "Ajuda o @NouAqui?" + +#: ../../view/theme/diabook/theme.php:705 +#: ../../view/theme/diabook/theme.php:751 +#: ../../view/theme/diabook/config.php:205 +msgid "Connect Services" +msgstr "Serveis Connectats" + +#: ../../view/theme/diabook/theme.php:712 +#: ../../view/theme/diabook/theme.php:753 +msgid "Last Tweets" +msgstr "Últims Tweets" + +#: ../../view/theme/diabook/theme.php:715 +#: ../../view/theme/diabook/config.php:197 +msgid "Set twitter search term" +msgstr "Ajustar el terme de cerca de twitter" + +#: ../../view/theme/diabook/theme.php:735 +#: ../../view/theme/diabook/theme.php:736 +#: ../../view/theme/diabook/theme.php:737 +#: ../../view/theme/diabook/theme.php:738 +#: ../../view/theme/diabook/theme.php:739 +#: ../../view/theme/diabook/theme.php:740 +#: ../../view/theme/diabook/theme.php:741 +#: ../../view/theme/diabook/theme.php:742 +#: ../../view/theme/diabook/theme.php:743 +#: ../../view/theme/diabook/theme.php:744 ../../include/acl_selectors.php:288 +msgid "don't show" +msgstr "no mostris" + +#: ../../view/theme/diabook/theme.php:735 +#: ../../view/theme/diabook/theme.php:736 +#: ../../view/theme/diabook/theme.php:737 +#: ../../view/theme/diabook/theme.php:738 +#: ../../view/theme/diabook/theme.php:739 +#: ../../view/theme/diabook/theme.php:740 +#: ../../view/theme/diabook/theme.php:741 +#: ../../view/theme/diabook/theme.php:742 +#: ../../view/theme/diabook/theme.php:743 +#: ../../view/theme/diabook/theme.php:744 ../../include/acl_selectors.php:287 +msgid "show" +msgstr "mostra" + +#: ../../view/theme/diabook/theme.php:745 +msgid "Show/hide boxes at right-hand column:" +msgstr "Mostra/amaga els marcs de la columna a ma dreta" + +#: ../../view/theme/diabook/config.php:194 +#: ../../view/theme/dispy/config.php:74 +msgid "Set line-height for posts and comments" +msgstr "Canvia l'espaiat de línia per enviaments i comentaris" + +#: ../../view/theme/diabook/config.php:195 +msgid "Set resolution for middle column" +msgstr "canvia la resolució per a la columna central" + +#: ../../view/theme/diabook/config.php:196 +msgid "Set color scheme" +msgstr "Canvia l'esquema de color" + +#: ../../view/theme/diabook/config.php:198 +msgid "Set zoomfactor for Earth Layer" +msgstr "Ajustar el factor de zoom de Earth Layers" + +#: ../../view/theme/diabook/config.php:207 +msgid "Last tweets" +msgstr "Últims tweets" + +#: ../../view/theme/quattro/config.php:56 msgid "Alignment" msgstr "Adaptació" -#: ../../view/theme/quattro/theme.php:18 +#: ../../view/theme/quattro/config.php:56 msgid "Left" msgstr "Esquerra" -#: ../../view/theme/quattro/theme.php:18 +#: ../../view/theme/quattro/config.php:56 msgid "Center" msgstr "Centre" -#: ../../include/profile_advanced.php:17 ../../boot.php:982 -msgid "Gender:" -msgstr "Gènere:" +#: ../../view/theme/dispy/config.php:75 +msgid "Set colour scheme" +msgstr "Establir l'esquema de color" #: ../../include/profile_advanced.php:22 msgid "j F, Y" @@ -4791,8 +7249,7 @@ msgstr "j F, Y" msgid "j F" msgstr "j F" -#: ../../include/profile_advanced.php:30 ../../include/datetime.php:438 -#: ../../include/items.php:1349 +#: ../../include/profile_advanced.php:30 msgid "Birthday:" msgstr "Aniversari:" @@ -4800,59 +7257,52 @@ msgstr "Aniversari:" msgid "Age:" msgstr "Edat:" -#: ../../include/profile_advanced.php:37 ../../boot.php:985 -msgid "Status:" -msgstr "Estatus:" +#: ../../include/profile_advanced.php:43 +#, php-format +msgid "for %1$d %2$s" +msgstr "per a %1$d %2$s" -#: ../../include/profile_advanced.php:45 ../../boot.php:987 -msgid "Homepage:" -msgstr "Pàgina web:" - -#: ../../include/profile_advanced.php:47 +#: ../../include/profile_advanced.php:52 msgid "Tags:" msgstr "Etiquetes:" -#: ../../include/profile_advanced.php:51 +#: ../../include/profile_advanced.php:56 msgid "Religion:" msgstr "Religió:" -#: ../../include/profile_advanced.php:53 -msgid "About:" -msgstr "Acerca de:" - -#: ../../include/profile_advanced.php:55 +#: ../../include/profile_advanced.php:60 msgid "Hobbies/Interests:" msgstr "Aficiones/Intereses:" -#: ../../include/profile_advanced.php:57 +#: ../../include/profile_advanced.php:67 msgid "Contact information and Social Networks:" msgstr "Informació de contacte i Xarxes Socials:" -#: ../../include/profile_advanced.php:59 +#: ../../include/profile_advanced.php:69 msgid "Musical interests:" msgstr "Gustos musicals:" -#: ../../include/profile_advanced.php:61 +#: ../../include/profile_advanced.php:71 msgid "Books, literature:" msgstr "Llibres, literatura:" -#: ../../include/profile_advanced.php:63 +#: ../../include/profile_advanced.php:73 msgid "Television:" msgstr "Televisió:" -#: ../../include/profile_advanced.php:65 +#: ../../include/profile_advanced.php:75 msgid "Film/dance/culture/entertainment:" msgstr "Cinema/ball/cultura/entreteniments:" -#: ../../include/profile_advanced.php:67 +#: ../../include/profile_advanced.php:77 msgid "Love/Romance:" msgstr "Amor/sentiments:" -#: ../../include/profile_advanced.php:69 +#: ../../include/profile_advanced.php:79 msgid "Work/employment:" msgstr "Treball/ocupació:" -#: ../../include/profile_advanced.php:71 +#: ../../include/profile_advanced.php:81 msgid "School/education:" msgstr "Escola/formació" @@ -4866,7 +7316,7 @@ msgstr "Bloquejar immediatament" #: ../../include/contact_selectors.php:34 msgid "Shady, spammer, self-marketer" -msgstr "Sospitós, Femater, auto-publicitat" +msgstr "Sospitós, Spam, auto-publicitat" #: ../../include/contact_selectors.php:35 msgid "Known to me, but no opinion" @@ -4892,18 +7342,6 @@ msgstr "Cada hora" msgid "Twice daily" msgstr "Dues vegades al dia" -#: ../../include/contact_selectors.php:59 -msgid "Daily" -msgstr "Diari" - -#: ../../include/contact_selectors.php:60 -msgid "Weekly" -msgstr "Setmanal" - -#: ../../include/contact_selectors.php:61 -msgid "Monthly" -msgstr "Mensual" - #: ../../include/contact_selectors.php:77 msgid "OStatus" msgstr "OStatus" @@ -4984,332 +7422,455 @@ msgstr "Altres" msgid "Undecided" msgstr "No Decidit" -#: ../../include/profile_selectors.php:19 +#: ../../include/profile_selectors.php:23 msgid "Males" msgstr "Home" -#: ../../include/profile_selectors.php:19 +#: ../../include/profile_selectors.php:23 msgid "Females" msgstr "Dona" -#: ../../include/profile_selectors.php:19 +#: ../../include/profile_selectors.php:23 msgid "Gay" msgstr "Gay" -#: ../../include/profile_selectors.php:19 +#: ../../include/profile_selectors.php:23 msgid "Lesbian" msgstr "Lesbiana" -#: ../../include/profile_selectors.php:19 +#: ../../include/profile_selectors.php:23 msgid "No Preference" msgstr "Sense Preferències" -#: ../../include/profile_selectors.php:19 +#: ../../include/profile_selectors.php:23 msgid "Bisexual" msgstr "Bisexual" -#: ../../include/profile_selectors.php:19 +#: ../../include/profile_selectors.php:23 msgid "Autosexual" msgstr "Autosexual" -#: ../../include/profile_selectors.php:19 +#: ../../include/profile_selectors.php:23 msgid "Abstinent" msgstr "Abstinent/a" -#: ../../include/profile_selectors.php:19 +#: ../../include/profile_selectors.php:23 msgid "Virgin" msgstr "Verge" -#: ../../include/profile_selectors.php:19 +#: ../../include/profile_selectors.php:23 msgid "Deviant" msgstr "Desviat/da" -#: ../../include/profile_selectors.php:19 +#: ../../include/profile_selectors.php:23 msgid "Fetish" msgstr "Fetixiste" -#: ../../include/profile_selectors.php:19 +#: ../../include/profile_selectors.php:23 msgid "Oodles" msgstr "Orgies" -#: ../../include/profile_selectors.php:19 +#: ../../include/profile_selectors.php:23 msgid "Nonsexual" msgstr "Asexual" -#: ../../include/profile_selectors.php:33 +#: ../../include/profile_selectors.php:42 msgid "Single" msgstr "Solter/a" -#: ../../include/profile_selectors.php:33 +#: ../../include/profile_selectors.php:42 msgid "Lonely" msgstr "Solitari" -#: ../../include/profile_selectors.php:33 +#: ../../include/profile_selectors.php:42 msgid "Available" msgstr "Disponible" -#: ../../include/profile_selectors.php:33 +#: ../../include/profile_selectors.php:42 msgid "Unavailable" msgstr "No Disponible" -#: ../../include/profile_selectors.php:33 +#: ../../include/profile_selectors.php:42 +msgid "Has crush" +msgstr "Compromés" + +#: ../../include/profile_selectors.php:42 +msgid "Infatuated" +msgstr "Enamorat" + +#: ../../include/profile_selectors.php:42 msgid "Dating" msgstr "De cites" -#: ../../include/profile_selectors.php:33 +#: ../../include/profile_selectors.php:42 msgid "Unfaithful" msgstr "Infidel" -#: ../../include/profile_selectors.php:33 +#: ../../include/profile_selectors.php:42 msgid "Sex Addict" msgstr "Adicte al sexe" -#: ../../include/profile_selectors.php:33 +#: ../../include/profile_selectors.php:42 ../../include/user.php:278 +#: ../../include/user.php:282 msgid "Friends" msgstr "Amics/Amigues" -#: ../../include/profile_selectors.php:33 +#: ../../include/profile_selectors.php:42 msgid "Friends/Benefits" msgstr "Amics íntims" -#: ../../include/profile_selectors.php:33 +#: ../../include/profile_selectors.php:42 msgid "Casual" msgstr "Oportunista" -#: ../../include/profile_selectors.php:33 +#: ../../include/profile_selectors.php:42 msgid "Engaged" msgstr "Promès" -#: ../../include/profile_selectors.php:33 +#: ../../include/profile_selectors.php:42 msgid "Married" msgstr "Casat" -#: ../../include/profile_selectors.php:33 +#: ../../include/profile_selectors.php:42 +msgid "Imaginarily married" +msgstr "Matrimoni imaginari" + +#: ../../include/profile_selectors.php:42 msgid "Partners" msgstr "Socis" -#: ../../include/profile_selectors.php:33 +#: ../../include/profile_selectors.php:42 msgid "Cohabiting" msgstr "Cohabitant" -#: ../../include/profile_selectors.php:33 +#: ../../include/profile_selectors.php:42 +msgid "Common law" +msgstr "Segons costums" + +#: ../../include/profile_selectors.php:42 msgid "Happy" msgstr "Feliç" -#: ../../include/profile_selectors.php:33 -msgid "Not Looking" -msgstr "No Cerco" +#: ../../include/profile_selectors.php:42 +msgid "Not looking" +msgstr "No cerco" -#: ../../include/profile_selectors.php:33 +#: ../../include/profile_selectors.php:42 msgid "Swinger" msgstr "Parella Liberal" -#: ../../include/profile_selectors.php:33 +#: ../../include/profile_selectors.php:42 msgid "Betrayed" msgstr "Traït/da" -#: ../../include/profile_selectors.php:33 +#: ../../include/profile_selectors.php:42 msgid "Separated" msgstr "Separat/da" -#: ../../include/profile_selectors.php:33 +#: ../../include/profile_selectors.php:42 msgid "Unstable" msgstr "Inestable" -#: ../../include/profile_selectors.php:33 +#: ../../include/profile_selectors.php:42 msgid "Divorced" msgstr "Divorciat/da" -#: ../../include/profile_selectors.php:33 +#: ../../include/profile_selectors.php:42 +msgid "Imaginarily divorced" +msgstr "Divorci imaginari" + +#: ../../include/profile_selectors.php:42 msgid "Widowed" msgstr "Vidu/a" -#: ../../include/profile_selectors.php:33 +#: ../../include/profile_selectors.php:42 msgid "Uncertain" msgstr "Incert" -#: ../../include/profile_selectors.php:33 -msgid "Complicated" -msgstr "Complicat" +#: ../../include/profile_selectors.php:42 +msgid "It's complicated" +msgstr "Es complicat" -#: ../../include/profile_selectors.php:33 +#: ../../include/profile_selectors.php:42 msgid "Don't care" msgstr "No t'interessa" -#: ../../include/profile_selectors.php:33 +#: ../../include/profile_selectors.php:42 msgid "Ask me" msgstr "Pregunta'm" -#: ../../include/event.php:17 ../../include/bb2diaspora.php:244 +#: ../../include/event.php:20 ../../include/bb2diaspora.php:396 msgid "Starts:" msgstr "Inici:" -#: ../../include/event.php:27 ../../include/bb2diaspora.php:252 +#: ../../include/event.php:30 ../../include/bb2diaspora.php:404 msgid "Finishes:" msgstr "Acaba:" -#: ../../include/delivery.php:425 ../../include/notifier.php:638 +#: ../../include/delivery.php:457 ../../include/notifier.php:703 msgid "(no subject)" msgstr "(sense assumpte)" -#: ../../include/delivery.php:432 ../../include/enotify.php:17 -#: ../../include/notifier.php:645 -msgid "noreply" -msgstr "no contestar" +#: ../../include/Scrape.php:576 +msgid " on Last.fm" +msgstr " a Last.fm" -#: ../../include/text.php:238 +#: ../../include/text.php:243 msgid "prev" msgstr "Prev" -#: ../../include/text.php:240 +#: ../../include/text.php:245 msgid "first" -msgstr "primer" +msgstr "Primer" -#: ../../include/text.php:269 +#: ../../include/text.php:274 msgid "last" msgstr "Últim" -#: ../../include/text.php:272 +#: ../../include/text.php:277 msgid "next" -msgstr "Proper" +msgstr "següent" -#: ../../include/text.php:563 +#: ../../include/text.php:295 +msgid "newer" +msgstr "Més nou" + +#: ../../include/text.php:299 +msgid "older" +msgstr "més vell" + +#: ../../include/text.php:597 msgid "No contacts" msgstr "Sense contactes" -#: ../../include/text.php:572 +#: ../../include/text.php:606 #, php-format msgid "%d Contact" msgid_plural "%d Contacts" msgstr[0] "%d Contacte" msgstr[1] "%d Contactes" -#: ../../include/text.php:643 ../../include/nav.php:87 -msgid "Search" -msgstr "Cercar" +#: ../../include/text.php:719 +msgid "poke" +msgstr "" -#: ../../include/text.php:831 -msgid "Monday" -msgstr "Dilluns" +#: ../../include/text.php:719 ../../include/conversation.php:210 +msgid "poked" +msgstr "" -#: ../../include/text.php:831 -msgid "Tuesday" -msgstr "Dimarts" +#: ../../include/text.php:720 +msgid "ping" +msgstr "" -#: ../../include/text.php:831 -msgid "Wednesday" -msgstr "Dimecres" +#: ../../include/text.php:720 +msgid "pinged" +msgstr "" -#: ../../include/text.php:831 -msgid "Thursday" -msgstr "Dijous" +#: ../../include/text.php:721 +msgid "prod" +msgstr "" -#: ../../include/text.php:831 -msgid "Friday" -msgstr "Divendres" +#: ../../include/text.php:721 +msgid "prodded" +msgstr "" -#: ../../include/text.php:831 -msgid "Saturday" -msgstr "Dissabte" +#: ../../include/text.php:722 +msgid "slap" +msgstr "" -#: ../../include/text.php:831 -msgid "Sunday" -msgstr "Diumenge" +#: ../../include/text.php:722 +msgid "slapped" +msgstr "" -#: ../../include/text.php:835 +#: ../../include/text.php:723 +msgid "finger" +msgstr "dit" + +#: ../../include/text.php:723 +msgid "fingered" +msgstr "" + +#: ../../include/text.php:724 +msgid "rebuff" +msgstr "" + +#: ../../include/text.php:724 +msgid "rebuffed" +msgstr "" + +#: ../../include/text.php:736 +msgid "happy" +msgstr "" + +#: ../../include/text.php:737 +msgid "sad" +msgstr "" + +#: ../../include/text.php:738 +msgid "mellow" +msgstr "" + +#: ../../include/text.php:739 +msgid "tired" +msgstr "" + +#: ../../include/text.php:740 +msgid "perky" +msgstr "" + +#: ../../include/text.php:741 +msgid "angry" +msgstr "" + +#: ../../include/text.php:742 +msgid "stupified" +msgstr "" + +#: ../../include/text.php:743 +msgid "puzzled" +msgstr "" + +#: ../../include/text.php:744 +msgid "interested" +msgstr "" + +#: ../../include/text.php:745 +msgid "bitter" +msgstr "" + +#: ../../include/text.php:746 +msgid "cheerful" +msgstr "" + +#: ../../include/text.php:747 +msgid "alive" +msgstr "" + +#: ../../include/text.php:748 +msgid "annoyed" +msgstr "" + +#: ../../include/text.php:749 +msgid "anxious" +msgstr "" + +#: ../../include/text.php:750 +msgid "cranky" +msgstr "" + +#: ../../include/text.php:751 +msgid "disturbed" +msgstr "" + +#: ../../include/text.php:752 +msgid "frustrated" +msgstr "" + +#: ../../include/text.php:753 +msgid "motivated" +msgstr "" + +#: ../../include/text.php:754 +msgid "relaxed" +msgstr "" + +#: ../../include/text.php:755 +msgid "surprised" +msgstr "" + +#: ../../include/text.php:921 msgid "January" msgstr "Gener" -#: ../../include/text.php:835 +#: ../../include/text.php:921 msgid "February" msgstr "Febrer" -#: ../../include/text.php:835 +#: ../../include/text.php:921 msgid "March" msgstr "Març" -#: ../../include/text.php:835 +#: ../../include/text.php:921 msgid "April" msgstr "Abril" -#: ../../include/text.php:835 +#: ../../include/text.php:921 msgid "May" msgstr "Maig" -#: ../../include/text.php:835 +#: ../../include/text.php:921 msgid "June" msgstr "Juny" -#: ../../include/text.php:835 +#: ../../include/text.php:921 msgid "July" msgstr "Juliol" -#: ../../include/text.php:835 +#: ../../include/text.php:921 msgid "August" msgstr "Agost" -#: ../../include/text.php:835 +#: ../../include/text.php:921 msgid "September" msgstr "Setembre" -#: ../../include/text.php:835 +#: ../../include/text.php:921 msgid "October" msgstr "Octubre" -#: ../../include/text.php:835 +#: ../../include/text.php:921 msgid "November" msgstr "Novembre" -#: ../../include/text.php:835 +#: ../../include/text.php:921 msgid "December" msgstr "Desembre" -#: ../../include/text.php:905 +#: ../../include/text.php:1007 msgid "bytes" msgstr "bytes" -#: ../../include/text.php:1000 -msgid "Select an alternate language" -msgstr "Sel·lecciona un idioma alternatiu" +#: ../../include/text.php:1034 ../../include/text.php:1046 +msgid "Click to open/close" +msgstr "Clicar per a obrir/tancar" -#: ../../include/text.php:1012 +#: ../../include/text.php:1219 ../../include/user.php:236 msgid "default" msgstr "per defecte" -#: ../../include/text.php:1228 +#: ../../include/text.php:1231 +msgid "Select an alternate language" +msgstr "Sel·lecciona un idioma alternatiu" + +#: ../../include/text.php:1441 msgid "activity" msgstr "activitat" -#: ../../include/text.php:1230 -msgid "comment" -msgstr "comentari" - -#: ../../include/text.php:1231 +#: ../../include/text.php:1444 msgid "post" msgstr "missatge" -#: ../../include/diaspora.php:570 +#: ../../include/text.php:1599 +msgid "Item filed" +msgstr "Element arxivat" + +#: ../../include/diaspora.php:691 msgid "Sharing notification from Diaspora network" msgstr "Compartint la notificació de la xarxa Diàspora" -#: ../../include/diaspora.php:1911 +#: ../../include/diaspora.php:2211 msgid "Attachments:" msgstr "Adjunts:" -#: ../../include/diaspora.php:2094 -#, php-format -msgid "[Relayed] Comment authored by %s from network %s" -msgstr "[Retransmès] Comentari escrit per %s des de la xarxa %s" - -#: ../../include/network.php:814 +#: ../../include/network.php:849 msgid "view full size" msgstr "Veure a mida completa" -#: ../../include/oembed.php:128 +#: ../../include/oembed.php:137 msgid "Embedded content" msgstr "Contingut incrustat" -#: ../../include/oembed.php:137 +#: ../../include/oembed.php:146 msgid "Embedding disabled" msgstr "Incrustacions deshabilitades" @@ -5320,155 +7881,135 @@ msgid "" "not what you intended, please create another group with a different name." msgstr "Un grup eliminat amb aquest nom va ser restablert. Els permisos dels elements existents poden aplicar-se a aquest grup i tots els futurs membres. Si això no és el que pretén, si us plau, crei un altre grup amb un nom diferent." -#: ../../include/group.php:168 +#: ../../include/group.php:176 +msgid "Default privacy group for new contacts" +msgstr "Privacitat per defecte per a nous contactes" + +#: ../../include/group.php:195 msgid "Everybody" msgstr "Tothom" -#: ../../include/group.php:191 +#: ../../include/group.php:218 msgid "edit" msgstr "editar" -#: ../../include/group.php:212 -msgid "Groups" -msgstr "Grups" - -#: ../../include/group.php:213 +#: ../../include/group.php:240 msgid "Edit group" msgstr "Editar grup" -#: ../../include/group.php:214 +#: ../../include/group.php:241 msgid "Create a new group" msgstr "Crear un nou grup" -#: ../../include/nav.php:44 ../../boot.php:709 +#: ../../include/group.php:242 +msgid "Contacts not in any group" +msgstr "Contactes en cap grup" + +#: ../../include/nav.php:46 ../../boot.php:911 msgid "Logout" msgstr "Sortir" -#: ../../include/nav.php:44 +#: ../../include/nav.php:46 msgid "End this session" msgstr "Termina sessió" -#: ../../include/nav.php:47 ../../boot.php:1331 +#: ../../include/nav.php:49 ../../boot.php:1665 msgid "Status" msgstr "Estatus" -#: ../../include/nav.php:47 ../../include/nav.php:111 -msgid "Your posts and conversations" -msgstr "Els teus anuncis i converses" - -#: ../../include/nav.php:48 -msgid "Your profile page" -msgstr "La seva pàgina de perfil" - -#: ../../include/nav.php:49 ../../boot.php:1341 -msgid "Photos" -msgstr "Fotos" - -#: ../../include/nav.php:49 -msgid "Your photos" -msgstr "Les seves fotos" - -#: ../../include/nav.php:50 -msgid "Your events" -msgstr "Els seus esdeveniments" - -#: ../../include/nav.php:51 -msgid "Personal notes" -msgstr "Notes personals" - -#: ../../include/nav.php:51 -msgid "Your personal photos" -msgstr "Les seves fotos personals" - -#: ../../include/nav.php:62 +#: ../../include/nav.php:64 msgid "Sign in" msgstr "Accedeix" -#: ../../include/nav.php:73 +#: ../../include/nav.php:77 msgid "Home Page" msgstr "Pàgina d'Inici" -#: ../../include/nav.php:77 +#: ../../include/nav.php:81 msgid "Create an account" msgstr "Crear un compte" -#: ../../include/nav.php:82 +#: ../../include/nav.php:86 msgid "Help and documentation" msgstr "Ajuda i documentació" -#: ../../include/nav.php:85 +#: ../../include/nav.php:89 msgid "Apps" msgstr "Aplicacions" -#: ../../include/nav.php:85 +#: ../../include/nav.php:89 msgid "Addon applications, utilities, games" msgstr "Afegits: aplicacions, utilitats, jocs" -#: ../../include/nav.php:87 +#: ../../include/nav.php:91 msgid "Search site content" msgstr "Busca contingut en el lloc" -#: ../../include/nav.php:97 +#: ../../include/nav.php:101 msgid "Conversations on this site" msgstr "Converses en aquest lloc" -#: ../../include/nav.php:99 +#: ../../include/nav.php:103 msgid "Directory" msgstr "Directori" -#: ../../include/nav.php:99 +#: ../../include/nav.php:103 msgid "People directory" msgstr "Directori de gent" -#: ../../include/nav.php:109 +#: ../../include/nav.php:113 msgid "Conversations from your friends" msgstr "Converses dels teus amics" -#: ../../include/nav.php:117 +#: ../../include/nav.php:121 msgid "Friend Requests" msgstr "Sol·licitud d'Amistat" -#: ../../include/nav.php:119 +#: ../../include/nav.php:123 msgid "See all notifications" msgstr "Veure totes les notificacions" -#: ../../include/nav.php:120 +#: ../../include/nav.php:124 msgid "Mark all system notifications seen" msgstr "Marcar totes les notificacions del sistema com a vistes" -#: ../../include/nav.php:124 +#: ../../include/nav.php:128 msgid "Private mail" msgstr "Correu privat" -#: ../../include/nav.php:127 +#: ../../include/nav.php:129 +msgid "Inbox" +msgstr "Safata d'entrada" + +#: ../../include/nav.php:130 +msgid "Outbox" +msgstr "Safata de sortida" + +#: ../../include/nav.php:134 msgid "Manage" msgstr "Gestionar" -#: ../../include/nav.php:127 +#: ../../include/nav.php:134 msgid "Manage other pages" msgstr "Gestiona altres pàgines" -#: ../../include/nav.php:131 ../../boot.php:940 +#: ../../include/nav.php:138 ../../boot.php:1186 msgid "Profiles" msgstr "Perfils" -#: ../../include/nav.php:131 ../../boot.php:940 +#: ../../include/nav.php:138 ../../boot.php:1186 msgid "Manage/edit profiles" msgstr "Gestiona/edita perfils" -#: ../../include/nav.php:132 +#: ../../include/nav.php:139 msgid "Manage/edit friends and contacts" msgstr "Gestiona/edita amics i contactes" -#: ../../include/nav.php:139 -msgid "Admin" -msgstr "Admin" - -#: ../../include/nav.php:139 +#: ../../include/nav.php:146 msgid "Site setup and configuration" msgstr "Ajustos i configuració del lloc" -#: ../../include/nav.php:162 +#: ../../include/nav.php:170 msgid "Nothing new here" msgstr "Res nou aquí" @@ -5484,36 +8025,32 @@ msgstr "Introdueixi adreça o ubicació web" msgid "Example: bob@example.com, http://example.com/barbara" msgstr "Exemple: bob@example.com, http://example.com/barbara" -#: ../../include/contact_widgets.php:18 -msgid "Invite Friends" -msgstr "Invita Amics" - -#: ../../include/contact_widgets.php:24 +#: ../../include/contact_widgets.php:23 #, php-format msgid "%d invitation available" msgid_plural "%d invitations available" msgstr[0] "%d invitació disponible" msgstr[1] "%d invitacions disponibles" -#: ../../include/contact_widgets.php:30 +#: ../../include/contact_widgets.php:29 msgid "Find People" msgstr "Trobar Gent" -#: ../../include/contact_widgets.php:31 +#: ../../include/contact_widgets.php:30 msgid "Enter name or interest" msgstr "Introdueixi nom o aficions" -#: ../../include/contact_widgets.php:32 +#: ../../include/contact_widgets.php:31 msgid "Connect/Follow" msgstr "Connectar/Seguir" -#: ../../include/contact_widgets.php:33 +#: ../../include/contact_widgets.php:32 msgid "Examples: Robert Morgenstein, Fishing" msgstr "Exemples: Robert Morgenstein, Pescar" #: ../../include/contact_widgets.php:36 -msgid "Similar Interests" -msgstr "Aficions Similars" +msgid "Random Profile" +msgstr "Perfi Aleatori" #: ../../include/contact_widgets.php:68 msgid "Networks" @@ -5523,605 +8060,739 @@ msgstr "Xarxes" msgid "All Networks" msgstr "totes les Xarxes" -#: ../../include/auth.php:29 +#: ../../include/contact_widgets.php:98 +msgid "Saved Folders" +msgstr "Carpetes Guardades" + +#: ../../include/contact_widgets.php:101 ../../include/contact_widgets.php:129 +msgid "Everything" +msgstr "Tot" + +#: ../../include/contact_widgets.php:126 +msgid "Categories" +msgstr "Categories" + +#: ../../include/auth.php:35 msgid "Logged out." msgstr "Has sortit" +#: ../../include/auth.php:114 +msgid "" +"We encountered a problem while logging in with the OpenID you provided. " +"Please check the correct spelling of the ID." +msgstr "Em trobat un problema quan accedies amb la OpenID que has proporcionat. Per favor, revisa la cadena del ID." + +#: ../../include/auth.php:114 +msgid "The error message was:" +msgstr "El missatge d'error fou: " + #: ../../include/datetime.php:43 ../../include/datetime.php:45 msgid "Miscellaneous" msgstr "Miscel·lania" -#: ../../include/datetime.php:121 ../../include/datetime.php:253 +#: ../../include/datetime.php:153 ../../include/datetime.php:285 msgid "year" msgstr "any" -#: ../../include/datetime.php:126 ../../include/datetime.php:254 +#: ../../include/datetime.php:158 ../../include/datetime.php:286 msgid "month" msgstr "mes" -#: ../../include/datetime.php:131 ../../include/datetime.php:256 +#: ../../include/datetime.php:163 ../../include/datetime.php:288 msgid "day" msgstr "dia" -#: ../../include/datetime.php:244 +#: ../../include/datetime.php:276 msgid "never" msgstr "mai" -#: ../../include/datetime.php:250 +#: ../../include/datetime.php:282 msgid "less than a second ago" msgstr "Fa menys d'un segon" -#: ../../include/datetime.php:253 -msgid "years" -msgstr "anys" - -#: ../../include/datetime.php:254 -msgid "months" -msgstr "mesos" - -#: ../../include/datetime.php:255 +#: ../../include/datetime.php:287 msgid "week" msgstr "setmana" -#: ../../include/datetime.php:255 -msgid "weeks" -msgstr "setmanes" - -#: ../../include/datetime.php:256 -msgid "days" -msgstr "dies" - -#: ../../include/datetime.php:257 +#: ../../include/datetime.php:289 msgid "hour" msgstr "hora" -#: ../../include/datetime.php:257 +#: ../../include/datetime.php:289 msgid "hours" msgstr "hores" -#: ../../include/datetime.php:258 +#: ../../include/datetime.php:290 msgid "minute" msgstr "minut" -#: ../../include/datetime.php:258 +#: ../../include/datetime.php:290 msgid "minutes" msgstr "minuts" -#: ../../include/datetime.php:259 +#: ../../include/datetime.php:291 msgid "second" msgstr "segon" -#: ../../include/datetime.php:259 +#: ../../include/datetime.php:291 msgid "seconds" msgstr "segons" -#: ../../include/datetime.php:267 +#: ../../include/datetime.php:300 #, php-format msgid "%1$d %2$s ago" msgstr " fa %1$d %2$s" -#: ../../include/poller.php:513 +#: ../../include/datetime.php:472 ../../include/items.php:1683 +#, php-format +msgid "%s's birthday" +msgstr "%s aniversari" + +#: ../../include/datetime.php:473 ../../include/items.php:1684 +#, php-format +msgid "Happy Birthday %s" +msgstr "Feliç Aniversari %s" + +#: ../../include/onepoll.php:399 msgid "From: " msgstr "Des de:" -#: ../../include/bbcode.php:202 -msgid "$1 wrote:" -msgstr "$1 va escrivir:" - -#: ../../include/bbcode.php:216 ../../include/bbcode.php:282 +#: ../../include/bbcode.php:185 ../../include/bbcode.php:406 msgid "Image/photo" msgstr "Imatge/foto" -#: ../../include/dba.php:39 +#: ../../include/bbcode.php:371 ../../include/bbcode.php:391 +msgid "$1 wrote:" +msgstr "$1 va escriure:" + +#: ../../include/bbcode.php:410 ../../include/bbcode.php:411 +msgid "Encrypted content" +msgstr "" + +#: ../../include/dba.php:41 #, php-format msgid "Cannot locate DNS info for database server '%s'" msgstr "No put trobar informació de DNS del servidor de base de dades '%s'" -#: ../../include/message.php:14 +#: ../../include/message.php:15 ../../include/message.php:171 msgid "[no subject]" msgstr "[Sense assumpte]" -#: ../../include/acl_selectors.php:284 +#: ../../include/acl_selectors.php:286 msgid "Visible to everybody" msgstr "Visible per tothom" -#: ../../include/acl_selectors.php:285 -msgid "show" -msgstr "mostra" - -#: ../../include/acl_selectors.php:286 -msgid "don't show" -msgstr "no mostris" - -#: ../../include/enotify.php:8 +#: ../../include/enotify.php:16 msgid "Friendica Notification" msgstr "Notificacions de Friendica" -#: ../../include/enotify.php:11 +#: ../../include/enotify.php:19 msgid "Thank You," msgstr "Gràcies," -#: ../../include/enotify.php:13 +#: ../../include/enotify.php:21 #, php-format msgid "%s Administrator" msgstr "%s Administrador" -#: ../../include/enotify.php:29 +#: ../../include/enotify.php:40 #, php-format msgid "%s " msgstr "%s " -#: ../../include/enotify.php:33 +#: ../../include/enotify.php:44 #, php-format msgid "[Friendica:Notify] New mail received at %s" msgstr "[Friendica: Notifica] nou correu rebut a %s" -#: ../../include/enotify.php:35 +#: ../../include/enotify.php:46 #, php-format -msgid "%s sent you a new private message at %s." -msgstr "%s t'ha enviat un nou missatge privat en %s" +msgid "%1$s sent you a new private message at %2$s." +msgstr "%1$s t'ha enviat un missatge privat nou en %2$s." -#: ../../include/enotify.php:36 +#: ../../include/enotify.php:47 #, php-format -msgid "%s sent you %s." -msgstr "%s t'ha enviat %s." +msgid "%1$s sent you %2$s." +msgstr "%1$s t'ha enviat %2$s." -#: ../../include/enotify.php:36 +#: ../../include/enotify.php:47 msgid "a private message" msgstr "un missatge privat" -#: ../../include/enotify.php:37 +#: ../../include/enotify.php:48 #, php-format msgid "Please visit %s to view and/or reply to your private messages." msgstr "Per favor, visiteu %s per a veure i/o respondre els teus missatges privats." -#: ../../include/enotify.php:67 +#: ../../include/enotify.php:89 #, php-format -msgid "%s's" -msgstr "%s's" +msgid "%1$s commented on [url=%2$s]a %3$s[/url]" +msgstr "%1$s ha comentat en [url=%2$s]a %3$s[/url]" -#: ../../include/enotify.php:71 -msgid "your" -msgstr "tu" - -#: ../../include/enotify.php:78 +#: ../../include/enotify.php:96 #, php-format -msgid "[Friendica:Notify] Comment to conversation #%d by %s" -msgstr "[Friendica:Notifica] Conversació comentada #%d per %s" +msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]" +msgstr "%1$s ha comentat en [url=%2$s]%3$s de %4$s[/url]" -#: ../../include/enotify.php:79 +#: ../../include/enotify.php:104 +#, php-format +msgid "%1$s commented on [url=%2$s]your %3$s[/url]" +msgstr "%1$s ha comentat en [url=%2$s] el teu %3$s[/url]" + +#: ../../include/enotify.php:114 +#, php-format +msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s" +msgstr "[Friendica:Notificació] Comentaris a la conversació #%1$d per %2$s" + +#: ../../include/enotify.php:115 #, php-format msgid "%s commented on an item/conversation you have been following." msgstr "%s ha comentat un element/conversació que estas seguint." -#: ../../include/enotify.php:80 -#, php-format -msgid "%s commented on %s." -msgstr "%s comentat a %s." - -#: ../../include/enotify.php:82 ../../include/enotify.php:95 -#: ../../include/enotify.php:106 ../../include/enotify.php:117 +#: ../../include/enotify.php:118 ../../include/enotify.php:133 +#: ../../include/enotify.php:146 ../../include/enotify.php:164 +#: ../../include/enotify.php:177 #, php-format msgid "Please visit %s to view and/or reply to the conversation." msgstr "Si us pau, visiteu %s per a veure i/o respondre la conversació." -#: ../../include/enotify.php:89 +#: ../../include/enotify.php:125 #, php-format msgid "[Friendica:Notify] %s posted to your profile wall" msgstr "[Friendica:Notifica] %s enviat al teu mur del perfil" -#: ../../include/enotify.php:91 +#: ../../include/enotify.php:127 #, php-format -msgid "%s posted to your profile wall at %s" -msgstr "%s enviat al teu mur de perfil %s" +msgid "%1$s posted to your profile wall at %2$s" +msgstr "%1$s ha fet un enviament al teu mur de perfils en %2$s" -#: ../../include/enotify.php:93 +#: ../../include/enotify.php:129 #, php-format -msgid "%s posted to %s" -msgstr "%s enviat a %s" +msgid "%1$s posted to [url=%2$s]your wall[/url]" +msgstr "" -#: ../../include/enotify.php:93 -msgid "your profile wall." -msgstr "El teu perfil del mur." - -#: ../../include/enotify.php:102 +#: ../../include/enotify.php:140 #, php-format msgid "[Friendica:Notify] %s tagged you" msgstr "[Friendica:Notifica] %s t'ha etiquetat" -#: ../../include/enotify.php:103 +#: ../../include/enotify.php:141 #, php-format -msgid "%s tagged you at %s" -msgstr "%s t'ha etiquetat en %s" +msgid "%1$s tagged you at %2$s" +msgstr "%1$s t'ha etiquetat a %2$s" -#: ../../include/enotify.php:104 +#: ../../include/enotify.php:142 #, php-format -msgid "%s %s." -msgstr "%s %s." +msgid "%1$s [url=%2$s]tagged you[/url]." +msgstr "%1$s [url=%2$s] t'ha etiquetat[/url]." -#: ../../include/enotify.php:104 -msgid "tagged you" -msgstr "Etiquetat" +#: ../../include/enotify.php:154 +#, php-format +msgid "[Friendica:Notify] %1$s poked you" +msgstr "" -#: ../../include/enotify.php:113 +#: ../../include/enotify.php:155 +#, php-format +msgid "%1$s poked you at %2$s" +msgstr "" + +#: ../../include/enotify.php:156 +#, php-format +msgid "%1$s [url=%2$s]poked you[/url]." +msgstr "" + +#: ../../include/enotify.php:171 #, php-format msgid "[Friendica:Notify] %s tagged your post" msgstr "[Friendica:Notifica] %s ha etiquetat el teu missatge" -#: ../../include/enotify.php:114 +#: ../../include/enotify.php:172 #, php-format -msgid "%s tagged your post at %s" -msgstr "%s Ha etiquetat un missatge teu en %s" +msgid "%1$s tagged your post at %2$s" +msgstr "%1$s ha etiquetat un missatge teu a %2$s" -#: ../../include/enotify.php:115 +#: ../../include/enotify.php:173 #, php-format -msgid "%s tagged %s" -msgstr "%s etiquetat %s" +msgid "%1$s tagged [url=%2$s]your post[/url]" +msgstr "%1$s etiquetà [url=%2$s] el teu enviament[/url]" -#: ../../include/enotify.php:115 -msgid "your post" -msgstr "El teu missatge" - -#: ../../include/enotify.php:124 +#: ../../include/enotify.php:184 msgid "[Friendica:Notify] Introduction received" msgstr "[Friendica:Notifica] Presentacio rebuda" -#: ../../include/enotify.php:125 +#: ../../include/enotify.php:185 #, php-format -msgid "You've received an introduction from '%s' at %s" -msgstr "Has rebut una presentació de %s en %s" +msgid "You've received an introduction from '%1$s' at %2$s" +msgstr "Has rebut una presentació des de '%1$s' en %2$s" -#: ../../include/enotify.php:126 +#: ../../include/enotify.php:186 #, php-format -msgid "You've received %s from %s." -msgstr "Has rebut %s de %s" +msgid "You've received [url=%1$s]an introduction[/url] from %2$s." +msgstr "Has rebut [url=%1$s] com a presentació[/url] des de %2$s." -#: ../../include/enotify.php:126 -msgid "an introduction" -msgstr "Una presentació" - -#: ../../include/enotify.php:127 ../../include/enotify.php:144 +#: ../../include/enotify.php:189 ../../include/enotify.php:207 #, php-format msgid "You may visit their profile at %s" msgstr "Pot visitar el seu perfil en %s" -#: ../../include/enotify.php:129 +#: ../../include/enotify.php:191 #, php-format msgid "Please visit %s to approve or reject the introduction." msgstr "Si us plau visiteu %s per aprovar o rebutjar la presentació." -#: ../../include/enotify.php:136 +#: ../../include/enotify.php:198 msgid "[Friendica:Notify] Friend suggestion received" msgstr "[Friendica:Notifica] Suggerencia d'amistat rebuda" -#: ../../include/enotify.php:137 +#: ../../include/enotify.php:199 #, php-format -msgid "You've received a friend suggestion from '%s' at %s" -msgstr "Has rebut una suggerencia d'amistat de %s en %s" +msgid "You've received a friend suggestion from '%1$s' at %2$s" +msgstr "Has rebut una suggerencia d'amistat des de '%1$s' en %2$s" -#: ../../include/enotify.php:138 +#: ../../include/enotify.php:200 #, php-format -msgid "You've received %s for %s from %s." -msgstr "Has rebut %s per %s de %s." +msgid "" +"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." +msgstr "Has rebut [url=%1$s] com a suggerencia d'amistat[/url] per a %2$s des de %3$s." -#: ../../include/enotify.php:139 -msgid "a friend suggestion" -msgstr "Un suggerencia d'amistat" - -#: ../../include/enotify.php:142 +#: ../../include/enotify.php:205 msgid "Name:" msgstr "Nom:" -#: ../../include/enotify.php:143 +#: ../../include/enotify.php:206 msgid "Photo:" msgstr "Foto:" -#: ../../include/enotify.php:146 +#: ../../include/enotify.php:209 #, php-format msgid "Please visit %s to approve or reject the suggestion." msgstr "Si us plau, visiteu %s per aprovar o rebutjar la suggerencia." -#: ../../include/items.php:2573 +#: ../../include/follow.php:32 +msgid "Connect URL missing." +msgstr "URL del connector perduda." + +#: ../../include/follow.php:59 +msgid "" +"This site is not configured to allow communications with other networks." +msgstr "Aquest lloc no està configurat per permetre les comunicacions amb altres xarxes." + +#: ../../include/follow.php:60 ../../include/follow.php:80 +msgid "No compatible communication protocols or feeds were discovered." +msgstr "Protocol de comunnicació no compatible o alimentador descobert." + +#: ../../include/follow.php:78 +msgid "The profile address specified does not provide adequate information." +msgstr "L'adreça de perfil especificada no proveeix informació adient." + +#: ../../include/follow.php:82 +msgid "An author or name was not found." +msgstr "Un autor o nom no va ser trobat" + +#: ../../include/follow.php:84 +msgid "No browser URL could be matched to this address." +msgstr "Cap direcció URL del navegador coincideix amb aquesta adreça." + +#: ../../include/follow.php:86 +msgid "" +"Unable to match @-style Identity Address with a known protocol or email " +"contact." +msgstr "Incapaç de trobar coincidències amb la Adreça d'Identitat estil @ amb els protocols coneguts o contactes de correu. " + +#: ../../include/follow.php:87 +msgid "Use mailto: in front of address to force email check." +msgstr "Emprar mailto: davant la adreça per a forçar la comprovació del correu." + +#: ../../include/follow.php:93 +msgid "" +"The profile address specified belongs to a network which has been disabled " +"on this site." +msgstr "La direcció del perfil especificat pertany a una xarxa que ha estat desactivada en aquest lloc." + +#: ../../include/follow.php:103 +msgid "" +"Limited profile. This person will be unable to receive direct/personal " +"notifications from you." +msgstr "Perfil limitat. Aquesta persona no podrà rebre notificacions personals/directes de tu." + +#: ../../include/follow.php:205 +msgid "Unable to retrieve contact information." +msgstr "No es pot recuperar la informació de contacte." + +#: ../../include/follow.php:259 +msgid "following" +msgstr "seguint" + +#: ../../include/items.php:3294 msgid "A new person is sharing with you at " msgstr "Una persona nova està compartint amb tú en" -#: ../../include/items.php:2573 +#: ../../include/items.php:3294 msgid "You have a new follower at " msgstr "Tens un nou seguidor a " -#: ../../include/bb2diaspora.php:102 ../../include/bb2diaspora.php:112 -#: ../../include/bb2diaspora.php:113 -msgid "image/photo" -msgstr "Imatge/foto" +#: ../../include/items.php:3975 +msgid "Archives" +msgstr "Arxius" -#: ../../include/security.php:20 +#: ../../include/user.php:38 +msgid "An invitation is required." +msgstr "Es requereix invitació." + +#: ../../include/user.php:43 +msgid "Invitation could not be verified." +msgstr "La invitació no ha pogut ser verificada." + +#: ../../include/user.php:51 +msgid "Invalid OpenID url" +msgstr "OpenID url no vàlid" + +#: ../../include/user.php:66 +msgid "Please enter the required information." +msgstr "Per favor, introdueixi la informació requerida." + +#: ../../include/user.php:80 +msgid "Please use a shorter name." +msgstr "Per favor, empri un nom més curt." + +#: ../../include/user.php:82 +msgid "Name too short." +msgstr "Nom massa curt." + +#: ../../include/user.php:97 +msgid "That doesn't appear to be your full (First Last) name." +msgstr "Això no sembla ser el teu nom complet." + +#: ../../include/user.php:102 +msgid "Your email domain is not among those allowed on this site." +msgstr "El seu domini de correu electrònic no es troba entre els permesos en aquest lloc." + +#: ../../include/user.php:105 +msgid "Not a valid email address." +msgstr "Adreça de correu no vàlida." + +#: ../../include/user.php:115 +msgid "Cannot use that email." +msgstr "No es pot utilitzar aquest correu electrònic." + +#: ../../include/user.php:121 +msgid "" +"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and " +"must also begin with a letter." +msgstr "El teu sobrenom nomes pot contenir \"a-z\", \"0-9\", \"-\", i \"_\", i començar amb lletra." + +#: ../../include/user.php:127 ../../include/user.php:225 +msgid "Nickname is already registered. Please choose another." +msgstr "àlies ja registrat. Tria un altre." + +#: ../../include/user.php:137 +msgid "" +"Nickname was once registered here and may not be re-used. Please choose " +"another." +msgstr "L'àlies emprat ja està registrat alguna vegada i no es pot reutilitzar " + +#: ../../include/user.php:153 +msgid "SERIOUS ERROR: Generation of security keys failed." +msgstr "ERROR IMPORTANT: La generació de claus de seguretat ha fallat." + +#: ../../include/user.php:211 +msgid "An error occurred during registration. Please try again." +msgstr "Un error ha succeït durant el registre. Intenta-ho de nou." + +#: ../../include/user.php:246 +msgid "An error occurred creating your default profile. Please try again." +msgstr "Un error ha succeit durant la creació del teu perfil per defecte. Intenta-ho de nou." + +#: ../../include/security.php:22 msgid "Welcome " msgstr "Benvingut" -#: ../../include/security.php:21 +#: ../../include/security.php:23 msgid "Please upload a profile photo." msgstr "Per favor, carrega una foto per al perfil" -#: ../../include/security.php:24 +#: ../../include/security.php:26 msgid "Welcome back " msgstr "Benvingut de nou " -#: ../../include/Contact.php:131 ../../include/conversation.php:788 -msgid "View status" -msgstr "Veure estatus" +#: ../../include/security.php:344 +msgid "" +"The form security token was not correct. This probably happened because the " +"form has been opened for too long (>3 hours) before submitting it." +msgstr "El formulari del token de seguretat no es correcte. Això probablement passa perquè el formulari ha estat massa temps obert (>3 hores) abans d'enviat-lo." -#: ../../include/Contact.php:132 ../../include/conversation.php:789 -msgid "View profile" -msgstr "Veure perfil" +#: ../../include/Contact.php:111 +msgid "stopped following" +msgstr "Deixar de seguir" -#: ../../include/Contact.php:133 ../../include/conversation.php:790 -msgid "View photos" -msgstr "Veure fotos" +#: ../../include/Contact.php:220 ../../include/conversation.php:1106 +msgid "Poke" +msgstr "" -#: ../../include/Contact.php:134 ../../include/Contact.php:147 -#: ../../include/conversation.php:791 -msgid "View recent" -msgstr "Veure recent" +#: ../../include/Contact.php:221 ../../include/conversation.php:1100 +msgid "View Status" +msgstr "Veure Estatus" -#: ../../include/Contact.php:136 ../../include/Contact.php:147 -#: ../../include/conversation.php:793 +#: ../../include/Contact.php:222 ../../include/conversation.php:1101 +msgid "View Profile" +msgstr "Veure Perfil" + +#: ../../include/Contact.php:223 ../../include/conversation.php:1102 +msgid "View Photos" +msgstr "Veure Fotos" + +#: ../../include/Contact.php:224 ../../include/Contact.php:237 +#: ../../include/conversation.php:1103 +msgid "Network Posts" +msgstr "Enviaments a la Xarxa" + +#: ../../include/Contact.php:225 ../../include/Contact.php:237 +#: ../../include/conversation.php:1104 +msgid "Edit Contact" +msgstr "Editat Contacte" + +#: ../../include/Contact.php:226 ../../include/Contact.php:237 +#: ../../include/conversation.php:1105 msgid "Send PM" msgstr "Enviar Missatge Privat" -#: ../../include/conversation.php:163 +#: ../../include/conversation.php:206 +#, php-format +msgid "%1$s poked %2$s" +msgstr "" + +#: ../../include/conversation.php:290 msgid "post/item" msgstr "anunci/element" -#: ../../include/conversation.php:164 +#: ../../include/conversation.php:291 #, php-format msgid "%1$s marked %2$s's %3$s as favorite" msgstr "%1$s marcat %2$s's %3$s com favorit" -#: ../../include/conversation.php:303 ../../include/conversation.php:572 -msgid "Select" -msgstr "Selecionar" +#: ../../include/conversation.php:645 ../../include/conversation.php:919 +#: ../../object/Item.php:217 +msgid "Categories:" +msgstr "" -#: ../../include/conversation.php:320 ../../include/conversation.php:665 -#: ../../include/conversation.php:666 -#, php-format -msgid "View %s's profile @ %s" -msgstr "Veure perfil de %s @ %s" +#: ../../include/conversation.php:646 ../../include/conversation.php:920 +#: ../../object/Item.php:218 +msgid "Filed under:" +msgstr "" -#: ../../include/conversation.php:330 ../../include/conversation.php:677 -#, php-format -msgid "%s from %s" -msgstr "%s des de %s" +#: ../../include/conversation.php:1002 +msgid "remove" +msgstr "esborrar" -#: ../../include/conversation.php:346 -msgid "View in context" -msgstr "Veure en context" - -#: ../../include/conversation.php:467 -#, php-format -msgid "%d comment" -msgid_plural "%d comments" -msgstr[0] "%d comentari" -msgstr[1] "%d comentaris" - -#: ../../include/conversation.php:468 ../../boot.php:448 -msgid "show more" -msgstr "Mostrar més" - -#: ../../include/conversation.php:529 -msgid "like" -msgstr "Agrada" - -#: ../../include/conversation.php:530 -msgid "dislike" -msgstr "Desagrada" - -#: ../../include/conversation.php:532 -msgid "Share this" -msgstr "Compartir això" - -#: ../../include/conversation.php:532 -msgid "share" -msgstr "Compartir" - -#: ../../include/conversation.php:582 -msgid "add star" -msgstr "Afegir a favorits" - -#: ../../include/conversation.php:583 -msgid "remove star" -msgstr "Esborrar favorit" - -#: ../../include/conversation.php:584 -msgid "toggle star status" -msgstr "Canviar estatus de favorit" - -#: ../../include/conversation.php:587 -msgid "starred" -msgstr "favorit" - -#: ../../include/conversation.php:588 -msgid "add tag" -msgstr "afegir etiqueta" - -#: ../../include/conversation.php:667 -msgid "to" -msgstr "a" - -#: ../../include/conversation.php:668 -msgid "Wall-to-Wall" -msgstr "Mur-a-Mur" - -#: ../../include/conversation.php:669 -msgid "via Wall-To-Wall:" -msgstr "via Mur-a-Mur" - -#: ../../include/conversation.php:713 +#: ../../include/conversation.php:1006 msgid "Delete Selected Items" msgstr "Esborra els Elements Seleccionats" -#: ../../include/conversation.php:845 +#: ../../include/conversation.php:1164 #, php-format msgid "%s likes this." msgstr "a %s agrada això." -#: ../../include/conversation.php:845 +#: ../../include/conversation.php:1164 #, php-format msgid "%s doesn't like this." msgstr "a %s desagrada això." -#: ../../include/conversation.php:849 +#: ../../include/conversation.php:1168 #, php-format msgid "%2$d people like this." -msgstr "Li agrada a%2$d persones ." +msgstr "Li agrada a %2$d persones ." -#: ../../include/conversation.php:851 +#: ../../include/conversation.php:1170 #, php-format msgid "%2$d people don't like this." -msgstr "No li agrada%2$d persones ." +msgstr "No li agrada %2$d persones ." -#: ../../include/conversation.php:857 +#: ../../include/conversation.php:1176 msgid "and" msgstr "i" -#: ../../include/conversation.php:860 +#: ../../include/conversation.php:1179 #, php-format msgid ", and %d other people" msgstr ", i altres %d persones" -#: ../../include/conversation.php:861 +#: ../../include/conversation.php:1180 #, php-format msgid "%s like this." -msgstr "a %s le gusta esto." +msgstr "a %s li agrada això." -#: ../../include/conversation.php:861 +#: ../../include/conversation.php:1180 #, php-format msgid "%s don't like this." -msgstr "a %s no le gusta esto." +msgstr "a %s no li agrada això." -#: ../../include/conversation.php:886 +#: ../../include/conversation.php:1204 ../../include/conversation.php:1221 msgid "Visible to everybody" msgstr "Visible per a tothom" -#: ../../include/conversation.php:888 +#: ../../include/conversation.php:1206 ../../include/conversation.php:1223 msgid "Please enter a video link/URL:" msgstr "Per favor , introdueixi el enllaç/URL del video" -#: ../../include/conversation.php:889 +#: ../../include/conversation.php:1207 ../../include/conversation.php:1224 msgid "Please enter an audio link/URL:" msgstr "Per favor , introdueixi el enllaç/URL del audio:" -#: ../../include/conversation.php:890 +#: ../../include/conversation.php:1208 ../../include/conversation.php:1225 msgid "Tag term:" msgstr "Terminis de l'etiqueta:" -#: ../../include/conversation.php:891 +#: ../../include/conversation.php:1210 ../../include/conversation.php:1227 msgid "Where are you right now?" msgstr "On ets ara?" -#: ../../include/conversation.php:892 -msgid "Enter a title for this item" -msgstr "Escriviu un títol per a aquest article" - -#: ../../include/conversation.php:935 +#: ../../include/conversation.php:1270 msgid "upload photo" msgstr "carregar fotos" -#: ../../include/conversation.php:937 +#: ../../include/conversation.php:1272 msgid "attach file" msgstr "adjuntar arxiu" -#: ../../include/conversation.php:939 +#: ../../include/conversation.php:1274 msgid "web link" msgstr "enllaç de web" -#: ../../include/conversation.php:940 +#: ../../include/conversation.php:1275 msgid "Insert video link" msgstr "Insertar enllaç de video" -#: ../../include/conversation.php:941 +#: ../../include/conversation.php:1276 msgid "video link" msgstr "enllaç de video" -#: ../../include/conversation.php:942 +#: ../../include/conversation.php:1277 msgid "Insert audio link" msgstr "Insertar enllaç de audio" -#: ../../include/conversation.php:943 +#: ../../include/conversation.php:1278 msgid "audio link" msgstr "enllaç de audio" -#: ../../include/conversation.php:945 +#: ../../include/conversation.php:1280 msgid "set location" msgstr "establir la ubicació" -#: ../../include/conversation.php:947 +#: ../../include/conversation.php:1282 msgid "clear location" msgstr "netejar ubicació" -#: ../../include/conversation.php:952 +#: ../../include/conversation.php:1289 msgid "permissions" msgstr "Permissos" -#: ../../boot.php:446 +#: ../../include/plugin.php:389 ../../include/plugin.php:391 +msgid "Click here to upgrade." +msgstr "Clica aquí per actualitzar." + +#: ../../include/plugin.php:397 +msgid "This action exceeds the limits set by your subscription plan." +msgstr "Aquesta acció excedeix els límits del teu plan de subscripció." + +#: ../../include/plugin.php:402 +msgid "This action is not available under your subscription plan." +msgstr "Aquesta acció no està disponible en el teu plan de subscripció." + +#: ../../boot.php:573 msgid "Delete this item?" msgstr "Esborrar aquest element?" -#: ../../boot.php:449 +#: ../../boot.php:576 msgid "show fewer" msgstr "Mostrar menys" -#: ../../boot.php:692 +#: ../../boot.php:783 +#, php-format +msgid "Update %s failed. See error logs." +msgstr "Actualització de %s fracassà. Mira el registre d'errors." + +#: ../../boot.php:785 +#, php-format +msgid "Update Error at %s" +msgstr "Error d'actualització en %s" + +#: ../../boot.php:886 msgid "Create a New Account" msgstr "Crear un Nou Compte" -#: ../../boot.php:712 +#: ../../boot.php:914 msgid "Nickname or Email address: " -msgstr "Malnom o Adreça de correu:" +msgstr "Àlies o Adreça de correu:" -#: ../../boot.php:713 +#: ../../boot.php:915 msgid "Password: " msgstr "Contrasenya:" -#: ../../boot.php:716 +#: ../../boot.php:918 msgid "Or login using OpenID: " msgstr "O accedixi emprant OpenID:" -#: ../../boot.php:722 +#: ../../boot.php:924 msgid "Forgot your password?" msgstr "Oblidà la contrasenya?" -#: ../../boot.php:879 +#: ../../boot.php:1035 +msgid "Requested account is not available." +msgstr "" + +#: ../../boot.php:1112 msgid "Edit profile" msgstr "Editar perfil" -#: ../../boot.php:1046 ../../boot.php:1117 +#: ../../boot.php:1178 +msgid "Message" +msgstr "Missatge" + +#: ../../boot.php:1300 ../../boot.php:1386 msgid "g A l F d" msgstr "g A l F d" -#: ../../boot.php:1047 ../../boot.php:1118 +#: ../../boot.php:1301 ../../boot.php:1387 msgid "F d" msgstr "F d" -#: ../../boot.php:1072 -msgid "Birthday Reminders" -msgstr "Recordatori d'Aniversaris" - -#: ../../boot.php:1073 -msgid "Birthdays this week:" -msgstr "Aniversari aquesta setmana" - -#: ../../boot.php:1096 ../../boot.php:1160 +#: ../../boot.php:1346 ../../boot.php:1427 msgid "[today]" msgstr "[avui]" -#: ../../boot.php:1141 +#: ../../boot.php:1358 +msgid "Birthday Reminders" +msgstr "Recordatori d'Aniversaris" + +#: ../../boot.php:1359 +msgid "Birthdays this week:" +msgstr "Aniversari aquesta setmana" + +#: ../../boot.php:1420 +msgid "[No description]" +msgstr "[sense descripció]" + +#: ../../boot.php:1438 msgid "Event Reminders" msgstr "Recordatori d'Esdeveniments" -#: ../../boot.php:1142 +#: ../../boot.php:1439 msgid "Events this week:" msgstr "Esdeveniments aquesta setmana" -#: ../../boot.php:1154 -msgid "[No description]" -msgstr "[sense descripció]" +#: ../../boot.php:1668 +msgid "Status Messages and Posts" +msgstr "Missatges i Enviaments d'Estatus" + +#: ../../boot.php:1675 +msgid "Profile Details" +msgstr "Detalls del Perfil" + +#: ../../boot.php:1692 +msgid "Events and Calendar" +msgstr "Esdeveniments i Calendari" + +#: ../../boot.php:1699 +msgid "Only You Can See This" +msgstr "Només ho pots veure tu" diff --git a/view/ca/strings.php b/view/ca/strings.php index 2650583913..ce3826a428 100644 --- a/view/ca/strings.php +++ b/view/ca/strings.php @@ -1,7 +1,7 @@ strings["Post successful."] = "Publicat amb éxit."; @@ -15,8 +15,8 @@ $a->strings["WARNING: This is highly advanced and if you enter $a->strings["Please use your browser 'Back' button now if you are uncertain what to do on this page."] = "Si us plau, prem el botó 'Tornar' ara si no saps segur que has de fer aqui."; $a->strings["Return to contact editor"] = "Tornar al editor de contactes"; $a->strings["Name"] = "Nom"; -$a->strings["Account Nickname"] = "Malnom de Compte"; -$a->strings["@Tagname - overrides Name/Nickname"] = "@Tagname - té prel·lació sobre Nom/Malnom"; +$a->strings["Account Nickname"] = "Àlies del Compte"; +$a->strings["@Tagname - overrides Name/Nickname"] = "@Tagname - té prel·lació sobre Nom/Àlies"; $a->strings["Account URL"] = "Adreça URL del Compte"; $a->strings["Friend Request URL"] = "Adreça URL de sol·licitud d'Amistat"; $a->strings["Friend Confirm URL"] = "Adreça URL de confirmació d'Amic"; @@ -32,24 +32,26 @@ $a->strings["File exceeds size limit of %d"] = "L'arxiu excedeix la mida límit $a->strings["File upload failed."] = "La càrrega de fitxers ha fallat."; $a->strings["Friend suggestion sent."] = "Enviat suggeriment d'amic."; $a->strings["Suggest Friends"] = "Suggerir Amics"; -$a->strings["Suggest a friend for %s"] = "Suggerir una amic per a %s"; -$a->strings["Event description and start time are required."] = "Es requereix descripció de l'esdeveniment i l'hora d'inici."; +$a->strings["Suggest a friend for %s"] = "Suggerir un amic per a %s"; +$a->strings["Event title and start time are required."] = "Títol d'esdeveniment i hora d'inici requerits."; $a->strings["l, F j"] = "l, F j"; $a->strings["Edit event"] = "Editar esdeveniment"; $a->strings["link to source"] = "Enllaç al origen"; $a->strings["Events"] = "Esdeveniments"; $a->strings["Create New Event"] = "Crear un nou esdeveniment"; $a->strings["Previous"] = "Previ"; -$a->strings["Next"] = "Proper"; +$a->strings["Next"] = "Següent"; $a->strings["hour:minute"] = "hora:minut"; $a->strings["Event details"] = "Detalls del esdeveniment"; -$a->strings["Format is %s %s. Starting date and Description are required."] = "El format és %s %s. Es requereix Data d'inici i Descripció."; +$a->strings["Format is %s %s. Starting date and Title are required."] = "El Format és %s %s. Data d'inici i títol requerits."; $a->strings["Event Starts:"] = "Inici d'Esdeveniment:"; +$a->strings["Required"] = "Requerit"; $a->strings["Finish date/time is not known or not relevant"] = "La data/hora de finalització no es coneixen o no són relevants"; $a->strings["Event Finishes:"] = "L'esdeveniment Finalitza:"; $a->strings["Adjust for viewer timezone"] = "Ajustar a la zona horaria de l'espectador"; $a->strings["Description:"] = "Descripció:"; $a->strings["Location:"] = "Ubicació:"; +$a->strings["Title:"] = "Títol:"; $a->strings["Share this event"] = "Compartir aquest esdeveniment"; $a->strings["Cancel"] = "Cancel·lar"; $a->strings["Tag removed"] = "Etiqueta eliminada"; @@ -82,12 +84,16 @@ $a->strings["Image upload failed."] = "Actualització de la imatge fracassada."; $a->strings["Public access denied."] = "Accés públic denegat."; $a->strings["No photos selected"] = "No s'han seleccionat fotos"; $a->strings["Access to this item is restricted."] = "L'accés a aquest element està restringit."; +$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "Has emprat %1$.2f Mbytes de %2$.2f Mbytes del magatzem de fotos."; +$a->strings["You have used %1$.2f Mbytes of photo storage."] = "Has emprat %1$.2f Mbytes del magatzem de fotos."; $a->strings["Upload Photos"] = "Carregar Fotos"; $a->strings["New album name: "] = "Nou nom d'àlbum:"; $a->strings["or existing album name: "] = "o nom d'àlbum existent:"; $a->strings["Do not show a status post for this upload"] = "No tornis a mostrar un missatge d'estat d'aquesta pujada"; $a->strings["Permissions"] = "Permisos"; $a->strings["Edit Album"] = "Editar Àlbum"; +$a->strings["Show Newest First"] = ""; +$a->strings["Show Oldest First"] = ""; $a->strings["View Photo"] = "Veure Foto"; $a->strings["Permission denied. Access to this item may be restricted."] = "Permís denegat. L'accés a aquest element pot estar restringit."; $a->strings["Photo not available"] = "Foto no disponible"; @@ -98,6 +104,8 @@ $a->strings["Private Message"] = "Missatge Privat"; $a->strings["View Full Size"] = "Veure'l a Mida Completa"; $a->strings["Tags: "] = "Etiquetes:"; $a->strings["[Remove any tag]"] = "Treure etiquetes"; +$a->strings["Rotate CW (right)"] = "Rotar CW (dreta)"; +$a->strings["Rotate CCW (left)"] = "Rotar CCW (esquerra)"; $a->strings["New album name"] = "Nou nom d'àlbum"; $a->strings["Caption"] = "Títol"; $a->strings["Add a Tag"] = "Afegir una etiqueta"; @@ -120,7 +128,7 @@ $a->strings["running at web location"] = "funcionant en la ubicació web"; $a->strings["Please visit Friendica.com to learn more about the Friendica project."] = "Si us plau, visiteu Friendica.com per obtenir més informació sobre el projecte Friendica."; $a->strings["Bug reports and issues: please visit"] = "Pels informes d'error i problemes: si us plau, visiteu"; $a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Suggeriments, elogis, donacions, etc si us plau escrigui a \"Info\" en Friendica - dot com"; -$a->strings["Installed plugins/addons/apps"] = "plugins/addons/apps instal·lats"; +$a->strings["Installed plugins/addons/apps:"] = "plugins/addons/apps instal·lats:"; $a->strings["No installed plugins/addons/apps"] = "plugins/addons/apps no instal·lats"; $a->strings["Item not found"] = "Element no trobat"; $a->strings["Edit post"] = "Editar Enviament"; @@ -138,6 +146,7 @@ $a->strings["Permission settings"] = "Configuració de permisos"; $a->strings["CC: email addresses"] = "CC: Adreça de correu"; $a->strings["Public post"] = "Enviament públic"; $a->strings["Set title"] = "Canviar títol"; +$a->strings["Categories (comma-separated list)"] = "Categories (lista separada per comes)"; $a->strings["Example: bob@example.com, mary@example.com"] = "Exemple: bob@example.com, mary@example.com"; $a->strings["This introduction has already been accepted."] = "Aquesta presentació ha estat acceptada."; $a->strings["Profile location is not valid or does not contain profile information."] = "El perfil de situació no és vàlid o no contè informació de perfil"; @@ -154,6 +163,8 @@ $a->strings["%s has received too many connection requests today."] = "%s avui ha $a->strings["Spam protection measures have been invoked."] = "Mesures de protecció contra spam han estat invocades."; $a->strings["Friends are advised to please try again in 24 hours."] = "S'aconsellà els amics que probin pasades 24 hores."; $a->strings["Invalid locator"] = "Localitzador no vàlid"; +$a->strings["Invalid email address."] = "Adreça de correu no vàlida."; +$a->strings["This account has not been configured for email. Request failed."] = "Aquest compte no s'ha configurat per al correu electrònic. Ha fallat la sol·licitud."; $a->strings["Unable to resolve your name at the provided location."] = "Incapaç de resoldre el teu nom al lloc facilitat."; $a->strings["You have already introduced yourself here."] = "Has fer la teva presentació aquí."; $a->strings["Apparently you are already friends with %s."] = "Aparentment, ja tens amistat amb %s"; @@ -163,12 +174,14 @@ $a->strings["Failed to update contact record."] = "Error en actualitzar registre $a->strings["Your introduction has been sent."] = "La teva presentació ha estat enviada."; $a->strings["Please login to confirm introduction."] = "Si us plau, entri per confirmar la presentació."; $a->strings["Incorrect identity currently logged in. Please login to this profile."] = "Sesió iniciada amb la identificació incorrecta. Entra en aquest perfil."; +$a->strings["Hide this contact"] = "Amaga aquest contacte"; $a->strings["Welcome home %s."] = "Benvingut de nou %s"; $a->strings["Please confirm your introduction/connection request to %s."] = "Si us plau, confirmi la seva sol·licitud de Presentació/Amistat a %s."; $a->strings["Confirm"] = "Confirmar"; $a->strings["[Name Withheld]"] = "[Nom Amagat]"; -$a->strings["Diaspora members: Please do not use this form. Instead, enter \"%s\" into your Diaspora search bar."] = "Membres de Diàspora: Si us plau, no utilitzi aquest formulari. Pel contrari, escriviu \"%s\" a la barra de cerca de Diàspora."; -$a->strings["Please enter your 'Identity Address' from one of the following supported social networks:"] = "Si us plau, introdueixi la seva \"Adreça Identificativa\" d'una de les següents xarxes socials suportades:"; +$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Si us plau, introdueixi la seva \"Adreça Identificativa\" d'una de les següents xarxes socials suportades:"; +$a->strings["Connect as an email follower (Coming soon)"] = "Connectar com un seguidor de correu (Disponible aviat)"; +$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."] = "Si encara no ets membre de la web social lliure, segueix aquest enllaç per a trobar un lloc Friendica públic i uneix-te avui."; $a->strings["Friend/Connection Request"] = "Sol·licitud d'Amistat"; $a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Exemples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"; $a->strings["Please answer the following:"] = "Si us plau, contesti les següents preguntes:"; @@ -177,22 +190,18 @@ $a->strings["Add a personal note:"] = "Afegir una nota personal:"; $a->strings["Friendica"] = "Friendica"; $a->strings["StatusNet/Federated Social Web"] = "Web Social StatusNet/Federated "; $a->strings["Diaspora"] = "Diaspora"; -$a->strings["- please share from your own site as noted above"] = "- si us plau, Comparteix des del teu propi lloc tal com s'ha dit abans."; +$a->strings[" - please do not use this form. Instead, enter %s into your Diaspora search bar."] = " - per favor no utilitzi aquest formulari. Al contrari, entra %s en la barra de cerques de Diaspora."; $a->strings["Your Identity Address:"] = "La Teva Adreça Identificativa:"; $a->strings["Submit Request"] = "Sol·licitud Enviada"; $a->strings["Friendica Social Communications Server - Setup"] = "Friendica Social Communications Server - Ajustos"; -$a->strings["Database connection"] = "Conexió a la base de dades"; $a->strings["Could not connect to database."] = "No puc connectar a la base de dades."; $a->strings["Could not create table."] = "No puc creat taula."; $a->strings["Your Friendica site database has been installed."] = "La base de dades del teu lloc Friendica ha estat instal·lada."; -$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "IMPORTANT: necessitarà configurar [manualment] el programar una tasca pel sondejador (poller.php)"; -$a->strings["Please see the file \"INSTALL.txt\"."] = "Per favor, consulti l'arxiu \"INSTALL.txt\"."; -$a->strings["Proceed to registration"] = "Procedir a la inscripció"; -$a->strings["Proceed with Installation"] = "Procedeixi amb la Instal·lació"; $a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Pot ser que hagi d'importar l'arxiu \"database.sql\" manualment amb phpmyadmin o mysql."; -$a->strings["Database import failed."] = "La importació de base de dades ha fallat."; +$a->strings["Please see the file \"INSTALL.txt\"."] = "Per favor, consulti l'arxiu \"INSTALL.txt\"."; $a->strings["System check"] = "Comprovació del Sistema"; $a->strings["Check again"] = "Comprovi de nou"; +$a->strings["Database connection"] = "Conexió a la base de dades"; $a->strings["In order to install Friendica we need to know how to connect to your database."] = "Per a instal·lar Friendica necessitem conèixer com connectar amb la deva base de dades."; $a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Per favor, posi's en contacte amb el seu proveïdor de hosting o administrador del lloc si té alguna pregunta sobre aquestes opcions."; $a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "La base de dades que especifiques ja hauria d'existir. Si no és així, crea-la abans de continuar."; @@ -205,12 +214,13 @@ $a->strings["Your account email address must match this in order to use the web $a->strings["Please select a default timezone for your website"] = "Per favor, seleccioni una zona horària per defecte per al seu lloc web"; $a->strings["Site settings"] = "Configuracions del lloc"; $a->strings["Could not find a command line version of PHP in the web server PATH."] = "No es va poder trobar una versió de línia de comandos de PHP en la ruta del servidor web."; +$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron. See 'Activating scheduled tasks'"] = "Si no tens una versió de línia de comandos instal·lada al teu servidor PHP, no podràs fer córrer els sondejos via cron. Mira 'Activating scheduled tasks'"; $a->strings["PHP executable path"] = "Direcció del executable PHP"; -$a->strings["Enter full path to php executable"] = "Introdueixi el camí complet del executable php"; +$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Entra la ruta sencera fins l'executable de php. Pots deixar això buit per continuar l'instal·lació."; $a->strings["Command line PHP"] = "Linia de comandos PHP"; $a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "La versió de línia de comandos de PHP en el seu sistema no té \"register_argc_argv\" habilitat."; $a->strings["This is required for message delivery to work."] = "Això és necessari perquè funcioni el lliurament de missatges."; -$a->strings["PHP \"register_argc_argv\""] = "PHP \"register_argc_argv\""; +$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"] = "Error: la funció \"openssl_pkey_new\" en aquest sistema no és capaç de generar claus de xifrat"; $a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Si s'executa en Windows, per favor consulti la secció \"http://www.php.net/manual/en/openssl.installation.php\"."; $a->strings["Generate encryption keys"] = "Generar claus d'encripció"; @@ -219,7 +229,7 @@ $a->strings["GD graphics PHP module"] = "Mòdul GD de gràfics de PHP"; $a->strings["OpenSSL PHP module"] = "Mòdul OpenSSl de PHP"; $a->strings["mysqli PHP module"] = "Mòdul mysqli de PHP"; $a->strings["mb_string PHP module"] = "Mòdul mb_string de PHP"; -$a->strings["Apace mod_rewrite module"] = "Mòdul mod_rewrite de Apache"; +$a->strings["Apache mod_rewrite module"] = "Apache mod_rewrite modul "; $a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Error: el mòdul mod-rewrite del servidor web Apache és necessari però no està instal·lat."; $a->strings["Error: libCURL PHP module required but not installed."] = "Error: El mòdul libCURL de PHP és necessari però no està instal·lat."; $a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Error: el mòdul gràfic GD de PHP amb support per JPEG és necessari però no està instal·lat."; @@ -228,11 +238,15 @@ $a->strings["Error: mysqli PHP module required but not installed."] = "Error: El $a->strings["Error: mb_string PHP module required but not installed."] = "Error: mòdul mb_string de PHP requerit però no instal·lat."; $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."] = "L'instal·lador web necessita crear un arxiu anomenat \".htconfig.php\" en la carpeta superior del seu servidor web però alguna cosa ho va impedir."; $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."] = "Això freqüentment és a causa d'una configuració de permisos; el servidor web no pot escriure arxius en la carpeta - encara que sigui possible."; -$a->strings["Please check with your site documentation or support people to see if this situation can be corrected."] = "Per favor, consulti amb la documentació del seu lloc o persones de suport per veure si aquesta situació es pot corregir."; -$a->strings["If not, you may be required to perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "Si no, vostè pot ser requerit per realitzar una instal·lació manual. Per favor, consulti l'arxiu \"INSTALL.txt\" per obtenir instruccions."; +$a->strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Friendica top folder."] = "Al final d'aquest procediment, et facilitarem un text que hauràs de guardar en un arxiu que s'anomena .htconfig.php que hi es a la carpeta principal del teu Friendica."; +$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "Alternativament, pots saltar-te aquest procediment i configurar-ho manualment. Per favor, mira l'arxiu \"INTALL.txt\" per a instruccions."; $a->strings[".htconfig.php is writable"] = ".htconfig.php és escribible"; +$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "URL rewrite en .htaccess no esta treballant. Comprova la configuració del teu servidor."; +$a->strings["Url rewrite is working"] = "URL rewrite està treballant"; $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."] = "L'arxiu per a la configuració de la base de dades \".htconfig.php\" no es pot escriure. Per favor, usi el text adjunt per crear un arxiu de configuració en l'arrel del servidor web."; $a->strings["Errors encountered creating database tables."] = "Trobats errors durant la creació de les taules de la base de dades."; +$a->strings["

    What next

    "] = "

    Que es següent

    "; +$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "IMPORTANT: necessitarà configurar [manualment] el programar una tasca pel sondejador (poller.php)"; $a->strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ g:i A"; $a->strings["Time Conversion"] = "Temps de Conversió"; $a->strings["Friendika provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica ofereix aquest servei per compartir esdeveniments amb altres xarxes i amics a les zones horàries desconegudes."; @@ -240,6 +254,11 @@ $a->strings["UTC time: %s"] = "hora UTC: %s"; $a->strings["Current timezone: %s"] = "Zona horària actual: %s"; $a->strings["Converted localtime: %s"] = "Conversión de hora local: %s"; $a->strings["Please select your timezone:"] = "Si us plau, seleccioneu la vostra zona horària:"; +$a->strings["Poke/Prod"] = ""; +$a->strings["poke, prod or do other things to somebody"] = ""; +$a->strings["Recipient"] = "Recipient"; +$a->strings["Choose what you wish to do to recipient"] = ""; +$a->strings["Make this post private"] = ""; $a->strings["Profile Match"] = "Perfil Aconseguit"; $a->strings["No keywords to match. Please add keywords to your default profile."] = "No hi ha paraules clau que coincideixin. Si us plau, afegeixi paraules clau al teu perfil predeterminat."; $a->strings["is interested in:"] = "està interessat en:"; @@ -247,6 +266,43 @@ $a->strings["Connect"] = "Connexió"; $a->strings["No matches"] = "No hi ha coincidències"; $a->strings["Remote privacy information not available."] = "Informació de privacitat remota no disponible."; $a->strings["Visible to:"] = "Visible per a:"; +$a->strings["No such group"] = "Cap grup com"; +$a->strings["Group is empty"] = "El Grup es buit"; +$a->strings["Group: "] = "Grup:"; +$a->strings["Select"] = "Selecionar"; +$a->strings["View %s's profile @ %s"] = "Veure perfil de %s @ %s"; +$a->strings["%s from %s"] = "%s des de %s"; +$a->strings["View in context"] = "Veure en context"; +$a->strings["%d comment"] = array( + 0 => "%d comentari", + 1 => "%d comentaris", +); +$a->strings["comment"] = array( + 0 => "", + 1 => "comentari", +); +$a->strings["show more"] = "Mostrar més"; +$a->strings["like"] = "Agrada"; +$a->strings["dislike"] = "Desagrada"; +$a->strings["Share this"] = "Compartir això"; +$a->strings["share"] = "Compartir"; +$a->strings["Bold"] = "Negreta"; +$a->strings["Italic"] = "Itallica"; +$a->strings["Underline"] = "Subratllat"; +$a->strings["Quote"] = "Cometes"; +$a->strings["Code"] = "Codi"; +$a->strings["Image"] = "Imatge"; +$a->strings["Link"] = "Enllaç"; +$a->strings["Video"] = "Video"; +$a->strings["add star"] = "Afegir a favorits"; +$a->strings["remove star"] = "Esborrar favorit"; +$a->strings["toggle star status"] = "Canviar estatus de favorit"; +$a->strings["starred"] = "favorit"; +$a->strings["add tag"] = "afegir etiqueta"; +$a->strings["save to folder"] = "guardat a la carpeta"; +$a->strings["to"] = "a"; +$a->strings["Wall-to-Wall"] = "Mur-a-Mur"; +$a->strings["via Wall-To-Wall:"] = "via Mur-a-Mur"; $a->strings["Welcome to %s"] = "Benvingut a %s"; $a->strings["Invalid request identifier."] = "Sol·licitud d'identificació no vàlida."; $a->strings["Discard"] = "Descartar"; @@ -297,7 +353,8 @@ $a->strings["Contact has been blocked"] = "Elcontacte ha estat bloquejat"; $a->strings["Contact has been unblocked"] = "El contacte ha estat desbloquejat"; $a->strings["Contact has been ignored"] = "El contacte ha estat ignorat"; $a->strings["Contact has been unignored"] = "El contacte ha estat recordat"; -$a->strings["stopped following"] = "Deixar de seguir"; +$a->strings["Contact has been archived"] = "El contacte ha estat arxivat"; +$a->strings["Contact has been unarchived"] = "El contacte ha estat desarxivat"; $a->strings["Contact has been removed."] = "El contacte ha estat tret"; $a->strings["You are mutual friends with %s"] = "Ara te una amistat mutua amb %s"; $a->strings["You are sharing with %s"] = "Estas compartint amb %s"; @@ -315,8 +372,15 @@ $a->strings["%d contact in common"] = array( $a->strings["View all contacts"] = "Veure tots els contactes"; $a->strings["Unblock"] = "Desbloquejar"; $a->strings["Block"] = "Bloquejar"; +$a->strings["Toggle Blocked status"] = "Canvi de estatus blocat"; $a->strings["Unignore"] = "Treure d'Ignorats"; +$a->strings["Toggle Ignored status"] = "Canvi de estatus ignorat"; +$a->strings["Unarchive"] = "Desarxivat"; +$a->strings["Archive"] = "Arxivat"; +$a->strings["Toggle Archive status"] = "Canvi de estatus del arxiu"; $a->strings["Repair"] = "Reparar"; +$a->strings["Advanced Contact Settings"] = "Ajustos Avançats per als Contactes"; +$a->strings["Communications lost with this contact!"] = "La comunicació amb aquest contacte s'ha perdut!"; $a->strings["Contact Editor"] = "Editor de Contactes"; $a->strings["Profile Visibility"] = "Perfil de Visibilitat"; $a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Si us plau triï el perfil que voleu mostrar a %s quan estigui veient el teu de forma segura."; @@ -333,12 +397,22 @@ $a->strings["Update public posts"] = "Actualitzar enviament públic"; $a->strings["Update now"] = "Actualitza ara"; $a->strings["Currently blocked"] = "Bloquejat actualment"; $a->strings["Currently ignored"] = "Ignorat actualment"; +$a->strings["Currently archived"] = "Actualment arxivat"; $a->strings["Replies/likes to your public posts may still be visible"] = "Répliques/agraiments per als teus missatges públics poden romandre visibles"; +$a->strings["Suggestions"] = "Suggeriments"; +$a->strings["Suggest potential friends"] = "Suggerir amics potencials"; $a->strings["All Contacts"] = "Tots els Contactes"; -$a->strings["Unblocked Contacts"] = "Contactes Desbloquejats"; -$a->strings["Blocked Contacts"] = "Contactes Bloquejats"; -$a->strings["Ignored Contacts"] = "Contactes Ignorats"; -$a->strings["Hidden Contacts"] = "Contactes Amagats"; +$a->strings["Show all contacts"] = "Mostrar tots els contactes"; +$a->strings["Unblocked"] = "Desblocat"; +$a->strings["Only show unblocked contacts"] = "Mostrar únicament els contactes no blocats"; +$a->strings["Blocked"] = "Blocat"; +$a->strings["Only show blocked contacts"] = "Mostrar únicament els contactes blocats"; +$a->strings["Ignored"] = "Ignorat"; +$a->strings["Only show ignored contacts"] = "Mostrar únicament els contactes ignorats"; +$a->strings["Archived"] = "Arxivat"; +$a->strings["Only show archived contacts"] = "Mostrar únicament els contactes arxivats"; +$a->strings["Hidden"] = "Amagat"; +$a->strings["Only show hidden contacts"] = "Mostrar únicament els contactes amagats"; $a->strings["Mutual Friendship"] = "Amistat Mutua"; $a->strings["is a fan of yours"] = "Es un fan teu"; $a->strings["you are a fan of"] = "ets fan de"; @@ -360,8 +434,16 @@ $a->strings["click here to login"] = "clica aquí per identificarte"; $a->strings["Your password may be changed from the Settings page after successful login."] = "Pots camviar la contrasenya des de la pàgina de Configuración desprès d'accedir amb èxit."; $a->strings["Forgot your Password?"] = "Has Oblidat la Contrasenya?"; $a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Introdueixi la seva adreça de correu i enivii-la per restablir la seva contrasenya. Llavors comprovi el seu correu per a les següents instruccións. "; -$a->strings["Nickname or Email: "] = "Malnom o Correu:"; +$a->strings["Nickname or Email: "] = "Àlies o Correu:"; $a->strings["Reset"] = "Restablir"; +$a->strings["Account settings"] = "Configuració del compte"; +$a->strings["Display settings"] = "Ajustos de pantalla"; +$a->strings["Connector settings"] = "Configuració dels connectors"; +$a->strings["Plugin settings"] = "Configuració del plugin"; +$a->strings["Connected apps"] = "App connectada"; +$a->strings["Export personal data"] = "Exportar dades personals"; +$a->strings["Remove account"] = "Esborrar compte"; +$a->strings["Settings"] = "Ajustos"; $a->strings["Missing some important data!"] = "Perdudes algunes dades importants!"; $a->strings["Update"] = "Actualitzar"; $a->strings["Failed to connect with email account using the settings provided."] = "Connexió fracassada amb el compte de correu emprant la configuració proveïda."; @@ -374,12 +456,9 @@ $a->strings[" Please use a shorter name."] = "Si us plau, faci servir un nom mé $a->strings[" Name too short."] = "Nom massa curt."; $a->strings[" Not valid email."] = "Correu no vàlid."; $a->strings[" Cannot change to that email."] = "No puc canviar a aquest correu."; +$a->strings["Private forum has no privacy permissions. Using default privacy group."] = "Els Fòrums privats no tenen permisos de privacitat. Empra la privacitat de grup per defecte."; +$a->strings["Private forum has no privacy permissions and no default privacy group."] = "Els Fòrums privats no tenen permisos de privacitat i tampoc privacitat per defecte de grup."; $a->strings["Settings updated."] = "Ajustos actualitzats."; -$a->strings["Account settings"] = "Configuració del compte"; -$a->strings["Connector settings"] = "Configuració dels connectors"; -$a->strings["Plugin settings"] = "Configuració del plugin"; -$a->strings["Connections"] = "Connexions"; -$a->strings["Export personal data"] = "Exportar dades personals"; $a->strings["Add application"] = "Afegir aplicació"; $a->strings["Consumer Key"] = "Consumer Key"; $a->strings["Consumer Secret"] = "Consumer Secret"; @@ -396,11 +475,11 @@ $a->strings["Built-in support for %s connectivity is %s"] = "El suport integrat $a->strings["enabled"] = "habilitat"; $a->strings["disabled"] = "deshabilitat"; $a->strings["StatusNet"] = "StatusNet"; +$a->strings["Email access is disabled on this site."] = "L'accés al correu està deshabilitat en aquest lloc."; $a->strings["Connector Settings"] = "Configuració de connectors"; $a->strings["Email/Mailbox Setup"] = "Preparació de Correu/Bústia"; $a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "Si vol comunicar-se amb els contactes de correu emprant aquest servei (opcional), Si us plau, especifiqui com connectar amb la seva bústia."; $a->strings["Last successful email check:"] = "Última comprovació de correu amb èxit:"; -$a->strings["Email access is disabled on this site."] = "L'accés al correu està deshabilitat en aquest lloc."; $a->strings["IMAP server name:"] = "Nom del servidor IMAP:"; $a->strings["IMAP port:"] = "Port IMAP:"; $a->strings["Security:"] = "Seguretat:"; @@ -413,14 +492,25 @@ $a->strings["Action after import:"] = "Acció després d'importar:"; $a->strings["Mark as seen"] = "Marcar com a vist"; $a->strings["Move to folder"] = "Moure a la carpeta"; $a->strings["Move to folder:"] = "Moure a la carpeta:"; -$a->strings["Normal Account"] = "Compte Normal"; +$a->strings["No special theme for mobile devices"] = ""; +$a->strings["Display Settings"] = "Ajustos de Pantalla"; +$a->strings["Display Theme:"] = "Visualitzar el Tema:"; +$a->strings["Mobile Theme:"] = ""; +$a->strings["Update browser every xx seconds"] = "Actualitzar navegador cada xx segons"; +$a->strings["Minimum of 10 seconds, no maximum"] = "Mínim cada 10 segons, no hi ha màxim"; +$a->strings["Number of items to display per page:"] = ""; +$a->strings["Maximum of 100 items"] = "Màxim de 100 elements"; +$a->strings["Don't show emoticons"] = "No mostrar emoticons"; +$a->strings["Normal Account Page"] = "Pàgina Normal del Compte "; $a->strings["This account is a normal personal profile"] = "Aques compte es un compte personal normal"; -$a->strings["Soapbox Account"] = "Compte Tribuna"; +$a->strings["Soapbox Page"] = "Pàgina de Soapbox"; $a->strings["Automatically approve all connection/friend requests as read-only fans"] = "Aprova automàticament totes les sol·licituds de amistat/connexió com a fans de només lectura."; -$a->strings["Community/Celebrity Account"] = "Compte de Comunitat/Celebritat"; +$a->strings["Community Forum/Celebrity Account"] = "Compte de Comunitat/Celebritat"; $a->strings["Automatically approve all connection/friend requests as read-write fans"] = "Aprova automàticament totes les sol·licituds de amistat/connexió com a fans de lectura-escriptura"; -$a->strings["Automatic Friend Account"] = "Compte d'Amistat Automàtic"; +$a->strings["Automatic Friend Page"] = "Compte d'Amistat Automàtica"; $a->strings["Automatically approve all connection/friend requests as friends"] = "Aprova totes les sol·licituds de amistat/connexió com a amic automàticament"; +$a->strings["Private Forum [Experimental]"] = "Fòrum Privat [Experimental]"; +$a->strings["Private forum - approved members only"] = "Fòrum privat - Només membres aprovats"; $a->strings["OpenID:"] = "OpenID:"; $a->strings["(Optional) Allow this OpenID to login to this account."] = "(Opcional) Permetre a aquest OpenID iniciar sessió en aquest compte."; $a->strings["Publish your default profile in your local site directory?"] = "Publicar el teu perfil predeterminat en el directori del lloc local?"; @@ -430,6 +520,7 @@ $a->strings["Hide your profile details from unknown viewers?"] = "Amagar els det $a->strings["Allow friends to post to your profile page?"] = "Permet als amics publicar en la seva pàgina de perfil?"; $a->strings["Allow friends to tag your posts?"] = "Permet als amics d'etiquetar els teus missatges?"; $a->strings["Allow us to suggest you as a potential friend to new members?"] = "Permeteu-nos suggerir-li com un amic potencial dels nous membres?"; +$a->strings["Permit unknown people to send you private mail?"] = "Permetre a desconeguts enviar missatges al teu correu privat?"; $a->strings["Profile is not published."] = "El Perfil no està publicat."; $a->strings["or"] = "o"; $a->strings["Your Identity Address is"] = "La seva Adreça d'Identitat és"; @@ -441,6 +532,7 @@ $a->strings["Expire posts:"] = "Expiració d'enviaments"; $a->strings["Expire personal notes:"] = "Expiració de notes personals"; $a->strings["Expire starred posts:"] = "Expiració de enviaments de favorits"; $a->strings["Expire photos:"] = "Expiració de fotos"; +$a->strings["Only expire posts by others:"] = "Només expiren els enviaments dels altres:"; $a->strings["Account Settings"] = "Ajustos de Compte"; $a->strings["Password Settings"] = "Ajustos de Contrasenya"; $a->strings["New Password:"] = "Nova Contrasenya:"; @@ -452,15 +544,17 @@ $a->strings["Email Address:"] = "Adreça de Correu:"; $a->strings["Your Timezone:"] = "La teva zona Horària:"; $a->strings["Default Post Location:"] = "Localització per Defecte del Missatge:"; $a->strings["Use Browser Location:"] = "Ubicar-se amb el Navegador:"; -$a->strings["Display Theme:"] = "Visualitzar el Tema:"; -$a->strings["Update browser every xx seconds"] = "Actualitzar navegador cada xx segons"; -$a->strings["Minimum of 10 seconds, no maximum"] = "Mínim cada 10 segons, no hi ha màxim"; $a->strings["Security and Privacy Settings"] = "Ajustos de Seguretat i Privacitat"; $a->strings["Maximum Friend Requests/Day:"] = "Nombre Màxim de Sol·licituds per Dia"; $a->strings["(to prevent spam abuse)"] = "(per a prevenir abusos de spam)"; $a->strings["Default Post Permissions"] = "Permisos de Correu per Defecte"; $a->strings["(click to open/close)"] = "(clicar per a obrir/tancar)"; +$a->strings["Maximum private messages per day from unknown people:"] = "Màxim nombre de missatges, per dia, de desconeguts:"; $a->strings["Notification Settings"] = "Ajustos de Notificació"; +$a->strings["By default post a status message when:"] = "Enviar per defecte un missatge de estatus quan:"; +$a->strings["accepting a friend request"] = "Acceptar una sol·licitud d'amistat"; +$a->strings["joining a forum/community"] = "Unint-se a un fòrum/comunitat"; +$a->strings["making an interesting profile change"] = "fent un canvi al perfil"; $a->strings["Send a notification email when:"] = "Envia un correu notificant quan:"; $a->strings["You receive an introduction"] = "Has rebut una presentació"; $a->strings["Your introductions are confirmed"] = "La teva presentació està confirmada"; @@ -469,7 +563,9 @@ $a->strings["Someone writes a followup comment"] = "Algú ha escrit un comentari $a->strings["You receive a private message"] = "Has rebut un missatge privat"; $a->strings["You receive a friend suggestion"] = "Has rebut una suggerencia d'un amic"; $a->strings["You are tagged in a post"] = "Estàs etiquetat en un enviament"; -$a->strings["Advanced Page Settings"] = "Ajustos Avançats de Pàgina"; +$a->strings["You are poked/prodded/etc. in a post"] = ""; +$a->strings["Advanced Account/Page Type Settings"] = "Ajustos Avançats de Compte/ Pàgina"; +$a->strings["Change the behaviour of this account for special situations"] = "Canviar el comportament d'aquest compte en situacions especials"; $a->strings["Manage Identities and/or Pages"] = "Administrar Identitats i/o Pàgines"; $a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Alternar entre les diferents identitats o les pàgines de comunitats/grups que comparteixen les dades del seu compte o que se li ha concedit els permisos de \"administrar\""; $a->strings["Select an identity to manage: "] = "Seleccionar identitat a administrar:"; @@ -478,38 +574,74 @@ $a->strings["Remove term"] = "Traieu termini"; $a->strings["Saved Searches"] = "Cerques Guardades"; $a->strings["add"] = "afegir"; $a->strings["Commented Order"] = "Ordre dels Comentaris"; +$a->strings["Sort by Comment Date"] = "Ordenar per Data de Comentari"; $a->strings["Posted Order"] = "Ordre dels Enviaments"; +$a->strings["Sort by Post Date"] = "Ordenar per Data d'Enviament"; +$a->strings["Posts that mention or involve you"] = "Missatge que et menciona o t'impliquen"; $a->strings["New"] = "Nou"; +$a->strings["Activity Stream - by date"] = "Activitat del Flux - per data"; $a->strings["Starred"] = "Favorits"; -$a->strings["Bookmarks"] = "Marcadors"; +$a->strings["Favourite Posts"] = "Enviaments Favorits"; +$a->strings["Shared Links"] = "Enllaços Compartits"; +$a->strings["Interesting Links"] = "Enllaços Interesants"; $a->strings["Warning: This group contains %s member from an insecure network."] = array( 0 => "Advertència: Aquest grup conté el membre %s en una xarxa insegura.", 1 => "Advertència: Aquest grup conté %s membres d'una xarxa insegura.", ); $a->strings["Private messages to this group are at risk of public disclosure."] = "Els missatges privats a aquest grup es troben en risc de divulgació pública."; -$a->strings["No such group"] = "Cap grup com"; -$a->strings["Group is empty"] = "El Grup es buit"; -$a->strings["Group: "] = "Grup:"; $a->strings["Contact: "] = "Contacte:"; $a->strings["Private messages to this person are at risk of public disclosure."] = "Els missatges privats a aquesta persona es troben en risc de divulgació pública."; $a->strings["Invalid contact."] = "Contacte no vàlid."; $a->strings["Personal Notes"] = "Notes Personals"; $a->strings["Save"] = "Guardar"; +$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "Nombre diari de missatges al mur per %s excedit. El missatge ha fallat."; +$a->strings["No recipient selected."] = "No s'ha seleccionat destinatari."; +$a->strings["Unable to check your home location."] = "Incapaç de comprovar la localització."; +$a->strings["Message could not be sent."] = "El Missatge no ha estat enviat."; +$a->strings["Message collection failure."] = "Ha fallat la recollida del missatge."; +$a->strings["Message sent."] = "Missatge enviat."; +$a->strings["No recipient."] = "Sense destinatari."; +$a->strings["Please enter a link URL:"] = "Sius plau, entri l'enllaç URL:"; +$a->strings["Send Private Message"] = "Enviant Missatge Privat"; +$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "si vols respondre a %s, comprova que els ajustos de privacitat del lloc permeten correus privats de remitents desconeguts."; +$a->strings["To:"] = "Per a:"; +$a->strings["Subject:"] = "Assumpte::"; +$a->strings["Your message:"] = "El teu missatge:"; $a->strings["Welcome to Friendica"] = "Benvingut a Friendica"; $a->strings["New Member Checklist"] = "Llista de Verificació dels Nous Membres"; -$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."] = "Ens agradaria oferir alguns consells i enllaços per ajudar a fer la seva experiència agradable. Feu clic a qualsevol element per visitar la pàgina corresponent. Un enllaç a aquesta pàgina serà visible des de la pàgina d'inici durant dues setmanes després de la seva inscripció inicial i després desapareixerà en silenci."; +$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."] = "Ens agradaria oferir alguns consells i enllaços per ajudar a fer la teva experiència agradable. Feu clic a qualsevol element per visitar la pàgina corresponent. Un enllaç a aquesta pàgina serà visible des de la pàgina d'inici durant dues setmanes després de la teva inscripció inicial i després desapareixerà en silenci."; +$a->strings["Getting Started"] = ""; +$a->strings["Friendica Walk-Through"] = ""; +$a->strings["On your Quick Start page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."] = ""; +$a->strings["Go to Your Settings"] = ""; $a->strings["On your 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."] = "En la de la seva configuració de la pàgina - canviï la contrasenya inicial. També prengui nota de la Adreça d'Identitat. Això s'assembla a una adreça de correu electrònic - i serà útil per fer amics a la xarxa social lliure."; $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."] = "Reviseu les altres configuracions, en particular la configuració de privadesa. Una llista de directoris no publicada és com tenir un número de telèfon no llistat. Normalment, hauria de publicar la seva llista - a menys que tots els seus amics i els amics potencials sàpiguen exactament com trobar-li."; +$a->strings["Profile"] = "Perfil"; +$a->strings["Upload Profile Photo"] = "Pujar Foto del Perfil"; $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."] = "Puji una foto del seu perfil si encara no ho ha fet. Els estudis han demostrat que les persones amb fotos reals de ells mateixos tenen deu vegades més probabilitats de fer amics que les persones que no ho fan."; +$a->strings["Edit Your Profile"] = ""; +$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."] = "Editi el perfil per defecte al seu gust. Reviseu la configuració per ocultar la seva llista d'amics i ocultar el perfil dels visitants desconeguts."; +$a->strings["Profile Keywords"] = ""; +$a->strings["Set some public keywords for your default profile which describe your interests. We may be able to find other people with similar interests and suggest friendships."] = "Estableix algunes paraules clau públiques al teu perfil predeterminat que descriguin els teus interessos. Podem ser capaços de trobar altres persones amb interessos similars i suggerir amistats."; +$a->strings["Connecting"] = ""; +$a->strings["Facebook"] = "Facebook"; $a->strings["Authorise the Facebook Connector if you currently have a Facebook account and we will (optionally) import all your Facebook friends and conversations."] = "Autoritzi el connector de Facebook si vostè té un compte al Facebook i nosaltres (opcionalment) importarem tots els teus amics de Facebook i les converses."; $a->strings["If this is your own personal server, installing the Facebook addon may ease your transition to the free social web."] = "Si aquesta és el seu servidor personal, la instal·lació del complement de Facebook pot facilitar la transició a la web social lliure."; +$a->strings["Importing Emails"] = ""; $a->strings["Enter your email access information on your Connector Settings page if you wish to import and interact with friends or mailing lists from your email INBOX"] = "Introduïu les dades d'accés al correu electrònic a la seva pàgina de configuració de connector, si es desitja importar i relacionar-se amb amics o llistes de correu de la seva bústia d'email"; -$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."] = "Editi el perfil per defecte al seu gust. Reviseu la configuració per ocultar la seva llista d'amics i ocultar el perfil dels visitants desconeguts."; -$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."] = "Estableix algunes paraules clau públiques al teu perfil predeterminat que descriguin els teus interessos. Podem ser capaços de trobar altres persones amb interessos similars i suggerir amistats."; +$a->strings["Go to Your Contacts Page"] = ""; $a->strings["Your Contacts page is your gateway to managing friendships and connecting with friends on other networks. Typically you enter their address or site URL in the Add New Contact dialog."] = "La seva pàgina de Contactes és la seva porta d'entrada a la gestió de l'amistat i la connexió amb amics d'altres xarxes. Normalment, vostè entrar en la seva direcció o URL del lloc al diàleg Afegir Nou Contacte."; +$a->strings["Go to Your Site's Directory"] = ""; $a->strings["The Directory page lets you find other people in this network or other federated sites. Look for a Connect or Follow link on their profile page. Provide your own Identity Address if requested."] = "La pàgina del Directori li permet trobar altres persones en aquesta xarxa o altres llocs federats. Busqui un enllaç Connectar o Seguir a la seva pàgina de perfil. Proporcioni la seva pròpia Adreça de Identitat si així ho sol·licita."; +$a->strings["Finding New People"] = ""; $a->strings["On the side panel of the Contacts page are several tools to find new friends. We can match people by interest, look up people by name or interest, and provide suggestions based on network relationships. On a brand new site, friend suggestions will usually begin to be populated within 24 hours."] = "Al tauler lateral de la pàgina de contacte Hi ha diverses eines per trobar nous amics. Podem coincidir amb les persones per interesos, buscar persones pel nom o per interès, i oferir suggeriments basats en les relacions de la xarxa. En un nou lloc, els suggeriments d'amics, en general comencen a poblar el lloc a les 24 hores."; +$a->strings["Groups"] = "Grups"; +$a->strings["Group Your Contacts"] = ""; $a->strings["Once you have made some friends, organize them into private conversation groups from the sidebar of your Contacts page and then you can interact with each group privately on your Network page."] = "Una vegada que s'han fet alguns amics, organitzi'ls en grups de conversa privada a la barra lateral de la seva pàgina de contactes i després pot interactuar amb cada grup de forma privada a la pàgina de la xarxa."; +$a->strings["Why Aren't My Posts Public?"] = ""; +$a->strings["Friendica respects your privacy. By default, your posts will only show up to people you've added as friends. For more information, see the help section from the link above."] = ""; +$a->strings["Getting Help"] = ""; +$a->strings["Go to the Help Section"] = ""; $a->strings["Our help pages may be consulted for detail on other program features and resources."] = "A les nostres pàgines d'ajuda es poden consultar detalls sobre les característiques d'altres programes i recursos."; $a->strings["Item not available."] = "Element no disponible"; $a->strings["Item was not found."] = "Element no trobat."; @@ -527,26 +659,10 @@ $a->strings["Members"] = "Membres"; $a->strings["Click on a contact to add or remove."] = "Clicar sobre el contacte per afegir o esborrar."; $a->strings["Invalid profile identifier."] = "Identificador del perfil no vàlid."; $a->strings["Profile Visibility Editor"] = "Editor de Visibilitat del Perfil"; -$a->strings["Profile"] = "Perfil"; $a->strings["Visible To"] = "Visible Per"; $a->strings["All Contacts (with secure profile access)"] = "Tots els Contactes (amb accés segur al perfil)"; $a->strings["No contacts."] = "Sense Contactes"; $a->strings["View Contacts"] = "Veure Contactes"; -$a->strings["An invitation is required."] = "Es requereix invitació."; -$a->strings["Invitation could not be verified."] = "La invitació no ha pogut ser verificada."; -$a->strings["Invalid OpenID url"] = "OpenID url no vàlid"; -$a->strings["Please enter the required information."] = "Per favor, introdueixi la informació requerida."; -$a->strings["Please use a shorter name."] = "Per favor, empri un nom més curt."; -$a->strings["Name too short."] = "Nom massa curt."; -$a->strings["That doesn't appear to be your full (First Last) name."] = "Això no sembla ser el teu nom complet."; -$a->strings["Your email domain is not among those allowed on this site."] = "El seu domini de correu electrònic no es troba entre els permesos en aquest lloc."; -$a->strings["Not a valid email address."] = "Adreça de correu no vàlida."; -$a->strings["Cannot use that email."] = "No es pot utilitzar aquest correu electrònic."; -$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and must also begin with a letter."] = "El teu sobrenom nomes pot contenir \"a-z\", \"0-9\", \"-\", i \"_\", i començar amb lletra."; -$a->strings["Nickname is already registered. Please choose another."] = "malnom ja registrat. Tria un altre."; -$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "ERROR IMPORTANT: La generació de claus de seguretat ha fallat."; -$a->strings["An error occurred during registration. Please try again."] = "Un error ha succeït durant el registre. Intenta-ho de nou."; -$a->strings["An error occurred creating your default profile. Please try again."] = "Un error ha succeit durant la creació del teu perfil per defecte. Intenta-ho de nou."; $a->strings["Registration details for %s"] = "Detalls del registre per a %s"; $a->strings["Registration successful. Please check your email for further instructions."] = "Registrat amb èxit. Per favor, comprovi el seu correu per a posteriors instruccions."; $a->strings["Failed to send email message. Here is the message that failed."] = "Error en enviar missatge de correu electrònic. Aquí està el missatge que ha fallat."; @@ -563,8 +679,8 @@ $a->strings["Your invitation ID: "] = "El teu ID de invitació:"; $a->strings["Registration"] = "Procés de Registre"; $a->strings["Your Full Name (e.g. Joe Smith): "] = "El seu nom complet (per exemple, Joan Ningú):"; $a->strings["Your Email Address: "] = "La Seva Adreça de Correu:"; -$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be 'nickname@\$sitename'."] = "Tria un nom de perfil. Això ha de començar amb un caràcter de text. La seva adreça de perfil en aquest lloc serà 'malnom@\$sitename'."; -$a->strings["Choose a nickname: "] = "Tria un malnom:"; +$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be 'nickname@\$sitename'."] = "Tria un nom de perfil. Això ha de començar amb un caràcter de text. La seva adreça de perfil en aquest lloc serà 'alies@\$sitename'."; +$a->strings["Choose a nickname: "] = "Tria un àlies:"; $a->strings["Register"] = "Registrar"; $a->strings["People Search"] = "Cercant Gent"; $a->strings["status"] = "estatus"; @@ -572,6 +688,8 @@ $a->strings["%1\$s likes %2\$s's %3\$s"] = "a %1\$s agrada %2\$s de %3\$s"; $a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "a %1\$s no agrada %2\$s de %3\$s"; $a->strings["Item not found."] = "Article no trobat."; $a->strings["Access denied."] = "Accés denegat."; +$a->strings["Photos"] = "Fotos"; +$a->strings["Files"] = "Arxius"; $a->strings["Account approved."] = "Compte aprovat."; $a->strings["Registration revoked for %s"] = "Procés de Registre revocat per a %s"; $a->strings["Please login."] = "Si us plau, ingressa."; @@ -583,13 +701,16 @@ $a->strings["This message was sent to you by %s, a member of the Friendica socia $a->strings["You may visit them online at %s"] = "El pot visitar en línia a %s"; $a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Si us plau, poseu-vos en contacte amb el remitent responent a aquest missatge si no voleu rebre aquests missatges."; $a->strings["%s posted an update."] = "%s ha publicat una actualització."; +$a->strings["%1\$s is currently %2\$s"] = ""; +$a->strings["Mood"] = ""; +$a->strings["Set your current mood and tell your friends"] = ""; $a->strings["Image uploaded but image cropping failed."] = "Imatge pujada però no es va poder retallar."; $a->strings["Image size reduction [%s] failed."] = "La reducció de la imatge [%s] va fracassar."; $a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Recarregui la pàgina o netegi la caché del navegador si la nova foto no apareix immediatament."; $a->strings["Unable to process image"] = "No es pot processar la imatge"; $a->strings["Image exceeds size limit of %d"] = "La imatge sobrepassa el límit de mida de %d"; $a->strings["Upload File:"] = "Pujar arxiu:"; -$a->strings["Upload Profile Photo"] = "Pujar Foto del Perfil"; +$a->strings["Select a profile:"] = ""; $a->strings["Upload"] = "Pujar"; $a->strings["skip this step"] = "saltar aquest pas"; $a->strings["select a photo from your photo albums"] = "tria una foto dels teus àlbums"; @@ -601,35 +722,43 @@ $a->strings["No profile"] = "Sense perfil"; $a->strings["Remove My Account"] = "Eliminar el Meu Compte"; $a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Això eliminarà per complet el seu compte. Quan s'hagi fet això, no serà recuperable."; $a->strings["Please enter your password for verification:"] = "Si us plau, introduïu la contrasenya per a la verificació:"; -$a->strings["No recipient selected."] = "No s'ha seleccionat destinatari."; -$a->strings["Unable to locate contact information."] = "No es pot trobar informació de contacte."; -$a->strings["Message could not be sent."] = "El Missatge no ha estat enviat."; -$a->strings["Message collection failure."] = "Ha fallat la recollida del missatge."; -$a->strings["Message sent."] = "Missatge enviat."; -$a->strings["Inbox"] = "Safata d'entrada"; -$a->strings["Outbox"] = "Safata de sortida"; $a->strings["New Message"] = "Nou Missatge"; +$a->strings["Unable to locate contact information."] = "No es pot trobar informació de contacte."; $a->strings["Message deleted."] = "Missatge eliminat."; $a->strings["Conversation removed."] = "Conversació esborrada."; -$a->strings["Please enter a link URL:"] = "Sius plau, entri l'enllaç URL:"; -$a->strings["Send Private Message"] = "Enviant Missatge Privat"; -$a->strings["To:"] = "Per a:"; -$a->strings["Subject:"] = "Assumpte::"; -$a->strings["Your message:"] = "El teu missatge:"; $a->strings["No messages."] = "Sense missatges."; +$a->strings["Unknown sender - %s"] = "remitent desconegut - %s"; +$a->strings["You and %s"] = "Tu i %s"; +$a->strings["%s and You"] = "%s i Tu"; $a->strings["Delete conversation"] = "Esborrar conversació"; $a->strings["D, d M Y - g:i A"] = "D, d M Y - g:i A"; +$a->strings["%d message"] = array( + 0 => "%d missatge", + 1 => "%d missatges", +); $a->strings["Message not available."] = "Missatge no disponible."; $a->strings["Delete message"] = "Esborra missatge"; +$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Comunicacions degures no disponibles. Tú pots respondre des de la pàgina de perfil del remitent."; $a->strings["Send Reply"] = "Enviar Resposta"; $a->strings["Friends of %s"] = "Amics de %s"; $a->strings["No friends to display."] = "No hi ha amics que mostrar"; +$a->strings["Theme settings updated."] = "Ajustos de Tema actualitzats"; $a->strings["Site"] = "Lloc"; $a->strings["Users"] = "Usuaris"; $a->strings["Plugins"] = "Plugins"; $a->strings["Themes"] = "Temes"; -$a->strings["Logs"] = "Transcripcions"; +$a->strings["DB updates"] = "Actualitzacions de BD"; +$a->strings["Logs"] = "Registres"; +$a->strings["Admin"] = "Admin"; +$a->strings["Plugin Features"] = "Característiques del Plugin"; $a->strings["User registrations waiting for confirmation"] = "Registre d'usuari a l'espera de confirmació"; +$a->strings["Normal Account"] = "Compte Normal"; +$a->strings["Soapbox Account"] = "Compte Tribuna"; +$a->strings["Community/Celebrity Account"] = "Compte de Comunitat/Celebritat"; +$a->strings["Automatic Friend Account"] = "Compte d'Amistat Automàtic"; +$a->strings["Blog Account"] = "Compte de Blog"; +$a->strings["Private Forum"] = "Fòrum Privat"; +$a->strings["Message queues"] = "Cues de missatges"; $a->strings["Administration"] = "Administració"; $a->strings["Summary"] = "Sumari"; $a->strings["Registered users"] = "Usuaris registrats"; @@ -640,39 +769,52 @@ $a->strings["Site settings updated."] = "Ajustos del lloc actualitzats."; $a->strings["Closed"] = "Tancat"; $a->strings["Requires approval"] = "Requereix aprovació"; $a->strings["Open"] = "Obert"; +$a->strings["No SSL policy, links will track page SSL state"] = "No existe una política de SSL, se hará un seguimiento de los vínculos de la página con SSL"; +$a->strings["Force all links to use SSL"] = "Forzar a tots els enllaços a utilitzar SSL"; +$a->strings["Self-signed certificate, use SSL for local links only (discouraged)"] = "Certificat auto-signat, utilitzar SSL només per a enllaços locals (desaconsellat)"; $a->strings["File upload"] = "Fitxer carregat"; $a->strings["Policies"] = "Polítiques"; $a->strings["Advanced"] = "Avançat"; $a->strings["Site name"] = "Nom del lloc"; $a->strings["Banner/Logo"] = "Senyera/Logo"; -$a->strings["System language"] = "Idioma del Systema"; +$a->strings["System language"] = "Idioma del Sistema"; $a->strings["System theme"] = "Tema del sistema"; -$a->strings["Default system theme - may be over-ridden by user profiles"] = "Tema per defecte del sitema - pot ser canviat als perfils dels usuaris"; +$a->strings["Default system theme - may be over-ridden by user profiles - change theme settings"] = "Tema per defecte del sistema - pot ser obviat pels perfils del usuari - Canviar ajustos de tema"; +$a->strings["Mobile system theme"] = ""; +$a->strings["Theme for mobile devices"] = ""; +$a->strings["SSL link policy"] = "Política SSL per als enllaços"; +$a->strings["Determines whether generated links should be forced to use SSL"] = "Determina si els enllaços generats han de ser forçats a utilitzar SSL"; $a->strings["Maximum image size"] = "Mida màxima de les imatges"; $a->strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Mida màxima en bytes de les imatges a pujar. Per defecte es 0, que vol dir sense límits."; +$a->strings["Maximum image length"] = ""; +$a->strings["Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits."] = ""; +$a->strings["JPEG image quality"] = ""; +$a->strings["Uploaded JPEGS will be saved at this quality setting [0-100]. Default is 100, which is full quality."] = ""; $a->strings["Register policy"] = "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["Will be displayed prominently on the registration page."] = "Serà mostrat de forma preminent a la pàgina 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 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["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["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"; $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"] = "Llista de dominis separada per comes, de adreçes de correu que són permeses per registrtar-se. S'admeten comodins. Deixa'l buit per a acceptar tots els dominis."; $a->strings["Block public"] = "Bloqueig públic"; -$a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = "Bloqueija l'accés públic a qualsevol pàgina del lloc fins que t'hagis identificat."; +$a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = "Bloqueja l'accés públic a qualsevol pàgina del lloc fins que t'hagis identificat."; $a->strings["Force publish"] = "Forçar publicació"; $a->strings["Check to force all profiles on this site to be listed in the site directory."] = "Obliga a que tots el perfils en aquest lloc siguin mostrats en el directori del lloc."; $a->strings["Global directory update URL"] = "Actualitzar URL del directori global"; $a->strings["URL to update the global directory. If this is not set, the global directory is completely unavailable to the application."] = "URL per actualitzar el directori global. Si no es configura, el directori global serà completament inaccesible per a l'aplicació. "; +$a->strings["Allow threaded items"] = ""; +$a->strings["Allow infinite level threading for items on this site."] = ""; +$a->strings["Private posts by default for new users"] = ""; +$a->strings["Set default post permissions for all new members to the default privacy group rather than public."] = ""; $a->strings["Block multiple registrations"] = "Bloquejar multiples registracions"; $a->strings["Disallow users to register additional accounts for use as pages."] = "Inhabilita als usuaris el crear comptes adicionals per a usar com a pàgines."; $a->strings["OpenID support"] = "Suport per a OpenID"; $a->strings["OpenID support for registration and logins."] = "Suport per a registre i validació a OpenID."; -$a->strings["Gravatar support"] = "Suport per a gravatar"; -$a->strings["Search new user's photo on Gravatar."] = "Cerca la nova foto d'usuari a Gravatar."; $a->strings["Fullname check"] = "Comprobació de nom complet"; -$a->strings["Force users to register with a space between firstname and lastname in Full name, as an antispam measure"] = "Obliga els usuaris a col·locar un espai en blanc entre nom i cognoms, com a mesura antifemater"; +$a->strings["Force users to register with a space between firstname and lastname in Full name, as an antispam measure"] = "Obliga els usuaris a col·locar un espai en blanc entre nom i cognoms, com a mesura antispam"; $a->strings["UTF-8 Regular expressions"] = "expresions regulars UTF-8"; $a->strings["Use PHP UTF8 regular expressions"] = "Empri expresions regulars de PHP amb format UTF8"; $a->strings["Show Community Page"] = "Mostra la Pàgina de Comunitat"; @@ -689,6 +831,22 @@ $a->strings["Proxy user"] = "proxy d'usuari"; $a->strings["Proxy URL"] = "URL del proxy"; $a->strings["Network timeout"] = "Temps excedit a la xarxa"; $a->strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "Valor en segons. Canviat a 0 es sense límits (no recomenat)"; +$a->strings["Delivery interval"] = "Interval d'entrega"; +$a->strings["Delay background delivery processes by this many seconds to reduce system load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 for large dedicated servers."] = "Retardar processos d'entrega, en segon pla, en aquesta quantitat de segons, per reduir la càrrega del sistema . Recomanem : 4-5 per als servidors compartits , 2-3 per a servidors privats virtuals . 0-1 per els grans servidors dedicats."; +$a->strings["Poll interval"] = "Interval entre sondejos"; +$a->strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "Endarrerir els processos de sondeig en segon pla durant aquest període, en segons, per tal de reduir la càrrega de treball del sistema, Si s'empra 0, s'utilitza l'interval d'entregues. "; +$a->strings["Maximum Load Average"] = "Càrrega Màxima Sostinguda"; +$a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Càrrega màxima del sistema abans d'apaçar els processos d'entrega i sondeig - predeterminat a 50."; +$a->strings["Update has been marked successful"] = "L'actualització ha estat marcada amb èxit"; +$a->strings["Executing %s failed. Check system logs."] = "Ha fracassat l'execució de %s. Comprova el registre del sistema."; +$a->strings["Update %s was successfully applied."] = "L'actualització de %s es va aplicar amb èxit."; +$a->strings["Update %s did not return a status. Unknown if it succeeded."] = "L'actualització de %s no ha retornat el seu estatus. Es desconeix si ha estat amb èxit."; +$a->strings["Update function %s could not be found."] = "L'actualització de la funció %s no es pot trobar."; +$a->strings["No failed updates."] = "No hi ha actualitzacions fallides."; +$a->strings["Failed Updates"] = "Actualitzacions Fallides"; +$a->strings["This does not include updates prior to 1139, which did not return a status."] = "Això no inclou actualitzacions anteriors a 1139, raó per la que no ha retornat l'estatus."; +$a->strings["Mark success (if update was manually applied)"] = "Marcat am èxit (si l'actualització es va fer manualment)"; +$a->strings["Attempt to execute this update step automatically"] = "Intentant executar aquest pas d'actualització automàticament"; $a->strings["%s user blocked/unblocked"] = array( 0 => "%s usuari bloquejar/desbloquejar", 1 => "%s usuaris bloquejar/desbloquejar", @@ -706,6 +864,7 @@ $a->strings["Request date"] = "Data de sol·licitud"; $a->strings["Email"] = "Correu"; $a->strings["No registrations."] = "Sense registres."; $a->strings["Deny"] = "Denegar"; +$a->strings["Site admin"] = ""; $a->strings["Register date"] = "Data de registre"; $a->strings["Last login"] = "Últim accés"; $a->strings["Last item"] = "Últim element"; @@ -717,16 +876,16 @@ $a->strings["Plugin %s enabled."] = "Plugin %s habilitat."; $a->strings["Disable"] = "Deshabilitar"; $a->strings["Enable"] = "Habilitar"; $a->strings["Toggle"] = "Canviar"; -$a->strings["Settings"] = "Ajustos"; $a->strings["Author: "] = "Autor:"; $a->strings["Maintainer: "] = "Encarregat:"; $a->strings["No themes found."] = "No s'ha trobat temes."; +$a->strings["Screenshot"] = "Captura de pantalla"; $a->strings["[Experimental]"] = "[Experimental]"; $a->strings["[Unsupported]"] = "[No soportat]"; -$a->strings["Log settings updated."] = "Configuració del transcriptor actualitzada."; +$a->strings["Log settings updated."] = "Configuració del registre actualitzada."; $a->strings["Clear"] = "Netejar"; $a->strings["Debugging"] = "Esplugar"; -$a->strings["Log file"] = "Arxiu de transcripció"; +$a->strings["Log file"] = "Arxiu de registre"; $a->strings["Must be writable by web server. Relative to your Friendica top-level directory."] = "Ha de tenir permisos d'escriptura pel servidor web. En relació amb el seu directori Friendica de nivell superior."; $a->strings["Log level"] = "Nivell de transcripció"; $a->strings["Close"] = "Tancar"; @@ -747,26 +906,39 @@ $a->strings["{0} is now friends with %s"] = "{0} ara és amic de %s"; $a->strings["{0} posted"] = "{0} publicat"; $a->strings["{0} tagged %s's post with #%s"] = "{0} va etiquetar la publicació de %s com #%s"; $a->strings["{0} mentioned you in a post"] = "{0} et menciona en un missatge"; +$a->strings["Contacts who are not members of a group"] = "Contactes que no pertanyen a cap grup"; +$a->strings["OpenID protocol error. No ID returned."] = "Error al protocol OpenID. No ha retornat ID."; +$a->strings["Account not found and OpenID registration is not permitted on this site."] = "Compte no trobat i el registrar-se amb OpenID no està permès en aquest lloc."; $a->strings["Login failed."] = "Error d'accés."; -$a->strings["Connect URL missing."] = "URL del connector perduda."; -$a->strings["This site is not configured to allow communications with other networks."] = "Aquest lloc no està configurat per permetre les comunicacions amb altres xarxes."; -$a->strings["No compatible communication protocols or feeds were discovered."] = "Protocol de comunnicació no compatible o alimentador descobert."; -$a->strings["The profile address specified does not provide adequate information."] = "L'adreça de perfil especificada no proveeix informació adient."; -$a->strings["An author or name was not found."] = "Un autor o nom no va ser trobat"; -$a->strings["No browser URL could be matched to this address."] = "Cap direcció URL del navegador coincideix amb aquesta adreça."; -$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "La direcció del perfil especificat pertany a una xarxa que ha estat desactivada en aquest lloc."; -$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Perfil limitat. Aquesta persona no podrà rebre notificacions personals/directes de tu."; -$a->strings["Unable to retrieve contact information."] = "No es pot recuperar la informació de contacte."; -$a->strings["following"] = "seguint"; +$a->strings["Contact added"] = "Contacte afegit"; $a->strings["Common Friends"] = "Amics Comuns"; -$a->strings["No friends in common."] = "No hi ha amics en comú."; +$a->strings["No contacts in common."] = "Sense contactes en comú."; +$a->strings["link"] = "enllaç"; $a->strings["Item has been removed."] = "El element ha estat esborrat."; $a->strings["Applications"] = "Aplicacions"; $a->strings["No installed applications."] = "Aplicacions no instal·lades."; -$a->strings["Search This Site"] = "Cerca en Aquest Lloc"; +$a->strings["Search"] = "Cercar"; $a->strings["Profile not found."] = "Perfil no trobat."; $a->strings["Profile Name is required."] = "Nom de perfil requerit."; +$a->strings["Marital Status"] = "Estatus Marital"; +$a->strings["Romantic Partner"] = "Soci Romàntic"; +$a->strings["Likes"] = "Agrada"; +$a->strings["Dislikes"] = "No agrada"; +$a->strings["Work/Employment"] = "Treball/Ocupació"; +$a->strings["Religion"] = "Religió"; +$a->strings["Political Views"] = "Idees Polítiques"; +$a->strings["Gender"] = "Gènere"; +$a->strings["Sexual Preference"] = "Preferència sexual"; +$a->strings["Homepage"] = "Inici"; +$a->strings["Interests"] = "Interesos"; +$a->strings["Address"] = "Adreça"; +$a->strings["Location"] = "Ubicació"; $a->strings["Profile updated."] = "Perfil actualitzat."; +$a->strings[" and "] = " i "; +$a->strings["public profile"] = "perfil públic"; +$a->strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s s'ha canviat de %2\$s a “%3\$s”"; +$a->strings[" - Visit %1\$s's %2\$s"] = " - Visita %1\$s de %2\$s"; +$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s te una actualització %2\$s, canviant %3\$s."; $a->strings["Profile deleted."] = "Perfil esborrat."; $a->strings["Profile-"] = "Perfil-"; $a->strings["New profile created."] = "Nou perfil creat."; @@ -786,16 +958,20 @@ $a->strings["Street Address:"] = "Direcció:"; $a->strings["Locality/City:"] = "Localitat/Ciutat:"; $a->strings["Postal/Zip Code:"] = "Codi Postal:"; $a->strings["Country:"] = "País"; -$a->strings["Region/State:"] = "Región/Estat:"; +$a->strings["Region/State:"] = "Regió/Estat:"; $a->strings[" Marital Status:"] = " Estat Civil:"; $a->strings["Who: (if applicable)"] = "Qui? (si és aplicable)"; $a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Exemples: cathy123, Cathy Williams, cathy@example.com"; +$a->strings["Since [date]:"] = "Des de [data]"; $a->strings["Sexual Preference:"] = "Preferència Sexual:"; $a->strings["Homepage URL:"] = "Pàgina web URL:"; +$a->strings["Hometown:"] = "Lloc de residència:"; $a->strings["Political Views:"] = "Idees Polítiques:"; $a->strings["Religious Views:"] = "Creencies Religioses:"; $a->strings["Public Keywords:"] = "Paraules Clau Públiques"; $a->strings["Private Keywords:"] = "Paraules Clau Privades:"; +$a->strings["Likes:"] = "Agrada:"; +$a->strings["Dislikes:"] = "No Agrada"; $a->strings["Example: fishing photography software"] = "Exemple: pesca fotografia programari"; $a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(Emprat per suggerir potencials amics, Altres poden veure-ho)"; $a->strings["(Used for searching profiles, never shown to others)"] = "(Emprat durant la cerca de perfils, mai mostrat a ningú)"; @@ -817,6 +993,8 @@ $a->strings["Create New Profile"] = "Crear un Nou Perfil"; $a->strings["Profile Image"] = "Imatge del Perfil"; $a->strings["visible to everybody"] = "Visible per tothom"; $a->strings["Edit visibility"] = "Editar visibilitat"; +$a->strings["Save to Folder:"] = "Guardar a la Carpeta:"; +$a->strings["- select -"] = "- seleccionar -"; $a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s etiquetats %2\$s %3\$s amb %4\$s"; $a->strings["No potential page delegates located."] = "No es troben pàgines potencialment delegades."; $a->strings["Delegate Page Management"] = "Gestió de les Pàgines Delegades"; @@ -826,30 +1004,47 @@ $a->strings["Existing Page Delegates"] = "Actuals Delegats de Pàgina"; $a->strings["Potential Delegates"] = "Delegats Potencials"; $a->strings["Add"] = "Afegir"; $a->strings["No entries."] = "Sense entrades"; +$a->strings["Source (bbcode) text:"] = "Text Codi (bbcode): "; +$a->strings["Source (Diaspora) text to convert to BBcode:"] = "Font (Diaspora) Convertir text a BBcode"; +$a->strings["Source input: "] = "Entrada de Codi:"; +$a->strings["bb2html: "] = "bb2html: "; +$a->strings["bb2html2bb: "] = "bb2html2bb: "; +$a->strings["bb2md: "] = "bb2md: "; +$a->strings["bb2md2html: "] = "bb2md2html: "; +$a->strings["bb2dia2bb: "] = "bb2dia2bb: "; +$a->strings["bb2md2html2bb: "] = "bb2md2html2bb: "; +$a->strings["Source input (Diaspora format): "] = "Font d'entrada (format de Diaspora)"; +$a->strings["diaspora2bb: "] = "diaspora2bb: "; $a->strings["Friend Suggestions"] = "Amics Suggerits"; $a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Cap suggeriment disponible. Si això és un nou lloc, si us plau torna a intentar en 24 hores."; $a->strings["Ignore/Hide"] = "Ignorar/Amagar"; $a->strings["Global Directory"] = "Directori Global"; -$a->strings["Normal site view"] = "Vista normal del lloc"; -$a->strings["Admin - View all site entries"] = "Admin- Veure totes les entrades del lloc"; $a->strings["Find on this site"] = "Trobat en aquest lloc"; $a->strings["Site Directory"] = "Directori Local"; $a->strings["Gender: "] = "Gènere:"; +$a->strings["Gender:"] = "Gènere:"; +$a->strings["Status:"] = "Estatus:"; +$a->strings["Homepage:"] = "Pàgina web:"; +$a->strings["About:"] = "Acerca de:"; $a->strings["No entries (some entries may be hidden)."] = "No hi ha entrades (algunes de les entrades poden estar amagades)."; $a->strings["%s : Not a valid email address."] = "%s : No es una adreça de correu vàlida"; -$a->strings["Please join my network on %s"] = "Si us plau, uneix-te a la meva xarxa en %s"; +$a->strings["Please join us on Friendica"] = "Per favor, uneixi's a nosaltres en Friendica"; $a->strings["%s : Message delivery failed."] = "%s : Ha fallat l'entrega del missatge."; $a->strings["%d message sent."] = array( 0 => "%d missatge enviat", 1 => "%d missatges enviats.", ); $a->strings["You have no more invitations available"] = "No te més invitacions disponibles"; +$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."] = "Visita %s per a una llista de llocs públics on unir-te. Els membres de Friendica d'altres llocs poden connectar-se de forma total, així com amb membres de moltes altres xarxes socials."; +$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "Per acceptar aquesta invitació, per favor visita i registra't a %s o en qualsevol altre pàgina web pública Friendica."; +$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."] = "Tots els llocs Friendica estàn interconnectats per crear una web social amb privacitat millorada, controlada i propietat dels seus membres. També poden connectar amb moltes xarxes socials tradicionals. Consulteu %s per a una llista de llocs de Friendica alternatius en que pot inscriure's."; +$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Nostres disculpes. Aquest sistema no està configurat actualment per connectar amb altres llocs públics o convidar als membres."; $a->strings["Send invitations"] = "Enviant Invitacions"; $a->strings["Enter email addresses, one per line:"] = "Entri adreçes de correu, una per línia:"; -$a->strings["Please join my social network on %s"] = "Per favor, uneix-te a la meva xarxa social en %s"; -$a->strings["To accept this invitation, please visit:"] = "Per acceptar aquesta invitació, si us plau, visiti:"; +$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "Estàs cordialment convidat a ajuntarte a mi i altres amics propers en Friendica - i ajudar-nos a crear una millor web social."; $a->strings["You will need to supply this invitation code: \$invite_code"] = "Vostè haurà de proporcionar aquest codi d'invitació: \$invite_code"; $a->strings["Once you have registered, please connect with me via my profile page at:"] = "Un cop registrat, si us plau contactar amb mi a través de la meva pàgina de perfil a:"; +$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "Per a més informació sobre el projecte Friendica i perque creiem que això es important, per favor, visita http://friendica.com"; $a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "Això pot ocorre ocasionalment si el contacte fa una petició per ambdues persones i ja han estat aprovades."; $a->strings["Response from remote site was not understood."] = "La resposta des del lloc remot no s'entenia."; $a->strings["Unexpected response from remote site: "] = "Resposta inesperada de lloc remot:"; @@ -868,6 +1063,11 @@ $a->strings["The ID provided by your system is a duplicate on our system. It sho $a->strings["Unable to set your contact credentials on our system."] = "No es pot canviar les seves credencials de contacte en el nostre sistema."; $a->strings["Unable to update your contact profile details on our system"] = "No es pot actualitzar els detalls del seu perfil de contacte en el nostre sistema"; $a->strings["Connection accepted at %s"] = "Connexió acceptada en %s"; +$a->strings["%1\$s has joined %2\$s"] = "%1\$s s'ha unit a %2\$s"; +$a->strings["Google+ Import Settings"] = "Ajustos Google+ Import"; +$a->strings["Enable Google+ Import"] = "Habilita Google+ Import"; +$a->strings["Google Account ID"] = "ID del compte Google"; +$a->strings["Google+ Import Settings saved."] = "Ajustos Google+ Import guardats."; $a->strings["Facebook disabled"] = "Facebook deshabilitat"; $a->strings["Updating contacts"] = "Actualitzant contactes"; $a->strings["Facebook API key is missing."] = "La clau del API de Facebook s'ha perdut."; @@ -876,22 +1076,56 @@ $a->strings["Install Facebook connector for this account."] = "Instal·lar el co $a->strings["Remove Facebook connector"] = "Eliminar el connector de Faceboook"; $a->strings["Re-authenticate [This is necessary whenever your Facebook password is changed.]"] = "Re-autentificar [Això és necessari cada vegada que la contrasenya de Facebook canvia.]"; $a->strings["Post to Facebook by default"] = "Enviar a Facebook per defecte"; +$a->strings["Facebook friend linking has been disabled on this site. The following settings will have no effect."] = "La vinculació amb amics de Facebook s'ha deshabilitat en aquest lloc. Els ajustos que facis no faran efecte."; +$a->strings["Facebook friend linking has been disabled on this site. If you disable it, you will be unable to re-enable it."] = "La vinculació amb amics de Facebook s'ha deshabilitat en aquest lloc. Si esta deshabilitat, no es pot utilitzar."; $a->strings["Link all your Facebook friends and conversations on this website"] = "Enllaça tots els teus amics i les converses de Facebook en aquest lloc web"; -$a->strings["Facebook conversations consist of your profile wall and your friend stream."] = "Les converses de Facebook consisteixen en el perfil del mur i en el stream del seu amic."; -$a->strings["On this website, your Facebook friend stream is only visible to you."] = "En aquesta pàgina web, el stream del seu amic a Facebook només és visible per a vostè."; +$a->strings["Facebook conversations consist of your profile wall and your friend stream."] = "Les converses de Facebook consisteixen en el perfil del mur i en el flux del seu amic."; +$a->strings["On this website, your Facebook friend stream is only visible to you."] = "En aquesta pàgina web, el flux del seu amic a Facebook només és visible per a vostè."; $a->strings["The following settings determine the privacy of your Facebook profile wall on this website."] = "Les següents opcions determinen la privacitat del mur del seu perfil de Facebook en aquest lloc web."; $a->strings["On this website your Facebook profile wall conversations will only be visible to you"] = "En aquesta pàgina web les seves converses al mur del perfil de Facebook només seran visible per a vostè"; $a->strings["Do not import your Facebook profile wall conversations"] = "No importi les seves converses del mur del perfil de Facebook"; $a->strings["If you choose to link conversations and leave both of these boxes unchecked, your Facebook profile wall will be merged with your profile wall on this website and your privacy settings on this website will be used to determine who may see the conversations."] = "Si opta per vincular les converses i deixar ambdues caselles sense marcar, el mur del seu perfil de Facebook es fusionarà amb el mur del seu perfil en aquest lloc web i la seva configuració de privacitat en aquest website serà utilitzada per determinar qui pot veure les converses."; $a->strings["Comma separated applications to ignore"] = "Separats per comes les aplicacions a ignorar"; -$a->strings["Facebook"] = "Facebook"; +$a->strings["Problems with Facebook Real-Time Updates"] = "Problemes amb Actualitzacions en Temps Real a Facebook"; $a->strings["Facebook Connector Settings"] = "Ajustos del Connector de Facebook"; +$a->strings["Facebook API Key"] = "Facebook API Key"; +$a->strings["Error: it appears that you have specified the App-ID and -Secret in your .htconfig.php file. As long as they are specified there, they cannot be set using this form.

    "] = "Error: Apareix que has especificat el App-ID i el Secret en el arxiu .htconfig.php. Per estar especificat allà, no pot ser canviat utilitzant aquest formulari.

    "; +$a->strings["Error: the given API Key seems to be incorrect (the application access token could not be retrieved)."] = "Error: la API Key facilitada sembla incorrecta (no es va poder recuperar el token d'accés de l'aplicatiu)."; +$a->strings["The given API Key seems to work correctly."] = "La API Key facilitada sembla treballar correctament."; +$a->strings["The correctness of the API Key could not be detected. Something strange's going on."] = "La correcció de la API key no pot ser detectada. Quelcom estrany ha succeït."; +$a->strings["App-ID / API-Key"] = "App-ID / API-Key"; +$a->strings["Application secret"] = "Application secret"; +$a->strings["Polling Interval in minutes (minimum %1\$s minutes)"] = "Interval entre sondejos en minuts (mínim %1s minuts)"; +$a->strings["Synchronize comments (no comments on Facebook are missed, at the cost of increased system load)"] = "Sincronitzar els comentaris (els comentaris a Facebook es perden, a costa de la major càrrega del sistema)"; +$a->strings["Real-Time Updates"] = "Actualitzacions en Temps Real"; +$a->strings["Real-Time Updates are activated."] = "Actualitzacions en Temps Real està activat."; +$a->strings["Deactivate Real-Time Updates"] = "Actualitzacions en Temps Real Desactivat"; +$a->strings["Real-Time Updates not activated."] = "Actualitzacions en Temps Real no activat."; +$a->strings["Activate Real-Time Updates"] = "Actualitzacions en Temps Real Activat"; +$a->strings["The new values have been saved."] = "Els nous valors s'han guardat."; $a->strings["Post to Facebook"] = "Enviament a Facebook"; $a->strings["Post to Facebook cancelled because of multi-network access permission conflict."] = "Enviament a Facebook cancel·lat perque hi ha un conflicte de permisos d'accés multi-xarxa."; -$a->strings["Image: "] = "Imatge:"; $a->strings["View on Friendica"] = "Vist en Friendica"; $a->strings["Facebook post failed. Queued for retry."] = "Enviament a Facebook fracassat. En cua per a reintent."; -$a->strings["link"] = "enllaç"; +$a->strings["Your Facebook connection became invalid. Please Re-authenticate."] = "La seva connexió a Facebook es va convertir en no vàlida. Per favor, torni a autenticar-se"; +$a->strings["Facebook connection became invalid"] = "La seva connexió a Facebook es va convertir en no vàlida"; +$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\nLa connexió entre els teus comptes en %2\$s i Facebook s'han tornat no vàlides. Això passa normalment quan canvies la contrasenya de Facebook. Per activar la conexió novament has de %3\$sre-autenticar el connector de Facebook%4\$s."; +$a->strings["StatusNet AutoFollow settings updated."] = "Ajustos de AutoSeguiment a StatusNet actualitzats."; +$a->strings["StatusNet AutoFollow Settings"] = "Ajustos de AutoSeguiment a StatusNet"; +$a->strings["Automatically follow any StatusNet followers/mentioners"] = "Segueix Automaticament qualsevol seguidor/mencionador de StatusNet"; +$a->strings["Bg settings updated."] = "Ajustos de Bg actualitzats."; +$a->strings["Bg Settings"] = "Ajustos de Bg"; +$a->strings["How many contacts to display on profile sidebar"] = "Quants contactes per mostrar a la barra lateral el perfil"; +$a->strings["Lifetime of the cache (in hours)"] = "Temps de vida de la caché (en hores)"; +$a->strings["Cache Statistics"] = "Estadístiques de la caché"; +$a->strings["Number of items"] = "Nombre d'elements"; +$a->strings["Size of the cache"] = "Mida de la caché"; +$a->strings["Delete the whole cache"] = "Esborra tota la cachè"; +$a->strings["Facebook Post disabled"] = ""; +$a->strings["Facebook Post"] = ""; +$a->strings["Install Facebook Post connector for this account."] = ""; +$a->strings["Remove Facebook Post connector"] = ""; +$a->strings["Facebook Post Settings"] = ""; $a->strings["%d person likes this"] = array( 0 => "%d persona li agrada això", 1 => "%d persones els agrada això", @@ -900,10 +1134,47 @@ $a->strings["%d person doesn't like this"] = array( 0 => "%d persona no li agrada això", 1 => "%d persones no els agrada això", ); +$a->strings["Get added to this list!"] = "S'afegeixen a aquesta llista!"; $a->strings["Generate new key"] = "Generar nova clau"; $a->strings["Widgets key"] = "Ginys clau"; $a->strings["Widgets available"] = "Ginys disponibles"; $a->strings["Connect on Friendica!"] = "Connectar en Friendica"; +$a->strings["bitchslap"] = ""; +$a->strings["bitchslapped"] = ""; +$a->strings["shag"] = ""; +$a->strings["shagged"] = ""; +$a->strings["do something obscenely biological to"] = ""; +$a->strings["did something obscenely biological to"] = ""; +$a->strings["point out the poke feature to"] = ""; +$a->strings["pointed out the poke feature to"] = ""; +$a->strings["declare undying love for"] = ""; +$a->strings["declared undying love for"] = ""; +$a->strings["patent"] = ""; +$a->strings["patented"] = ""; +$a->strings["stroke beard"] = ""; +$a->strings["stroked their beard at"] = ""; +$a->strings["bemoan the declining standards of modern secondary and tertiary education to"] = ""; +$a->strings["bemoans the declining standards of modern secondary and tertiary education to"] = ""; +$a->strings["hug"] = ""; +$a->strings["hugged"] = ""; +$a->strings["kiss"] = ""; +$a->strings["kissed"] = ""; +$a->strings["raise eyebrows at"] = ""; +$a->strings["raised their eyebrows at"] = ""; +$a->strings["insult"] = ""; +$a->strings["insulted"] = ""; +$a->strings["praise"] = ""; +$a->strings["praised"] = ""; +$a->strings["be dubious of"] = ""; +$a->strings["was dubious of"] = ""; +$a->strings["eat"] = ""; +$a->strings["ate"] = ""; +$a->strings["giggle and fawn at"] = ""; +$a->strings["giggled and fawned at"] = ""; +$a->strings["doubt"] = ""; +$a->strings["doubted"] = ""; +$a->strings["glare"] = ""; +$a->strings["glared at"] = ""; $a->strings["YourLS Settings"] = "La Teva Configuració de LS"; $a->strings["URL: http://"] = "URL: http://"; $a->strings["Username:"] = "Nom d'usuari:"; @@ -916,20 +1187,152 @@ $a->strings["Enable LiveJournal Post Plugin"] = "Habilitat el plugin d'enviament $a->strings["LiveJournal username"] = "Nom d'usuari a Livejournal"; $a->strings["LiveJournal password"] = "Contrasenya a Livejournal"; $a->strings["Post to LiveJournal by default"] = "Enviar per defecte a Livejournal"; -$a->strings["\"Not Safe For Work\" Settings"] = "Configuració de \"Not Safe For Work\""; -$a->strings["Enable NSFW filter"] = "Habilitar el filtre NSFW"; -$a->strings["Comma separated words to treat as NSFW"] = "Tractar com NSFW les paraules separades per comes "; +$a->strings["Not Safe For Work (General Purpose Content Filter) settings"] = "Ajustos, Not Safe For Work (Filtre de Contingut de Propòsit General)"; +$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."] = "Aquest plugin es veu en enviaments amb les paraules/text que s'especifiquen a continuació , i amagarà qualsevol contingut que contingui les paraules clau de manera que no apareguin en moments inapropiats, com ara insinuacions sexuals que poden ser inadequades en un entorn de treball. És de bona educació i es recomana etiquetar qualsevol contingut que contingui nus amb #NSFW. Aquest filtre també es pot fer coincidir amb qualsevol paraula/text que especifiqueu, i per tant pot ser utilitzat com un filtre general de contingut."; +$a->strings["Enable Content filter"] = "Activat el filtre de Contingut"; +$a->strings["Comma separated list of keywords to hide"] = "Llista separada per comes de paraules clau per ocultar"; $a->strings["Use /expression/ to provide regular expressions"] = "Emprar /expressió/ per a proporcionar expressions regulars"; $a->strings["NSFW Settings saved."] = "Configuració NSFW guardada."; $a->strings["%s - Click to open/close"] = "%s - Clicar per obrir/tancar"; +$a->strings["Forums"] = "Forums"; +$a->strings["Forums:"] = "Fòrums:"; +$a->strings["Page settings updated."] = "Actualitzats els ajustos de pàgina."; +$a->strings["Page Settings"] = "Ajustos de pàgina"; +$a->strings["How many forums to display on sidebar without paging"] = "Quants fòrums per mostrar a la barra lateral per pàgina"; +$a->strings["Randomise Page/Forum list"] = "Aleatoritza la llista de Pàgina/Fòrum"; +$a->strings["Show pages/forums on profile page"] = "Mostra pàgines/fòrums a la pàgina de perfil"; +$a->strings["Planets Settings"] = "Ajustos de Planet"; +$a->strings["Enable Planets Plugin"] = "Activa Plugin de Planet"; $a->strings["Login"] = "Identifica't"; $a->strings["OpenID"] = "OpenID"; -$a->strings["Last users"] = "Últims usuaris"; -$a->strings["Most active users"] = "Usuaris més actius"; -$a->strings["Last photos"] = "Últimes fotos"; -$a->strings["Last likes"] = "Últims \"m'agrada\""; -$a->strings["event"] = "esdeveniment"; $a->strings["Latest users"] = "Últims usuaris"; +$a->strings["Most active users"] = "Usuaris més actius"; +$a->strings["Latest photos"] = "Darreres fotos"; +$a->strings["Latest likes"] = "Darrers agrada"; +$a->strings["event"] = "esdeveniment"; +$a->strings["No access"] = "Inaccessible"; +$a->strings["Could not open component for editing"] = ""; +$a->strings["Go back to the calendar"] = "Tornar al calendari"; +$a->strings["Event data"] = ""; +$a->strings["Calendar"] = "Calendari"; +$a->strings["Special color"] = ""; +$a->strings["Subject"] = ""; +$a->strings["Starts"] = "Inicia"; +$a->strings["Ends"] = "Finalitza"; +$a->strings["Description"] = "Descripció"; +$a->strings["Recurrence"] = ""; +$a->strings["Frequency"] = ""; +$a->strings["Daily"] = "Diari"; +$a->strings["Weekly"] = "Setmanal"; +$a->strings["Monthly"] = "Mensual"; +$a->strings["Yearly"] = ""; +$a->strings["days"] = "dies"; +$a->strings["weeks"] = "setmanes"; +$a->strings["months"] = "mesos"; +$a->strings["years"] = "anys"; +$a->strings["Interval"] = ""; +$a->strings["All %select% %time%"] = ""; +$a->strings["Days"] = "Dies"; +$a->strings["Sunday"] = "Diumenge"; +$a->strings["Monday"] = "Dilluns"; +$a->strings["Tuesday"] = "Dimarts"; +$a->strings["Wednesday"] = "Dimecres"; +$a->strings["Thursday"] = "Dijous"; +$a->strings["Friday"] = "Divendres"; +$a->strings["Saturday"] = "Dissabte"; +$a->strings["First day of week:"] = ""; +$a->strings["Day of month"] = ""; +$a->strings["#num#th of each month"] = ""; +$a->strings["#num#th-last of each month"] = ""; +$a->strings["#num#th #wkday# of each month"] = ""; +$a->strings["#num#th-last #wkday# of each month"] = ""; +$a->strings["Month"] = "Mes"; +$a->strings["#num#th of the given month"] = ""; +$a->strings["#num#th-last of the given month"] = ""; +$a->strings["#num#th #wkday# of the given month"] = ""; +$a->strings["#num#th-last #wkday# of the given month"] = ""; +$a->strings["Repeat until"] = ""; +$a->strings["Infinite"] = ""; +$a->strings["Until the following date"] = ""; +$a->strings["Number of times"] = ""; +$a->strings["Exceptions"] = ""; +$a->strings["none"] = ""; +$a->strings["Notification"] = "Notificació"; +$a->strings["Notify by"] = ""; +$a->strings["E-Mail"] = ""; +$a->strings["On Friendica / Display"] = ""; +$a->strings["Time"] = ""; +$a->strings["Hours"] = "Hores"; +$a->strings["Minutes"] = "Minuts"; +$a->strings["Seconds"] = ""; +$a->strings["Weeks"] = ""; +$a->strings["before the"] = ""; +$a->strings["start of the event"] = ""; +$a->strings["end of the event"] = ""; +$a->strings["Add a notification"] = ""; +$a->strings["The event #name# will start at #date"] = ""; +$a->strings["#name# is about to begin."] = ""; +$a->strings["Saved"] = ""; +$a->strings["U.S. Time Format (mm/dd/YYYY)"] = "Data en format U.S. (mm/dd/YYY)"; +$a->strings["German Time Format (dd.mm.YYYY)"] = "Data en format Alemany (dd.mm.YYYY)"; +$a->strings["Private Events"] = ""; +$a->strings["Private Addressbooks"] = ""; +$a->strings["Friendica-Native events"] = ""; +$a->strings["Friendica-Contacts"] = "Friendica-Contactes"; +$a->strings["Your Friendica-Contacts"] = "Els teus Contactes a Friendica"; +$a->strings["Something went wrong when trying to import the file. Sorry. Maybe some events were imported anyway."] = ""; +$a->strings["Something went wrong when trying to import the file. Sorry."] = ""; +$a->strings["The ICS-File has been imported."] = ""; +$a->strings["No file was uploaded."] = ""; +$a->strings["Import a ICS-file"] = ""; +$a->strings["ICS-File"] = ""; +$a->strings["Overwrite all #num# existing events"] = ""; +$a->strings["New event"] = "Nou esdeveniment"; +$a->strings["Today"] = "Avui"; +$a->strings["Day"] = "Dia"; +$a->strings["Week"] = "Setmana"; +$a->strings["Reload"] = "Recarregar"; +$a->strings["Date"] = "Data"; +$a->strings["Error"] = "Error"; +$a->strings["The calendar has been updated."] = ""; +$a->strings["The new calendar has been created."] = ""; +$a->strings["The calendar has been deleted."] = ""; +$a->strings["Calendar Settings"] = "Ajustos de Calendari"; +$a->strings["Date format"] = "Format de la data"; +$a->strings["Time zone"] = "Zona horària"; +$a->strings["Calendars"] = ""; +$a->strings["Create a new calendar"] = ""; +$a->strings["Limitations"] = "Limitacions"; +$a->strings["Warning"] = "Avís"; +$a->strings["Synchronization (iPhone, Thunderbird Lightning, Android, ...)"] = "Syncronització (iPhone, Thunderbird Lightning, Android, ...)"; +$a->strings["Synchronizing this calendar with the iPhone"] = "Sncronitzant aquest calendari amb el iPhone"; +$a->strings["Synchronizing your Friendica-Contacts with the iPhone"] = "Sincronitzant els teus contactes a Friendica amb el iPhone"; +$a->strings["The current version of this plugin has not been set up correctly. Please contact the system administrator of your installation of friendica to fix this."] = ""; +$a->strings["Extended calendar with CalDAV-support"] = "Calendari ampliat amb suport CalDAV"; +$a->strings["noreply"] = "no contestar"; +$a->strings["Notification: "] = ""; +$a->strings["The database tables have been installed."] = "Les taules de la base de dades han estat instal·lades."; +$a->strings["An error occurred during the installation."] = "Ha ocorregut un error durant la instal·lació."; +$a->strings["The database tables have been updated."] = ""; +$a->strings["An error occurred during the update."] = ""; +$a->strings["No system-wide settings yet."] = "No tens enllestits els ajustos del sistema."; +$a->strings["Database status"] = "Estat de la base de dades"; +$a->strings["Installed"] = "Instal·lat"; +$a->strings["Upgrade needed"] = "Necessites actualitzar"; +$a->strings["Please back up all calendar data (the tables beginning with dav_*) before proceeding. While all calendar events should be converted to the new database structure, it's always safe to have a backup. Below, you can have a look at the database-queries that will be made when pressing the 'update'-button."] = ""; +$a->strings["Upgrade"] = "Actualització"; +$a->strings["Not installed"] = "No instal·lat"; +$a->strings["Install"] = "Instal·lat"; +$a->strings["Unknown"] = ""; +$a->strings["Something really went wrong. I cannot recover from this state automatically, sorry. Please go to the database backend, back up the data, and delete all tables beginning with 'dav_' manually. Afterwards, this installation routine should be able to reinitialize the tables automatically."] = ""; +$a->strings["Troubleshooting"] = "Solució de problemes"; +$a->strings["Manual creation of the database tables:"] = "Creació manual de les taules de la base de dades:"; +$a->strings["Show SQL-statements"] = "Mostrar instruccions de SQL "; +$a->strings["Private Calendar"] = "Calendari Privat"; +$a->strings["Friendica Events: Mine"] = "Esdeveniments Friendica: Meus"; +$a->strings["Friendica Events: Contacts"] = "Esdeveniments Friendica: Contactes"; +$a->strings["Private Addresses"] = ""; +$a->strings["Friendica Contacts"] = ""; $a->strings["Allow to use your friendica id (%s) to connecto to external unhosted-enabled storage (like ownCloud). See RemoteStorage WebFinger"] = "Permetre l'ús del seu ID de friendica (%s) per Connectar a l'emmagatzematge extern (com ownCloud). Veure WebFinger RemoteStorage "; $a->strings["Template URL (with {category})"] = "Plantilles de URL (amb {categoria})"; $a->strings["OAuth end-point"] = "OAuth end-point"; @@ -965,9 +1368,15 @@ $a->strings["Drupal site URL"] = "URL del lloc Drupal"; $a->strings["Drupal site uses clean URLS"] = "el Lloc Drupal empra URLS netes"; $a->strings["Post to Drupal by default"] = "Enviar a Drupal per defecte"; $a->strings["Post from Friendica"] = "Enviament des de Friendica"; +$a->strings["Startpage Settings"] = "Ajustos de la pàgina d'inici"; +$a->strings["Home page to load after login - leave blank for profile wall"] = "Pàgina personal a carregar després d'accedir - deixar buit pel perfil del mur"; +$a->strings["Examples: "network" or "notifications/system""] = "Exemples: \"xarxa\" o \"notificacions/sistema\""; $a->strings["Geonames settings updated."] = "Actualitzada la configuració de Geonames."; $a->strings["Geonames Settings"] = "Configuració de Geonames"; $a->strings["Enable Geonames Plugin"] = "Habilitar Plugin de Geonames"; +$a->strings["Your account on %s will expire in a few days."] = "El teu compte en %s expirarà en pocs dies."; +$a->strings["Your Friendica account is about to expire."] = "El teu compte de Friendica està a punt de caducar."; +$a->strings["Hi %1\$s,\n\nYour account on %2\$s will expire in less than five days. You may keep your account by logging in at least once every 30 days"] = "Hi %1\$s,\n\nEl teu compte en %2\$s expirara en menys de cinc dies. Pots mantenir el teu compte accedint al menys una vegada cada 30 dies."; $a->strings["Upload a file"] = "Carrega un arxiu"; $a->strings["Drop files here to upload"] = "Deixa aquí el arxiu a carregar"; $a->strings["Failed"] = "Fracassar"; @@ -978,14 +1387,30 @@ $a->strings["Upload was cancelled, or server error encountered"] = "La pujada va $a->strings["OEmbed settings updated"] = "Actualitzar la configuració OEmbed"; $a->strings["Use OEmbed for YouTube videos"] = "Empreu OEmbed per videos YouTube"; $a->strings["URL to embed:"] = "Adreça URL del recurs"; +$a->strings["show/hide"] = "mostra/amaga"; +$a->strings["No forum subscriptions"] = ""; +$a->strings["Forumlist settings updated."] = ""; +$a->strings["Forumlist Settings"] = ""; +$a->strings["Randomise Forumlist/Forum list"] = ""; +$a->strings["Show forumlists/forums on profile forumlist"] = ""; $a->strings["Impressum"] = "Impressum"; $a->strings["Site Owner"] = "Propietari del lloc"; $a->strings["Email Address"] = "Adreça de correu"; $a->strings["Postal Address"] = "Adreça postal"; $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."] = "El complement impressum s'ha de configurar!
    Si us plau afegiu almenys la variable propietari al fitxer de configuració. Per a les altres variables, consulteu el fitxer README del complement."; +$a->strings["The page operators name."] = "Nom de la pàgina del gestor."; $a->strings["Site Owners Profile"] = "Perfil del Propietari del Lloc"; +$a->strings["Profile address of the operator."] = "Adreça del perfil del gestor."; +$a->strings["How to contact the operator via snail mail. You can use BBCode here."] = "Com posar-se en contacte amb l'operador a través de correu postal. Vostè pot utilitzar BBCode aquí."; $a->strings["Notes"] = "Notes"; +$a->strings["Additional notes that are displayed beneath the contact information. You can use BBCode here."] = "Notes addicionals que es mostren sota de la informació de contacte. Vostè pot usar BBCode aquí."; +$a->strings["How to contact the operator via email. (will be displayed obfuscated)"] = "Com contactar amb el gestor via correu electronic. ( es visualitzara ofuscat)"; +$a->strings["Footer note"] = "Nota a peu de pàgina"; +$a->strings["Text for the footer. You can use BBCode here."] = "Text pel peu de pàgina. Pots emprar BBCode aquí."; $a->strings["Report Bug"] = "Informar de problema"; +$a->strings["No Timeline settings updated."] = "No s'han actualitzat els ajustos de la línia de temps"; +$a->strings["No Timeline Settings"] = "No hi han ajustos de la línia de temps"; +$a->strings["Disable Archive selector on profile wall"] = "Desactivar el selector d'arxius del mur de perfils"; $a->strings["\"Blockem\" Settings"] = "Configuració de \"Bloqueig\""; $a->strings["Comma separated profile URLS to block"] = "URLS dels perfils a bloquejar, separats per comes"; $a->strings["BLOCKEM Settings saved."] = "Guardada la configuració de BLOQUEIG."; @@ -1005,10 +1430,64 @@ $a->strings["A list of strings["Default zoom"] = "Zoom per defecte"; $a->strings["The default zoom level. (1:world, 18:highest)"] = "Nivell de zoom per defecte. (1: el món, 18: el més alt)"; $a->strings["Editplain settings updated."] = "Actualitzar la configuració de Editplain."; +$a->strings["Group Text"] = ""; +$a->strings["Use a text only (non-image) group selector in the \"group edit\" menu"] = ""; +$a->strings["Could NOT install Libravatar successfully.
    It requires PHP >= 5.3"] = "No puc instal·lar Libravatar ,
    requereix PHP>=5.3"; +$a->strings["generic profile image"] = "imatge de perfil genérica"; +$a->strings["random geometric pattern"] = "Patró geometric aleatori"; +$a->strings["monster face"] = "Cara monstruosa"; +$a->strings["computer generated face"] = "Cara monstruosa generada per ordinador"; +$a->strings["retro arcade style face"] = "Cara d'estil arcade retro"; +$a->strings["Your PHP version %s is lower than the required PHP >= 5.3."] = "La teva versió de PHP %s es inferior a la requerida, PHP>=5.3"; +$a->strings["This addon is not functional on your server."] = "Aquest addon no es funcional al teu servidor."; +$a->strings["Information"] = "informació"; +$a->strings["Gravatar addon is installed. Please disable the Gravatar addon.
    The Libravatar addon will fall back to Gravatar if nothing was found at Libravatar."] = ""; +$a->strings["Default avatar image"] = "Imatge d'avatar per defecte"; +$a->strings["Select default avatar image if none was found. See README"] = ""; +$a->strings["Libravatar settings updated."] = "Ajustos de Libravatar actualitzats."; +$a->strings["Post to libertree"] = "Enviament a libertree"; +$a->strings["libertree Post Settings"] = "Ajustos d'enviaments a libertree"; +$a->strings["Enable Libertree Post Plugin"] = "Activa el plugin d'enviaments a libertree"; +$a->strings["Libertree API token"] = "Libertree API token"; +$a->strings["Libertree site URL"] = "lloc URL libertree"; +$a->strings["Post to Libertree by default"] = "Enviar a libertree per defecte"; +$a->strings["Altpager settings updated."] = "Ajustos de Altpagerr actualitzats."; +$a->strings["Alternate Pagination Setting"] = "Alternate Pagination Setting"; +$a->strings["Use links to \"newer\" and \"older\" pages in place of page numbers?"] = ""; +$a->strings["The MathJax addon renders mathematical formulae written using the LaTeX syntax surrounded by the usual $$ or an eqnarray block in the postings of your wall,network tab and private mail."] = "El complement MathJax processa les fórmules matemàtiques escrites utilitzant la sintaxi de LaTeX, envoltades per l'habitual $$ o un bloc de \"eqnarray\" en les publicacions del seu mur, a la fitxa de la xarxa i correu privat."; +$a->strings["Use the MathJax renderer"] = "Utilitzar el processador Mathjax"; +$a->strings["MathJax Base URL"] = "URL Base de Mathjax"; +$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 del fitxer javascript que ha de ser inclòs per a usar Mathjax. Pot ser utilitzat per Mathjax CDN o un altre instal·lació de Mathjax."; $a->strings["Editplain Settings"] = "Configuració de Editplain"; $a->strings["Disable richtext status editor"] = "Deshabilitar l'editor d'estatus de texte enriquit"; +$a->strings["Libravatar addon is installed, too. Please disable Libravatar addon or this Gravatar addon.
    The Libravatar addon will fall back to Gravatar if nothing was found at Libravatar."] = ""; +$a->strings["Select default avatar image if none was found at Gravatar. See README"] = "Se selecciona la imatge d'avatar per defecte si no es troba cap en Gravatar. Veure el README"; +$a->strings["Rating of images"] = "Classificació de les imatges"; +$a->strings["Select the appropriate avatar rating for your site. See README"] = "Selecciona la classe d'avatar apropiat pel teu lloc. Veure el README"; +$a->strings["Gravatar settings updated."] = "Ajustos de Gravatar actualitzats."; +$a->strings["Your Friendica test account is about to expire."] = "La teva provatura de Friendica esta a prop d'expirar."; +$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."] = "Hola %1\$s ,\n\nEl seu compte de prova a %2\$s expirarà en menys de cinc dies . Esperem que hagi gaudit d'aquesta prova i aprofita aquesta oportunitat per trobar un lloc web Friendica permanent per a les teves comunicacions socials integrades . Una llista de llocs públics es troba disponible a http://dir.friendica.com/siteinfo - i per obtenir més informació sobre com configurar el vostre servidor Friendica consulteu el lloc web del projecte en el Friendica http://friendica.com ."; $a->strings["\"pageheader\" Settings"] = "Configuració de la capçalera de pàgina."; $a->strings["pageheader Settings saved."] = "guardada la configuració de la capçalera de pàgina."; +$a->strings["Post to Insanejournal"] = "Enviament a Insanejournal"; +$a->strings["InsaneJournal Post Settings"] = "Ajustos d'Enviament a Insanejournal"; +$a->strings["Enable InsaneJournal Post Plugin"] = "Habilita el Plugin d'Enviaments a Insanejournal"; +$a->strings["InsaneJournal username"] = "Nom d'usuari de Insanejournal"; +$a->strings["InsaneJournal password"] = "Contrasenya de Insanejournal"; +$a->strings["Post to InsaneJournal by default"] = "Enviar per defecte a Insanejournal"; +$a->strings["Jappix Mini addon settings"] = ""; +$a->strings["Activate addon"] = ""; +$a->strings["Do not insert the Jappixmini Chat-Widget into the webinterface"] = ""; +$a->strings["Jabber username"] = ""; +$a->strings["Jabber server"] = ""; +$a->strings["Jabber BOSH host"] = ""; +$a->strings["Jabber password"] = ""; +$a->strings["Encrypt Jabber password with Friendica password (recommended)"] = ""; +$a->strings["Friendica password"] = ""; +$a->strings["Approve subscription requests from Friendica contacts automatically"] = ""; +$a->strings["Subscribe to Friendica contacts automatically"] = ""; +$a->strings["Purge internal list of jabber addresses of contacts"] = ""; +$a->strings["Add contact"] = ""; $a->strings["View Source"] = "Veure les Fonts"; $a->strings["Post to StatusNet"] = "Publica-ho a StatusNet"; $a->strings["Please contact your site administrator.
    The provided API URL is not valid."] = "Si us plau, poseu-vos en contacte amb l'administrador del lloc.
    L'adreça URL de l'API proporcionada no és vàlida."; @@ -1033,8 +1512,10 @@ $a->strings["If enabled all your public postings can be posted $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."] = "Nota: A causa de les seves opcions de privacitat (Amaga els detalls del teu perfil dels espectadors desconeguts? ) el vincle potencialment inclòs en anuncis públics transmesos a StatusNet conduirà el visitant a una pàgina en blanc en la que informarà al visitants que l'accés al seu perfil s'ha restringit."; $a->strings["Allow posting to StatusNet"] = "Permetre enviaments a StatusNet"; $a->strings["Send public postings to StatusNet by default"] = "Enviar missatges públics a StatusNet per defecte"; +$a->strings["Send linked #-tags and @-names to StatusNet"] = "Enviar enllaços #-etiquetes i @-noms a StatusNet"; $a->strings["Clear OAuth configuration"] = "Esborrar configuració de OAuth"; $a->strings["API URL"] = "API URL"; +$a->strings["Infinite Improbability Drive"] = "Infinite Improbability Drive"; $a->strings["Post to Tumblr"] = "Publica-ho al Tumblr"; $a->strings["Tumblr Post Settings"] = "Configuració d'Enviaments de Tumblr"; $a->strings["Enable Tumblr Post Plugin"] = "Habilita el plugin de enviaments de Tumblr"; @@ -1043,7 +1524,6 @@ $a->strings["Tumblr password"] = "Caontrasenya de Tumblr"; $a->strings["Post to Tumblr by default"] = "Enviar a Tumblr per defecte"; $a->strings["Numfriends settings updated."] = "Actualitzar la configuració de Numfriends."; $a->strings["Numfriends Settings"] = "Configuració de Numfriends"; -$a->strings["How many contacts to display on profile sidebar"] = "Quants contactes per mostrar a la barra lateral el perfil"; $a->strings["Gnot settings updated."] = "Configuració de Gnot actualitzada"; $a->strings["Gnot Settings"] = "Configuració de Gnot"; $a->strings["Allows threading of email comment notifications on Gmail and anonymising the subject line."] = "Permet crear fils de les notificacions de comentaris de correu electrònic a Gmail i anonimat de la línia d'assumpte."; @@ -1056,13 +1536,14 @@ $a->strings["WordPress username"] = "Nom d'usuari de WordPress"; $a->strings["WordPress password"] = "Contrasenya de WordPress"; $a->strings["WordPress API URL"] = "WordPress API URL"; $a->strings["Post to WordPress by default"] = "Enviar a WordPress per defecte"; +$a->strings["Provide a backlink to the Friendica post"] = "Proveeix un retroenllaç al missatge de Friendica"; +$a->strings["Read the original post and comment stream on Friendica"] = "Llegeix el missatge original i el flux de comentaris en Friendica"; $a->strings["\"Show more\" Settings"] = "Configuració de \"Mostrar més\""; $a->strings["Enable Show More"] = "Habilita Mostrar Més"; $a->strings["Cutting posts after how much characters"] = "Tallar els missatges després de quants caràcters"; $a->strings["Show More Settings saved."] = "Guardada la configuració de \"Mostra Més\"."; -$a->strings["Show More"] = "Mostra Més"; $a->strings["This website is tracked using the
    Piwik analytics tool."] = "Aquest lloc web realitza un seguiment mitjançant la eina d'anàlisi Piwik."; -$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)."] = "Si no vol que les seves visites es transcribin d'aquesta manera vostè pot establir una cookie per evitar a Piwik a partir de noves visites del lloc web (opt-out)."; +$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)."] = "Si no vol que les seves visites es registrin d'aquesta manera vostè pot establir una cookie per evitar a Piwik a partir de noves visites del lloc web (opt-out)."; $a->strings["Piwik Base URL"] = "URL Piwik Base"; $a->strings["Absolute path to your Piwik installation. (without protocol (http/s), with trailing slash)"] = "Trajectoria absoluta per a la instal·lació de Piwik (sense el protocol (http/s), amb la barra final )"; $a->strings["Site ID"] = "Lloc ID"; @@ -1079,29 +1560,82 @@ $a->strings["If enabled all your public postings can be posted $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."] = "Nota: donada la seva configuració de privacitat ( Amaga els detalls del teu perfil dels espectadors desconeguts? ) el vincle potencialment inclòs en anuncis públics retransmesos a Twitter conduirà al visitant a una pàgina en blanc informar als visitants que l'accés al seu perfil s'ha restringit."; $a->strings["Allow posting to Twitter"] = "Permetre anunci a Twitter"; $a->strings["Send public postings to Twitter by default"] = "Enviar anuncis públics a Twitter per defecte"; +$a->strings["Send linked #-tags and @-names to Twitter"] = "Enviar enllaços #-etiquetes i @-noms a Twitter"; $a->strings["Consumer key"] = "Consumer key"; $a->strings["Consumer secret"] = "Consumer secret"; -$a->strings["irc Chatroom"] = "irc Chatroom"; +$a->strings["IRC Settings"] = "Ajustos de IRC"; +$a->strings["Channel(s) to auto connect (comma separated)"] = "Canal(s) per auto connectar (separats per comes)"; +$a->strings["Popular Channels (comma separated)"] = "Canals Populars (separats per comes)"; +$a->strings["IRC settings saved."] = "Ajustos del IRC guardats."; +$a->strings["IRC Chatroom"] = "IRC Chatroom"; +$a->strings["Popular Channels"] = "Canals Populars"; +$a->strings["Fromapp settings updated."] = ""; +$a->strings["FromApp Settings"] = ""; +$a->strings["The application name you would like to show your posts originating from."] = ""; +$a->strings["Use this application name even if another application was used."] = ""; +$a->strings["Post to blogger"] = "Enviament a blogger"; +$a->strings["Blogger Post Settings"] = "Ajustos d'enviament a blogger"; +$a->strings["Enable Blogger Post Plugin"] = "Habilita el Plugin d'Enviaments a Blogger"; +$a->strings["Blogger username"] = "Nom d'usuari a blogger"; +$a->strings["Blogger password"] = "Contrasenya a blogger"; +$a->strings["Blogger API URL"] = "Blogger API URL"; +$a->strings["Post to Blogger by default"] = "Enviament a Blogger per defecte"; $a->strings["Post to Posterous"] = "enviament a Posterous"; $a->strings["Posterous Post Settings"] = "Configuració d'Enviaments a Posterous"; $a->strings["Enable Posterous Post Plugin"] = "Habilitar plugin d'Enviament de Posterous"; $a->strings["Posterous login"] = "Inici de sessió a Posterous"; $a->strings["Posterous password"] = "Contrasenya a Posterous"; +$a->strings["Posterous site ID"] = "ID al lloc Posterous"; +$a->strings["Posterous API token"] = "Posterous API token"; $a->strings["Post to Posterous by default"] = "Enviar a Posterous per defecte"; $a->strings["Theme settings"] = "Configuració de Temes"; +$a->strings["Set resize level for images in posts and comments (width and height)"] = "Ajusteu el nivell de canvi de mida d'imatges en els missatges i comentaris ( amplada i alçada"; +$a->strings["Set font-size for posts and comments"] = "Canvia la mida del tipus de lletra per enviaments i comentaris"; +$a->strings["Set theme width"] = "Ajustar l'ample del tema"; +$a->strings["Color scheme"] = "Esquema de colors"; +$a->strings["Your posts and conversations"] = "Els teus anuncis i converses"; +$a->strings["Your profile page"] = "La seva pàgina de perfil"; +$a->strings["Your contacts"] = "Els teus contactes"; +$a->strings["Your photos"] = "Les seves fotos"; +$a->strings["Your events"] = "Els seus esdeveniments"; +$a->strings["Personal notes"] = "Notes personals"; +$a->strings["Your personal photos"] = "Les seves fotos personals"; +$a->strings["Community Pages"] = "Pàgines de la Comunitat"; +$a->strings["Community Profiles"] = "Perfils de Comunitat"; +$a->strings["Last users"] = "Últims usuaris"; +$a->strings["Last likes"] = "Últims \"m'agrada\""; +$a->strings["Last photos"] = "Últimes fotos"; +$a->strings["Find Friends"] = "Trobar Amistats"; +$a->strings["Local Directory"] = "Directori Local"; +$a->strings["Similar Interests"] = "Aficions Similars"; +$a->strings["Invite Friends"] = "Invita Amics"; +$a->strings["Earth Layers"] = "Earth Layers"; +$a->strings["Set zoomfactor for Earth Layers"] = "Ajustar el factor de zoom per Earth Layers"; +$a->strings["Set longitude (X) for Earth Layers"] = "Ajustar longitud (X) per Earth Layers"; +$a->strings["Set latitude (Y) for Earth Layers"] = "Ajustar latitud (Y) per Earth Layers"; +$a->strings["Help or @NewHere ?"] = "Ajuda o @NouAqui?"; +$a->strings["Connect Services"] = "Serveis Connectats"; +$a->strings["Last Tweets"] = "Últims Tweets"; +$a->strings["Set twitter search term"] = "Ajustar el terme de cerca de twitter"; +$a->strings["don't show"] = "no mostris"; +$a->strings["show"] = "mostra"; +$a->strings["Show/hide boxes at right-hand column:"] = "Mostra/amaga els marcs de la columna a ma dreta"; +$a->strings["Set line-height for posts and comments"] = "Canvia l'espaiat de línia per enviaments i comentaris"; +$a->strings["Set resolution for middle column"] = "canvia la resolució per a la columna central"; +$a->strings["Set color scheme"] = "Canvia l'esquema de color"; +$a->strings["Set zoomfactor for Earth Layer"] = "Ajustar el factor de zoom de Earth Layers"; +$a->strings["Last tweets"] = "Últims tweets"; $a->strings["Alignment"] = "Adaptació"; $a->strings["Left"] = "Esquerra"; $a->strings["Center"] = "Centre"; -$a->strings["Gender:"] = "Gènere:"; +$a->strings["Set colour scheme"] = "Establir l'esquema de color"; $a->strings["j F, Y"] = "j F, Y"; $a->strings["j F"] = "j F"; $a->strings["Birthday:"] = "Aniversari:"; $a->strings["Age:"] = "Edat:"; -$a->strings["Status:"] = "Estatus:"; -$a->strings["Homepage:"] = "Pàgina web:"; +$a->strings["for %1\$d %2\$s"] = "per a %1\$d %2\$s"; $a->strings["Tags:"] = "Etiquetes:"; $a->strings["Religion:"] = "Religió:"; -$a->strings["About:"] = "Acerca de:"; $a->strings["Hobbies/Interests:"] = "Aficiones/Intereses:"; $a->strings["Contact information and Social Networks:"] = "Informació de contacte i Xarxes Socials:"; $a->strings["Musical interests:"] = "Gustos musicals:"; @@ -1113,16 +1647,13 @@ $a->strings["Work/employment:"] = "Treball/ocupació:"; $a->strings["School/education:"] = "Escola/formació"; $a->strings["Unknown | Not categorised"] = "Desconegut/No categoritzat"; $a->strings["Block immediately"] = "Bloquejar immediatament"; -$a->strings["Shady, spammer, self-marketer"] = "Sospitós, Femater, auto-publicitat"; +$a->strings["Shady, spammer, self-marketer"] = "Sospitós, Spam, auto-publicitat"; $a->strings["Known to me, but no opinion"] = "Conegut per mi, però sense opinió"; $a->strings["OK, probably harmless"] = "Bé, probablement inofensiu"; $a->strings["Reputable, has my trust"] = "Bona reputació, té la meva confiança"; $a->strings["Frequently"] = "Freqüentment"; $a->strings["Hourly"] = "Cada hora"; $a->strings["Twice daily"] = "Dues vegades al dia"; -$a->strings["Daily"] = "Diari"; -$a->strings["Weekly"] = "Setmanal"; -$a->strings["Monthly"] = "Mensual"; $a->strings["OStatus"] = "OStatus"; $a->strings["RSS/Atom"] = "RSS/Atom"; $a->strings["Zot!"] = "Zot!"; @@ -1160,6 +1691,8 @@ $a->strings["Single"] = "Solter/a"; $a->strings["Lonely"] = "Solitari"; $a->strings["Available"] = "Disponible"; $a->strings["Unavailable"] = "No Disponible"; +$a->strings["Has crush"] = "Compromés"; +$a->strings["Infatuated"] = "Enamorat"; $a->strings["Dating"] = "De cites"; $a->strings["Unfaithful"] = "Infidel"; $a->strings["Sex Addict"] = "Adicte al sexe"; @@ -1168,41 +1701,70 @@ $a->strings["Friends/Benefits"] = "Amics íntims"; $a->strings["Casual"] = "Oportunista"; $a->strings["Engaged"] = "Promès"; $a->strings["Married"] = "Casat"; +$a->strings["Imaginarily married"] = "Matrimoni imaginari"; $a->strings["Partners"] = "Socis"; $a->strings["Cohabiting"] = "Cohabitant"; +$a->strings["Common law"] = "Segons costums"; $a->strings["Happy"] = "Feliç"; -$a->strings["Not Looking"] = "No Cerco"; +$a->strings["Not looking"] = "No cerco"; $a->strings["Swinger"] = "Parella Liberal"; $a->strings["Betrayed"] = "Traït/da"; $a->strings["Separated"] = "Separat/da"; $a->strings["Unstable"] = "Inestable"; $a->strings["Divorced"] = "Divorciat/da"; +$a->strings["Imaginarily divorced"] = "Divorci imaginari"; $a->strings["Widowed"] = "Vidu/a"; $a->strings["Uncertain"] = "Incert"; -$a->strings["Complicated"] = "Complicat"; +$a->strings["It's complicated"] = "Es complicat"; $a->strings["Don't care"] = "No t'interessa"; $a->strings["Ask me"] = "Pregunta'm"; $a->strings["Starts:"] = "Inici:"; $a->strings["Finishes:"] = "Acaba:"; $a->strings["(no subject)"] = "(sense assumpte)"; -$a->strings["noreply"] = "no contestar"; +$a->strings[" on Last.fm"] = " a Last.fm"; $a->strings["prev"] = "Prev"; -$a->strings["first"] = "primer"; +$a->strings["first"] = "Primer"; $a->strings["last"] = "Últim"; -$a->strings["next"] = "Proper"; +$a->strings["next"] = "següent"; +$a->strings["newer"] = "Més nou"; +$a->strings["older"] = "més vell"; $a->strings["No contacts"] = "Sense contactes"; $a->strings["%d Contact"] = array( 0 => "%d Contacte", 1 => "%d Contactes", ); -$a->strings["Search"] = "Cercar"; -$a->strings["Monday"] = "Dilluns"; -$a->strings["Tuesday"] = "Dimarts"; -$a->strings["Wednesday"] = "Dimecres"; -$a->strings["Thursday"] = "Dijous"; -$a->strings["Friday"] = "Divendres"; -$a->strings["Saturday"] = "Dissabte"; -$a->strings["Sunday"] = "Diumenge"; +$a->strings["poke"] = ""; +$a->strings["poked"] = ""; +$a->strings["ping"] = ""; +$a->strings["pinged"] = ""; +$a->strings["prod"] = ""; +$a->strings["prodded"] = ""; +$a->strings["slap"] = ""; +$a->strings["slapped"] = ""; +$a->strings["finger"] = "dit"; +$a->strings["fingered"] = ""; +$a->strings["rebuff"] = ""; +$a->strings["rebuffed"] = ""; +$a->strings["happy"] = ""; +$a->strings["sad"] = ""; +$a->strings["mellow"] = ""; +$a->strings["tired"] = ""; +$a->strings["perky"] = ""; +$a->strings["angry"] = ""; +$a->strings["stupified"] = ""; +$a->strings["puzzled"] = ""; +$a->strings["interested"] = ""; +$a->strings["bitter"] = ""; +$a->strings["cheerful"] = ""; +$a->strings["alive"] = ""; +$a->strings["annoyed"] = ""; +$a->strings["anxious"] = ""; +$a->strings["cranky"] = ""; +$a->strings["disturbed"] = ""; +$a->strings["frustrated"] = ""; +$a->strings["motivated"] = ""; +$a->strings["relaxed"] = ""; +$a->strings["surprised"] = ""; $a->strings["January"] = "Gener"; $a->strings["February"] = "Febrer"; $a->strings["March"] = "Març"; @@ -1216,33 +1778,27 @@ $a->strings["October"] = "Octubre"; $a->strings["November"] = "Novembre"; $a->strings["December"] = "Desembre"; $a->strings["bytes"] = "bytes"; -$a->strings["Select an alternate language"] = "Sel·lecciona un idioma alternatiu"; +$a->strings["Click to open/close"] = "Clicar per a obrir/tancar"; $a->strings["default"] = "per defecte"; +$a->strings["Select an alternate language"] = "Sel·lecciona un idioma alternatiu"; $a->strings["activity"] = "activitat"; -$a->strings["comment"] = "comentari"; $a->strings["post"] = "missatge"; +$a->strings["Item filed"] = "Element arxivat"; $a->strings["Sharing notification from Diaspora network"] = "Compartint la notificació de la xarxa Diàspora"; $a->strings["Attachments:"] = "Adjunts:"; -$a->strings["[Relayed] Comment authored by %s from network %s"] = "[Retransmès] Comentari escrit per %s des de la xarxa %s"; $a->strings["view full size"] = "Veure a mida completa"; $a->strings["Embedded content"] = "Contingut incrustat"; $a->strings["Embedding disabled"] = "Incrustacions deshabilitades"; $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."] = "Un grup eliminat amb aquest nom va ser restablert. Els permisos dels elements existents poden aplicar-se a aquest grup i tots els futurs membres. Si això no és el que pretén, si us plau, crei un altre grup amb un nom diferent."; +$a->strings["Default privacy group for new contacts"] = "Privacitat per defecte per a nous contactes"; $a->strings["Everybody"] = "Tothom"; $a->strings["edit"] = "editar"; -$a->strings["Groups"] = "Grups"; $a->strings["Edit group"] = "Editar grup"; $a->strings["Create a new group"] = "Crear un nou grup"; +$a->strings["Contacts not in any group"] = "Contactes en cap grup"; $a->strings["Logout"] = "Sortir"; $a->strings["End this session"] = "Termina sessió"; $a->strings["Status"] = "Estatus"; -$a->strings["Your posts and conversations"] = "Els teus anuncis i converses"; -$a->strings["Your profile page"] = "La seva pàgina de perfil"; -$a->strings["Photos"] = "Fotos"; -$a->strings["Your photos"] = "Les seves fotos"; -$a->strings["Your events"] = "Els seus esdeveniments"; -$a->strings["Personal notes"] = "Notes personals"; -$a->strings["Your personal photos"] = "Les seves fotos personals"; $a->strings["Sign in"] = "Accedeix"; $a->strings["Home Page"] = "Pàgina d'Inici"; $a->strings["Create an account"] = "Crear un compte"; @@ -1258,18 +1814,18 @@ $a->strings["Friend Requests"] = "Sol·licitud d'Amistat"; $a->strings["See all notifications"] = "Veure totes les notificacions"; $a->strings["Mark all system notifications seen"] = "Marcar totes les notificacions del sistema com a vistes"; $a->strings["Private mail"] = "Correu privat"; +$a->strings["Inbox"] = "Safata d'entrada"; +$a->strings["Outbox"] = "Safata de sortida"; $a->strings["Manage"] = "Gestionar"; $a->strings["Manage other pages"] = "Gestiona altres pàgines"; $a->strings["Profiles"] = "Perfils"; $a->strings["Manage/edit profiles"] = "Gestiona/edita perfils"; $a->strings["Manage/edit friends and contacts"] = "Gestiona/edita amics i contactes"; -$a->strings["Admin"] = "Admin"; $a->strings["Site setup and configuration"] = "Ajustos i configuració del lloc"; $a->strings["Nothing new here"] = "Res nou aquí"; $a->strings["Add New Contact"] = "Afegir Nou Contacte"; $a->strings["Enter address or web location"] = "Introdueixi adreça o ubicació web"; $a->strings["Example: bob@example.com, http://example.com/barbara"] = "Exemple: bob@example.com, http://example.com/barbara"; -$a->strings["Invite Friends"] = "Invita Amics"; $a->strings["%d invitation available"] = array( 0 => "%d invitació disponible", 1 => "%d invitacions disponibles", @@ -1278,21 +1834,22 @@ $a->strings["Find People"] = "Trobar Gent"; $a->strings["Enter name or interest"] = "Introdueixi nom o aficions"; $a->strings["Connect/Follow"] = "Connectar/Seguir"; $a->strings["Examples: Robert Morgenstein, Fishing"] = "Exemples: Robert Morgenstein, Pescar"; -$a->strings["Similar Interests"] = "Aficions Similars"; +$a->strings["Random Profile"] = "Perfi Aleatori"; $a->strings["Networks"] = "Xarxes"; $a->strings["All Networks"] = "totes les Xarxes"; +$a->strings["Saved Folders"] = "Carpetes Guardades"; +$a->strings["Everything"] = "Tot"; +$a->strings["Categories"] = "Categories"; $a->strings["Logged out."] = "Has sortit"; +$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Em trobat un problema quan accedies amb la OpenID que has proporcionat. Per favor, revisa la cadena del ID."; +$a->strings["The error message was:"] = "El missatge d'error fou: "; $a->strings["Miscellaneous"] = "Miscel·lania"; $a->strings["year"] = "any"; $a->strings["month"] = "mes"; $a->strings["day"] = "dia"; $a->strings["never"] = "mai"; $a->strings["less than a second ago"] = "Fa menys d'un segon"; -$a->strings["years"] = "anys"; -$a->strings["months"] = "mesos"; $a->strings["week"] = "setmana"; -$a->strings["weeks"] = "setmanes"; -$a->strings["days"] = "dies"; $a->strings["hour"] = "hora"; $a->strings["hours"] = "hores"; $a->strings["minute"] = "minut"; @@ -1300,103 +1857,116 @@ $a->strings["minutes"] = "minuts"; $a->strings["second"] = "segon"; $a->strings["seconds"] = "segons"; $a->strings["%1\$d %2\$s ago"] = " fa %1\$d %2\$s"; +$a->strings["%s's birthday"] = "%s aniversari"; +$a->strings["Happy Birthday %s"] = "Feliç Aniversari %s"; $a->strings["From: "] = "Des de:"; -$a->strings["$1 wrote:"] = "$1 va escrivir:"; $a->strings["Image/photo"] = "Imatge/foto"; +$a->strings["$1 wrote:"] = "$1 va escriure:"; +$a->strings["Encrypted content"] = ""; $a->strings["Cannot locate DNS info for database server '%s'"] = "No put trobar informació de DNS del servidor de base de dades '%s'"; $a->strings["[no subject]"] = "[Sense assumpte]"; $a->strings["Visible to everybody"] = "Visible per tothom"; -$a->strings["show"] = "mostra"; -$a->strings["don't show"] = "no mostris"; $a->strings["Friendica Notification"] = "Notificacions de Friendica"; $a->strings["Thank You,"] = "Gràcies,"; $a->strings["%s Administrator"] = "%s Administrador"; $a->strings["%s "] = "%s "; $a->strings["[Friendica:Notify] New mail received at %s"] = "[Friendica: Notifica] nou correu rebut a %s"; -$a->strings["%s sent you a new private message at %s."] = "%s t'ha enviat un nou missatge privat en %s"; -$a->strings["%s sent you %s."] = "%s t'ha enviat %s."; +$a->strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s t'ha enviat un missatge privat nou en %2\$s."; +$a->strings["%1\$s sent you %2\$s."] = "%1\$s t'ha enviat %2\$s."; $a->strings["a private message"] = "un missatge privat"; $a->strings["Please visit %s to view and/or reply to your private messages."] = "Per favor, visiteu %s per a veure i/o respondre els teus missatges privats."; -$a->strings["%s's"] = "%s's"; -$a->strings["your"] = "tu"; -$a->strings["[Friendica:Notify] Comment to conversation #%d by %s"] = "[Friendica:Notifica] Conversació comentada #%d per %s"; +$a->strings["%1\$s commented on [url=%2\$s]a %3\$s[/url]"] = "%1\$s ha comentat en [url=%2\$s]a %3\$s[/url]"; +$a->strings["%1\$s commented on [url=%2\$s]%3\$s's %4\$s[/url]"] = "%1\$s ha comentat en [url=%2\$s]%3\$s de %4\$s[/url]"; +$a->strings["%1\$s commented on [url=%2\$s]your %3\$s[/url]"] = "%1\$s ha comentat en [url=%2\$s] el teu %3\$s[/url]"; +$a->strings["[Friendica:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Friendica:Notificació] Comentaris a la conversació #%1\$d per %2\$s"; $a->strings["%s commented on an item/conversation you have been following."] = "%s ha comentat un element/conversació que estas seguint."; -$a->strings["%s commented on %s."] = "%s comentat a %s."; $a->strings["Please visit %s to view and/or reply to the conversation."] = "Si us pau, visiteu %s per a veure i/o respondre la conversació."; $a->strings["[Friendica:Notify] %s posted to your profile wall"] = "[Friendica:Notifica] %s enviat al teu mur del perfil"; -$a->strings["%s posted to your profile wall at %s"] = "%s enviat al teu mur de perfil %s"; -$a->strings["%s posted to %s"] = "%s enviat a %s"; -$a->strings["your profile wall."] = "El teu perfil del mur."; +$a->strings["%1\$s posted to your profile wall at %2\$s"] = "%1\$s ha fet un enviament al teu mur de perfils en %2\$s"; +$a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = ""; $a->strings["[Friendica:Notify] %s tagged you"] = "[Friendica:Notifica] %s t'ha etiquetat"; -$a->strings["%s tagged you at %s"] = "%s t'ha etiquetat en %s"; -$a->strings["%s %s."] = "%s %s."; -$a->strings["tagged you"] = "Etiquetat"; +$a->strings["%1\$s tagged you at %2\$s"] = "%1\$s t'ha etiquetat a %2\$s"; +$a->strings["%1\$s [url=%2\$s]tagged you[/url]."] = "%1\$s [url=%2\$s] t'ha etiquetat[/url]."; +$a->strings["[Friendica:Notify] %1\$s poked you"] = ""; +$a->strings["%1\$s poked you at %2\$s"] = ""; +$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = ""; $a->strings["[Friendica:Notify] %s tagged your post"] = "[Friendica:Notifica] %s ha etiquetat el teu missatge"; -$a->strings["%s tagged your post at %s"] = "%s Ha etiquetat un missatge teu en %s"; -$a->strings["%s tagged %s"] = "%s etiquetat %s"; -$a->strings["your post"] = "El teu missatge"; +$a->strings["%1\$s tagged your post at %2\$s"] = "%1\$s ha etiquetat un missatge teu a %2\$s"; +$a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = "%1\$s etiquetà [url=%2\$s] el teu enviament[/url]"; $a->strings["[Friendica:Notify] Introduction received"] = "[Friendica:Notifica] Presentacio rebuda"; -$a->strings["You've received an introduction from '%s' at %s"] = "Has rebut una presentació de %s en %s"; -$a->strings["You've received %s from %s."] = "Has rebut %s de %s"; -$a->strings["an introduction"] = "Una presentació"; +$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = "Has rebut una presentació des de '%1\$s' en %2\$s"; +$a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = "Has rebut [url=%1\$s] com a presentació[/url] des de %2\$s."; $a->strings["You may visit their profile at %s"] = "Pot visitar el seu perfil en %s"; $a->strings["Please visit %s to approve or reject the introduction."] = "Si us plau visiteu %s per aprovar o rebutjar la presentació."; $a->strings["[Friendica:Notify] Friend suggestion received"] = "[Friendica:Notifica] Suggerencia d'amistat rebuda"; -$a->strings["You've received a friend suggestion from '%s' at %s"] = "Has rebut una suggerencia d'amistat de %s en %s"; -$a->strings["You've received %s for %s from %s."] = "Has rebut %s per %s de %s."; -$a->strings["a friend suggestion"] = "Un suggerencia d'amistat"; +$a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "Has rebut una suggerencia d'amistat des de '%1\$s' en %2\$s"; +$a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from %3\$s."] = "Has rebut [url=%1\$s] com a suggerencia d'amistat[/url] per a %2\$s des de %3\$s."; $a->strings["Name:"] = "Nom:"; $a->strings["Photo:"] = "Foto:"; $a->strings["Please visit %s to approve or reject the suggestion."] = "Si us plau, visiteu %s per aprovar o rebutjar la suggerencia."; +$a->strings["Connect URL missing."] = "URL del connector perduda."; +$a->strings["This site is not configured to allow communications with other networks."] = "Aquest lloc no està configurat per permetre les comunicacions amb altres xarxes."; +$a->strings["No compatible communication protocols or feeds were discovered."] = "Protocol de comunnicació no compatible o alimentador descobert."; +$a->strings["The profile address specified does not provide adequate information."] = "L'adreça de perfil especificada no proveeix informació adient."; +$a->strings["An author or name was not found."] = "Un autor o nom no va ser trobat"; +$a->strings["No browser URL could be matched to this address."] = "Cap direcció URL del navegador coincideix amb aquesta adreça."; +$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Incapaç de trobar coincidències amb la Adreça d'Identitat estil @ amb els protocols coneguts o contactes de correu. "; +$a->strings["Use mailto: in front of address to force email check."] = "Emprar mailto: davant la adreça per a forçar la comprovació del correu."; +$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "La direcció del perfil especificat pertany a una xarxa que ha estat desactivada en aquest lloc."; +$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Perfil limitat. Aquesta persona no podrà rebre notificacions personals/directes de tu."; +$a->strings["Unable to retrieve contact information."] = "No es pot recuperar la informació de contacte."; +$a->strings["following"] = "seguint"; $a->strings["A new person is sharing with you at "] = "Una persona nova està compartint amb tú en"; $a->strings["You have a new follower at "] = "Tens un nou seguidor a "; -$a->strings["image/photo"] = "Imatge/foto"; +$a->strings["Archives"] = "Arxius"; +$a->strings["An invitation is required."] = "Es requereix invitació."; +$a->strings["Invitation could not be verified."] = "La invitació no ha pogut ser verificada."; +$a->strings["Invalid OpenID url"] = "OpenID url no vàlid"; +$a->strings["Please enter the required information."] = "Per favor, introdueixi la informació requerida."; +$a->strings["Please use a shorter name."] = "Per favor, empri un nom més curt."; +$a->strings["Name too short."] = "Nom massa curt."; +$a->strings["That doesn't appear to be your full (First Last) name."] = "Això no sembla ser el teu nom complet."; +$a->strings["Your email domain is not among those allowed on this site."] = "El seu domini de correu electrònic no es troba entre els permesos en aquest lloc."; +$a->strings["Not a valid email address."] = "Adreça de correu no vàlida."; +$a->strings["Cannot use that email."] = "No es pot utilitzar aquest correu electrònic."; +$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and must also begin with a letter."] = "El teu sobrenom nomes pot contenir \"a-z\", \"0-9\", \"-\", i \"_\", i començar amb lletra."; +$a->strings["Nickname is already registered. Please choose another."] = "àlies ja registrat. Tria un altre."; +$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "L'àlies emprat ja està registrat alguna vegada i no es pot reutilitzar "; +$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "ERROR IMPORTANT: La generació de claus de seguretat ha fallat."; +$a->strings["An error occurred during registration. Please try again."] = "Un error ha succeït durant el registre. Intenta-ho de nou."; +$a->strings["An error occurred creating your default profile. Please try again."] = "Un error ha succeit durant la creació del teu perfil per defecte. Intenta-ho de nou."; $a->strings["Welcome "] = "Benvingut"; $a->strings["Please upload a profile photo."] = "Per favor, carrega una foto per al perfil"; $a->strings["Welcome back "] = "Benvingut de nou "; -$a->strings["View status"] = "Veure estatus"; -$a->strings["View profile"] = "Veure perfil"; -$a->strings["View photos"] = "Veure fotos"; -$a->strings["View recent"] = "Veure recent"; +$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."] = "El formulari del token de seguretat no es correcte. Això probablement passa perquè el formulari ha estat massa temps obert (>3 hores) abans d'enviat-lo."; +$a->strings["stopped following"] = "Deixar de seguir"; +$a->strings["Poke"] = ""; +$a->strings["View Status"] = "Veure Estatus"; +$a->strings["View Profile"] = "Veure Perfil"; +$a->strings["View Photos"] = "Veure Fotos"; +$a->strings["Network Posts"] = "Enviaments a la Xarxa"; +$a->strings["Edit Contact"] = "Editat Contacte"; $a->strings["Send PM"] = "Enviar Missatge Privat"; +$a->strings["%1\$s poked %2\$s"] = ""; $a->strings["post/item"] = "anunci/element"; $a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "%1\$s marcat %2\$s's %3\$s com favorit"; -$a->strings["Select"] = "Selecionar"; -$a->strings["View %s's profile @ %s"] = "Veure perfil de %s @ %s"; -$a->strings["%s from %s"] = "%s des de %s"; -$a->strings["View in context"] = "Veure en context"; -$a->strings["%d comment"] = array( - 0 => "%d comentari", - 1 => "%d comentaris", -); -$a->strings["show more"] = "Mostrar més"; -$a->strings["like"] = "Agrada"; -$a->strings["dislike"] = "Desagrada"; -$a->strings["Share this"] = "Compartir això"; -$a->strings["share"] = "Compartir"; -$a->strings["add star"] = "Afegir a favorits"; -$a->strings["remove star"] = "Esborrar favorit"; -$a->strings["toggle star status"] = "Canviar estatus de favorit"; -$a->strings["starred"] = "favorit"; -$a->strings["add tag"] = "afegir etiqueta"; -$a->strings["to"] = "a"; -$a->strings["Wall-to-Wall"] = "Mur-a-Mur"; -$a->strings["via Wall-To-Wall:"] = "via Mur-a-Mur"; +$a->strings["Categories:"] = ""; +$a->strings["Filed under:"] = ""; +$a->strings["remove"] = "esborrar"; $a->strings["Delete Selected Items"] = "Esborra els Elements Seleccionats"; $a->strings["%s likes this."] = "a %s agrada això."; $a->strings["%s doesn't like this."] = "a %s desagrada això."; -$a->strings["%2\$d people like this."] = "Li agrada a%2\$d persones ."; -$a->strings["%2\$d people don't like this."] = "No li agrada%2\$d persones ."; +$a->strings["%2\$d people like this."] = "Li agrada a %2\$d persones ."; +$a->strings["%2\$d people don't like this."] = "No li agrada %2\$d persones ."; $a->strings["and"] = "i"; $a->strings[", and %d other people"] = ", i altres %d persones"; -$a->strings["%s like this."] = "a %s le gusta esto."; -$a->strings["%s don't like this."] = "a %s no le gusta esto."; +$a->strings["%s like this."] = "a %s li agrada això."; +$a->strings["%s don't like this."] = "a %s no li agrada això."; $a->strings["Visible to everybody"] = "Visible per a tothom"; $a->strings["Please enter a video link/URL:"] = "Per favor , introdueixi el enllaç/URL del video"; $a->strings["Please enter an audio link/URL:"] = "Per favor , introdueixi el enllaç/URL del audio:"; $a->strings["Tag term:"] = "Terminis de l'etiqueta:"; $a->strings["Where are you right now?"] = "On ets ara?"; -$a->strings["Enter a title for this item"] = "Escriviu un títol per a aquest article"; $a->strings["upload photo"] = "carregar fotos"; $a->strings["attach file"] = "adjuntar arxiu"; $a->strings["web link"] = "enllaç de web"; @@ -1407,19 +1977,30 @@ $a->strings["audio link"] = "enllaç de audio"; $a->strings["set location"] = "establir la ubicació"; $a->strings["clear location"] = "netejar ubicació"; $a->strings["permissions"] = "Permissos"; +$a->strings["Click here to upgrade."] = "Clica aquí per actualitzar."; +$a->strings["This action exceeds the limits set by your subscription plan."] = "Aquesta acció excedeix els límits del teu plan de subscripció."; +$a->strings["This action is not available under your subscription plan."] = "Aquesta acció no està disponible en el teu plan de subscripció."; $a->strings["Delete this item?"] = "Esborrar aquest element?"; $a->strings["show fewer"] = "Mostrar menys"; +$a->strings["Update %s failed. See error logs."] = "Actualització de %s fracassà. Mira el registre d'errors."; +$a->strings["Update Error at %s"] = "Error d'actualització en %s"; $a->strings["Create a New Account"] = "Crear un Nou Compte"; -$a->strings["Nickname or Email address: "] = "Malnom o Adreça de correu:"; +$a->strings["Nickname or Email address: "] = "Àlies o Adreça de correu:"; $a->strings["Password: "] = "Contrasenya:"; $a->strings["Or login using OpenID: "] = "O accedixi emprant OpenID:"; $a->strings["Forgot your password?"] = "Oblidà la contrasenya?"; +$a->strings["Requested account is not available."] = ""; $a->strings["Edit profile"] = "Editar perfil"; +$a->strings["Message"] = "Missatge"; $a->strings["g A l F d"] = "g A l F d"; $a->strings["F d"] = "F d"; +$a->strings["[today]"] = "[avui]"; $a->strings["Birthday Reminders"] = "Recordatori d'Aniversaris"; $a->strings["Birthdays this week:"] = "Aniversari aquesta setmana"; -$a->strings["[today]"] = "[avui]"; +$a->strings["[No description]"] = "[sense descripció]"; $a->strings["Event Reminders"] = "Recordatori d'Esdeveniments"; $a->strings["Events this week:"] = "Esdeveniments aquesta setmana"; -$a->strings["[No description]"] = "[sense descripció]"; +$a->strings["Status Messages and Posts"] = "Missatges i Enviaments d'Estatus"; +$a->strings["Profile Details"] = "Detalls del Perfil"; +$a->strings["Events and Calendar"] = "Esdeveniments i Calendari"; +$a->strings["Only You Can See This"] = "Només ho pots veure tu"; diff --git a/view/cs/messages.po b/view/cs/messages.po index 529504c5cd..971d21774e 100644 --- a/view/cs/messages.po +++ b/view/cs/messages.po @@ -1,144 +1,209 @@ # FRIENDICA Distributed Social Network -# Copyright (C) 2010, 2011 Mike Macgirvin -# This file is distributed under the same license as the Friendika package. +# Copyright (C) 2010, 2011 the Friendica Project +# This file is distributed under the same license as the Friendica package. # -# Michal Šupler , 2011. +# Translators: +# Michal Šupler , 2011-2012. msgid "" msgstr "" -"Project-Id-Version: friendika\n" -"Report-Msgid-Bugs-To: http://bugs.friendika.com/\n" -"POT-Creation-Date: 2011-08-14 21:17-0700\n" -"PO-Revision-Date: 2011-09-03 04:29+0000\n" -"Last-Translator: michal_s \n" -"Language-Team: Czech (http://www.transifex.net/projects/p/friendika/team/cs/)\n" +"Project-Id-Version: friendica\n" +"Report-Msgid-Bugs-To: http://bugs.friendica.com/\n" +"POT-Creation-Date: 2012-09-25 10:00-0700\n" +"PO-Revision-Date: 2012-09-26 08:15+0000\n" +"Last-Translator: Michal Šupler \n" +"Language-Team: Czech (http://www.transifex.com/projects/p/friendica/language/cs/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: cs\n" -"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -#: ../../mod/oexchange.php:27 +#: ../../mod/oexchange.php:25 msgid "Post successful." msgstr "Příspěvek úspěšně odeslán" -#: ../../mod/crepair.php:42 +#: ../../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 "[Vložený obsah - obnovení stránky pro zobrazení]" + +#: ../../mod/crepair.php:102 msgid "Contact settings applied." msgstr "Nastavení kontaktu změněno" -#: ../../mod/crepair.php:44 +#: ../../mod/crepair.php:104 msgid "Contact update failed." msgstr "Aktualizace kontaktu selhala." -#: ../../mod/crepair.php:54 ../../mod/wall_attach.php:43 -#: ../../mod/fsuggest.php:78 ../../mod/events.php:102 ../../mod/photos.php:122 -#: ../../mod/photos.php:849 ../../mod/editpost.php:10 ../../mod/install.php:96 -#: ../../mod/notifications.php:62 ../../mod/contacts.php:132 -#: ../../mod/settings.php:41 ../../mod/settings.php:46 -#: ../../mod/settings.php:305 ../../mod/manage.php:75 ../../mod/network.php:6 -#: ../../mod/notes.php:20 ../../mod/attach.php:33 ../../mod/group.php:19 -#: ../../mod/viewcontacts.php:21 ../../mod/register.php:27 -#: ../../mod/regmod.php:111 ../../mod/item.php:110 -#: ../../mod/profile_photo.php:19 ../../mod/profile_photo.php:133 -#: ../../mod/profile_photo.php:144 ../../mod/profile_photo.php:155 -#: ../../mod/message.php:8 ../../mod/message.php:116 ../../mod/admin.php:10 -#: ../../mod/wall_upload.php:42 ../../mod/follow.php:8 -#: ../../mod/display.php:108 ../../mod/profiles.php:7 -#: ../../mod/profiles.php:226 ../../mod/invite.php:13 ../../mod/invite.php:81 -#: ../../mod/dfrn_confirm.php:53 ../../addon/facebook/facebook.php:308 -#: ../../include/items.php:1930 ../../index.php:266 +#: ../../mod/crepair.php:115 ../../mod/wall_attach.php:55 +#: ../../mod/fsuggest.php:78 ../../mod/events.php:140 ../../mod/api.php:26 +#: ../../mod/api.php:31 ../../mod/photos.php:128 ../../mod/photos.php:972 +#: ../../mod/editpost.php:10 ../../mod/install.php:151 ../../mod/poke.php:135 +#: ../../mod/notifications.php:66 ../../mod/contacts.php:146 +#: ../../mod/settings.php:86 ../../mod/settings.php:525 +#: ../../mod/settings.php:530 ../../mod/manage.php:87 ../../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:126 +#: ../../mod/item.php:142 ../../mod/mood.php:114 +#: ../../mod/profile_photo.php:19 ../../mod/profile_photo.php:169 +#: ../../mod/profile_photo.php:180 ../../mod/profile_photo.php:193 +#: ../../mod/message.php:38 ../../mod/message.php:168 +#: ../../mod/allfriends.php:9 ../../mod/nogroup.php:25 +#: ../../mod/wall_upload.php:64 ../../mod/follow.php:9 +#: ../../mod/display.php:141 ../../mod/profiles.php:7 +#: ../../mod/profiles.php:413 ../../mod/delegate.php:6 +#: ../../mod/suggest.php:28 ../../mod/invite.php:13 ../../mod/invite.php:81 +#: ../../mod/dfrn_confirm.php:53 ../../addon/facebook/facebook.php:510 +#: ../../addon/facebook/facebook.php:516 ../../addon/fbpost/fbpost.php:159 +#: ../../addon/fbpost/fbpost.php:165 +#: ../../addon/dav/friendica/layout.fnk.php:354 ../../include/items.php:3908 +#: ../../index.php:317 msgid "Permission denied." msgstr "Přístup odmítnut." -#: ../../mod/crepair.php:68 ../../mod/fsuggest.php:20 -#: ../../mod/fsuggest.php:92 ../../mod/contacts.php:240 -#: ../../mod/dfrn_confirm.php:114 +#: ../../mod/crepair.php:129 ../../mod/fsuggest.php:20 +#: ../../mod/fsuggest.php:92 ../../mod/dfrn_confirm.php:118 msgid "Contact not found." msgstr "Kontakt nenalezen." -#: ../../mod/crepair.php:74 +#: ../../mod/crepair.php:135 msgid "Repair Contact Settings" msgstr "Opravit nastavení kontaktu" -#: ../../mod/crepair.php:76 +#: ../../mod/crepair.php:137 msgid "" "WARNING: This is highly advanced and if you enter incorrect" -" information your communications with this contact will stop working." -msgstr "" -"VAROVÁNÍ: Toto je velmi pokročilé nastavení, pokud zadáte " -"nesprávné informace, komunikace s tímto kontaktem přestane fungovat." +" information your communications with this contact may stop working." +msgstr "Varování: Toto je velmi pokročilé a pokud zadáte nesprávné informace, Vaše komunikace s tímto kontaktem může přestat fungovat." -#: ../../mod/crepair.php:77 +#: ../../mod/crepair.php:138 msgid "" "Please use your browser 'Back' button now if you are " "uncertain what to do on this page." -msgstr "" -"Prosím použijte ihned v prohlížeči tlačítko \"zpět\" pokud " -"si nejste jistí co dělat na této stránce." +msgstr "Prosím použijte ihned v prohlížeči tlačítko \"zpět\" pokud si nejste jistí co dělat na této stránce." -#: ../../mod/crepair.php:85 ../../mod/admin.php:464 ../../mod/admin.php:473 +#: ../../mod/crepair.php:144 +msgid "Return to contact editor" +msgstr "Návrat k editoru kontaktu" + +#: ../../mod/crepair.php:148 ../../mod/settings.php:545 +#: ../../mod/settings.php:571 ../../mod/admin.php:692 ../../mod/admin.php:702 msgid "Name" msgstr "Jméno" -#: ../../mod/crepair.php:86 +#: ../../mod/crepair.php:149 msgid "Account Nickname" msgstr "Přezdívka účtu" -#: ../../mod/crepair.php:87 +#: ../../mod/crepair.php:150 +msgid "@Tagname - overrides Name/Nickname" +msgstr "@Tagname - upřednostněno před Jménem/Přezdívkou" + +#: ../../mod/crepair.php:151 msgid "Account URL" msgstr "URL adresa účtu" -#: ../../mod/crepair.php:88 +#: ../../mod/crepair.php:152 msgid "Friend Request URL" msgstr "Žádost o přátelství URL" -#: ../../mod/crepair.php:89 +#: ../../mod/crepair.php:153 msgid "Friend Confirm URL" msgstr "URL adresa potvrzení přátelství" -#: ../../mod/crepair.php:90 +#: ../../mod/crepair.php:154 msgid "Notification Endpoint URL" msgstr "Notifikační URL adresa" -#: ../../mod/crepair.php:91 +#: ../../mod/crepair.php:155 msgid "Poll/Feed URL" msgstr "Poll/Feed URL adresa" -#: ../../mod/crepair.php:100 ../../mod/fsuggest.php:107 -#: ../../mod/events.php:333 ../../mod/photos.php:877 ../../mod/photos.php:934 -#: ../../mod/photos.php:1144 ../../mod/photos.php:1184 -#: ../../mod/photos.php:1223 ../../mod/photos.php:1254 -#: ../../mod/install.php:137 ../../mod/contacts.php:296 -#: ../../mod/settings.php:482 ../../mod/manage.php:106 ../../mod/group.php:84 -#: ../../mod/group.php:167 ../../mod/admin.php:298 ../../mod/admin.php:461 -#: ../../mod/admin.php:587 ../../mod/admin.php:652 ../../mod/profiles.php:372 -#: ../../mod/invite.php:106 ../../addon/facebook/facebook.php:366 -#: ../../addon/randplace/randplace.php:178 -#: ../../addon/impressum/impressum.php:69 ../../addon/oembed/oembed.php:41 -#: ../../addon/statusnet/statusnet.php:274 -#: ../../addon/statusnet/statusnet.php:288 -#: ../../addon/statusnet/statusnet.php:314 -#: ../../addon/statusnet/statusnet.php:321 -#: ../../addon/statusnet/statusnet.php:343 -#: ../../addon/statusnet/statusnet.php:468 ../../addon/piwik/piwik.php:76 -#: ../../addon/twitter/twitter.php:171 ../../addon/twitter/twitter.php:194 -#: ../../addon/twitter/twitter.php:280 ../../include/conversation.php:409 +#: ../../mod/crepair.php:156 +msgid "New photo from this URL" +msgstr "Nové foto z této URL adresy" + +#: ../../mod/crepair.php:166 ../../mod/fsuggest.php:107 +#: ../../mod/events.php:455 ../../mod/photos.php:1005 +#: ../../mod/photos.php:1081 ../../mod/photos.php:1338 +#: ../../mod/photos.php:1378 ../../mod/photos.php:1419 +#: ../../mod/photos.php:1451 ../../mod/install.php:246 +#: ../../mod/install.php:284 ../../mod/localtime.php:45 ../../mod/poke.php:199 +#: ../../mod/content.php:693 ../../mod/contacts.php:348 +#: ../../mod/settings.php:543 ../../mod/settings.php:697 +#: ../../mod/settings.php:769 ../../mod/settings.php:976 +#: ../../mod/group.php:85 ../../mod/mood.php:137 ../../mod/message.php:294 +#: ../../mod/message.php:480 ../../mod/admin.php:443 ../../mod/admin.php:689 +#: ../../mod/admin.php:826 ../../mod/admin.php:1025 ../../mod/admin.php:1112 +#: ../../mod/profiles.php:583 ../../mod/invite.php:119 +#: ../../addon/fromgplus/fromgplus.php:40 +#: ../../addon/facebook/facebook.php:619 +#: ../../addon/snautofollow/snautofollow.php:64 ../../addon/bg/bg.php:90 +#: ../../addon/fbpost/fbpost.php:226 ../../addon/yourls/yourls.php:76 +#: ../../addon/ljpost/ljpost.php:93 ../../addon/nsfw/nsfw.php:88 +#: ../../addon/page/page.php:210 ../../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/startpage/startpage.php:92 +#: ../../addon/geonames/geonames.php:187 ../../addon/oembed.old/oembed.php:41 +#: ../../addon/forumlist/forumlist.php:169 +#: ../../addon/impressum/impressum.php:83 +#: ../../addon/notimeline/notimeline.php:64 ../../addon/blockem/blockem.php:57 +#: ../../addon/qcomment/qcomment.php:61 +#: ../../addon/openstreetmap/openstreetmap.php:70 +#: ../../addon/group_text/group_text.php:84 +#: ../../addon/libravatar/libravatar.php:99 +#: ../../addon/libertree/libertree.php:90 ../../addon/altpager/altpager.php:87 +#: ../../addon/mathjax/mathjax.php:42 ../../addon/editplain/editplain.php:84 +#: ../../addon/blackout/blackout.php:98 ../../addon/gravatar/gravatar.php:95 +#: ../../addon/pageheader/pageheader.php:55 ../../addon/ijpost/ijpost.php:93 +#: ../../addon/jappixmini/jappixmini.php:307 +#: ../../addon/statusnet/statusnet.php:278 +#: ../../addon/statusnet/statusnet.php:292 +#: ../../addon/statusnet/statusnet.php:318 +#: ../../addon/statusnet/statusnet.php:325 +#: ../../addon/statusnet/statusnet.php:353 +#: ../../addon/statusnet/statusnet.php:576 ../../addon/tumblr/tumblr.php:90 +#: ../../addon/numfriends/numfriends.php:85 ../../addon/gnot/gnot.php:88 +#: ../../addon/wppost/wppost.php:110 ../../addon/showmore/showmore.php:48 +#: ../../addon/piwik/piwik.php:89 ../../addon/twitter/twitter.php:180 +#: ../../addon/twitter/twitter.php:209 ../../addon/twitter/twitter.php:394 +#: ../../addon/irc/irc.php:55 ../../addon/fromapp/fromapp.php:77 +#: ../../addon/blogger/blogger.php:102 ../../addon/posterous/posterous.php:103 +#: ../../view/theme/cleanzero/config.php:80 +#: ../../view/theme/diabook/theme.php:757 +#: ../../view/theme/diabook/config.php:190 +#: ../../view/theme/quattro/config.php:53 ../../view/theme/dispy/config.php:70 +#: ../../include/conversation.php:607 ../../object/Item.php:559 msgid "Submit" msgstr "Odeslat" -#: ../../mod/help.php:27 +#: ../../mod/help.php:30 msgid "Help:" msgstr "Nápověda:" -#: ../../mod/help.php:31 ../../include/nav.php:64 +#: ../../mod/help.php:34 ../../addon/dav/friendica/layout.fnk.php:225 +#: ../../include/nav.php:86 msgid "Help" msgstr "Nápověda" -#: ../../mod/wall_attach.php:57 +#: ../../mod/help.php:38 ../../index.php:226 +msgid "Not Found" +msgstr "Nenalezen" + +#: ../../mod/help.php:41 ../../index.php:229 +msgid "Page not found." +msgstr "Stránka nenalezena" + +#: ../../mod/wall_attach.php:69 #, php-format msgid "File exceeds size limit of %d" msgstr "Velikost souboru přesáhla limit %d" -#: ../../mod/wall_attach.php:87 ../../mod/wall_attach.php:98 +#: ../../mod/wall_attach.php:110 ../../mod/wall_attach.php:121 msgid "File upload failed." msgstr "Nahrání souboru se nezdařilo." @@ -155,99 +220,95 @@ msgstr "Navrhněte přátelé" msgid "Suggest a friend for %s" msgstr "Navrhněte přátelé pro uživatele %s" -#: ../../mod/events.php:112 ../../mod/photos.php:834 ../../mod/notes.php:46 -#: ../../mod/profile.php:116 -msgid "Status" -msgstr "Stav" +#: ../../mod/events.php:66 +msgid "Event title and start time are required." +msgstr "Název události a datum začátku jsou vyžadovány." -#: ../../mod/events.php:113 ../../mod/photos.php:835 ../../mod/notes.php:47 -#: ../../mod/profperm.php:103 ../../mod/profile.php:117 -#: ../../include/profile_advanced.php:7 -msgid "Profile" -msgstr "Profil" - -#: ../../mod/events.php:114 ../../mod/photos.php:836 ../../mod/notes.php:48 -#: ../../mod/profile.php:118 -msgid "Photos" -msgstr "Fotografie" - -#: ../../mod/events.php:115 ../../mod/events.php:120 ../../mod/photos.php:837 -#: ../../mod/notes.php:49 ../../mod/profile.php:119 -msgid "Events" -msgstr "Události" - -#: ../../mod/events.php:116 ../../mod/photos.php:838 ../../mod/notes.php:50 -#: ../../mod/notes.php:55 ../../mod/profile.php:120 -msgid "Personal Notes" -msgstr "Osobní poznámky" - -#: ../../mod/events.php:210 -msgid "Create New Event" -msgstr "Vytvořit novou událost" - -#: ../../mod/events.php:213 -msgid "Previous" -msgstr "Předchozí" - -#: ../../mod/events.php:216 -msgid "Next" -msgstr "Následující" - -#: ../../mod/events.php:223 +#: ../../mod/events.php:279 msgid "l, F j" msgstr "l, F j" -#: ../../mod/events.php:235 +#: ../../mod/events.php:301 msgid "Edit event" msgstr "Editovat událost" -#: ../../mod/events.php:237 ../../include/text.php:846 +#: ../../mod/events.php:323 ../../include/text.php:1187 msgid "link to source" msgstr "odkaz na zdroj" -#: ../../mod/events.php:305 +#: ../../mod/events.php:347 ../../view/theme/diabook/theme.php:131 +#: ../../include/nav.php:52 ../../boot.php:1689 +msgid "Events" +msgstr "Události" + +#: ../../mod/events.php:348 +msgid "Create New Event" +msgstr "Vytvořit novou událost" + +#: ../../mod/events.php:349 ../../addon/dav/friendica/layout.fnk.php:263 +msgid "Previous" +msgstr "Předchozí" + +#: ../../mod/events.php:350 ../../mod/install.php:205 +#: ../../addon/dav/friendica/layout.fnk.php:266 +msgid "Next" +msgstr "Dále" + +#: ../../mod/events.php:423 msgid "hour:minute" msgstr "hodina:minuta" -#: ../../mod/events.php:314 +#: ../../mod/events.php:433 msgid "Event details" msgstr "Detaily události" -#: ../../mod/events.php:315 +#: ../../mod/events.php:434 #, php-format -msgid "Format is %s %s. Starting date and Description are required." -msgstr "Formát je %s %s. Datum zahájení a popis jsou povinné." +msgid "Format is %s %s. Starting date and Title are required." +msgstr "Formát je %s %s. Datum začátku a Název jsou vyžadovány." -#: ../../mod/events.php:316 +#: ../../mod/events.php:436 msgid "Event Starts:" msgstr "Událost začíná:" -#: ../../mod/events.php:319 +#: ../../mod/events.php:436 ../../mod/events.php:450 +msgid "Required" +msgstr "Vyžadováno" + +#: ../../mod/events.php:439 msgid "Finish date/time is not known or not relevant" msgstr "Datum/čas konce není zadán nebo není relevantní" -#: ../../mod/events.php:321 +#: ../../mod/events.php:441 msgid "Event Finishes:" msgstr "Akce končí:" -#: ../../mod/events.php:324 +#: ../../mod/events.php:444 msgid "Adjust for viewer timezone" msgstr "Nastavit časové pásmo pro uživatele s právem pro čtení" -#: ../../mod/events.php:326 +#: ../../mod/events.php:446 msgid "Description:" msgstr "Popis:" -#: ../../mod/events.php:328 ../../include/event.php:37 ../../boot.php:868 +#: ../../mod/events.php:448 ../../mod/directory.php:134 +#: ../../include/event.php:40 ../../include/bb2diaspora.php:412 +#: ../../boot.php:1226 msgid "Location:" msgstr "Místo:" -#: ../../mod/events.php:330 +#: ../../mod/events.php:450 +msgid "Title:" +msgstr "Název:" + +#: ../../mod/events.php:452 msgid "Share this event" msgstr "Sdílet tuto událost" -#: ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 -#: ../../mod/dfrn_request.php:644 ../../addon/js_upload/js_upload.php:45 +#: ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 ../../mod/editpost.php:136 +#: ../../mod/dfrn_request.php:847 ../../mod/settings.php:544 +#: ../../mod/settings.php:570 ../../addon/js_upload/js_upload.php:45 +#: ../../include/conversation.php:1307 msgid "Cancel" msgstr "Zrušit" @@ -261,327 +322,462 @@ msgstr "Odebrat štítek položky" #: ../../mod/tagrm.php:81 msgid "Select a tag to remove: " -msgstr "Vyberte štítek k odebrání:" +msgstr "Vyberte štítek k odebrání: " -#: ../../mod/tagrm.php:93 +#: ../../mod/tagrm.php:93 ../../mod/delegate.php:130 +#: ../../addon/dav/common/wdcal_edit.inc.php:468 msgid "Remove" msgstr "Odstranit" -#: ../../mod/dfrn_poll.php:90 ../../mod/dfrn_poll.php:516 +#: ../../mod/dfrn_poll.php:99 ../../mod/dfrn_poll.php:530 #, php-format msgid "%s welcomes %s" msgstr "%s vítá %s " -#: ../../mod/photos.php:37 +#: ../../mod/api.php:76 ../../mod/api.php:102 +msgid "Authorize application connection" +msgstr "Povolit připojení aplikacím" + +#: ../../mod/api.php:77 +msgid "Return to your app and insert this Securty Code:" +msgstr "Vraťte se do vaší aplikace a zadejte tento bezpečnostní kód:" + +#: ../../mod/api.php:89 +msgid "Please login to continue." +msgstr "Pro pokračování se prosím přihlaste." + +#: ../../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 "Chcete umožnit této aplikaci přístup k vašim příspěvkům a kontaktům a/nebo k vytváření Vašich nových příspěvků?" + +#: ../../mod/api.php:105 ../../mod/dfrn_request.php:835 +#: ../../mod/settings.php:892 ../../mod/settings.php:898 +#: ../../mod/settings.php:906 ../../mod/settings.php:910 +#: ../../mod/settings.php:915 ../../mod/settings.php:921 +#: ../../mod/settings.php:927 ../../mod/settings.php:933 +#: ../../mod/settings.php:963 ../../mod/settings.php:964 +#: ../../mod/settings.php:965 ../../mod/settings.php:966 +#: ../../mod/settings.php:967 ../../mod/register.php:236 +#: ../../mod/profiles.php:563 +msgid "Yes" +msgstr "Ano" + +#: ../../mod/api.php:106 ../../mod/dfrn_request.php:836 +#: ../../mod/settings.php:892 ../../mod/settings.php:898 +#: ../../mod/settings.php:906 ../../mod/settings.php:910 +#: ../../mod/settings.php:915 ../../mod/settings.php:921 +#: ../../mod/settings.php:927 ../../mod/settings.php:933 +#: ../../mod/settings.php:963 ../../mod/settings.php:964 +#: ../../mod/settings.php:965 ../../mod/settings.php:966 +#: ../../mod/settings.php:967 ../../mod/register.php:237 +#: ../../mod/profiles.php:564 +msgid "No" +msgstr "Ne" + +#: ../../mod/photos.php:46 ../../boot.php:1682 msgid "Photo Albums" msgstr "Fotoalba" -#: ../../mod/photos.php:45 ../../mod/photos.php:143 ../../mod/photos.php:857 -#: ../../mod/photos.php:926 ../../mod/photos.php:941 ../../mod/photos.php:1332 -#: ../../mod/photos.php:1344 +#: ../../mod/photos.php:54 ../../mod/photos.php:149 ../../mod/photos.php:986 +#: ../../mod/photos.php:1073 ../../mod/photos.php:1088 +#: ../../mod/photos.php:1530 ../../mod/photos.php:1542 +#: ../../addon/communityhome/communityhome.php:110 +#: ../../view/theme/diabook/theme.php:598 msgid "Contact Photos" msgstr "Fotogalerie kontaktu" -#: ../../mod/photos.php:57 ../../mod/settings.php:9 -msgid "everybody" -msgstr "Žádost o připojení selhala nebo byla zrušena." - -#: ../../mod/photos.php:132 -msgid "Contact information unavailable" -msgstr "Kontakt byl zablokován" - -#: ../../mod/photos.php:143 ../../mod/photos.php:577 ../../mod/photos.php:926 -#: ../../mod/photos.php:941 ../../mod/register.php:316 -#: ../../mod/register.php:323 ../../mod/register.php:330 -#: ../../mod/profile_photo.php:58 ../../mod/profile_photo.php:65 -#: ../../mod/profile_photo.php:72 ../../mod/profile_photo.php:160 -#: ../../mod/profile_photo.php:236 ../../mod/profile_photo.php:245 -msgid "Profile Photos" -msgstr "Profilové fotografie" - -#: ../../mod/photos.php:153 -msgid "Album not found." -msgstr "Album nenalezeno." - -#: ../../mod/photos.php:171 ../../mod/photos.php:935 -msgid "Delete Album" -msgstr "Smazat album" - -#: ../../mod/photos.php:234 ../../mod/photos.php:1145 -msgid "Delete Photo" -msgstr "Smazat fotografii" - -#: ../../mod/photos.php:508 -msgid "was tagged in a" -msgstr "štítek byl přidán v" - -#: ../../mod/photos.php:508 ../../mod/like.php:110 -#: ../../include/diaspora.php:446 ../../include/conversation.php:31 -msgid "photo" -msgstr "fotografie" - -#: ../../mod/photos.php:508 -msgid "by" -msgstr "od" - -#: ../../mod/photos.php:608 ../../addon/js_upload/js_upload.php:310 -msgid "Image exceeds size limit of " -msgstr "Velikost obrázku překračuje limit velikosti" - -#: ../../mod/photos.php:616 -msgid "Image file is empty." -msgstr "Soubor obrázku je prázdný." - -#: ../../mod/photos.php:630 ../../mod/profile_photo.php:118 -#: ../../mod/wall_upload.php:65 -msgid "Unable to process image." -msgstr "Obrázek není možné zprocesovat" - -#: ../../mod/photos.php:650 ../../mod/profile_photo.php:241 -#: ../../mod/wall_upload.php:84 -msgid "Image upload failed." -msgstr "Nahrání obrázku selhalo." - -#: ../../mod/photos.php:733 ../../mod/community.php:9 -#: ../../mod/dfrn_request.php:591 ../../mod/viewcontacts.php:16 -#: ../../mod/display.php:7 ../../mod/search.php:13 ../../mod/directory.php:20 -msgid "Public access denied." -msgstr "Veřejný přístup odepřen." - -#: ../../mod/photos.php:743 -msgid "No photos selected" -msgstr "Není vybrána žádná fotografie" - -#: ../../mod/photos.php:820 -msgid "Access to this item is restricted." -msgstr "Přístup k této položce je omezen." - -#: ../../mod/photos.php:884 -msgid "Upload Photos" -msgstr "Nahrání fotografií " - -#: ../../mod/photos.php:887 ../../mod/photos.php:930 -msgid "New album name: " -msgstr "Název nového alba:" - -#: ../../mod/photos.php:888 -msgid "or existing album name: " -msgstr "nebo stávající název alba:" - -#: ../../mod/photos.php:890 ../../mod/photos.php:1140 -msgid "Permissions" -msgstr "Oprávnění:" - -#: ../../mod/photos.php:945 -msgid "Edit Album" -msgstr "Edituj album" - -#: ../../mod/photos.php:955 ../../mod/photos.php:1362 -msgid "View Photo" -msgstr "Zobraz fotografii" - -#: ../../mod/photos.php:984 -msgid "Photo not available" -msgstr "Fotografie není k dispozici" - -#: ../../mod/photos.php:1033 -msgid "Edit photo" -msgstr "Editovat fotografii" - -#: ../../mod/photos.php:1034 -msgid "Use as profile photo" -msgstr "Použít jako profilovou fotografii" - -#: ../../mod/photos.php:1040 ../../include/conversation.php:342 -msgid "Private Message" -msgstr "Soukromá zpráva" - -#: ../../mod/photos.php:1051 -msgid "View Full Size" -msgstr "Zobrazit v plné velikosti" - -#: ../../mod/photos.php:1119 -msgid "Tags: " -msgstr "Štítky:" - -#: ../../mod/photos.php:1122 -msgid "[Remove any tag]" -msgstr "[Odstranit všechny štítky]" - -#: ../../mod/photos.php:1133 -msgid "New album name" -msgstr "Nové jméno alba" - -#: ../../mod/photos.php:1136 -msgid "Caption" -msgstr "Titulek" - -#: ../../mod/photos.php:1138 -msgid "Add a Tag" -msgstr "Přidat štítek" - -#: ../../mod/photos.php:1142 -msgid "" -"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" -msgstr "" -"Příklad: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" - -#: ../../mod/photos.php:1162 ../../include/conversation.php:390 -msgid "I like this (toggle)" -msgstr "Líbí se mi to (přepínač)" - -#: ../../mod/photos.php:1163 ../../include/conversation.php:391 -msgid "I don't like this (toggle)" -msgstr "Nelíbí se mi to (přepínač)" - -#: ../../mod/photos.php:1164 ../../include/conversation.php:392 -#: ../../include/conversation.php:746 -msgid "Share" -msgstr "Sdílet" - -#: ../../mod/photos.php:1165 ../../mod/editpost.php:99 -#: ../../mod/message.php:190 ../../mod/message.php:324 -#: ../../include/conversation.php:393 ../../include/conversation.php:756 -msgid "Please wait" -msgstr "Čekejte prosím" - -#: ../../mod/photos.php:1181 ../../mod/photos.php:1220 -#: ../../mod/photos.php:1251 ../../include/conversation.php:406 -msgid "This is you" -msgstr "To je Vy" - -#: ../../mod/photos.php:1183 ../../mod/photos.php:1222 -#: ../../mod/photos.php:1253 ../../include/conversation.php:408 -#: ../../boot.php:411 -msgid "Comment" -msgstr "Okomentovat" - -#: ../../mod/photos.php:1281 ../../mod/group.php:154 ../../mod/admin.php:468 -#: ../../include/conversation.php:427 -msgid "Delete" -msgstr "Odstranit" - -#: ../../mod/photos.php:1349 -msgid "Recent Photos" -msgstr "Aktuální fotografie" - -#: ../../mod/photos.php:1353 +#: ../../mod/photos.php:61 ../../mod/photos.php:1104 ../../mod/photos.php:1580 msgid "Upload New Photos" msgstr "Nahrát nové fotografie" -#: ../../mod/photos.php:1366 +#: ../../mod/photos.php:74 ../../mod/settings.php:23 +msgid "everybody" +msgstr "Žádost o připojení selhala nebo byla zrušena." + +#: ../../mod/photos.php:138 +msgid "Contact information unavailable" +msgstr "Kontakt byl zablokován" + +#: ../../mod/photos.php:149 ../../mod/photos.php:653 ../../mod/photos.php:1073 +#: ../../mod/photos.php:1088 ../../mod/profile_photo.php:74 +#: ../../mod/profile_photo.php:81 ../../mod/profile_photo.php:88 +#: ../../mod/profile_photo.php:204 ../../mod/profile_photo.php:296 +#: ../../mod/profile_photo.php:305 +#: ../../addon/communityhome/communityhome.php:111 +#: ../../view/theme/diabook/theme.php:599 ../../include/user.php:324 +#: ../../include/user.php:331 ../../include/user.php:338 +msgid "Profile Photos" +msgstr "Profilové fotografie" + +#: ../../mod/photos.php:159 +msgid "Album not found." +msgstr "Album nenalezeno." + +#: ../../mod/photos.php:177 ../../mod/photos.php:1082 +msgid "Delete Album" +msgstr "Smazat album" + +#: ../../mod/photos.php:240 ../../mod/photos.php:1339 +msgid "Delete Photo" +msgstr "Smazat fotografii" + +#: ../../mod/photos.php:584 +msgid "was tagged in a" +msgstr "štítek byl přidán v" + +#: ../../mod/photos.php:584 ../../mod/like.php:145 ../../mod/tagger.php:62 +#: ../../addon/communityhome/communityhome.php:163 +#: ../../view/theme/diabook/theme.php:570 ../../include/text.php:1439 +#: ../../include/diaspora.php:1824 ../../include/conversation.php:125 +#: ../../include/conversation.php:253 +msgid "photo" +msgstr "fotografie" + +#: ../../mod/photos.php:584 +msgid "by" +msgstr "od" + +#: ../../mod/photos.php:689 ../../addon/js_upload/js_upload.php:315 +msgid "Image exceeds size limit of " +msgstr "Velikost obrázku překračuje limit velikosti" + +#: ../../mod/photos.php:697 +msgid "Image file is empty." +msgstr "Soubor obrázku je prázdný." + +#: ../../mod/photos.php:729 ../../mod/profile_photo.php:153 +#: ../../mod/wall_upload.php:110 +msgid "Unable to process image." +msgstr "Obrázek není možné zprocesovat" + +#: ../../mod/photos.php:756 ../../mod/profile_photo.php:301 +#: ../../mod/wall_upload.php:136 +msgid "Image upload failed." +msgstr "Nahrání obrázku selhalo." + +#: ../../mod/photos.php:842 ../../mod/community.php:18 +#: ../../mod/dfrn_request.php:760 ../../mod/viewcontacts.php:17 +#: ../../mod/display.php:7 ../../mod/search.php:73 ../../mod/directory.php:31 +msgid "Public access denied." +msgstr "Veřejný přístup odepřen." + +#: ../../mod/photos.php:852 +msgid "No photos selected" +msgstr "Není vybrána žádná fotografie" + +#: ../../mod/photos.php:953 +msgid "Access to this item is restricted." +msgstr "Přístup k této položce je omezen." + +#: ../../mod/photos.php:1015 +#, php-format +msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage." +msgstr "Použil jste %1$.2f Mbajtů z %2$.2f Mbajtů úložiště fotografií." + +#: ../../mod/photos.php:1018 +#, php-format +msgid "You have used %1$.2f Mbytes of photo storage." +msgstr "Použil jste %1$.2f Mbytes kapacity úložiště fotografií." + +#: ../../mod/photos.php:1024 +msgid "Upload Photos" +msgstr "Nahrání fotografií " + +#: ../../mod/photos.php:1028 ../../mod/photos.php:1077 +msgid "New album name: " +msgstr "Název nového alba: " + +#: ../../mod/photos.php:1029 +msgid "or existing album name: " +msgstr "nebo stávající název alba: " + +#: ../../mod/photos.php:1030 +msgid "Do not show a status post for this upload" +msgstr "Nezobrazovat stav pro tento upload" + +#: ../../mod/photos.php:1032 ../../mod/photos.php:1334 +msgid "Permissions" +msgstr "Oprávnění:" + +#: ../../mod/photos.php:1092 +msgid "Edit Album" +msgstr "Edituj album" + +#: ../../mod/photos.php:1098 +msgid "Show Newest First" +msgstr "Zobrazit nejprve nejnovější:" + +#: ../../mod/photos.php:1100 +msgid "Show Oldest First" +msgstr "Zobrazit nejprve nejstarší:" + +#: ../../mod/photos.php:1124 ../../mod/photos.php:1563 +msgid "View Photo" +msgstr "Zobraz fotografii" + +#: ../../mod/photos.php:1159 +msgid "Permission denied. Access to this item may be restricted." +msgstr "Oprávnění bylo zamítnuto. Přístup k této položce může být omezen." + +#: ../../mod/photos.php:1161 +msgid "Photo not available" +msgstr "Fotografie není k dispozici" + +#: ../../mod/photos.php:1217 +msgid "View photo" +msgstr "Zobrazit obrázek" + +#: ../../mod/photos.php:1217 +msgid "Edit photo" +msgstr "Editovat fotografii" + +#: ../../mod/photos.php:1218 +msgid "Use as profile photo" +msgstr "Použít jako profilovou fotografii" + +#: ../../mod/photos.php:1224 ../../mod/content.php:603 +#: ../../include/conversation.php:436 ../../object/Item.php:103 +msgid "Private Message" +msgstr "Soukromá zpráva" + +#: ../../mod/photos.php:1243 +msgid "View Full Size" +msgstr "Zobrazit v plné velikosti" + +#: ../../mod/photos.php:1311 +msgid "Tags: " +msgstr "Štítky: " + +#: ../../mod/photos.php:1314 +msgid "[Remove any tag]" +msgstr "[Odstranit všechny štítky]" + +#: ../../mod/photos.php:1324 +msgid "Rotate CW (right)" +msgstr "Rotovat po směru hodinových ručiček (doprava)" + +#: ../../mod/photos.php:1325 +msgid "Rotate CCW (left)" +msgstr "Rotovat proti směru hodinových ručiček (doleva)" + +#: ../../mod/photos.php:1327 +msgid "New album name" +msgstr "Nové jméno alba" + +#: ../../mod/photos.php:1330 +msgid "Caption" +msgstr "Titulek" + +#: ../../mod/photos.php:1332 +msgid "Add a Tag" +msgstr "Přidat štítek" + +#: ../../mod/photos.php:1336 +msgid "" +"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" +msgstr "Příklad: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" + +#: ../../mod/photos.php:1356 ../../mod/content.php:667 +#: ../../include/conversation.php:581 ../../object/Item.php:195 +msgid "I like this (toggle)" +msgstr "Líbí se mi to (přepínač)" + +#: ../../mod/photos.php:1357 ../../mod/content.php:668 +#: ../../include/conversation.php:582 ../../object/Item.php:196 +msgid "I don't like this (toggle)" +msgstr "Nelíbí se mi to (přepínač)" + +#: ../../mod/photos.php:1358 ../../include/conversation.php:1268 +msgid "Share" +msgstr "Sdílet" + +#: ../../mod/photos.php:1359 ../../mod/editpost.php:112 +#: ../../mod/content.php:482 ../../mod/content.php:845 +#: ../../mod/wallmessage.php:152 ../../mod/message.php:293 +#: ../../mod/message.php:481 ../../include/conversation.php:686 +#: ../../include/conversation.php:944 ../../include/conversation.php:1287 +#: ../../object/Item.php:257 +msgid "Please wait" +msgstr "Čekejte prosím" + +#: ../../mod/photos.php:1375 ../../mod/photos.php:1416 +#: ../../mod/photos.php:1448 ../../mod/content.php:690 +#: ../../include/conversation.php:604 ../../object/Item.php:556 +msgid "This is you" +msgstr "Nastavte Vaši polohu" + +#: ../../mod/photos.php:1377 ../../mod/photos.php:1418 +#: ../../mod/photos.php:1450 ../../mod/content.php:692 +#: ../../include/conversation.php:606 ../../boot.php:574 +#: ../../object/Item.php:558 +msgid "Comment" +msgstr "Okomentovat" + +#: ../../mod/photos.php:1379 ../../mod/editpost.php:133 +#: ../../mod/content.php:702 ../../include/conversation.php:616 +#: ../../include/conversation.php:1305 ../../object/Item.php:568 +msgid "Preview" +msgstr "Náhled" + +#: ../../mod/photos.php:1479 ../../mod/content.php:439 +#: ../../mod/content.php:723 ../../mod/settings.php:606 +#: ../../mod/settings.php:695 ../../mod/group.php:168 ../../mod/admin.php:696 +#: ../../include/conversation.php:448 ../../include/conversation.php:889 +#: ../../object/Item.php:116 +msgid "Delete" +msgstr "Odstranit" + +#: ../../mod/photos.php:1569 msgid "View Album" msgstr "Zobrazit album" -#: ../../mod/community.php:14 +#: ../../mod/photos.php:1578 +msgid "Recent Photos" +msgstr "Aktuální fotografie" + +#: ../../mod/community.php:23 msgid "Not available." msgstr "Není k dispozici." -#: ../../mod/community.php:26 ../../include/nav.php:79 +#: ../../mod/community.php:32 ../../view/theme/diabook/theme.php:133 +#: ../../include/nav.php:101 msgid "Community" msgstr "Komunita" -#: ../../mod/community.php:56 ../../mod/search.php:65 +#: ../../mod/community.php:63 ../../mod/community.php:88 +#: ../../mod/search.php:148 ../../mod/search.php:174 msgid "No results." msgstr "Žádné výsledky." -#: ../../mod/community.php:83 ../../mod/network.php:302 -#: ../../mod/register.php:504 ../../mod/profile.php:241 -#: ../../mod/display.php:117 +#: ../../mod/friendica.php:55 +msgid "This is Friendica, version" +msgstr "Toto je Friendica, verze" + +#: ../../mod/friendica.php:56 +msgid "running at web location" +msgstr "běžící na webu" + +#: ../../mod/friendica.php:58 msgid "" -"Shared content is covered by the Creative Commons " -"Attribution 3.0 license." -msgstr "" -"Sdílený obsah je v souladu s Commons Creative " -"3.0 licencí." +"Please visit Friendica.com to learn " +"more about the Friendica project." +msgstr "Pro získání dalších informací o projektu Friendica navštivte prosím Friendica.com." + +#: ../../mod/friendica.php:60 +msgid "Bug reports and issues: please visit" +msgstr "Pro hlášení chyb a námětů na změny navštivte:" + +#: ../../mod/friendica.php:61 +msgid "" +"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - " +"dot com" +msgstr "Návrhy, chválu, dary, apod. - prosím piště na \"info\" na Friendica - tečka com" + +#: ../../mod/friendica.php:75 +msgid "Installed plugins/addons/apps:" +msgstr "Instalované pluginy/doplňky/aplikace:" + +#: ../../mod/friendica.php:88 +msgid "No installed plugins/addons/apps" +msgstr "Nejsou žádné nainstalované doplňky/aplikace" #: ../../mod/editpost.php:17 ../../mod/editpost.php:27 msgid "Item not found" msgstr "Položka nenalezena" -#: ../../mod/editpost.php:32 +#: ../../mod/editpost.php:36 msgid "Edit post" msgstr "Upravit příspěvek" -#: ../../mod/editpost.php:75 ../../include/conversation.php:732 +#: ../../mod/editpost.php:88 ../../include/conversation.php:1254 msgid "Post to Email" msgstr "Poslat příspěvek na e-mail" -#: ../../mod/editpost.php:90 ../../include/group.php:171 -#: ../../include/group.php:172 ../../include/conversation.php:417 +#: ../../mod/editpost.php:103 ../../mod/content.php:710 +#: ../../mod/settings.php:605 ../../include/conversation.php:441 +#: ../../object/Item.php:107 msgid "Edit" msgstr "Upravit" -#: ../../mod/editpost.php:91 ../../mod/message.php:188 -#: ../../mod/message.php:322 ../../include/conversation.php:747 +#: ../../mod/editpost.php:104 ../../mod/wallmessage.php:150 +#: ../../mod/message.php:291 ../../mod/message.php:478 +#: ../../include/conversation.php:1269 msgid "Upload photo" msgstr "Nahrát fotografii" -#: ../../mod/editpost.php:92 ../../include/conversation.php:748 +#: ../../mod/editpost.php:105 ../../include/conversation.php:1271 msgid "Attach file" msgstr "Přiložit soubor" -#: ../../mod/editpost.php:93 ../../mod/message.php:189 -#: ../../mod/message.php:323 ../../include/conversation.php:749 +#: ../../mod/editpost.php:106 ../../mod/wallmessage.php:151 +#: ../../mod/message.php:292 ../../mod/message.php:479 +#: ../../include/conversation.php:1273 msgid "Insert web link" msgstr "Vložit webový odkaz" -#: ../../mod/editpost.php:94 ../../include/conversation.php:750 +#: ../../mod/editpost.php:107 msgid "Insert YouTube video" msgstr "Vložit YouTube video" -#: ../../mod/editpost.php:95 ../../include/conversation.php:751 +#: ../../mod/editpost.php:108 msgid "Insert Vorbis [.ogg] video" msgstr "Vložit Vorbis [.ogg] video" -#: ../../mod/editpost.php:96 ../../include/conversation.php:752 +#: ../../mod/editpost.php:109 msgid "Insert Vorbis [.ogg] audio" msgstr "Vložit Vorbis [.ogg] audio" -#: ../../mod/editpost.php:97 ../../include/conversation.php:753 +#: ../../mod/editpost.php:110 ../../include/conversation.php:1279 msgid "Set your location" msgstr "Nastavte vaši polohu" -#: ../../mod/editpost.php:98 ../../include/conversation.php:754 +#: ../../mod/editpost.php:111 ../../include/conversation.php:1281 msgid "Clear browser location" msgstr "Odstranit adresu v prohlížeči" -#: ../../mod/editpost.php:100 ../../include/conversation.php:757 +#: ../../mod/editpost.php:113 ../../include/conversation.php:1288 msgid "Permission settings" msgstr "Nastavení oprávnění" -#: ../../mod/editpost.php:108 ../../include/conversation.php:765 +#: ../../mod/editpost.php:121 ../../include/conversation.php:1297 msgid "CC: email addresses" msgstr "skrytá kopie: e-mailové adresy" -#: ../../mod/editpost.php:109 ../../include/conversation.php:766 +#: ../../mod/editpost.php:122 ../../include/conversation.php:1298 msgid "Public post" msgstr "Veřejný příspěvek" -#: ../../mod/editpost.php:111 ../../include/conversation.php:768 +#: ../../mod/editpost.php:125 ../../include/conversation.php:1284 +msgid "Set title" +msgstr "Nastavit titulek" + +#: ../../mod/editpost.php:127 ../../include/conversation.php:1286 +msgid "Categories (comma-separated list)" +msgstr "Kategorie (čárkou oddělený seznam)" + +#: ../../mod/editpost.php:128 ../../include/conversation.php:1300 msgid "Example: bob@example.com, mary@example.com" msgstr "Příklad: bob@example.com, mary@example.com" -#: ../../mod/dfrn_request.php:96 +#: ../../mod/dfrn_request.php:93 msgid "This introduction has already been accepted." -msgstr "Toto pozvání již bylo přijato" +msgstr "Toto pozvání již bylo přijato." -#: ../../mod/dfrn_request.php:120 ../../mod/dfrn_request.php:351 +#: ../../mod/dfrn_request.php:118 ../../mod/dfrn_request.php:512 msgid "Profile location is not valid or does not contain profile information." msgstr "Adresa profilu není platná nebo neobsahuje profilové informace" -#: ../../mod/dfrn_request.php:125 ../../mod/dfrn_request.php:356 +#: ../../mod/dfrn_request.php:123 ../../mod/dfrn_request.php:517 msgid "Warning: profile location has no identifiable owner name." -msgstr "" -"Varování: umístění profilu nemá žádné identifikovatelné jméno vlastníka" +msgstr "Varování: umístění profilu nemá žádné identifikovatelné jméno vlastníka" -#: ../../mod/dfrn_request.php:127 ../../mod/dfrn_request.php:358 +#: ../../mod/dfrn_request.php:125 ../../mod/dfrn_request.php:519 msgid "Warning: profile location has no profile photo." msgstr "Varování: umístění profilu nemá žádnou profilovou fotografii." -#: ../../mod/dfrn_request.php:130 ../../mod/dfrn_request.php:361 +#: ../../mod/dfrn_request.php:128 ../../mod/dfrn_request.php:522 #, php-format msgid "%d required parameter was not found at the given location" msgid_plural "%d required parameters were not found at the given location" @@ -589,411 +785,498 @@ msgstr[0] "%d požadovaný parametr nebyl nalezen na daném místě" msgstr[1] "%d požadované parametry nebyly nalezeny na daném místě" msgstr[2] "%d požadované parametry nebyly nalezeny na daném místě" -#: ../../mod/dfrn_request.php:168 +#: ../../mod/dfrn_request.php:170 msgid "Introduction complete." msgstr "Představení dokončeno." -#: ../../mod/dfrn_request.php:192 +#: ../../mod/dfrn_request.php:209 msgid "Unrecoverable protocol error." msgstr "Neopravitelná chyba protokolu" -#: ../../mod/dfrn_request.php:220 +#: ../../mod/dfrn_request.php:237 msgid "Profile unavailable." msgstr "Profil není k dispozici." -#: ../../mod/dfrn_request.php:245 +#: ../../mod/dfrn_request.php:262 #, php-format msgid "%s has received too many connection requests today." msgstr "%s dnes obdržel příliš mnoho požadavků na připojení." -#: ../../mod/dfrn_request.php:246 +#: ../../mod/dfrn_request.php:263 msgid "Spam protection measures have been invoked." msgstr "Ochrana proti spamu byla aktivována" -#: ../../mod/dfrn_request.php:247 +#: ../../mod/dfrn_request.php:264 msgid "Friends are advised to please try again in 24 hours." msgstr "Přátelům se doporučuje to zkusit znovu za 24 hodin." -#: ../../mod/dfrn_request.php:277 +#: ../../mod/dfrn_request.php:326 msgid "Invalid locator" msgstr "Neplatný odkaz" -#: ../../mod/dfrn_request.php:296 +#: ../../mod/dfrn_request.php:335 +msgid "Invalid email address." +msgstr "Neplatná emailová adresa" + +#: ../../mod/dfrn_request.php:361 +msgid "This account has not been configured for email. Request failed." +msgstr "Tento účet nebyl nastaven pro email. Požadavek nesplněn." + +#: ../../mod/dfrn_request.php:457 msgid "Unable to resolve your name at the provided location." msgstr "Nepodařilo se zjistit Vaše jméno na zadané adrese." -#: ../../mod/dfrn_request.php:309 +#: ../../mod/dfrn_request.php:470 msgid "You have already introduced yourself here." msgstr "Již jste se zde zavedli." -#: ../../mod/dfrn_request.php:313 +#: ../../mod/dfrn_request.php:474 #, php-format msgid "Apparently you are already friends with %s." msgstr "Zřejmě jste již přátelé se %s." -#: ../../mod/dfrn_request.php:334 +#: ../../mod/dfrn_request.php:495 msgid "Invalid profile URL." msgstr "Neplatné URL profilu." -#: ../../mod/dfrn_request.php:340 ../../mod/follow.php:20 +#: ../../mod/dfrn_request.php:501 ../../include/follow.php:27 msgid "Disallowed profile URL." msgstr "Nepovolené URL profilu." -#: ../../mod/dfrn_request.php:406 ../../mod/contacts.php:116 +#: ../../mod/dfrn_request.php:570 ../../mod/contacts.php:123 msgid "Failed to update contact record." msgstr "Nepodařilo se aktualizovat kontakt." -#: ../../mod/dfrn_request.php:427 +#: ../../mod/dfrn_request.php:591 msgid "Your introduction has been sent." msgstr "Vaše žádost o propojení byla odeslána." -#: ../../mod/dfrn_request.php:481 +#: ../../mod/dfrn_request.php:644 msgid "Please login to confirm introduction." msgstr "Prosím přihlašte se k potvrzení žádosti o propojení." -#: ../../mod/dfrn_request.php:495 +#: ../../mod/dfrn_request.php:658 msgid "" "Incorrect identity currently logged in. Please login to " "this profile." -msgstr "" -"Jste přihlášeni pod nesprávnou identitou Prosím, přihlaste se do " -"tohoto profilu." +msgstr "Jste přihlášeni pod nesprávnou identitou Prosím, přihlaste se do tohoto profilu." -#: ../../mod/dfrn_request.php:507 +#: ../../mod/dfrn_request.php:669 +msgid "Hide this contact" +msgstr "Skrýt tento kontakt" + +#: ../../mod/dfrn_request.php:672 #, php-format msgid "Welcome home %s." msgstr "Vítejte doma %s." -#: ../../mod/dfrn_request.php:508 +#: ../../mod/dfrn_request.php:673 #, php-format msgid "Please confirm your introduction/connection request to %s." -msgstr "Prosím potvrďte Vaši žádost o představení/spojení %s." +msgstr "Prosím potvrďte Vaši žádost o propojení %s." -#: ../../mod/dfrn_request.php:509 +#: ../../mod/dfrn_request.php:674 msgid "Confirm" msgstr "Potvrdit" -#: ../../mod/dfrn_request.php:542 ../../include/items.php:1519 +#: ../../mod/dfrn_request.php:715 ../../include/items.php:3287 msgid "[Name Withheld]" msgstr "[Jméno odepřeno]" -#: ../../mod/dfrn_request.php:549 -msgid "Introduction received at " -msgstr "Pozvánka přijata v" - -#: ../../mod/dfrn_request.php:551 ../../mod/lostpass.php:44 -#: ../../mod/lostpass.php:106 ../../mod/register.php:369 -#: ../../mod/register.php:423 ../../mod/regmod.php:54 -#: ../../mod/dfrn_notify.php:291 ../../mod/dfrn_notify.php:547 -#: ../../mod/dfrn_confirm.php:674 ../../include/items.php:1528 -msgid "Administrator" -msgstr "Administrátor" - -#: ../../mod/dfrn_request.php:630 -msgid "Friend/Connection Request" -msgstr "Požadavek o přátelství / propojení" - -#: ../../mod/dfrn_request.php:631 +#: ../../mod/dfrn_request.php:810 msgid "" -"Examples: jojo@demo.friendika.com, http://demo.friendika.com/profile/jojo, " -"testuser@identi.ca" -msgstr "" -"Příklady: jojo@demo.friendika.com, http://demo.friendika.com/profile/jojo, " -"testuser@identi.ca" +"Please enter your 'Identity Address' from one of the following supported " +"communications networks:" +msgstr "Prosím zadejte Vaši adresu identity jedné z následujících podporovaných komunikačních sítí:" -#: ../../mod/dfrn_request.php:632 +#: ../../mod/dfrn_request.php:826 +msgid "Connect as an email follower (Coming soon)" +msgstr "Připojte se jako emailový následovník (Již brzy)" + +#: ../../mod/dfrn_request.php:828 +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 "Pokud ještě nejste členem svobodné sociální sítě, následujte tento odkaz k nalezení veřejného Friendica serveru a přidejte se k nám ještě dnes." + +#: ../../mod/dfrn_request.php:831 +msgid "Friend/Connection Request" +msgstr "Požadavek o přátelství / kontaktování" + +#: ../../mod/dfrn_request.php:832 +msgid "" +"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, " +"testuser@identi.ca" +msgstr "Příklady: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca" + +#: ../../mod/dfrn_request.php:833 msgid "Please answer the following:" msgstr "Odpovězte, prosím, následující:" -#: ../../mod/dfrn_request.php:633 +#: ../../mod/dfrn_request.php:834 #, php-format msgid "Does %s know you?" msgstr "Zná Vás uživatel %s ?" -#: ../../mod/dfrn_request.php:634 ../../mod/settings.php:415 -#: ../../mod/settings.php:421 ../../mod/settings.php:429 -#: ../../mod/settings.php:433 ../../mod/register.php:498 -#: ../../mod/profiles.php:354 -msgid "Yes" -msgstr "Ano" - -#: ../../mod/dfrn_request.php:635 ../../mod/settings.php:415 -#: ../../mod/settings.php:421 ../../mod/settings.php:429 -#: ../../mod/settings.php:433 ../../mod/register.php:499 -#: ../../mod/profiles.php:355 -msgid "No" -msgstr "Ne" - -#: ../../mod/dfrn_request.php:636 +#: ../../mod/dfrn_request.php:837 msgid "Add a personal note:" msgstr "Přidat osobní poznámku:" -#: ../../mod/dfrn_request.php:637 -msgid "" -"Please enter your 'Identity Address' from one of the following supported " -"social networks:" -msgstr "" -"Prosím, zadejte adresu své 'identity' jedné z následujících podporovaných " -"sociálních sítí:" +#: ../../mod/dfrn_request.php:839 ../../include/contact_selectors.php:76 +msgid "Friendica" +msgstr "Friendica" -#: ../../mod/dfrn_request.php:638 -msgid "Friendika" -msgstr "Friendika" - -#: ../../mod/dfrn_request.php:639 +#: ../../mod/dfrn_request.php:840 msgid "StatusNet/Federated Social Web" msgstr "StatusNet / Federativní Sociální Web" -#: ../../mod/dfrn_request.php:640 -msgid "Private (secure) network" -msgstr "Soukromá (zabezpečená) síť" +#: ../../mod/dfrn_request.php:841 ../../mod/settings.php:640 +#: ../../include/contact_selectors.php:80 +msgid "Diaspora" +msgstr "Diaspora" -#: ../../mod/dfrn_request.php:641 -msgid "Public (insecure) network" -msgstr "Veřejná (nezabezpečená) síť" +#: ../../mod/dfrn_request.php:842 +#, php-format +msgid "" +" - please do not use this form. Instead, enter %s into your Diaspora search" +" bar." +msgstr " - prosím nepoužívejte tento formulář. Místo toho zadejte %s do Vašeho Diaspora vyhledávacího pole." -#: ../../mod/dfrn_request.php:642 +#: ../../mod/dfrn_request.php:843 msgid "Your Identity Address:" -msgstr "Adresa Vaší identity :" +msgstr "Verze PHP pro příkazový řádek na Vašem systému nemá povolen \"register_argc_argv\"." -#: ../../mod/dfrn_request.php:643 +#: ../../mod/dfrn_request.php:846 msgid "Submit Request" msgstr "Odeslat žádost" -#: ../../mod/install.php:34 -msgid "Could not create/connect to database." -msgstr "Nelze vytvořit / připojit se k databázi." +#: ../../mod/install.php:117 +msgid "Friendica Social Communications Server - Setup" +msgstr "Friendica Sociální komunkační server - Nastavení" -#: ../../mod/install.php:39 -msgid "Connected to database." -msgstr "Připojeno k databázi." +#: ../../mod/install.php:123 +msgid "Could not connect to database." +msgstr "Nelze se připojit k databázi." -#: ../../mod/install.php:75 -msgid "Proceed with Installation" -msgstr "Pokračovat v instalaci" +#: ../../mod/install.php:127 +msgid "Could not create table." +msgstr "Nelze vytvořit tabulku." -#: ../../mod/install.php:77 -msgid "Your Friendika site database has been installed." -msgstr "Vaše databáze Friendiky byla nainstalována." +#: ../../mod/install.php:133 +msgid "Your Friendica site database has been installed." +msgstr "Vaše databáze Friendica byla nainstalována." -#: ../../mod/install.php:78 -msgid "" -"IMPORTANT: You will need to [manually] setup a scheduled task for the " -"poller." -msgstr "Důležité: Budete si muset [ručně] plánovat úlohu pro poller." - -#: ../../mod/install.php:79 ../../mod/install.php:89 ../../mod/install.php:207 -msgid "Please see the file \"INSTALL.txt\"." -msgstr "Přečtěte si prosím informace v souboru \"INSTALL.txt\"." - -#: ../../mod/install.php:81 -msgid "Proceed to registration" -msgstr "Pokračovat k registraci" - -#: ../../mod/install.php:87 -msgid "Database import failed." -msgstr "Import databáze se nezdařil." - -#: ../../mod/install.php:88 +#: ../../mod/install.php:138 msgid "" "You may need to import the file \"database.sql\" manually using phpmyadmin " "or mysql." -msgstr "" -"Možná budete muset importovat soubor \"database.sql\" ručně pomocí " -"phpMyAdmin či MySQL." +msgstr "Toto je nejčastěji nastavením oprávnění, kdy webový server nemusí být schopen zapisovat soubory do Vašeho adresáře - i když Vy můžete." -#: ../../mod/install.php:101 -msgid "Welcome to Friendika." -msgstr "Vítejte na Friendice." +#: ../../mod/install.php:139 ../../mod/install.php:204 +#: ../../mod/install.php:488 +msgid "Please see the file \"INSTALL.txt\"." +msgstr "Přečtěte si prosím informace v souboru \"INSTALL.txt\"." -#: ../../mod/install.php:124 -msgid "Friendika Social Network" -msgstr "Sociální síť Friendika " +#: ../../mod/install.php:201 +msgid "System check" +msgstr "Testování systému" -#: ../../mod/install.php:125 -msgid "Installation" -msgstr "Instalace" +#: ../../mod/install.php:206 +msgid "Check again" +msgstr "Otestovat znovu" -#: ../../mod/install.php:126 +#: ../../mod/install.php:225 +msgid "Database connection" +msgstr "Databázové spojení" + +#: ../../mod/install.php:226 msgid "" -"In order to install Friendika we need to know how to connect to your " +"In order to install Friendica we need to know how to connect to your " "database." -msgstr "Pro instalaci Friendika musíme vědět, jak se připojit k databázi." +msgstr "Pro instalaci Friendica potřeujeme znát připojení k Vaší databázi." -#: ../../mod/install.php:127 +#: ../../mod/install.php:227 msgid "" "Please contact your hosting provider or site administrator if you have " "questions about these settings." -msgstr "" -"Obraťte se na svého poskytovatele hostingu nebo administrátora serveru , " -"pokud máte dotazy týkající se těchto nastavení." +msgstr "Pokud máte otázky k následujícím nastavením, obraťte se na svého poskytovatele hostingu nebo administrátora serveru, " -#: ../../mod/install.php:128 +#: ../../mod/install.php:228 msgid "" "The database you specify below should already exist. If it does not, please " "create it before continuing." -msgstr "" -"Databázi, kterou uvedete níže by již měla existovat. Pokud tak není, " -"prosíme, vytvořte ji před pokračováním." +msgstr "Databáze, kterou uvedete níže, by již měla existovat. Pokud to tak není, prosíme, vytvořte ji před pokračováním." -#: ../../mod/install.php:129 +#: ../../mod/install.php:232 msgid "Database Server Name" msgstr "Jméno databázového serveru" -#: ../../mod/install.php:130 +#: ../../mod/install.php:233 msgid "Database Login Name" msgstr "Přihlašovací jméno k databázi" -#: ../../mod/install.php:131 +#: ../../mod/install.php:234 msgid "Database Login Password" msgstr "Heslo k databázovému účtu " -#: ../../mod/install.php:132 +#: ../../mod/install.php:235 msgid "Database Name" msgstr "Jméno databáze" -#: ../../mod/install.php:133 -msgid "Please select a default timezone for your website" -msgstr "Prosím, vyberte výchozí časové pásmo pro vaše webové stránky" +#: ../../mod/install.php:236 ../../mod/install.php:275 +msgid "Site administrator email address" +msgstr "Emailová adresa administrátora webu" -#: ../../mod/install.php:134 +#: ../../mod/install.php:236 ../../mod/install.php:275 msgid "" -"Site administrator email address. Your account email address must match this" -" in order to use the web admin panel." -msgstr "" -"e-mailová adresa administrárota webu. E-mailová adresa vašeho účtu se musí " -"shodovat, aby bylo možné využívat panel webové administrace." +"Your account email address must match this in order to use the web admin " +"panel." +msgstr "Vaše emailová adresa účtu se musí s touto shodovat, aby bylo možné využívat administrační panel ve webovém rozhraní." -#: ../../mod/install.php:153 +#: ../../mod/install.php:240 ../../mod/install.php:278 +msgid "Please select a default timezone for your website" +msgstr "Prosím, vyberte výchozí časové pásmo pro váš server" + +#: ../../mod/install.php:265 +msgid "Site settings" +msgstr "Nastavení webu" + +#: ../../mod/install.php:318 msgid "Could not find a command line version of PHP in the web server PATH." msgstr "Nelze najít verzi PHP pro příkazový řádek v PATH webového serveru." -#: ../../mod/install.php:154 +#: ../../mod/install.php:319 msgid "" -"This is required. Please adjust the configuration file .htconfig.php " -"accordingly." -msgstr "" -"Tento krok je nutný. Upravte příslušným způsobem konfigurační soubor " -".htconfig.php." +"If you don't have a command line version of PHP installed on server, you " +"will not be able to run background polling via cron. See 'Activating scheduled tasks'" +msgstr "Pokud na serveru nemáte nainstalovánu verzi PHP spustitelnou z příkazového řádku, nebudete moci spouštět na pozadí synchronizaci zpráv prostřednictvím cronu. Přečtěte si 'Activating scheduled tasks'\n\n podrobnosti\n návrhy\n historie\n\n\t\nThe following url is either missing from the translation or has been translated: 'http://friendica.com/node/27'>'Activating scheduled tasks'" -#: ../../mod/install.php:161 +#: ../../mod/install.php:323 +msgid "PHP executable path" +msgstr "Cesta k \"PHP executable\"" + +#: ../../mod/install.php:323 +msgid "" +"Enter full path to php executable. You can leave this blank to continue the " +"installation." +msgstr "Zadejte plnou cestu k spustitelnému souboru php. Tento údaj můžete ponechat nevyplněný a pokračovat v instalaci." + +#: ../../mod/install.php:328 +msgid "Command line PHP" +msgstr "Příkazový řádek PHP" + +#: ../../mod/install.php:337 msgid "" "The command line version of PHP on your system does not have " "\"register_argc_argv\" enabled." -msgstr "" -"Verze PHP pro příkazový řádek na vašem systému nemá povolen " -"\"register_argc_argv\"." +msgstr "Vyberte prosím profil, který chcete zobrazit %s při zabezpečeném prohlížení Vašeho profilu." -#: ../../mod/install.php:162 +#: ../../mod/install.php:338 msgid "This is required for message delivery to work." msgstr "Toto je nutné pro fungování doručování zpráv." -#: ../../mod/install.php:184 +#: ../../mod/install.php:340 +msgid "PHP register_argc_argv" +msgstr "PHP register_argc_argv" + +#: ../../mod/install.php:361 msgid "" "Error: the \"openssl_pkey_new\" function on this system is not able to " "generate encryption keys" -msgstr "" -"Chyba: funkce \"openssl_pkey_new\" na tomto systému není schopna generovat " -"šifrovací klíče" +msgstr "Chyba: funkce \"openssl_pkey_new\" na tomto systému není schopna generovat šifrovací klíče" -#: ../../mod/install.php:185 +#: ../../mod/install.php:362 msgid "" "If running under Windows, please see " "\"http://www.php.net/manual/en/openssl.installation.php\"." -msgstr "" -"Pokud systém běží na Windows, seznamte se s " -"\"http://www.php.net/manual/en/openssl.installation.php\"." +msgstr "Pokud systém běží na Windows, seznamte se s \"http://www.php.net/manual/en/openssl.installation.php\"." -#: ../../mod/install.php:194 +#: ../../mod/install.php:364 +msgid "Generate encryption keys" +msgstr "Generovat kriptovací klíče" + +#: ../../mod/install.php:371 +msgid "libCurl PHP module" +msgstr "libCurl PHP modul" + +#: ../../mod/install.php:372 +msgid "GD graphics PHP module" +msgstr "GD graphics PHP modul" + +#: ../../mod/install.php:373 +msgid "OpenSSL PHP module" +msgstr "OpenSSL PHP modul" + +#: ../../mod/install.php:374 +msgid "mysqli PHP module" +msgstr "mysqli PHP modul" + +#: ../../mod/install.php:375 +msgid "mb_string PHP module" +msgstr "mb_string PHP modul" + +#: ../../mod/install.php:380 ../../mod/install.php:382 +msgid "Apache mod_rewrite module" +msgstr "Apache mod_rewrite modul" + +#: ../../mod/install.php:380 msgid "" "Error: Apache webserver mod-rewrite module is required but not installed." -msgstr "" -"Chyba: Požadovaný Apache webserver mod-rewrite modul není nainstalován." +msgstr "Chyba: Požadovaný Apache webserver mod-rewrite modul není nainstalován." -#: ../../mod/install.php:196 +#: ../../mod/install.php:388 msgid "Error: libCURL PHP module required but not installed." msgstr "Chyba: požadovaný libcurl PHP modul není nainstalován." -#: ../../mod/install.php:198 +#: ../../mod/install.php:392 msgid "" "Error: GD graphics PHP module with JPEG support required but not installed." msgstr "Chyba: požadovaný GD graphics PHP modul není nainstalován." -#: ../../mod/install.php:200 +#: ../../mod/install.php:396 msgid "Error: openssl PHP module required but not installed." msgstr "Chyba: požadovaný openssl PHP modul není nainstalován." -#: ../../mod/install.php:202 +#: ../../mod/install.php:400 msgid "Error: mysqli PHP module required but not installed." msgstr "Chyba: požadovaný mysqli PHP modul není nainstalován." -#: ../../mod/install.php:204 +#: ../../mod/install.php:404 msgid "Error: mb_string PHP module required but not installed." msgstr "Chyba: PHP modul mb_string je vyžadován, ale není nainstalován." -#: ../../mod/install.php:216 +#: ../../mod/install.php:421 msgid "" "The web installer needs to be able to create a file called \".htconfig.php\"" " in the top folder of your web server and it is unable to do so." -msgstr "" -"Webový instalátor musí být schopen vytvořit soubor s názvem " -"\".htconfig.php\" v hlavním adresáři vašeho webového serveru ale nyní mu to " -"není umožněno." +msgstr "Webový instalátor musí být schopen vytvořit soubor s názvem \".htconfig.php\" v hlavním adresáři vašeho webového serveru ale nyní mu to není umožněno." -#: ../../mod/install.php:217 +#: ../../mod/install.php:422 msgid "" "This is most often a permission setting, as the web server may not be able " "to write files in your folder - even if you can." -msgstr "" -"Toto je nejčastěji nastavením oprávnění, kdy webový server nemusí být " -"schopen zapisovat soubory do vašeho adresáře - i když Vy můžete." +msgstr "Toto je nejčastěji nastavením oprávnění, kdy webový server nemusí být schopen zapisovat soubory do vašeho adresáře - i když Vy můžete." -#: ../../mod/install.php:218 +#: ../../mod/install.php:423 msgid "" -"Please check with your site documentation or support people to see if this " -"situation can be corrected." -msgstr "" -"Prosím, poraďte se s dokumentací k Vašemu hostingu nebo s technickou " -"podporou, zda-li lze tuto situaci napravit." +"At the end of this procedure, we will give you a text to save in a file " +"named .htconfig.php in your Friendica top folder." +msgstr "Na konci této procedury obd nás obdržíte text k uložení v souboru pojmenovaném .htconfig.php ve Vašem Friendica kořenovém adresáři." -#: ../../mod/install.php:219 +#: ../../mod/install.php:424 msgid "" -"If not, you may be required to perform a manual installation. Please see the" -" file \"INSTALL.txt\" for instructions." -msgstr "" -"Pokud ne, může být vyžadováno provedení ruční instalace. Prosím, seznamte se" -" s návodem popsaným v souboru \"INSTALL.txt\"." +"You can alternatively skip this procedure and perform a manual installation." +" Please see the file \"INSTALL.txt\" for instructions." +msgstr "Alternativně můžete tento krok přeskočit a provést manuální instalaci. Přečtěte si prosím soubor \"INSTALL.txt\" pro další instrukce." -#: ../../mod/install.php:228 +#: ../../mod/install.php:427 +msgid ".htconfig.php is writable" +msgstr ".htconfig.php je editovatelné" + +#: ../../mod/install.php:439 +msgid "" +"Url rewrite in .htaccess is not working. Check your server configuration." +msgstr "Url rewrite v .htconfig nefunguje. Prověřte prosím Vaše nastavení serveru." + +#: ../../mod/install.php:441 +msgid "Url rewrite is working" +msgstr "Url rewrite je funkční." + +#: ../../mod/install.php:451 msgid "" "The database configuration file \".htconfig.php\" could not be written. " "Please use the enclosed text to create a configuration file in your web " "server root." -msgstr "" -"Databázový konfigurační soubor \".htconfig.php\" nemohl být uložen. Prosím, " -"použijte přiložený text k vytvoření konfiguračního souboru ve vašem " -"kořenovém adresáři webového serveru." +msgstr "Databázový konfigurační soubor \".htconfig.php\" nemohl být uložen. Prosím, použijte přiložený text k vytvoření konfiguračního souboru ve vašem kořenovém adresáři webového serveru." -#: ../../mod/install.php:243 +#: ../../mod/install.php:475 msgid "Errors encountered creating database tables." msgstr "Při vytváření databázových tabulek došlo k chybám." -#: ../../mod/update_community.php:18 ../../mod/update_network.php:22 -#: ../../mod/update_profile.php:41 -msgid "[Embedded content - reload page to view]" -msgstr "[Vložený obsah - obnovení stránky pro zobrazení]" +#: ../../mod/install.php:486 +msgid "

    What next

    " +msgstr "

    Co dál

    " -#: ../../mod/match.php:10 +#: ../../mod/install.php:487 +msgid "" +"IMPORTANT: You will need to [manually] setup a scheduled task for the " +"poller." +msgstr "Webový instalátor musí být schopen vytvořit soubor s názvem \".htconfig.php\" v hlavním adresáři Vašeho webového serveru ale nyní mu to není umožněno." + +#: ../../mod/localtime.php:12 ../../include/event.php:11 +#: ../../include/bb2diaspora.php:390 +msgid "l F d, Y \\@ g:i A" +msgstr "l F d, Y \\@ g:i A" + +#: ../../mod/localtime.php:24 +msgid "Time Conversion" +msgstr "Časová konverze" + +#: ../../mod/localtime.php:26 +msgid "" +"Friendika provides this service for sharing events with other networks and " +"friends in unknown timezones." +msgstr "Friendika poskytuje tuto službu pro sdílení událostí s ostatními sítěmi a přátel v neznámých časových pásem." + +#: ../../mod/localtime.php:30 +#, php-format +msgid "UTC time: %s" +msgstr "UTC čas: %s" + +#: ../../mod/localtime.php:33 +#, php-format +msgid "Current timezone: %s" +msgstr "Aktuální časové pásmo: %s" + +#: ../../mod/localtime.php:36 +#, php-format +msgid "Converted localtime: %s" +msgstr "Převedený lokální čas : %s" + +#: ../../mod/localtime.php:41 +msgid "Please select your timezone:" +msgstr "Prosím, vyberte své časové pásmo:" + +#: ../../mod/poke.php:192 +msgid "Poke/Prod" +msgstr "Šťouchanec" + +#: ../../mod/poke.php:193 +msgid "poke, prod or do other things to somebody" +msgstr "někoho šťouchnout nebo mu provést jinou věc" + +#: ../../mod/poke.php:194 +msgid "Recipient" +msgstr "Příjemce" + +#: ../../mod/poke.php:195 +msgid "Choose what you wish to do to recipient" +msgstr "Vyberte, co si přejete příjemci udělat" + +#: ../../mod/poke.php:198 +msgid "Make this post private" +msgstr "Změnit tento příspěvek na soukromý" + +#: ../../mod/match.php:12 msgid "Profile Match" msgstr "Shoda profilu" -#: ../../mod/match.php:18 +#: ../../mod/match.php:20 msgid "No keywords to match. Please add keywords to your default profile." -msgstr "" -"Žádná klíčová slova k porovnání. Prosím, přidejte klíčová slova do Vašeho " -"výchozího profilu." +msgstr "Žádná klíčová slova k porovnání. Prosím, přidejte klíčová slova do Vašeho výchozího profilu." -#: ../../mod/match.php:54 +#: ../../mod/match.php:57 +msgid "is interested in:" +msgstr "zajímá se o:" + +#: ../../mod/match.php:58 ../../mod/suggest.php:59 +#: ../../include/contact_widgets.php:9 ../../boot.php:1164 +msgid "Connect" +msgstr "Spojit" + +#: ../../mod/match.php:65 ../../mod/dirfind.php:60 msgid "No matches" msgstr "Žádné shody" @@ -1005,7 +1288,174 @@ msgstr "Vzdálené soukromé informace nejsou k dispozici." msgid "Visible to:" msgstr "Viditelné pro:" -#: ../../mod/home.php:23 +#: ../../mod/content.php:119 ../../mod/network.php:436 +msgid "No such group" +msgstr "Žádná taková skupina" + +#: ../../mod/content.php:130 ../../mod/network.php:447 +msgid "Group is empty" +msgstr "Skupina je prázdná" + +#: ../../mod/content.php:134 ../../mod/network.php:451 +msgid "Group: " +msgstr "Skupina: " + +#: ../../mod/content.php:438 ../../mod/content.php:722 +#: ../../include/conversation.php:447 ../../include/conversation.php:888 +#: ../../object/Item.php:115 +msgid "Select" +msgstr "Vybrat" + +#: ../../mod/content.php:455 ../../mod/content.php:815 +#: ../../mod/content.php:816 ../../include/conversation.php:654 +#: ../../include/conversation.php:655 ../../include/conversation.php:907 +#: ../../object/Item.php:226 ../../object/Item.php:227 +#, php-format +msgid "View %s's profile @ %s" +msgstr "Zobrazit profil uživatele %s na %s" + +#: ../../mod/content.php:465 ../../mod/content.php:827 +#: ../../include/conversation.php:668 ../../include/conversation.php:927 +#: ../../object/Item.php:239 +#, php-format +msgid "%s from %s" +msgstr "%s od %s" + +#: ../../mod/content.php:480 ../../include/conversation.php:942 +msgid "View in context" +msgstr "Pohled v kontextu" + +#: ../../mod/content.php:586 ../../include/conversation.php:695 +#: ../../object/Item.php:276 +#, php-format +msgid "%d comment" +msgid_plural "%d comments" +msgstr[0] "%d komentář" +msgstr[1] "%d komentářů" +msgstr[2] "%d komentářů" + +#: ../../mod/content.php:588 ../../include/text.php:1443 +#: ../../include/conversation.php:697 ../../object/Item.php:278 +#: ../../object/Item.php:291 +msgid "comment" +msgid_plural "comments" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "komentář" + +#: ../../mod/content.php:589 ../../addon/page/page.php:76 +#: ../../addon/page/page.php:110 ../../addon/showmore/showmore.php:119 +#: ../../include/contact_widgets.php:195 ../../include/conversation.php:698 +#: ../../boot.php:575 ../../object/Item.php:279 +msgid "show more" +msgstr "zobrazit více" + +#: ../../mod/content.php:667 ../../include/conversation.php:581 +#: ../../object/Item.php:195 +msgid "like" +msgstr "má rád" + +#: ../../mod/content.php:668 ../../include/conversation.php:582 +#: ../../object/Item.php:196 +msgid "dislike" +msgstr "nemá rád" + +#: ../../mod/content.php:670 ../../include/conversation.php:584 +#: ../../object/Item.php:198 +msgid "Share this" +msgstr "Sdílet toto" + +#: ../../mod/content.php:670 ../../include/conversation.php:584 +#: ../../object/Item.php:198 +msgid "share" +msgstr "sdílí" + +#: ../../mod/content.php:694 ../../include/conversation.php:608 +#: ../../object/Item.php:560 +msgid "Bold" +msgstr "Tučné" + +#: ../../mod/content.php:695 ../../include/conversation.php:609 +#: ../../object/Item.php:561 +msgid "Italic" +msgstr "Kurzíva" + +#: ../../mod/content.php:696 ../../include/conversation.php:610 +#: ../../object/Item.php:562 +msgid "Underline" +msgstr "Podrtžené" + +#: ../../mod/content.php:697 ../../include/conversation.php:611 +#: ../../object/Item.php:563 +msgid "Quote" +msgstr "Citovat" + +#: ../../mod/content.php:698 ../../include/conversation.php:612 +#: ../../object/Item.php:564 +msgid "Code" +msgstr "Kód" + +#: ../../mod/content.php:699 ../../include/conversation.php:613 +#: ../../object/Item.php:565 +msgid "Image" +msgstr "Obrázek" + +#: ../../mod/content.php:700 ../../include/conversation.php:614 +#: ../../object/Item.php:566 +msgid "Link" +msgstr "Odkaz" + +#: ../../mod/content.php:701 ../../include/conversation.php:615 +#: ../../object/Item.php:567 +msgid "Video" +msgstr "Video" + +#: ../../mod/content.php:735 ../../include/conversation.php:545 +#: ../../object/Item.php:179 +msgid "add star" +msgstr "přidat hvězdu" + +#: ../../mod/content.php:736 ../../include/conversation.php:546 +#: ../../object/Item.php:180 +msgid "remove star" +msgstr "odebrat hvězdu" + +#: ../../mod/content.php:737 ../../include/conversation.php:547 +#: ../../object/Item.php:181 +msgid "toggle star status" +msgstr "přepnout hvězdu" + +#: ../../mod/content.php:740 ../../include/conversation.php:550 +#: ../../object/Item.php:184 +msgid "starred" +msgstr "označeno hvězdou" + +#: ../../mod/content.php:741 ../../include/conversation.php:551 +#: ../../object/Item.php:185 +msgid "add tag" +msgstr "přidat štítek" + +#: ../../mod/content.php:745 ../../include/conversation.php:451 +#: ../../object/Item.php:119 +msgid "save to folder" +msgstr "uložit do složky" + +#: ../../mod/content.php:817 ../../include/conversation.php:656 +#: ../../object/Item.php:228 +msgid "to" +msgstr "pro" + +#: ../../mod/content.php:818 ../../include/conversation.php:657 +#: ../../object/Item.php:229 +msgid "Wall-to-Wall" +msgstr "Zeď-na-Zeď" + +#: ../../mod/content.php:819 ../../include/conversation.php:658 +#: ../../object/Item.php:230 +msgid "via Wall-To-Wall:" +msgstr "přes Zeď-na-Zeď " + +#: ../../mod/home.php:28 ../../addon/communityhome/communityhome.php:179 #, php-format msgid "Welcome to %s" msgstr "Vítá Vás %s" @@ -1014,732 +1464,1178 @@ msgstr "Vítá Vás %s" msgid "Invalid request identifier." msgstr "Neplatný identifikátor požadavku." -#: ../../mod/notifications.php:35 ../../mod/notifications.php:118 -#: ../../mod/notifications.php:162 +#: ../../mod/notifications.php:35 ../../mod/notifications.php:161 +#: ../../mod/notifications.php:207 msgid "Discard" msgstr "Odstranit" -#: ../../mod/notifications.php:47 ../../mod/notifications.php:117 -#: ../../mod/notifications.php:161 +#: ../../mod/notifications.php:51 ../../mod/notifications.php:160 +#: ../../mod/notifications.php:206 ../../mod/contacts.php:321 +#: ../../mod/contacts.php:375 msgid "Ignore" msgstr "Ignorovat" -#: ../../mod/notifications.php:74 -msgid "Pending Friend/Connect Notifications" -msgstr "Čekající požadavky na Přátelství / Připojení " +#: ../../mod/notifications.php:75 +msgid "System" +msgstr "Systém" -#: ../../mod/notifications.php:78 +#: ../../mod/notifications.php:80 ../../include/nav.php:113 +msgid "Network" +msgstr "Síť" + +#: ../../mod/notifications.php:85 ../../mod/network.php:300 +msgid "Personal" +msgstr "Osobní" + +#: ../../mod/notifications.php:90 ../../view/theme/diabook/theme.php:127 +#: ../../include/nav.php:77 ../../include/nav.php:115 +msgid "Home" +msgstr "Domů" + +#: ../../mod/notifications.php:95 ../../include/nav.php:121 +msgid "Introductions" +msgstr "Představení" + +#: ../../mod/notifications.php:100 ../../mod/message.php:176 +#: ../../include/nav.php:128 +msgid "Messages" +msgstr "Zprávy" + +#: ../../mod/notifications.php:119 msgid "Show Ignored Requests" msgstr "Zobrazit ignorované žádosti" -#: ../../mod/notifications.php:78 +#: ../../mod/notifications.php:119 msgid "Hide Ignored Requests" msgstr "Skrýt ignorované žádosti" -#: ../../mod/notifications.php:105 ../../mod/notifications.php:148 +#: ../../mod/notifications.php:145 ../../mod/notifications.php:191 msgid "Notification type: " -msgstr "Typ oznámení:" +msgstr "Typ oznámení: " -#: ../../mod/notifications.php:106 +#: ../../mod/notifications.php:146 msgid "Friend Suggestion" msgstr "Návrh přátelství" -#: ../../mod/notifications.php:108 +#: ../../mod/notifications.php:148 #, php-format msgid "suggested by %s" msgstr "navrhl %s" -#: ../../mod/notifications.php:114 ../../mod/notifications.php:159 -#: ../../mod/admin.php:466 +#: ../../mod/notifications.php:153 ../../mod/notifications.php:200 +#: ../../mod/contacts.php:381 +msgid "Hide this contact from others" +msgstr "Skrýt tento kontakt před ostatními" + +#: ../../mod/notifications.php:154 ../../mod/notifications.php:201 +msgid "Post a new friend activity" +msgstr "Zveřejnit aktivitu nového přítele." + +#: ../../mod/notifications.php:154 ../../mod/notifications.php:201 +msgid "if applicable" +msgstr "je-li použitelné" + +#: ../../mod/notifications.php:157 ../../mod/notifications.php:204 +#: ../../mod/admin.php:694 msgid "Approve" msgstr "Schválit" -#: ../../mod/notifications.php:133 +#: ../../mod/notifications.php:177 msgid "Claims to be known to you: " -msgstr "Vaši údajní známí:" +msgstr "Vaši údajní známí: " -#: ../../mod/notifications.php:133 +#: ../../mod/notifications.php:177 msgid "yes" msgstr "ano" -#: ../../mod/notifications.php:133 +#: ../../mod/notifications.php:177 msgid "no" msgstr "ne" -#: ../../mod/notifications.php:139 +#: ../../mod/notifications.php:184 msgid "Approve as: " -msgstr "Schválit jako:" +msgstr "Schválit jako: " -#: ../../mod/notifications.php:140 +#: ../../mod/notifications.php:185 msgid "Friend" msgstr "Přítel" -#: ../../mod/notifications.php:141 +#: ../../mod/notifications.php:186 +msgid "Sharer" +msgstr "Sdílené" + +#: ../../mod/notifications.php:186 msgid "Fan/Admirer" msgstr "Fanoušek / obdivovatel" -#: ../../mod/notifications.php:149 +#: ../../mod/notifications.php:192 msgid "Friend/Connect Request" msgstr "Přítel / žádost o připojení" -#: ../../mod/notifications.php:149 +#: ../../mod/notifications.php:192 msgid "New Follower" msgstr "Nový následovník" -#: ../../mod/notifications.php:168 -msgid "No notifications." -msgstr "Žádné oznámení." +#: ../../mod/notifications.php:213 +msgid "No introductions." +msgstr "Žádné představení." -#: ../../mod/contacts.php:26 -msgid "Invite Friends" -msgstr "Pozvat přátele" +#: ../../mod/notifications.php:216 ../../include/nav.php:122 +msgid "Notifications" +msgstr "Upozornění" -#: ../../mod/contacts.php:32 +#: ../../mod/notifications.php:253 ../../mod/notifications.php:378 +#: ../../mod/notifications.php:465 #, php-format -msgid "%d invitation available" -msgid_plural "%d invitations available" -msgstr[0] "Pozvánka %d k dispozici" -msgstr[1] "Pozvánky %d k dispozici" -msgstr[2] "Pozvánky %d k dispozici" +msgid "%s liked %s's post" +msgstr "Uživateli %s se líbí příspěvek uživatele %s" -#: ../../mod/contacts.php:41 -msgid "Find People With Shared Interests" -msgstr "Najít lidi se společnými zájmy" +#: ../../mod/notifications.php:262 ../../mod/notifications.php:387 +#: ../../mod/notifications.php:474 +#, php-format +msgid "%s disliked %s's post" +msgstr "Uživateli %s se nelíbí příspěvek uživatele %s" -#: ../../mod/contacts.php:45 -msgid "Connect/Follow" -msgstr "Připojit / Následovat" +#: ../../mod/notifications.php:276 ../../mod/notifications.php:401 +#: ../../mod/notifications.php:488 +#, php-format +msgid "%s is now friends with %s" +msgstr "%s se nyní přátelí s %s" -#: ../../mod/contacts.php:46 -msgid "Example: bob@example.com, http://example.com/barbara" -msgstr "Příklad: jan@příklad.cz, http://příklad.cz/jana" +#: ../../mod/notifications.php:283 ../../mod/notifications.php:408 +#, php-format +msgid "%s created a new post" +msgstr "%s vytvořil nový příspěvek" -#: ../../mod/contacts.php:47 -msgid "Follow" -msgstr "Následovat" +#: ../../mod/notifications.php:284 ../../mod/notifications.php:409 +#: ../../mod/notifications.php:497 +#, php-format +msgid "%s commented on %s's post" +msgstr "%s okomentoval příspěvek uživatele %s'" -#: ../../mod/contacts.php:69 ../../mod/contacts.php:150 +#: ../../mod/notifications.php:298 +msgid "No more network notifications." +msgstr "Žádné další síťové upozornění." + +#: ../../mod/notifications.php:302 +msgid "Network Notifications" +msgstr "Upozornění Sítě" + +#: ../../mod/notifications.php:328 ../../mod/notify.php:61 +msgid "No more system notifications." +msgstr "Žádné další systémová upozornění." + +#: ../../mod/notifications.php:332 ../../mod/notify.php:65 +msgid "System Notifications" +msgstr "Systémová upozornění" + +#: ../../mod/notifications.php:423 +msgid "No more personal notifications." +msgstr "Žádné další osobní upozornění." + +#: ../../mod/notifications.php:427 +msgid "Personal Notifications" +msgstr "Osobní upozornění" + +#: ../../mod/notifications.php:504 +msgid "No more home notifications." +msgstr "Žádné další domácí upozornění." + +#: ../../mod/notifications.php:508 +msgid "Home Notifications" +msgstr "Domácí upozornění" + +#: ../../mod/contacts.php:84 ../../mod/contacts.php:164 msgid "Could not access contact record." msgstr "Nelze získat přístup k záznamu kontaktu." -#: ../../mod/contacts.php:83 +#: ../../mod/contacts.php:98 msgid "Could not locate selected profile." msgstr "Nelze nalézt vybraný profil." -#: ../../mod/contacts.php:114 +#: ../../mod/contacts.php:121 msgid "Contact updated." msgstr "Kontakt aktualizován." -#: ../../mod/contacts.php:172 +#: ../../mod/contacts.php:186 msgid "Contact has been blocked" msgstr "Kontakt byl zablokován" -#: ../../mod/contacts.php:172 +#: ../../mod/contacts.php:186 msgid "Contact has been unblocked" msgstr "Kontakt byl odblokován" -#: ../../mod/contacts.php:186 +#: ../../mod/contacts.php:200 msgid "Contact has been ignored" msgstr "Kontakt bude ignorován" -#: ../../mod/contacts.php:186 +#: ../../mod/contacts.php:200 msgid "Contact has been unignored" msgstr "Kontakt přestal být ignorován" -#: ../../mod/contacts.php:207 -msgid "stopped following" -msgstr "následování zastaveno" +#: ../../mod/contacts.php:216 +msgid "Contact has been archived" +msgstr "Kontakt byl archivován" -#: ../../mod/contacts.php:226 +#: ../../mod/contacts.php:216 +msgid "Contact has been unarchived" +msgstr "Kontakt byl vrácen z archívu." + +#: ../../mod/contacts.php:229 msgid "Contact has been removed." msgstr "Kontakt byl odstraněn." -#: ../../mod/contacts.php:254 ../../mod/contacts.php:397 -msgid "Mutual Friendship" -msgstr "Vzájemné přátelství" +#: ../../mod/contacts.php:263 +#, php-format +msgid "You are mutual friends with %s" +msgstr "Jste vzájemní přátelé s uživatelem %s" -#: ../../mod/contacts.php:258 ../../mod/contacts.php:401 -msgid "is a fan of yours" -msgstr "je Váš fanoušek" +#: ../../mod/contacts.php:267 +#, php-format +msgid "You are sharing with %s" +msgstr "Sdílíte s uživatelem %s" -#: ../../mod/contacts.php:263 ../../mod/contacts.php:405 -msgid "you are a fan of" -msgstr "jste fanouškem" +#: ../../mod/contacts.php:272 +#, php-format +msgid "%s is sharing with you" +msgstr "uživatel %s sdílí s vámi" -#: ../../mod/contacts.php:280 -msgid "Privacy Unavailable" -msgstr "Ochrana soukromí není k dispozici" - -#: ../../mod/contacts.php:281 +#: ../../mod/contacts.php:289 msgid "Private communications are not available for this contact." msgstr "Soukromá komunikace není dostupná pro tento kontakt." -#: ../../mod/contacts.php:284 +#: ../../mod/contacts.php:292 msgid "Never" msgstr "Nikdy" -#: ../../mod/contacts.php:288 +#: ../../mod/contacts.php:296 msgid "(Update was successful)" msgstr "(Aktualizace byla úspěšná)" -#: ../../mod/contacts.php:288 +#: ../../mod/contacts.php:296 msgid "(Update was not successful)" msgstr "(Aktualizace nebyla úspěšná)" -#: ../../mod/contacts.php:291 +#: ../../mod/contacts.php:298 msgid "Suggest friends" msgstr "Navrhněte přátelé" -#: ../../mod/contacts.php:295 +#: ../../mod/contacts.php:302 +#, php-format +msgid "Network type: %s" +msgstr "Typ sítě: %s" + +#: ../../mod/contacts.php:305 ../../include/contact_widgets.php:190 +#, php-format +msgid "%d contact in common" +msgid_plural "%d contacts in common" +msgstr[0] "%d sdílený kontakt" +msgstr[1] "%d sdílených kontaktů" +msgstr[2] "%d sdílených kontaktů" + +#: ../../mod/contacts.php:310 +msgid "View all contacts" +msgstr "Zobrazit všechny kontakty" + +#: ../../mod/contacts.php:315 ../../mod/contacts.php:374 +#: ../../mod/admin.php:698 +msgid "Unblock" +msgstr "Odblokovat" + +#: ../../mod/contacts.php:315 ../../mod/contacts.php:374 +#: ../../mod/admin.php:697 +msgid "Block" +msgstr "Blokovat" + +#: ../../mod/contacts.php:318 +msgid "Toggle Blocked status" +msgstr "Přepnout stav Blokováno" + +#: ../../mod/contacts.php:321 ../../mod/contacts.php:375 +msgid "Unignore" +msgstr "Přestat ignorovat" + +#: ../../mod/contacts.php:324 +msgid "Toggle Ignored status" +msgstr "Přepnout stav Ignorováno" + +#: ../../mod/contacts.php:328 +msgid "Unarchive" +msgstr "Vrátit z archívu" + +#: ../../mod/contacts.php:328 +msgid "Archive" +msgstr "Archivovat" + +#: ../../mod/contacts.php:331 +msgid "Toggle Archive status" +msgstr "Přepnout stav Archivováno" + +#: ../../mod/contacts.php:334 +msgid "Repair" +msgstr "Opravit" + +#: ../../mod/contacts.php:337 +msgid "Advanced Contact Settings" +msgstr "Pokročilé nastavení kontaktu" + +#: ../../mod/contacts.php:343 +msgid "Communications lost with this contact!" +msgstr "Komunikace s tímto kontaktem byla ztracena!" + +#: ../../mod/contacts.php:346 msgid "Contact Editor" msgstr "Editor kontaktu" -#: ../../mod/contacts.php:297 +#: ../../mod/contacts.php:349 msgid "Profile Visibility" msgstr "Viditelnost profilu" -#: ../../mod/contacts.php:298 +#: ../../mod/contacts.php:350 #, php-format msgid "" "Please choose the profile you would like to display to %s when viewing your " "profile securely." -msgstr "" -"Vyberte prosím profil, který chcete zobrazit %s při zabezpečeném prohlížení " -"vašeho profilu." +msgstr "Vyberte prosím profil, který chcete zobrazit %s při zabezpečeném prohlížení vašeho profilu." -#: ../../mod/contacts.php:299 +#: ../../mod/contacts.php:351 msgid "Contact Information / Notes" msgstr "Kontaktní informace / poznámky" -#: ../../mod/contacts.php:300 -msgid "Online Reputation" -msgstr "Online pověst" +#: ../../mod/contacts.php:352 +msgid "Edit contact notes" +msgstr "Editovat poznámky kontaktu" -#: ../../mod/contacts.php:301 -msgid "" -"Occasionally your friends may wish to inquire about this person's online " -"legitimacy." -msgstr "" -"Občas mohou vaši přátelé chtít informovat o online legitimitě této osoby." - -#: ../../mod/contacts.php:302 -msgid "" -"You may help them choose whether or not to interact with this person by " -"providing a reputation to guide them." -msgstr "" -"Poskytnutím pověsti jim můžete pomoci se rozhodnout, zda-li s touto" -" osobou komunikovat či nikoliv." - -#: ../../mod/contacts.php:303 -msgid "" -"Please take a moment to elaborate on this selection if you feel it could be " -"helpful to others." -msgstr "" -"Věnujte prosím chvilku vyplnění této volby, pokud máte pocit, že by mohlo " -"být užitečné pro ostatní." - -#: ../../mod/contacts.php:304 ../../mod/contacts.php:421 -#: ../../mod/viewcontacts.php:61 +#: ../../mod/contacts.php:357 ../../mod/contacts.php:549 +#: ../../mod/viewcontacts.php:62 ../../mod/nogroup.php:40 #, php-format msgid "Visit %s's profile [%s]" msgstr "Navštivte profil uživatele %s [%s]" -#: ../../mod/contacts.php:305 +#: ../../mod/contacts.php:358 msgid "Block/Unblock contact" msgstr "Blokovat / Odblokovat kontakt" -#: ../../mod/contacts.php:306 +#: ../../mod/contacts.php:359 msgid "Ignore contact" msgstr "Ignorovat kontakt" -#: ../../mod/contacts.php:307 -msgid "Repair contact URL settings" -msgstr "Opravit nastavení URL kontaktu" +#: ../../mod/contacts.php:360 +msgid "Repair URL settings" +msgstr "Opravit nastavení adresy URL " -#: ../../mod/contacts.php:308 -msgid "Repair contact URL settings (WARNING: Advanced)" -msgstr "Opravit nastavení URL kontaktu (Varování: Pokročilé)" - -#: ../../mod/contacts.php:309 +#: ../../mod/contacts.php:361 msgid "View conversations" msgstr "Zobrazit konverzace" -#: ../../mod/contacts.php:312 +#: ../../mod/contacts.php:363 msgid "Delete contact" msgstr "Odstranit kontakt" -#: ../../mod/contacts.php:314 -msgid "Last updated: " +#: ../../mod/contacts.php:367 +msgid "Last update:" msgstr "Poslední aktualizace:" -#: ../../mod/contacts.php:315 -msgid "Update public posts: " -msgstr "Aktualizace veřejných příspěvků:" +#: ../../mod/contacts.php:369 +msgid "Update public posts" +msgstr "Aktualizovat veřejné příspěvky" -#: ../../mod/contacts.php:317 ../../mod/admin.php:701 +#: ../../mod/contacts.php:371 ../../mod/admin.php:1170 msgid "Update now" msgstr "Aktualizovat" -#: ../../mod/contacts.php:320 -msgid "Unblock this contact" -msgstr "Odblokovat tento kontakt" - -#: ../../mod/contacts.php:320 -msgid "Block this contact" -msgstr "Blokovat tento kontakt" - -#: ../../mod/contacts.php:321 -msgid "Unignore this contact" -msgstr "Přestat ignorovat tento kontakt" - -#: ../../mod/contacts.php:321 -msgid "Ignore this contact" -msgstr "Ignorovat tento kontakt" - -#: ../../mod/contacts.php:324 +#: ../../mod/contacts.php:378 msgid "Currently blocked" msgstr "V současnosti zablokováno" -#: ../../mod/contacts.php:325 +#: ../../mod/contacts.php:379 msgid "Currently ignored" msgstr "V současnosti ignorováno" -#: ../../mod/contacts.php:356 ../../include/nav.php:110 +#: ../../mod/contacts.php:380 +msgid "Currently archived" +msgstr "Aktuálně archivován" + +#: ../../mod/contacts.php:381 +msgid "" +"Replies/likes to your public posts may still be visible" +msgstr "Odpovědi/Libí se na Vaše veřejné příspěvky mohou být stále viditelné" + +#: ../../mod/contacts.php:434 +msgid "Suggestions" +msgstr "Doporučení" + +#: ../../mod/contacts.php:437 +msgid "Suggest potential friends" +msgstr "Navrhnout potenciální přátele" + +#: ../../mod/contacts.php:440 ../../mod/group.php:191 +msgid "All Contacts" +msgstr "Všechny kontakty" + +#: ../../mod/contacts.php:443 +msgid "Show all contacts" +msgstr "Zobrazit všechny kontakty" + +#: ../../mod/contacts.php:446 +msgid "Unblocked" +msgstr "Odblokován" + +#: ../../mod/contacts.php:449 +msgid "Only show unblocked contacts" +msgstr "Zobrazit pouze neblokované kontakty" + +#: ../../mod/contacts.php:453 +msgid "Blocked" +msgstr "Blokován" + +#: ../../mod/contacts.php:456 +msgid "Only show blocked contacts" +msgstr "Zobrazit pouze blokované kontakty" + +#: ../../mod/contacts.php:460 +msgid "Ignored" +msgstr "Ignorován" + +#: ../../mod/contacts.php:463 +msgid "Only show ignored contacts" +msgstr "Zobrazit pouze ignorované kontakty" + +#: ../../mod/contacts.php:467 +msgid "Archived" +msgstr "Archivován" + +#: ../../mod/contacts.php:470 +msgid "Only show archived contacts" +msgstr "Zobrazit pouze archivované kontakty" + +#: ../../mod/contacts.php:474 +msgid "Hidden" +msgstr "Skrytý" + +#: ../../mod/contacts.php:477 +msgid "Only show hidden contacts" +msgstr "Zobrazit pouze skryté kontakty" + +#: ../../mod/contacts.php:525 +msgid "Mutual Friendship" +msgstr "Vzájemné přátelství" + +#: ../../mod/contacts.php:529 +msgid "is a fan of yours" +msgstr "je Váš fanoušek" + +#: ../../mod/contacts.php:533 +msgid "you are a fan of" +msgstr "jste fanouškem" + +#: ../../mod/contacts.php:550 ../../mod/nogroup.php:41 +msgid "Edit contact" +msgstr "Editovat kontakt" + +#: ../../mod/contacts.php:571 ../../view/theme/diabook/theme.php:129 +#: ../../include/nav.php:139 msgid "Contacts" msgstr "Kontakty" -#: ../../mod/contacts.php:358 -msgid "Show Blocked Connections" -msgstr "Zobrazit blokované spojení" +#: ../../mod/contacts.php:575 +msgid "Search your contacts" +msgstr "Prohledat Vaše kontakty" -#: ../../mod/contacts.php:358 -msgid "Hide Blocked Connections" -msgstr "Skrýt blokované spojení" - -#: ../../mod/contacts.php:360 ../../mod/directory.php:55 +#: ../../mod/contacts.php:576 ../../mod/directory.php:59 msgid "Finding: " msgstr "Zjištění: " -#: ../../mod/contacts.php:361 ../../mod/directory.php:57 +#: ../../mod/contacts.php:577 ../../mod/directory.php:61 +#: ../../include/contact_widgets.php:33 msgid "Find" msgstr "Najít" -#: ../../mod/contacts.php:422 ../../include/conversation.php:612 -msgid "Edit contact" -msgstr "Editovat kontakt" - #: ../../mod/lostpass.php:16 msgid "No valid account found." msgstr "Nenalezen žádný platný účet." -#: ../../mod/lostpass.php:31 +#: ../../mod/lostpass.php:32 msgid "Password reset request issued. Check your email." -msgstr "" -"Žádost o obnovení hesla vyřízena. Zkontrolujte Vaši e-mailovou schránku." +msgstr "Žádost o obnovení hesla vyřízena. Zkontrolujte Vaši e-mailovou schránku." -#: ../../mod/lostpass.php:42 +#: ../../mod/lostpass.php:43 #, php-format msgid "Password reset requested at %s" msgstr "Na %s bylo zažádáno o resetování hesla" -#: ../../mod/lostpass.php:64 +#: ../../mod/lostpass.php:45 ../../mod/lostpass.php:107 +#: ../../mod/register.php:90 ../../mod/register.php:144 +#: ../../mod/regmod.php:54 ../../mod/dfrn_confirm.php:752 +#: ../../addon/facebook/facebook.php:702 +#: ../../addon/facebook/facebook.php:1200 ../../addon/fbpost/fbpost.php:661 +#: ../../addon/public_server/public_server.php:62 +#: ../../addon/testdrive/testdrive.php:67 ../../include/items.php:3296 +#: ../../boot.php:788 +msgid "Administrator" +msgstr "Administrátor" + +#: ../../mod/lostpass.php:65 msgid "" "Request could not be verified. (You may have previously submitted it.) " "Password reset failed." -msgstr "" -"Žádost nemohla být ověřena. (Možná jste ji odeslali již dříve.) Obnovení " -"hesla se nezdařilo." +msgstr "Žádost nemohla být ověřena. (Možná jste ji odeslali již dříve.) Obnovení hesla se nezdařilo." -#: ../../mod/lostpass.php:82 ../../boot.php:654 +#: ../../mod/lostpass.php:83 ../../boot.php:925 msgid "Password Reset" msgstr "Obnovení hesla" -#: ../../mod/lostpass.php:83 +#: ../../mod/lostpass.php:84 msgid "Your password has been reset as requested." msgstr "Vaše heslo bylo na Vaše přání resetováno." -#: ../../mod/lostpass.php:84 -msgid "Your new password is" -msgstr "Vaše nové heslo je" - #: ../../mod/lostpass.php:85 +msgid "Your new password is" +msgstr "Někdo Vám napsal na Vaši profilovou stránku" + +#: ../../mod/lostpass.php:86 msgid "Save or copy your new password - and then" msgstr "Uložte si nebo zkopírujte nové heslo - a pak" -#: ../../mod/lostpass.php:86 +#: ../../mod/lostpass.php:87 msgid "click here to login" msgstr "klikněte zde pro přihlášení" -#: ../../mod/lostpass.php:87 +#: ../../mod/lostpass.php:88 msgid "" "Your password may be changed from the Settings page after " "successful login." -msgstr "" -"Vaše heslo může být změněno na stránce nastavení po úspěšném " -"přihlášení." +msgstr "Nezdá se, že by to bylo Vaše celé jméno (křestní jméno a příjmení)." -#: ../../mod/lostpass.php:118 +#: ../../mod/lostpass.php:119 msgid "Forgot your Password?" msgstr "Zapomněli jste heslo?" -#: ../../mod/lostpass.php:119 +#: ../../mod/lostpass.php:120 msgid "" "Enter your email address and submit to have your password reset. Then check " "your email for further instructions." -msgstr "" -"Zadejte svůj e-mailovou adresu a odešlete žádost o zaslání Vašeho nového " -"hesla. Poté zkontrolujte svůj e-mail pro další instrukce." - -#: ../../mod/lostpass.php:120 -msgid "Nickname or Email: " -msgstr "Přezdívka nebo e-mail:" +msgstr "Zadejte svůj e-mailovou adresu a odešlete žádost o zaslání Vašeho nového hesla. Poté zkontrolujte svůj e-mail pro další instrukce." #: ../../mod/lostpass.php:121 +msgid "Nickname or Email: " +msgstr "Přezdívka nebo e-mail: " + +#: ../../mod/lostpass.php:122 msgid "Reset" msgstr "Reset" -#: ../../mod/settings.php:64 -msgid "Passwords do not match. Password unchanged." -msgstr "Hesla se neshodují. Heslo nebylo změněno." - -#: ../../mod/settings.php:69 -msgid "Empty passwords are not allowed. Password unchanged." -msgstr "Prázdné hesla nejsou povolena. Heslo nebylo změněno." - -#: ../../mod/settings.php:80 -msgid "Password changed." -msgstr "Heslo bylo změněno." - -#: ../../mod/settings.php:82 -msgid "Password update failed. Please try again." -msgstr "Aktualizace hesla se nezdařila. Zkuste to prosím znovu." - -#: ../../mod/settings.php:161 -msgid "Failed to connect with email account using the settings provided." -msgstr "Nepodařilo se připojit k e-mailovému účtu pomocí dodaného nastavení." - -#: ../../mod/settings.php:188 -msgid " Please use a shorter name." -msgstr "Prosím použijte kratší jméno." - -#: ../../mod/settings.php:190 -msgid " Name too short." -msgstr "Jméno je příliš krátké." - -#: ../../mod/settings.php:196 -msgid " Not valid email." -msgstr "Neplatný e-mail." - -#: ../../mod/settings.php:198 -msgid " Cannot change to that email." -msgstr "Nelze provést změnu na tento e-mail." - -#: ../../mod/settings.php:257 ../../addon/facebook/facebook.php:297 -#: ../../addon/impressum/impressum.php:64 ../../addon/piwik/piwik.php:89 -#: ../../addon/twitter/twitter.php:275 -msgid "Settings updated." -msgstr "Nastavení aktualizováno." - -#: ../../mod/settings.php:311 ../../include/nav.php:108 +#: ../../mod/settings.php:30 ../../include/nav.php:137 msgid "Account settings" msgstr "Nastavení účtu" -#: ../../mod/settings.php:312 +#: ../../mod/settings.php:35 +msgid "Display settings" +msgstr "Nastavení zobrazení" + +#: ../../mod/settings.php:41 +msgid "Connector settings" +msgstr "Nastavení konektoru" + +#: ../../mod/settings.php:46 msgid "Plugin settings" msgstr "Nastavení pluginu" -#: ../../mod/settings.php:322 +#: ../../mod/settings.php:51 +msgid "Connected apps" +msgstr "Propojené aplikace" + +#: ../../mod/settings.php:56 +msgid "Export personal data" +msgstr "Export osobních údajů" + +#: ../../mod/settings.php:61 +msgid "Remove account" +msgstr "Odstranit účet" + +#: ../../mod/settings.php:69 ../../mod/newmember.php:22 +#: ../../mod/admin.php:785 ../../mod/admin.php:990 +#: ../../addon/dav/friendica/layout.fnk.php:225 +#: ../../addon/mathjax/mathjax.php:36 ../../view/theme/diabook/theme.php:643 +#: ../../view/theme/diabook/theme.php:773 ../../include/nav.php:137 +msgid "Settings" +msgstr "Nastavení" + +#: ../../mod/settings.php:113 +msgid "Missing some important data!" +msgstr "Chybí některé důležité údaje!" + +#: ../../mod/settings.php:116 ../../mod/settings.php:569 +msgid "Update" +msgstr "Aktualizace" + +#: ../../mod/settings.php:221 +msgid "Failed to connect with email account using the settings provided." +msgstr "Nepodařilo se připojit k e-mailovému účtu pomocí dodaného nastavení." + +#: ../../mod/settings.php:226 +msgid "Email settings updated." +msgstr "Nastavení e-mailu aktualizována." + +#: ../../mod/settings.php:290 +msgid "Passwords do not match. Password unchanged." +msgstr "Hesla se neshodují. Heslo nebylo změněno." + +#: ../../mod/settings.php:295 +msgid "Empty passwords are not allowed. Password unchanged." +msgstr "Prázdné hesla nejsou povolena. Heslo nebylo změněno." + +#: ../../mod/settings.php:306 +msgid "Password changed." +msgstr "Heslo bylo změněno." + +#: ../../mod/settings.php:308 +msgid "Password update failed. Please try again." +msgstr "Aktualizace hesla se nezdařila. Zkuste to prosím znovu." + +#: ../../mod/settings.php:373 +msgid " Please use a shorter name." +msgstr "Prosím použijte kratší jméno." + +#: ../../mod/settings.php:375 +msgid " Name too short." +msgstr "Jméno je příliš krátké." + +#: ../../mod/settings.php:381 +msgid " Not valid email." +msgstr "Neplatný e-mail." + +#: ../../mod/settings.php:383 +msgid " Cannot change to that email." +msgstr "Nelze provést změnu na tento e-mail." + +#: ../../mod/settings.php:437 +msgid "Private forum has no privacy permissions. Using default privacy group." +msgstr "Soukromé fórum nemá nastaveno zabezpečení. Používá se defaultní soukromá skupina." + +#: ../../mod/settings.php:441 +msgid "Private forum has no privacy permissions and no default privacy group." +msgstr "Soukromé fórum nemá nastaveno zabezpečení a ani žádnou defaultní soukromou skupinu." + +#: ../../mod/settings.php:471 ../../addon/facebook/facebook.php:495 +#: ../../addon/fbpost/fbpost.php:144 ../../addon/impressum/impressum.php:78 +#: ../../addon/openstreetmap/openstreetmap.php:80 +#: ../../addon/mathjax/mathjax.php:66 ../../addon/piwik/piwik.php:105 +#: ../../addon/twitter/twitter.php:389 +msgid "Settings updated." +msgstr "Nastavení aktualizováno." + +#: ../../mod/settings.php:542 ../../mod/settings.php:568 +#: ../../mod/settings.php:604 +msgid "Add application" +msgstr "Přidat aplikaci" + +#: ../../mod/settings.php:546 ../../mod/settings.php:572 +#: ../../addon/statusnet/statusnet.php:570 +msgid "Consumer Key" +msgstr "Consumer Key" + +#: ../../mod/settings.php:547 ../../mod/settings.php:573 +#: ../../addon/statusnet/statusnet.php:569 +msgid "Consumer Secret" +msgstr "Consumer Secret" + +#: ../../mod/settings.php:548 ../../mod/settings.php:574 +msgid "Redirect" +msgstr "Přesměrování" + +#: ../../mod/settings.php:549 ../../mod/settings.php:575 +msgid "Icon url" +msgstr "URL ikony" + +#: ../../mod/settings.php:560 +msgid "You can't edit this application." +msgstr "Nemůžete editovat tuto aplikaci." + +#: ../../mod/settings.php:603 +msgid "Connected Apps" +msgstr "Připojené aplikace" + +#: ../../mod/settings.php:607 +msgid "Client key starts with" +msgstr "Klienský klíč začíná" + +#: ../../mod/settings.php:608 +msgid "No name" +msgstr "Bez názvu" + +#: ../../mod/settings.php:609 +msgid "Remove authorization" +msgstr "Odstranit oprávnění" + +#: ../../mod/settings.php:620 msgid "No Plugin settings configured" msgstr "Žádný doplněk není nastaven" -#: ../../mod/settings.php:329 ../../addon/widgets/widgets.php:122 +#: ../../mod/settings.php:628 ../../addon/widgets/widgets.php:123 msgid "Plugin Settings" msgstr "Nastavení doplňku" -#: ../../mod/settings.php:382 ../../mod/admin.php:133 ../../mod/admin.php:443 -msgid "Normal Account" -msgstr "Normální účet" +#: ../../mod/settings.php:640 ../../mod/settings.php:641 +#, php-format +msgid "Built-in support for %s connectivity is %s" +msgstr "Vestavěná podpora pro připojení s %s je %s" -#: ../../mod/settings.php:383 -msgid "This account is a normal personal profile" -msgstr "Tento účet je běžný osobní profil" +#: ../../mod/settings.php:640 ../../mod/settings.php:641 +msgid "enabled" +msgstr "povoleno" -#: ../../mod/settings.php:386 ../../mod/admin.php:134 ../../mod/admin.php:444 -msgid "Soapbox Account" -msgstr "Soapbox účet" +#: ../../mod/settings.php:640 ../../mod/settings.php:641 +msgid "disabled" +msgstr "zakázáno" -#: ../../mod/settings.php:387 -msgid "Automatically approve all connection/friend requests as read-only fans" -msgstr "" -"Automaticky schválit všechna spojení / přátelství jako fanoušky s právem " -"pouze ke čtení" +#: ../../mod/settings.php:641 +msgid "StatusNet" +msgstr "StatusNet" -#: ../../mod/settings.php:390 ../../mod/admin.php:135 ../../mod/admin.php:445 -msgid "Community/Celebrity Account" -msgstr "Komunitní účet / Účet celebrity" - -#: ../../mod/settings.php:391 -msgid "" -"Automatically approve all connection/friend requests as read-write fans" -msgstr "" -"Automaticky schvalovat všechny žádosti o spojení / přátelství, jako fanoušky" -" s právem ke čtení." - -#: ../../mod/settings.php:394 ../../mod/admin.php:136 ../../mod/admin.php:446 -msgid "Automatic Friend Account" -msgstr "Účet s automatickým schvalováním přátel" - -#: ../../mod/settings.php:395 -msgid "Automatically approve all connection/friend requests as friends" -msgstr "" -"Automaticky schvalovat všechny žádosti o spojení / přátelství jako přátele" - -#: ../../mod/settings.php:405 -msgid "OpenID:" -msgstr "OpenID:" - -#: ../../mod/settings.php:405 -msgid "(Optional) Allow this OpenID to login to this account." -msgstr "(Volitelné) Povolit OpenID pro přihlášení k tomuto účtu." - -#: ../../mod/settings.php:415 -msgid "Publish your default profile in your local site directory?" -msgstr "Publikovat Váš výchozí profil v místním adresáři webu?" - -#: ../../mod/settings.php:421 -msgid "Publish your default profile in the global social directory?" -msgstr "Publikovat Váš výchozí profil v globální sociálním adresáři?" - -#: ../../mod/settings.php:429 -msgid "Hide your contact/friend list from viewers of your default profile?" -msgstr "" -"Skrýt Vaše kontaktní údaje a seznam přátel před návštěvníky ve Vašem " -"výchozím profilu?" - -#: ../../mod/settings.php:433 -msgid "Hide profile details and all your messages from unknown viewers?" -msgstr "Skrýt detaily profilu a všechny zprávy před neznámými uživateli?" - -#: ../../mod/settings.php:442 -msgid "Profile is not published." -msgstr "Profil není zveřejněn." - -#: ../../mod/settings.php:461 ../../mod/profile_photo.php:196 -msgid "or" -msgstr "nebo" - -#: ../../mod/settings.php:466 -msgid "Your Identity Address is" -msgstr "Vaše adresa identity je" - -#: ../../mod/settings.php:480 -msgid "Account Settings" -msgstr "Nastavení účtu" - -#: ../../mod/settings.php:487 -msgid "Export Personal Data" -msgstr "Export osobních údajů" - -#: ../../mod/settings.php:490 -msgid "Password Settings" -msgstr "Nastavení hesla" - -#: ../../mod/settings.php:491 -msgid "New Password:" -msgstr "Nové heslo:" - -#: ../../mod/settings.php:492 -msgid "Confirm:" -msgstr "Potvrďte:" - -#: ../../mod/settings.php:492 -msgid "Leave password fields blank unless changing" -msgstr "Pokud nechcete změnit heslo, položku hesla nevyplňujte" - -#: ../../mod/settings.php:496 -msgid "Basic Settings" -msgstr "Základní nastavení" - -#: ../../mod/settings.php:497 ../../include/profile_advanced.php:10 -msgid "Full Name:" -msgstr "Celé jméno:" - -#: ../../mod/settings.php:498 -msgid "Email Address:" -msgstr "E-mailová adresa:" - -#: ../../mod/settings.php:499 -msgid "Your Timezone:" -msgstr "Vaše časové pásmo:" - -#: ../../mod/settings.php:500 -msgid "Default Post Location:" -msgstr "Výchozí umístění příspěvků:" - -#: ../../mod/settings.php:501 -msgid "Use Browser Location:" -msgstr "Používat umístění dle prohlížeče:" - -#: ../../mod/settings.php:502 -msgid "Display Theme:" -msgstr "Vybrat grafickou šablonu:" - -#: ../../mod/settings.php:506 -msgid "Security and Privacy Settings" -msgstr "Nastavení zabezpečení a soukromí" - -#: ../../mod/settings.php:508 -msgid "Maximum Friend Requests/Day:" -msgstr "Maximální počet žádostí o přátelství za den:" - -#: ../../mod/settings.php:508 -msgid "(to prevent spam abuse)" -msgstr "(Aby se zabránilo spamu)" - -#: ../../mod/settings.php:509 -msgid "Default Post Permissions" -msgstr "Výchozí oprávnění pro příspěvek" - -#: ../../mod/settings.php:510 -msgid "(click to open/close)" -msgstr "(Klikněte pro otevření/zavření)" - -#: ../../mod/settings.php:514 -msgid "Allow friends to post to your profile page:" -msgstr "Povolit přátelům příspěvky na Vaši profilovou stránku:" - -#: ../../mod/settings.php:515 -msgid "Automatically expire posts after days:" -msgstr "Po kolika dnech automaticky expirovat příspěvky:" - -#: ../../mod/settings.php:515 -msgid "If empty, posts will not expire. Expired posts will be deleted" -msgstr "" -"Pokud je prázdné, příspěvky nebudou nikdy expirovat. Expirované příspěvky " -"budou vymazány" - -#: ../../mod/settings.php:524 -msgid "Notification Settings" -msgstr "Nastavení notifikací" - -#: ../../mod/settings.php:525 -msgid "Send a notification email when:" -msgstr "Poslat notifikaci e-mailem, když" - -#: ../../mod/settings.php:526 -msgid "You receive an introduction" -msgstr "obdržíte žádost o propojení" - -#: ../../mod/settings.php:527 -msgid "Your introductions are confirmed" -msgstr "Vaše žádosti jsou potvrzeny" - -#: ../../mod/settings.php:528 -msgid "Someone writes on your profile wall" -msgstr "někdo Vám napíše na Vaši profilovou stránku" - -#: ../../mod/settings.php:529 -msgid "Someone writes a followup comment" -msgstr "někdo Vám napíše následný komentář" - -#: ../../mod/settings.php:530 -msgid "You receive a private message" -msgstr "obdržíte soukromou zprávu" - -#: ../../mod/settings.php:534 -msgid "Email/Mailbox Setup" -msgstr "Nastavení e-mailu" - -#: ../../mod/settings.php:535 -msgid "" -"If you wish to communicate with email contacts using this service " -"(optional), please specify how to connect to your mailbox." -msgstr "" -"Pokud chcete komunikovat pomocí této služby s Vašimi kontakty z e-mailu " -"(volitelné), uveďte, jak se připojit k Vaší e-mailové schránce." - -#: ../../mod/settings.php:536 -msgid "Last successful email check:" -msgstr "Poslední úspěšná kontrola e-mailu:" - -#: ../../mod/settings.php:537 +#: ../../mod/settings.php:673 msgid "Email access is disabled on this site." msgstr "Přístup k elektronické poště je na tomto serveru zakázán." -#: ../../mod/settings.php:538 +#: ../../mod/settings.php:679 +msgid "Connector Settings" +msgstr "Nastavení konektoru" + +#: ../../mod/settings.php:684 +msgid "Email/Mailbox Setup" +msgstr "Nastavení e-mailu" + +#: ../../mod/settings.php:685 +msgid "" +"If you wish to communicate with email contacts using this service " +"(optional), please specify how to connect to your mailbox." +msgstr "Pokud chcete komunikovat pomocí této služby s Vašimi kontakty z e-mailu (volitelné), uveďte, jak se připojit k Vaší e-mailové schránce." + +#: ../../mod/settings.php:686 +msgid "Last successful email check:" +msgstr "Poslední úspěšná kontrola e-mailu:" + +#: ../../mod/settings.php:688 msgid "IMAP server name:" msgstr "jméno IMAP serveru:" -#: ../../mod/settings.php:539 +#: ../../mod/settings.php:689 msgid "IMAP port:" msgstr "IMAP port:" -#: ../../mod/settings.php:540 +#: ../../mod/settings.php:690 msgid "Security:" msgstr "Zabezpečení:" -#: ../../mod/settings.php:540 +#: ../../mod/settings.php:690 ../../mod/settings.php:695 +#: ../../addon/dav/common/wdcal_edit.inc.php:191 msgid "None" msgstr "Žádný" -#: ../../mod/settings.php:541 +#: ../../mod/settings.php:691 msgid "Email login name:" msgstr "přihlašovací jméno k e-mailu:" -#: ../../mod/settings.php:542 +#: ../../mod/settings.php:692 msgid "Email password:" msgstr "heslo k Vašemu e-mailu:" -#: ../../mod/settings.php:543 +#: ../../mod/settings.php:693 msgid "Reply-to address:" msgstr "Odpovědět na adresu:" -#: ../../mod/settings.php:544 +#: ../../mod/settings.php:694 msgid "Send public posts to all email contacts:" msgstr "Poslat veřejné příspěvky na všechny e-mailové kontakty:" -#: ../../mod/settings.php:549 -msgid "Advanced Page Settings" -msgstr "Pokročilé nastavení stránky" +#: ../../mod/settings.php:695 +msgid "Action after import:" +msgstr "Akce po importu:" -#: ../../mod/manage.php:37 -#, php-format -msgid "Welcome back %s" -msgstr "Vítejte zpět %s" +#: ../../mod/settings.php:695 +msgid "Mark as seen" +msgstr "Označit jako přečtené" -#: ../../mod/manage.php:87 +#: ../../mod/settings.php:695 +msgid "Move to folder" +msgstr "Přesunout do složky" + +#: ../../mod/settings.php:696 +msgid "Move to folder:" +msgstr "Přesunout do složky:" + +#: ../../mod/settings.php:727 ../../mod/admin.php:402 +msgid "No special theme for mobile devices" +msgstr "žádné speciální téma pro mobilní zařízení" + +#: ../../mod/settings.php:767 +msgid "Display Settings" +msgstr "Nastavení Zobrazení" + +#: ../../mod/settings.php:773 ../../mod/settings.php:784 +msgid "Display Theme:" +msgstr "Vybrat grafickou šablonu:" + +#: ../../mod/settings.php:774 +msgid "Mobile Theme:" +msgstr "Téma pro mobilní zařízení:" + +#: ../../mod/settings.php:775 +msgid "Update browser every xx seconds" +msgstr "Aktualizovat prohlížeč každých xx sekund" + +#: ../../mod/settings.php:775 +msgid "Minimum of 10 seconds, no maximum" +msgstr "Minimum 10 sekund, žádné maximum." + +#: ../../mod/settings.php:776 +msgid "Number of items to display per page:" +msgstr "" + +#: ../../mod/settings.php:776 +msgid "Maximum of 100 items" +msgstr "Maximum 100 položek" + +#: ../../mod/settings.php:777 +msgid "Don't show emoticons" +msgstr "Nezobrazovat emotikony" + +#: ../../mod/settings.php:853 +msgid "Normal Account Page" +msgstr "Normální stránka účtu" + +#: ../../mod/settings.php:854 +msgid "This account is a normal personal profile" +msgstr "Tento účet je běžný osobní profil" + +#: ../../mod/settings.php:857 +msgid "Soapbox Page" +msgstr "Stránka \"Soapbox\"" + +#: ../../mod/settings.php:858 +msgid "Automatically approve all connection/friend requests as read-only fans" +msgstr "Automaticky schválit všechna spojení / přátelství jako fanoušky s právem pouze ke čtení" + +#: ../../mod/settings.php:861 +msgid "Community Forum/Celebrity Account" +msgstr "Komunitní fórum/ účet celebrity" + +#: ../../mod/settings.php:862 +msgid "" +"Automatically approve all connection/friend requests as read-write fans" +msgstr "Automaticky schvalovat všechny žádosti o spojení / přátelství, jako fanoušky s právem ke čtení." + +#: ../../mod/settings.php:865 +msgid "Automatic Friend Page" +msgstr "Automatická stránka přítele" + +#: ../../mod/settings.php:866 +msgid "Automatically approve all connection/friend requests as friends" +msgstr "Automaticky schvalovat všechny žádosti o spojení / přátelství jako přátele" + +#: ../../mod/settings.php:869 +msgid "Private Forum [Experimental]" +msgstr "Soukromé fórum [Experimentální]" + +#: ../../mod/settings.php:870 +msgid "Private forum - approved members only" +msgstr "Soukromé fórum - pouze pro schválené členy" + +#: ../../mod/settings.php:882 +msgid "OpenID:" +msgstr "OpenID:" + +#: ../../mod/settings.php:882 +msgid "(Optional) Allow this OpenID to login to this account." +msgstr "(Volitelné) Povolit OpenID pro přihlášení k tomuto účtu." + +#: ../../mod/settings.php:892 +msgid "Publish your default profile in your local site directory?" +msgstr "Publikovat Váš výchozí profil v místním adresáři webu?" + +#: ../../mod/settings.php:898 +msgid "Publish your default profile in the global social directory?" +msgstr "Publikovat Váš výchozí profil v globální sociálním adresáři?" + +#: ../../mod/settings.php:906 +msgid "Hide your contact/friend list from viewers of your default profile?" +msgstr "Skrýt Vaše kontaktní údaje a seznam přátel před návštěvníky ve Vašem výchozím profilu?" + +#: ../../mod/settings.php:910 +msgid "Hide your profile details from unknown viewers?" +msgstr "Skrýt Vaše profilové detaily před neznámými uživateli?" + +#: ../../mod/settings.php:915 +msgid "Allow friends to post to your profile page?" +msgstr "Povolit přátelům umisťování příspěvků na vaši profilovou stránku?" + +#: ../../mod/settings.php:921 +msgid "Allow friends to tag your posts?" +msgstr "Povolit přátelům označovat Vaše příspěvky?" + +#: ../../mod/settings.php:927 +msgid "Allow us to suggest you as a potential friend to new members?" +msgstr "Chcete nám povolit abychom vás navrhovali jako přátelé pro nové členy?" + +#: ../../mod/settings.php:933 +msgid "Permit unknown people to send you private mail?" +msgstr "Povolit neznámým lidem Vám zasílat soukromé zprávy?" + +#: ../../mod/settings.php:941 +msgid "Profile is not published." +msgstr "Profil není zveřejněn." + +#: ../../mod/settings.php:944 ../../mod/profile_photo.php:248 +msgid "or" +msgstr "nebo" + +#: ../../mod/settings.php:949 +msgid "Your Identity Address is" +msgstr "Vaše adresa identity je" + +#: ../../mod/settings.php:960 +msgid "Automatically expire posts after this many days:" +msgstr "Automaticky expirovat příspěvky po zadaném počtu dní:" + +#: ../../mod/settings.php:960 +msgid "If empty, posts will not expire. Expired posts will be deleted" +msgstr "Pokud je prázdné, příspěvky nebudou nikdy expirovat. Expirované příspěvky budou vymazány" + +#: ../../mod/settings.php:961 +msgid "Advanced expiration settings" +msgstr "Pokročilé nastavení expirací" + +#: ../../mod/settings.php:962 +msgid "Advanced Expiration" +msgstr "Nastavení expirací" + +#: ../../mod/settings.php:963 +msgid "Expire posts:" +msgstr "Expirovat příspěvky:" + +#: ../../mod/settings.php:964 +msgid "Expire personal notes:" +msgstr "Expirovat osobní poznámky:" + +#: ../../mod/settings.php:965 +msgid "Expire starred posts:" +msgstr "Expirovat příspěvky s hvězdou:" + +#: ../../mod/settings.php:966 +msgid "Expire photos:" +msgstr "Expirovat fotografie:" + +#: ../../mod/settings.php:967 +msgid "Only expire posts by others:" +msgstr "Přízpěvky expirovat pouze ostatními:" + +#: ../../mod/settings.php:974 +msgid "Account Settings" +msgstr "Nastavení účtu" + +#: ../../mod/settings.php:982 +msgid "Password Settings" +msgstr "Nastavení hesla" + +#: ../../mod/settings.php:983 +msgid "New Password:" +msgstr "Nové heslo:" + +#: ../../mod/settings.php:984 +msgid "Confirm:" +msgstr "Potvrďte:" + +#: ../../mod/settings.php:984 +msgid "Leave password fields blank unless changing" +msgstr "Pokud nechcete změnit heslo, položku hesla nevyplňujte" + +#: ../../mod/settings.php:988 +msgid "Basic Settings" +msgstr "Základní nastavení" + +#: ../../mod/settings.php:989 ../../include/profile_advanced.php:15 +msgid "Full Name:" +msgstr "Celé jméno:" + +#: ../../mod/settings.php:990 +msgid "Email Address:" +msgstr "E-mailová adresa:" + +#: ../../mod/settings.php:991 +msgid "Your Timezone:" +msgstr "Vaše časové pásmo:" + +#: ../../mod/settings.php:992 +msgid "Default Post Location:" +msgstr "Výchozí umístění příspěvků:" + +#: ../../mod/settings.php:993 +msgid "Use Browser Location:" +msgstr "Používat umístění dle prohlížeče:" + +#: ../../mod/settings.php:996 +msgid "Security and Privacy Settings" +msgstr "Nastavení zabezpečení a soukromí" + +#: ../../mod/settings.php:998 +msgid "Maximum Friend Requests/Day:" +msgstr "Maximální počet žádostí o přátelství za den:" + +#: ../../mod/settings.php:998 ../../mod/settings.php:1017 +msgid "(to prevent spam abuse)" +msgstr "(Aby se zabránilo spamu)" + +#: ../../mod/settings.php:999 +msgid "Default Post Permissions" +msgstr "Výchozí oprávnění pro příspěvek" + +#: ../../mod/settings.php:1000 +msgid "(click to open/close)" +msgstr "(Klikněte pro otevření/zavření)" + +#: ../../mod/settings.php:1017 +msgid "Maximum private messages per day from unknown people:" +msgstr "Maximum soukromých zpráv od neznámých lidí:" + +#: ../../mod/settings.php:1020 +msgid "Notification Settings" +msgstr "Nastavení notifikací" + +#: ../../mod/settings.php:1021 +msgid "By default post a status message when:" +msgstr "Defaultně posílat statusové zprávy když:" + +#: ../../mod/settings.php:1022 +msgid "accepting a friend request" +msgstr "akceptuji požadavek na přátelství" + +#: ../../mod/settings.php:1023 +msgid "joining a forum/community" +msgstr "připojující se k fóru/komunitě" + +#: ../../mod/settings.php:1024 +msgid "making an interesting profile change" +msgstr "provedení zajímavé profilové změny" + +#: ../../mod/settings.php:1025 +msgid "Send a notification email when:" +msgstr "Poslat notifikaci e-mailem, když" + +#: ../../mod/settings.php:1026 +msgid "You receive an introduction" +msgstr "obdržíte žádost o propojení" + +#: ../../mod/settings.php:1027 +msgid "Your introductions are confirmed" +msgstr "Vaše žádosti jsou potvrzeny" + +#: ../../mod/settings.php:1028 +msgid "Someone writes on your profile wall" +msgstr "někdo Vám napíše na Vaši profilovou stránku" + +#: ../../mod/settings.php:1029 +msgid "Someone writes a followup comment" +msgstr "někdo Vám napíše následný komentář" + +#: ../../mod/settings.php:1030 +msgid "You receive a private message" +msgstr "obdržíte soukromou zprávu" + +#: ../../mod/settings.php:1031 +msgid "You receive a friend suggestion" +msgstr "Obdržel jste návrh přátelství" + +#: ../../mod/settings.php:1032 +msgid "You are tagged in a post" +msgstr "Jste označen v příspěvku" + +#: ../../mod/settings.php:1033 +msgid "You are poked/prodded/etc. in a post" +msgstr "Byl Jste šťouchnout v příspěvku" + +#: ../../mod/settings.php:1036 +msgid "Advanced Account/Page Type Settings" +msgstr "Pokročilé nastavení účtu/stránky" + +#: ../../mod/settings.php:1037 +msgid "Change the behaviour of this account for special situations" +msgstr "Změnit chování tohoto účtu ve speciálních situacích" + +#: ../../mod/manage.php:91 msgid "Manage Identities and/or Pages" msgstr "Správa identit a / nebo stránek" -#: ../../mod/manage.php:90 +#: ../../mod/manage.php:94 msgid "" -"(Toggle between different identities or community/group pages which share " -"your account details.)" -msgstr "" -"(Přepínání mezi různými identitami nebo komunitními / skupinovými stránkami," -" které sdílejí Vaše detaily účtu.)" +"Toggle between different identities or community/group pages which share " +"your account details or which you have been granted \"manage\" permissions" +msgstr "Přepnutí mezi různými identitami nebo komunitními/skupinovými stránkami, které sdílí Vaše detaily účtu, nebo kterým jste přidělili oprávnění nastavovat přístupová práva." -#: ../../mod/manage.php:92 +#: ../../mod/manage.php:96 msgid "Select an identity to manage: " -msgstr "Vyberte identitu pro správu:" +msgstr "Vyberte identitu pro správu: " -#: ../../mod/network.php:27 -msgid "View Conversations" -msgstr "Zobrazit konverzace" +#: ../../mod/network.php:97 +msgid "Search Results For:" +msgstr "Výsledky hledání pro:" -#: ../../mod/network.php:29 -msgid "View New Items" -msgstr "Zobrazit nové položky" +#: ../../mod/network.php:137 ../../mod/search.php:16 +msgid "Remove term" +msgstr "Odstranit termín" -#: ../../mod/network.php:35 -msgid "View Any Items" -msgstr "Zobrazit všechny položky" +#: ../../mod/network.php:146 ../../mod/search.php:13 +msgid "Saved Searches" +msgstr "Uložená hledání" -#: ../../mod/network.php:43 -msgid "View Starred Items" -msgstr "Zobrazit položky označené hvězdu" +#: ../../mod/network.php:147 ../../include/group.php:244 +msgid "add" +msgstr "přidat" -#: ../../mod/network.php:94 +#: ../../mod/network.php:287 +msgid "Commented Order" +msgstr "Dle komentářů" + +#: ../../mod/network.php:290 +msgid "Sort by Comment Date" +msgstr "Řadit podle data komentáře" + +#: ../../mod/network.php:293 +msgid "Posted Order" +msgstr "Dle data" + +#: ../../mod/network.php:296 +msgid "Sort by Post Date" +msgstr "Řadit podle data příspěvku" + +#: ../../mod/network.php:303 +msgid "Posts that mention or involve you" +msgstr "Příspěvky, které Vás zmiňují nebo zahrnují" + +#: ../../mod/network.php:306 +msgid "New" +msgstr "Nové" + +#: ../../mod/network.php:309 +msgid "Activity Stream - by date" +msgstr "Proud aktivit - dle data" + +#: ../../mod/network.php:312 +msgid "Starred" +msgstr "S hvězdičkou" + +#: ../../mod/network.php:315 +msgid "Favourite Posts" +msgstr "Oblíbené přízpěvky" + +#: ../../mod/network.php:318 +msgid "Shared Links" +msgstr "Sdílené odkazy" + +#: ../../mod/network.php:321 +msgid "Interesting Links" +msgstr "Zajímavé odkazy" + +#: ../../mod/network.php:388 #, php-format msgid "Warning: This group contains %s member from an insecure network." msgid_plural "" @@ -1748,41 +2644,99 @@ msgstr[0] "Upozornění: Tato skupina obsahuje %s člena z nezabezpečené sít msgstr[1] "Upozornění: Tato skupina obsahuje %s členy z nezabezpečené sítě." msgstr[2] "Upozornění: Tato skupina obsahuje %s členy z nezabezpečené sítě." -#: ../../mod/network.php:97 +#: ../../mod/network.php:391 msgid "Private messages to this group are at risk of public disclosure." msgstr "Soukromé zprávy této skupině jsou vystaveny riziku prozrazení." -#: ../../mod/network.php:164 -msgid "No such group" -msgstr "Žádná taková skupina" - -#: ../../mod/network.php:175 -msgid "Group is empty" -msgstr "Skupina je prázdná" - -#: ../../mod/network.php:180 -msgid "Group: " -msgstr "Skupina:" - -#: ../../mod/network.php:190 +#: ../../mod/network.php:461 msgid "Contact: " -msgstr "Kontakt:" +msgstr "Kontakt: " -#: ../../mod/network.php:192 +#: ../../mod/network.php:463 msgid "Private messages to this person are at risk of public disclosure." msgstr "Soukromé zprávy této osobě jsou vystaveny riziku prozrazení." -#: ../../mod/network.php:197 +#: ../../mod/network.php:468 msgid "Invalid contact." msgstr "Neplatný kontakt." -#: ../../mod/notes.php:74 +#: ../../mod/notes.php:44 ../../boot.php:1696 +msgid "Personal Notes" +msgstr "Osobní poznámky" + +#: ../../mod/notes.php:63 ../../mod/filer.php:30 +#: ../../addon/facebook/facebook.php:770 +#: ../../addon/privacy_image_cache/privacy_image_cache.php:263 +#: ../../addon/fbpost/fbpost.php:267 +#: ../../addon/dav/friendica/layout.fnk.php:441 +#: ../../addon/dav/friendica/layout.fnk.php:488 ../../include/text.php:681 msgid "Save" msgstr "Uložit" +#: ../../mod/wallmessage.php:42 ../../mod/wallmessage.php:112 +#, php-format +msgid "Number of daily wall messages for %s exceeded. Message failed." +msgstr "Došlo k překročení maximálního počtu zpráv na zeď během jednoho dne. Zpráva %s nedoručena." + +#: ../../mod/wallmessage.php:56 ../../mod/message.php:59 +msgid "No recipient selected." +msgstr "Nevybrán příjemce." + +#: ../../mod/wallmessage.php:59 +msgid "Unable to check your home location." +msgstr "Nebylo možné zjistit Vaši domácí lokaci." + +#: ../../mod/wallmessage.php:62 ../../mod/message.php:66 +msgid "Message could not be sent." +msgstr "Zprávu se nepodařilo odeslat." + +#: ../../mod/wallmessage.php:65 ../../mod/message.php:69 +msgid "Message collection failure." +msgstr "Sběr zpráv selhal." + +#: ../../mod/wallmessage.php:68 ../../mod/message.php:72 +msgid "Message sent." +msgstr "Zpráva odeslána." + +#: ../../mod/wallmessage.php:86 ../../mod/wallmessage.php:95 +msgid "No recipient." +msgstr "Žádný příjemce." + +#: ../../mod/wallmessage.php:123 ../../mod/wallmessage.php:131 +#: ../../mod/message.php:242 ../../mod/message.php:250 +#: ../../include/conversation.php:1205 ../../include/conversation.php:1222 +msgid "Please enter a link URL:" +msgstr "Zadejte prosím URL odkaz:" + +#: ../../mod/wallmessage.php:138 ../../mod/message.php:278 +msgid "Send Private Message" +msgstr "Odeslat soukromou zprávu" + +#: ../../mod/wallmessage.php:139 +#, php-format +msgid "" +"If you wish for %s to respond, please check that the privacy settings on " +"your site allow private mail from unknown senders." +msgstr "Pokud si přejete, aby uživatel %s mohl odpovědět, ověřte si zda-li máte povoleno na svém serveru zasílání soukromých zpráv od neznámých odesilatelů." + +#: ../../mod/wallmessage.php:140 ../../mod/message.php:279 +#: ../../mod/message.php:469 +msgid "To:" +msgstr "Adresát:" + +#: ../../mod/wallmessage.php:141 ../../mod/message.php:284 +#: ../../mod/message.php:471 +msgid "Subject:" +msgstr "Předmět:" + +#: ../../mod/wallmessage.php:147 ../../mod/message.php:288 +#: ../../mod/message.php:474 ../../mod/invite.php:113 +msgid "Your message:" +msgstr "Vaše zpráva:" + #: ../../mod/newmember.php:6 -msgid "Welcome to Friendika" -msgstr "Vítejte na Friendika" +msgid "Welcome to Friendica" +msgstr "Vítejte na Friendica" #: ../../mod/newmember.php:8 msgid "New Member Checklist" @@ -1791,118 +2745,192 @@ msgstr "Seznam doporučení pro nového člena" #: ../../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." -msgstr "" -"Dovolujeme si Vám nabídnout některé tipy a odkazy, abychom Vám zpříjemnili " -"práci se systémem Friendika. Kliknutím na libovolnou položku navštívit " -"příslušnou stránku." +"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 "Rádi bychom vám nabídli několik tipů a odkazů pro začátek. Klikněte na jakoukoliv položku pro zobrazení relevantní stránky. Odkaz na tuto stránku bude viditelný z Vaší domovské stránky po dobu dvou týdnů od Vaší první registrace." -#: ../../mod/newmember.php:16 -msgid "" -"On your Settings page - change your initial password. Also make a " -"note of your Identity Address. This will be useful in making friends." -msgstr "" -"Na stránce Nastavení - změnit výchozí heslo. Poznamenejte si také " -"adresu své identity. To může být užitečné při navazování přátelství." +#: ../../mod/newmember.php:14 +msgid "Getting Started" +msgstr "Začínáme" #: ../../mod/newmember.php:18 +msgid "Friendica Walk-Through" +msgstr "Prohlídka Friendica " + +#: ../../mod/newmember.php:18 +msgid "" +"On your Quick Start page - find a brief introduction to your " +"profile and network tabs, make some new connections, and find some groups to" +" join." +msgstr "Na Vaší stránce Rychlý Start - naleznete stručné představení k Vašemu profilu a záložce Síť, k vytvoření spojení s novými kontakty a nalezení skupin, ke kterým se můžete připojit." + +#: ../../mod/newmember.php:26 +msgid "Go to Your Settings" +msgstr "Navštivte své nastavení" + +#: ../../mod/newmember.php:26 +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 "Na Vaší stránce Nastavení - si změňte Vaše první heslo.\nVěnujte také svou pozornost k adrese identity. Vypadá jako emailová adresa a bude Vám užitečná pro navazování přátelství na svobodné sociální síti." + +#: ../../mod/newmember.php:28 msgid "" "Review the other settings, particularly the privacy settings. An unpublished" " directory listing is like having an unlisted phone number. In general, you " "should probably publish your listing - unless all of your friends and " "potential friends know exactly how to find you." -msgstr "" -"Prohlédněte si další nastavení, a to zejména nastavení soukromí. " -"Nezveřejnění svého účtu v adresáři je jako mít nezveřejněné telefonní číslo." -" Obecně platí, že je lepší mít svůj účet zveřejněný, leda by všichni vaši " -"potenciální přátelé věděli, jak vás přesně najít." +msgstr "Prohlédněte si další nastavení, a to zejména nastavení soukromí. Nezveřejnění svého účtu v adresáři je jako mít nezveřejněné telefonní číslo. Obecně platí, že je lepší mít svůj účet zveřejněný, leda by všichni vaši potenciální přátelé věděli, jak vás přesně najít." -#: ../../mod/newmember.php:20 +#: ../../mod/newmember.php:32 ../../mod/profperm.php:103 +#: ../../view/theme/diabook/theme.php:128 ../../include/profile_advanced.php:7 +#: ../../include/profile_advanced.php:84 ../../include/nav.php:50 +#: ../../boot.php:1672 +msgid "Profile" +msgstr "Profil" + +#: ../../mod/newmember.php:36 ../../mod/profile_photo.php:244 +msgid "Upload Profile Photo" +msgstr "Nahrát profilovou fotografii" + +#: ../../mod/newmember.php:36 msgid "" "Upload a profile photo if you have not done so already. Studies have shown " "that people with real photos of themselves are ten times more likely to make" " friends than people who do not." -msgstr "" -"Nahrajte si svou profilovou fotku, pokud jste tak již neučinili. Studie " -"ukázaly, že lidé se skutečnými fotografiemi mají desetkrát častěji přátele " -"než lidé, kteří nemají." +msgstr "Nahrajte si svou profilovou fotku, pokud jste tak již neučinili. Studie ukázaly, že lidé se skutečnými fotografiemi mají desetkrát častěji přátele než lidé, kteří nemají." -#: ../../mod/newmember.php:23 -msgid "" -"Authorise the Facebook Connector if you currently have a Facebook account " -"and we will (optionally) import all your Facebook friends and conversations." -msgstr "" -"Jestliže máte účet na Facebooku, povolte konektor na Facebook a bude možné " -"(na přání) importovat všechny Vaš přátele na Facebooku a všechny Vaše " -"konverzace." +#: ../../mod/newmember.php:38 +msgid "Edit Your Profile" +msgstr "Editujte Váš profil" -#: ../../mod/newmember.php:28 -msgid "" -"Enter your email access information on your Settings page if you wish to " -"import and interact with friends or mailing lists from your email INBOX" -msgstr "" -"na stránce Nastavení zadejte informace pro přístup k Vaší e-mailové stránce," -" pokud si přejete importovat a komunikovat s přáteli nebo distribučními " -"skupinami z Vaší e-mailové schránky" - -#: ../../mod/newmember.php:30 +#: ../../mod/newmember.php:38 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 "" -"Upravit výchozí profil podle vašich představ. Prověřte " -"nastavení pro skrytí Vašeho seznamu přátel a skrytí profilu před neznámými " -"návštěvníky." +msgstr "Upravit výchozí profil podle vašich představ. Prověřte nastavení pro skrytí Vašeho seznamu přátel a skrytí profilu před neznámými návštěvníky." -#: ../../mod/newmember.php:32 +#: ../../mod/newmember.php:40 +msgid "Profile Keywords" +msgstr "Profilová klíčová slova" + +#: ../../mod/newmember.php:40 msgid "" "Set some public keywords for your default profile which describe your " "interests. We may be able to find other people with similar interests and " "suggest friendships." -msgstr "" -"Nastavte si nějaká veřejné klíčová slova pro výchozí profil, která popisují " -"vaše zájmy. Friendika Vám může nalézt další lidi s podobnými zájmy a " -"navrhnout přátelství." +msgstr "Nastavte si nějaká veřejné klíčová slova pro výchozí profil, která popisují Vaše zájmy. Friendika Vám může nalézt další lidi s podobnými zájmy a navrhnout přátelství." -#: ../../mod/newmember.php:34 +#: ../../mod/newmember.php:44 +msgid "Connecting" +msgstr "Probíhá pokus o připojení" + +#: ../../mod/newmember.php:49 ../../mod/newmember.php:51 +#: ../../addon/facebook/facebook.php:728 ../../addon/fbpost/fbpost.php:239 +#: ../../include/contact_selectors.php:81 +msgid "Facebook" +msgstr "Facebook" + +#: ../../mod/newmember.php:49 +msgid "" +"Authorise the Facebook Connector if you currently have a Facebook account " +"and we will (optionally) import all your Facebook friends and conversations." +msgstr "Jestliže máte účet na Facebooku, povolte konektor na Facebook a bude možné (na přání) importovat všechny Vaš přátele na Facebooku a všechny Vaše konverzace." + +#: ../../mod/newmember.php:51 +msgid "" +"If this is your own personal server, installing the Facebook addon " +"may ease your transition to the free social web." +msgstr "Pokud je toto Váš soukromý server, instalací Facebok doplňku můžete zjednodušit Váš přechod na svobodný sociální web." + +#: ../../mod/newmember.php:56 +msgid "Importing Emails" +msgstr "Importování emaiů" + +#: ../../mod/newmember.php:56 +msgid "" +"Enter your email access information on your Connector Settings page if you " +"wish to import and interact with friends or mailing lists from your email " +"INBOX" +msgstr "Pokud chcete importovat své přátele nebo mailové skupiny a komunikovat s nimi, zadejte na Vaší stránce Nastavení kontektoru své přístupové údaje do svého emailového účtu" + +#: ../../mod/newmember.php:58 +msgid "Go to Your Contacts Page" +msgstr "Navštivte Vaši stránku s kontakty" + +#: ../../mod/newmember.php:58 msgid "" "Your Contacts page is your gateway to managing friendships and connecting " "with friends on other networks. Typically you enter their address or site " -"URL in the Connect dialog." -msgstr "" -"Stránka Kontakty je Vaším odrazovým můstkem k řízení přátelství a spojení s " -"kamarády v jiných sítích. Obvykle zadáte jejich adresu nebo adresu URL do " -"dialogu Připojit." +"URL in the Add New Contact dialog." +msgstr "Vaše stránka Kontakty je Vaše brána k nastavování přátelství a propojení s přáteli z dalších sítí. Typicky zadáte jejich emailovou adresu nebo URL adresu jejich serveru prostřednictvím dialogu Přidat nový kontakt." -#: ../../mod/newmember.php:36 +#: ../../mod/newmember.php:60 +msgid "Go to Your Site's Directory" +msgstr "Navštivte lokální adresář Friendica" + +#: ../../mod/newmember.php:60 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 "" -"Stránka Adresář Vám pomůže najít další lidi na tomto serveru nebo v jiných " -"propojených serverech. Prostřednictvím odkazů Připojení nebo " -"Následovat si prohlédněte jejich profilovou stránku. Uveďte svou " -"vlastní adresu identity, je-li požadována." +msgstr "Stránka Adresář Vám pomůže najít další lidi na tomto serveru nebo v jiných propojených serverech. Prostřednictvím odkazů Připojení nebo Následovat si prohlédněte jejich profilovou stránku. Uveďte svou vlastní adresu identity, je-li požadována." -#: ../../mod/newmember.php:38 +#: ../../mod/newmember.php:62 +msgid "Finding New People" +msgstr "Nalezení nových lidí" + +#: ../../mod/newmember.php:62 +msgid "" +"On the side panel of the Contacts page are several tools to find new " +"friends. We can match people by interest, look up people by name or " +"interest, and provide suggestions based on network relationships. On a brand" +" new site, friend suggestions will usually begin to be populated within 24 " +"hours." +msgstr "Na bočním panelu stránky s kontakty je několik nástrojů k nalezení nových přátel. Porovnáme lidi dle zájmů, najdeme lidi podle jména nebo zájmu a poskytneme Vám návrhy založené na přátelství v síti přátel. Na zcela novém serveru se návrhy přátelství nabínou obvykle během 24 hodin." + +#: ../../mod/newmember.php:66 ../../include/group.php:239 +msgid "Groups" +msgstr "Skupiny" + +#: ../../mod/newmember.php:70 +msgid "Group Your Contacts" +msgstr "Seskupte si své kontakty" + +#: ../../mod/newmember.php:70 msgid "" "Once you have made some friends, organize them into private conversation " "groups from the sidebar of your Contacts page and then you can interact with" " each group privately on your Network page." -msgstr "" -"Jakmile získáte nějaké přátele, uspořádejte si je do soukromých " -"konverzačních skupin na postranním panelu vaší stránky Kontakty a pak můžete" -" komunikovat s každou touto skupinu soukromě prostřednictvím stránky Síť." +msgstr "Jakmile získáte nějaké přátele, uspořádejte si je do soukromých konverzačních skupin na postranním panelu Vaší stránky Kontakty a pak můžete komunikovat s každou touto skupinu soukromě prostřednictvím stránky Síť." -#: ../../mod/newmember.php:40 +#: ../../mod/newmember.php:73 +msgid "Why Aren't My Posts Public?" +msgstr "Proč nejsou mé příspěvky veřejné?" + +#: ../../mod/newmember.php:73 +msgid "" +"Friendica respects your privacy. By default, your posts will only show up to" +" people you've added as friends. For more information, see the help section " +"from the link above." +msgstr "Friendica respektuje Vaše soukromí. Defaultně jsou Vaše příspěvky viditelné pouze lidem, které označíte jako Vaše přátelé. Více informací naleznete v nápovědě na výše uvedeném odkazu" + +#: ../../mod/newmember.php:78 +msgid "Getting Help" +msgstr "Získání nápovědy" + +#: ../../mod/newmember.php:82 +msgid "Go to the Help Section" +msgstr "Navštivte sekci nápovědy" + +#: ../../mod/newmember.php:82 msgid "" "Our help pages may be consulted for detail on other program" " features and resources." -msgstr "" -"Na stránkách Nápověda naleznete nejen další podrobnosti o " -"všech funkcích Friendika ale také další zdroje informací." +msgstr "Na stránkách Nápověda naleznete nejen další podrobnosti o všech funkcích Friendika ale také další zdroje informací." #: ../../mod/attach.php:8 msgid "Item not available." @@ -1912,57 +2940,53 @@ msgstr "Položka není k dispozici." msgid "Item was not found." msgstr "Položka nebyla nalezena." -#: ../../mod/group.php:27 +#: ../../mod/group.php:29 msgid "Group created." msgstr "Skupina vytvořena." -#: ../../mod/group.php:33 +#: ../../mod/group.php:35 msgid "Could not create group." msgstr "Nelze vytvořit skupinu." -#: ../../mod/group.php:43 ../../mod/group.php:123 +#: ../../mod/group.php:47 ../../mod/group.php:137 msgid "Group not found." msgstr "Skupina nenalezena." -#: ../../mod/group.php:56 +#: ../../mod/group.php:60 msgid "Group name changed." msgstr "Název skupiny byl změněn." -#: ../../mod/group.php:67 ../../mod/profperm.php:19 ../../index.php:265 +#: ../../mod/group.php:72 ../../mod/profperm.php:19 ../../index.php:316 msgid "Permission denied" msgstr "Nedostatečné oprávnění" -#: ../../mod/group.php:82 +#: ../../mod/group.php:90 msgid "Create a group of contacts/friends." msgstr "Vytvořit skupinu kontaktů / přátel." -#: ../../mod/group.php:83 ../../mod/group.php:166 +#: ../../mod/group.php:91 ../../mod/group.php:177 msgid "Group Name: " -msgstr "Název skupiny:" +msgstr "Název skupiny: " -#: ../../mod/group.php:98 +#: ../../mod/group.php:110 msgid "Group removed." msgstr "Skupina odstraněna. " -#: ../../mod/group.php:100 +#: ../../mod/group.php:112 msgid "Unable to remove group." msgstr "Nelze odstranit skupinu." -#: ../../mod/group.php:164 ../../mod/profperm.php:105 -msgid "Click on a contact to add or remove." -msgstr "Klikněte na kontakt pro přidání nebo odebrání" - -#: ../../mod/group.php:165 +#: ../../mod/group.php:176 msgid "Group Editor" msgstr "Editor skupin" -#: ../../mod/group.php:180 +#: ../../mod/group.php:189 msgid "Members" msgstr "Členové" -#: ../../mod/group.php:195 -msgid "All Contacts" -msgstr "Všechny kontakty" +#: ../../mod/group.php:221 ../../mod/profperm.php:105 +msgid "Click on a contact to add or remove." +msgstr "Klikněte na kontakt pro přidání nebo odebrání" #: ../../mod/profperm.php:25 ../../mod/profperm.php:55 msgid "Invalid profile identifier." @@ -1976,669 +3000,853 @@ msgstr "Editor viditelnosti profilu " msgid "Visible To" msgstr "Viditelný pro" -#: ../../mod/profperm.php:128 +#: ../../mod/profperm.php:130 msgid "All Contacts (with secure profile access)" msgstr "Všechny kontakty (se zabezpečeným přístupovým profilem )" -#: ../../mod/viewcontacts.php:25 ../../include/text.php:555 -msgid "View Contacts" -msgstr "Zobrazit kontakty" - -#: ../../mod/viewcontacts.php:40 +#: ../../mod/viewcontacts.php:39 msgid "No contacts." msgstr "Žádné kontakty." -#: ../../mod/register.php:53 -msgid "An invitation is required." -msgstr "Pozvánka je vyžadována." +#: ../../mod/viewcontacts.php:76 ../../include/text.php:618 +msgid "View Contacts" +msgstr "Zobrazit kontakty" -#: ../../mod/register.php:58 -msgid "Invitation could not be verified." -msgstr "Pozvánka nemohla být ověřena." - -#: ../../mod/register.php:66 -msgid "Invalid OpenID url" -msgstr "Neplatný odkaz OpenID" - -#: ../../mod/register.php:81 -msgid "Please enter the required information." -msgstr "Zadejte prosím požadované informace." - -#: ../../mod/register.php:95 -msgid "Please use a shorter name." -msgstr "Použijte prosím kratší jméno." - -#: ../../mod/register.php:97 -msgid "Name too short." -msgstr "Jméno je příliš krátké." - -#: ../../mod/register.php:112 -msgid "That doesn't appear to be your full (First Last) name." -msgstr "Nezdá se, že by to bylo vaše celé jméno (křestní jméno a příjmení)." - -#: ../../mod/register.php:117 -msgid "Your email domain is not among those allowed on this site." -msgstr "Váš e-mailová doména není na tomto serveru mezi povolenými." - -#: ../../mod/register.php:120 -msgid "Not a valid email address." -msgstr "Neplatná e-mailová adresa." - -#: ../../mod/register.php:130 -msgid "Cannot use that email." -msgstr "Tento e-mail nelze použít." - -#: ../../mod/register.php:136 -msgid "" -"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and " -"must also begin with a letter." -msgstr "" -"Vaše \"přezdívka\" může obsahovat pouze \"a-z\", \"0-9\", \"-\", a \"_\", a " -"musí začínat písmenem." - -#: ../../mod/register.php:142 ../../mod/register.php:243 -msgid "Nickname is already registered. Please choose another." -msgstr "Přezdívka je již registrována. Prosím vyberte jinou." - -#: ../../mod/register.php:161 -msgid "SERIOUS ERROR: Generation of security keys failed." -msgstr "Závažná chyba: Generování bezpečnostních klíčů se nezdařilo." - -#: ../../mod/register.php:229 -msgid "An error occurred during registration. Please try again." -msgstr "Došlo k chybě při registraci. Zkuste to prosím znovu." - -#: ../../mod/register.php:265 -msgid "An error occurred creating your default profile. Please try again." -msgstr "" -"Došlo k chybě při vytváření Vašeho výchozího profilu. Zkuste to prosím " -"znovu." - -#: ../../mod/register.php:367 ../../mod/regmod.php:52 +#: ../../mod/register.php:88 ../../mod/regmod.php:52 #, php-format msgid "Registration details for %s" msgstr "Registrační údaje pro %s" -#: ../../mod/register.php:375 +#: ../../mod/register.php:96 msgid "" "Registration successful. Please check your email for further instructions." -msgstr "" -"Registrace úspěšná. Zkontrolujte prosím svůj e-mail pro další instrukce." +msgstr "Registrace úspěšná. Zkontrolujte prosím svůj e-mail pro další instrukce." -#: ../../mod/register.php:379 +#: ../../mod/register.php:100 msgid "Failed to send email message. Here is the message that failed." -msgstr "" -"Nepodařilo se odeslat zprávu na e-mail. Zde je zpráva, která nebyla " -"odeslána." +msgstr "Nepodařilo se odeslat zprávu na e-mail. Zde je zpráva, která nebyla odeslána." -#: ../../mod/register.php:384 +#: ../../mod/register.php:105 msgid "Your registration can not be processed." msgstr "Vaši registraci nelze zpracovat." -#: ../../mod/register.php:421 +#: ../../mod/register.php:142 #, php-format msgid "Registration request at %s" msgstr "Žádost o registraci na %s" -#: ../../mod/register.php:430 +#: ../../mod/register.php:151 msgid "Your registration is pending approval by the site owner." msgstr "Vaše registrace čeká na schválení vlastníkem serveru." -#: ../../mod/register.php:479 +#: ../../mod/register.php:189 +msgid "" +"This site has exceeded the number of allowed daily account registrations. " +"Please try again tomorrow." +msgstr "Došlo k překročení maximálního povoleného počtu registrací za den na tomto serveru. Zkuste to zítra znovu." + +#: ../../mod/register.php:217 msgid "" "You may (optionally) fill in this form via OpenID by supplying your OpenID " "and clicking 'Register'." -msgstr "" -"Tento formulář můžete (volitelně) vyplnit s pomocí OpenID tím, že vyplníte " -"své OpenID a kliknutete na tlačítko 'Zaregistrovat'." +msgstr "Tento formulář můžete (volitelně) vyplnit s pomocí OpenID tím, že vyplníte své OpenID a kliknutete na tlačítko 'Zaregistrovat'." -#: ../../mod/register.php:480 +#: ../../mod/register.php:218 msgid "" "If you are not familiar with OpenID, please leave that field blank and fill " "in the rest of the items." -msgstr "" -"Pokud nepoužíváte OpenID, nechte prosím toto pole prázdné a vyplňte zbylé " -"položky." +msgstr "Pokud nepoužíváte OpenID, nechte prosím toto pole prázdné a vyplňte zbylé položky." -#: ../../mod/register.php:481 +#: ../../mod/register.php:219 msgid "Your OpenID (optional): " -msgstr "Vaše OpenID (nepovinné):" +msgstr "Vaše OpenID (nepovinné): " -#: ../../mod/register.php:495 +#: ../../mod/register.php:233 msgid "Include your profile in member directory?" -msgstr "Uvést Váš profil v adresáři členů?" +msgstr "Toto je Váš veřejný profil.
    Ten může být viditelný kýmkoliv na internetu." -#: ../../mod/register.php:511 +#: ../../mod/register.php:255 msgid "Membership on this site is by invitation only." msgstr "Členství na tomto webu je pouze na pozvání." -#: ../../mod/register.php:512 +#: ../../mod/register.php:256 msgid "Your invitation ID: " msgstr "Vaše pozvání ID:" -#: ../../mod/register.php:515 ../../mod/admin.php:299 +#: ../../mod/register.php:259 ../../mod/admin.php:444 msgid "Registration" msgstr "Registrace" -#: ../../mod/register.php:523 +#: ../../mod/register.php:267 msgid "Your Full Name (e.g. Joe Smith): " msgstr "Vaše celé jméno (např. Jan Novák):" -#: ../../mod/register.php:524 +#: ../../mod/register.php:268 msgid "Your Email Address: " msgstr "Vaše e-mailová adresa:" -#: ../../mod/register.php:525 +#: ../../mod/register.php:269 msgid "" "Choose a profile nickname. This must begin with a text character. Your " "profile address on this site will then be " "'nickname@$sitename'." -msgstr "" -"Vyberte přezdívku k profilu. Ta musí začít s textovým znakem. Vaše profilová" -" adresa na tomto webu pak bude \"přezdívka@$sitename\"." +msgstr "Vyberte přezdívku k profilu. Ta musí začít s textovým znakem. Vaše profilová adresa na tomto webu pak bude \"přezdívka@$sitename\"." -#: ../../mod/register.php:526 +#: ../../mod/register.php:270 msgid "Choose a nickname: " msgstr "Vyberte přezdívku:" -#: ../../mod/register.php:529 ../../include/nav.php:59 ../../boot.php:637 +#: ../../mod/register.php:273 ../../include/nav.php:81 ../../boot.php:887 msgid "Register" msgstr "Registrovat" -#: ../../mod/like.php:110 ../../addon/facebook/facebook.php:954 -#: ../../include/diaspora.php:446 ../../include/conversation.php:26 -#: ../../include/conversation.php:35 +#: ../../mod/dirfind.php:26 +msgid "People Search" +msgstr "Vyhledávání lidí" + +#: ../../mod/like.php:145 ../../mod/like.php:298 ../../mod/tagger.php:62 +#: ../../addon/facebook/facebook.php:1598 +#: ../../addon/communityhome/communityhome.php:158 +#: ../../addon/communityhome/communityhome.php:167 +#: ../../view/theme/diabook/theme.php:565 +#: ../../view/theme/diabook/theme.php:574 ../../include/diaspora.php:1824 +#: ../../include/conversation.php:120 ../../include/conversation.php:129 +#: ../../include/conversation.php:248 ../../include/conversation.php:257 msgid "status" msgstr "Stav" -#: ../../mod/like.php:127 ../../addon/facebook/facebook.php:958 -#: ../../include/diaspora.php:463 ../../include/conversation.php:43 +#: ../../mod/like.php:162 ../../addon/facebook/facebook.php:1602 +#: ../../addon/communityhome/communityhome.php:172 +#: ../../view/theme/diabook/theme.php:579 ../../include/diaspora.php:1840 +#: ../../include/conversation.php:136 #, php-format msgid "%1$s likes %2$s's %3$s" msgstr "%1$s má rád %2$s' na %3$s" -#: ../../mod/like.php:129 ../../include/diaspora.php:465 -#: ../../include/conversation.php:46 +#: ../../mod/like.php:164 ../../include/conversation.php:139 #, php-format msgid "%1$s doesn't like %2$s's %3$s" msgstr "%1$s nemá rád %2$s na %3$s" -#: ../../mod/friendika.php:42 -msgid "This is Friendika version" -msgstr "Toto je Friendika verze" +#: ../../mod/notice.php:15 ../../mod/viewsrc.php:15 ../../mod/admin.php:159 +#: ../../mod/admin.php:734 ../../mod/admin.php:933 ../../mod/display.php:29 +#: ../../mod/display.php:145 ../../include/items.php:3774 +msgid "Item not found." +msgstr "Položka nenalezena." -#: ../../mod/friendika.php:43 -msgid "running at web location" -msgstr "běžící na webu" +#: ../../mod/viewsrc.php:7 +msgid "Access denied." +msgstr "Přístup odmítnut" -#: ../../mod/friendika.php:45 -msgid "" -"Shared content within the Friendika network is provided under the Creative Commons " -"Attribution 3.0 license" -msgstr "" -"Sdílený obsah v síti Friendika je poskytována pod licencí Creative " -"Commons Attribution 3.0" +#: ../../mod/fbrowser.php:25 ../../view/theme/diabook/theme.php:130 +#: ../../include/nav.php:51 ../../boot.php:1679 +msgid "Photos" +msgstr "Fotografie" -#: ../../mod/friendika.php:47 -msgid "" -"Please visit Project.Friendika.com to learn " -"more about the Friendika project." -msgstr "" -"Pokud se chcete dozvědět více o projektu Friendika, navštivte, prosím, Project.Friendika.com" - -#: ../../mod/friendika.php:49 -msgid "Bug reports and issues: please visit" -msgstr "Pro hlášení chyb a námětů na změny navštivte:" - -#: ../../mod/friendika.php:50 -msgid "" -"Suggestions, praise, donations, etc. - please email \"Info\" at Friendika - " -"dot com" -msgstr "" -"Návrhy, chválu, dary, atd. - prosím pošlete na e-mail \"Info\" na Friendika " -"tečka com" - -#: ../../mod/friendika.php:55 -msgid "Installed plugins/addons/apps" -msgstr "Nainstalované doplňky/aplikace" - -#: ../../mod/friendika.php:63 -msgid "No installed plugins/addons/apps" -msgstr "Nejsou žádné nainstalované doplňky/aplikace" +#: ../../mod/fbrowser.php:96 +msgid "Files" +msgstr "Soubory" #: ../../mod/regmod.php:61 msgid "Account approved." msgstr "Účet schválen." -#: ../../mod/regmod.php:93 +#: ../../mod/regmod.php:98 #, php-format msgid "Registration revoked for %s" msgstr "Registrace zrušena pro %s" -#: ../../mod/regmod.php:105 +#: ../../mod/regmod.php:110 msgid "Please login." msgstr "Přihlaste se, prosím." -#: ../../mod/item.php:81 +#: ../../mod/item.php:91 msgid "Unable to locate original post." msgstr "Nelze nalézt původní příspěvek." -#: ../../mod/item.php:196 +#: ../../mod/item.php:275 msgid "Empty post discarded." msgstr "Prázdný příspěvek odstraněn." -#: ../../mod/item.php:296 ../../mod/message.php:93 -#: ../../mod/wall_upload.php:81 ../../mod/wall_upload.php:90 -#: ../../mod/wall_upload.php:97 +#: ../../mod/item.php:407 ../../mod/wall_upload.php:133 +#: ../../mod/wall_upload.php:142 ../../mod/wall_upload.php:149 +#: ../../include/message.php:144 msgid "Wall Photos" msgstr "Fotografie na zdi" -#: ../../mod/item.php:623 ../../mod/item.php:668 ../../mod/item.php:691 -#: ../../mod/item.php:734 ../../mod/dfrn_notify.php:293 -#: ../../mod/dfrn_notify.php:503 ../../mod/dfrn_notify.php:548 -#: ../../mod/dfrn_notify.php:634 ../../mod/dfrn_notify.php:677 -msgid "noreply" -msgstr "bez odpovědi" - -#: ../../mod/item.php:667 ../../mod/item.php:733 ../../mod/dfrn_notify.php:676 -msgid "Administrator@" -msgstr "Administrator@" - -#: ../../mod/item.php:670 ../../mod/dfrn_notify.php:550 -#: ../../mod/dfrn_notify.php:679 -#, php-format -msgid "%s commented on an item at %s" -msgstr "%s okomentoval položku v %s" - -#: ../../mod/item.php:736 -#, php-format -msgid "%s posted to your profile wall at %s" -msgstr "%s přidal příspěvek na vaší profilovou zeď v %s" - -#: ../../mod/item.php:765 +#: ../../mod/item.php:820 msgid "System error. Post not saved." msgstr "Chyba systému. Příspěvek nebyl uložen." -#: ../../mod/item.php:784 +#: ../../mod/item.php:845 #, php-format msgid "" -"This message was sent to you by %s, a member of the Friendika social " +"This message was sent to you by %s, a member of the Friendica social " "network." -msgstr "Tuto zprávu Vám zaslal %s, člen sociální sítě Friendika." +msgstr "Tato zpráva vám byla zaslána od %s, člena sociální sítě Friendica." -#: ../../mod/item.php:786 +#: ../../mod/item.php:847 #, php-format msgid "You may visit them online at %s" msgstr "Můžete je navštívit online na adrese %s" -#: ../../mod/item.php:787 +#: ../../mod/item.php:848 msgid "" "Please contact the sender by replying to this post if you do not wish to " "receive these messages." -msgstr "" -"Pokud nechcete dostávat tyto zprávy, kontaktujte prosím odesilatele odpovědí" -" na tento záznam." +msgstr "Pokud nechcete dostávat tyto zprávy, kontaktujte prosím odesilatele odpovědí na tento záznam." -#: ../../mod/item.php:789 +#: ../../mod/item.php:850 #, php-format msgid "%s posted an update." msgstr "%s poslal aktualizaci." -#: ../../mod/profile_photo.php:28 +#: ../../mod/mood.php:62 ../../include/conversation.php:226 +#, php-format +msgid "%1$s is currently %2$s" +msgstr "" + +#: ../../mod/mood.php:133 +msgid "Mood" +msgstr "Nálada" + +#: ../../mod/mood.php:134 +msgid "Set your current mood and tell your friends" +msgstr "Nastavte svou aktuální náladu a řekněte to Vašim přátelům" + +#: ../../mod/profile_photo.php:44 msgid "Image uploaded but image cropping failed." msgstr "Obrázek byl odeslán, ale jeho oříznutí se nesdařilo." -#: ../../mod/profile_photo.php:61 ../../mod/profile_photo.php:68 -#: ../../mod/profile_photo.php:75 ../../mod/profile_photo.php:248 +#: ../../mod/profile_photo.php:77 ../../mod/profile_photo.php:84 +#: ../../mod/profile_photo.php:91 ../../mod/profile_photo.php:308 #, php-format msgid "Image size reduction [%s] failed." msgstr "Nepodařilo se snížit velikost obrázku [%s]." -#: ../../mod/profile_photo.php:95 +#: ../../mod/profile_photo.php:118 +msgid "" +"Shift-reload the page or clear browser cache if the new photo does not " +"display immediately." +msgstr "Znovu načtěte stránku (Shift+F5) nebo vymažte cache prohlížeče, pokud se nové fotografie nezobrazí okamžitě." + +#: ../../mod/profile_photo.php:128 msgid "Unable to process image" msgstr "Obrázek nelze zpracovat " -#: ../../mod/profile_photo.php:109 ../../mod/wall_upload.php:56 +#: ../../mod/profile_photo.php:144 ../../mod/wall_upload.php:88 #, php-format msgid "Image exceeds size limit of %d" msgstr "Obrázek překročil limit velikosti %d" -#: ../../mod/profile_photo.php:193 +#: ../../mod/profile_photo.php:242 msgid "Upload File:" msgstr "Nahrát soubor:" -#: ../../mod/profile_photo.php:194 -msgid "Upload Profile Photo" -msgstr "Nahrát profilovou fotografii" +#: ../../mod/profile_photo.php:243 +msgid "Select a profile:" +msgstr "Vybrat profil:" -#: ../../mod/profile_photo.php:195 +#: ../../mod/profile_photo.php:245 +#: ../../addon/dav/friendica/layout.fnk.php:152 msgid "Upload" msgstr "Nahrát" -#: ../../mod/profile_photo.php:196 +#: ../../mod/profile_photo.php:248 msgid "skip this step" msgstr "přeskočit tento krok " -#: ../../mod/profile_photo.php:196 +#: ../../mod/profile_photo.php:248 msgid "select a photo from your photo albums" msgstr "Vybrat fotografii z Vašich fotoalb" -#: ../../mod/profile_photo.php:209 +#: ../../mod/profile_photo.php:262 msgid "Crop Image" msgstr "Oříznout obrázek" -#: ../../mod/profile_photo.php:210 +#: ../../mod/profile_photo.php:263 msgid "Please adjust the image cropping for optimum viewing." msgstr "Prosím, ořízněte tento obrázek pro optimální zobrazení." -#: ../../mod/profile_photo.php:211 +#: ../../mod/profile_photo.php:265 msgid "Done Editing" msgstr "Editace dokončena" -#: ../../mod/profile_photo.php:239 +#: ../../mod/profile_photo.php:299 msgid "Image uploaded successfully." msgstr "Obrázek byl úspěšně nahrán." -#: ../../mod/hcard.php:11 ../../mod/profile.php:11 ../../boot.php:792 +#: ../../mod/hcard.php:10 msgid "No profile" msgstr "Žádný profil" -#: ../../mod/removeme.php:42 ../../mod/removeme.php:45 +#: ../../mod/removeme.php:45 ../../mod/removeme.php:48 msgid "Remove My Account" msgstr "Odstranit můj účet" -#: ../../mod/removeme.php:43 +#: ../../mod/removeme.php:46 msgid "" "This will completely remove your account. Once this has been done it is not " "recoverable." -msgstr "" -"Tímto bude kompletně odstraněn váš účet. Jakmile bude účet odstraněn, nebude" -" už možné ho obnovit." +msgstr "Tímto bude kompletně odstraněn váš účet. Jakmile bude účet odstraněn, nebude už možné ho obnovit." -#: ../../mod/removeme.php:44 +#: ../../mod/removeme.php:47 msgid "Please enter your password for verification:" msgstr "Prosím, zadejte své heslo pro ověření:" -#: ../../mod/message.php:18 -msgid "No recipient selected." -msgstr "Nevybrán příjemce." - -#: ../../mod/message.php:23 -msgid "[no subject]" -msgstr "[bez předmětu]" - -#: ../../mod/message.php:34 -msgid "Unable to locate contact information." -msgstr "Nepodařilo se najít kontaktní informace." - -#: ../../mod/message.php:102 -msgid "Message sent." -msgstr "Zpráva odeslána." - -#: ../../mod/message.php:105 -msgid "Message could not be sent." -msgstr "Zprávu se nepodařilo odeslat." - -#: ../../mod/message.php:125 ../../include/nav.php:102 -msgid "Messages" -msgstr "Zprávy" - -#: ../../mod/message.php:126 -msgid "Inbox" -msgstr "Doručená pošta" - -#: ../../mod/message.php:127 -msgid "Outbox" -msgstr "Odeslaná pošta" - -#: ../../mod/message.php:128 +#: ../../mod/message.php:9 ../../include/nav.php:131 msgid "New Message" msgstr "Nová zpráva" -#: ../../mod/message.php:142 +#: ../../mod/message.php:63 +msgid "Unable to locate contact information." +msgstr "Nepodařilo se najít kontaktní informace." + +#: ../../mod/message.php:191 msgid "Message deleted." msgstr "Zpráva odstraněna." -#: ../../mod/message.php:158 +#: ../../mod/message.php:221 msgid "Conversation removed." msgstr "Konverzace odstraněna." -#: ../../mod/message.php:172 ../../include/conversation.php:699 -msgid "Please enter a link URL:" -msgstr "Zadejte prosím URL odkaz:" - -#: ../../mod/message.php:180 -msgid "Send Private Message" -msgstr "Odeslat soukromou zprávu" - -#: ../../mod/message.php:181 ../../mod/message.php:315 -msgid "To:" -msgstr "Adresát:" - -#: ../../mod/message.php:182 ../../mod/message.php:316 -msgid "Subject:" -msgstr "Předmět:" - -#: ../../mod/message.php:185 ../../mod/message.php:319 -#: ../../mod/invite.php:101 -msgid "Your message:" -msgstr "Vaše zpráva:" - -#: ../../mod/message.php:224 +#: ../../mod/message.php:327 msgid "No messages." msgstr "Žádné zprávy." -#: ../../mod/message.php:237 +#: ../../mod/message.php:334 +#, php-format +msgid "Unknown sender - %s" +msgstr "Neznámý odesilatel - %s" + +#: ../../mod/message.php:337 +#, php-format +msgid "You and %s" +msgstr "Vy a %s" + +#: ../../mod/message.php:340 +#, php-format +msgid "%s and You" +msgstr "%s a Vy" + +#: ../../mod/message.php:350 ../../mod/message.php:462 msgid "Delete conversation" msgstr "Odstranit konverzaci" -#: ../../mod/message.php:240 +#: ../../mod/message.php:353 msgid "D, d M Y - g:i A" msgstr "D M R - g:i A" -#: ../../mod/message.php:267 +#: ../../mod/message.php:356 +#, php-format +msgid "%d message" +msgid_plural "%d messages" +msgstr[0] "%d zpráva" +msgstr[1] "%d zprávy" +msgstr[2] "%d zpráv" + +#: ../../mod/message.php:391 msgid "Message not available." msgstr "Zpráva není k dispozici." -#: ../../mod/message.php:304 +#: ../../mod/message.php:444 msgid "Delete message" msgstr "Smazat zprávu" -#: ../../mod/message.php:314 +#: ../../mod/message.php:464 +msgid "" +"No secure communications available. You may be able to " +"respond from the sender's profile page." +msgstr "Není k dispozici zabezpečená komunikace. Možná budete schopni reagovat z odesilatelovy profilové stránky." + +#: ../../mod/message.php:468 msgid "Send Reply" msgstr "Poslat odpověď" -#: ../../mod/admin.php:66 ../../mod/admin.php:297 +#: ../../mod/allfriends.php:34 +#, php-format +msgid "Friends of %s" +msgstr "Přátelé uživatele %s" + +#: ../../mod/allfriends.php:40 +msgid "No friends to display." +msgstr "Žádní přátelé k zobrazení" + +#: ../../mod/admin.php:55 +msgid "Theme settings updated." +msgstr "Nastavení téma zobrazení bylo aktualizováno." + +#: ../../mod/admin.php:96 ../../mod/admin.php:442 msgid "Site" msgstr "Web" -#: ../../mod/admin.php:67 ../../mod/admin.php:460 ../../mod/admin.php:472 +#: ../../mod/admin.php:97 ../../mod/admin.php:688 ../../mod/admin.php:701 msgid "Users" msgstr "Uživatelé" -#: ../../mod/admin.php:68 ../../mod/admin.php:549 ../../mod/admin.php:586 +#: ../../mod/admin.php:98 ../../mod/admin.php:783 ../../mod/admin.php:825 msgid "Plugins" msgstr "Pluginy" -#: ../../mod/admin.php:69 -msgid "Update" -msgstr "Aktualizace" +#: ../../mod/admin.php:99 ../../mod/admin.php:988 ../../mod/admin.php:1024 +msgid "Themes" +msgstr "Témata" -#: ../../mod/admin.php:83 ../../mod/admin.php:651 +#: ../../mod/admin.php:100 +msgid "DB updates" +msgstr "Aktualizace databáze" + +#: ../../mod/admin.php:115 ../../mod/admin.php:122 ../../mod/admin.php:1111 msgid "Logs" msgstr "Logy" -#: ../../mod/admin.php:88 +#: ../../mod/admin.php:120 ../../include/nav.php:146 +msgid "Admin" +msgstr "Administrace" + +#: ../../mod/admin.php:121 +msgid "Plugin Features" +msgstr "Funkčnosti rozšíření" + +#: ../../mod/admin.php:123 msgid "User registrations waiting for confirmation" msgstr "Registrace uživatele čeká na potvrzení" -#: ../../mod/admin.php:118 ../../mod/admin.php:502 ../../mod/display.php:25 -#: ../../mod/display.php:112 ../../include/items.php:1842 -msgid "Item not found." -msgstr "Položka nenalezena." +#: ../../mod/admin.php:183 ../../mod/admin.php:669 +msgid "Normal Account" +msgstr "Normální účet" -#: ../../mod/admin.php:151 ../../mod/admin.php:296 ../../mod/admin.php:459 -#: ../../mod/admin.php:548 ../../mod/admin.php:585 ../../mod/admin.php:650 +#: ../../mod/admin.php:184 ../../mod/admin.php:670 +msgid "Soapbox Account" +msgstr "Soapbox účet" + +#: ../../mod/admin.php:185 ../../mod/admin.php:671 +msgid "Community/Celebrity Account" +msgstr "Komunitní účet / Účet celebrity" + +#: ../../mod/admin.php:186 ../../mod/admin.php:672 +msgid "Automatic Friend Account" +msgstr "Účet s automatickým schvalováním přátel" + +#: ../../mod/admin.php:187 +msgid "Blog Account" +msgstr "Účet Blogu" + +#: ../../mod/admin.php:188 +msgid "Private Forum" +msgstr "Soukromé fórum" + +#: ../../mod/admin.php:207 +msgid "Message queues" +msgstr "Fronty zpráv" + +#: ../../mod/admin.php:212 ../../mod/admin.php:441 ../../mod/admin.php:687 +#: ../../mod/admin.php:782 ../../mod/admin.php:824 ../../mod/admin.php:987 +#: ../../mod/admin.php:1023 ../../mod/admin.php:1110 msgid "Administration" msgstr "Administrace" -#: ../../mod/admin.php:152 +#: ../../mod/admin.php:213 msgid "Summary" msgstr "Shrnutí" -#: ../../mod/admin.php:153 +#: ../../mod/admin.php:215 msgid "Registered users" msgstr "Registrovaní uživatelé" -#: ../../mod/admin.php:155 +#: ../../mod/admin.php:217 msgid "Pending registrations" msgstr "Čekající registrace" -#: ../../mod/admin.php:156 +#: ../../mod/admin.php:218 msgid "Version" msgstr "Verze" -#: ../../mod/admin.php:158 +#: ../../mod/admin.php:220 msgid "Active plugins" msgstr "Aktivní pluginy" -#: ../../mod/admin.php:245 +#: ../../mod/admin.php:373 msgid "Site settings updated." msgstr "Nastavení webu aktualizováno." -#: ../../mod/admin.php:289 +#: ../../mod/admin.php:428 msgid "Closed" -msgstr "Uzavřít" +msgstr "Uzavřeno" -#: ../../mod/admin.php:290 +#: ../../mod/admin.php:429 msgid "Requires approval" msgstr "Vyžaduje schválení" -#: ../../mod/admin.php:291 +#: ../../mod/admin.php:430 msgid "Open" msgstr "Otevřená" -#: ../../mod/admin.php:300 +#: ../../mod/admin.php:434 +msgid "No SSL policy, links will track page SSL state" +msgstr "Žádná SSL politika, odkazy budou následovat stránky SSL stav" + +#: ../../mod/admin.php:435 +msgid "Force all links to use SSL" +msgstr "Vyžadovat u všech odkazů použití SSL" + +#: ../../mod/admin.php:436 +msgid "Self-signed certificate, use SSL for local links only (discouraged)" +msgstr "Certifikát podepsaný sám sebou, použít SSL pouze pro lokální odkazy (nedoporučeno)" + +#: ../../mod/admin.php:445 msgid "File upload" msgstr "Nahrání souborů" -#: ../../mod/admin.php:301 +#: ../../mod/admin.php:446 msgid "Policies" msgstr "Politiky" -#: ../../mod/admin.php:302 +#: ../../mod/admin.php:447 msgid "Advanced" msgstr "Pokročilé" -#: ../../mod/admin.php:306 ../../addon/statusnet/statusnet.php:459 +#: ../../mod/admin.php:451 ../../addon/statusnet/statusnet.php:567 msgid "Site name" msgstr "Název webu" -#: ../../mod/admin.php:307 +#: ../../mod/admin.php:452 msgid "Banner/Logo" msgstr "Banner/logo" -#: ../../mod/admin.php:308 +#: ../../mod/admin.php:453 msgid "System language" msgstr "Systémový jazyk" -#: ../../mod/admin.php:309 +#: ../../mod/admin.php:454 msgid "System theme" msgstr "Grafická šablona systému " -#: ../../mod/admin.php:311 -msgid "Maximum image size" -msgstr "Maximální velikost obrazu" +#: ../../mod/admin.php:454 +msgid "" +"Default system theme - may be over-ridden by user profiles - change theme settings" +msgstr "Defaultní systémové téma - může být změněno v uživatelských profilech - změnit theme settings" -#: ../../mod/admin.php:313 +#: ../../mod/admin.php:455 +msgid "Mobile system theme" +msgstr "Systémové téma zobrazení pro mobilní zařízení" + +#: ../../mod/admin.php:455 +msgid "Theme for mobile devices" +msgstr "Téma zobrazení pro mobilní zařízení" + +#: ../../mod/admin.php:456 +msgid "SSL link policy" +msgstr "Politika SSL odkazů" + +#: ../../mod/admin.php:456 +msgid "Determines whether generated links should be forced to use SSL" +msgstr "Určuje, zda-li budou generované odkazy používat SSL" + +#: ../../mod/admin.php:457 +msgid "Maximum image size" +msgstr "Maximální velikost obrázků" + +#: ../../mod/admin.php:457 +msgid "" +"Maximum size in bytes of uploaded images. Default is 0, which means no " +"limits." +msgstr "Maximální velikost v bajtech nahraných obrázků. Defaultní je 0, což znamená neomezeno." + +#: ../../mod/admin.php:458 +msgid "Maximum image length" +msgstr "Maximální velikost obrázků" + +#: ../../mod/admin.php:458 +msgid "" +"Maximum length in pixels of the longest side of uploaded images. Default is " +"-1, which means no limits." +msgstr "Maximální délka v pixelech delší stránky nahrávaných obrázků. Defaultně je -1, což označuje bez limitu" + +#: ../../mod/admin.php:459 +msgid "JPEG image quality" +msgstr "JPEG kvalita obrázku" + +#: ../../mod/admin.php:459 +msgid "" +"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " +"100, which is full quality." +msgstr "Nahrávaný JPEG bude uložen se zadanou kvalitou v rozmezí [0-100]. Defaultní je 100, což znamená plnou kvalitu." + +#: ../../mod/admin.php:461 msgid "Register policy" msgstr "Politika registrace" -#: ../../mod/admin.php:314 +#: ../../mod/admin.php:462 msgid "Register text" msgstr "Registrace textu" -#: ../../mod/admin.php:315 +#: ../../mod/admin.php:462 +msgid "Will be displayed prominently on the registration page." +msgstr "Bude zřetelně zobrazeno na registrační stránce." + +#: ../../mod/admin.php:463 +msgid "Accounts abandoned after x days" +msgstr "Účet je opuštěn po x dnech" + +#: ../../mod/admin.php:463 +msgid "" +"Will not waste system resources polling external sites for abandonded " +"accounts. Enter 0 for no time limit." +msgstr "Neztrácejte systémové zdroje kontaktováním externích webů s opuštěnými účty. Zadejte 0 pro žádný časový limit." + +#: ../../mod/admin.php:464 msgid "Allowed friend domains" msgstr "Povolené domény přátel" -#: ../../mod/admin.php:316 +#: ../../mod/admin.php:464 +msgid "" +"Comma separated list of domains which are allowed to establish friendships " +"with this site. Wildcards are accepted. Empty to allow any domains" +msgstr "Čárkou oddělený seznam domén, kterým je povoleno navazovat přátelství s tímto webem. Zástupné znaky (wildcards) jsou povoleny. Prázné znamená libovolnou doménu." + +#: ../../mod/admin.php:465 msgid "Allowed email domains" msgstr "Povolené e-mailové domény" -#: ../../mod/admin.php:317 +#: ../../mod/admin.php:465 +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 "Čárkou oddělený seznam domén emalových adres, kterým je povoleno provádět registraci na tomto webu. Zástupné znaky (wildcards) jsou povoleny. Prázné znamená libovolnou doménu." + +#: ../../mod/admin.php:466 msgid "Block public" msgstr "Blokovat veřejnost" -#: ../../mod/admin.php:318 +#: ../../mod/admin.php:466 +msgid "" +"Check to block public access to all otherwise public personal pages on this " +"site unless you are currently logged in." +msgstr "Označemím přepínače zablokujete veřejný přístup ke všem jinak veřejně přístupným soukromým stránkám uživatelům, kteří nebudou přihlášeni." + +#: ../../mod/admin.php:467 msgid "Force publish" msgstr "Publikovat" -#: ../../mod/admin.php:319 +#: ../../mod/admin.php:467 +msgid "" +"Check to force all profiles on this site to be listed in the site directory." +msgstr "Označením přepínače budou včechny profily na tomto webu uvedeny v adresáři webu." + +#: ../../mod/admin.php:468 msgid "Global directory update URL" msgstr "aktualizace URL adresy Globálního adresáře " -#: ../../mod/admin.php:321 +#: ../../mod/admin.php:468 +msgid "" +"URL to update the global directory. If this is not set, the global directory" +" is completely unavailable to the application." +msgstr "URL adresa k aktualizaci globálního adresáře. Pokud není zadáno, funkce globálního adresáře není dostupná žádné aplikaci." + +#: ../../mod/admin.php:469 +msgid "Allow threaded items" +msgstr "Povolit vícevláknové zpracování obsahu" + +#: ../../mod/admin.php:469 +msgid "Allow infinite level threading for items on this site." +msgstr "Povolit zpracování obsahu tohoto webu neomezeným počtem paralelních vláken." + +#: ../../mod/admin.php:470 +msgid "Private posts by default for new users" +msgstr "" + +#: ../../mod/admin.php:470 +msgid "" +"Set default post permissions for all new members to the default privacy " +"group rather than public." +msgstr "" + +#: ../../mod/admin.php:472 msgid "Block multiple registrations" msgstr "Blokovat více registrací" -#: ../../mod/admin.php:322 +#: ../../mod/admin.php:472 +msgid "Disallow users to register additional accounts for use as pages." +msgstr "Znemožnit uživatelům registraci dodatečných účtů k použití jako stránky." + +#: ../../mod/admin.php:473 msgid "OpenID support" msgstr "podpora OpenID" -#: ../../mod/admin.php:323 -msgid "Gravatar support" -msgstr "podpora Gravatar" +#: ../../mod/admin.php:473 +msgid "OpenID support for registration and logins." +msgstr "Podpora OpenID pro registraci a přihlašování." -#: ../../mod/admin.php:324 +#: ../../mod/admin.php:474 msgid "Fullname check" msgstr "kontrola úplného jména" -#: ../../mod/admin.php:325 +#: ../../mod/admin.php:474 +msgid "" +"Force users to register with a space between firstname and lastname in Full " +"name, as an antispam measure" +msgstr "Přimět uživatele k registraci s mezerou mezi jménu a příjmením v poli Celé jméno, jako antispamové opatření." + +#: ../../mod/admin.php:475 msgid "UTF-8 Regular expressions" msgstr "UTF-8 Regulární výrazy" -#: ../../mod/admin.php:326 +#: ../../mod/admin.php:475 +msgid "Use PHP UTF8 regular expressions" +msgstr "Použít PHP UTF8 regulární výrazy." + +#: ../../mod/admin.php:476 msgid "Show Community Page" msgstr "Zobrazit stránku komunity" -#: ../../mod/admin.php:327 +#: ../../mod/admin.php:476 +msgid "" +"Display a Community page showing all recent public postings on this site." +msgstr "Zobrazit Komunitní stránku zobrazující všechny veřejné příspěvky napsané na této stránce." + +#: ../../mod/admin.php:477 msgid "Enable OStatus support" msgstr "Zapnout podporu OStatus" -#: ../../mod/admin.php:328 -msgid "Only allow Friendika contacts" -msgstr "Povolit pouze Friendika kontakty " +#: ../../mod/admin.php:477 +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 "Poskytnout zabudouvanou kompatibilitu s OStatus (identi.ca, status.net, etc.). Veškerá komunikace s OStatus je veřejná, proto bude občas zobrazeno upozornění." -#: ../../mod/admin.php:329 +#: ../../mod/admin.php:478 +msgid "Enable Diaspora support" +msgstr "Povolit podporu Diaspora" + +#: ../../mod/admin.php:478 +msgid "Provide built-in Diaspora network compatibility." +msgstr "Poskytnout zabudovanou kompatibilitu sitě Diaspora." + +#: ../../mod/admin.php:479 +msgid "Only allow Friendica contacts" +msgstr "Povolit pouze Friendica kontakty" + +#: ../../mod/admin.php:479 +msgid "" +"All contacts must use Friendica protocols. All other built-in communication " +"protocols disabled." +msgstr "Všechny kontakty musí používat Friendica protokol. Všchny jiné zabudované komunikační protokoly budou zablokované." + +#: ../../mod/admin.php:480 msgid "Verify SSL" msgstr "Ověřit SSL" -#: ../../mod/admin.php:330 +#: ../../mod/admin.php:480 +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 "Pokud si přejete, můžete vynutit striktní ověřování certifikátů. To znamená že se nebudete moci připojit k žádnému serveru s vlastním SSL certifikátem." + +#: ../../mod/admin.php:481 msgid "Proxy user" msgstr "Proxy uživatel" -#: ../../mod/admin.php:331 +#: ../../mod/admin.php:482 msgid "Proxy URL" msgstr "Proxy URL adresa" -#: ../../mod/admin.php:332 +#: ../../mod/admin.php:483 msgid "Network timeout" msgstr "čas síťového spojení vypršelo (timeout)" -#: ../../mod/admin.php:353 -#, php-format -msgid "%s user blocked" -msgid_plural "%s users blocked/unblocked" -msgstr[0] "%s uživatel zablokován" -msgstr[1] "%s uživatelů zablokováno / odblokováno" -msgstr[2] "%s uživatelů zablokováno / odblokováno" +#: ../../mod/admin.php:483 +msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." +msgstr "Hodnota ve vteřinách. Nastavte 0 pro neomezeno (není doporučeno)." -#: ../../mod/admin.php:360 +#: ../../mod/admin.php:484 +msgid "Delivery interval" +msgstr "Interval doručování" + +#: ../../mod/admin.php:484 +msgid "" +"Delay background delivery processes by this many seconds to reduce system " +"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " +"for large dedicated servers." +msgstr "Prodleva mezi doručovacími procesy běžícími na pozadí snižuje zátěž systému. Doporučené nastavení: 4-5 pro sdílené instalace, 2-3 pro virtuální soukromé servery, 0-1 pro velké dedikované servery." + +#: ../../mod/admin.php:485 +msgid "Poll interval" +msgstr "Dotazovací interval" + +#: ../../mod/admin.php:485 +msgid "" +"Delay background polling processes by this many seconds to reduce system " +"load. If 0, use delivery interval." +msgstr "Tímto nastavením ovlivníte prodlení mezi aktualizačními procesy běžícími na pozadí, čímž můžete snížit systémovou zátěž. Pokud 0, použijte doručovací interval." + +#: ../../mod/admin.php:486 +msgid "Maximum Load Average" +msgstr "Maximální průměrné zatížení" + +#: ../../mod/admin.php:486 +msgid "" +"Maximum system load before delivery and poll processes are deferred - " +"default 50." +msgstr "Maximální zatížení systému před pozastavením procesů zajišťujících doručování aktualizací - defaultně 50" + +#: ../../mod/admin.php:503 +msgid "Update has been marked successful" +msgstr "Aktualizace byla označena jako úspěšná." + +#: ../../mod/admin.php:513 +#, php-format +msgid "Executing %s failed. Check system logs." +msgstr "Vykonávání %s selhalo. Zkontrolujte chybový protokol." + +#: ../../mod/admin.php:516 +#, php-format +msgid "Update %s was successfully applied." +msgstr "Aktualizace %s byla úspěšně aplikována." + +#: ../../mod/admin.php:520 +#, php-format +msgid "Update %s did not return a status. Unknown if it succeeded." +msgstr "Aktualizace %s nevrátila žádný status. Není zřejmé, jestli byla úspěšná." + +#: ../../mod/admin.php:523 +#, php-format +msgid "Update function %s could not be found." +msgstr "Aktualizační funkce %s nebyla nalezena." + +#: ../../mod/admin.php:538 +msgid "No failed updates." +msgstr "Žádné neúspěšné aktualizace." + +#: ../../mod/admin.php:542 +msgid "Failed Updates" +msgstr "Neúspěšné aktualizace" + +#: ../../mod/admin.php:543 +msgid "" +"This does not include updates prior to 1139, which did not return a status." +msgstr "To nezahrnuje aktualizace do verze 1139, které nevracejí žádný status." + +#: ../../mod/admin.php:544 +msgid "Mark success (if update was manually applied)" +msgstr "Označit za úspěšné (pokud byla aktualizace aplikována manuálně)" + +#: ../../mod/admin.php:545 +msgid "Attempt to execute this update step automatically" +msgstr "Pokusit se provést tuto aktualizaci automaticky." + +#: ../../mod/admin.php:570 +#, php-format +msgid "%s user blocked/unblocked" +msgid_plural "%s users blocked/unblocked" +msgstr[0] "%s uživatel blokován/odblokován" +msgstr[1] "%s uživatelů blokováno/odblokováno" +msgstr[2] "%s uživatelů blokováno/odblokováno" + +#: ../../mod/admin.php:577 #, php-format msgid "%s user deleted" msgid_plural "%s users deleted" @@ -2646,490 +3854,729 @@ msgstr[0] "%s uživatel smazán" msgstr[1] "%s uživatelů smazáno" msgstr[2] "%s uživatelů smazáno" -#: ../../mod/admin.php:394 +#: ../../mod/admin.php:616 #, php-format msgid "User '%s' deleted" msgstr "Uživatel '%s' smazán" -#: ../../mod/admin.php:401 +#: ../../mod/admin.php:624 #, php-format msgid "User '%s' unblocked" msgstr "Uživatel '%s' odblokován" -#: ../../mod/admin.php:401 +#: ../../mod/admin.php:624 #, php-format msgid "User '%s' blocked" msgstr "Uživatel '%s' blokován" -#: ../../mod/admin.php:462 +#: ../../mod/admin.php:690 msgid "select all" msgstr "Vybrat vše" -#: ../../mod/admin.php:463 +#: ../../mod/admin.php:691 msgid "User registrations waiting for confirm" msgstr "Registrace uživatele čeká na potvrzení" -#: ../../mod/admin.php:464 +#: ../../mod/admin.php:692 msgid "Request date" msgstr "Datum žádosti" -#: ../../mod/admin.php:464 ../../mod/admin.php:473 +#: ../../mod/admin.php:692 ../../mod/admin.php:702 +#: ../../include/contact_selectors.php:79 msgid "Email" msgstr "E-mail" -#: ../../mod/admin.php:465 +#: ../../mod/admin.php:693 msgid "No registrations." msgstr "Žádné registrace." -#: ../../mod/admin.php:467 +#: ../../mod/admin.php:695 msgid "Deny" msgstr "Odmítnout" -#: ../../mod/admin.php:469 -msgid "Block" -msgstr "Blokovat" +#: ../../mod/admin.php:699 +msgid "Site admin" +msgstr "Site administrátor" -#: ../../mod/admin.php:470 -msgid "Unblock" -msgstr "Odblokovat" - -#: ../../mod/admin.php:473 +#: ../../mod/admin.php:702 msgid "Register date" msgstr "Datum registrace" -#: ../../mod/admin.php:473 +#: ../../mod/admin.php:702 msgid "Last login" msgstr "Datum posledního přihlášení" -#: ../../mod/admin.php:473 +#: ../../mod/admin.php:702 msgid "Last item" msgstr "Poslední položka" -#: ../../mod/admin.php:473 +#: ../../mod/admin.php:702 msgid "Account" msgstr "Účet" -#: ../../mod/admin.php:475 +#: ../../mod/admin.php:704 msgid "" "Selected users will be deleted!\\n\\nEverything these users had posted on " "this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "" -"Vybraní uživatelé budou smazáni!\\n\\n Vše, co tito uživatelé na těchto " -"stránkách vytvořili, bude trvale odstraněno!\\n\\n Opravdu pokračovat?" +msgstr "Vybraní uživatelé budou smazáni!\\n\\n Vše, co tito uživatelé na těchto stránkách vytvořili, bude trvale odstraněno!\\n\\n Opravdu pokračovat?" -#: ../../mod/admin.php:476 +#: ../../mod/admin.php:705 msgid "" "The user {0} will be deleted!\\n\\nEverything this user has posted on this " "site will be permanently deleted!\\n\\nAre you sure?" -msgstr "" -"Uživatel {0} bude smazán!\\n\\n Vše, co tento uživatel na těchto stránkách " -"vytvořil, bude trvale odstraněno!\\n\\n Opravdu pokračovat?" +msgstr "Uživatel {0} bude smazán!\\n\\n Vše, co tento uživatel na těchto stránkách vytvořil, bude trvale odstraněno!\\n\\n Opravdu pokračovat?" -#: ../../mod/admin.php:512 +#: ../../mod/admin.php:746 #, php-format msgid "Plugin %s disabled." msgstr "Plugin %s zakázán." -#: ../../mod/admin.php:516 +#: ../../mod/admin.php:750 #, php-format msgid "Plugin %s enabled." msgstr "Plugin %s povolen." -#: ../../mod/admin.php:526 +#: ../../mod/admin.php:760 ../../mod/admin.php:958 msgid "Disable" msgstr "Zakázat" -#: ../../mod/admin.php:528 +#: ../../mod/admin.php:762 ../../mod/admin.php:960 msgid "Enable" msgstr "Povolit" -#: ../../mod/admin.php:550 +#: ../../mod/admin.php:784 ../../mod/admin.php:989 msgid "Toggle" msgstr "Přepnout" -#: ../../mod/admin.php:551 ../../include/nav.php:108 -msgid "Settings" -msgstr "Nastavení" +#: ../../mod/admin.php:792 ../../mod/admin.php:999 +msgid "Author: " +msgstr "Autor: " -#: ../../mod/admin.php:613 +#: ../../mod/admin.php:793 ../../mod/admin.php:1000 +msgid "Maintainer: " +msgstr "Správce: " + +#: ../../mod/admin.php:922 +msgid "No themes found." +msgstr "Nenalezeny žádná témata." + +#: ../../mod/admin.php:981 +msgid "Screenshot" +msgstr "Snímek obrazovky" + +#: ../../mod/admin.php:1029 +msgid "[Experimental]" +msgstr "[Experimentální]" + +#: ../../mod/admin.php:1030 +msgid "[Unsupported]" +msgstr "[Nepodporováno]" + +#: ../../mod/admin.php:1057 msgid "Log settings updated." msgstr "Nastavení protokolu aktualizováno." -#: ../../mod/admin.php:653 +#: ../../mod/admin.php:1113 msgid "Clear" msgstr "Vyčistit" -#: ../../mod/admin.php:659 +#: ../../mod/admin.php:1119 msgid "Debugging" msgstr "Ladění" -#: ../../mod/admin.php:660 +#: ../../mod/admin.php:1120 msgid "Log file" msgstr "Soubor s logem" -#: ../../mod/admin.php:660 -msgid "Must be writable by web server. Relative to your Friendika index.php." -msgstr "" -"Webový server musí mít práva zápisu . Relativní k index.php Friendika." +#: ../../mod/admin.php:1120 +msgid "" +"Must be writable by web server. Relative to your Friendica top-level " +"directory." +msgstr "Musí být editovatelné web serverem. Relativní cesta k vašemu kořenovému adresáři Friendica" -#: ../../mod/admin.php:661 +#: ../../mod/admin.php:1121 msgid "Log level" msgstr "Úroveň auditu" -#: ../../mod/admin.php:702 +#: ../../mod/admin.php:1171 msgid "Close" -msgstr "Uzavřená" +msgstr "Zavřít" -#: ../../mod/admin.php:708 +#: ../../mod/admin.php:1177 msgid "FTP Host" msgstr "Hostitel FTP" -#: ../../mod/admin.php:709 +#: ../../mod/admin.php:1178 msgid "FTP Path" msgstr "Cesta FTP" -#: ../../mod/admin.php:710 +#: ../../mod/admin.php:1179 msgid "FTP User" msgstr "FTP uživatel" -#: ../../mod/admin.php:711 +#: ../../mod/admin.php:1180 msgid "FTP Password" msgstr "FTP heslo" -#: ../../mod/profile.php:102 ../../mod/display.php:63 +#: ../../mod/profile.php:22 ../../boot.php:1074 +msgid "Requested profile is not available." +msgstr "Požadovaný profil není k dispozici." + +#: ../../mod/profile.php:152 ../../mod/display.php:77 msgid "Access to this profile has been restricted." msgstr "Přístup na tento profil byl omezen." -#: ../../mod/profile.php:133 +#: ../../mod/profile.php:177 msgid "Tips for New Members" msgstr "Tipy pro nové členy" -#: ../../mod/openid.php:62 ../../mod/openid.php:122 ../../include/auth.php:120 -#: ../../include/auth.php:145 ../../include/auth.php:198 +#: ../../mod/ping.php:235 +msgid "{0} wants to be your friend" +msgstr "{0} chce být Vaším přítelem" + +#: ../../mod/ping.php:240 +msgid "{0} sent you a message" +msgstr "{0} vám poslal zprávu" + +#: ../../mod/ping.php:245 +msgid "{0} requested registration" +msgstr "{0} požaduje registraci" + +#: ../../mod/ping.php:251 +#, php-format +msgid "{0} commented %s's post" +msgstr "{0} komentoval příspěvek uživatele %s" + +#: ../../mod/ping.php:256 +#, php-format +msgid "{0} liked %s's post" +msgstr "{0} má rád příspěvek uživatele %s" + +#: ../../mod/ping.php:261 +#, php-format +msgid "{0} disliked %s's post" +msgstr "{0} nemá rád příspěvek uživatele %s" + +#: ../../mod/ping.php:266 +#, php-format +msgid "{0} is now friends with %s" +msgstr "{0} se skamarádil s %s" + +#: ../../mod/ping.php:271 +msgid "{0} posted" +msgstr "{0} zasláno" + +#: ../../mod/ping.php:276 +#, php-format +msgid "{0} tagged %s's post with #%s" +msgstr "{0} označen %s' příspěvek s #%s" + +#: ../../mod/ping.php:282 +msgid "{0} mentioned you in a post" +msgstr "{0} vás zmínil v příspěvku" + +#: ../../mod/nogroup.php:58 +msgid "Contacts who are not members of a group" +msgstr "Kontakty, které nejsou členy skupiny" + +#: ../../mod/openid.php:24 +msgid "OpenID protocol error. No ID returned." +msgstr "Chyba OpenID protokolu. Navrátilo se žádné ID." + +#: ../../mod/openid.php:53 +msgid "" +"Account not found and OpenID registration is not permitted on this site." +msgstr "Nenalezen účet a OpenID registrace na tomto serveru není dovolena." + +#: ../../mod/openid.php:93 ../../include/auth.php:98 +#: ../../include/auth.php:161 msgid "Login failed." msgstr "Přihlášení se nezdařilo." -#: ../../mod/openid.php:78 ../../include/auth.php:214 -msgid "Welcome " -msgstr "Vítejte " +#: ../../mod/follow.php:27 +msgid "Contact added" +msgstr "Kontakt přidán" -#: ../../mod/openid.php:79 ../../include/auth.php:215 -msgid "Please upload a profile photo." -msgstr "Prosím nahrejte profilovou fotografii" +#: ../../mod/common.php:42 +msgid "Common Friends" +msgstr "Společní přátelé" -#: ../../mod/openid.php:82 ../../include/auth.php:218 -msgid "Welcome back " -msgstr "Vítejte zpět " +#: ../../mod/common.php:78 +msgid "No contacts in common." +msgstr "Žádné společné kontakty." -#: ../../mod/follow.php:39 -msgid "" -"This site is not configured to allow communications with other networks." -msgstr "" -"Tento web není nakonfigurován tak, aby umožňoval komunikaci s ostatními " -"sítěmi." +#: ../../mod/share.php:28 +msgid "link" +msgstr "odkaz" -#: ../../mod/follow.php:40 ../../mod/follow.php:50 -msgid "No compatible communication protocols or feeds were discovered." -msgstr "Nenalezen žádný kompatibilní komunikační protokol nebo kanál." - -#: ../../mod/follow.php:48 -msgid "The profile address specified does not provide adequate information." -msgstr "Uvedená adresa profilu neposkytuje dostatečné informace." - -#: ../../mod/follow.php:52 -msgid "An author or name was not found." -msgstr "Autor nebo jméno nenalezeno" - -#: ../../mod/follow.php:54 -msgid "No browser URL could be matched to this address." -msgstr "Této adrese neodpovídá žádné URL prohlížeče." - -#: ../../mod/follow.php:61 -msgid "" -"The profile address specified belongs to a network which has been disabled " -"on this site." -msgstr "" -"Zadaná adresa profilu patří do sítě, která byla na tomto serveru zakázána." - -#: ../../mod/follow.php:66 -msgid "" -"Limited profile. This person will be unable to receive direct/personal " -"notifications from you." -msgstr "" -"Omezený profil. Tato osoba nebude schopna od Vás přijímat přímé / osobní " -"sdělení." - -#: ../../mod/follow.php:122 -msgid "Unable to retrieve contact information." -msgstr "Nepodařilo se získat kontaktní informace." - -#: ../../mod/follow.php:168 -msgid "following" -msgstr "následující" - -#: ../../mod/display.php:105 +#: ../../mod/display.php:138 msgid "Item has been removed." msgstr "Položka byla odstraněna." -#: ../../mod/dfrn_notify.php:353 -msgid "New mail received at " -msgstr "Přišel nový e-mail v" - -#: ../../mod/apps.php:6 +#: ../../mod/apps.php:4 msgid "Applications" msgstr "Aplikace" -#: ../../mod/apps.php:11 +#: ../../mod/apps.php:7 msgid "No installed applications." msgstr "Žádné nainstalované aplikace." -#: ../../mod/search.php:26 ../../include/text.php:610 ../../include/nav.php:69 +#: ../../mod/search.php:85 ../../include/text.php:678 +#: ../../include/text.php:679 ../../include/nav.php:91 msgid "Search" msgstr "Vyhledávání" -#: ../../mod/profiles.php:21 ../../mod/profiles.php:236 -#: ../../mod/profiles.php:341 ../../mod/dfrn_confirm.php:62 +#: ../../mod/profiles.php:21 ../../mod/profiles.php:423 +#: ../../mod/profiles.php:537 ../../mod/dfrn_confirm.php:62 msgid "Profile not found." msgstr "Profil nenalezen" -#: ../../mod/profiles.php:28 +#: ../../mod/profiles.php:31 msgid "Profile Name is required." msgstr "Jméno profilu je povinné." -#: ../../mod/profiles.php:198 +#: ../../mod/profiles.php:160 +msgid "Marital Status" +msgstr "Rodinný Stav" + +#: ../../mod/profiles.php:164 +msgid "Romantic Partner" +msgstr "Romatický partner" + +#: ../../mod/profiles.php:168 +msgid "Likes" +msgstr "Libí se mi" + +#: ../../mod/profiles.php:172 +msgid "Dislikes" +msgstr "Nelibí se mi" + +#: ../../mod/profiles.php:176 +msgid "Work/Employment" +msgstr "Práce/Zaměstnání" + +#: ../../mod/profiles.php:179 +msgid "Religion" +msgstr "Náboženství" + +#: ../../mod/profiles.php:183 +msgid "Political Views" +msgstr "Politické přesvědčení" + +#: ../../mod/profiles.php:187 +msgid "Gender" +msgstr "Pohlaví" + +#: ../../mod/profiles.php:191 +msgid "Sexual Preference" +msgstr "Sexuální orientace" + +#: ../../mod/profiles.php:195 +msgid "Homepage" +msgstr "Domácí stránka" + +#: ../../mod/profiles.php:199 +msgid "Interests" +msgstr "Zájmy" + +#: ../../mod/profiles.php:203 +msgid "Address" +msgstr "Adresa" + +#: ../../mod/profiles.php:210 ../../addon/dav/common/wdcal_edit.inc.php:183 +msgid "Location" +msgstr "Lokace" + +#: ../../mod/profiles.php:293 msgid "Profile updated." msgstr "Profil aktualizován." -#: ../../mod/profiles.php:253 +#: ../../mod/profiles.php:360 +msgid " and " +msgstr " a " + +#: ../../mod/profiles.php:368 +msgid "public profile" +msgstr "veřejný profil" + +#: ../../mod/profiles.php:371 +#, php-format +msgid "%1$s changed %2$s to “%3$s”" +msgstr "%1$s změnil %2$s na “%3$s”" + +#: ../../mod/profiles.php:372 +#, php-format +msgid " - Visit %1$s's %2$s" +msgstr " - Navštivte %2$s uživatele %1$s" + +#: ../../mod/profiles.php:375 +#, php-format +msgid "%1$s has an updated %2$s, changing %3$s." +msgstr "%1$s aktualizoval %2$s, změnou %3$s." + +#: ../../mod/profiles.php:442 msgid "Profile deleted." msgstr "Profil smazán." -#: ../../mod/profiles.php:269 ../../mod/profiles.php:300 +#: ../../mod/profiles.php:460 ../../mod/profiles.php:494 msgid "Profile-" msgstr "Profil-" -#: ../../mod/profiles.php:288 ../../mod/profiles.php:327 +#: ../../mod/profiles.php:479 ../../mod/profiles.php:521 msgid "New profile created." msgstr "Nový profil vytvořen." -#: ../../mod/profiles.php:306 +#: ../../mod/profiles.php:500 msgid "Profile unavailable to clone." msgstr "Profil není možné naklonovat." -#: ../../mod/profiles.php:353 +#: ../../mod/profiles.php:562 msgid "Hide your contact/friend list from viewers of this profile?" -msgstr "" -"Skrýt u tohoto profilu vaše kontakty / seznam přátel před před dalšími " -"uživateli zobrazující si tento profil?" +msgstr "Skrýt u tohoto profilu Vaše kontakty / seznam přátel před před dalšími uživateli zobrazující si tento profil?" -#: ../../mod/profiles.php:371 +#: ../../mod/profiles.php:582 msgid "Edit Profile Details" msgstr "Upravit podrobnosti profilu " -#: ../../mod/profiles.php:373 +#: ../../mod/profiles.php:584 msgid "View this profile" msgstr "Zobrazit tento profil" -#: ../../mod/profiles.php:374 +#: ../../mod/profiles.php:585 msgid "Create a new profile using these settings" msgstr "Vytvořit nový profil pomocí tohoto nastavení" -#: ../../mod/profiles.php:375 +#: ../../mod/profiles.php:586 msgid "Clone this profile" msgstr "Klonovat tento profil" -#: ../../mod/profiles.php:376 +#: ../../mod/profiles.php:587 msgid "Delete this profile" msgstr "Smazat tento profil" -#: ../../mod/profiles.php:377 +#: ../../mod/profiles.php:588 msgid "Profile Name:" msgstr "Jméno profilu:" -#: ../../mod/profiles.php:378 +#: ../../mod/profiles.php:589 msgid "Your Full Name:" msgstr "Vaše celé jméno:" -#: ../../mod/profiles.php:379 +#: ../../mod/profiles.php:590 msgid "Title/Description:" msgstr "Název / Popis:" -#: ../../mod/profiles.php:380 +#: ../../mod/profiles.php:591 msgid "Your Gender:" msgstr "Vaše pohlaví:" -#: ../../mod/profiles.php:381 +#: ../../mod/profiles.php:592 #, php-format msgid "Birthday (%s):" msgstr "Narozeniny uživatele (%s):" -#: ../../mod/profiles.php:382 +#: ../../mod/profiles.php:593 msgid "Street Address:" msgstr "Ulice:" -#: ../../mod/profiles.php:383 +#: ../../mod/profiles.php:594 msgid "Locality/City:" msgstr "Město:" -#: ../../mod/profiles.php:384 +#: ../../mod/profiles.php:595 msgid "Postal/Zip Code:" msgstr "PSČ:" -#: ../../mod/profiles.php:385 +#: ../../mod/profiles.php:596 msgid "Country:" msgstr "Země:" -#: ../../mod/profiles.php:386 +#: ../../mod/profiles.php:597 msgid "Region/State:" msgstr "Region / stát:" -#: ../../mod/profiles.php:387 +#: ../../mod/profiles.php:598 msgid " Marital Status:" msgstr " Rodinný stav:" -#: ../../mod/profiles.php:388 +#: ../../mod/profiles.php:599 msgid "Who: (if applicable)" msgstr "Kdo: (pokud je možné)" -#: ../../mod/profiles.php:389 +#: ../../mod/profiles.php:600 msgid "Examples: cathy123, Cathy Williams, cathy@example.com" msgstr "Příklady: jan123, Jan Novák, jan@seznam.cz" -#: ../../mod/profiles.php:390 ../../include/profile_advanced.php:90 +#: ../../mod/profiles.php:601 +msgid "Since [date]:" +msgstr "Od [data]:" + +#: ../../mod/profiles.php:602 ../../include/profile_advanced.php:46 msgid "Sexual Preference:" msgstr "Sexuální preference:" -#: ../../mod/profiles.php:391 +#: ../../mod/profiles.php:603 msgid "Homepage URL:" msgstr "Odkaz na domovskou stránku:" -#: ../../mod/profiles.php:392 ../../include/profile_advanced.php:115 +#: ../../mod/profiles.php:604 ../../include/profile_advanced.php:50 +msgid "Hometown:" +msgstr "Rodné město" + +#: ../../mod/profiles.php:605 ../../include/profile_advanced.php:54 msgid "Political Views:" msgstr "Politické přesvědčení:" -#: ../../mod/profiles.php:393 +#: ../../mod/profiles.php:606 msgid "Religious Views:" msgstr "Náboženské přesvědčení:" -#: ../../mod/profiles.php:394 +#: ../../mod/profiles.php:607 msgid "Public Keywords:" msgstr "Veřejná klíčová slova:" -#: ../../mod/profiles.php:395 +#: ../../mod/profiles.php:608 msgid "Private Keywords:" msgstr "Soukromá klíčová slova:" -#: ../../mod/profiles.php:396 +#: ../../mod/profiles.php:609 ../../include/profile_advanced.php:62 +msgid "Likes:" +msgstr "Líbí se:" + +#: ../../mod/profiles.php:610 ../../include/profile_advanced.php:64 +msgid "Dislikes:" +msgstr "Nelibí se:" + +#: ../../mod/profiles.php:611 msgid "Example: fishing photography software" msgstr "Příklad: fishing photography software" -#: ../../mod/profiles.php:397 +#: ../../mod/profiles.php:612 msgid "(Used for suggesting potential friends, can be seen by others)" -msgstr "" -"(Používá se pro doporučování potenciálních přátel, může být viděno " -"ostatními)" +msgstr "(Používá se pro doporučování potenciálních přátel, může být viděno ostatními)" -#: ../../mod/profiles.php:398 +#: ../../mod/profiles.php:613 msgid "(Used for searching profiles, never shown to others)" msgstr "(Používá se pro vyhledávání profilů, není nikdy zobrazeno ostatním)" -#: ../../mod/profiles.php:399 +#: ../../mod/profiles.php:614 msgid "Tell us about yourself..." msgstr "Řekněte nám něco o sobě ..." -#: ../../mod/profiles.php:400 +#: ../../mod/profiles.php:615 msgid "Hobbies/Interests" msgstr "Koníčky/zájmy" -#: ../../mod/profiles.php:401 +#: ../../mod/profiles.php:616 msgid "Contact information and Social Networks" msgstr "Kontaktní informace a sociální sítě" -#: ../../mod/profiles.php:402 +#: ../../mod/profiles.php:617 msgid "Musical interests" msgstr "Hudební vkus" -#: ../../mod/profiles.php:403 +#: ../../mod/profiles.php:618 msgid "Books, literature" msgstr "Knihy, literatura" -#: ../../mod/profiles.php:404 +#: ../../mod/profiles.php:619 msgid "Television" msgstr "Televize" -#: ../../mod/profiles.php:405 +#: ../../mod/profiles.php:620 msgid "Film/dance/culture/entertainment" msgstr "Film/tanec/kultura/zábava" -#: ../../mod/profiles.php:406 +#: ../../mod/profiles.php:621 msgid "Love/romance" msgstr "Láska/romantika" -#: ../../mod/profiles.php:407 +#: ../../mod/profiles.php:622 msgid "Work/employment" msgstr "Práce/zaměstnání" -#: ../../mod/profiles.php:408 +#: ../../mod/profiles.php:623 msgid "School/education" msgstr "Škola/vzdělání" -#: ../../mod/profiles.php:413 +#: ../../mod/profiles.php:628 msgid "" "This is your public profile.
    It may " "be visible to anybody using the internet." -msgstr "" -"Toto je váš veřejný profil.
    Ten může " -"být viditelný kýmkoliv na internetu." +msgstr "Toto je váš veřejný profil.
    Ten může být viditelný kýmkoliv na internetu." -#: ../../mod/profiles.php:423 ../../mod/directory.php:112 +#: ../../mod/profiles.php:638 ../../mod/directory.php:111 msgid "Age: " msgstr "Věk: " -#: ../../mod/profiles.php:458 ../../include/nav.php:109 -msgid "Profiles" -msgstr "Profily" +#: ../../mod/profiles.php:677 +msgid "Edit/Manage Profiles" +msgstr "Upravit / Spravovat profily" -#: ../../mod/profiles.php:459 +#: ../../mod/profiles.php:678 ../../boot.php:1192 msgid "Change profile photo" msgstr "Změnit profilovou fotografii" -#: ../../mod/profiles.php:460 +#: ../../mod/profiles.php:679 ../../boot.php:1193 msgid "Create New Profile" msgstr "Vytvořit nový profil" -#: ../../mod/profiles.php:470 +#: ../../mod/profiles.php:690 ../../boot.php:1203 msgid "Profile Image" msgstr "Profilový obrázek" -#: ../../mod/profiles.php:472 +#: ../../mod/profiles.php:692 ../../boot.php:1206 msgid "visible to everybody" msgstr "viditelné pro všechny" -#: ../../mod/profiles.php:473 +#: ../../mod/profiles.php:693 ../../boot.php:1207 msgid "Edit visibility" msgstr "Upravit viditelnost" -#: ../../mod/directory.php:40 +#: ../../mod/filer.php:29 ../../include/conversation.php:1209 +#: ../../include/conversation.php:1226 +msgid "Save to Folder:" +msgstr "Uložit do složky:" + +#: ../../mod/filer.php:29 +msgid "- select -" +msgstr "- vyber -" + +#: ../../mod/tagger.php:95 ../../include/conversation.php:265 +#, php-format +msgid "%1$s tagged %2$s's %3$s with %4$s" +msgstr "%1$s označen uživatelem %2$s %3$s s %4$s" + +#: ../../mod/delegate.php:95 +msgid "No potential page delegates located." +msgstr "Žádní potenciální delegáti stránky nenalezeni." + +#: ../../mod/delegate.php:121 +msgid "Delegate Page Management" +msgstr "Správa delegátů stránky" + +#: ../../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 "Delegáti jsou schopni řídit všechny aspekty tohoto účtu / stránky, kromě základních nastavení účtu. Prosím, nepředávejte svůj osobní účet nikomu, komu úplně nevěříte.." + +#: ../../mod/delegate.php:124 +msgid "Existing Page Managers" +msgstr "Stávající správci stránky" + +#: ../../mod/delegate.php:126 +msgid "Existing Page Delegates" +msgstr "Stávající delegáti stránky " + +#: ../../mod/delegate.php:128 +msgid "Potential Delegates" +msgstr "Potenciální delegáti" + +#: ../../mod/delegate.php:131 +msgid "Add" +msgstr "Přidat" + +#: ../../mod/delegate.php:132 +msgid "No entries." +msgstr "Žádné záznamy." + +#: ../../mod/babel.php:17 +msgid "Source (bbcode) text:" +msgstr "Zdrojový text (bbcode):" + +#: ../../mod/babel.php:23 +msgid "Source (Diaspora) text to convert to BBcode:" +msgstr "Zdrojový (Diaspora) text k převedení do BB kódování:" + +#: ../../mod/babel.php:31 +msgid "Source input: " +msgstr "Zdrojový vstup: " + +#: ../../mod/babel.php:35 +msgid "bb2html: " +msgstr "bb2html: " + +#: ../../mod/babel.php:39 +msgid "bb2html2bb: " +msgstr "bb2html2bb: " + +#: ../../mod/babel.php:43 +msgid "bb2md: " +msgstr "bb2md: " + +#: ../../mod/babel.php:47 +msgid "bb2md2html: " +msgstr "bb2md2html: " + +#: ../../mod/babel.php:51 +msgid "bb2dia2bb: " +msgstr "bb2dia2bb: " + +#: ../../mod/babel.php:55 +msgid "bb2md2html2bb: " +msgstr "bb2md2html2bb: " + +#: ../../mod/babel.php:65 +msgid "Source input (Diaspora format): " +msgstr "Vstupní data (ve formátu Diaspora): " + +#: ../../mod/babel.php:70 +msgid "diaspora2bb: " +msgstr "diaspora2bb: " + +#: ../../mod/suggest.php:38 ../../view/theme/diabook/theme.php:626 +#: ../../include/contact_widgets.php:34 +msgid "Friend Suggestions" +msgstr "Návrhy přátel" + +#: ../../mod/suggest.php:44 +msgid "" +"No suggestions available. If this is a new site, please try again in 24 " +"hours." +msgstr "Nejsou dostupné žádné návrhy. Pokud je toto nový server, zkuste to znovu za 24 hodin." + +#: ../../mod/suggest.php:61 +msgid "Ignore/Hide" +msgstr "Ignorovat / skrýt" + +#: ../../mod/directory.php:49 ../../view/theme/diabook/theme.php:624 msgid "Global Directory" msgstr "Globální adresář" -#: ../../mod/directory.php:46 -msgid "Normal site view" -msgstr "Normální zobrazení stránky" +#: ../../mod/directory.php:57 +msgid "Find on this site" +msgstr "Nalézt na tomto webu" -#: ../../mod/directory.php:48 -msgid "View all site entries" -msgstr "Zobrazit všechny položky stránky" - -#: ../../mod/directory.php:56 +#: ../../mod/directory.php:60 msgid "Site Directory" msgstr "Adresář serveru" -#: ../../mod/directory.php:115 +#: ../../mod/directory.php:114 msgid "Gender: " msgstr "Pohlaví: " -#: ../../mod/directory.php:141 +#: ../../mod/directory.php:136 ../../include/profile_advanced.php:17 +#: ../../boot.php:1228 +msgid "Gender:" +msgstr "Pohlaví:" + +#: ../../mod/directory.php:138 ../../include/profile_advanced.php:37 +#: ../../boot.php:1231 +msgid "Status:" +msgstr "Status:" + +#: ../../mod/directory.php:140 ../../include/profile_advanced.php:48 +#: ../../boot.php:1233 +msgid "Homepage:" +msgstr "Domácí stránka:" + +#: ../../mod/directory.php:142 ../../include/profile_advanced.php:58 +msgid "About:" +msgstr "O mě:" + +#: ../../mod/directory.php:180 msgid "No entries (some entries may be hidden)." msgstr "Žádné záznamy (některé položky mohou být skryty)." @@ -3139,9 +4586,8 @@ msgid "%s : Not a valid email address." msgstr "%s : není platná e-mailová adresa." #: ../../mod/invite.php:59 -#, php-format -msgid "Please join my network on %s" -msgstr "Prosím, připojte se do mé sítě na %s" +msgid "Please join us on Friendica" +msgstr "Prosím přidejte se k nám na Friendice" #: ../../mod/invite.php:69 #, php-format @@ -3160,201 +4606,1339 @@ msgstr[2] "%d zprávy odeslány." msgid "You have no more invitations available" msgstr "Nemáte k dispozici žádné další pozvánky" -#: ../../mod/invite.php:99 -msgid "Send invitations" -msgstr "Poslat pozvánky" - #: ../../mod/invite.php:100 -msgid "Enter email addresses, one per line:" -msgstr "Zadejte e-mailové adresy, jednu na řádek:" +#, 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 "Navštivte %s pro seznam veřejných serverů, na kterých se můžete přidat. Členové Friendica se mohou navzájem propojovat, stejně tak jako se mohou přiopojit se členy mnoha dalších sociálních sítí." #: ../../mod/invite.php:102 #, php-format -msgid "Please join my social network on %s" -msgstr "Prosím, připojte se do mé sociální sítě na %s" +msgid "" +"To accept this invitation, please visit and register at %s or any other " +"public Friendica website." +msgstr "K akceptaci této pozvánky prosím navštivte a registrujte se na %s nebo na kterékoliv jiném veřejném Friendica serveru." #: ../../mod/invite.php:103 -msgid "To accept this invitation, please visit:" -msgstr "Chcete-li toto pozvání přijmout, navštivte prosím:" +#, php-format +msgid "" +"Friendica sites all inter-connect to create a huge privacy-enhanced social " +"web that is owned and controlled by its members. They can also connect with " +"many traditional social networks. See %s for a list of alternate Friendica " +"sites you can join." +msgstr "Friendica servery jsou všechny propojené a vytváří tak rozsáhlou sociální síť s důrazem na soukromý a je pod kontrolou svých členů. Členové se mohou propojovat s mnoha dalšími tradičními sociálními sítěmi. Navštivte %s pro seznam alternativních Friendica serverů kde se můžete přidat." -#: ../../mod/invite.php:104 +#: ../../mod/invite.php:106 +msgid "" +"Our apologies. This system is not currently configured to connect with other" +" public sites or invite members." +msgstr "Omlouváme se. Systém nyní není nastaven tak, aby se připojil k ostatním veřejným serverům nebo umožnil pozvat nové členy." + +#: ../../mod/invite.php:111 +msgid "Send invitations" +msgstr "Poslat pozvánky" + +#: ../../mod/invite.php:112 +msgid "Enter email addresses, one per line:" +msgstr "Zadejte e-mailové adresy, jednu na řádek:" + +#: ../../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 "Jste srdečně pozván se připojit ke mně a k mým blízkým přátelům na Friendica - a pomoci nám vytvořit lepší sociální síť." + +#: ../../mod/invite.php:116 msgid "You will need to supply this invitation code: $invite_code" msgstr "Budete muset zadat kód této pozvánky: $invite_code" -#: ../../mod/invite.php:104 +#: ../../mod/invite.php:116 msgid "" "Once you have registered, please connect with me via my profile page at:" -msgstr "" -"Jakmile se zaregistrujete, prosím spojte se se mnou přes mou profilovu " -"stránku na:" +msgstr "Jakmile se zaregistrujete, prosím spojte se se mnou přes mou profilovu stránku na:" -#: ../../mod/dfrn_confirm.php:233 +#: ../../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 "Pro více informací o Friendica projektu a o tom, proč je tak důležitý, prosím navštivte 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 "To se může občas stát pokud kontakt byl zažádán oběma osobami a již byl schválen." + +#: ../../mod/dfrn_confirm.php:237 msgid "Response from remote site was not understood." msgstr "Odpověď ze vzdáleného serveru nebyla srozumitelná." -#: ../../mod/dfrn_confirm.php:242 +#: ../../mod/dfrn_confirm.php:246 msgid "Unexpected response from remote site: " msgstr "Neočekávaná odpověď od vzdáleného serveru:" -#: ../../mod/dfrn_confirm.php:250 +#: ../../mod/dfrn_confirm.php:254 msgid "Confirmation completed successfully." msgstr "Potvrzení úspěšně dokončena." -#: ../../mod/dfrn_confirm.php:252 ../../mod/dfrn_confirm.php:266 -#: ../../mod/dfrn_confirm.php:273 +#: ../../mod/dfrn_confirm.php:256 ../../mod/dfrn_confirm.php:270 +#: ../../mod/dfrn_confirm.php:277 msgid "Remote site reported: " msgstr "Vzdálený server oznámil:" -#: ../../mod/dfrn_confirm.php:264 +#: ../../mod/dfrn_confirm.php:268 msgid "Temporary failure. Please wait and try again." msgstr "Dočasné selhání. Prosím, vyčkejte a zkuste to znovu." -#: ../../mod/dfrn_confirm.php:271 +#: ../../mod/dfrn_confirm.php:275 msgid "Introduction failed or was revoked." msgstr "Žádost o propojení selhala nebo byla zrušena." -#: ../../mod/dfrn_confirm.php:393 +#: ../../mod/dfrn_confirm.php:420 msgid "Unable to set contact photo." msgstr "Nelze nastavit fotografii kontaktu." -#: ../../mod/dfrn_confirm.php:436 ../../include/conversation.php:79 +#: ../../mod/dfrn_confirm.php:477 ../../include/diaspora.php:608 +#: ../../include/conversation.php:171 #, php-format msgid "%1$s is now friends with %2$s" msgstr "%1$s je nyní přítel s %2$s" -#: ../../mod/dfrn_confirm.php:507 +#: ../../mod/dfrn_confirm.php:562 #, php-format msgid "No user record found for '%s' " msgstr "Pro '%s' nenalezen žádný uživatelský záznam " -#: ../../mod/dfrn_confirm.php:517 +#: ../../mod/dfrn_confirm.php:572 msgid "Our site encryption key is apparently messed up." msgstr "Náš šifrovací klíč zřejmě přestal správně fungovat." -#: ../../mod/dfrn_confirm.php:528 +#: ../../mod/dfrn_confirm.php:583 msgid "Empty site URL was provided or URL could not be decrypted by us." -msgstr "" -"Byla poskytnuta prázdná URL adresa nebo se nepodařilo URL adresu dešifrovat." +msgstr "Byla poskytnuta prázdná URL adresa nebo se nepodařilo URL adresu dešifrovat." -#: ../../mod/dfrn_confirm.php:549 +#: ../../mod/dfrn_confirm.php:604 msgid "Contact record was not found for you on our site." msgstr "Kontakt záznam nebyl nalezen pro vás na našich stránkách." -#: ../../mod/dfrn_confirm.php:578 +#: ../../mod/dfrn_confirm.php:618 +#, php-format +msgid "Site public key not available in contact record for URL %s." +msgstr "V adresáři není k dispozici veřejný klíč pro URL %s." + +#: ../../mod/dfrn_confirm.php:638 msgid "" "The ID provided by your system is a duplicate on our system. It should work " "if you try again." -msgstr "" -"Váš systém poskytl duplicitní ID vůči našemu systému. Pokuste se akci " -"zopakovat." +msgstr "Váš systém poskytl duplicitní ID vůči našemu systému. Pokuste se akci zopakovat." -#: ../../mod/dfrn_confirm.php:589 +#: ../../mod/dfrn_confirm.php:649 msgid "Unable to set your contact credentials on our system." msgstr "Nelze nastavit Vaše přihlašovací údaje v našem systému." -#: ../../mod/dfrn_confirm.php:642 +#: ../../mod/dfrn_confirm.php:716 msgid "Unable to update your contact profile details on our system" msgstr "Nelze aktualizovat Váš profil v našem systému" -#: ../../mod/dfrn_confirm.php:672 +#: ../../mod/dfrn_confirm.php:750 #, php-format msgid "Connection accepted at %s" msgstr "Připojení přijato na %s" -#: ../../addon/facebook/facebook.php:314 +#: ../../mod/dfrn_confirm.php:799 +#, php-format +msgid "%1$s has joined %2$s" +msgstr "%1$s se připojil k %2$s" + +#: ../../addon/fromgplus/fromgplus.php:29 +msgid "Google+ Import Settings" +msgstr "Nastavení importu z Google+ " + +#: ../../addon/fromgplus/fromgplus.php:32 +msgid "Enable Google+ Import" +msgstr "Povolit Import z Google+" + +#: ../../addon/fromgplus/fromgplus.php:35 +msgid "Google Account ID" +msgstr "název účtu Google " + +#: ../../addon/fromgplus/fromgplus.php:55 +msgid "Google+ Import Settings saved." +msgstr "Nastavení importu z Google+ uloženo." + +#: ../../addon/facebook/facebook.php:523 msgid "Facebook disabled" msgstr "Facebook zakázán" -#: ../../addon/facebook/facebook.php:319 +#: ../../addon/facebook/facebook.php:528 msgid "Updating contacts" msgstr "Aktualizace kontaktů" -#: ../../addon/facebook/facebook.php:328 +#: ../../addon/facebook/facebook.php:551 ../../addon/fbpost/fbpost.php:192 msgid "Facebook API key is missing." msgstr "Chybí Facebook API klíč." -#: ../../addon/facebook/facebook.php:335 +#: ../../addon/facebook/facebook.php:558 msgid "Facebook Connect" msgstr "Facebook připojen" -#: ../../addon/facebook/facebook.php:341 +#: ../../addon/facebook/facebook.php:564 msgid "Install Facebook connector for this account." msgstr "Nainstalovat pro tento účet Facebook konektor." -#: ../../addon/facebook/facebook.php:348 +#: ../../addon/facebook/facebook.php:571 msgid "Remove Facebook connector" msgstr "Odstranit konektor na Facebook" -#: ../../addon/facebook/facebook.php:354 +#: ../../addon/facebook/facebook.php:576 ../../addon/fbpost/fbpost.php:217 +msgid "" +"Re-authenticate [This is necessary whenever your Facebook password is " +"changed.]" +msgstr "Opětovná autentikace [Toto je nezbytné kdykoliv se změní Vaše heslo na Facebooku.]" + +#: ../../addon/facebook/facebook.php:583 ../../addon/fbpost/fbpost.php:224 msgid "Post to Facebook by default" msgstr "Standardně posílat příspěvky na Facebook" -#: ../../addon/facebook/facebook.php:358 -msgid "Link all your Facebook friends and conversations" -msgstr "Připojit všechny své přátele na Facebooku a konverzace" - -#: ../../addon/facebook/facebook.php:363 -msgid "Warning: Your Facebook privacy settings can not be imported." -msgstr "" -"Upozornění: nastavení ochrany osobních údajů na Facebooku nelze importovat." - -#: ../../addon/facebook/facebook.php:364 +#: ../../addon/facebook/facebook.php:589 msgid "" -"Linked Facebook items may be publicly visible, depending on" -" your privacy settings for this website/account." -msgstr "" -"Propojené položky z Facebook mohou být veřejně viditelné, v" -" závislosti na nastavení ochrany osobních údajů pro tuto webovou " -"stránku/účet." +"Facebook friend linking has been disabled on this site. The following " +"settings will have no effect." +msgstr "Propojování facebookových přátel bylo na tomto webu zablokováno. Následující odkazy nebudou mít žádný efekt." -#: ../../addon/facebook/facebook.php:419 -msgid "Facebook" -msgstr "Facebook" +#: ../../addon/facebook/facebook.php:593 +msgid "" +"Facebook friend linking has been disabled on this site. If you disable it, " +"you will be unable to re-enable it." +msgstr "Propojování facebookových přátel bylo na tomto webu zablokováno. Když to zakážete nebudete schopni toto znovu povolit." -#: ../../addon/facebook/facebook.php:420 +#: ../../addon/facebook/facebook.php:596 +msgid "Link all your Facebook friends and conversations on this website" +msgstr "Připojit na tomto webu všechny Vaše přátelé a konverzace z Facebooku" + +#: ../../addon/facebook/facebook.php:598 +msgid "" +"Facebook conversations consist of your profile wall and your friend" +" stream." +msgstr "Facebookové konverzace se skládají z Vaší profilové zdi a příspěvků Vašich přátel (stream)." + +#: ../../addon/facebook/facebook.php:599 +msgid "On this website, your Facebook friend stream is only visible to you." +msgstr "Na tomto webu můžete vidět pouze příspěvky Vašich přátel Facebook (Stream)." + +#: ../../addon/facebook/facebook.php:600 +msgid "" +"The following settings determine the privacy of your Facebook profile wall " +"on this website." +msgstr "Následující nastavení určuje Vaše soukromí na Facebookovém profilu na tomto webu." + +#: ../../addon/facebook/facebook.php:604 +msgid "" +"On this website your Facebook profile wall conversations will only be " +"visible to you" +msgstr "Na tomto webu bude konverzace z Facebookové profilové zdi viditelná pouze pro Vás." + +#: ../../addon/facebook/facebook.php:609 +msgid "Do not import your Facebook profile wall conversations" +msgstr "Neimportovat konverzace z Facebookové zdi" + +#: ../../addon/facebook/facebook.php:611 +msgid "" +"If you choose to link conversations and leave both of these boxes unchecked," +" your Facebook profile wall will be merged with your profile wall on this " +"website and your privacy settings on this website will be used to determine " +"who may see the conversations." +msgstr "Pokud budete chtít propojit konverzace a ponecháte obě z těchto dvou polí nezaškrtnuté, bude Vaše profilová zeď na Facebooku sloučená s profilovou zdí na tomto webu a nastavení soukromí na tomto webu bude určovat kdo bude mít možnost vidět konverzace." + +#: ../../addon/facebook/facebook.php:616 +msgid "Comma separated applications to ignore" +msgstr "čárkou oddělené aplikace k ignorování" + +#: ../../addon/facebook/facebook.php:700 +msgid "Problems with Facebook Real-Time Updates" +msgstr "Problémy s Facebook Real-Time aktualizacemi" + +#: ../../addon/facebook/facebook.php:729 msgid "Facebook Connector Settings" msgstr "Nastavení Facebook konektoru " -#: ../../addon/facebook/facebook.php:434 +#: ../../addon/facebook/facebook.php:744 ../../addon/fbpost/fbpost.php:255 +msgid "Facebook API Key" +msgstr "Facebook API Key" + +#: ../../addon/facebook/facebook.php:754 ../../addon/fbpost/fbpost.php:262 +msgid "" +"Error: it appears that you have specified the App-ID and -Secret in your " +".htconfig.php file. As long as they are specified there, they cannot be set " +"using this form.

    " +msgstr "Chyba: zdá se, že jste specifikoval App-ID a -Secret ve Vašem .htconfig.php souboru. Dokud jsou na tomto místě specifikované, nemohou být nastaveny s pomocí tohoto formuláře.

    " + +#: ../../addon/facebook/facebook.php:759 +msgid "" +"Error: the given API Key seems to be incorrect (the application access token" +" could not be retrieved)." +msgstr "Chyba: zadané API Key se zdá být chybné (není možné získat aplikační přístupový token)." + +#: ../../addon/facebook/facebook.php:761 +msgid "The given API Key seems to work correctly." +msgstr "Zadané API Key se zdá funguje v pořádku." + +#: ../../addon/facebook/facebook.php:763 +msgid "" +"The correctness of the API Key could not be detected. Something strange's " +"going on." +msgstr "Správnost klíče API nemohla být detekovaná. Děje se něco podivného." + +#: ../../addon/facebook/facebook.php:766 ../../addon/fbpost/fbpost.php:264 +msgid "App-ID / API-Key" +msgstr "App-ID / API-Key" + +#: ../../addon/facebook/facebook.php:767 ../../addon/fbpost/fbpost.php:265 +msgid "Application secret" +msgstr "Application secret" + +#: ../../addon/facebook/facebook.php:768 +#, php-format +msgid "Polling Interval in minutes (minimum %1$s minutes)" +msgstr "Dotazovací interval v minutách (minimum %1$s minut)" + +#: ../../addon/facebook/facebook.php:769 +msgid "" +"Synchronize comments (no comments on Facebook are missed, at the cost of " +"increased system load)" +msgstr "Syncronizovat komentáře (nedojde k vynechání žádného komentáže na Facebooku za cenu vyšší zátěže systému)" + +#: ../../addon/facebook/facebook.php:773 +msgid "Real-Time Updates" +msgstr "Real-Time Aktualizace" + +#: ../../addon/facebook/facebook.php:777 +msgid "Real-Time Updates are activated." +msgstr "Real-Time aktualizace aktivovány." + +#: ../../addon/facebook/facebook.php:778 +msgid "Deactivate Real-Time Updates" +msgstr "Deaktivovat Real-Time aktualizace" + +#: ../../addon/facebook/facebook.php:780 +msgid "Real-Time Updates not activated." +msgstr "Real-Time aktualizace nejsou aktivovány." + +#: ../../addon/facebook/facebook.php:780 +msgid "Activate Real-Time Updates" +msgstr "Aktivovat Real-Time aktualizace" + +#: ../../addon/facebook/facebook.php:799 ../../addon/fbpost/fbpost.php:282 +#: ../../addon/dav/friendica/layout.fnk.php:361 +msgid "The new values have been saved." +msgstr "Nové hodnoty byly uloženy" + +#: ../../addon/facebook/facebook.php:823 ../../addon/fbpost/fbpost.php:301 msgid "Post to Facebook" msgstr "Přidat příspěvek na Facebook" -#: ../../addon/facebook/facebook.php:507 +#: ../../addon/facebook/facebook.php:921 ../../addon/fbpost/fbpost.php:399 msgid "" "Post to Facebook cancelled because of multi-network access permission " "conflict." -msgstr "" -"Příspěvek na Facebook zrušen kvůli konfliktu přístupových práv mezi sítěmi." +msgstr "Příspěvek na Facebook zrušen kvůli konfliktu přístupových práv mezi sítěmi." -#: ../../addon/facebook/facebook.php:580 -msgid "Image: " -msgstr "Obrázek: " +#: ../../addon/facebook/facebook.php:1149 ../../addon/fbpost/fbpost.php:610 +msgid "View on Friendica" +msgstr "Zobrazení na Friendica" -#: ../../addon/facebook/facebook.php:656 -msgid "View on Friendika" -msgstr "Pohled na Friendiku" - -#: ../../addon/facebook/facebook.php:687 +#: ../../addon/facebook/facebook.php:1182 ../../addon/fbpost/fbpost.php:643 msgid "Facebook post failed. Queued for retry." -msgstr "" -"Zaslání příspěvku na Facebook selhalo. Příspěvek byl zařazen do fronty pro " -"opakované odeslání." +msgstr "Zaslání příspěvku na Facebook selhalo. Příspěvek byl zařazen do fronty pro opakované odeslání." -#: ../../addon/widgets/widgets.php:53 +#: ../../addon/facebook/facebook.php:1222 ../../addon/fbpost/fbpost.php:683 +msgid "Your Facebook connection became invalid. Please Re-authenticate." +msgstr "Vaše připojení na Facebook přestalo být platné. Prosím znovu se přihlaste." + +#: ../../addon/facebook/facebook.php:1223 ../../addon/fbpost/fbpost.php:684 +msgid "Facebook connection became invalid" +msgstr "Připojení na Facebook bylo zneplatněno." + +#: ../../addon/facebook/facebook.php:1224 ../../addon/fbpost/fbpost.php:685 +#, php-format +msgid "" +"Hi %1$s,\n" +"\n" +"The connection between your accounts on %2$s and Facebook became invalid. This usually happens after you change your Facebook-password. To enable the connection again, you have to %3$sre-authenticate the Facebook-connector%4$s." +msgstr "Ahoj %1$s,\n\nSpojení mezi tvým účtem na %2$s a Facebookem přestalo fungovat. To se obvykle stává poté, co si změníš heslo kFacebooku. Pro opětovnému zprovoznění spojení musíte %3$s nastavit správné přihlašovací údaje na Facebook konektoru%4$s." + +#: ../../addon/snautofollow/snautofollow.php:32 +msgid "StatusNet AutoFollow settings updated." +msgstr "Nastavení automatického následování na StatusNet aktualizováno." + +#: ../../addon/snautofollow/snautofollow.php:56 +msgid "StatusNet AutoFollow Settings" +msgstr "Nastavení StatusNet automatického následování (AutoFollow)" + +#: ../../addon/snautofollow/snautofollow.php:58 +msgid "Automatically follow any StatusNet followers/mentioners" +msgstr "Automaticky následovat jakékoliv StatusNet následníky/přispivatele" + +#: ../../addon/bg/bg.php:51 +msgid "Bg settings updated." +msgstr "Nastavení Bg aktualizováno." + +#: ../../addon/bg/bg.php:82 +msgid "Bg Settings" +msgstr "Nastavení Bg" + +#: ../../addon/bg/bg.php:84 ../../addon/numfriends/numfriends.php:79 +msgid "How many contacts to display on profile sidebar" +msgstr "Kolik kontaktů zobrazit na profilovém bočním menu" + +#: ../../addon/privacy_image_cache/privacy_image_cache.php:260 +msgid "Lifetime of the cache (in hours)" +msgstr "Životnost vyrovnávací paměti (v hodinách)" + +#: ../../addon/privacy_image_cache/privacy_image_cache.php:265 +msgid "Cache Statistics" +msgstr "Statistika vyrovnávací paměti" + +#: ../../addon/privacy_image_cache/privacy_image_cache.php:268 +msgid "Number of items" +msgstr "Počet položek" + +#: ../../addon/privacy_image_cache/privacy_image_cache.php:270 +msgid "Size of the cache" +msgstr "Velikost vyrovnávací paměti" + +#: ../../addon/privacy_image_cache/privacy_image_cache.php:272 +msgid "Delete the whole cache" +msgstr "Vymazat celou vyrovnávací paměť" + +#: ../../addon/fbpost/fbpost.php:172 +msgid "Facebook Post disabled" +msgstr "Příspěvky na Facebook zakázán." + +#: ../../addon/fbpost/fbpost.php:199 +msgid "Facebook Post" +msgstr "Facebook příspěvek" + +#: ../../addon/fbpost/fbpost.php:205 +msgid "Install Facebook Post connector for this account." +msgstr "Instalovat pro tento účet konektor pro příspěvky na Facebook." + +#: ../../addon/fbpost/fbpost.php:212 +msgid "Remove Facebook Post connector" +msgstr "Odstranit konektor pro příspěvky na Facebook" + +#: ../../addon/fbpost/fbpost.php:240 +msgid "Facebook Post Settings" +msgstr "Nastavení konektoru pro příspěvky na Facebook" + +#: ../../addon/widgets/widget_like.php:58 +#, php-format +msgid "%d person likes this" +msgid_plural "%d people like this" +msgstr[0] "%d člověku se toto líbí" +msgstr[1] "%d lidem se toto líbí" +msgstr[2] "%d lidem se toto líbí" + +#: ../../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 člověku se toto nelíbí" +msgstr[1] "%d lidem se toto nelíbí" +msgstr[2] "%d lidem se toto nelíbí" + +#: ../../addon/widgets/widget_friendheader.php:40 +msgid "Get added to this list!" +msgstr "Nechte se přidat do tohoto listu!" + +#: ../../addon/widgets/widgets.php:56 msgid "Generate new key" msgstr "Generovat nové klíče" -#: ../../addon/widgets/widgets.php:56 +#: ../../addon/widgets/widgets.php:59 msgid "Widgets key" msgstr "Widgety klíč" -#: ../../addon/widgets/widgets.php:58 +#: ../../addon/widgets/widgets.php:61 msgid "Widgets available" msgstr "Widgety k dispozici" -#: ../../addon/widgets/widget_friends.php:30 -msgid "Connect on Friendika!" -msgstr "Spojit se na Friendice!" +#: ../../addon/widgets/widget_friends.php:40 +msgid "Connect on Friendica!" +msgstr "Připojit na Friendica!" + +#: ../../addon/morepokes/morepokes.php:19 +msgid "bitchslap" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:19 +msgid "bitchslapped" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:20 +msgid "shag" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:20 +msgid "shagged" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:21 +msgid "do something obscenely biological to" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:21 +msgid "did something obscenely biological to" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:22 +msgid "point out the poke feature to" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:22 +msgid "pointed out the poke feature to" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:23 +msgid "declare undying love for" +msgstr "vyjadřit nehynoucí lásku ke" + +#: ../../addon/morepokes/morepokes.php:23 +msgid "declared undying love for" +msgstr "vyjadřil nehynoucí lásku ke" + +#: ../../addon/morepokes/morepokes.php:24 +msgid "patent" +msgstr "patentovat" + +#: ../../addon/morepokes/morepokes.php:24 +msgid "patented" +msgstr "patentován" + +#: ../../addon/morepokes/morepokes.php:25 +msgid "stroke beard" +msgstr "pohladit plnovous" + +#: ../../addon/morepokes/morepokes.php:25 +msgid "stroked their beard at" +msgstr "pohladit něčí plnovous" + +#: ../../addon/morepokes/morepokes.php:26 +msgid "" +"bemoan the declining standards of modern secondary and tertiary education to" +msgstr "stěžující si na klesající úroveň moderního sekundárního a terciárního vzdělávání u" + +#: ../../addon/morepokes/morepokes.php:26 +msgid "" +"bemoans the declining standards of modern secondary and tertiary education " +"to" +msgstr "stěžovat si na klesající úroveň moderního sekundárního a terciárního vzdělávání u" + +#: ../../addon/morepokes/morepokes.php:27 +msgid "hug" +msgstr "obejmout" + +#: ../../addon/morepokes/morepokes.php:27 +msgid "hugged" +msgstr "obejmut " + +#: ../../addon/morepokes/morepokes.php:28 +msgid "kiss" +msgstr "políbit" + +#: ../../addon/morepokes/morepokes.php:28 +msgid "kissed" +msgstr "políben" + +#: ../../addon/morepokes/morepokes.php:29 +msgid "raise eyebrows at" +msgstr "zvednout obočí na" + +#: ../../addon/morepokes/morepokes.php:29 +msgid "raised their eyebrows at" +msgstr "zvednul obočí na" + +#: ../../addon/morepokes/morepokes.php:30 +msgid "insult" +msgstr "urazit" + +#: ../../addon/morepokes/morepokes.php:30 +msgid "insulted" +msgstr "uražen" + +#: ../../addon/morepokes/morepokes.php:31 +msgid "praise" +msgstr "pochválit" + +#: ../../addon/morepokes/morepokes.php:31 +msgid "praised" +msgstr "pochválen" + +#: ../../addon/morepokes/morepokes.php:32 +msgid "be dubious of" +msgstr "mít pochyby o" + +#: ../../addon/morepokes/morepokes.php:32 +msgid "was dubious of" +msgstr "má pochybnosti z" + +#: ../../addon/morepokes/morepokes.php:33 +msgid "eat" +msgstr "sníst" + +#: ../../addon/morepokes/morepokes.php:33 +msgid "ate" +msgstr "snězen" + +#: ../../addon/morepokes/morepokes.php:34 +msgid "giggle and fawn at" +msgstr "hihňat se" + +#: ../../addon/morepokes/morepokes.php:34 +msgid "giggled and fawned at" +msgstr "hihňá se" + +#: ../../addon/morepokes/morepokes.php:35 +msgid "doubt" +msgstr "pochybovat" + +#: ../../addon/morepokes/morepokes.php:35 +msgid "doubted" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:36 +msgid "glare" +msgstr "zabodáván pohledem" + +#: ../../addon/morepokes/morepokes.php:36 +msgid "glared at" +msgstr "zabodávat pohledem " + +#: ../../addon/yourls/yourls.php:55 +msgid "YourLS Settings" +msgstr "YourLS nastavení" + +#: ../../addon/yourls/yourls.php:57 +msgid "URL: http://" +msgstr "URL: http://" + +#: ../../addon/yourls/yourls.php:62 +msgid "Username:" +msgstr "Uživatelské jméno:" + +#: ../../addon/yourls/yourls.php:67 +msgid "Password:" +msgstr "heslo:" + +#: ../../addon/yourls/yourls.php:72 +msgid "Use SSL " +msgstr "Použít SSL" + +#: ../../addon/yourls/yourls.php:92 +msgid "yourls Settings saved." +msgstr "yourls nastavení uloženo." + +#: ../../addon/ljpost/ljpost.php:39 +msgid "Post to LiveJournal" +msgstr "Poslat na LiveJournal" + +#: ../../addon/ljpost/ljpost.php:70 +msgid "LiveJournal Post Settings" +msgstr "Nastavení LiveJournal Post" + +#: ../../addon/ljpost/ljpost.php:72 +msgid "Enable LiveJournal Post Plugin" +msgstr "Povolit LiveJournal Post plugin" + +#: ../../addon/ljpost/ljpost.php:77 +msgid "LiveJournal username" +msgstr "LiveJournal uživatelské jméno" + +#: ../../addon/ljpost/ljpost.php:82 +msgid "LiveJournal password" +msgstr "LiveJournal heslo" + +#: ../../addon/ljpost/ljpost.php:87 +msgid "Post to LiveJournal by default" +msgstr "Defaultně umístit na LiveJournal" + +#: ../../addon/nsfw/nsfw.php:78 +msgid "Not Safe For Work (General Purpose Content Filter) settings" +msgstr "Not Safe For Work (General Purpose Content Filter) nastavení" + +#: ../../addon/nsfw/nsfw.php:80 +msgid "" +"This plugin looks in posts for the words/text you specify below, and " +"collapses any content containing those keywords so it is not displayed at " +"inappropriate times, such as sexual innuendo that may be improper in a work " +"setting. It is polite and recommended to tag any content containing nudity " +"with #NSFW. This filter can also match any other word/text you specify, and" +" can thereby be used as a general purpose content filter." +msgstr "Tento plugin hledá v příspěvcích slova zadáná níže a skryje jakýkoliv obsah, který tyto slova obsahuje v prostředích, kde to není vhodné. Je slušné a doporučené jakékoliv příspěvky s mahotou označit s #NSFW. Tento filtr může také vyhledávat jakékoliv Vámi specifikované slovní spojení, takže může být využit jako obecný kontextový filtr." + +#: ../../addon/nsfw/nsfw.php:81 +msgid "Enable Content filter" +msgstr "Povolit Kontextový filtr" + +#: ../../addon/nsfw/nsfw.php:84 +msgid "Comma separated list of keywords to hide" +msgstr "Čárkou oddělený seznam klíčových slov ke skrytí" + +#: ../../addon/nsfw/nsfw.php:89 +msgid "Use /expression/ to provide regular expressions" +msgstr "Použít /výraz/ pro použití regulárních výrazů" + +#: ../../addon/nsfw/nsfw.php:105 +msgid "NSFW Settings saved." +msgstr "NSFW nastavení uloženo" + +#: ../../addon/nsfw/nsfw.php:157 +#, php-format +msgid "%s - Click to open/close" +msgstr "%s - Klikněte pro otevření/zavření" + +#: ../../addon/page/page.php:61 ../../addon/page/page.php:91 +#: ../../addon/forumlist/forumlist.php:54 +msgid "Forums" +msgstr "Fóra" + +#: ../../addon/page/page.php:129 ../../addon/forumlist/forumlist.php:88 +msgid "Forums:" +msgstr "Fóra:" + +#: ../../addon/page/page.php:165 +msgid "Page settings updated." +msgstr "Nastavení stránky aktualizováno." + +#: ../../addon/page/page.php:194 +msgid "Page Settings" +msgstr "Nastavení stránky" + +#: ../../addon/page/page.php:196 ../../addon/forumlist/forumlist.php:155 +msgid "How many forums to display on sidebar without paging" +msgstr "Kolik diskuzních fór zobrazit v bočním panelu bez použití stránkování" + +#: ../../addon/page/page.php:199 +msgid "Randomise Page/Forum list" +msgstr "Náhodný stránka/fórum seznam" + +#: ../../addon/page/page.php:202 +msgid "Show pages/forums on profile page" +msgstr "Zobrazit stránky/fóra na profilové stránce" + +#: ../../addon/planets/planets.php:150 +msgid "Planets Settings" +msgstr "Nastavení Planets" + +#: ../../addon/planets/planets.php:152 +msgid "Enable Planets Plugin" +msgstr "Povolit Planets 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:912 +msgid "Login" +msgstr "Přihlásit se" + +#: ../../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 "Poslední uživatelé" + +#: ../../addon/communityhome/communityhome.php:81 +#: ../../addon/communityhome/twillingham/communityhome.php:81 +msgid "Most active users" +msgstr "Nejaktivnější uživatelé" + +#: ../../addon/communityhome/communityhome.php:98 +msgid "Latest photos" +msgstr "Poslední fotky" + +#: ../../addon/communityhome/communityhome.php:133 +msgid "Latest likes" +msgstr "Poslední \"líbí se mi\"" + +#: ../../addon/communityhome/communityhome.php:155 +#: ../../view/theme/diabook/theme.php:562 ../../include/text.php:1437 +#: ../../include/conversation.php:117 ../../include/conversation.php:245 +msgid "event" +msgstr "událost" + +#: ../../addon/dav/common/wdcal_backend.inc.php:92 +#: ../../addon/dav/common/wdcal_backend.inc.php:166 +#: ../../addon/dav/common/wdcal_backend.inc.php:178 +#: ../../addon/dav/common/wdcal_backend.inc.php:206 +#: ../../addon/dav/common/wdcal_backend.inc.php:214 +#: ../../addon/dav/common/wdcal_backend.inc.php:229 +msgid "No access" +msgstr "Zádný přístup" + +#: ../../addon/dav/common/wdcal_edit.inc.php:30 +#: ../../addon/dav/common/wdcal_edit.inc.php:738 +msgid "Could not open component for editing" +msgstr "Nelze otevřít komponentu pro editaci" + +#: ../../addon/dav/common/wdcal_edit.inc.php:140 +#: ../../addon/dav/friendica/layout.fnk.php:143 +#: ../../addon/dav/friendica/layout.fnk.php:422 +msgid "Go back to the calendar" +msgstr "Návrat na kalendář" + +#: ../../addon/dav/common/wdcal_edit.inc.php:144 +msgid "Event data" +msgstr "Data události" + +#: ../../addon/dav/common/wdcal_edit.inc.php:146 +#: ../../addon/dav/friendica/main.php:239 +msgid "Calendar" +msgstr "Kalendář" + +#: ../../addon/dav/common/wdcal_edit.inc.php:163 +msgid "Special color" +msgstr "Speciální barva" + +#: ../../addon/dav/common/wdcal_edit.inc.php:169 +msgid "Subject" +msgstr "Subjekt" + +#: ../../addon/dav/common/wdcal_edit.inc.php:173 +msgid "Starts" +msgstr "Hvězdiček" + +#: ../../addon/dav/common/wdcal_edit.inc.php:178 +msgid "Ends" +msgstr "Končí" + +#: ../../addon/dav/common/wdcal_edit.inc.php:185 +msgid "Description" +msgstr "Popis" + +#: ../../addon/dav/common/wdcal_edit.inc.php:188 +msgid "Recurrence" +msgstr "Opakování" + +#: ../../addon/dav/common/wdcal_edit.inc.php:190 +msgid "Frequency" +msgstr "Frekvence" + +#: ../../addon/dav/common/wdcal_edit.inc.php:194 +#: ../../include/contact_selectors.php:59 +msgid "Daily" +msgstr "denně" + +#: ../../addon/dav/common/wdcal_edit.inc.php:197 +#: ../../include/contact_selectors.php:60 +msgid "Weekly" +msgstr "Týdenně" + +#: ../../addon/dav/common/wdcal_edit.inc.php:200 +#: ../../include/contact_selectors.php:61 +msgid "Monthly" +msgstr "Měsíčně" + +#: ../../addon/dav/common/wdcal_edit.inc.php:203 +msgid "Yearly" +msgstr "Ročně" + +#: ../../addon/dav/common/wdcal_edit.inc.php:214 +#: ../../include/datetime.php:288 +msgid "days" +msgstr "dnů" + +#: ../../addon/dav/common/wdcal_edit.inc.php:215 +#: ../../include/datetime.php:287 +msgid "weeks" +msgstr "týdny" + +#: ../../addon/dav/common/wdcal_edit.inc.php:216 +#: ../../include/datetime.php:286 +msgid "months" +msgstr "měsíců" + +#: ../../addon/dav/common/wdcal_edit.inc.php:217 +#: ../../include/datetime.php:285 +msgid "years" +msgstr "let" + +#: ../../addon/dav/common/wdcal_edit.inc.php:218 +msgid "Interval" +msgstr "Interval" + +#: ../../addon/dav/common/wdcal_edit.inc.php:218 +msgid "All %select% %time%" +msgstr "Všechny %select% %time%" + +#: ../../addon/dav/common/wdcal_edit.inc.php:222 +#: ../../addon/dav/common/wdcal_edit.inc.php:260 +#: ../../addon/dav/common/wdcal_edit.inc.php:481 +msgid "Days" +msgstr "Dny" + +#: ../../addon/dav/common/wdcal_edit.inc.php:231 +#: ../../addon/dav/common/wdcal_edit.inc.php:254 +#: ../../addon/dav/common/wdcal_edit.inc.php:270 +#: ../../addon/dav/common/wdcal_edit.inc.php:293 +#: ../../addon/dav/common/wdcal_edit.inc.php:305 ../../include/text.php:917 +msgid "Sunday" +msgstr "Neděle" + +#: ../../addon/dav/common/wdcal_edit.inc.php:235 +#: ../../addon/dav/common/wdcal_edit.inc.php:274 +#: ../../addon/dav/common/wdcal_edit.inc.php:308 ../../include/text.php:917 +msgid "Monday" +msgstr "Pondělí" + +#: ../../addon/dav/common/wdcal_edit.inc.php:238 +#: ../../addon/dav/common/wdcal_edit.inc.php:277 ../../include/text.php:917 +msgid "Tuesday" +msgstr "Úterý" + +#: ../../addon/dav/common/wdcal_edit.inc.php:241 +#: ../../addon/dav/common/wdcal_edit.inc.php:280 ../../include/text.php:917 +msgid "Wednesday" +msgstr "Středa" + +#: ../../addon/dav/common/wdcal_edit.inc.php:244 +#: ../../addon/dav/common/wdcal_edit.inc.php:283 ../../include/text.php:917 +msgid "Thursday" +msgstr "Čtvrtek" + +#: ../../addon/dav/common/wdcal_edit.inc.php:247 +#: ../../addon/dav/common/wdcal_edit.inc.php:286 ../../include/text.php:917 +msgid "Friday" +msgstr "Pátek" + +#: ../../addon/dav/common/wdcal_edit.inc.php:250 +#: ../../addon/dav/common/wdcal_edit.inc.php:289 ../../include/text.php:917 +msgid "Saturday" +msgstr "Sobota" + +#: ../../addon/dav/common/wdcal_edit.inc.php:297 +msgid "First day of week:" +msgstr "První den v týdnu" + +#: ../../addon/dav/common/wdcal_edit.inc.php:350 +#: ../../addon/dav/common/wdcal_edit.inc.php:373 +msgid "Day of month" +msgstr "Den v měsíci" + +#: ../../addon/dav/common/wdcal_edit.inc.php:354 +msgid "#num#th of each month" +msgstr "#num#. v každém měsíci" + +#: ../../addon/dav/common/wdcal_edit.inc.php:357 +msgid "#num#th-last of each month" +msgstr "#num#. od konce v každém měsíci" + +#: ../../addon/dav/common/wdcal_edit.inc.php:360 +msgid "#num#th #wkday# of each month" +msgstr "#num#. #wkday# v každém měsíci" + +#: ../../addon/dav/common/wdcal_edit.inc.php:363 +msgid "#num#th-last #wkday# of each month" +msgstr "#num#. od konce #wkday# v každém měsíci" + +#: ../../addon/dav/common/wdcal_edit.inc.php:372 +#: ../../addon/dav/friendica/layout.fnk.php:255 +msgid "Month" +msgstr "Měsíc" + +#: ../../addon/dav/common/wdcal_edit.inc.php:377 +msgid "#num#th of the given month" +msgstr "#num#. v daném měsíci" + +#: ../../addon/dav/common/wdcal_edit.inc.php:380 +msgid "#num#th-last of the given month" +msgstr "#num#. od konce v daném měsíci" + +#: ../../addon/dav/common/wdcal_edit.inc.php:383 +msgid "#num#th #wkday# of the given month" +msgstr "#num#. #wkday# v daném měsíci" + +#: ../../addon/dav/common/wdcal_edit.inc.php:386 +msgid "#num#th-last #wkday# of the given month" +msgstr "#num#. #wkday# od konce v daném měsíci" + +#: ../../addon/dav/common/wdcal_edit.inc.php:413 +msgid "Repeat until" +msgstr "Opakuj dokud" + +#: ../../addon/dav/common/wdcal_edit.inc.php:417 +msgid "Infinite" +msgstr "Do nekončena" + +#: ../../addon/dav/common/wdcal_edit.inc.php:420 +msgid "Until the following date" +msgstr "Do následujícího data" + +#: ../../addon/dav/common/wdcal_edit.inc.php:423 +msgid "Number of times" +msgstr "Počet opakování" + +#: ../../addon/dav/common/wdcal_edit.inc.php:429 +msgid "Exceptions" +msgstr "Výjimky" + +#: ../../addon/dav/common/wdcal_edit.inc.php:432 +msgid "none" +msgstr "žádný" + +#: ../../addon/dav/common/wdcal_edit.inc.php:449 +msgid "Notification" +msgstr "Notifikace" + +#: ../../addon/dav/common/wdcal_edit.inc.php:466 +msgid "Notify by" +msgstr "Notifikován" + +#: ../../addon/dav/common/wdcal_edit.inc.php:469 +msgid "E-Mail" +msgstr "e-mailem" + +#: ../../addon/dav/common/wdcal_edit.inc.php:470 +msgid "On Friendica / Display" +msgstr "Na stránce Friendica" + +#: ../../addon/dav/common/wdcal_edit.inc.php:474 +msgid "Time" +msgstr "Čas" + +#: ../../addon/dav/common/wdcal_edit.inc.php:478 +msgid "Hours" +msgstr "Hodiny" + +#: ../../addon/dav/common/wdcal_edit.inc.php:479 +msgid "Minutes" +msgstr "Minuty" + +#: ../../addon/dav/common/wdcal_edit.inc.php:480 +msgid "Seconds" +msgstr "sekund" + +#: ../../addon/dav/common/wdcal_edit.inc.php:482 +msgid "Weeks" +msgstr "týdnů" + +#: ../../addon/dav/common/wdcal_edit.inc.php:485 +msgid "before the" +msgstr "před" + +#: ../../addon/dav/common/wdcal_edit.inc.php:486 +msgid "start of the event" +msgstr "začátkem události" + +#: ../../addon/dav/common/wdcal_edit.inc.php:487 +msgid "end of the event" +msgstr "koncem události" + +#: ../../addon/dav/common/wdcal_edit.inc.php:492 +msgid "Add a notification" +msgstr "Přidat notifikaci" + +#: ../../addon/dav/common/wdcal_edit.inc.php:687 +msgid "The event #name# will start at #date" +msgstr "Událost #name# bude zahájena #date" + +#: ../../addon/dav/common/wdcal_edit.inc.php:696 +msgid "#name# is about to begin." +msgstr "#name# právě začíná." + +#: ../../addon/dav/common/wdcal_edit.inc.php:769 +msgid "Saved" +msgstr "Uloženo" + +#: ../../addon/dav/common/wdcal_configuration.php:148 +msgid "U.S. Time Format (mm/dd/YYYY)" +msgstr "americký formát času (mm/dd/YYYY)" + +#: ../../addon/dav/common/wdcal_configuration.php:243 +msgid "German Time Format (dd.mm.YYYY)" +msgstr "německý formát času (dd.mm.YYYY)" + +#: ../../addon/dav/common/dav_caldav_backend_private.inc.php:39 +msgid "Private Events" +msgstr "Soukromé události" + +#: ../../addon/dav/common/dav_carddav_backend_private.inc.php:46 +msgid "Private Addressbooks" +msgstr "Soukromé adresáře kontaktů" + +#: ../../addon/dav/friendica/dav_caldav_backend_virtual_friendica.inc.php:36 +msgid "Friendica-Native events" +msgstr "Nativní Friendica události" + +#: ../../addon/dav/friendica/dav_carddav_backend_virtual_friendica.inc.php:36 +#: ../../addon/dav/friendica/dav_carddav_backend_virtual_friendica.inc.php:59 +msgid "Friendica-Contacts" +msgstr "Friendica kontakty" + +#: ../../addon/dav/friendica/dav_carddav_backend_virtual_friendica.inc.php:60 +msgid "Your Friendica-Contacts" +msgstr "Vaše Friendica kontakty" + +#: ../../addon/dav/friendica/layout.fnk.php:99 +#: ../../addon/dav/friendica/layout.fnk.php:136 +msgid "" +"Something went wrong when trying to import the file. Sorry. Maybe some " +"events were imported anyway." +msgstr "Při importu souboru se něco nezdařilo, omlouváme se. Přesto se mohly některé události načíst." + +#: ../../addon/dav/friendica/layout.fnk.php:131 +msgid "Something went wrong when trying to import the file. Sorry." +msgstr "Při importu souboru se něco nezdařilo, omlouváme se." + +#: ../../addon/dav/friendica/layout.fnk.php:134 +msgid "The ICS-File has been imported." +msgstr "ICS soubor byl importován." + +#: ../../addon/dav/friendica/layout.fnk.php:138 +msgid "No file was uploaded." +msgstr "Žádný soubor nebyl nahrán." + +#: ../../addon/dav/friendica/layout.fnk.php:147 +msgid "Import a ICS-file" +msgstr "Import ICS souboru." + +#: ../../addon/dav/friendica/layout.fnk.php:150 +msgid "ICS-File" +msgstr "ICS soubor." + +#: ../../addon/dav/friendica/layout.fnk.php:151 +msgid "Overwrite all #num# existing events" +msgstr "Přepsat všechny #num# existující události" + +#: ../../addon/dav/friendica/layout.fnk.php:228 +msgid "New event" +msgstr "Nová událost" + +#: ../../addon/dav/friendica/layout.fnk.php:232 +msgid "Today" +msgstr "Dnes" + +#: ../../addon/dav/friendica/layout.fnk.php:241 +msgid "Day" +msgstr "Den" + +#: ../../addon/dav/friendica/layout.fnk.php:248 +msgid "Week" +msgstr "Týden" + +#: ../../addon/dav/friendica/layout.fnk.php:260 +msgid "Reload" +msgstr "Načíst znovu" + +#: ../../addon/dav/friendica/layout.fnk.php:271 +msgid "Date" +msgstr "Datum" + +#: ../../addon/dav/friendica/layout.fnk.php:313 +msgid "Error" +msgstr "Chyba" + +#: ../../addon/dav/friendica/layout.fnk.php:380 +msgid "The calendar has been updated." +msgstr "Kalendář byl aktualizován." + +#: ../../addon/dav/friendica/layout.fnk.php:393 +msgid "The new calendar has been created." +msgstr "Nový kalendář byl vytvořen." + +#: ../../addon/dav/friendica/layout.fnk.php:417 +msgid "The calendar has been deleted." +msgstr "Kalendář byl smazán." + +#: ../../addon/dav/friendica/layout.fnk.php:424 +msgid "Calendar Settings" +msgstr "Nastavení kalendáře" + +#: ../../addon/dav/friendica/layout.fnk.php:430 +msgid "Date format" +msgstr "Formát datumu" + +#: ../../addon/dav/friendica/layout.fnk.php:439 +msgid "Time zone" +msgstr "Časová zóna" + +#: ../../addon/dav/friendica/layout.fnk.php:445 +msgid "Calendars" +msgstr "Kalendáře" + +#: ../../addon/dav/friendica/layout.fnk.php:487 +msgid "Create a new calendar" +msgstr "Vytvořit nový kalendář" + +#: ../../addon/dav/friendica/layout.fnk.php:496 +msgid "Limitations" +msgstr "Omezení" + +#: ../../addon/dav/friendica/layout.fnk.php:500 +#: ../../addon/libravatar/libravatar.php:82 +msgid "Warning" +msgstr "Varování" + +#: ../../addon/dav/friendica/layout.fnk.php:504 +msgid "Synchronization (iPhone, Thunderbird Lightning, Android, ...)" +msgstr "Synchronizace (iPhone, Thunderbird Lightning, Android, ...)" + +#: ../../addon/dav/friendica/layout.fnk.php:511 +msgid "Synchronizing this calendar with the iPhone" +msgstr "Synchronizovat tento kalendář s iPhone" + +#: ../../addon/dav/friendica/layout.fnk.php:522 +msgid "Synchronizing your Friendica-Contacts with the iPhone" +msgstr "Synchronizovat Vaše Friendica kontakty s iPhone" + +#: ../../addon/dav/friendica/main.php:202 +msgid "" +"The current version of this plugin has not been set up correctly. Please " +"contact the system administrator of your installation of friendica to fix " +"this." +msgstr "Stávající verze tohoto rozšíření nebyla správně nastavena. Prosím, kontaktujte administrátora webu, ať to opraví." + +#: ../../addon/dav/friendica/main.php:242 +msgid "Extended calendar with CalDAV-support" +msgstr "Rozšířený kalendář s podporou CalDAV" + +#: ../../addon/dav/friendica/main.php:279 +#: ../../addon/dav/friendica/main.php:280 ../../include/delivery.php:464 +#: ../../include/enotify.php:28 ../../include/notifier.php:710 +msgid "noreply" +msgstr "neodpovídat" + +#: ../../addon/dav/friendica/main.php:282 +msgid "Notification: " +msgstr "Notifikace:" + +#: ../../addon/dav/friendica/main.php:309 +msgid "The database tables have been installed." +msgstr "Databázové tabulky byly nainstalovány" + +#: ../../addon/dav/friendica/main.php:310 +msgid "An error occurred during the installation." +msgstr "Během instalace nastala chyba." + +#: ../../addon/dav/friendica/main.php:316 +msgid "The database tables have been updated." +msgstr "Databázové tabulky byly aktualizovány." + +#: ../../addon/dav/friendica/main.php:317 +msgid "An error occurred during the update." +msgstr "Během aktualizace došlo k chybě." + +#: ../../addon/dav/friendica/main.php:333 +msgid "No system-wide settings yet." +msgstr "Nastavení systému dosud nebylo vytvořeno" + +#: ../../addon/dav/friendica/main.php:336 +msgid "Database status" +msgstr "Status databáze" + +#: ../../addon/dav/friendica/main.php:339 +msgid "Installed" +msgstr "Instalováno" + +#: ../../addon/dav/friendica/main.php:343 +msgid "Upgrade needed" +msgstr "Upgrade vyžadován" + +#: ../../addon/dav/friendica/main.php:343 +msgid "" +"Please back up all calendar data (the tables beginning with dav_*) before " +"proceeding. While all calendar events should be converted to the new " +"database structure, it's always safe to have a backup. Below, you can have a" +" look at the database-queries that will be made when pressing the " +"'update'-button." +msgstr "Prosím, zálohujte si všechny data v kalendářích (všechny tabulky začínající s dav_*) před pokračováním. Ačkoliv by měly být všechny kalendářové události převedeny do nové databázové struktury, vždy je bezpečnější mít zálohu. Níže se můžete podívat na databázové příkazy, které budou spuštěny po stisknutí tlačítka \"Aktualizovat\"." + +#: ../../addon/dav/friendica/main.php:343 +msgid "Upgrade" +msgstr "Upgrade" + +#: ../../addon/dav/friendica/main.php:346 +msgid "Not installed" +msgstr "Nenainstalováno" + +#: ../../addon/dav/friendica/main.php:346 +msgid "Install" +msgstr "Instalovat" + +#: ../../addon/dav/friendica/main.php:350 +msgid "Unknown" +msgstr "Neznámý" + +#: ../../addon/dav/friendica/main.php:350 +msgid "" +"Something really went wrong. I cannot recover from this state automatically," +" sorry. Please go to the database backend, back up the data, and delete all " +"tables beginning with 'dav_' manually. Afterwards, this installation routine" +" should be able to reinitialize the tables automatically." +msgstr "Něco se opravdu nepovedlo. Z aktuálního stavu nelze provést automatickou obnovu. Prosím přihlaste se do databáze, zazálohujte data a smažte manuálně všechny tabulky začínající s \"dav_\". Poté by měl instalační skript sám automaticky znovu založit potřebné tabulky." + +#: ../../addon/dav/friendica/main.php:355 +msgid "Troubleshooting" +msgstr "Řešení problémů" + +#: ../../addon/dav/friendica/main.php:356 +msgid "Manual creation of the database tables:" +msgstr "Manuálnní vytvoření databázových tabulek:" + +#: ../../addon/dav/friendica/main.php:357 +msgid "Show SQL-statements" +msgstr "Zobrazit SQL-příkazy" + +#: ../../addon/dav/friendica/calendar.friendica.fnk.php:206 +msgid "Private Calendar" +msgstr "Soukromý kalendář" + +#: ../../addon/dav/friendica/calendar.friendica.fnk.php:207 +msgid "Friendica Events: Mine" +msgstr "Friendica události: Mé" + +#: ../../addon/dav/friendica/calendar.friendica.fnk.php:208 +msgid "Friendica Events: Contacts" +msgstr "Friendica události: Kontakty" + +#: ../../addon/dav/friendica/calendar.friendica.fnk.php:248 +msgid "Private Addresses" +msgstr "Soukromé adresy" + +#: ../../addon/dav/friendica/calendar.friendica.fnk.php:249 +msgid "Friendica Contacts" +msgstr "Friendica Kontakty" + +#: ../../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 "Umožnit využití friendica id (%s) k napojení na externí úložiště (unhosted-enabled) (jako ownCloud). Více informací na RemoteStorage WebFinger" + +#: ../../addon/uhremotestorage/uhremotestorage.php:85 +msgid "Template URL (with {category})" +msgstr "Dočasná URL adresa (s {category})" + +#: ../../addon/uhremotestorage/uhremotestorage.php:86 +msgid "OAuth end-point" +msgstr "OAuth end-point" + +#: ../../addon/uhremotestorage/uhremotestorage.php:87 +msgid "Api" +msgstr "Api" + +#: ../../addon/membersince/membersince.php:18 +msgid "Member since:" +msgstr "Členem od:" #: ../../addon/tictac/tictac.php:20 msgid "Three Dimensional Tic-Tac-Toe" @@ -3376,25 +5960,19 @@ msgstr "Nová hra s handicapem" msgid "" "Three dimensional tic-tac-toe is just like the traditional game except that " "it is played on multiple levels simultaneously. " -msgstr "" -"Trojrozměrné tic-tac-toe je podobná této tradiční hře kromě toho, že se " -"hraje na více úrovních současně." +msgstr "Trojrozměrné tic-tac-toe je podobná této tradiční hře kromě toho, že se hraje na více úrovních současně." #: ../../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 "" -"V tomto případě existují tři úrovně. Vyhrajete tím, že dostane tři v řadě na" -" jakékoli úrovni, stejně jako nahoru, dolů a šikmo na různých úrovních." +msgstr "V tomto případě existují tři úrovně. Vyhrajete tím, že dostane tři v řadě na jakékoli úrovni, stejně jako nahoru, dolů a šikmo na různých úrovních." #: ../../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 "" -"Hra s handicapem zakáže centrální pozici na střední úrovni, protože hráč " -"zaujímající tuto polohu má často nespravedlivou výhodu." +msgstr "Hra s handicapem zakáže centrální pozici na střední úrovni, protože hráč zaujímající tuto polohu má často nespravedlivou výhodu." #: ../../addon/tictac/tictac.php:182 msgid "You go first..." @@ -3416,14 +5994,121 @@ msgstr "\"Kočičí\" hra!" msgid "I won!" msgstr "Vyhrál jsem!" -#: ../../addon/randplace/randplace.php:170 +#: ../../addon/randplace/randplace.php:169 msgid "Randplace Settings" msgstr "Randplace Nastavení" -#: ../../addon/randplace/randplace.php:172 +#: ../../addon/randplace/randplace.php:171 msgid "Enable Randplace Plugin" msgstr "Povolit Randplace Plugin" +#: ../../addon/dwpost/dwpost.php:39 +msgid "Post to Dreamwidth" +msgstr "Poslat na Dreamwidth" + +#: ../../addon/dwpost/dwpost.php:70 +msgid "Dreamwidth Post Settings" +msgstr "Nastavení Dreamwidth příspěvků" + +#: ../../addon/dwpost/dwpost.php:72 +msgid "Enable dreamwidth Post Plugin" +msgstr "Povolit dreamwidth Plugin" + +#: ../../addon/dwpost/dwpost.php:77 +msgid "dreamwidth username" +msgstr "dreamwidth uživatelské jméno" + +#: ../../addon/dwpost/dwpost.php:82 +msgid "dreamwidth password" +msgstr "dreamwidth heslo" + +#: ../../addon/dwpost/dwpost.php:87 +msgid "Post to dreamwidth by default" +msgstr "Defaultně umístit na dreamwidth" + +#: ../../addon/drpost/drpost.php:35 +msgid "Post to Drupal" +msgstr "Zveřejnit na Drupal" + +#: ../../addon/drpost/drpost.php:72 +msgid "Drupal Post Settings" +msgstr "Nastavení příspěvků Drupal" + +#: ../../addon/drpost/drpost.php:74 +msgid "Enable Drupal Post Plugin" +msgstr "Aktivovat Drupal Plugin" + +#: ../../addon/drpost/drpost.php:79 +msgid "Drupal username" +msgstr "Drupal uživatelské jméno " + +#: ../../addon/drpost/drpost.php:84 +msgid "Drupal password" +msgstr "Drupal heslo" + +#: ../../addon/drpost/drpost.php:89 +msgid "Post Type - article,page,or blog" +msgstr "Typ příspěvku - článek, stránka nebo blog" + +#: ../../addon/drpost/drpost.php:94 +msgid "Drupal site URL" +msgstr "Drupal adresa webu" + +#: ../../addon/drpost/drpost.php:99 +msgid "Drupal site uses clean URLS" +msgstr "Drupal server používá čisté URLS" + +#: ../../addon/drpost/drpost.php:104 +msgid "Post to Drupal by default" +msgstr "Defaultní umístění na Drupal " + +#: ../../addon/drpost/drpost.php:184 ../../addon/wppost/wppost.php:201 +#: ../../addon/blogger/blogger.php:172 ../../addon/posterous/posterous.php:189 +msgid "Post from Friendica" +msgstr "Příspěvek z Friendica" + +#: ../../addon/startpage/startpage.php:83 +msgid "Startpage Settings" +msgstr "Nastavení úvodní stránky" + +#: ../../addon/startpage/startpage.php:85 +msgid "Home page to load after login - leave blank for profile wall" +msgstr "Domácí stránka k načtení po přihlášení - pro profilovou zeď ponechejte prázdné" + +#: ../../addon/startpage/startpage.php:88 +msgid "Examples: "network" or "notifications/system"" +msgstr "Příklady: \"síť\" nebo \"notifikace systému\"" + +#: ../../addon/geonames/geonames.php:143 +msgid "Geonames settings updated." +msgstr "Geonames nastavení aktualizováno." + +#: ../../addon/geonames/geonames.php:179 +msgid "Geonames Settings" +msgstr "Nastavení Geonames" + +#: ../../addon/geonames/geonames.php:181 +msgid "Enable Geonames Plugin" +msgstr "Povolit Geonames rozšíření" + +#: ../../addon/public_server/public_server.php:126 +#: ../../addon/testdrive/testdrive.php:94 +#, php-format +msgid "Your account on %s will expire in a few days." +msgstr "Platnost Vašeho účtu na %s vyprší během několika dní." + +#: ../../addon/public_server/public_server.php:127 +msgid "Your Friendica account is about to expire." +msgstr "Vašemu účetu Friendica brzy vyprší platnost" + +#: ../../addon/public_server/public_server.php:128 +#, php-format +msgid "" +"Hi %1$s,\n" +"\n" +"Your account on %2$s will expire in less than five days. You may keep your account by logging in at least once every 30 days" +msgstr "Ahoj %1$s,\n\nVáš účet na %2$s vyprší v méně než pěti dnech. Svůj účet si zachováte, pokud se přihlásíte alespoň jednou za každých 30 dní." + #: ../../addon/js_upload/js_upload.php:43 msgid "Upload a file" msgstr "Nahrát soubor" @@ -3436,362 +6121,1198 @@ msgstr "Přeneste sem soubory k nahrání" msgid "Failed" msgstr "Neúspěch" -#: ../../addon/js_upload/js_upload.php:292 +#: ../../addon/js_upload/js_upload.php:297 msgid "No files were uploaded." msgstr "Žádné soubory nebyly nahrány." -#: ../../addon/js_upload/js_upload.php:298 +#: ../../addon/js_upload/js_upload.php:303 msgid "Uploaded file is empty" msgstr "Nahraný soubor je prázdný" -#: ../../addon/js_upload/js_upload.php:321 +#: ../../addon/js_upload/js_upload.php:326 msgid "File has an invalid extension, it should be one of " msgstr "Soubor má neplatnou příponu, ta by měla být jednou z" -#: ../../addon/js_upload/js_upload.php:332 +#: ../../addon/js_upload/js_upload.php:337 msgid "Upload was cancelled, or server error encountered" msgstr "Nahrávání bylo zrušeno nebo došlo k chybě na serveru" -#: ../../addon/impressum/impressum.php:25 +#: ../../addon/oembed.old/oembed.php:30 +msgid "OEmbed settings updated" +msgstr "OEmbed nastavení aktualizováno" + +#: ../../addon/oembed.old/oembed.php:43 +msgid "Use OEmbed for YouTube videos" +msgstr "Použití OEmbed pro videa na YouTube" + +#: ../../addon/oembed.old/oembed.php:71 +msgid "URL to embed:" +msgstr "URL adresa k vložení:" + +#: ../../addon/forumlist/forumlist.php:57 +msgid "show/hide" +msgstr "zobrazit/skrýt" + +#: ../../addon/forumlist/forumlist.php:72 +msgid "No forum subscriptions" +msgstr "Žádné registrace k fórům" + +#: ../../addon/forumlist/forumlist.php:124 +msgid "Forumlist settings updated." +msgstr "Nastavení Forumlist aktualizováno." + +#: ../../addon/forumlist/forumlist.php:153 +msgid "Forumlist Settings" +msgstr "Nastavení Forumlist" + +#: ../../addon/forumlist/forumlist.php:158 +msgid "Randomise Forumlist/Forum list" +msgstr "Náhodně rozdělit seznam Forumlist/Forum" + +#: ../../addon/forumlist/forumlist.php:161 +msgid "Show forumlists/forums on profile forumlist" +msgstr "Zobrazit forumlists/forums na profilu forumlist" + +#: ../../addon/impressum/impressum.php:37 msgid "Impressum" msgstr "Impressum" -#: ../../addon/impressum/impressum.php:38 -#: ../../addon/impressum/impressum.php:40 -#: ../../addon/impressum/impressum.php:70 +#: ../../addon/impressum/impressum.php:50 +#: ../../addon/impressum/impressum.php:52 +#: ../../addon/impressum/impressum.php:84 msgid "Site Owner" msgstr "Vlastník webu" -#: ../../addon/impressum/impressum.php:38 -#: ../../addon/impressum/impressum.php:74 +#: ../../addon/impressum/impressum.php:50 +#: ../../addon/impressum/impressum.php:88 msgid "Email Address" msgstr "E-mailová adresa" -#: ../../addon/impressum/impressum.php:43 -#: ../../addon/impressum/impressum.php:72 +#: ../../addon/impressum/impressum.php:55 +#: ../../addon/impressum/impressum.php:86 msgid "Postal Address" msgstr "Poštovní adresa" -#: ../../addon/impressum/impressum.php:49 +#: ../../addon/impressum/impressum.php:61 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 "" -"Doplněk Impressum musí být nakonfigurován!
    Prosím, přidejte alespoň " -"proměnnou owner do konfiguračního souboru. Pro nastavení ostatních " -"proměnných se seznamte s nápovědou v souboru README tohoto doplňku." +msgstr "Doplněk Impressum musí být nakonfigurován!
    Prosím, přidejte alespoň proměnnou owner do konfiguračního souboru. Pro nastavení ostatních proměnných se seznamte s nápovědou v souboru README tohoto doplňku." -#: ../../addon/impressum/impressum.php:71 +#: ../../addon/impressum/impressum.php:84 +msgid "The page operators name." +msgstr "Jméno operátora stránky." + +#: ../../addon/impressum/impressum.php:85 msgid "Site Owners Profile" msgstr "Profil majitele webu" -#: ../../addon/impressum/impressum.php:73 +#: ../../addon/impressum/impressum.php:85 +msgid "Profile address of the operator." +msgstr "Profilová addresa operátora." + +#: ../../addon/impressum/impressum.php:86 +msgid "How to contact the operator via snail mail. You can use BBCode here." +msgstr "Jak kontaktovat operátora prostřednictvím klasické pošty. Zde můžete použít BBCode." + +#: ../../addon/impressum/impressum.php:87 msgid "Notes" msgstr "Poznámky" -#: ../../addon/oembed/oembed.php:30 -msgid "OEmbed settings updated" -msgstr "OEmbed nastavení aktualizováno" +#: ../../addon/impressum/impressum.php:87 +msgid "" +"Additional notes that are displayed beneath the contact information. You can" +" use BBCode here." +msgstr "Další poznámky, které jsou zobrazeny pod kontaktními informacemi. Zde můžete použít BBCode." -#: ../../addon/oembed/oembed.php:43 -msgid "Use OEmbed for YouTube videos" -msgstr "Použití OEmbed pro videa na YouTube" +#: ../../addon/impressum/impressum.php:88 +msgid "How to contact the operator via email. (will be displayed obfuscated)" +msgstr "Jak konktaktovat operátora přes mail. (bude zobrazen \"zmateně\")" -#: ../../addon/oembed/oembed.php:71 -msgid "URL to embed:" -msgstr "URL adresa k vložení:" +#: ../../addon/impressum/impressum.php:89 +msgid "Footer note" +msgstr "Poznámka v zápatí" -#: ../../addon/statusnet/statusnet.php:133 +#: ../../addon/impressum/impressum.php:89 +msgid "Text for the footer. You can use BBCode here." +msgstr "Text pro zápatí. Zde můžete použít BBCode." + +#: ../../addon/buglink/buglink.php:15 +msgid "Report Bug" +msgstr "Nahlásit chybu" + +#: ../../addon/notimeline/notimeline.php:32 +msgid "No Timeline settings updated." +msgstr "Nastavení No Timeline aktualizováno." + +#: ../../addon/notimeline/notimeline.php:56 +msgid "No Timeline Settings" +msgstr "Nastavení No Timeline" + +#: ../../addon/notimeline/notimeline.php:58 +msgid "Disable Archive selector on profile wall" +msgstr "Znemožnit použití archivu na této profilové zdi." + +#: ../../addon/blockem/blockem.php:51 +msgid "\"Blockem\" Settings" +msgstr "\"Blockem\" Nastavení" + +#: ../../addon/blockem/blockem.php:53 +msgid "Comma separated profile URLS to block" +msgstr "Čárkou oddělené URL adresy profilů určených k ignorování" + +#: ../../addon/blockem/blockem.php:70 +msgid "BLOCKEM Settings saved." +msgstr "BLOCKEM nastavení uloženo." + +#: ../../addon/blockem/blockem.php:105 +#, php-format +msgid "Blocked %s - Click to open/close" +msgstr "Blokován %s - Klikněte pro otevření/zavření" + +#: ../../addon/blockem/blockem.php:160 +msgid "Unblock Author" +msgstr "Odblokovat autora" + +#: ../../addon/blockem/blockem.php:162 +msgid "Block Author" +msgstr "Zablokovat autora" + +#: ../../addon/blockem/blockem.php:194 +msgid "blockem settings updated" +msgstr "blockem nastavení aktualizováno" + +#: ../../addon/qcomment/qcomment.php:51 +msgid ":-)" +msgstr ":-)" + +#: ../../addon/qcomment/qcomment.php:51 +msgid ":-(" +msgstr ":-(" + +#: ../../addon/qcomment/qcomment.php:51 +msgid "lol" +msgstr "hlasitě se směji" + +#: ../../addon/qcomment/qcomment.php:54 +msgid "Quick Comment Settings" +msgstr "Nastavení rychlých komentářů" + +#: ../../addon/qcomment/qcomment.php:56 +msgid "" +"Quick comments are found near comment boxes, sometimes hidden. Click them to" +" provide simple replies." +msgstr "Rychlé komentáře jsou k nalezení blízko polí s komentáři, někdy jsou skryté. Klikněte na ně k poskytnutí jednoduchých odpovědí." + +#: ../../addon/qcomment/qcomment.php:57 +msgid "Enter quick comments, one per line" +msgstr "Zadejte rychlé komentáře, každý na nový řádek" + +#: ../../addon/qcomment/qcomment.php:75 +msgid "Quick Comment settings saved." +msgstr "Nastavení Quick Comment uloženo." + +#: ../../addon/openstreetmap/openstreetmap.php:71 +msgid "Tile Server URL" +msgstr "URL adresa Tile serveru" + +#: ../../addon/openstreetmap/openstreetmap.php:71 +msgid "" +"A list of public tile servers" +msgstr "Seznam veřejných tile serverů" + +#: ../../addon/openstreetmap/openstreetmap.php:72 +msgid "Default zoom" +msgstr "Defaultní přiblížení" + +#: ../../addon/openstreetmap/openstreetmap.php:72 +msgid "The default zoom level. (1:world, 18:highest)" +msgstr "Defaultní úroveň přiblížení (1:svět, 18:nejvyšší)" + +#: ../../addon/group_text/group_text.php:46 +#: ../../addon/editplain/editplain.php:46 +msgid "Editplain settings updated." +msgstr "Editplain nastavení aktualizováno" + +#: ../../addon/group_text/group_text.php:76 +msgid "Group Text" +msgstr "Skupinový text" + +#: ../../addon/group_text/group_text.php:78 +msgid "Use a text only (non-image) group selector in the \"group edit\" menu" +msgstr "Použijte pouze textový (neobrázkový) výběr skupiny v menu editace skupin." + +#: ../../addon/libravatar/libravatar.php:14 +msgid "Could NOT install Libravatar successfully.
    It requires PHP >= 5.3" +msgstr "Libravatar není možné úspěšně nainstalovat .
    Vyžaduje PHP >= 5.3" + +#: ../../addon/libravatar/libravatar.php:73 +#: ../../addon/gravatar/gravatar.php:71 +msgid "generic profile image" +msgstr "generický profilový obrázek" + +#: ../../addon/libravatar/libravatar.php:74 +#: ../../addon/gravatar/gravatar.php:72 +msgid "random geometric pattern" +msgstr "náhodný geometrický vzor" + +#: ../../addon/libravatar/libravatar.php:75 +#: ../../addon/gravatar/gravatar.php:73 +msgid "monster face" +msgstr "tvář příšery" + +#: ../../addon/libravatar/libravatar.php:76 +#: ../../addon/gravatar/gravatar.php:74 +msgid "computer generated face" +msgstr "počítačově generovaná tvář" + +#: ../../addon/libravatar/libravatar.php:77 +#: ../../addon/gravatar/gravatar.php:75 +msgid "retro arcade style face" +msgstr "tvář v retro arkádovém stylu" + +#: ../../addon/libravatar/libravatar.php:83 +#, php-format +msgid "Your PHP version %s is lower than the required PHP >= 5.3." +msgstr "Vaše PHP verze %s je nižší než požadovaná PHP >= 5.3." + +#: ../../addon/libravatar/libravatar.php:84 +msgid "This addon is not functional on your server." +msgstr "Tento doplněk není funkční na Vašem serveru." + +#: ../../addon/libravatar/libravatar.php:93 +#: ../../addon/gravatar/gravatar.php:89 +msgid "Information" +msgstr "Informace" + +#: ../../addon/libravatar/libravatar.php:93 +msgid "" +"Gravatar addon is installed. Please disable the Gravatar addon.
    The " +"Libravatar addon will fall back to Gravatar if nothing was found at " +"Libravatar." +msgstr "Gravatar doplněk je nainstalován. Prosím zakažte doplněk Gravatar.
    Libravatar doplněk se vrátí k doplňku Gravatar, pokud na Libravataru nebude nic nalezeno." + +#: ../../addon/libravatar/libravatar.php:100 +#: ../../addon/gravatar/gravatar.php:96 +msgid "Default avatar image" +msgstr "Defaultní obrázek avataru" + +#: ../../addon/libravatar/libravatar.php:100 +msgid "Select default avatar image if none was found. See README" +msgstr "Vyberte defaultní avatar obrázek pokud nebyl žádný nalezen. Více viz. soubor README." + +#: ../../addon/libravatar/libravatar.php:112 +msgid "Libravatar settings updated." +msgstr "Nastavení Libravatar aktualizováno." + +#: ../../addon/libertree/libertree.php:36 +msgid "Post to libertree" +msgstr "Poslat na Libertree" + +#: ../../addon/libertree/libertree.php:67 +msgid "libertree Post Settings" +msgstr "Nastavení Libertree příspěvků" + +#: ../../addon/libertree/libertree.php:69 +msgid "Enable Libertree Post Plugin" +msgstr "Povolit Libertree Post rozšíření" + +#: ../../addon/libertree/libertree.php:74 +msgid "Libertree API token" +msgstr "Libertree API token" + +#: ../../addon/libertree/libertree.php:79 +msgid "Libertree site URL" +msgstr "URL adresa Libertree " + +#: ../../addon/libertree/libertree.php:84 +msgid "Post to Libertree by default" +msgstr "Defaultně poslat na Libertree" + +#: ../../addon/altpager/altpager.php:46 +msgid "Altpager settings updated." +msgstr "Nastavení Altpager aktualizováno." + +#: ../../addon/altpager/altpager.php:79 +msgid "Alternate Pagination Setting" +msgstr "Alternate Pagination nastavení" + +#: ../../addon/altpager/altpager.php:81 +msgid "Use links to \"newer\" and \"older\" pages in place of page numbers?" +msgstr "Použít odkazy na \"novější\" a \"starší\" stránky místo čísel stránek?" + +#: ../../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 "Rozšíření MathJax vykresluje matematické vzorce zapsané s použitím syntaxe LaTeX označené obvyklými znaky $$ nebo v bloku \"eqnarray\" v příspěvcích na Vaší zdi, záložce síť a soukromých zprávách." + +#: ../../addon/mathjax/mathjax.php:38 +msgid "Use the MathJax renderer" +msgstr "Použít Mathjax vykreslování" + +#: ../../addon/mathjax/mathjax.php:74 +msgid "MathJax Base URL" +msgstr "Základní MathJax adresa URL" + +#: ../../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 "URL adresa na javascriptový soubor, který musí být obsažen pro použití MathJax. Může to být MathJax CDN nebo or jiná instalace MathJax." + +#: ../../addon/editplain/editplain.php:76 +msgid "Editplain Settings" +msgstr "Nastavení Editplain" + +#: ../../addon/editplain/editplain.php:78 +msgid "Disable richtext status editor" +msgstr "Zakázat richtext status editor" + +#: ../../addon/gravatar/gravatar.php:89 +msgid "" +"Libravatar addon is installed, too. Please disable Libravatar addon or this " +"Gravatar addon.
    The Libravatar addon will fall back to Gravatar if " +"nothing was found at Libravatar." +msgstr "Libravatar doplněk je také nainstalován. Prosím zakažte doplněk Libravatar nebo tento doplněk Gravatar.
    Libravatar doplněk se vrátí k doplňku Gravatar, pokud na Libravataru nebude nic nalezeno." + +#: ../../addon/gravatar/gravatar.php:96 +msgid "Select default avatar image if none was found at Gravatar. See README" +msgstr "Nastavte defaulní obrázek avatara pokud ho již nemáte na Gravatar. Více viz. soubor README." + +#: ../../addon/gravatar/gravatar.php:97 +msgid "Rating of images" +msgstr "Hodnocení obrázků" + +#: ../../addon/gravatar/gravatar.php:97 +msgid "Select the appropriate avatar rating for your site. See README" +msgstr "Zadejte ohodnocení příslušného avatara pro vaši stránku. Viz README." + +#: ../../addon/gravatar/gravatar.php:111 +msgid "Gravatar settings updated." +msgstr "Nastavení Gravatar aktualizováno." + +#: ../../addon/testdrive/testdrive.php:95 +msgid "Your Friendica test account is about to expire." +msgstr "Váš Friendica testovací účet brzy vyprší." + +#: ../../addon/testdrive/testdrive.php:96 +#, php-format +msgid "" +"Hi %1$s,\n" +"\n" +"Your test account on %2$s will expire in less than five days. We hope you enjoyed this test drive and use this opportunity to find a permanent Friendica website for your integrated social communications. A list of public sites is available at http://dir.friendica.com/siteinfo - and for more information on setting up your own Friendica server please see the Friendica project website at http://friendica.com." +msgstr "Ahoj %1$s,\n\nplatnost Vašeho testovacího účtu na %2$s vyprší za méně než 5 dní. Doufáme, že jste si testovací jízdu užili a že se Vám povedlo najít trvalý Friendica server pro Vaši integrovanou sociální komunikaci. List veřejně dostupných serverů je k dispozici na http://dir.friendica.com/siteinfo - a pro více informací, jak si vytvořit svůj vlastní server, navštivte stránky projektu Friendica na adrese http://friendica.com." + +#: ../../addon/pageheader/pageheader.php:50 +msgid "\"pageheader\" Settings" +msgstr "Nastavení záhlaví stránky" + +#: ../../addon/pageheader/pageheader.php:68 +msgid "pageheader Settings saved." +msgstr "Nastavení záhlaví stránky uloženo." + +#: ../../addon/ijpost/ijpost.php:39 +msgid "Post to Insanejournal" +msgstr "Odeslat na Insanejournal" + +#: ../../addon/ijpost/ijpost.php:70 +msgid "InsaneJournal Post Settings" +msgstr "Nastavení příspěvků pro InsaneJournal" + +#: ../../addon/ijpost/ijpost.php:72 +msgid "Enable InsaneJournal Post Plugin" +msgstr "Povolit Insanejournal plugin" + +#: ../../addon/ijpost/ijpost.php:77 +msgid "InsaneJournal username" +msgstr "Insanejournal uživatelské jméno" + +#: ../../addon/ijpost/ijpost.php:82 +msgid "InsaneJournal password" +msgstr "Insanejournal heslo" + +#: ../../addon/ijpost/ijpost.php:87 +msgid "Post to InsaneJournal by default" +msgstr "Defaultně zasílat příspěvky na InsaneJournal" + +#: ../../addon/jappixmini/jappixmini.php:266 +msgid "Jappix Mini addon settings" +msgstr "Nastavení rozšíření Jappix Mini" + +#: ../../addon/jappixmini/jappixmini.php:268 +msgid "Activate addon" +msgstr "Aktivovat rozšíření" + +#: ../../addon/jappixmini/jappixmini.php:271 +msgid "" +"Do not insert the Jappixmini Chat-Widget into the webinterface" +msgstr "Nevlkádejte Jappixmini Chat-Widget do webového rozhraní" + +#: ../../addon/jappixmini/jappixmini.php:274 +msgid "Jabber username" +msgstr "Jabber uživatelské jméno" + +#: ../../addon/jappixmini/jappixmini.php:277 +msgid "Jabber server" +msgstr "Jabber server" + +#: ../../addon/jappixmini/jappixmini.php:281 +msgid "Jabber BOSH host" +msgstr "" + +#: ../../addon/jappixmini/jappixmini.php:285 +msgid "Jabber password" +msgstr "" + +#: ../../addon/jappixmini/jappixmini.php:290 +msgid "Encrypt Jabber password with Friendica password (recommended)" +msgstr "" + +#: ../../addon/jappixmini/jappixmini.php:293 +msgid "Friendica password" +msgstr "Friendica heslo" + +#: ../../addon/jappixmini/jappixmini.php:296 +msgid "Approve subscription requests from Friendica contacts automatically" +msgstr "" + +#: ../../addon/jappixmini/jappixmini.php:299 +msgid "Subscribe to Friendica contacts automatically" +msgstr "" + +#: ../../addon/jappixmini/jappixmini.php:302 +msgid "Purge internal list of jabber addresses of contacts" +msgstr "" + +#: ../../addon/jappixmini/jappixmini.php:308 +msgid "Add contact" +msgstr "Přidat kontakt" + +#: ../../addon/viewsrc/viewsrc.php:37 +msgid "View Source" +msgstr "Zobrazit zdroj" + +#: ../../addon/statusnet/statusnet.php:134 msgid "Post to StatusNet" msgstr "Poslat příspěvek na StatusNet" -#: ../../addon/statusnet/statusnet.php:175 +#: ../../addon/statusnet/statusnet.php:176 msgid "" "Please contact your site administrator.
    The provided API URL is not " "valid." -msgstr "" -"Obraťte se na administratora webu.
    Poskytnutý odkaz na API není platný." +msgstr "Obraťte se na administratora webu.
    Poskytnutý odkaz na API není platný." -#: ../../addon/statusnet/statusnet.php:203 +#: ../../addon/statusnet/statusnet.php:204 msgid "We could not contact the StatusNet API with the Path you entered." -msgstr "" -"S cestou, kterou jste zadali, se nebylo možné spojit s API StatusNetu." +msgstr "S cestou, kterou jste zadali, se nebylo možné spojit s API StatusNetu." -#: ../../addon/statusnet/statusnet.php:230 +#: ../../addon/statusnet/statusnet.php:232 msgid "StatusNet settings updated." msgstr "Nastavení StatusNetu aktualizováno." -#: ../../addon/statusnet/statusnet.php:253 +#: ../../addon/statusnet/statusnet.php:257 msgid "StatusNet Posting Settings" msgstr "Nastavení zasílání příspěvků na StatusNet " -#: ../../addon/statusnet/statusnet.php:267 +#: ../../addon/statusnet/statusnet.php:271 msgid "Globally Available StatusNet OAuthKeys" msgstr "Globálně dostupné StatusNet OAuth klíče" -#: ../../addon/statusnet/statusnet.php:268 +#: ../../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 "" -"Jsou dostupné přednastavené OAuth páry klíčů pro některé servery StatusNetu." -" Pokud používáte některý z nich, použijte toto přihlášení. Pokud ne, " -"neváhejte se připojit k jiné instanci StatusNet (viz níže)." +msgstr "Jsou dostupné přednastavené OAuth páry klíčů pro některé servery StatusNetu. Pokud používáte některý z nich, použijte toto přihlášení. Pokud ne, neváhejte se připojit k jiné instanci StatusNet (viz níže)." -#: ../../addon/statusnet/statusnet.php:276 +#: ../../addon/statusnet/statusnet.php:280 msgid "Provide your own OAuth Credentials" msgstr "Uveďte své vlastní OAuth přihlašovací údaje" -#: ../../addon/statusnet/statusnet.php:277 +#: ../../addon/statusnet/statusnet.php:281 msgid "" -"No consumer key pair for StatusNet found. Register your Friendika Account as" +"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 " -"Friendika installation at your favorited StatusNet installation." -msgstr "" -"Nenalezen žádný consumer pár klíčů pro StatusNet. Zaregistrujte svůj " -"Friendika účet jako desktopový klient na svém účtu StatusNetu, zkopírujte " -"níže consumer pár klíčů a zadejte API base root.
    Než si zaregistrujete " -"svůj vlastní pár klíčů OAuth, zjistěte si od administrátora, zda-li už " -"náhodou na tento Friendika server nepřidal pár klíčů pro vámi požadovanou " -"instalaci StatusNetu." +"Friendica installation at your favorited StatusNet installation." +msgstr "Nenalezen žádný spotřebitelský páru klíčů pro StatusNet. Zaregistrujte si svůj účet Friendica jako desktopový klient ve Vašem účtu StatusNet, zkopírujte si sem spotřebitelský páru klíčů a vložte API base root.
    Předtím, než si zaregistrujete Váš vlastní pár klíčů OAuth, zjistěte si od Friendica administrátora, zda-li již existuje pár klíčů pro tuto instalaci Friendica pro Vaši oblíbenou StatusNet instalaci." -#: ../../addon/statusnet/statusnet.php:279 +#: ../../addon/statusnet/statusnet.php:283 msgid "OAuth Consumer Key" msgstr "OAuth Consumer Key" -#: ../../addon/statusnet/statusnet.php:282 +#: ../../addon/statusnet/statusnet.php:286 msgid "OAuth Consumer Secret" msgstr "OAuth Consumer Secret" -#: ../../addon/statusnet/statusnet.php:285 +#: ../../addon/statusnet/statusnet.php:289 msgid "Base API Path (remember the trailing /)" msgstr "Cesta k Base API (nezapomeňte na koncový /)" -#: ../../addon/statusnet/statusnet.php:306 +#: ../../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 "" -"Chcete-li připojit k vašemu účtu StatusNet klikněte na tlačítko níže, abyste" -" dostati bezpečnostní kód ze StatusNetu, který musíte zkopírovat do " -"vstupního pole níže a odelat formulář. Pouze Vaše veřejné " -"příspěvky budou zveřejněny na StatusNetu." +msgstr "Chcete-li připojit k vašemu účtu StatusNet klikněte na tlačítko níže, abyste dostati bezpečnostní kód ze StatusNetu, který musíte zkopírovat do vstupního pole níže a odelat formulář. Pouze Vaše veřejné příspěvky budou zveřejněny na StatusNetu." -#: ../../addon/statusnet/statusnet.php:307 +#: ../../addon/statusnet/statusnet.php:311 msgid "Log in with StatusNet" msgstr "Přihlásit se s StatusNet" -#: ../../addon/statusnet/statusnet.php:309 +#: ../../addon/statusnet/statusnet.php:313 msgid "Copy the security code from StatusNet here" msgstr "Zkopírujte sem bezpečnostní kód ze StatusNet" -#: ../../addon/statusnet/statusnet.php:315 +#: ../../addon/statusnet/statusnet.php:319 msgid "Cancel Connection Process" msgstr "Zrušit připojování" -#: ../../addon/statusnet/statusnet.php:317 +#: ../../addon/statusnet/statusnet.php:321 msgid "Current StatusNet API is" msgstr "Aktuální StatusNet API je" -#: ../../addon/statusnet/statusnet.php:318 +#: ../../addon/statusnet/statusnet.php:322 msgid "Cancel StatusNet Connection" msgstr "Zrušit StatusNet připojení" -#: ../../addon/statusnet/statusnet.php:329 ../../addon/twitter/twitter.php:180 +#: ../../addon/statusnet/statusnet.php:333 ../../addon/twitter/twitter.php:189 msgid "Currently connected to: " msgstr "V současné době připojen k:" -#: ../../addon/statusnet/statusnet.php:330 +#: ../../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 "" -"Je-li povoleno, všechny Vaše veřejné příspěvky mohou být " -"zaslány na související StatusNet účet. Můžete si vybrat, zda-li toto bude " -"výchozí nastavení (zde), nebo budete mít možnost si vybrat požadované " -"chování při psaní každého příspěvku." +msgstr "Je-li povoleno, všechny Vaše veřejné příspěvky mohou být zaslány na související StatusNet účet. Můžete si vybrat, zda-li toto bude výchozí nastavení (zde), nebo budete mít možnost si vybrat požadované chování při psaní každého příspěvku." -#: ../../addon/statusnet/statusnet.php:332 +#: ../../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 "Upozornění: Z důvodů Vašeho nastavení ochrany soukromí ( Skrýt Vaše profilové detaily před neznámými čtenáři?) \nodkaz potenciálně zahrnutý ve Vašich veřejných příspěvcích poslaných do sítě StatusNet přesměruje návštěvníky na prázdnou stránku informující návštěvníky, že přístup k vašemu profilu je omezen." + +#: ../../addon/statusnet/statusnet.php:339 msgid "Allow posting to StatusNet" msgstr "Povolit zasílání příspěvků na StatusNet" -#: ../../addon/statusnet/statusnet.php:335 +#: ../../addon/statusnet/statusnet.php:342 msgid "Send public postings to StatusNet by default" msgstr "Standardně poslílat veřejné příspěvky na StatusNet" -#: ../../addon/statusnet/statusnet.php:340 ../../addon/twitter/twitter.php:191 +#: ../../addon/statusnet/statusnet.php:345 +msgid "Send linked #-tags and @-names to StatusNet" +msgstr "Poslat propojené #-tagy a @-jména na StatusNet" + +#: ../../addon/statusnet/statusnet.php:350 ../../addon/twitter/twitter.php:206 msgid "Clear OAuth configuration" msgstr "Vymazat konfiguraci OAuth" -#: ../../addon/statusnet/statusnet.php:460 +#: ../../addon/statusnet/statusnet.php:568 msgid "API URL" msgstr "API URL" -#: ../../addon/statusnet/statusnet.php:461 -msgid "Consumer Secret" -msgstr "Consumer Secret" +#: ../../addon/infiniteimprobabilitydrive/infiniteimprobabilitydrive.php:19 +msgid "Infinite Improbability Drive" +msgstr "Infinite Improbability Drive" -#: ../../addon/statusnet/statusnet.php:462 -msgid "Consumer Key" -msgstr "Consumer Key" +#: ../../addon/tumblr/tumblr.php:36 +msgid "Post to Tumblr" +msgstr "Příspěvek na Tumbir" -#: ../../addon/piwik/piwik.php:77 +#: ../../addon/tumblr/tumblr.php:67 +msgid "Tumblr Post Settings" +msgstr "Nastavení příspěvků na Tumbir" + +#: ../../addon/tumblr/tumblr.php:69 +msgid "Enable Tumblr Post Plugin" +msgstr "Povolit rozšíření Tumbir" + +#: ../../addon/tumblr/tumblr.php:74 +msgid "Tumblr login" +msgstr "Tumbir přihlašovací jméno" + +#: ../../addon/tumblr/tumblr.php:79 +msgid "Tumblr password" +msgstr "Tumbir heslo" + +#: ../../addon/tumblr/tumblr.php:84 +msgid "Post to Tumblr by default" +msgstr "Standardně posílat příspěvky na Tumbir" + +#: ../../addon/numfriends/numfriends.php:46 +msgid "Numfriends settings updated." +msgstr "Numfriends nastavení aktualizováno" + +#: ../../addon/numfriends/numfriends.php:77 +msgid "Numfriends Settings" +msgstr "Nastavení Numfriends" + +#: ../../addon/gnot/gnot.php:48 +msgid "Gnot settings updated." +msgstr "Nastavení Gnot aktualizováno." + +#: ../../addon/gnot/gnot.php:79 +msgid "Gnot Settings" +msgstr "Nastavení Gnot" + +#: ../../addon/gnot/gnot.php:81 +msgid "" +"Allows threading of email comment notifications on Gmail and anonymising the" +" subject line." +msgstr "Umožnit řetězení emailových komentářových notifikací na Gmailu a anonymizací řádky předmětu." + +#: ../../addon/gnot/gnot.php:82 +msgid "Enable this plugin/addon?" +msgstr "Povolit tento plugin/rozšíření?" + +#: ../../addon/gnot/gnot.php:97 +#, php-format +msgid "[Friendica:Notify] Comment to conversation #%d" +msgstr "[Friendica:Upozornění] Komentář ke konverzaci #%d" + +#: ../../addon/wppost/wppost.php:42 +msgid "Post to Wordpress" +msgstr "Příspěvky do WordPress" + +#: ../../addon/wppost/wppost.php:76 +msgid "WordPress Post Settings" +msgstr "WordPress Post nastavení" + +#: ../../addon/wppost/wppost.php:78 +msgid "Enable WordPress Post Plugin" +msgstr "Povolit rozšíření na WordPress" + +#: ../../addon/wppost/wppost.php:83 +msgid "WordPress username" +msgstr "WordPress uživatelské jméno" + +#: ../../addon/wppost/wppost.php:88 +msgid "WordPress password" +msgstr "WordPress heslo" + +#: ../../addon/wppost/wppost.php:93 +msgid "WordPress API URL" +msgstr "URL adresa API WordPress" + +#: ../../addon/wppost/wppost.php:98 +msgid "Post to WordPress by default" +msgstr "standardně posílat příspěvky na WordPress" + +#: ../../addon/wppost/wppost.php:103 +msgid "Provide a backlink to the Friendica post" +msgstr "Poskytuje zpětný link na Friendica příspěvek" + +#: ../../addon/wppost/wppost.php:207 +msgid "Read the original post and comment stream on Friendica" +msgstr "Přečíst si originální příspěvek a komentáře na Friendica" + +#: ../../addon/showmore/showmore.php:38 +msgid "\"Show more\" Settings" +msgstr "\"Show more\" nastavení" + +#: ../../addon/showmore/showmore.php:41 +msgid "Enable Show More" +msgstr "Povolit Show more" + +#: ../../addon/showmore/showmore.php:44 +msgid "Cutting posts after how much characters" +msgstr "Oříznout příspěvky po zadaném množství znaků" + +#: ../../addon/showmore/showmore.php:65 +msgid "Show More Settings saved." +msgstr "Nastavení \"Show more\" uloženo." + +#: ../../addon/piwik/piwik.php:79 +msgid "" +"This website is tracked using the Piwik " +"analytics tool." +msgstr "Tato webová stránka je sledována pomocí nástroje pro analýzu Piwik." + +#: ../../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 "Pokud si nepřejete, aby Vaše návštěvy byly takto sledovány, můžete si nastavit cookie, které zastaví sledování dalších návštěv na tomto webu (opt-out)." + +#: ../../addon/piwik/piwik.php:90 msgid "Piwik Base URL" msgstr "Piwik Base adresa URL" -#: ../../addon/piwik/piwik.php:78 +#: ../../addon/piwik/piwik.php:90 +msgid "" +"Absolute path to your Piwik installation. (without protocol (http/s), with " +"trailing slash)" +msgstr "Absolutní cesta k Vaší instalaci Piwik. (bez protokolu (http/s), s koncovým lomítkem)" + +#: ../../addon/piwik/piwik.php:91 msgid "Site ID" msgstr "ID webu" -#: ../../addon/piwik/piwik.php:79 +#: ../../addon/piwik/piwik.php:92 msgid "Show opt-out cookie link?" msgstr "Zobrazit odkaz opt-out cookie?" -#: ../../addon/twitter/twitter.php:70 +#: ../../addon/piwik/piwik.php:93 +msgid "Asynchronous tracking" +msgstr "Asynchronní sledování" + +#: ../../addon/twitter/twitter.php:73 msgid "Post to Twitter" msgstr "Poslat příspěvek na Twitter" -#: ../../addon/twitter/twitter.php:115 +#: ../../addon/twitter/twitter.php:122 msgid "Twitter settings updated." msgstr "Nastavení Twitteru aktualizováno." -#: ../../addon/twitter/twitter.php:137 +#: ../../addon/twitter/twitter.php:146 msgid "Twitter Posting Settings" msgstr "Nastavení zasílání příspěvků na Twitter " -#: ../../addon/twitter/twitter.php:144 +#: ../../addon/twitter/twitter.php:153 msgid "" "No consumer key pair for Twitter found. Please contact your site " "administrator." -msgstr "" -"Nenalezen žádný spotřebitelský páru klíčů pro Twitter. Obraťte se na " -"administrátora webu." +msgstr "Nenalezen žádný spotřebitelský páru klíčů pro Twitter. Obraťte se na administrátora webu." -#: ../../addon/twitter/twitter.php:163 +#: ../../addon/twitter/twitter.php:172 msgid "" -"At this Friendika instance the Twitter plugin was enabled but you have not " +"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 "" -"Na tomto Friendika serveru je Twitter plugin povolen, ale ještě nemáte svůj " -"účet připojen ke svému Twitter účtu. Chcete-li tak učinit, klepnutím na " -"tlačítko níže získejte PIN z Twitteru, který musíte zkopírovat do vstupního " -"pole níže a odešlete formulář. Pouze Vaše veřejné příspěvky" -" budou zveřejněny na Twitteru." +msgstr "Na této Friendica instanci je sice povolen Twitter plugin, ale vy jste si ještě nenastavili svůj Twitter účet. Svůj účet si můžete nastavit kliknutím na tlačítko níže k získání PINu z Vašeho Twitteru, který si zkopírujte do níže uvedeného vstupního pole a odešlete formulář. Pouze vaše veřejné příspěvky budou zaslány na Twitter." -#: ../../addon/twitter/twitter.php:164 +#: ../../addon/twitter/twitter.php:173 msgid "Log in with Twitter" msgstr "Přihlásit se s Twitter" -#: ../../addon/twitter/twitter.php:166 +#: ../../addon/twitter/twitter.php:175 msgid "Copy the PIN from Twitter here" msgstr "Zkopírujte sem PIN z Twitteru" -#: ../../addon/twitter/twitter.php:181 +#: ../../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 "" -"Je-li povoleno, všechny Vaše veřejné příspěvky mohou být " -"zaslány na související Twitter účet. Můžete si vybrat, zda-li toto bude " -"výchozí nastavení (zde), nebo budete mít možnost si vybrat požadované " -"chování při psaní každého příspěvku." +msgstr "Je-li povoleno, všechny Vaše veřejné příspěvky mohou být zaslány na související Twitter účet. Můžete si vybrat, zda-li toto bude výchozí nastavení (zde), nebo budete mít možnost si vybrat požadované chování při psaní každého příspěvku." -#: ../../addon/twitter/twitter.php:183 +#: ../../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 "Upozornění: Z důvodů Vašeho nastavení ochrany soukromí ( Skrýt Vaše profilové detaily před neznámými čtenáři?) \nodkaz potenciálně zahrnutý ve Vašich veřejných příspěvcích poslaných do sítě Twitter přesměruje návštěvníky na prázdnou stránku informující návštěvníky, že přístup k vašemu profilu je omezen." + +#: ../../addon/twitter/twitter.php:195 msgid "Allow posting to Twitter" msgstr "Povolit odesílání na Twitter" -#: ../../addon/twitter/twitter.php:186 +#: ../../addon/twitter/twitter.php:198 msgid "Send public postings to Twitter by default" msgstr "Defaultně zasílat veřejné komentáře na Twitter" -#: ../../addon/twitter/twitter.php:282 +#: ../../addon/twitter/twitter.php:201 +msgid "Send linked #-tags and @-names to Twitter" +msgstr "Poslat propojené #-tagy a @-jména na Twitter" + +#: ../../addon/twitter/twitter.php:396 msgid "Consumer key" msgstr "Consumer key" -#: ../../addon/twitter/twitter.php:283 +#: ../../addon/twitter/twitter.php:397 msgid "Consumer secret" msgstr "Consumer secret" -#: ../../include/profile_advanced.php:23 ../../boot.php:880 -msgid "Gender:" -msgstr "Pohlaví:" +#: ../../addon/irc/irc.php:44 +msgid "IRC Settings" +msgstr "Nastavení IRC" -#: ../../include/profile_advanced.php:36 ../../include/items.php:1137 -msgid "Birthday:" -msgstr "Narozeniny:" +#: ../../addon/irc/irc.php:46 +msgid "Channel(s) to auto connect (comma separated)" +msgstr "Kanál(y) pro automatické připojení(oddělené čárkou)" -#: ../../include/profile_advanced.php:45 +#: ../../addon/irc/irc.php:51 +msgid "Popular Channels (comma separated)" +msgstr "Oblíbené Kanály (oddělené čárkou)" + +#: ../../addon/irc/irc.php:69 +msgid "IRC settings saved." +msgstr "Nastavení IRC uloženo." + +#: ../../addon/irc/irc.php:74 +msgid "IRC Chatroom" +msgstr "IRC Místnost" + +#: ../../addon/irc/irc.php:96 +msgid "Popular Channels" +msgstr "Oblíbené kanály" + +#: ../../addon/fromapp/fromapp.php:38 +msgid "Fromapp settings updated." +msgstr "" + +#: ../../addon/fromapp/fromapp.php:64 +msgid "FromApp Settings" +msgstr "" + +#: ../../addon/fromapp/fromapp.php:66 +msgid "" +"The application name you would like to show your posts originating from." +msgstr "" + +#: ../../addon/fromapp/fromapp.php:70 +msgid "Use this application name even if another application was used." +msgstr "" + +#: ../../addon/blogger/blogger.php:42 +msgid "Post to blogger" +msgstr "Poslat na blogger" + +#: ../../addon/blogger/blogger.php:74 +msgid "Blogger Post Settings" +msgstr "Nastavení příspěvků na Blogger " + +#: ../../addon/blogger/blogger.php:76 +msgid "Enable Blogger Post Plugin" +msgstr "Povolit Blogger Post Plugin" + +#: ../../addon/blogger/blogger.php:81 +msgid "Blogger username" +msgstr "Blogger uživatelské jméno" + +#: ../../addon/blogger/blogger.php:86 +msgid "Blogger password" +msgstr "Blogger heslo" + +#: ../../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 "Defaultně zaslat na Blogger" + +#: ../../addon/posterous/posterous.php:37 +msgid "Post to Posterous" +msgstr "Poslat na Posterous" + +#: ../../addon/posterous/posterous.php:70 +msgid "Posterous Post Settings" +msgstr "Posterous nastavení příspěvků" + +#: ../../addon/posterous/posterous.php:72 +msgid "Enable Posterous Post Plugin" +msgstr "Umožnit Posterous Plugin" + +#: ../../addon/posterous/posterous.php:77 +msgid "Posterous login" +msgstr "Posterous login" + +#: ../../addon/posterous/posterous.php:82 +msgid "Posterous password" +msgstr "Posterous heslo" + +#: ../../addon/posterous/posterous.php:87 +msgid "Posterous site ID" +msgstr "Posterous site ID" + +#: ../../addon/posterous/posterous.php:92 +msgid "Posterous API token" +msgstr "Posterous API token" + +#: ../../addon/posterous/posterous.php:97 +msgid "Post to Posterous by default" +msgstr "Příspěvky standardně posílat na Posterous" + +#: ../../view/theme/cleanzero/config.php:82 +#: ../../view/theme/diabook/config.php:192 +#: ../../view/theme/quattro/config.php:55 ../../view/theme/dispy/config.php:72 +msgid "Theme settings" +msgstr "Nastavení téma" + +#: ../../view/theme/cleanzero/config.php:83 +msgid "Set resize level for images in posts and comments (width and height)" +msgstr "Nastavit velikost fotek v přízpěvcích a komentářích (šířka a výška)" + +#: ../../view/theme/cleanzero/config.php:84 +#: ../../view/theme/diabook/config.php:193 +#: ../../view/theme/dispy/config.php:73 +msgid "Set font-size for posts and comments" +msgstr "Nastav velikost písma pro přízpěvky a komentáře." + +#: ../../view/theme/cleanzero/config.php:85 +msgid "Set theme width" +msgstr "Nastavení šířku grafické šablony" + +#: ../../view/theme/cleanzero/config.php:86 +#: ../../view/theme/quattro/config.php:57 +msgid "Color scheme" +msgstr "Barevné schéma" + +#: ../../view/theme/diabook/theme.php:127 ../../include/nav.php:49 +#: ../../include/nav.php:115 +msgid "Your posts and conversations" +msgstr "Vaše příspěvky a konverzace" + +#: ../../view/theme/diabook/theme.php:128 ../../include/nav.php:50 +msgid "Your profile page" +msgstr "Vaše profilová stránka" + +#: ../../view/theme/diabook/theme.php:129 +msgid "Your contacts" +msgstr "Vaše kontakty" + +#: ../../view/theme/diabook/theme.php:130 ../../include/nav.php:51 +msgid "Your photos" +msgstr "Vaše fotky" + +#: ../../view/theme/diabook/theme.php:131 ../../include/nav.php:52 +msgid "Your events" +msgstr "Vaše události" + +#: ../../view/theme/diabook/theme.php:132 ../../include/nav.php:53 +msgid "Personal notes" +msgstr "Osobní poznámky" + +#: ../../view/theme/diabook/theme.php:132 ../../include/nav.php:53 +msgid "Your personal photos" +msgstr "Vaše osobní fotky" + +#: ../../view/theme/diabook/theme.php:134 +#: ../../view/theme/diabook/theme.php:643 +#: ../../view/theme/diabook/theme.php:747 +#: ../../view/theme/diabook/config.php:201 +msgid "Community Pages" +msgstr "Komunitní stránky" + +#: ../../view/theme/diabook/theme.php:490 +#: ../../view/theme/diabook/theme.php:749 +#: ../../view/theme/diabook/config.php:203 +msgid "Community Profiles" +msgstr "Komunitní profily" + +#: ../../view/theme/diabook/theme.php:511 +#: ../../view/theme/diabook/theme.php:754 +#: ../../view/theme/diabook/config.php:208 +msgid "Last users" +msgstr "Poslední uživatelé" + +#: ../../view/theme/diabook/theme.php:540 +#: ../../view/theme/diabook/theme.php:756 +#: ../../view/theme/diabook/config.php:210 +msgid "Last likes" +msgstr "Poslední líbí/nelíbí" + +#: ../../view/theme/diabook/theme.php:585 +#: ../../view/theme/diabook/theme.php:755 +#: ../../view/theme/diabook/config.php:209 +msgid "Last photos" +msgstr "Poslední fotografie" + +#: ../../view/theme/diabook/theme.php:622 +#: ../../view/theme/diabook/theme.php:752 +#: ../../view/theme/diabook/config.php:206 +msgid "Find Friends" +msgstr "Nalézt Přátele" + +#: ../../view/theme/diabook/theme.php:623 +msgid "Local Directory" +msgstr "Lokální Adresář" + +#: ../../view/theme/diabook/theme.php:625 ../../include/contact_widgets.php:35 +msgid "Similar Interests" +msgstr "Podobné zájmy" + +#: ../../view/theme/diabook/theme.php:627 ../../include/contact_widgets.php:37 +msgid "Invite Friends" +msgstr "Pozvat přátele" + +#: ../../view/theme/diabook/theme.php:678 +#: ../../view/theme/diabook/theme.php:748 +#: ../../view/theme/diabook/config.php:202 +msgid "Earth Layers" +msgstr "Earth Layers" + +#: ../../view/theme/diabook/theme.php:683 +msgid "Set zoomfactor for Earth Layers" +msgstr "Nastavit faktor přiblížení pro Earth Layers" + +#: ../../view/theme/diabook/theme.php:684 +#: ../../view/theme/diabook/config.php:199 +msgid "Set longitude (X) for Earth Layers" +msgstr "Nastavit zeměpistnou délku (X) pro Earth Layers" + +#: ../../view/theme/diabook/theme.php:685 +#: ../../view/theme/diabook/config.php:200 +msgid "Set latitude (Y) for Earth Layers" +msgstr "Nastavit zeměpistnou šířku (X) pro Earth Layers" + +#: ../../view/theme/diabook/theme.php:698 +#: ../../view/theme/diabook/theme.php:750 +#: ../../view/theme/diabook/config.php:204 +msgid "Help or @NewHere ?" +msgstr "Pomoc nebo @ProNováčky ?" + +#: ../../view/theme/diabook/theme.php:705 +#: ../../view/theme/diabook/theme.php:751 +#: ../../view/theme/diabook/config.php:205 +msgid "Connect Services" +msgstr "Propojené služby" + +#: ../../view/theme/diabook/theme.php:712 +#: ../../view/theme/diabook/theme.php:753 +msgid "Last Tweets" +msgstr "Poslední tweety" + +#: ../../view/theme/diabook/theme.php:715 +#: ../../view/theme/diabook/config.php:197 +msgid "Set twitter search term" +msgstr "Nastavit vyhledávací frázi na twitteru" + +#: ../../view/theme/diabook/theme.php:735 +#: ../../view/theme/diabook/theme.php:736 +#: ../../view/theme/diabook/theme.php:737 +#: ../../view/theme/diabook/theme.php:738 +#: ../../view/theme/diabook/theme.php:739 +#: ../../view/theme/diabook/theme.php:740 +#: ../../view/theme/diabook/theme.php:741 +#: ../../view/theme/diabook/theme.php:742 +#: ../../view/theme/diabook/theme.php:743 +#: ../../view/theme/diabook/theme.php:744 ../../include/acl_selectors.php:288 +msgid "don't show" +msgstr "nikdy nezobrazit" + +#: ../../view/theme/diabook/theme.php:735 +#: ../../view/theme/diabook/theme.php:736 +#: ../../view/theme/diabook/theme.php:737 +#: ../../view/theme/diabook/theme.php:738 +#: ../../view/theme/diabook/theme.php:739 +#: ../../view/theme/diabook/theme.php:740 +#: ../../view/theme/diabook/theme.php:741 +#: ../../view/theme/diabook/theme.php:742 +#: ../../view/theme/diabook/theme.php:743 +#: ../../view/theme/diabook/theme.php:744 ../../include/acl_selectors.php:287 +msgid "show" +msgstr "zobrazit" + +#: ../../view/theme/diabook/theme.php:745 +msgid "Show/hide boxes at right-hand column:" +msgstr "Zobrazit/skrýt boxy na pravém sloupci:" + +#: ../../view/theme/diabook/config.php:194 +#: ../../view/theme/dispy/config.php:74 +msgid "Set line-height for posts and comments" +msgstr "Nastav výšku řádku pro přízpěvky a komentáře." + +#: ../../view/theme/diabook/config.php:195 +msgid "Set resolution for middle column" +msgstr "Nastav rozlišení pro prostřední sloupec" + +#: ../../view/theme/diabook/config.php:196 +msgid "Set color scheme" +msgstr "Nastavení barevného schematu" + +#: ../../view/theme/diabook/config.php:198 +msgid "Set zoomfactor for Earth Layer" +msgstr "Nastavit přiblížení pro Earth Layer" + +#: ../../view/theme/diabook/config.php:207 +msgid "Last tweets" +msgstr "Poslední tweety" + +#: ../../view/theme/quattro/config.php:56 +msgid "Alignment" +msgstr "Zarovnání" + +#: ../../view/theme/quattro/config.php:56 +msgid "Left" +msgstr "Vlevo" + +#: ../../view/theme/quattro/config.php:56 +msgid "Center" +msgstr "Uprostřed" + +#: ../../view/theme/dispy/config.php:75 +msgid "Set colour scheme" +msgstr "Nastavit barevné schéma" + +#: ../../include/profile_advanced.php:22 msgid "j F, Y" msgstr "j F, Y" -#: ../../include/profile_advanced.php:46 +#: ../../include/profile_advanced.php:23 msgid "j F" msgstr "j F" -#: ../../include/profile_advanced.php:59 +#: ../../include/profile_advanced.php:30 +msgid "Birthday:" +msgstr "Narozeniny:" + +#: ../../include/profile_advanced.php:34 msgid "Age:" msgstr "Věk:" -#: ../../include/profile_advanced.php:70 -msgid " Status:" -msgstr " Status:" +#: ../../include/profile_advanced.php:43 +#, php-format +msgid "for %1$d %2$s" +msgstr "pro %1$d %2$s" -#: ../../include/profile_advanced.php:103 ../../boot.php:886 -msgid "Homepage:" -msgstr "Domácí stránka:" +#: ../../include/profile_advanced.php:52 +msgid "Tags:" +msgstr "Štítky:" -#: ../../include/profile_advanced.php:127 +#: ../../include/profile_advanced.php:56 msgid "Religion:" msgstr "Náboženství:" -#: ../../include/profile_advanced.php:138 -msgid "About:" -msgstr "O mě:" - -#: ../../include/profile_advanced.php:150 +#: ../../include/profile_advanced.php:60 msgid "Hobbies/Interests:" msgstr "Koníčky/zájmy:" -#: ../../include/profile_advanced.php:162 +#: ../../include/profile_advanced.php:67 msgid "Contact information and Social Networks:" msgstr "Kontaktní informace a sociální sítě:" -#: ../../include/profile_advanced.php:174 +#: ../../include/profile_advanced.php:69 msgid "Musical interests:" msgstr "Hudební vkus:" -#: ../../include/profile_advanced.php:186 +#: ../../include/profile_advanced.php:71 msgid "Books, literature:" msgstr "Knihy, literatura:" -#: ../../include/profile_advanced.php:198 +#: ../../include/profile_advanced.php:73 msgid "Television:" msgstr "Televize:" -#: ../../include/profile_advanced.php:210 +#: ../../include/profile_advanced.php:75 msgid "Film/dance/culture/entertainment:" msgstr "Film/tanec/kultura/zábava:" -#: ../../include/profile_advanced.php:222 +#: ../../include/profile_advanced.php:77 msgid "Love/Romance:" msgstr "Láska/romance" -#: ../../include/profile_advanced.php:234 +#: ../../include/profile_advanced.php:79 msgid "Work/employment:" msgstr "Práce/zaměstnání:" -#: ../../include/profile_advanced.php:246 +#: ../../include/profile_advanced.php:81 msgid "School/education:" msgstr "Škola/vzdělávání:" @@ -3819,29 +7340,41 @@ msgstr "OK, pravděpodobně neškodný" msgid "Reputable, has my trust" msgstr "Renomovaný, má mou důvěru" -#: ../../include/contact_selectors.php:55 +#: ../../include/contact_selectors.php:56 msgid "Frequently" msgstr "Často" -#: ../../include/contact_selectors.php:56 +#: ../../include/contact_selectors.php:57 msgid "Hourly" msgstr "každou hodinu" -#: ../../include/contact_selectors.php:57 +#: ../../include/contact_selectors.php:58 msgid "Twice daily" msgstr "Dvakrát denně" -#: ../../include/contact_selectors.php:58 -msgid "Daily" -msgstr "denně" +#: ../../include/contact_selectors.php:77 +msgid "OStatus" +msgstr "OStatus" -#: ../../include/contact_selectors.php:59 -msgid "Weekly" -msgstr "Týdenně" +#: ../../include/contact_selectors.php:78 +msgid "RSS/Atom" +msgstr "RSS/Atom" -#: ../../include/contact_selectors.php:60 -msgid "Monthly" -msgstr "Měsíčně" +#: ../../include/contact_selectors.php:82 +msgid "Zot!" +msgstr "Zot!" + +#: ../../include/contact_selectors.php:83 +msgid "LinkedIn" +msgstr "LinkedIn" + +#: ../../include/contact_selectors.php:84 +msgid "XMPP/IM" +msgstr "XMPP/IM" + +#: ../../include/contact_selectors.php:85 +msgid "MySpace" +msgstr "MySpace" #: ../../include/profile_selectors.php:6 msgid "Male" @@ -3899,195 +7432,228 @@ msgstr "Jiné" msgid "Undecided" msgstr "Nerozhodnuto" -#: ../../include/profile_selectors.php:19 +#: ../../include/profile_selectors.php:23 msgid "Males" msgstr "Muži" -#: ../../include/profile_selectors.php:19 +#: ../../include/profile_selectors.php:23 msgid "Females" msgstr "Ženy" -#: ../../include/profile_selectors.php:19 +#: ../../include/profile_selectors.php:23 msgid "Gay" msgstr "Gay" -#: ../../include/profile_selectors.php:19 +#: ../../include/profile_selectors.php:23 msgid "Lesbian" msgstr "Lesbička" -#: ../../include/profile_selectors.php:19 +#: ../../include/profile_selectors.php:23 msgid "No Preference" msgstr "Bez preferencí" -#: ../../include/profile_selectors.php:19 +#: ../../include/profile_selectors.php:23 msgid "Bisexual" msgstr "Bisexuál" -#: ../../include/profile_selectors.php:19 +#: ../../include/profile_selectors.php:23 msgid "Autosexual" msgstr "Autosexuál" -#: ../../include/profile_selectors.php:19 +#: ../../include/profile_selectors.php:23 msgid "Abstinent" msgstr "Abstinent" -#: ../../include/profile_selectors.php:19 +#: ../../include/profile_selectors.php:23 msgid "Virgin" msgstr "panic/panna" -#: ../../include/profile_selectors.php:19 +#: ../../include/profile_selectors.php:23 msgid "Deviant" msgstr "Deviant" -#: ../../include/profile_selectors.php:19 +#: ../../include/profile_selectors.php:23 msgid "Fetish" msgstr "Fetišista" -#: ../../include/profile_selectors.php:19 +#: ../../include/profile_selectors.php:23 msgid "Oodles" msgstr "Hodně" -#: ../../include/profile_selectors.php:19 +#: ../../include/profile_selectors.php:23 msgid "Nonsexual" msgstr "Nesexuální" -#: ../../include/profile_selectors.php:33 +#: ../../include/profile_selectors.php:42 msgid "Single" msgstr "Svobodný" -#: ../../include/profile_selectors.php:33 +#: ../../include/profile_selectors.php:42 msgid "Lonely" msgstr "Osamnělý" -#: ../../include/profile_selectors.php:33 +#: ../../include/profile_selectors.php:42 msgid "Available" msgstr "Dostupný" -#: ../../include/profile_selectors.php:33 +#: ../../include/profile_selectors.php:42 msgid "Unavailable" msgstr "Nedostupný" -#: ../../include/profile_selectors.php:33 +#: ../../include/profile_selectors.php:42 +msgid "Has crush" +msgstr "Zamilovaný" + +#: ../../include/profile_selectors.php:42 +msgid "Infatuated" +msgstr "Zabouchnutý" + +#: ../../include/profile_selectors.php:42 msgid "Dating" msgstr "Seznamující se" -#: ../../include/profile_selectors.php:33 +#: ../../include/profile_selectors.php:42 msgid "Unfaithful" msgstr "Nevěrný" -#: ../../include/profile_selectors.php:33 +#: ../../include/profile_selectors.php:42 msgid "Sex Addict" msgstr "Závislý na sexu" -#: ../../include/profile_selectors.php:33 +#: ../../include/profile_selectors.php:42 ../../include/user.php:278 +#: ../../include/user.php:282 msgid "Friends" msgstr "Přátelé" -#: ../../include/profile_selectors.php:33 +#: ../../include/profile_selectors.php:42 msgid "Friends/Benefits" msgstr "Přátelé / výhody" -#: ../../include/profile_selectors.php:33 +#: ../../include/profile_selectors.php:42 msgid "Casual" msgstr "Ležérní" -#: ../../include/profile_selectors.php:33 +#: ../../include/profile_selectors.php:42 msgid "Engaged" msgstr "Zadaný" -#: ../../include/profile_selectors.php:33 +#: ../../include/profile_selectors.php:42 msgid "Married" msgstr "Ženatý/vdaná" -#: ../../include/profile_selectors.php:33 +#: ../../include/profile_selectors.php:42 +msgid "Imaginarily married" +msgstr "Pomyslně ženatý/vdaná" + +#: ../../include/profile_selectors.php:42 msgid "Partners" msgstr "Partneři" -#: ../../include/profile_selectors.php:33 +#: ../../include/profile_selectors.php:42 msgid "Cohabiting" msgstr "Žijící ve společné domácnosti" -#: ../../include/profile_selectors.php:33 +#: ../../include/profile_selectors.php:42 +msgid "Common law" +msgstr "Zvykové právo" + +#: ../../include/profile_selectors.php:42 msgid "Happy" msgstr "Šťastný" -#: ../../include/profile_selectors.php:33 -msgid "Not Looking" +#: ../../include/profile_selectors.php:42 +msgid "Not looking" msgstr "Nehledající" -#: ../../include/profile_selectors.php:33 +#: ../../include/profile_selectors.php:42 msgid "Swinger" msgstr "Swinger" -#: ../../include/profile_selectors.php:33 +#: ../../include/profile_selectors.php:42 msgid "Betrayed" msgstr "Zrazen" -#: ../../include/profile_selectors.php:33 +#: ../../include/profile_selectors.php:42 msgid "Separated" msgstr "Odloučený" -#: ../../include/profile_selectors.php:33 +#: ../../include/profile_selectors.php:42 msgid "Unstable" msgstr "Nestálý" -#: ../../include/profile_selectors.php:33 +#: ../../include/profile_selectors.php:42 msgid "Divorced" msgstr "Rozvedený(á)" -#: ../../include/profile_selectors.php:33 +#: ../../include/profile_selectors.php:42 +msgid "Imaginarily divorced" +msgstr "Pomyslně rozvedený" + +#: ../../include/profile_selectors.php:42 msgid "Widowed" msgstr "Ovdovělý(á)" -#: ../../include/profile_selectors.php:33 +#: ../../include/profile_selectors.php:42 msgid "Uncertain" msgstr "Nejistý" -#: ../../include/profile_selectors.php:33 -msgid "Complicated" -msgstr "Komplikovaný" +#: ../../include/profile_selectors.php:42 +msgid "It's complicated" +msgstr "Je to složité" -#: ../../include/profile_selectors.php:33 +#: ../../include/profile_selectors.php:42 msgid "Don't care" msgstr "Nezajímá" -#: ../../include/profile_selectors.php:33 +#: ../../include/profile_selectors.php:42 msgid "Ask me" msgstr "Zeptej se mě" -#: ../../include/event.php:11 -msgid "l F d, Y \\@ g:i A" -msgstr "l F d, Y \\@ g:i A" - -#: ../../include/event.php:17 +#: ../../include/event.php:20 ../../include/bb2diaspora.php:396 msgid "Starts:" msgstr "Začíná:" -#: ../../include/event.php:27 +#: ../../include/event.php:30 ../../include/bb2diaspora.php:404 msgid "Finishes:" msgstr "Končí:" -#: ../../include/text.php:229 +#: ../../include/delivery.php:457 ../../include/notifier.php:703 +msgid "(no subject)" +msgstr "(Bez předmětu)" + +#: ../../include/Scrape.php:576 +msgid " on Last.fm" +msgstr " na Last.fm" + +#: ../../include/text.php:243 msgid "prev" msgstr "předchozí" -#: ../../include/text.php:231 +#: ../../include/text.php:245 msgid "first" msgstr "první" -#: ../../include/text.php:260 +#: ../../include/text.php:274 msgid "last" msgstr "poslední" -#: ../../include/text.php:263 +#: ../../include/text.php:277 msgid "next" msgstr "další" -#: ../../include/text.php:542 +#: ../../include/text.php:295 +msgid "newer" +msgstr "novější" + +#: ../../include/text.php:299 +msgid "older" +msgstr "starší" + +#: ../../include/text.php:597 msgid "No contacts" msgstr "Žádné kontakty" -#: ../../include/text.php:550 +#: ../../include/text.php:606 #, php-format msgid "%d Contact" msgid_plural "%d Contacts" @@ -4095,524 +7661,1150 @@ msgstr[0] "%d kontakt" msgstr[1] "%d kontaktů" msgstr[2] "%d kontaktů" -#: ../../include/text.php:711 -msgid "Monday" -msgstr "Pondělí" +#: ../../include/text.php:719 +msgid "poke" +msgstr "" -#: ../../include/text.php:711 -msgid "Tuesday" -msgstr "Úterý" +#: ../../include/text.php:719 ../../include/conversation.php:210 +msgid "poked" +msgstr "" -#: ../../include/text.php:711 -msgid "Wednesday" -msgstr "Středa" +#: ../../include/text.php:720 +msgid "ping" +msgstr "cinknout" -#: ../../include/text.php:711 -msgid "Thursday" -msgstr "Čtvrtek" +#: ../../include/text.php:720 +msgid "pinged" +msgstr "cinkut" -#: ../../include/text.php:711 -msgid "Friday" -msgstr "Pátek" +#: ../../include/text.php:721 +msgid "prod" +msgstr "pobídnout" -#: ../../include/text.php:711 -msgid "Saturday" -msgstr "Sobota" +#: ../../include/text.php:721 +msgid "prodded" +msgstr "pobídnut" -#: ../../include/text.php:711 -msgid "Sunday" -msgstr "Neděle" +#: ../../include/text.php:722 +msgid "slap" +msgstr "dát facku" -#: ../../include/text.php:715 +#: ../../include/text.php:722 +msgid "slapped" +msgstr "být uhozen" + +#: ../../include/text.php:723 +msgid "finger" +msgstr "" + +#: ../../include/text.php:723 +msgid "fingered" +msgstr "" + +#: ../../include/text.php:724 +msgid "rebuff" +msgstr "odmítnout" + +#: ../../include/text.php:724 +msgid "rebuffed" +msgstr "odmítnut" + +#: ../../include/text.php:736 +msgid "happy" +msgstr "šťasný" + +#: ../../include/text.php:737 +msgid "sad" +msgstr "smutný" + +#: ../../include/text.php:738 +msgid "mellow" +msgstr "jemný" + +#: ../../include/text.php:739 +msgid "tired" +msgstr "unavený" + +#: ../../include/text.php:740 +msgid "perky" +msgstr "emergický" + +#: ../../include/text.php:741 +msgid "angry" +msgstr "nazlobený" + +#: ../../include/text.php:742 +msgid "stupified" +msgstr "otupen" + +#: ../../include/text.php:743 +msgid "puzzled" +msgstr "popletený" + +#: ../../include/text.php:744 +msgid "interested" +msgstr "zajímavý" + +#: ../../include/text.php:745 +msgid "bitter" +msgstr "hořký" + +#: ../../include/text.php:746 +msgid "cheerful" +msgstr "radnostný" + +#: ../../include/text.php:747 +msgid "alive" +msgstr "naživu" + +#: ../../include/text.php:748 +msgid "annoyed" +msgstr "otráven" + +#: ../../include/text.php:749 +msgid "anxious" +msgstr "znepokojený" + +#: ../../include/text.php:750 +msgid "cranky" +msgstr "mrzutý" + +#: ../../include/text.php:751 +msgid "disturbed" +msgstr "vyrušen" + +#: ../../include/text.php:752 +msgid "frustrated" +msgstr "frustrovaný" + +#: ../../include/text.php:753 +msgid "motivated" +msgstr "motivovaný" + +#: ../../include/text.php:754 +msgid "relaxed" +msgstr "uvolněný" + +#: ../../include/text.php:755 +msgid "surprised" +msgstr "překvapený" + +#: ../../include/text.php:921 msgid "January" msgstr "Ledna" -#: ../../include/text.php:715 +#: ../../include/text.php:921 msgid "February" msgstr "Února" -#: ../../include/text.php:715 +#: ../../include/text.php:921 msgid "March" msgstr "Března" -#: ../../include/text.php:715 +#: ../../include/text.php:921 msgid "April" msgstr "Dubna" -#: ../../include/text.php:715 +#: ../../include/text.php:921 msgid "May" msgstr "Května" -#: ../../include/text.php:715 +#: ../../include/text.php:921 msgid "June" msgstr "Června" -#: ../../include/text.php:715 +#: ../../include/text.php:921 msgid "July" msgstr "Července" -#: ../../include/text.php:715 +#: ../../include/text.php:921 msgid "August" msgstr "Srpna" -#: ../../include/text.php:715 +#: ../../include/text.php:921 msgid "September" msgstr "Září" -#: ../../include/text.php:715 +#: ../../include/text.php:921 msgid "October" msgstr "Října" -#: ../../include/text.php:715 +#: ../../include/text.php:921 msgid "November" msgstr "Listopadu" -#: ../../include/text.php:715 +#: ../../include/text.php:921 msgid "December" -msgstr "Prosince" +msgstr "Prosinec" -#: ../../include/text.php:778 +#: ../../include/text.php:1007 msgid "bytes" msgstr "bytů" -#: ../../include/text.php:861 +#: ../../include/text.php:1034 ../../include/text.php:1046 +msgid "Click to open/close" +msgstr "Klikněte pro otevření/zavření" + +#: ../../include/text.php:1219 ../../include/user.php:236 +msgid "default" +msgstr "standardní" + +#: ../../include/text.php:1231 msgid "Select an alternate language" msgstr "Vyběr alternativního jazyka" -#: ../../include/diaspora.php:309 +#: ../../include/text.php:1441 +msgid "activity" +msgstr "aktivita" + +#: ../../include/text.php:1444 +msgid "post" +msgstr "příspěvek" + +#: ../../include/text.php:1599 +msgid "Item filed" +msgstr "Položka vyplněna" + +#: ../../include/diaspora.php:691 msgid "Sharing notification from Diaspora network" msgstr "Sdílení oznámení ze sítě Diaspora" -#: ../../include/oembed.php:95 +#: ../../include/diaspora.php:2211 +msgid "Attachments:" +msgstr "Přílohy:" + +#: ../../include/network.php:849 +msgid "view full size" +msgstr "zobrazit v plné velikosti" + +#: ../../include/oembed.php:137 +msgid "Embedded content" +msgstr "vložený obsah" + +#: ../../include/oembed.php:146 msgid "Embedding disabled" msgstr "Vkládání zakázáno" -#: ../../include/group.php:146 -msgid "Create a new group" -msgstr "Vytvořit novou skupinu" +#: ../../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 "Dříve smazaná skupina s tímto jménem byla obnovena. Stávající oprávnění může ovlivnit tuto skupinu a její budoucí členy. Pokud to není to, co jste chtěli, vytvořte, prosím, další skupinu s jiným názvem." -#: ../../include/group.php:147 +#: ../../include/group.php:176 +msgid "Default privacy group for new contacts" +msgstr "Defaultní soukromá skrupina pro nové kontakty." + +#: ../../include/group.php:195 msgid "Everybody" msgstr "Všichni" -#: ../../include/nav.php:41 ../../boot.php:667 +#: ../../include/group.php:218 +msgid "edit" +msgstr "editovat" + +#: ../../include/group.php:240 +msgid "Edit group" +msgstr "Editovat skupinu" + +#: ../../include/group.php:241 +msgid "Create a new group" +msgstr "Vytvořit novou skupinu" + +#: ../../include/group.php:242 +msgid "Contacts not in any group" +msgstr "Kontakty, které nejsou v žádné skupině" + +#: ../../include/nav.php:46 ../../boot.php:911 msgid "Logout" msgstr "Odhlásit se" -#: ../../include/nav.php:41 +#: ../../include/nav.php:46 msgid "End this session" msgstr "Konec této relace" -#: ../../include/nav.php:44 ../../boot.php:645 ../../boot.php:651 -msgid "Login" -msgstr "Přihlásit se" +#: ../../include/nav.php:49 ../../boot.php:1665 +msgid "Status" +msgstr "Stav" -#: ../../include/nav.php:44 +#: ../../include/nav.php:64 msgid "Sign in" msgstr "Přihlásit se" -#: ../../include/nav.php:55 ../../include/nav.php:93 -msgid "Home" -msgstr "Domů" - -#: ../../include/nav.php:55 +#: ../../include/nav.php:77 msgid "Home Page" msgstr "Domácí stránka" -#: ../../include/nav.php:59 +#: ../../include/nav.php:81 msgid "Create an account" msgstr "Vytvořit účet" -#: ../../include/nav.php:64 +#: ../../include/nav.php:86 msgid "Help and documentation" msgstr "Nápověda a dokumentace" -#: ../../include/nav.php:67 +#: ../../include/nav.php:89 msgid "Apps" msgstr "Aplikace" -#: ../../include/nav.php:67 +#: ../../include/nav.php:89 msgid "Addon applications, utilities, games" msgstr "Doplňkové aplikace, nástroje, hry" -#: ../../include/nav.php:69 +#: ../../include/nav.php:91 msgid "Search site content" msgstr "Hledání na stránkách tohoto webu" -#: ../../include/nav.php:79 +#: ../../include/nav.php:101 msgid "Conversations on this site" msgstr "Konverzace na tomto webu" -#: ../../include/nav.php:81 +#: ../../include/nav.php:103 msgid "Directory" msgstr "Adresář" -#: ../../include/nav.php:81 +#: ../../include/nav.php:103 msgid "People directory" msgstr "Adresář" -#: ../../include/nav.php:91 -msgid "Network" -msgstr "Síť" - -#: ../../include/nav.php:91 +#: ../../include/nav.php:113 msgid "Conversations from your friends" msgstr "Konverzace od Vašich přátel" -#: ../../include/nav.php:93 -msgid "Your posts and conversations" -msgstr "Vaše příspěvky a konverzace" +#: ../../include/nav.php:121 +msgid "Friend Requests" +msgstr "Žádosti přátel" -#: ../../include/nav.php:99 -msgid "Notifications" -msgstr "Upozornění" +#: ../../include/nav.php:123 +msgid "See all notifications" +msgstr "Zobrazit všechny upozornění" -#: ../../include/nav.php:99 -msgid "Friend requests" -msgstr "Požadavky přátelství" +#: ../../include/nav.php:124 +msgid "Mark all system notifications seen" +msgstr "Označit všechny upozornění systému jako přečtené" -#: ../../include/nav.php:102 +#: ../../include/nav.php:128 msgid "Private mail" msgstr "Soukromá pošta" -#: ../../include/nav.php:105 +#: ../../include/nav.php:129 +msgid "Inbox" +msgstr "Doručená pošta" + +#: ../../include/nav.php:130 +msgid "Outbox" +msgstr "Odeslaná pošta" + +#: ../../include/nav.php:134 msgid "Manage" msgstr "Spravovat" -#: ../../include/nav.php:105 +#: ../../include/nav.php:134 msgid "Manage other pages" msgstr "Spravovat jiné stránky" -#: ../../include/nav.php:109 +#: ../../include/nav.php:138 ../../boot.php:1186 +msgid "Profiles" +msgstr "Profily" + +#: ../../include/nav.php:138 ../../boot.php:1186 msgid "Manage/edit profiles" msgstr "Spravovat/upravit profily" -#: ../../include/nav.php:110 +#: ../../include/nav.php:139 msgid "Manage/edit friends and contacts" msgstr "Spravovat/upravit přátelé a kontakty" -#: ../../include/nav.php:117 -msgid "Admin" -msgstr "Administrace" - -#: ../../include/nav.php:117 +#: ../../include/nav.php:146 msgid "Site setup and configuration" msgstr "Nastavení webu a konfigurace" -#: ../../include/auth.php:27 +#: ../../include/nav.php:170 +msgid "Nothing new here" +msgstr "Zde není nic nového" + +#: ../../include/contact_widgets.php:6 +msgid "Add New Contact" +msgstr "Přidat nový kontakt" + +#: ../../include/contact_widgets.php:7 +msgid "Enter address or web location" +msgstr "Zadejte adresu nebo umístění webu" + +#: ../../include/contact_widgets.php:8 +msgid "Example: bob@example.com, http://example.com/barbara" +msgstr "Příklad: jan@příklad.cz, http://příklad.cz/jana" + +#: ../../include/contact_widgets.php:23 +#, php-format +msgid "%d invitation available" +msgid_plural "%d invitations available" +msgstr[0] "Pozvánka %d k dispozici" +msgstr[1] "Pozvánky %d k dispozici" +msgstr[2] "Pozvánky %d k dispozici" + +#: ../../include/contact_widgets.php:29 +msgid "Find People" +msgstr "Nalézt lidi" + +#: ../../include/contact_widgets.php:30 +msgid "Enter name or interest" +msgstr "Zadejte jméno nebo zájmy" + +#: ../../include/contact_widgets.php:31 +msgid "Connect/Follow" +msgstr "Připojit / Následovat" + +#: ../../include/contact_widgets.php:32 +msgid "Examples: Robert Morgenstein, Fishing" +msgstr "Příklady: Robert Morgenstein, rybaření" + +#: ../../include/contact_widgets.php:36 +msgid "Random Profile" +msgstr "Náhodný Profil" + +#: ../../include/contact_widgets.php:68 +msgid "Networks" +msgstr "Sítě" + +#: ../../include/contact_widgets.php:71 +msgid "All Networks" +msgstr "Všechny sítě" + +#: ../../include/contact_widgets.php:98 +msgid "Saved Folders" +msgstr "Uložené složky" + +#: ../../include/contact_widgets.php:101 ../../include/contact_widgets.php:129 +msgid "Everything" +msgstr "Všechno" + +#: ../../include/contact_widgets.php:126 +msgid "Categories" +msgstr "Kategorie" + +#: ../../include/auth.php:35 msgid "Logged out." msgstr "Odhlášen." -#: ../../include/datetime.php:44 ../../include/datetime.php:46 +#: ../../include/auth.php:114 +msgid "" +"We encountered a problem while logging in with the OpenID you provided. " +"Please check the correct spelling of the ID." +msgstr "Zaznamenali jsme problém s Vaším přihlášením prostřednictvím Vámi zadaným OpenID. Prosím ověřte si, že jste ID zadali správně. " + +#: ../../include/auth.php:114 +msgid "The error message was:" +msgstr "Chybová zpráva byla:" + +#: ../../include/datetime.php:43 ../../include/datetime.php:45 msgid "Miscellaneous" msgstr "Různé" -#: ../../include/datetime.php:105 ../../include/datetime.php:237 +#: ../../include/datetime.php:153 ../../include/datetime.php:285 msgid "year" msgstr "rok" -#: ../../include/datetime.php:110 ../../include/datetime.php:238 +#: ../../include/datetime.php:158 ../../include/datetime.php:286 msgid "month" msgstr "měsíc" -#: ../../include/datetime.php:115 ../../include/datetime.php:240 +#: ../../include/datetime.php:163 ../../include/datetime.php:288 msgid "day" msgstr "den" -#: ../../include/datetime.php:228 +#: ../../include/datetime.php:276 msgid "never" msgstr "nikdy" -#: ../../include/datetime.php:234 +#: ../../include/datetime.php:282 msgid "less than a second ago" msgstr "méně než před sekundou" -#: ../../include/datetime.php:237 -msgid "years" -msgstr "let" - -#: ../../include/datetime.php:238 -msgid "months" -msgstr "měsíců" - -#: ../../include/datetime.php:239 +#: ../../include/datetime.php:287 msgid "week" -msgstr "týden" +msgstr "týdnem" -#: ../../include/datetime.php:239 -msgid "weeks" -msgstr "týdny" - -#: ../../include/datetime.php:240 -msgid "days" -msgstr "dnů" - -#: ../../include/datetime.php:241 +#: ../../include/datetime.php:289 msgid "hour" msgstr "hodina" -#: ../../include/datetime.php:241 +#: ../../include/datetime.php:289 msgid "hours" msgstr "hodin" -#: ../../include/datetime.php:242 +#: ../../include/datetime.php:290 msgid "minute" msgstr "minuta" -#: ../../include/datetime.php:242 +#: ../../include/datetime.php:290 msgid "minutes" msgstr "minut" -#: ../../include/datetime.php:243 +#: ../../include/datetime.php:291 msgid "second" msgstr "sekunda" -#: ../../include/datetime.php:243 +#: ../../include/datetime.php:291 msgid "seconds" msgstr "sekund" -#: ../../include/datetime.php:250 -msgid " ago" -msgstr " nazpět" +#: ../../include/datetime.php:300 +#, php-format +msgid "%1$d %2$s ago" +msgstr "před %1$d %2$s" -#: ../../include/poller.php:418 +#: ../../include/datetime.php:472 ../../include/items.php:1683 +#, php-format +msgid "%s's birthday" +msgstr "%s má narozeniny" + +#: ../../include/datetime.php:473 ../../include/items.php:1684 +#, php-format +msgid "Happy Birthday %s" +msgstr "Veselé narozeniny %s" + +#: ../../include/onepoll.php:399 msgid "From: " msgstr "Od:" -#: ../../include/bbcode.php:116 +#: ../../include/bbcode.php:185 ../../include/bbcode.php:406 msgid "Image/photo" msgstr "Obrázek/fotografie" -#: ../../include/dba.php:31 +#: ../../include/bbcode.php:371 ../../include/bbcode.php:391 +msgid "$1 wrote:" +msgstr "$1 napsal:" + +#: ../../include/bbcode.php:410 ../../include/bbcode.php:411 +msgid "Encrypted content" +msgstr "Šifrovaný obsah" + +#: ../../include/dba.php:41 #, php-format msgid "Cannot locate DNS info for database server '%s'" msgstr "Nelze nalézt záznam v DNS pro databázový server '%s'" -#: ../../include/acl_selectors.php:279 +#: ../../include/message.php:15 ../../include/message.php:171 +msgid "[no subject]" +msgstr "[bez předmětu]" + +#: ../../include/acl_selectors.php:286 msgid "Visible to everybody" msgstr "Viditelné pro všechny" -#: ../../include/acl_selectors.php:280 -msgid "show" -msgstr "zobrazit" +#: ../../include/enotify.php:16 +msgid "Friendica Notification" +msgstr "Friendica Notifikace" -#: ../../include/acl_selectors.php:281 -msgid "don't show" -msgstr "nikdy nezobrazit" +#: ../../include/enotify.php:19 +msgid "Thank You," +msgstr "Děkujeme, " -#: ../../include/notifier.php:465 -msgid "(no subject)" -msgstr "(Bez předmětu)" +#: ../../include/enotify.php:21 +#, php-format +msgid "%s Administrator" +msgstr "%s Administrátor" -#: ../../include/items.php:1526 +#: ../../include/enotify.php:40 +#, php-format +msgid "%s " +msgstr "%s " + +#: ../../include/enotify.php:44 +#, php-format +msgid "[Friendica:Notify] New mail received at %s" +msgstr "[Friendica:Upozornění] Obdržena nová zpráva na %s" + +#: ../../include/enotify.php:46 +#, php-format +msgid "%1$s sent you a new private message at %2$s." +msgstr "%1$s Vám poslal novou soukromou zprávu na %2$s." + +#: ../../include/enotify.php:47 +#, php-format +msgid "%1$s sent you %2$s." +msgstr "%1$s Vám poslal %2$s." + +#: ../../include/enotify.php:47 +msgid "a private message" +msgstr "soukromá zpráva" + +#: ../../include/enotify.php:48 +#, php-format +msgid "Please visit %s to view and/or reply to your private messages." +msgstr "Prosím navštivte %s pro zobrazení Vašich soukromých zpráv a možnost na ně odpovědět." + +#: ../../include/enotify.php:89 +#, php-format +msgid "%1$s commented on [url=%2$s]a %3$s[/url]" +msgstr "%1$s okomentoval na [url=%2$s]%3$s[/url]" + +#: ../../include/enotify.php:96 +#, php-format +msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]" +msgstr "%1$s okomentoval na [url=%2$s]%3$s's %4$s[/url]" + +#: ../../include/enotify.php:104 +#, php-format +msgid "%1$s commented on [url=%2$s]your %3$s[/url]" +msgstr "%1$s okomentoval na [url=%2$s]Váš %3$s[/url]" + +#: ../../include/enotify.php:114 +#, php-format +msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s" +msgstr "[Friendica:Upozornění] Komentář ke konverzaci #%1$d od %2$s" + +#: ../../include/enotify.php:115 +#, php-format +msgid "%s commented on an item/conversation you have been following." +msgstr "Uživatel %s okomentoval vámi sledovanou položku/konverzaci." + +#: ../../include/enotify.php:118 ../../include/enotify.php:133 +#: ../../include/enotify.php:146 ../../include/enotify.php:164 +#: ../../include/enotify.php:177 +#, php-format +msgid "Please visit %s to view and/or reply to the conversation." +msgstr "Prosím navštivte %s pro zobrazení konverzace a možnosti odpovědět." + +#: ../../include/enotify.php:125 +#, php-format +msgid "[Friendica:Notify] %s posted to your profile wall" +msgstr "[Friendica:Upozornění] %s umístěn na Vaši profilovou zeď" + +#: ../../include/enotify.php:127 +#, php-format +msgid "%1$s posted to your profile wall at %2$s" +msgstr "%1$s přidal příspěvek na Vaši profilovou zeď na %2$s" + +#: ../../include/enotify.php:129 +#, php-format +msgid "%1$s posted to [url=%2$s]your wall[/url]" +msgstr "%1$s napřidáno na [url=%2$s]na Vaši zeď[/url]" + +#: ../../include/enotify.php:140 +#, php-format +msgid "[Friendica:Notify] %s tagged you" +msgstr "[Friendica:Upozornění] %s Vás označil" + +#: ../../include/enotify.php:141 +#, php-format +msgid "%1$s tagged you at %2$s" +msgstr "%1$s Vás označil na %2$s" + +#: ../../include/enotify.php:142 +#, php-format +msgid "%1$s [url=%2$s]tagged you[/url]." +msgstr "%1$s [url=%2$s]Vás označil[/url]." + +#: ../../include/enotify.php:154 +#, php-format +msgid "[Friendica:Notify] %1$s poked you" +msgstr "[Friendica:Upozornění] %1$s Vás šťouchnul" + +#: ../../include/enotify.php:155 +#, php-format +msgid "%1$s poked you at %2$s" +msgstr "%1$s Vás šťouchnul na %2$s" + +#: ../../include/enotify.php:156 +#, php-format +msgid "%1$s [url=%2$s]poked you[/url]." +msgstr "Uživatel %1$s [url=%2$s]Vás šťouchnul[/url]." + +#: ../../include/enotify.php:171 +#, php-format +msgid "[Friendica:Notify] %s tagged your post" +msgstr "[Friendica:Upozornění] %s označil Váš příspěvek" + +#: ../../include/enotify.php:172 +#, php-format +msgid "%1$s tagged your post at %2$s" +msgstr "%1$s označil Váš příspěvek na %2$s" + +#: ../../include/enotify.php:173 +#, php-format +msgid "%1$s tagged [url=%2$s]your post[/url]" +msgstr "%1$s označil [url=%2$s]Váš příspěvek[/url]" + +#: ../../include/enotify.php:184 +msgid "[Friendica:Notify] Introduction received" +msgstr "[Friendica:Upozornění] Obdrženo přestavení" + +#: ../../include/enotify.php:185 +#, php-format +msgid "You've received an introduction from '%1$s' at %2$s" +msgstr "Obdržel jste žádost o spojení od '%1$s' na %2$s" + +#: ../../include/enotify.php:186 +#, php-format +msgid "You've received [url=%1$s]an introduction[/url] from %2$s." +msgstr "Obdržel jste [url=%1$s]žádost o spojení[/url] od %2$s." + +#: ../../include/enotify.php:189 ../../include/enotify.php:207 +#, php-format +msgid "You may visit their profile at %s" +msgstr "Můžete navštívit jejich profil na %s" + +#: ../../include/enotify.php:191 +#, php-format +msgid "Please visit %s to approve or reject the introduction." +msgstr "Prosím navštivte %s pro schválení či zamítnutí představení." + +#: ../../include/enotify.php:198 +msgid "[Friendica:Notify] Friend suggestion received" +msgstr "[Friendica:Upozornění] Obdržen návrh na přátelství" + +#: ../../include/enotify.php:199 +#, php-format +msgid "You've received a friend suggestion from '%1$s' at %2$s" +msgstr "Obdržel jste návrh přátelství od '%1$s' na %2$s" + +#: ../../include/enotify.php:200 +#, php-format +msgid "" +"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." +msgstr "Obdržel jste [url=%1$s]návrh přátelství[/url] s %2$s from %3$s." + +#: ../../include/enotify.php:205 +msgid "Name:" +msgstr "Jméno:" + +#: ../../include/enotify.php:206 +msgid "Photo:" +msgstr "Foto:" + +#: ../../include/enotify.php:209 +#, php-format +msgid "Please visit %s to approve or reject the suggestion." +msgstr "Prosím navštivte %s pro schválení či zamítnutí doporučení." + +#: ../../include/follow.php:32 +msgid "Connect URL missing." +msgstr "Chybí URL adresa." + +#: ../../include/follow.php:59 +msgid "" +"This site is not configured to allow communications with other networks." +msgstr "Tento web není nakonfigurován tak, aby umožňoval komunikaci s ostatními sítěmi." + +#: ../../include/follow.php:60 ../../include/follow.php:80 +msgid "No compatible communication protocols or feeds were discovered." +msgstr "Nenalezen žádný kompatibilní komunikační protokol nebo kanál." + +#: ../../include/follow.php:78 +msgid "The profile address specified does not provide adequate information." +msgstr "Uvedená adresa profilu neposkytuje dostatečné informace." + +#: ../../include/follow.php:82 +msgid "An author or name was not found." +msgstr "Autor nebo jméno nenalezeno" + +#: ../../include/follow.php:84 +msgid "No browser URL could be matched to this address." +msgstr "Této adrese neodpovídá žádné URL prohlížeče." + +#: ../../include/follow.php:86 +msgid "" +"Unable to match @-style Identity Address with a known protocol or email " +"contact." +msgstr "Není možné namapovat adresu identity ve stylu @ s žádným možným protokolem ani emailovým kontaktem." + +#: ../../include/follow.php:87 +msgid "Use mailto: in front of address to force email check." +msgstr "Použite mailo: před adresou k vynucení emailové kontroly." + +#: ../../include/follow.php:93 +msgid "" +"The profile address specified belongs to a network which has been disabled " +"on this site." +msgstr "Zadaná adresa profilu patří do sítě, která byla na tomto serveru zakázána." + +#: ../../include/follow.php:103 +msgid "" +"Limited profile. This person will be unable to receive direct/personal " +"notifications from you." +msgstr "Omezený profil. Tato osoba nebude schopna od Vás přijímat přímé / osobní sdělení." + +#: ../../include/follow.php:205 +msgid "Unable to retrieve contact information." +msgstr "Nepodařilo se získat kontaktní informace." + +#: ../../include/follow.php:259 +msgid "following" +msgstr "následující" + +#: ../../include/items.php:3294 +msgid "A new person is sharing with you at " +msgstr "Nový člověk si s vámi sdílí na" + +#: ../../include/items.php:3294 msgid "You have a new follower at " msgstr "Máte nového následovníka na" -#: ../../include/conversation.php:23 -msgid "event" -msgstr "událost" +#: ../../include/items.php:3975 +msgid "Archives" +msgstr "Archív" -#: ../../include/conversation.php:213 ../../include/conversation.php:488 -#: ../../include/conversation.php:489 -#, php-format -msgid "View %s's profile" -msgstr "Zobrazit %s profilu" +#: ../../include/user.php:38 +msgid "An invitation is required." +msgstr "Pozvánka je vyžadována." -#: ../../include/conversation.php:222 ../../include/conversation.php:501 -#, php-format -msgid "%s from %s" -msgstr "%s od %s" +#: ../../include/user.php:43 +msgid "Invitation could not be verified." +msgstr "Pozvánka nemohla být ověřena." -#: ../../include/conversation.php:230 -msgid "View in context" -msgstr "Pohled v kontextu" +#: ../../include/user.php:51 +msgid "Invalid OpenID url" +msgstr "Neplatný odkaz OpenID" -#: ../../include/conversation.php:301 -msgid "See more posts like this" -msgstr "Zobrazit více podobných příspěvků" +#: ../../include/user.php:66 +msgid "Please enter the required information." +msgstr "Zadejte prosím požadované informace." -#: ../../include/conversation.php:329 -#, php-format -msgid "See all %d comments" -msgstr "Zobrazit všechny komentáře %d" +#: ../../include/user.php:80 +msgid "Please use a shorter name." +msgstr "Použijte prosím kratší jméno." -#: ../../include/conversation.php:427 -msgid "Select" -msgstr "Vybrat" +#: ../../include/user.php:82 +msgid "Name too short." +msgstr "Jméno je příliš krátké." -#: ../../include/conversation.php:429 -msgid "toggle star status" -msgstr "přepnout hvězdu" +#: ../../include/user.php:97 +msgid "That doesn't appear to be your full (First Last) name." +msgstr "Nezdá se, že by to bylo vaše celé jméno (křestní jméno a příjmení)." -#: ../../include/conversation.php:490 -msgid "to" -msgstr "pro" +#: ../../include/user.php:102 +msgid "Your email domain is not among those allowed on this site." +msgstr "Váš e-mailová doména není na tomto serveru mezi povolenými." -#: ../../include/conversation.php:491 -msgid "Wall-to-Wall" -msgstr "Zeď-na-Zeď" +#: ../../include/user.php:105 +msgid "Not a valid email address." +msgstr "Neplatná e-mailová adresa." -#: ../../include/conversation.php:492 -msgid "via Wall-To-Wall:" -msgstr "přes Zeď-na-Zeď " +#: ../../include/user.php:115 +msgid "Cannot use that email." +msgstr "Tento e-mail nelze použít." -#: ../../include/conversation.php:534 -msgid "Delete Selected Items" -msgstr "Smazat vybrané položky" +#: ../../include/user.php:121 +msgid "" +"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and " +"must also begin with a letter." +msgstr "Vaše \"přezdívka\" může obsahovat pouze \"a-z\", \"0-9\", \"-\", a \"_\", a musí začínat písmenem." -#: ../../include/conversation.php:608 -msgid "View status" -msgstr "Zobrazit stav" +#: ../../include/user.php:127 ../../include/user.php:225 +msgid "Nickname is already registered. Please choose another." +msgstr "Přezdívka je již registrována. Prosím vyberte jinou." -#: ../../include/conversation.php:609 -msgid "View profile" -msgstr "Zobrazit profil" +#: ../../include/user.php:137 +msgid "" +"Nickname was once registered here and may not be re-used. Please choose " +"another." +msgstr "Tato přezdívka již zde byla použita a nemůže být využita znovu. Prosím vyberete si jinou." -#: ../../include/conversation.php:610 -msgid "View photos" -msgstr "Zobrazit fotografie" +#: ../../include/user.php:153 +msgid "SERIOUS ERROR: Generation of security keys failed." +msgstr "Závažná chyba: Generování bezpečnostních klíčů se nezdařilo." -#: ../../include/conversation.php:611 -msgid "View recent" -msgstr "Zobrazit poslední" +#: ../../include/user.php:211 +msgid "An error occurred during registration. Please try again." +msgstr "Došlo k chybě při registraci. Zkuste to prosím znovu." -#: ../../include/conversation.php:613 +#: ../../include/user.php:246 +msgid "An error occurred creating your default profile. Please try again." +msgstr "Došlo k chybě při vytváření Vašeho výchozího profilu. Zkuste to prosím znovu." + +#: ../../include/security.php:22 +msgid "Welcome " +msgstr "Vítejte " + +#: ../../include/security.php:23 +msgid "Please upload a profile photo." +msgstr "Prosím nahrejte profilovou fotografii" + +#: ../../include/security.php:26 +msgid "Welcome back " +msgstr "Vítejte zpět " + +#: ../../include/security.php:344 +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 "Formulářový bezpečnostní token nebyl správný. To pravděpodobně nastalo kvůli tom, že formulář byl otevřen příliš dlouho (>3 hodiny) před jeho odesláním." + +#: ../../include/Contact.php:111 +msgid "stopped following" +msgstr "následování zastaveno" + +#: ../../include/Contact.php:220 ../../include/conversation.php:1106 +msgid "Poke" +msgstr "Šťouchnout" + +#: ../../include/Contact.php:221 ../../include/conversation.php:1100 +msgid "View Status" +msgstr "Zobrazit Status" + +#: ../../include/Contact.php:222 ../../include/conversation.php:1101 +msgid "View Profile" +msgstr "Zobrazit Profil" + +#: ../../include/Contact.php:223 ../../include/conversation.php:1102 +msgid "View Photos" +msgstr "Zobrazit Fotky" + +#: ../../include/Contact.php:224 ../../include/Contact.php:237 +#: ../../include/conversation.php:1103 +msgid "Network Posts" +msgstr "Zobrazit Příspěvky sítě" + +#: ../../include/Contact.php:225 ../../include/Contact.php:237 +#: ../../include/conversation.php:1104 +msgid "Edit Contact" +msgstr "Editovat Kontakty" + +#: ../../include/Contact.php:226 ../../include/Contact.php:237 +#: ../../include/conversation.php:1105 msgid "Send PM" msgstr "Poslat soukromou zprávu" -#: ../../include/conversation.php:663 +#: ../../include/conversation.php:206 +#, php-format +msgid "%1$s poked %2$s" +msgstr "%1$s šťouchnul %2$s" + +#: ../../include/conversation.php:290 +msgid "post/item" +msgstr "příspěvek/položka" + +#: ../../include/conversation.php:291 +#, php-format +msgid "%1$s marked %2$s's %3$s as favorite" +msgstr "uživatel %1$s označil %2$s's %3$s jako oblíbeného" + +#: ../../include/conversation.php:645 ../../include/conversation.php:919 +#: ../../object/Item.php:217 +msgid "Categories:" +msgstr "" + +#: ../../include/conversation.php:646 ../../include/conversation.php:920 +#: ../../object/Item.php:218 +msgid "Filed under:" +msgstr "" + +#: ../../include/conversation.php:1002 +msgid "remove" +msgstr "odstranit" + +#: ../../include/conversation.php:1006 +msgid "Delete Selected Items" +msgstr "Smazat vybrané položky" + +#: ../../include/conversation.php:1164 #, php-format msgid "%s likes this." msgstr "%s se to líbí." -#: ../../include/conversation.php:663 +#: ../../include/conversation.php:1164 #, php-format msgid "%s doesn't like this." msgstr "%s se to nelíbí." -#: ../../include/conversation.php:667 +#: ../../include/conversation.php:1168 #, php-format msgid "%2$d people like this." msgstr "%2$d lidem se to líbí." -#: ../../include/conversation.php:669 +#: ../../include/conversation.php:1170 #, php-format msgid "%2$d people don't like this." msgstr "%2$d lidem se to nelíbí." -#: ../../include/conversation.php:675 +#: ../../include/conversation.php:1176 msgid "and" msgstr "a" -#: ../../include/conversation.php:678 +#: ../../include/conversation.php:1179 #, php-format msgid ", and %d other people" msgstr ", a %d dalších lidí" -#: ../../include/conversation.php:679 +#: ../../include/conversation.php:1180 #, php-format msgid "%s like this." msgstr "%s se to líbí." -#: ../../include/conversation.php:679 +#: ../../include/conversation.php:1180 #, php-format msgid "%s don't like this." msgstr "%s se to nelíbí." -#: ../../include/conversation.php:698 +#: ../../include/conversation.php:1204 ../../include/conversation.php:1221 msgid "Visible to everybody" msgstr "Viditelné pro všechny" -#: ../../include/conversation.php:700 -msgid "Please enter a YouTube link:" -msgstr "Prosím zadejte odkaz na YouTube:" +#: ../../include/conversation.php:1206 ../../include/conversation.php:1223 +msgid "Please enter a video link/URL:" +msgstr "Prosím zadejte URL adresu videa:" -#: ../../include/conversation.php:701 -msgid "Please enter a video(.ogg) link/URL:" -msgstr "Prosím, zadejte odkaz na video (ogg.):" +#: ../../include/conversation.php:1207 ../../include/conversation.php:1224 +msgid "Please enter an audio link/URL:" +msgstr "Prosím zadejte URL adresu zvukového záznamu:" -#: ../../include/conversation.php:702 -msgid "Please enter an audio(.ogg) link/URL:" -msgstr "Prosím, zadejte odkaz na audio (ogg.):" +#: ../../include/conversation.php:1208 ../../include/conversation.php:1225 +msgid "Tag term:" +msgstr "Štítek:" -#: ../../include/conversation.php:703 +#: ../../include/conversation.php:1210 ../../include/conversation.php:1227 msgid "Where are you right now?" msgstr "Kde právě jste?" -#: ../../include/conversation.php:704 -msgid "Enter a title for this item" -msgstr "Zadejte titulek pro tuto položku" +#: ../../include/conversation.php:1270 +msgid "upload photo" +msgstr "nahrát fotky" -#: ../../include/conversation.php:755 -msgid "Set title" -msgstr "Nastavit titulek" +#: ../../include/conversation.php:1272 +msgid "attach file" +msgstr "přidat soubor" -#: ../../boot.php:410 +#: ../../include/conversation.php:1274 +msgid "web link" +msgstr "webový odkaz" + +#: ../../include/conversation.php:1275 +msgid "Insert video link" +msgstr "Zadejte odkaz na video" + +#: ../../include/conversation.php:1276 +msgid "video link" +msgstr "odkaz na video" + +#: ../../include/conversation.php:1277 +msgid "Insert audio link" +msgstr "Zadejte odkaz na zvukový záznam" + +#: ../../include/conversation.php:1278 +msgid "audio link" +msgstr "odkaz na audio" + +#: ../../include/conversation.php:1280 +msgid "set location" +msgstr "nastavit místo" + +#: ../../include/conversation.php:1282 +msgid "clear location" +msgstr "vymazat místo" + +#: ../../include/conversation.php:1289 +msgid "permissions" +msgstr "oprávnění" + +#: ../../include/plugin.php:389 ../../include/plugin.php:391 +msgid "Click here to upgrade." +msgstr "Klikněte zde pro aktualizaci." + +#: ../../include/plugin.php:397 +msgid "This action exceeds the limits set by your subscription plan." +msgstr "Tato akce překročí limit nastavené Vaším předplatným." + +#: ../../include/plugin.php:402 +msgid "This action is not available under your subscription plan." +msgstr "Tato akce není v rámci Vašeho předplatného dostupná." + +#: ../../boot.php:573 msgid "Delete this item?" msgstr "Odstranit tuto položku?" -#: ../../boot.php:636 +#: ../../boot.php:576 +msgid "show fewer" +msgstr "zobrazit méně" + +#: ../../boot.php:783 +#, php-format +msgid "Update %s failed. See error logs." +msgstr "Aktualizace %s selhala. Zkontrolujte protokol chyb." + +#: ../../boot.php:785 +#, php-format +msgid "Update Error at %s" +msgstr "Chyba aktualizace na %s" + +#: ../../boot.php:886 msgid "Create a New Account" msgstr "Vytvořit nový účet" -#: ../../boot.php:643 +#: ../../boot.php:914 msgid "Nickname or Email address: " msgstr "Přezdívka nebo e-mailová adresa:" -#: ../../boot.php:644 +#: ../../boot.php:915 msgid "Password: " msgstr "Heslo: " -#: ../../boot.php:649 -msgid "Nickname/Email/OpenID: " -msgstr "Přezdívka/E-mail/OpenID: " +#: ../../boot.php:918 +msgid "Or login using OpenID: " +msgstr "Nebo přihlášení pomocí OpenID: " -#: ../../boot.php:650 -msgid "Password (if not OpenID): " -msgstr "Heslo (pokud se nepoužívá OpenID):" - -#: ../../boot.php:653 +#: ../../boot.php:924 msgid "Forgot your password?" msgstr "Zapomněli jste své heslo?" -#: ../../boot.php:853 -msgid "Connect" -msgstr "Spojit" +#: ../../boot.php:1035 +msgid "Requested account is not available." +msgstr "Požadovaný účet není dostupný." -#: ../../boot.php:872 -msgid ", " -msgstr ", " +#: ../../boot.php:1112 +msgid "Edit profile" +msgstr "Upravit profil" -#: ../../boot.php:884 -msgid "Status:" -msgstr "Status:" +#: ../../boot.php:1178 +msgid "Message" +msgstr "Zpráva" -#: ../../boot.php:975 +#: ../../boot.php:1300 ../../boot.php:1386 msgid "g A l F d" msgstr "g A l F d" -#: ../../boot.php:993 -msgid "Birthday Reminders" -msgstr "Připomínka narozenin" +#: ../../boot.php:1301 ../../boot.php:1387 +msgid "F d" +msgstr "d. F" -#: ../../boot.php:994 -msgid "Birthdays this week:" -msgstr "Narozeniny tento týden:" - -#: ../../boot.php:995 -msgid "(Adjusted for local time)" -msgstr "(Upraveno pro místní čas)" - -#: ../../boot.php:1006 +#: ../../boot.php:1346 ../../boot.php:1427 msgid "[today]" msgstr "[Dnes]" -#: ../../index.php:209 -msgid "Not Found" -msgstr "Nenalezen" +#: ../../boot.php:1358 +msgid "Birthday Reminders" +msgstr "Připomínka narozenin" -#: ../../index.php:210 -msgid "Page not found." -msgstr "Stránka nenalezena" +#: ../../boot.php:1359 +msgid "Birthdays this week:" +msgstr "Narozeniny tento týden:" +#: ../../boot.php:1420 +msgid "[No description]" +msgstr "[Žádný popis]" +#: ../../boot.php:1438 +msgid "Event Reminders" +msgstr "Připomenutí událostí" + +#: ../../boot.php:1439 +msgid "Events this week:" +msgstr "Události tohoto týdne:" + +#: ../../boot.php:1668 +msgid "Status Messages and Posts" +msgstr "Statusové zprávy a příspěvky " + +#: ../../boot.php:1675 +msgid "Profile Details" +msgstr "Detaily profilu" + +#: ../../boot.php:1692 +msgid "Events and Calendar" +msgstr "Události a kalendář" + +#: ../../boot.php:1699 +msgid "Only You Can See This" +msgstr "Toto můžete vidět jen Vy" diff --git a/view/cs/strings.php b/view/cs/strings.php index 0c7d0d7bd8..c4ad303669 100644 --- a/view/cs/strings.php +++ b/view/cs/strings.php @@ -1,61 +1,73 @@ =2 && $n<=4) ? 1 : 2; + return ($n==1) ? 0 : ($n>=2 && $n<=4) ? 1 : 2;; } ; $a->strings["Post successful."] = "Příspěvek úspěšně odeslán"; +$a->strings["[Embedded content - reload page to view]"] = "[Vložený obsah - obnovení stránky pro zobrazení]"; $a->strings["Contact settings applied."] = "Nastavení kontaktu změněno"; $a->strings["Contact update failed."] = "Aktualizace kontaktu selhala."; $a->strings["Permission denied."] = "Přístup odmítnut."; $a->strings["Contact not found."] = "Kontakt nenalezen."; $a->strings["Repair Contact Settings"] = "Opravit nastavení kontaktu"; -$a->strings["WARNING: This is highly advanced and if you enter incorrect information your communications with this contact will stop working."] = "VAROVÁNÍ: Toto je velmi pokročilé nastavení, pokud zadáte nesprávné informace, komunikace s tímto kontaktem přestane fungovat."; +$a->strings["WARNING: This is highly advanced and if you enter incorrect information your communications with this contact may stop working."] = "Varování: Toto je velmi pokročilé a pokud zadáte nesprávné informace, Vaše komunikace s tímto kontaktem může přestat fungovat."; $a->strings["Please use your browser 'Back' button now if you are uncertain what to do on this page."] = "Prosím použijte ihned v prohlížeči tlačítko \"zpět\" pokud si nejste jistí co dělat na této stránce."; +$a->strings["Return to contact editor"] = "Návrat k editoru kontaktu"; $a->strings["Name"] = "Jméno"; $a->strings["Account Nickname"] = "Přezdívka účtu"; +$a->strings["@Tagname - overrides Name/Nickname"] = "@Tagname - upřednostněno před Jménem/Přezdívkou"; $a->strings["Account URL"] = "URL adresa účtu"; $a->strings["Friend Request URL"] = "Žádost o přátelství URL"; $a->strings["Friend Confirm URL"] = "URL adresa potvrzení přátelství"; $a->strings["Notification Endpoint URL"] = "Notifikační URL adresa"; $a->strings["Poll/Feed URL"] = "Poll/Feed URL adresa"; +$a->strings["New photo from this URL"] = "Nové foto z této URL adresy"; $a->strings["Submit"] = "Odeslat"; $a->strings["Help:"] = "Nápověda:"; $a->strings["Help"] = "Nápověda"; +$a->strings["Not Found"] = "Nenalezen"; +$a->strings["Page not found."] = "Stránka nenalezena"; $a->strings["File exceeds size limit of %d"] = "Velikost souboru přesáhla limit %d"; $a->strings["File upload failed."] = "Nahrání souboru se nezdařilo."; $a->strings["Friend suggestion sent."] = "Návrhy přátelství odeslány "; $a->strings["Suggest Friends"] = "Navrhněte přátelé"; $a->strings["Suggest a friend for %s"] = "Navrhněte přátelé pro uživatele %s"; -$a->strings["Status"] = "Stav"; -$a->strings["Profile"] = "Profil"; -$a->strings["Photos"] = "Fotografie"; -$a->strings["Events"] = "Události"; -$a->strings["Personal Notes"] = "Osobní poznámky"; -$a->strings["Create New Event"] = "Vytvořit novou událost"; -$a->strings["Previous"] = "Předchozí"; -$a->strings["Next"] = "Následující"; +$a->strings["Event title and start time are required."] = "Název události a datum začátku jsou vyžadovány."; $a->strings["l, F j"] = "l, F j"; $a->strings["Edit event"] = "Editovat událost"; $a->strings["link to source"] = "odkaz na zdroj"; +$a->strings["Events"] = "Události"; +$a->strings["Create New Event"] = "Vytvořit novou událost"; +$a->strings["Previous"] = "Předchozí"; +$a->strings["Next"] = "Dále"; $a->strings["hour:minute"] = "hodina:minuta"; $a->strings["Event details"] = "Detaily události"; -$a->strings["Format is %s %s. Starting date and Description are required."] = "Formát je %s %s. Datum zahájení a popis jsou povinné."; +$a->strings["Format is %s %s. Starting date and Title are required."] = "Formát je %s %s. Datum začátku a Název jsou vyžadovány."; $a->strings["Event Starts:"] = "Událost začíná:"; +$a->strings["Required"] = "Vyžadováno"; $a->strings["Finish date/time is not known or not relevant"] = "Datum/čas konce není zadán nebo není relevantní"; $a->strings["Event Finishes:"] = "Akce končí:"; $a->strings["Adjust for viewer timezone"] = "Nastavit časové pásmo pro uživatele s právem pro čtení"; $a->strings["Description:"] = "Popis:"; $a->strings["Location:"] = "Místo:"; +$a->strings["Title:"] = "Název:"; $a->strings["Share this event"] = "Sdílet tuto událost"; $a->strings["Cancel"] = "Zrušit"; $a->strings["Tag removed"] = "Štítek odstraněn"; $a->strings["Remove Item Tag"] = "Odebrat štítek položky"; -$a->strings["Select a tag to remove: "] = "Vyberte štítek k odebrání:"; +$a->strings["Select a tag to remove: "] = "Vyberte štítek k odebrání: "; $a->strings["Remove"] = "Odstranit"; $a->strings["%s welcomes %s"] = "%s vítá %s "; +$a->strings["Authorize application connection"] = "Povolit připojení aplikacím"; +$a->strings["Return to your app and insert this Securty Code:"] = "Vraťte se do vaší aplikace a zadejte tento bezpečnostní kód:"; +$a->strings["Please login to continue."] = "Pro pokračování se prosím přihlaste."; +$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Chcete umožnit této aplikaci přístup k vašim příspěvkům a kontaktům a/nebo k vytváření Vašich nových příspěvků?"; +$a->strings["Yes"] = "Ano"; +$a->strings["No"] = "Ne"; $a->strings["Photo Albums"] = "Fotoalba"; $a->strings["Contact Photos"] = "Fotogalerie kontaktu"; +$a->strings["Upload New Photos"] = "Nahrát nové fotografie"; $a->strings["everybody"] = "Žádost o připojení selhala nebo byla zrušena."; $a->strings["Contact information unavailable"] = "Kontakt byl zablokován"; $a->strings["Profile Photos"] = "Profilové fotografie"; @@ -72,19 +84,28 @@ $a->strings["Image upload failed."] = "Nahrání obrázku selhalo."; $a->strings["Public access denied."] = "Veřejný přístup odepřen."; $a->strings["No photos selected"] = "Není vybrána žádná fotografie"; $a->strings["Access to this item is restricted."] = "Přístup k této položce je omezen."; +$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "Použil jste %1$.2f Mbajtů z %2$.2f Mbajtů úložiště fotografií."; +$a->strings["You have used %1$.2f Mbytes of photo storage."] = "Použil jste %1$.2f Mbytes kapacity úložiště fotografií."; $a->strings["Upload Photos"] = "Nahrání fotografií "; -$a->strings["New album name: "] = "Název nového alba:"; -$a->strings["or existing album name: "] = "nebo stávající název alba:"; +$a->strings["New album name: "] = "Název nového alba: "; +$a->strings["or existing album name: "] = "nebo stávající název alba: "; +$a->strings["Do not show a status post for this upload"] = "Nezobrazovat stav pro tento upload"; $a->strings["Permissions"] = "Oprávnění:"; $a->strings["Edit Album"] = "Edituj album"; +$a->strings["Show Newest First"] = "Zobrazit nejprve nejnovější:"; +$a->strings["Show Oldest First"] = "Zobrazit nejprve nejstarší:"; $a->strings["View Photo"] = "Zobraz fotografii"; +$a->strings["Permission denied. Access to this item may be restricted."] = "Oprávnění bylo zamítnuto. Přístup k této položce může být omezen."; $a->strings["Photo not available"] = "Fotografie není k dispozici"; +$a->strings["View photo"] = "Zobrazit obrázek"; $a->strings["Edit photo"] = "Editovat fotografii"; $a->strings["Use as profile photo"] = "Použít jako profilovou fotografii"; $a->strings["Private Message"] = "Soukromá zpráva"; $a->strings["View Full Size"] = "Zobrazit v plné velikosti"; -$a->strings["Tags: "] = "Štítky:"; +$a->strings["Tags: "] = "Štítky: "; $a->strings["[Remove any tag]"] = "[Odstranit všechny štítky]"; +$a->strings["Rotate CW (right)"] = "Rotovat po směru hodinových ručiček (doprava)"; +$a->strings["Rotate CCW (left)"] = "Rotovat proti směru hodinových ručiček (doleva)"; $a->strings["New album name"] = "Nové jméno alba"; $a->strings["Caption"] = "Titulek"; $a->strings["Add a Tag"] = "Přidat štítek"; @@ -93,16 +114,22 @@ $a->strings["I like this (toggle)"] = "Líbí se mi to (přepínač)"; $a->strings["I don't like this (toggle)"] = "Nelíbí se mi to (přepínač)"; $a->strings["Share"] = "Sdílet"; $a->strings["Please wait"] = "Čekejte prosím"; -$a->strings["This is you"] = "To je Vy"; +$a->strings["This is you"] = "Nastavte Vaši polohu"; $a->strings["Comment"] = "Okomentovat"; +$a->strings["Preview"] = "Náhled"; $a->strings["Delete"] = "Odstranit"; -$a->strings["Recent Photos"] = "Aktuální fotografie"; -$a->strings["Upload New Photos"] = "Nahrát nové fotografie"; $a->strings["View Album"] = "Zobrazit album"; +$a->strings["Recent Photos"] = "Aktuální fotografie"; $a->strings["Not available."] = "Není k dispozici."; $a->strings["Community"] = "Komunita"; $a->strings["No results."] = "Žádné výsledky."; -$a->strings["Shared content is covered by the Creative Commons Attribution 3.0 license."] = "Sdílený obsah je v souladu s Commons Creative 3.0 licencí."; +$a->strings["This is Friendica, version"] = "Toto je Friendica, verze"; +$a->strings["running at web location"] = "běžící na webu"; +$a->strings["Please visit Friendica.com to learn more about the Friendica project."] = "Pro získání dalších informací o projektu Friendica navštivte prosím Friendica.com."; +$a->strings["Bug reports and issues: please visit"] = "Pro hlášení chyb a námětů na změny navštivte:"; +$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Návrhy, chválu, dary, apod. - prosím piště na \"info\" na Friendica - tečka com"; +$a->strings["Installed plugins/addons/apps:"] = "Instalované pluginy/doplňky/aplikace:"; +$a->strings["No installed plugins/addons/apps"] = "Nejsou žádné nainstalované doplňky/aplikace"; $a->strings["Item not found"] = "Položka nenalezena"; $a->strings["Edit post"] = "Upravit příspěvek"; $a->strings["Post to Email"] = "Poslat příspěvek na e-mail"; @@ -118,8 +145,10 @@ $a->strings["Clear browser location"] = "Odstranit adresu v prohlížeči"; $a->strings["Permission settings"] = "Nastavení oprávnění"; $a->strings["CC: email addresses"] = "skrytá kopie: e-mailové adresy"; $a->strings["Public post"] = "Veřejný příspěvek"; +$a->strings["Set title"] = "Nastavit titulek"; +$a->strings["Categories (comma-separated list)"] = "Kategorie (čárkou oddělený seznam)"; $a->strings["Example: bob@example.com, mary@example.com"] = "Příklad: bob@example.com, mary@example.com"; -$a->strings["This introduction has already been accepted."] = "Toto pozvání již bylo přijato"; +$a->strings["This introduction has already been accepted."] = "Toto pozvání již bylo přijato."; $a->strings["Profile location is not valid or does not contain profile information."] = "Adresa profilu není platná nebo neobsahuje profilové informace"; $a->strings["Warning: profile location has no identifiable owner name."] = "Varování: umístění profilu nemá žádné identifikovatelné jméno vlastníka"; $a->strings["Warning: profile location has no profile photo."] = "Varování: umístění profilu nemá žádnou profilovou fotografii."; @@ -135,6 +164,8 @@ $a->strings["%s has received too many connection requests today."] = "%s dnes ob $a->strings["Spam protection measures have been invoked."] = "Ochrana proti spamu byla aktivována"; $a->strings["Friends are advised to please try again in 24 hours."] = "Přátelům se doporučuje to zkusit znovu za 24 hodin."; $a->strings["Invalid locator"] = "Neplatný odkaz"; +$a->strings["Invalid email address."] = "Neplatná emailová adresa"; +$a->strings["This account has not been configured for email. Request failed."] = "Tento účet nebyl nastaven pro email. Požadavek nesplněn."; $a->strings["Unable to resolve your name at the provided location."] = "Nepodařilo se zjistit Vaše jméno na zadané adrese."; $a->strings["You have already introduced yourself here."] = "Již jste se zde zavedli."; $a->strings["Apparently you are already friends with %s."] = "Zřejmě jste již přátelé se %s."; @@ -144,53 +175,62 @@ $a->strings["Failed to update contact record."] = "Nepodařilo se aktualizovat k $a->strings["Your introduction has been sent."] = "Vaše žádost o propojení byla odeslána."; $a->strings["Please login to confirm introduction."] = "Prosím přihlašte se k potvrzení žádosti o propojení."; $a->strings["Incorrect identity currently logged in. Please login to this profile."] = "Jste přihlášeni pod nesprávnou identitou Prosím, přihlaste se do tohoto profilu."; +$a->strings["Hide this contact"] = "Skrýt tento kontakt"; $a->strings["Welcome home %s."] = "Vítejte doma %s."; -$a->strings["Please confirm your introduction/connection request to %s."] = "Prosím potvrďte Vaši žádost o představení/spojení %s."; +$a->strings["Please confirm your introduction/connection request to %s."] = "Prosím potvrďte Vaši žádost o propojení %s."; $a->strings["Confirm"] = "Potvrdit"; $a->strings["[Name Withheld]"] = "[Jméno odepřeno]"; -$a->strings["Introduction received at "] = "Pozvánka přijata v"; -$a->strings["Administrator"] = "Administrátor"; -$a->strings["Friend/Connection Request"] = "Požadavek o přátelství / propojení"; -$a->strings["Examples: jojo@demo.friendika.com, http://demo.friendika.com/profile/jojo, testuser@identi.ca"] = "Příklady: jojo@demo.friendika.com, http://demo.friendika.com/profile/jojo, testuser@identi.ca"; +$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Prosím zadejte Vaši adresu identity jedné z následujících podporovaných komunikačních sítí:"; +$a->strings["Connect as an email follower (Coming soon)"] = "Připojte se jako emailový následovník (Již brzy)"; +$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."] = "Pokud ještě nejste členem svobodné sociální sítě, následujte tento odkaz k nalezení veřejného Friendica serveru a přidejte se k nám ještě dnes."; +$a->strings["Friend/Connection Request"] = "Požadavek o přátelství / kontaktování"; +$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Příklady: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"; $a->strings["Please answer the following:"] = "Odpovězte, prosím, následující:"; $a->strings["Does %s know you?"] = "Zná Vás uživatel %s ?"; -$a->strings["Yes"] = "Ano"; -$a->strings["No"] = "Ne"; $a->strings["Add a personal note:"] = "Přidat osobní poznámku:"; -$a->strings["Please enter your 'Identity Address' from one of the following supported social networks:"] = "Prosím, zadejte adresu své 'identity' jedné z následujících podporovaných sociálních sítí:"; -$a->strings["Friendika"] = "Friendika"; +$a->strings["Friendica"] = "Friendica"; $a->strings["StatusNet/Federated Social Web"] = "StatusNet / Federativní Sociální Web"; -$a->strings["Private (secure) network"] = "Soukromá (zabezpečená) síť"; -$a->strings["Public (insecure) network"] = "Veřejná (nezabezpečená) síť"; -$a->strings["Your Identity Address:"] = "Adresa Vaší identity :"; +$a->strings["Diaspora"] = "Diaspora"; +$a->strings[" - please do not use this form. Instead, enter %s into your Diaspora search bar."] = " - prosím nepoužívejte tento formulář. Místo toho zadejte %s do Vašeho Diaspora vyhledávacího pole."; +$a->strings["Your Identity Address:"] = "Verze PHP pro příkazový řádek na Vašem systému nemá povolen \"register_argc_argv\"."; $a->strings["Submit Request"] = "Odeslat žádost"; -$a->strings["Could not create/connect to database."] = "Nelze vytvořit / připojit se k databázi."; -$a->strings["Connected to database."] = "Připojeno k databázi."; -$a->strings["Proceed with Installation"] = "Pokračovat v instalaci"; -$a->strings["Your Friendika site database has been installed."] = "Vaše databáze Friendiky byla nainstalována."; -$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "Důležité: Budete si muset [ručně] plánovat úlohu pro poller."; +$a->strings["Friendica Social Communications Server - Setup"] = "Friendica Sociální komunkační server - Nastavení"; +$a->strings["Could not connect to database."] = "Nelze se připojit k databázi."; +$a->strings["Could not create table."] = "Nelze vytvořit tabulku."; +$a->strings["Your Friendica site database has been installed."] = "Vaše databáze Friendica byla nainstalována."; +$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Toto je nejčastěji nastavením oprávnění, kdy webový server nemusí být schopen zapisovat soubory do Vašeho adresáře - i když Vy můžete."; $a->strings["Please see the file \"INSTALL.txt\"."] = "Přečtěte si prosím informace v souboru \"INSTALL.txt\"."; -$a->strings["Proceed to registration"] = "Pokračovat k registraci"; -$a->strings["Database import failed."] = "Import databáze se nezdařil."; -$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Možná budete muset importovat soubor \"database.sql\" ručně pomocí phpMyAdmin či MySQL."; -$a->strings["Welcome to Friendika."] = "Vítejte na Friendice."; -$a->strings["Friendika Social Network"] = "Sociální síť Friendika "; -$a->strings["Installation"] = "Instalace"; -$a->strings["In order to install Friendika we need to know how to connect to your database."] = "Pro instalaci Friendika musíme vědět, jak se připojit k databázi."; -$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Obraťte se na svého poskytovatele hostingu nebo administrátora serveru , pokud máte dotazy týkající se těchto nastavení."; -$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Databázi, kterou uvedete níže by již měla existovat. Pokud tak není, prosíme, vytvořte ji před pokračováním."; +$a->strings["System check"] = "Testování systému"; +$a->strings["Check again"] = "Otestovat znovu"; +$a->strings["Database connection"] = "Databázové spojení"; +$a->strings["In order to install Friendica we need to know how to connect to your database."] = "Pro instalaci Friendica potřeujeme znát připojení k Vaší databázi."; +$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Pokud máte otázky k následujícím nastavením, obraťte se na svého poskytovatele hostingu nebo administrátora serveru, "; +$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Databáze, kterou uvedete níže, by již měla existovat. Pokud to tak není, prosíme, vytvořte ji před pokračováním."; $a->strings["Database Server Name"] = "Jméno databázového serveru"; $a->strings["Database Login Name"] = "Přihlašovací jméno k databázi"; $a->strings["Database Login Password"] = "Heslo k databázovému účtu "; $a->strings["Database Name"] = "Jméno databáze"; -$a->strings["Please select a default timezone for your website"] = "Prosím, vyberte výchozí časové pásmo pro vaše webové stránky"; -$a->strings["Site administrator email address. Your account email address must match this in order to use the web admin panel."] = "e-mailová adresa administrárota webu. E-mailová adresa vašeho účtu se musí shodovat, aby bylo možné využívat panel webové administrace."; +$a->strings["Site administrator email address"] = "Emailová adresa administrátora webu"; +$a->strings["Your account email address must match this in order to use the web admin panel."] = "Vaše emailová adresa účtu se musí s touto shodovat, aby bylo možné využívat administrační panel ve webovém rozhraní."; +$a->strings["Please select a default timezone for your website"] = "Prosím, vyberte výchozí časové pásmo pro váš server"; +$a->strings["Site settings"] = "Nastavení webu"; $a->strings["Could not find a command line version of PHP in the web server PATH."] = "Nelze najít verzi PHP pro příkazový řádek v PATH webového serveru."; -$a->strings["This is required. Please adjust the configuration file .htconfig.php accordingly."] = "Tento krok je nutný. Upravte příslušným způsobem konfigurační soubor .htconfig.php."; -$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "Verze PHP pro příkazový řádek na vašem systému nemá povolen \"register_argc_argv\"."; +$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron. See 'Activating scheduled tasks'"] = "Pokud na serveru nemáte nainstalovánu verzi PHP spustitelnou z příkazového řádku, nebudete moci spouštět na pozadí synchronizaci zpráv prostřednictvím cronu. Přečtěte si 'Activating scheduled tasks'\n\n podrobnosti\n návrhy\n historie\n\n\t\nThe following url is either missing from the translation or has been translated: 'http://friendica.com/node/27'>'Activating scheduled tasks'"; +$a->strings["PHP executable path"] = "Cesta k \"PHP executable\""; +$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Zadejte plnou cestu k spustitelnému souboru php. Tento údaj můžete ponechat nevyplněný a pokračovat v instalaci."; +$a->strings["Command line PHP"] = "Příkazový řádek PHP"; +$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "Vyberte prosím profil, který chcete zobrazit %s při zabezpečeném prohlížení Vašeho profilu."; $a->strings["This is required for message delivery to work."] = "Toto je nutné pro fungování doručování zpráv."; +$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"] = "Chyba: funkce \"openssl_pkey_new\" na tomto systému není schopna generovat šifrovací klíče"; $a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Pokud systém běží na Windows, seznamte se s \"http://www.php.net/manual/en/openssl.installation.php\"."; +$a->strings["Generate encryption keys"] = "Generovat kriptovací klíče"; +$a->strings["libCurl PHP module"] = "libCurl PHP modul"; +$a->strings["GD graphics PHP module"] = "GD graphics PHP modul"; +$a->strings["OpenSSL PHP module"] = "OpenSSL PHP modul"; +$a->strings["mysqli PHP module"] = "mysqli PHP modul"; +$a->strings["mb_string PHP module"] = "mb_string PHP modul"; +$a->strings["Apache mod_rewrite module"] = "Apache mod_rewrite modul"; $a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Chyba: Požadovaný Apache webserver mod-rewrite modul není nainstalován."; $a->strings["Error: libCURL PHP module required but not installed."] = "Chyba: požadovaný libcurl PHP modul není nainstalován."; $a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Chyba: požadovaný GD graphics PHP modul není nainstalován."; @@ -199,46 +239,116 @@ $a->strings["Error: mysqli PHP module required but not installed."] = "Chyba: po $a->strings["Error: mb_string PHP module required but not installed."] = "Chyba: PHP modul mb_string je vyžadován, ale není nainstalován."; $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."] = "Webový instalátor musí být schopen vytvořit soubor s názvem \".htconfig.php\" v hlavním adresáři vašeho webového serveru ale nyní mu to není umožněno."; $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."] = "Toto je nejčastěji nastavením oprávnění, kdy webový server nemusí být schopen zapisovat soubory do vašeho adresáře - i když Vy můžete."; -$a->strings["Please check with your site documentation or support people to see if this situation can be corrected."] = "Prosím, poraďte se s dokumentací k Vašemu hostingu nebo s technickou podporou, zda-li lze tuto situaci napravit."; -$a->strings["If not, you may be required to perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "Pokud ne, může být vyžadováno provedení ruční instalace. Prosím, seznamte se s návodem popsaným v souboru \"INSTALL.txt\"."; +$a->strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Friendica top folder."] = "Na konci této procedury obd nás obdržíte text k uložení v souboru pojmenovaném .htconfig.php ve Vašem Friendica kořenovém adresáři."; +$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "Alternativně můžete tento krok přeskočit a provést manuální instalaci. Přečtěte si prosím soubor \"INSTALL.txt\" pro další instrukce."; +$a->strings[".htconfig.php is writable"] = ".htconfig.php je editovatelné"; +$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "Url rewrite v .htconfig nefunguje. Prověřte prosím Vaše nastavení serveru."; +$a->strings["Url rewrite is working"] = "Url rewrite je funkční."; $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."] = "Databázový konfigurační soubor \".htconfig.php\" nemohl být uložen. Prosím, použijte přiložený text k vytvoření konfiguračního souboru ve vašem kořenovém adresáři webového serveru."; $a->strings["Errors encountered creating database tables."] = "Při vytváření databázových tabulek došlo k chybám."; -$a->strings["[Embedded content - reload page to view]"] = "[Vložený obsah - obnovení stránky pro zobrazení]"; +$a->strings["

    What next

    "] = "

    Co dál

    "; +$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "Webový instalátor musí být schopen vytvořit soubor s názvem \".htconfig.php\" v hlavním adresáři Vašeho webového serveru ale nyní mu to není umožněno."; +$a->strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ g:i A"; +$a->strings["Time Conversion"] = "Časová konverze"; +$a->strings["Friendika provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendika poskytuje tuto službu pro sdílení událostí s ostatními sítěmi a přátel v neznámých časových pásem."; +$a->strings["UTC time: %s"] = "UTC čas: %s"; +$a->strings["Current timezone: %s"] = "Aktuální časové pásmo: %s"; +$a->strings["Converted localtime: %s"] = "Převedený lokální čas : %s"; +$a->strings["Please select your timezone:"] = "Prosím, vyberte své časové pásmo:"; +$a->strings["Poke/Prod"] = "Šťouchanec"; +$a->strings["poke, prod or do other things to somebody"] = "někoho šťouchnout nebo mu provést jinou věc"; +$a->strings["Recipient"] = "Příjemce"; +$a->strings["Choose what you wish to do to recipient"] = "Vyberte, co si přejete příjemci udělat"; +$a->strings["Make this post private"] = "Změnit tento příspěvek na soukromý"; $a->strings["Profile Match"] = "Shoda profilu"; $a->strings["No keywords to match. Please add keywords to your default profile."] = "Žádná klíčová slova k porovnání. Prosím, přidejte klíčová slova do Vašeho výchozího profilu."; +$a->strings["is interested in:"] = "zajímá se o:"; +$a->strings["Connect"] = "Spojit"; $a->strings["No matches"] = "Žádné shody"; $a->strings["Remote privacy information not available."] = "Vzdálené soukromé informace nejsou k dispozici."; $a->strings["Visible to:"] = "Viditelné pro:"; +$a->strings["No such group"] = "Žádná taková skupina"; +$a->strings["Group is empty"] = "Skupina je prázdná"; +$a->strings["Group: "] = "Skupina: "; +$a->strings["Select"] = "Vybrat"; +$a->strings["View %s's profile @ %s"] = "Zobrazit profil uživatele %s na %s"; +$a->strings["%s from %s"] = "%s od %s"; +$a->strings["View in context"] = "Pohled v kontextu"; +$a->strings["%d comment"] = array( + 0 => "%d komentář", + 1 => "%d komentářů", + 2 => "%d komentářů", +); +$a->strings["comment"] = array( + 0 => "", + 1 => "", + 2 => "komentář", +); +$a->strings["show more"] = "zobrazit více"; +$a->strings["like"] = "má rád"; +$a->strings["dislike"] = "nemá rád"; +$a->strings["Share this"] = "Sdílet toto"; +$a->strings["share"] = "sdílí"; +$a->strings["Bold"] = "Tučné"; +$a->strings["Italic"] = "Kurzíva"; +$a->strings["Underline"] = "Podrtžené"; +$a->strings["Quote"] = "Citovat"; +$a->strings["Code"] = "Kód"; +$a->strings["Image"] = "Obrázek"; +$a->strings["Link"] = "Odkaz"; +$a->strings["Video"] = "Video"; +$a->strings["add star"] = "přidat hvězdu"; +$a->strings["remove star"] = "odebrat hvězdu"; +$a->strings["toggle star status"] = "přepnout hvězdu"; +$a->strings["starred"] = "označeno hvězdou"; +$a->strings["add tag"] = "přidat štítek"; +$a->strings["save to folder"] = "uložit do složky"; +$a->strings["to"] = "pro"; +$a->strings["Wall-to-Wall"] = "Zeď-na-Zeď"; +$a->strings["via Wall-To-Wall:"] = "přes Zeď-na-Zeď "; $a->strings["Welcome to %s"] = "Vítá Vás %s"; $a->strings["Invalid request identifier."] = "Neplatný identifikátor požadavku."; $a->strings["Discard"] = "Odstranit"; $a->strings["Ignore"] = "Ignorovat"; -$a->strings["Pending Friend/Connect Notifications"] = "Čekající požadavky na Přátelství / Připojení "; +$a->strings["System"] = "Systém"; +$a->strings["Network"] = "Síť"; +$a->strings["Personal"] = "Osobní"; +$a->strings["Home"] = "Domů"; +$a->strings["Introductions"] = "Představení"; +$a->strings["Messages"] = "Zprávy"; $a->strings["Show Ignored Requests"] = "Zobrazit ignorované žádosti"; $a->strings["Hide Ignored Requests"] = "Skrýt ignorované žádosti"; -$a->strings["Notification type: "] = "Typ oznámení:"; +$a->strings["Notification type: "] = "Typ oznámení: "; $a->strings["Friend Suggestion"] = "Návrh přátelství"; $a->strings["suggested by %s"] = "navrhl %s"; +$a->strings["Hide this contact from others"] = "Skrýt tento kontakt před ostatními"; +$a->strings["Post a new friend activity"] = "Zveřejnit aktivitu nového přítele."; +$a->strings["if applicable"] = "je-li použitelné"; $a->strings["Approve"] = "Schválit"; -$a->strings["Claims to be known to you: "] = "Vaši údajní známí:"; +$a->strings["Claims to be known to you: "] = "Vaši údajní známí: "; $a->strings["yes"] = "ano"; $a->strings["no"] = "ne"; -$a->strings["Approve as: "] = "Schválit jako:"; +$a->strings["Approve as: "] = "Schválit jako: "; $a->strings["Friend"] = "Přítel"; +$a->strings["Sharer"] = "Sdílené"; $a->strings["Fan/Admirer"] = "Fanoušek / obdivovatel"; $a->strings["Friend/Connect Request"] = "Přítel / žádost o připojení"; $a->strings["New Follower"] = "Nový následovník"; -$a->strings["No notifications."] = "Žádné oznámení."; -$a->strings["Invite Friends"] = "Pozvat přátele"; -$a->strings["%d invitation available"] = array( - 0 => "Pozvánka %d k dispozici", - 1 => "Pozvánky %d k dispozici", - 2 => "Pozvánky %d k dispozici", -); -$a->strings["Find People With Shared Interests"] = "Najít lidi se společnými zájmy"; -$a->strings["Connect/Follow"] = "Připojit / Následovat"; -$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Příklad: jan@příklad.cz, http://příklad.cz/jana"; -$a->strings["Follow"] = "Následovat"; +$a->strings["No introductions."] = "Žádné představení."; +$a->strings["Notifications"] = "Upozornění"; +$a->strings["%s liked %s's post"] = "Uživateli %s se líbí příspěvek uživatele %s"; +$a->strings["%s disliked %s's post"] = "Uživateli %s se nelíbí příspěvek uživatele %s"; +$a->strings["%s is now friends with %s"] = "%s se nyní přátelí s %s"; +$a->strings["%s created a new post"] = "%s vytvořil nový příspěvek"; +$a->strings["%s commented on %s's post"] = "%s okomentoval příspěvek uživatele %s'"; +$a->strings["No more network notifications."] = "Žádné další síťové upozornění."; +$a->strings["Network Notifications"] = "Upozornění Sítě"; +$a->strings["No more system notifications."] = "Žádné další systémová upozornění."; +$a->strings["System Notifications"] = "Systémová upozornění"; +$a->strings["No more personal notifications."] = "Žádné další osobní upozornění."; +$a->strings["Personal Notifications"] = "Osobní upozornění"; +$a->strings["No more home notifications."] = "Žádné další domácí upozornění."; +$a->strings["Home Notifications"] = "Domácí upozornění"; $a->strings["Could not access contact record."] = "Nelze získat přístup k záznamu kontaktu."; $a->strings["Could not locate selected profile."] = "Nelze nalézt vybraný profil."; $a->strings["Contact updated."] = "Kontakt aktualizován."; @@ -246,94 +356,188 @@ $a->strings["Contact has been blocked"] = "Kontakt byl zablokován"; $a->strings["Contact has been unblocked"] = "Kontakt byl odblokován"; $a->strings["Contact has been ignored"] = "Kontakt bude ignorován"; $a->strings["Contact has been unignored"] = "Kontakt přestal být ignorován"; -$a->strings["stopped following"] = "následování zastaveno"; +$a->strings["Contact has been archived"] = "Kontakt byl archivován"; +$a->strings["Contact has been unarchived"] = "Kontakt byl vrácen z archívu."; $a->strings["Contact has been removed."] = "Kontakt byl odstraněn."; -$a->strings["Mutual Friendship"] = "Vzájemné přátelství"; -$a->strings["is a fan of yours"] = "je Váš fanoušek"; -$a->strings["you are a fan of"] = "jste fanouškem"; -$a->strings["Privacy Unavailable"] = "Ochrana soukromí není k dispozici"; +$a->strings["You are mutual friends with %s"] = "Jste vzájemní přátelé s uživatelem %s"; +$a->strings["You are sharing with %s"] = "Sdílíte s uživatelem %s"; +$a->strings["%s is sharing with you"] = "uživatel %s sdílí s vámi"; $a->strings["Private communications are not available for this contact."] = "Soukromá komunikace není dostupná pro tento kontakt."; $a->strings["Never"] = "Nikdy"; $a->strings["(Update was successful)"] = "(Aktualizace byla úspěšná)"; $a->strings["(Update was not successful)"] = "(Aktualizace nebyla úspěšná)"; $a->strings["Suggest friends"] = "Navrhněte přátelé"; +$a->strings["Network type: %s"] = "Typ sítě: %s"; +$a->strings["%d contact in common"] = array( + 0 => "%d sdílený kontakt", + 1 => "%d sdílených kontaktů", + 2 => "%d sdílených kontaktů", +); +$a->strings["View all contacts"] = "Zobrazit všechny kontakty"; +$a->strings["Unblock"] = "Odblokovat"; +$a->strings["Block"] = "Blokovat"; +$a->strings["Toggle Blocked status"] = "Přepnout stav Blokováno"; +$a->strings["Unignore"] = "Přestat ignorovat"; +$a->strings["Toggle Ignored status"] = "Přepnout stav Ignorováno"; +$a->strings["Unarchive"] = "Vrátit z archívu"; +$a->strings["Archive"] = "Archivovat"; +$a->strings["Toggle Archive status"] = "Přepnout stav Archivováno"; +$a->strings["Repair"] = "Opravit"; +$a->strings["Advanced Contact Settings"] = "Pokročilé nastavení kontaktu"; +$a->strings["Communications lost with this contact!"] = "Komunikace s tímto kontaktem byla ztracena!"; $a->strings["Contact Editor"] = "Editor kontaktu"; $a->strings["Profile Visibility"] = "Viditelnost profilu"; $a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Vyberte prosím profil, který chcete zobrazit %s při zabezpečeném prohlížení vašeho profilu."; $a->strings["Contact Information / Notes"] = "Kontaktní informace / poznámky"; -$a->strings["Online Reputation"] = "Online pověst"; -$a->strings["Occasionally your friends may wish to inquire about this person's online legitimacy."] = "Občas mohou vaši přátelé chtít informovat o online legitimitě této osoby."; -$a->strings["You may help them choose whether or not to interact with this person by providing a reputation to guide them."] = "Poskytnutím pověsti jim můžete pomoci se rozhodnout, zda-li s touto osobou komunikovat či nikoliv."; -$a->strings["Please take a moment to elaborate on this selection if you feel it could be helpful to others."] = "Věnujte prosím chvilku vyplnění této volby, pokud máte pocit, že by mohlo být užitečné pro ostatní."; +$a->strings["Edit contact notes"] = "Editovat poznámky kontaktu"; $a->strings["Visit %s's profile [%s]"] = "Navštivte profil uživatele %s [%s]"; $a->strings["Block/Unblock contact"] = "Blokovat / Odblokovat kontakt"; $a->strings["Ignore contact"] = "Ignorovat kontakt"; -$a->strings["Repair contact URL settings"] = "Opravit nastavení URL kontaktu"; -$a->strings["Repair contact URL settings (WARNING: Advanced)"] = "Opravit nastavení URL kontaktu (Varování: Pokročilé)"; +$a->strings["Repair URL settings"] = "Opravit nastavení adresy URL "; $a->strings["View conversations"] = "Zobrazit konverzace"; $a->strings["Delete contact"] = "Odstranit kontakt"; -$a->strings["Last updated: "] = "Poslední aktualizace:"; -$a->strings["Update public posts: "] = "Aktualizace veřejných příspěvků:"; +$a->strings["Last update:"] = "Poslední aktualizace:"; +$a->strings["Update public posts"] = "Aktualizovat veřejné příspěvky"; $a->strings["Update now"] = "Aktualizovat"; -$a->strings["Unblock this contact"] = "Odblokovat tento kontakt"; -$a->strings["Block this contact"] = "Blokovat tento kontakt"; -$a->strings["Unignore this contact"] = "Přestat ignorovat tento kontakt"; -$a->strings["Ignore this contact"] = "Ignorovat tento kontakt"; $a->strings["Currently blocked"] = "V současnosti zablokováno"; $a->strings["Currently ignored"] = "V současnosti ignorováno"; +$a->strings["Currently archived"] = "Aktuálně archivován"; +$a->strings["Replies/likes to your public posts may still be visible"] = "Odpovědi/Libí se na Vaše veřejné příspěvky mohou být stále viditelné"; +$a->strings["Suggestions"] = "Doporučení"; +$a->strings["Suggest potential friends"] = "Navrhnout potenciální přátele"; +$a->strings["All Contacts"] = "Všechny kontakty"; +$a->strings["Show all contacts"] = "Zobrazit všechny kontakty"; +$a->strings["Unblocked"] = "Odblokován"; +$a->strings["Only show unblocked contacts"] = "Zobrazit pouze neblokované kontakty"; +$a->strings["Blocked"] = "Blokován"; +$a->strings["Only show blocked contacts"] = "Zobrazit pouze blokované kontakty"; +$a->strings["Ignored"] = "Ignorován"; +$a->strings["Only show ignored contacts"] = "Zobrazit pouze ignorované kontakty"; +$a->strings["Archived"] = "Archivován"; +$a->strings["Only show archived contacts"] = "Zobrazit pouze archivované kontakty"; +$a->strings["Hidden"] = "Skrytý"; +$a->strings["Only show hidden contacts"] = "Zobrazit pouze skryté kontakty"; +$a->strings["Mutual Friendship"] = "Vzájemné přátelství"; +$a->strings["is a fan of yours"] = "je Váš fanoušek"; +$a->strings["you are a fan of"] = "jste fanouškem"; +$a->strings["Edit contact"] = "Editovat kontakt"; $a->strings["Contacts"] = "Kontakty"; -$a->strings["Show Blocked Connections"] = "Zobrazit blokované spojení"; -$a->strings["Hide Blocked Connections"] = "Skrýt blokované spojení"; +$a->strings["Search your contacts"] = "Prohledat Vaše kontakty"; $a->strings["Finding: "] = "Zjištění: "; $a->strings["Find"] = "Najít"; -$a->strings["Edit contact"] = "Editovat kontakt"; $a->strings["No valid account found."] = "Nenalezen žádný platný účet."; $a->strings["Password reset request issued. Check your email."] = "Žádost o obnovení hesla vyřízena. Zkontrolujte Vaši e-mailovou schránku."; $a->strings["Password reset requested at %s"] = "Na %s bylo zažádáno o resetování hesla"; +$a->strings["Administrator"] = "Administrátor"; $a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Žádost nemohla být ověřena. (Možná jste ji odeslali již dříve.) Obnovení hesla se nezdařilo."; $a->strings["Password Reset"] = "Obnovení hesla"; $a->strings["Your password has been reset as requested."] = "Vaše heslo bylo na Vaše přání resetováno."; -$a->strings["Your new password is"] = "Vaše nové heslo je"; +$a->strings["Your new password is"] = "Někdo Vám napsal na Vaši profilovou stránku"; $a->strings["Save or copy your new password - and then"] = "Uložte si nebo zkopírujte nové heslo - a pak"; $a->strings["click here to login"] = "klikněte zde pro přihlášení"; -$a->strings["Your password may be changed from the Settings page after successful login."] = "Vaše heslo může být změněno na stránce nastavení po úspěšném přihlášení."; +$a->strings["Your password may be changed from the Settings page after successful login."] = "Nezdá se, že by to bylo Vaše celé jméno (křestní jméno a příjmení)."; $a->strings["Forgot your Password?"] = "Zapomněli jste heslo?"; $a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Zadejte svůj e-mailovou adresu a odešlete žádost o zaslání Vašeho nového hesla. Poté zkontrolujte svůj e-mail pro další instrukce."; -$a->strings["Nickname or Email: "] = "Přezdívka nebo e-mail:"; +$a->strings["Nickname or Email: "] = "Přezdívka nebo e-mail: "; $a->strings["Reset"] = "Reset"; +$a->strings["Account settings"] = "Nastavení účtu"; +$a->strings["Display settings"] = "Nastavení zobrazení"; +$a->strings["Connector settings"] = "Nastavení konektoru"; +$a->strings["Plugin settings"] = "Nastavení pluginu"; +$a->strings["Connected apps"] = "Propojené aplikace"; +$a->strings["Export personal data"] = "Export osobních údajů"; +$a->strings["Remove account"] = "Odstranit účet"; +$a->strings["Settings"] = "Nastavení"; +$a->strings["Missing some important data!"] = "Chybí některé důležité údaje!"; +$a->strings["Update"] = "Aktualizace"; +$a->strings["Failed to connect with email account using the settings provided."] = "Nepodařilo se připojit k e-mailovému účtu pomocí dodaného nastavení."; +$a->strings["Email settings updated."] = "Nastavení e-mailu aktualizována."; $a->strings["Passwords do not match. Password unchanged."] = "Hesla se neshodují. Heslo nebylo změněno."; $a->strings["Empty passwords are not allowed. Password unchanged."] = "Prázdné hesla nejsou povolena. Heslo nebylo změněno."; $a->strings["Password changed."] = "Heslo bylo změněno."; $a->strings["Password update failed. Please try again."] = "Aktualizace hesla se nezdařila. Zkuste to prosím znovu."; -$a->strings["Failed to connect with email account using the settings provided."] = "Nepodařilo se připojit k e-mailovému účtu pomocí dodaného nastavení."; $a->strings[" Please use a shorter name."] = "Prosím použijte kratší jméno."; $a->strings[" Name too short."] = "Jméno je příliš krátké."; $a->strings[" Not valid email."] = "Neplatný e-mail."; $a->strings[" Cannot change to that email."] = "Nelze provést změnu na tento e-mail."; +$a->strings["Private forum has no privacy permissions. Using default privacy group."] = "Soukromé fórum nemá nastaveno zabezpečení. Používá se defaultní soukromá skupina."; +$a->strings["Private forum has no privacy permissions and no default privacy group."] = "Soukromé fórum nemá nastaveno zabezpečení a ani žádnou defaultní soukromou skupinu."; $a->strings["Settings updated."] = "Nastavení aktualizováno."; -$a->strings["Account settings"] = "Nastavení účtu"; -$a->strings["Plugin settings"] = "Nastavení pluginu"; +$a->strings["Add application"] = "Přidat aplikaci"; +$a->strings["Consumer Key"] = "Consumer Key"; +$a->strings["Consumer Secret"] = "Consumer Secret"; +$a->strings["Redirect"] = "Přesměrování"; +$a->strings["Icon url"] = "URL ikony"; +$a->strings["You can't edit this application."] = "Nemůžete editovat tuto aplikaci."; +$a->strings["Connected Apps"] = "Připojené aplikace"; +$a->strings["Client key starts with"] = "Klienský klíč začíná"; +$a->strings["No name"] = "Bez názvu"; +$a->strings["Remove authorization"] = "Odstranit oprávnění"; $a->strings["No Plugin settings configured"] = "Žádný doplněk není nastaven"; $a->strings["Plugin Settings"] = "Nastavení doplňku"; -$a->strings["Normal Account"] = "Normální účet"; +$a->strings["Built-in support for %s connectivity is %s"] = "Vestavěná podpora pro připojení s %s je %s"; +$a->strings["enabled"] = "povoleno"; +$a->strings["disabled"] = "zakázáno"; +$a->strings["StatusNet"] = "StatusNet"; +$a->strings["Email access is disabled on this site."] = "Přístup k elektronické poště je na tomto serveru zakázán."; +$a->strings["Connector Settings"] = "Nastavení konektoru"; +$a->strings["Email/Mailbox Setup"] = "Nastavení e-mailu"; +$a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "Pokud chcete komunikovat pomocí této služby s Vašimi kontakty z e-mailu (volitelné), uveďte, jak se připojit k Vaší e-mailové schránce."; +$a->strings["Last successful email check:"] = "Poslední úspěšná kontrola e-mailu:"; +$a->strings["IMAP server name:"] = "jméno IMAP serveru:"; +$a->strings["IMAP port:"] = "IMAP port:"; +$a->strings["Security:"] = "Zabezpečení:"; +$a->strings["None"] = "Žádný"; +$a->strings["Email login name:"] = "přihlašovací jméno k e-mailu:"; +$a->strings["Email password:"] = "heslo k Vašemu e-mailu:"; +$a->strings["Reply-to address:"] = "Odpovědět na adresu:"; +$a->strings["Send public posts to all email contacts:"] = "Poslat veřejné příspěvky na všechny e-mailové kontakty:"; +$a->strings["Action after import:"] = "Akce po importu:"; +$a->strings["Mark as seen"] = "Označit jako přečtené"; +$a->strings["Move to folder"] = "Přesunout do složky"; +$a->strings["Move to folder:"] = "Přesunout do složky:"; +$a->strings["No special theme for mobile devices"] = "žádné speciální téma pro mobilní zařízení"; +$a->strings["Display Settings"] = "Nastavení Zobrazení"; +$a->strings["Display Theme:"] = "Vybrat grafickou šablonu:"; +$a->strings["Mobile Theme:"] = "Téma pro mobilní zařízení:"; +$a->strings["Update browser every xx seconds"] = "Aktualizovat prohlížeč každých xx sekund"; +$a->strings["Minimum of 10 seconds, no maximum"] = "Minimum 10 sekund, žádné maximum."; +$a->strings["Number of items to display per page:"] = ""; +$a->strings["Maximum of 100 items"] = "Maximum 100 položek"; +$a->strings["Don't show emoticons"] = "Nezobrazovat emotikony"; +$a->strings["Normal Account Page"] = "Normální stránka účtu"; $a->strings["This account is a normal personal profile"] = "Tento účet je běžný osobní profil"; -$a->strings["Soapbox Account"] = "Soapbox účet"; +$a->strings["Soapbox Page"] = "Stránka \"Soapbox\""; $a->strings["Automatically approve all connection/friend requests as read-only fans"] = "Automaticky schválit všechna spojení / přátelství jako fanoušky s právem pouze ke čtení"; -$a->strings["Community/Celebrity Account"] = "Komunitní účet / Účet celebrity"; +$a->strings["Community Forum/Celebrity Account"] = "Komunitní fórum/ účet celebrity"; $a->strings["Automatically approve all connection/friend requests as read-write fans"] = "Automaticky schvalovat všechny žádosti o spojení / přátelství, jako fanoušky s právem ke čtení."; -$a->strings["Automatic Friend Account"] = "Účet s automatickým schvalováním přátel"; +$a->strings["Automatic Friend Page"] = "Automatická stránka přítele"; $a->strings["Automatically approve all connection/friend requests as friends"] = "Automaticky schvalovat všechny žádosti o spojení / přátelství jako přátele"; +$a->strings["Private Forum [Experimental]"] = "Soukromé fórum [Experimentální]"; +$a->strings["Private forum - approved members only"] = "Soukromé fórum - pouze pro schválené členy"; $a->strings["OpenID:"] = "OpenID:"; $a->strings["(Optional) Allow this OpenID to login to this account."] = "(Volitelné) Povolit OpenID pro přihlášení k tomuto účtu."; $a->strings["Publish your default profile in your local site directory?"] = "Publikovat Váš výchozí profil v místním adresáři webu?"; $a->strings["Publish your default profile in the global social directory?"] = "Publikovat Váš výchozí profil v globální sociálním adresáři?"; $a->strings["Hide your contact/friend list from viewers of your default profile?"] = "Skrýt Vaše kontaktní údaje a seznam přátel před návštěvníky ve Vašem výchozím profilu?"; -$a->strings["Hide profile details and all your messages from unknown viewers?"] = "Skrýt detaily profilu a všechny zprávy před neznámými uživateli?"; +$a->strings["Hide your profile details from unknown viewers?"] = "Skrýt Vaše profilové detaily před neznámými uživateli?"; +$a->strings["Allow friends to post to your profile page?"] = "Povolit přátelům umisťování příspěvků na vaši profilovou stránku?"; +$a->strings["Allow friends to tag your posts?"] = "Povolit přátelům označovat Vaše příspěvky?"; +$a->strings["Allow us to suggest you as a potential friend to new members?"] = "Chcete nám povolit abychom vás navrhovali jako přátelé pro nové členy?"; +$a->strings["Permit unknown people to send you private mail?"] = "Povolit neznámým lidem Vám zasílat soukromé zprávy?"; $a->strings["Profile is not published."] = "Profil není zveřejněn."; $a->strings["or"] = "nebo"; $a->strings["Your Identity Address is"] = "Vaše adresa identity je"; +$a->strings["Automatically expire posts after this many days:"] = "Automaticky expirovat příspěvky po zadaném počtu dní:"; +$a->strings["If empty, posts will not expire. Expired posts will be deleted"] = "Pokud je prázdné, příspěvky nebudou nikdy expirovat. Expirované příspěvky budou vymazány"; +$a->strings["Advanced expiration settings"] = "Pokročilé nastavení expirací"; +$a->strings["Advanced Expiration"] = "Nastavení expirací"; +$a->strings["Expire posts:"] = "Expirovat příspěvky:"; +$a->strings["Expire personal notes:"] = "Expirovat osobní poznámky:"; +$a->strings["Expire starred posts:"] = "Expirovat příspěvky s hvězdou:"; +$a->strings["Expire photos:"] = "Expirovat fotografie:"; +$a->strings["Only expire posts by others:"] = "Přízpěvky expirovat pouze ostatními:"; $a->strings["Account Settings"] = "Nastavení účtu"; -$a->strings["Export Personal Data"] = "Export osobních údajů"; $a->strings["Password Settings"] = "Nastavení hesla"; $a->strings["New Password:"] = "Nové heslo:"; $a->strings["Confirm:"] = "Potvrďte:"; @@ -344,69 +548,105 @@ $a->strings["Email Address:"] = "E-mailová adresa:"; $a->strings["Your Timezone:"] = "Vaše časové pásmo:"; $a->strings["Default Post Location:"] = "Výchozí umístění příspěvků:"; $a->strings["Use Browser Location:"] = "Používat umístění dle prohlížeče:"; -$a->strings["Display Theme:"] = "Vybrat grafickou šablonu:"; $a->strings["Security and Privacy Settings"] = "Nastavení zabezpečení a soukromí"; $a->strings["Maximum Friend Requests/Day:"] = "Maximální počet žádostí o přátelství za den:"; $a->strings["(to prevent spam abuse)"] = "(Aby se zabránilo spamu)"; $a->strings["Default Post Permissions"] = "Výchozí oprávnění pro příspěvek"; $a->strings["(click to open/close)"] = "(Klikněte pro otevření/zavření)"; -$a->strings["Allow friends to post to your profile page:"] = "Povolit přátelům příspěvky na Vaši profilovou stránku:"; -$a->strings["Automatically expire posts after days:"] = "Po kolika dnech automaticky expirovat příspěvky:"; -$a->strings["If empty, posts will not expire. Expired posts will be deleted"] = "Pokud je prázdné, příspěvky nebudou nikdy expirovat. Expirované příspěvky budou vymazány"; +$a->strings["Maximum private messages per day from unknown people:"] = "Maximum soukromých zpráv od neznámých lidí:"; $a->strings["Notification Settings"] = "Nastavení notifikací"; +$a->strings["By default post a status message when:"] = "Defaultně posílat statusové zprávy když:"; +$a->strings["accepting a friend request"] = "akceptuji požadavek na přátelství"; +$a->strings["joining a forum/community"] = "připojující se k fóru/komunitě"; +$a->strings["making an interesting profile change"] = "provedení zajímavé profilové změny"; $a->strings["Send a notification email when:"] = "Poslat notifikaci e-mailem, když"; $a->strings["You receive an introduction"] = "obdržíte žádost o propojení"; $a->strings["Your introductions are confirmed"] = "Vaše žádosti jsou potvrzeny"; $a->strings["Someone writes on your profile wall"] = "někdo Vám napíše na Vaši profilovou stránku"; $a->strings["Someone writes a followup comment"] = "někdo Vám napíše následný komentář"; $a->strings["You receive a private message"] = "obdržíte soukromou zprávu"; -$a->strings["Email/Mailbox Setup"] = "Nastavení e-mailu"; -$a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "Pokud chcete komunikovat pomocí této služby s Vašimi kontakty z e-mailu (volitelné), uveďte, jak se připojit k Vaší e-mailové schránce."; -$a->strings["Last successful email check:"] = "Poslední úspěšná kontrola e-mailu:"; -$a->strings["Email access is disabled on this site."] = "Přístup k elektronické poště je na tomto serveru zakázán."; -$a->strings["IMAP server name:"] = "jméno IMAP serveru:"; -$a->strings["IMAP port:"] = "IMAP port:"; -$a->strings["Security:"] = "Zabezpečení:"; -$a->strings["None"] = "Žádný"; -$a->strings["Email login name:"] = "přihlašovací jméno k e-mailu:"; -$a->strings["Email password:"] = "heslo k Vašemu e-mailu:"; -$a->strings["Reply-to address:"] = "Odpovědět na adresu:"; -$a->strings["Send public posts to all email contacts:"] = "Poslat veřejné příspěvky na všechny e-mailové kontakty:"; -$a->strings["Advanced Page Settings"] = "Pokročilé nastavení stránky"; -$a->strings["Welcome back %s"] = "Vítejte zpět %s"; +$a->strings["You receive a friend suggestion"] = "Obdržel jste návrh přátelství"; +$a->strings["You are tagged in a post"] = "Jste označen v příspěvku"; +$a->strings["You are poked/prodded/etc. in a post"] = "Byl Jste šťouchnout v příspěvku"; +$a->strings["Advanced Account/Page Type Settings"] = "Pokročilé nastavení účtu/stránky"; +$a->strings["Change the behaviour of this account for special situations"] = "Změnit chování tohoto účtu ve speciálních situacích"; $a->strings["Manage Identities and/or Pages"] = "Správa identit a / nebo stránek"; -$a->strings["(Toggle between different identities or community/group pages which share your account details.)"] = "(Přepínání mezi různými identitami nebo komunitními / skupinovými stránkami, které sdílejí Vaše detaily účtu.)"; -$a->strings["Select an identity to manage: "] = "Vyberte identitu pro správu:"; -$a->strings["View Conversations"] = "Zobrazit konverzace"; -$a->strings["View New Items"] = "Zobrazit nové položky"; -$a->strings["View Any Items"] = "Zobrazit všechny položky"; -$a->strings["View Starred Items"] = "Zobrazit položky označené hvězdu"; +$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Přepnutí mezi různými identitami nebo komunitními/skupinovými stránkami, které sdílí Vaše detaily účtu, nebo kterým jste přidělili oprávnění nastavovat přístupová práva."; +$a->strings["Select an identity to manage: "] = "Vyberte identitu pro správu: "; +$a->strings["Search Results For:"] = "Výsledky hledání pro:"; +$a->strings["Remove term"] = "Odstranit termín"; +$a->strings["Saved Searches"] = "Uložená hledání"; +$a->strings["add"] = "přidat"; +$a->strings["Commented Order"] = "Dle komentářů"; +$a->strings["Sort by Comment Date"] = "Řadit podle data komentáře"; +$a->strings["Posted Order"] = "Dle data"; +$a->strings["Sort by Post Date"] = "Řadit podle data příspěvku"; +$a->strings["Posts that mention or involve you"] = "Příspěvky, které Vás zmiňují nebo zahrnují"; +$a->strings["New"] = "Nové"; +$a->strings["Activity Stream - by date"] = "Proud aktivit - dle data"; +$a->strings["Starred"] = "S hvězdičkou"; +$a->strings["Favourite Posts"] = "Oblíbené přízpěvky"; +$a->strings["Shared Links"] = "Sdílené odkazy"; +$a->strings["Interesting Links"] = "Zajímavé odkazy"; $a->strings["Warning: This group contains %s member from an insecure network."] = array( 0 => "Upozornění: Tato skupina obsahuje %s člena z nezabezpečené sítě.", 1 => "Upozornění: Tato skupina obsahuje %s členy z nezabezpečené sítě.", 2 => "Upozornění: Tato skupina obsahuje %s členy z nezabezpečené sítě.", ); $a->strings["Private messages to this group are at risk of public disclosure."] = "Soukromé zprávy této skupině jsou vystaveny riziku prozrazení."; -$a->strings["No such group"] = "Žádná taková skupina"; -$a->strings["Group is empty"] = "Skupina je prázdná"; -$a->strings["Group: "] = "Skupina:"; -$a->strings["Contact: "] = "Kontakt:"; +$a->strings["Contact: "] = "Kontakt: "; $a->strings["Private messages to this person are at risk of public disclosure."] = "Soukromé zprávy této osobě jsou vystaveny riziku prozrazení."; $a->strings["Invalid contact."] = "Neplatný kontakt."; +$a->strings["Personal Notes"] = "Osobní poznámky"; $a->strings["Save"] = "Uložit"; -$a->strings["Welcome to Friendika"] = "Vítejte na Friendika"; +$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "Došlo k překročení maximálního počtu zpráv na zeď během jednoho dne. Zpráva %s nedoručena."; +$a->strings["No recipient selected."] = "Nevybrán příjemce."; +$a->strings["Unable to check your home location."] = "Nebylo možné zjistit Vaši domácí lokaci."; +$a->strings["Message could not be sent."] = "Zprávu se nepodařilo odeslat."; +$a->strings["Message collection failure."] = "Sběr zpráv selhal."; +$a->strings["Message sent."] = "Zpráva odeslána."; +$a->strings["No recipient."] = "Žádný příjemce."; +$a->strings["Please enter a link URL:"] = "Zadejte prosím URL odkaz:"; +$a->strings["Send Private Message"] = "Odeslat soukromou zprávu"; +$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "Pokud si přejete, aby uživatel %s mohl odpovědět, ověřte si zda-li máte povoleno na svém serveru zasílání soukromých zpráv od neznámých odesilatelů."; +$a->strings["To:"] = "Adresát:"; +$a->strings["Subject:"] = "Předmět:"; +$a->strings["Your message:"] = "Vaše zpráva:"; +$a->strings["Welcome to Friendica"] = "Vítejte na Friendica"; $a->strings["New Member Checklist"] = "Seznam doporučení pro nového člena"; -$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."] = "Dovolujeme si Vám nabídnout některé tipy a odkazy, abychom Vám zpříjemnili práci se systémem Friendika. Kliknutím na libovolnou položku navštívit příslušnou stránku."; -$a->strings["On your Settings page - change your initial password. Also make a note of your Identity Address. This will be useful in making friends."] = "Na stránce Nastavení - změnit výchozí heslo. Poznamenejte si také adresu své identity. To může být užitečné při navazování přátelství."; +$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."] = "Rádi bychom vám nabídli několik tipů a odkazů pro začátek. Klikněte na jakoukoliv položku pro zobrazení relevantní stránky. Odkaz na tuto stránku bude viditelný z Vaší domovské stránky po dobu dvou týdnů od Vaší první registrace."; +$a->strings["Getting Started"] = "Začínáme"; +$a->strings["Friendica Walk-Through"] = "Prohlídka Friendica "; +$a->strings["On your Quick Start page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."] = "Na Vaší stránce Rychlý Start - naleznete stručné představení k Vašemu profilu a záložce Síť, k vytvoření spojení s novými kontakty a nalezení skupin, ke kterým se můžete připojit."; +$a->strings["Go to Your Settings"] = "Navštivte své nastavení"; +$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."] = "Na Vaší stránce Nastavení - si změňte Vaše první heslo.\nVěnujte také svou pozornost k adrese identity. Vypadá jako emailová adresa a bude Vám užitečná pro navazování přátelství na svobodné sociální síti."; $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."] = "Prohlédněte si další nastavení, a to zejména nastavení soukromí. Nezveřejnění svého účtu v adresáři je jako mít nezveřejněné telefonní číslo. Obecně platí, že je lepší mít svůj účet zveřejněný, leda by všichni vaši potenciální přátelé věděli, jak vás přesně najít."; +$a->strings["Profile"] = "Profil"; +$a->strings["Upload Profile Photo"] = "Nahrát profilovou fotografii"; $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."] = "Nahrajte si svou profilovou fotku, pokud jste tak již neučinili. Studie ukázaly, že lidé se skutečnými fotografiemi mají desetkrát častěji přátele než lidé, kteří nemají."; -$a->strings["Authorise the Facebook Connector if you currently have a Facebook account and we will (optionally) import all your Facebook friends and conversations."] = "Jestliže máte účet na Facebooku, povolte konektor na Facebook a bude možné (na přání) importovat všechny Vaš přátele na Facebooku a všechny Vaše konverzace."; -$a->strings["Enter your email access information on your Settings page if you wish to import and interact with friends or mailing lists from your email INBOX"] = "na stránce Nastavení zadejte informace pro přístup k Vaší e-mailové stránce, pokud si přejete importovat a komunikovat s přáteli nebo distribučními skupinami z Vaší e-mailové schránky"; +$a->strings["Edit Your Profile"] = "Editujte Váš profil"; $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."] = "Upravit výchozí profil podle vašich představ. Prověřte nastavení pro skrytí Vašeho seznamu přátel a skrytí profilu před neznámými návštěvníky."; -$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."] = "Nastavte si nějaká veřejné klíčová slova pro výchozí profil, která popisují vaše zájmy. Friendika Vám může nalézt další lidi s podobnými zájmy a navrhnout přátelství."; -$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 Connect dialog."] = "Stránka Kontakty je Vaším odrazovým můstkem k řízení přátelství a spojení s kamarády v jiných sítích. Obvykle zadáte jejich adresu nebo adresu URL do dialogu Připojit."; +$a->strings["Profile Keywords"] = "Profilová klíčová slova"; +$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."] = "Nastavte si nějaká veřejné klíčová slova pro výchozí profil, která popisují Vaše zájmy. Friendika Vám může nalézt další lidi s podobnými zájmy a navrhnout přátelství."; +$a->strings["Connecting"] = "Probíhá pokus o připojení"; +$a->strings["Facebook"] = "Facebook"; +$a->strings["Authorise the Facebook Connector if you currently have a Facebook account and we will (optionally) import all your Facebook friends and conversations."] = "Jestliže máte účet na Facebooku, povolte konektor na Facebook a bude možné (na přání) importovat všechny Vaš přátele na Facebooku a všechny Vaše konverzace."; +$a->strings["If this is your own personal server, installing the Facebook addon may ease your transition to the free social web."] = "Pokud je toto Váš soukromý server, instalací Facebok doplňku můžete zjednodušit Váš přechod na svobodný sociální web."; +$a->strings["Importing Emails"] = "Importování emaiů"; +$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"] = "Pokud chcete importovat své přátele nebo mailové skupiny a komunikovat s nimi, zadejte na Vaší stránce Nastavení kontektoru své přístupové údaje do svého emailového účtu"; +$a->strings["Go to Your Contacts Page"] = "Navštivte Vaši stránku s kontakty"; +$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."] = "Vaše stránka Kontakty je Vaše brána k nastavování přátelství a propojení s přáteli z dalších sítí. Typicky zadáte jejich emailovou adresu nebo URL adresu jejich serveru prostřednictvím dialogu Přidat nový kontakt."; +$a->strings["Go to Your Site's Directory"] = "Navštivte lokální adresář Friendica"; $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."] = "Stránka Adresář Vám pomůže najít další lidi na tomto serveru nebo v jiných propojených serverech. Prostřednictvím odkazů Připojení nebo Následovat si prohlédněte jejich profilovou stránku. Uveďte svou vlastní adresu identity, je-li požadována."; -$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."] = "Jakmile získáte nějaké přátele, uspořádejte si je do soukromých konverzačních skupin na postranním panelu vaší stránky Kontakty a pak můžete komunikovat s každou touto skupinu soukromě prostřednictvím stránky Síť."; +$a->strings["Finding New People"] = "Nalezení nových lidí"; +$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."] = "Na bočním panelu stránky s kontakty je několik nástrojů k nalezení nových přátel. Porovnáme lidi dle zájmů, najdeme lidi podle jména nebo zájmu a poskytneme Vám návrhy založené na přátelství v síti přátel. Na zcela novém serveru se návrhy přátelství nabínou obvykle během 24 hodin."; +$a->strings["Groups"] = "Skupiny"; +$a->strings["Group Your Contacts"] = "Seskupte si své kontakty"; +$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."] = "Jakmile získáte nějaké přátele, uspořádejte si je do soukromých konverzačních skupin na postranním panelu Vaší stránky Kontakty a pak můžete komunikovat s každou touto skupinu soukromě prostřednictvím stránky Síť."; +$a->strings["Why Aren't My Posts Public?"] = "Proč nejsou mé příspěvky veřejné?"; +$a->strings["Friendica respects your privacy. By default, your posts will only show up to people you've added as friends. For more information, see the help section from the link above."] = "Friendica respektuje Vaše soukromí. Defaultně jsou Vaše příspěvky viditelné pouze lidem, které označíte jako Vaše přátelé. Více informací naleznete v nápovědě na výše uvedeném odkazu"; +$a->strings["Getting Help"] = "Získání nápovědy"; +$a->strings["Go to the Help Section"] = "Navštivte sekci nápovědy"; $a->strings["Our help pages may be consulted for detail on other program features and resources."] = "Na stránkách Nápověda naleznete nejen další podrobnosti o všech funkcích Friendika ale také další zdroje informací."; $a->strings["Item not available."] = "Položka není k dispozici."; $a->strings["Item was not found."] = "Položka nebyla nalezena."; @@ -416,44 +656,29 @@ $a->strings["Group not found."] = "Skupina nenalezena."; $a->strings["Group name changed."] = "Název skupiny byl změněn."; $a->strings["Permission denied"] = "Nedostatečné oprávnění"; $a->strings["Create a group of contacts/friends."] = "Vytvořit skupinu kontaktů / přátel."; -$a->strings["Group Name: "] = "Název skupiny:"; +$a->strings["Group Name: "] = "Název skupiny: "; $a->strings["Group removed."] = "Skupina odstraněna. "; $a->strings["Unable to remove group."] = "Nelze odstranit skupinu."; -$a->strings["Click on a contact to add or remove."] = "Klikněte na kontakt pro přidání nebo odebrání"; $a->strings["Group Editor"] = "Editor skupin"; $a->strings["Members"] = "Členové"; -$a->strings["All Contacts"] = "Všechny kontakty"; +$a->strings["Click on a contact to add or remove."] = "Klikněte na kontakt pro přidání nebo odebrání"; $a->strings["Invalid profile identifier."] = "Neplatný identifikátor profilu."; $a->strings["Profile Visibility Editor"] = "Editor viditelnosti profilu "; $a->strings["Visible To"] = "Viditelný pro"; $a->strings["All Contacts (with secure profile access)"] = "Všechny kontakty (se zabezpečeným přístupovým profilem )"; -$a->strings["View Contacts"] = "Zobrazit kontakty"; $a->strings["No contacts."] = "Žádné kontakty."; -$a->strings["An invitation is required."] = "Pozvánka je vyžadována."; -$a->strings["Invitation could not be verified."] = "Pozvánka nemohla být ověřena."; -$a->strings["Invalid OpenID url"] = "Neplatný odkaz OpenID"; -$a->strings["Please enter the required information."] = "Zadejte prosím požadované informace."; -$a->strings["Please use a shorter name."] = "Použijte prosím kratší jméno."; -$a->strings["Name too short."] = "Jméno je příliš krátké."; -$a->strings["That doesn't appear to be your full (First Last) name."] = "Nezdá se, že by to bylo vaše celé jméno (křestní jméno a příjmení)."; -$a->strings["Your email domain is not among those allowed on this site."] = "Váš e-mailová doména není na tomto serveru mezi povolenými."; -$a->strings["Not a valid email address."] = "Neplatná e-mailová adresa."; -$a->strings["Cannot use that email."] = "Tento e-mail nelze použít."; -$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and must also begin with a letter."] = "Vaše \"přezdívka\" může obsahovat pouze \"a-z\", \"0-9\", \"-\", a \"_\", a musí začínat písmenem."; -$a->strings["Nickname is already registered. Please choose another."] = "Přezdívka je již registrována. Prosím vyberte jinou."; -$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "Závažná chyba: Generování bezpečnostních klíčů se nezdařilo."; -$a->strings["An error occurred during registration. Please try again."] = "Došlo k chybě při registraci. Zkuste to prosím znovu."; -$a->strings["An error occurred creating your default profile. Please try again."] = "Došlo k chybě při vytváření Vašeho výchozího profilu. Zkuste to prosím znovu."; +$a->strings["View Contacts"] = "Zobrazit kontakty"; $a->strings["Registration details for %s"] = "Registrační údaje pro %s"; $a->strings["Registration successful. Please check your email for further instructions."] = "Registrace úspěšná. Zkontrolujte prosím svůj e-mail pro další instrukce."; $a->strings["Failed to send email message. Here is the message that failed."] = "Nepodařilo se odeslat zprávu na e-mail. Zde je zpráva, která nebyla odeslána."; $a->strings["Your registration can not be processed."] = "Vaši registraci nelze zpracovat."; $a->strings["Registration request at %s"] = "Žádost o registraci na %s"; $a->strings["Your registration is pending approval by the site owner."] = "Vaše registrace čeká na schválení vlastníkem serveru."; +$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Došlo k překročení maximálního povoleného počtu registrací za den na tomto serveru. Zkuste to zítra znovu."; $a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Tento formulář můžete (volitelně) vyplnit s pomocí OpenID tím, že vyplníte své OpenID a kliknutete na tlačítko 'Zaregistrovat'."; $a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Pokud nepoužíváte OpenID, nechte prosím toto pole prázdné a vyplňte zbylé položky."; -$a->strings["Your OpenID (optional): "] = "Vaše OpenID (nepovinné):"; -$a->strings["Include your profile in member directory?"] = "Uvést Váš profil v adresáři členů?"; +$a->strings["Your OpenID (optional): "] = "Vaše OpenID (nepovinné): "; +$a->strings["Include your profile in member directory?"] = "Toto je Váš veřejný profil.
    Ten může být viditelný kýmkoliv na internetu."; $a->strings["Membership on this site is by invitation only."] = "Členství na tomto webu je pouze na pozvání."; $a->strings["Your invitation ID: "] = "Vaše pozvání ID:"; $a->strings["Registration"] = "Registrace"; @@ -462,38 +687,35 @@ $a->strings["Your Email Address: "] = "Vaše e-mailová adresa:"; $a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be 'nickname@\$sitename'."] = "Vyberte přezdívku k profilu. Ta musí začít s textovým znakem. Vaše profilová adresa na tomto webu pak bude \"přezdívka@\$sitename\"."; $a->strings["Choose a nickname: "] = "Vyberte přezdívku:"; $a->strings["Register"] = "Registrovat"; +$a->strings["People Search"] = "Vyhledávání lidí"; $a->strings["status"] = "Stav"; $a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s má rád %2\$s' na %3\$s"; $a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s nemá rád %2\$s na %3\$s"; -$a->strings["This is Friendika version"] = "Toto je Friendika verze"; -$a->strings["running at web location"] = "běžící na webu"; -$a->strings["Shared content within the Friendika network is provided under the Creative Commons Attribution 3.0 license"] = "Sdílený obsah v síti Friendika je poskytována pod licencí Creative Commons Attribution 3.0"; -$a->strings["Please visit Project.Friendika.com to learn more about the Friendika project."] = "Pokud se chcete dozvědět více o projektu Friendika, navštivte, prosím, Project.Friendika.com"; -$a->strings["Bug reports and issues: please visit"] = "Pro hlášení chyb a námětů na změny navštivte:"; -$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendika - dot com"] = "Návrhy, chválu, dary, atd. - prosím pošlete na e-mail \"Info\" na Friendika tečka com"; -$a->strings["Installed plugins/addons/apps"] = "Nainstalované doplňky/aplikace"; -$a->strings["No installed plugins/addons/apps"] = "Nejsou žádné nainstalované doplňky/aplikace"; +$a->strings["Item not found."] = "Položka nenalezena."; +$a->strings["Access denied."] = "Přístup odmítnut"; +$a->strings["Photos"] = "Fotografie"; +$a->strings["Files"] = "Soubory"; $a->strings["Account approved."] = "Účet schválen."; $a->strings["Registration revoked for %s"] = "Registrace zrušena pro %s"; $a->strings["Please login."] = "Přihlaste se, prosím."; $a->strings["Unable to locate original post."] = "Nelze nalézt původní příspěvek."; $a->strings["Empty post discarded."] = "Prázdný příspěvek odstraněn."; $a->strings["Wall Photos"] = "Fotografie na zdi"; -$a->strings["noreply"] = "bez odpovědi"; -$a->strings["Administrator@"] = "Administrator@"; -$a->strings["%s commented on an item at %s"] = "%s okomentoval položku v %s"; -$a->strings["%s posted to your profile wall at %s"] = "%s přidal příspěvek na vaší profilovou zeď v %s"; $a->strings["System error. Post not saved."] = "Chyba systému. Příspěvek nebyl uložen."; -$a->strings["This message was sent to you by %s, a member of the Friendika social network."] = "Tuto zprávu Vám zaslal %s, člen sociální sítě Friendika."; +$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "Tato zpráva vám byla zaslána od %s, člena sociální sítě Friendica."; $a->strings["You may visit them online at %s"] = "Můžete je navštívit online na adrese %s"; $a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Pokud nechcete dostávat tyto zprávy, kontaktujte prosím odesilatele odpovědí na tento záznam."; $a->strings["%s posted an update."] = "%s poslal aktualizaci."; +$a->strings["%1\$s is currently %2\$s"] = ""; +$a->strings["Mood"] = "Nálada"; +$a->strings["Set your current mood and tell your friends"] = "Nastavte svou aktuální náladu a řekněte to Vašim přátelům"; $a->strings["Image uploaded but image cropping failed."] = "Obrázek byl odeslán, ale jeho oříznutí se nesdařilo."; $a->strings["Image size reduction [%s] failed."] = "Nepodařilo se snížit velikost obrázku [%s]."; +$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Znovu načtěte stránku (Shift+F5) nebo vymažte cache prohlížeče, pokud se nové fotografie nezobrazí okamžitě."; $a->strings["Unable to process image"] = "Obrázek nelze zpracovat "; $a->strings["Image exceeds size limit of %d"] = "Obrázek překročil limit velikosti %d"; $a->strings["Upload File:"] = "Nahrát soubor:"; -$a->strings["Upload Profile Photo"] = "Nahrát profilovou fotografii"; +$a->strings["Select a profile:"] = "Vybrat profil:"; $a->strings["Upload"] = "Nahrát"; $a->strings["skip this step"] = "přeskočit tento krok "; $a->strings["select a photo from your photo albums"] = "Vybrat fotografii z Vašich fotoalb"; @@ -505,35 +727,44 @@ $a->strings["No profile"] = "Žádný profil"; $a->strings["Remove My Account"] = "Odstranit můj účet"; $a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Tímto bude kompletně odstraněn váš účet. Jakmile bude účet odstraněn, nebude už možné ho obnovit."; $a->strings["Please enter your password for verification:"] = "Prosím, zadejte své heslo pro ověření:"; -$a->strings["No recipient selected."] = "Nevybrán příjemce."; -$a->strings["[no subject]"] = "[bez předmětu]"; -$a->strings["Unable to locate contact information."] = "Nepodařilo se najít kontaktní informace."; -$a->strings["Message sent."] = "Zpráva odeslána."; -$a->strings["Message could not be sent."] = "Zprávu se nepodařilo odeslat."; -$a->strings["Messages"] = "Zprávy"; -$a->strings["Inbox"] = "Doručená pošta"; -$a->strings["Outbox"] = "Odeslaná pošta"; $a->strings["New Message"] = "Nová zpráva"; +$a->strings["Unable to locate contact information."] = "Nepodařilo se najít kontaktní informace."; $a->strings["Message deleted."] = "Zpráva odstraněna."; $a->strings["Conversation removed."] = "Konverzace odstraněna."; -$a->strings["Please enter a link URL:"] = "Zadejte prosím URL odkaz:"; -$a->strings["Send Private Message"] = "Odeslat soukromou zprávu"; -$a->strings["To:"] = "Adresát:"; -$a->strings["Subject:"] = "Předmět:"; -$a->strings["Your message:"] = "Vaše zpráva:"; $a->strings["No messages."] = "Žádné zprávy."; +$a->strings["Unknown sender - %s"] = "Neznámý odesilatel - %s"; +$a->strings["You and %s"] = "Vy a %s"; +$a->strings["%s and You"] = "%s a Vy"; $a->strings["Delete conversation"] = "Odstranit konverzaci"; $a->strings["D, d M Y - g:i A"] = "D M R - g:i A"; +$a->strings["%d message"] = array( + 0 => "%d zpráva", + 1 => "%d zprávy", + 2 => "%d zpráv", +); $a->strings["Message not available."] = "Zpráva není k dispozici."; $a->strings["Delete message"] = "Smazat zprávu"; +$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Není k dispozici zabezpečená komunikace. Možná budete schopni reagovat z odesilatelovy profilové stránky."; $a->strings["Send Reply"] = "Poslat odpověď"; +$a->strings["Friends of %s"] = "Přátelé uživatele %s"; +$a->strings["No friends to display."] = "Žádní přátelé k zobrazení"; +$a->strings["Theme settings updated."] = "Nastavení téma zobrazení bylo aktualizováno."; $a->strings["Site"] = "Web"; $a->strings["Users"] = "Uživatelé"; $a->strings["Plugins"] = "Pluginy"; -$a->strings["Update"] = "Aktualizace"; +$a->strings["Themes"] = "Témata"; +$a->strings["DB updates"] = "Aktualizace databáze"; $a->strings["Logs"] = "Logy"; +$a->strings["Admin"] = "Administrace"; +$a->strings["Plugin Features"] = "Funkčnosti rozšíření"; $a->strings["User registrations waiting for confirmation"] = "Registrace uživatele čeká na potvrzení"; -$a->strings["Item not found."] = "Položka nenalezena."; +$a->strings["Normal Account"] = "Normální účet"; +$a->strings["Soapbox Account"] = "Soapbox účet"; +$a->strings["Community/Celebrity Account"] = "Komunitní účet / Účet celebrity"; +$a->strings["Automatic Friend Account"] = "Účet s automatickým schvalováním přátel"; +$a->strings["Blog Account"] = "Účet Blogu"; +$a->strings["Private Forum"] = "Soukromé fórum"; +$a->strings["Message queues"] = "Fronty zpráv"; $a->strings["Administration"] = "Administrace"; $a->strings["Summary"] = "Shrnutí"; $a->strings["Registered users"] = "Registrovaní uživatelé"; @@ -541,9 +772,12 @@ $a->strings["Pending registrations"] = "Čekající registrace"; $a->strings["Version"] = "Verze"; $a->strings["Active plugins"] = "Aktivní pluginy"; $a->strings["Site settings updated."] = "Nastavení webu aktualizováno."; -$a->strings["Closed"] = "Uzavřít"; +$a->strings["Closed"] = "Uzavřeno"; $a->strings["Requires approval"] = "Vyžaduje schválení"; $a->strings["Open"] = "Otevřená"; +$a->strings["No SSL policy, links will track page SSL state"] = "Žádná SSL politika, odkazy budou následovat stránky SSL stav"; +$a->strings["Force all links to use SSL"] = "Vyžadovat u všech odkazů použití SSL"; +$a->strings["Self-signed certificate, use SSL for local links only (discouraged)"] = "Certifikát podepsaný sám sebou, použít SSL pouze pro lokální odkazy (nedoporučeno)"; $a->strings["File upload"] = "Nahrání souborů"; $a->strings["Policies"] = "Politiky"; $a->strings["Advanced"] = "Pokročilé"; @@ -551,30 +785,78 @@ $a->strings["Site name"] = "Název webu"; $a->strings["Banner/Logo"] = "Banner/logo"; $a->strings["System language"] = "Systémový jazyk"; $a->strings["System theme"] = "Grafická šablona systému "; -$a->strings["Maximum image size"] = "Maximální velikost obrazu"; +$a->strings["Default system theme - may be over-ridden by user profiles - change theme settings"] = "Defaultní systémové téma - může být změněno v uživatelských profilech - změnit theme settings"; +$a->strings["Mobile system theme"] = "Systémové téma zobrazení pro mobilní zařízení"; +$a->strings["Theme for mobile devices"] = "Téma zobrazení pro mobilní zařízení"; +$a->strings["SSL link policy"] = "Politika SSL odkazů"; +$a->strings["Determines whether generated links should be forced to use SSL"] = "Určuje, zda-li budou generované odkazy používat SSL"; +$a->strings["Maximum image size"] = "Maximální velikost obrázků"; +$a->strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Maximální velikost v bajtech nahraných obrázků. Defaultní je 0, což znamená neomezeno."; +$a->strings["Maximum image length"] = "Maximální velikost obrázků"; +$a->strings["Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits."] = "Maximální délka v pixelech delší stránky nahrávaných obrázků. Defaultně je -1, což označuje bez limitu"; +$a->strings["JPEG image quality"] = "JPEG kvalita obrázku"; +$a->strings["Uploaded JPEGS will be saved at this quality setting [0-100]. Default is 100, which is full quality."] = "Nahrávaný JPEG bude uložen se zadanou kvalitou v rozmezí [0-100]. Defaultní je 100, což znamená plnou kvalitu."; $a->strings["Register policy"] = "Politika registrace"; $a->strings["Register text"] = "Registrace textu"; +$a->strings["Will be displayed prominently on the registration page."] = "Bude zřetelně zobrazeno na registrační stránce."; +$a->strings["Accounts abandoned after x days"] = "Účet je opuštěn po x dnech"; +$a->strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Neztrácejte systémové zdroje kontaktováním externích webů s opuštěnými účty. Zadejte 0 pro žádný časový limit."; $a->strings["Allowed friend domains"] = "Povolené domény přátel"; +$a->strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "Čárkou oddělený seznam domén, kterým je povoleno navazovat přátelství s tímto webem. Zástupné znaky (wildcards) jsou povoleny. Prázné znamená libovolnou doménu."; $a->strings["Allowed email domains"] = "Povolené e-mailové domény"; +$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"] = "Čárkou oddělený seznam domén emalových adres, kterým je povoleno provádět registraci na tomto webu. Zástupné znaky (wildcards) jsou povoleny. Prázné znamená libovolnou doménu."; $a->strings["Block public"] = "Blokovat veřejnost"; +$a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = "Označemím přepínače zablokujete veřejný přístup ke všem jinak veřejně přístupným soukromým stránkám uživatelům, kteří nebudou přihlášeni."; $a->strings["Force publish"] = "Publikovat"; +$a->strings["Check to force all profiles on this site to be listed in the site directory."] = "Označením přepínače budou včechny profily na tomto webu uvedeny v adresáři webu."; $a->strings["Global directory update URL"] = "aktualizace URL adresy Globálního adresáře "; +$a->strings["URL to update the global directory. If this is not set, the global directory is completely unavailable to the application."] = "URL adresa k aktualizaci globálního adresáře. Pokud není zadáno, funkce globálního adresáře není dostupná žádné aplikaci."; +$a->strings["Allow threaded items"] = "Povolit vícevláknové zpracování obsahu"; +$a->strings["Allow infinite level threading for items on this site."] = "Povolit zpracování obsahu tohoto webu neomezeným počtem paralelních vláken."; +$a->strings["Private posts by default for new users"] = ""; +$a->strings["Set default post permissions for all new members to the default privacy group rather than public."] = ""; $a->strings["Block multiple registrations"] = "Blokovat více registrací"; +$a->strings["Disallow users to register additional accounts for use as pages."] = "Znemožnit uživatelům registraci dodatečných účtů k použití jako stránky."; $a->strings["OpenID support"] = "podpora OpenID"; -$a->strings["Gravatar support"] = "podpora Gravatar"; +$a->strings["OpenID support for registration and logins."] = "Podpora OpenID pro registraci a přihlašování."; $a->strings["Fullname check"] = "kontrola úplného jména"; +$a->strings["Force users to register with a space between firstname and lastname in Full name, as an antispam measure"] = "Přimět uživatele k registraci s mezerou mezi jménu a příjmením v poli Celé jméno, jako antispamové opatření."; $a->strings["UTF-8 Regular expressions"] = "UTF-8 Regulární výrazy"; +$a->strings["Use PHP UTF8 regular expressions"] = "Použít PHP UTF8 regulární výrazy."; $a->strings["Show Community Page"] = "Zobrazit stránku komunity"; +$a->strings["Display a Community page showing all recent public postings on this site."] = "Zobrazit Komunitní stránku zobrazující všechny veřejné příspěvky napsané na této stránce."; $a->strings["Enable OStatus support"] = "Zapnout podporu OStatus"; -$a->strings["Only allow Friendika contacts"] = "Povolit pouze Friendika kontakty "; +$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."] = "Poskytnout zabudouvanou kompatibilitu s OStatus (identi.ca, status.net, etc.). Veškerá komunikace s OStatus je veřejná, proto bude občas zobrazeno upozornění."; +$a->strings["Enable Diaspora support"] = "Povolit podporu Diaspora"; +$a->strings["Provide built-in Diaspora network compatibility."] = "Poskytnout zabudovanou kompatibilitu sitě Diaspora."; +$a->strings["Only allow Friendica contacts"] = "Povolit pouze Friendica kontakty"; +$a->strings["All contacts must use Friendica protocols. All other built-in communication protocols disabled."] = "Všechny kontakty musí používat Friendica protokol. Všchny jiné zabudované komunikační protokoly budou zablokované."; $a->strings["Verify SSL"] = "Ověřit 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."] = "Pokud si přejete, můžete vynutit striktní ověřování certifikátů. To znamená že se nebudete moci připojit k žádnému serveru s vlastním SSL certifikátem."; $a->strings["Proxy user"] = "Proxy uživatel"; $a->strings["Proxy URL"] = "Proxy URL adresa"; $a->strings["Network timeout"] = "čas síťového spojení vypršelo (timeout)"; -$a->strings["%s user blocked"] = array( - 0 => "%s uživatel zablokován", - 1 => "%s uživatelů zablokováno / odblokováno", - 2 => "%s uživatelů zablokováno / odblokováno", +$a->strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "Hodnota ve vteřinách. Nastavte 0 pro neomezeno (není doporučeno)."; +$a->strings["Delivery interval"] = "Interval doručování"; +$a->strings["Delay background delivery processes by this many seconds to reduce system load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 for large dedicated servers."] = "Prodleva mezi doručovacími procesy běžícími na pozadí snižuje zátěž systému. Doporučené nastavení: 4-5 pro sdílené instalace, 2-3 pro virtuální soukromé servery, 0-1 pro velké dedikované servery."; +$a->strings["Poll interval"] = "Dotazovací interval"; +$a->strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "Tímto nastavením ovlivníte prodlení mezi aktualizačními procesy běžícími na pozadí, čímž můžete snížit systémovou zátěž. Pokud 0, použijte doručovací interval."; +$a->strings["Maximum Load Average"] = "Maximální průměrné zatížení"; +$a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Maximální zatížení systému před pozastavením procesů zajišťujících doručování aktualizací - defaultně 50"; +$a->strings["Update has been marked successful"] = "Aktualizace byla označena jako úspěšná."; +$a->strings["Executing %s failed. Check system logs."] = "Vykonávání %s selhalo. Zkontrolujte chybový protokol."; +$a->strings["Update %s was successfully applied."] = "Aktualizace %s byla úspěšně aplikována."; +$a->strings["Update %s did not return a status. Unknown if it succeeded."] = "Aktualizace %s nevrátila žádný status. Není zřejmé, jestli byla úspěšná."; +$a->strings["Update function %s could not be found."] = "Aktualizační funkce %s nebyla nalezena."; +$a->strings["No failed updates."] = "Žádné neúspěšné aktualizace."; +$a->strings["Failed Updates"] = "Neúspěšné aktualizace"; +$a->strings["This does not include updates prior to 1139, which did not return a status."] = "To nezahrnuje aktualizace do verze 1139, které nevracejí žádný status."; +$a->strings["Mark success (if update was manually applied)"] = "Označit za úspěšné (pokud byla aktualizace aplikována manuálně)"; +$a->strings["Attempt to execute this update step automatically"] = "Pokusit se provést tuto aktualizaci automaticky."; +$a->strings["%s user blocked/unblocked"] = array( + 0 => "%s uživatel blokován/odblokován", + 1 => "%s uživatelů blokováno/odblokováno", + 2 => "%s uživatelů blokováno/odblokováno", ); $a->strings["%s user deleted"] = array( 0 => "%s uživatel smazán", @@ -590,8 +872,7 @@ $a->strings["Request date"] = "Datum žádosti"; $a->strings["Email"] = "E-mail"; $a->strings["No registrations."] = "Žádné registrace."; $a->strings["Deny"] = "Odmítnout"; -$a->strings["Block"] = "Blokovat"; -$a->strings["Unblock"] = "Odblokovat"; +$a->strings["Site admin"] = "Site administrátor"; $a->strings["Register date"] = "Datum registrace"; $a->strings["Last login"] = "Datum posledního přihlášení"; $a->strings["Last item"] = "Poslední položka"; @@ -603,46 +884,74 @@ $a->strings["Plugin %s enabled."] = "Plugin %s povolen."; $a->strings["Disable"] = "Zakázat"; $a->strings["Enable"] = "Povolit"; $a->strings["Toggle"] = "Přepnout"; -$a->strings["Settings"] = "Nastavení"; +$a->strings["Author: "] = "Autor: "; +$a->strings["Maintainer: "] = "Správce: "; +$a->strings["No themes found."] = "Nenalezeny žádná témata."; +$a->strings["Screenshot"] = "Snímek obrazovky"; +$a->strings["[Experimental]"] = "[Experimentální]"; +$a->strings["[Unsupported]"] = "[Nepodporováno]"; $a->strings["Log settings updated."] = "Nastavení protokolu aktualizováno."; $a->strings["Clear"] = "Vyčistit"; $a->strings["Debugging"] = "Ladění"; $a->strings["Log file"] = "Soubor s logem"; -$a->strings["Must be writable by web server. Relative to your Friendika index.php."] = "Webový server musí mít práva zápisu . Relativní k index.php Friendika."; +$a->strings["Must be writable by web server. Relative to your Friendica top-level directory."] = "Musí být editovatelné web serverem. Relativní cesta k vašemu kořenovému adresáři Friendica"; $a->strings["Log level"] = "Úroveň auditu"; -$a->strings["Close"] = "Uzavřená"; +$a->strings["Close"] = "Zavřít"; $a->strings["FTP Host"] = "Hostitel FTP"; $a->strings["FTP Path"] = "Cesta FTP"; $a->strings["FTP User"] = "FTP uživatel"; $a->strings["FTP Password"] = "FTP heslo"; +$a->strings["Requested profile is not available."] = "Požadovaný profil není k dispozici."; $a->strings["Access to this profile has been restricted."] = "Přístup na tento profil byl omezen."; $a->strings["Tips for New Members"] = "Tipy pro nové členy"; +$a->strings["{0} wants to be your friend"] = "{0} chce být Vaším přítelem"; +$a->strings["{0} sent you a message"] = "{0} vám poslal zprávu"; +$a->strings["{0} requested registration"] = "{0} požaduje registraci"; +$a->strings["{0} commented %s's post"] = "{0} komentoval příspěvek uživatele %s"; +$a->strings["{0} liked %s's post"] = "{0} má rád příspěvek uživatele %s"; +$a->strings["{0} disliked %s's post"] = "{0} nemá rád příspěvek uživatele %s"; +$a->strings["{0} is now friends with %s"] = "{0} se skamarádil s %s"; +$a->strings["{0} posted"] = "{0} zasláno"; +$a->strings["{0} tagged %s's post with #%s"] = "{0} označen %s' příspěvek s #%s"; +$a->strings["{0} mentioned you in a post"] = "{0} vás zmínil v příspěvku"; +$a->strings["Contacts who are not members of a group"] = "Kontakty, které nejsou členy skupiny"; +$a->strings["OpenID protocol error. No ID returned."] = "Chyba OpenID protokolu. Navrátilo se žádné ID."; +$a->strings["Account not found and OpenID registration is not permitted on this site."] = "Nenalezen účet a OpenID registrace na tomto serveru není dovolena."; $a->strings["Login failed."] = "Přihlášení se nezdařilo."; -$a->strings["Welcome "] = "Vítejte "; -$a->strings["Please upload a profile photo."] = "Prosím nahrejte profilovou fotografii"; -$a->strings["Welcome back "] = "Vítejte zpět "; -$a->strings["This site is not configured to allow communications with other networks."] = "Tento web není nakonfigurován tak, aby umožňoval komunikaci s ostatními sítěmi."; -$a->strings["No compatible communication protocols or feeds were discovered."] = "Nenalezen žádný kompatibilní komunikační protokol nebo kanál."; -$a->strings["The profile address specified does not provide adequate information."] = "Uvedená adresa profilu neposkytuje dostatečné informace."; -$a->strings["An author or name was not found."] = "Autor nebo jméno nenalezeno"; -$a->strings["No browser URL could be matched to this address."] = "Této adrese neodpovídá žádné URL prohlížeče."; -$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "Zadaná adresa profilu patří do sítě, která byla na tomto serveru zakázána."; -$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Omezený profil. Tato osoba nebude schopna od Vás přijímat přímé / osobní sdělení."; -$a->strings["Unable to retrieve contact information."] = "Nepodařilo se získat kontaktní informace."; -$a->strings["following"] = "následující"; +$a->strings["Contact added"] = "Kontakt přidán"; +$a->strings["Common Friends"] = "Společní přátelé"; +$a->strings["No contacts in common."] = "Žádné společné kontakty."; +$a->strings["link"] = "odkaz"; $a->strings["Item has been removed."] = "Položka byla odstraněna."; -$a->strings["New mail received at "] = "Přišel nový e-mail v"; $a->strings["Applications"] = "Aplikace"; $a->strings["No installed applications."] = "Žádné nainstalované aplikace."; $a->strings["Search"] = "Vyhledávání"; $a->strings["Profile not found."] = "Profil nenalezen"; $a->strings["Profile Name is required."] = "Jméno profilu je povinné."; +$a->strings["Marital Status"] = "Rodinný Stav"; +$a->strings["Romantic Partner"] = "Romatický partner"; +$a->strings["Likes"] = "Libí se mi"; +$a->strings["Dislikes"] = "Nelibí se mi"; +$a->strings["Work/Employment"] = "Práce/Zaměstnání"; +$a->strings["Religion"] = "Náboženství"; +$a->strings["Political Views"] = "Politické přesvědčení"; +$a->strings["Gender"] = "Pohlaví"; +$a->strings["Sexual Preference"] = "Sexuální orientace"; +$a->strings["Homepage"] = "Domácí stránka"; +$a->strings["Interests"] = "Zájmy"; +$a->strings["Address"] = "Adresa"; +$a->strings["Location"] = "Lokace"; $a->strings["Profile updated."] = "Profil aktualizován."; +$a->strings[" and "] = " a "; +$a->strings["public profile"] = "veřejný profil"; +$a->strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s změnil %2\$s na “%3\$s”"; +$a->strings[" - Visit %1\$s's %2\$s"] = " - Navštivte %2\$s uživatele %1\$s"; +$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s aktualizoval %2\$s, změnou %3\$s."; $a->strings["Profile deleted."] = "Profil smazán."; $a->strings["Profile-"] = "Profil-"; $a->strings["New profile created."] = "Nový profil vytvořen."; $a->strings["Profile unavailable to clone."] = "Profil není možné naklonovat."; -$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Skrýt u tohoto profilu vaše kontakty / seznam přátel před před dalšími uživateli zobrazující si tento profil?"; +$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Skrýt u tohoto profilu Vaše kontakty / seznam přátel před před dalšími uživateli zobrazující si tento profil?"; $a->strings["Edit Profile Details"] = "Upravit podrobnosti profilu "; $a->strings["View this profile"] = "Zobrazit tento profil"; $a->strings["Create a new profile using these settings"] = "Vytvořit nový profil pomocí tohoto nastavení"; @@ -661,12 +970,16 @@ $a->strings["Region/State:"] = "Region / stát:"; $a->strings[" Marital Status:"] = " Rodinný stav:"; $a->strings["Who: (if applicable)"] = "Kdo: (pokud je možné)"; $a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Příklady: jan123, Jan Novák, jan@seznam.cz"; +$a->strings["Since [date]:"] = "Od [data]:"; $a->strings["Sexual Preference:"] = "Sexuální preference:"; $a->strings["Homepage URL:"] = "Odkaz na domovskou stránku:"; +$a->strings["Hometown:"] = "Rodné město"; $a->strings["Political Views:"] = "Politické přesvědčení:"; $a->strings["Religious Views:"] = "Náboženské přesvědčení:"; $a->strings["Public Keywords:"] = "Veřejná klíčová slova:"; $a->strings["Private Keywords:"] = "Soukromá klíčová slova:"; +$a->strings["Likes:"] = "Líbí se:"; +$a->strings["Dislikes:"] = "Nelibí se:"; $a->strings["Example: fishing photography software"] = "Příklad: fishing photography software"; $a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(Používá se pro doporučování potenciálních přátel, může být viděno ostatními)"; $a->strings["(Used for searching profiles, never shown to others)"] = "(Používá se pro vyhledávání profilů, není nikdy zobrazeno ostatním)"; @@ -682,20 +995,48 @@ $a->strings["Work/employment"] = "Práce/zaměstnání"; $a->strings["School/education"] = "Škola/vzdělání"; $a->strings["This is your public profile.
    It may be visible to anybody using the internet."] = "Toto je váš veřejný profil.
    Ten může být viditelný kýmkoliv na internetu."; $a->strings["Age: "] = "Věk: "; -$a->strings["Profiles"] = "Profily"; +$a->strings["Edit/Manage Profiles"] = "Upravit / Spravovat profily"; $a->strings["Change profile photo"] = "Změnit profilovou fotografii"; $a->strings["Create New Profile"] = "Vytvořit nový profil"; $a->strings["Profile Image"] = "Profilový obrázek"; $a->strings["visible to everybody"] = "viditelné pro všechny"; $a->strings["Edit visibility"] = "Upravit viditelnost"; +$a->strings["Save to Folder:"] = "Uložit do složky:"; +$a->strings["- select -"] = "- vyber -"; +$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s označen uživatelem %2\$s %3\$s s %4\$s"; +$a->strings["No potential page delegates located."] = "Žádní potenciální delegáti stránky nenalezeni."; +$a->strings["Delegate Page Management"] = "Správa delegátů stránky"; +$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."] = "Delegáti jsou schopni řídit všechny aspekty tohoto účtu / stránky, kromě základních nastavení účtu. Prosím, nepředávejte svůj osobní účet nikomu, komu úplně nevěříte.."; +$a->strings["Existing Page Managers"] = "Stávající správci stránky"; +$a->strings["Existing Page Delegates"] = "Stávající delegáti stránky "; +$a->strings["Potential Delegates"] = "Potenciální delegáti"; +$a->strings["Add"] = "Přidat"; +$a->strings["No entries."] = "Žádné záznamy."; +$a->strings["Source (bbcode) text:"] = "Zdrojový text (bbcode):"; +$a->strings["Source (Diaspora) text to convert to BBcode:"] = "Zdrojový (Diaspora) text k převedení do BB kódování:"; +$a->strings["Source input: "] = "Zdrojový vstup: "; +$a->strings["bb2html: "] = "bb2html: "; +$a->strings["bb2html2bb: "] = "bb2html2bb: "; +$a->strings["bb2md: "] = "bb2md: "; +$a->strings["bb2md2html: "] = "bb2md2html: "; +$a->strings["bb2dia2bb: "] = "bb2dia2bb: "; +$a->strings["bb2md2html2bb: "] = "bb2md2html2bb: "; +$a->strings["Source input (Diaspora format): "] = "Vstupní data (ve formátu Diaspora): "; +$a->strings["diaspora2bb: "] = "diaspora2bb: "; +$a->strings["Friend Suggestions"] = "Návrhy přátel"; +$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Nejsou dostupné žádné návrhy. Pokud je toto nový server, zkuste to znovu za 24 hodin."; +$a->strings["Ignore/Hide"] = "Ignorovat / skrýt"; $a->strings["Global Directory"] = "Globální adresář"; -$a->strings["Normal site view"] = "Normální zobrazení stránky"; -$a->strings["View all site entries"] = "Zobrazit všechny položky stránky"; +$a->strings["Find on this site"] = "Nalézt na tomto webu"; $a->strings["Site Directory"] = "Adresář serveru"; $a->strings["Gender: "] = "Pohlaví: "; +$a->strings["Gender:"] = "Pohlaví:"; +$a->strings["Status:"] = "Status:"; +$a->strings["Homepage:"] = "Domácí stránka:"; +$a->strings["About:"] = "O mě:"; $a->strings["No entries (some entries may be hidden)."] = "Žádné záznamy (některé položky mohou být skryty)."; $a->strings["%s : Not a valid email address."] = "%s : není platná e-mailová adresa."; -$a->strings["Please join my network on %s"] = "Prosím, připojte se do mé sítě na %s"; +$a->strings["Please join us on Friendica"] = "Prosím přidejte se k nám na Friendice"; $a->strings["%s : Message delivery failed."] = "%s : Doručení zprávy se nezdařilo."; $a->strings["%d message sent."] = array( 0 => "%d zpráva odeslána.", @@ -703,12 +1044,17 @@ $a->strings["%d message sent."] = array( 2 => "%d zprávy odeslány.", ); $a->strings["You have no more invitations available"] = "Nemáte k dispozici žádné další pozvánky"; +$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."] = "Navštivte %s pro seznam veřejných serverů, na kterých se můžete přidat. Členové Friendica se mohou navzájem propojovat, stejně tak jako se mohou přiopojit se členy mnoha dalších sociálních sítí."; +$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "K akceptaci této pozvánky prosím navštivte a registrujte se na %s nebo na kterékoliv jiném veřejném Friendica serveru."; +$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join."] = "Friendica servery jsou všechny propojené a vytváří tak rozsáhlou sociální síť s důrazem na soukromý a je pod kontrolou svých členů. Členové se mohou propojovat s mnoha dalšími tradičními sociálními sítěmi. Navštivte %s pro seznam alternativních Friendica serverů kde se můžete přidat."; +$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Omlouváme se. Systém nyní není nastaven tak, aby se připojil k ostatním veřejným serverům nebo umožnil pozvat nové členy."; $a->strings["Send invitations"] = "Poslat pozvánky"; $a->strings["Enter email addresses, one per line:"] = "Zadejte e-mailové adresy, jednu na řádek:"; -$a->strings["Please join my social network on %s"] = "Prosím, připojte se do mé sociální sítě na %s"; -$a->strings["To accept this invitation, please visit:"] = "Chcete-li toto pozvání přijmout, navštivte prosím:"; +$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "Jste srdečně pozván se připojit ke mně a k mým blízkým přátelům na Friendica - a pomoci nám vytvořit lepší sociální síť."; $a->strings["You will need to supply this invitation code: \$invite_code"] = "Budete muset zadat kód této pozvánky: \$invite_code"; $a->strings["Once you have registered, please connect with me via my profile page at:"] = "Jakmile se zaregistrujete, prosím spojte se se mnou přes mou profilovu stránku na:"; +$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "Pro více informací o Friendica projektu a o tom, proč je tak důležitý, prosím navštivte http://friendica.com"; +$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "To se může občas stát pokud kontakt byl zažádán oběma osobami a již byl schválen."; $a->strings["Response from remote site was not understood."] = "Odpověď ze vzdáleného serveru nebyla srozumitelná."; $a->strings["Unexpected response from remote site: "] = "Neočekávaná odpověď od vzdáleného serveru:"; $a->strings["Confirmation completed successfully."] = "Potvrzení úspěšně dokončena."; @@ -721,31 +1067,288 @@ $a->strings["No user record found for '%s' "] = "Pro '%s' nenalezen žádný už $a->strings["Our site encryption key is apparently messed up."] = "Náš šifrovací klíč zřejmě přestal správně fungovat."; $a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "Byla poskytnuta prázdná URL adresa nebo se nepodařilo URL adresu dešifrovat."; $a->strings["Contact record was not found for you on our site."] = "Kontakt záznam nebyl nalezen pro vás na našich stránkách."; +$a->strings["Site public key not available in contact record for URL %s."] = "V adresáři není k dispozici veřejný klíč pro URL %s."; $a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "Váš systém poskytl duplicitní ID vůči našemu systému. Pokuste se akci zopakovat."; $a->strings["Unable to set your contact credentials on our system."] = "Nelze nastavit Vaše přihlašovací údaje v našem systému."; $a->strings["Unable to update your contact profile details on our system"] = "Nelze aktualizovat Váš profil v našem systému"; $a->strings["Connection accepted at %s"] = "Připojení přijato na %s"; +$a->strings["%1\$s has joined %2\$s"] = "%1\$s se připojil k %2\$s"; +$a->strings["Google+ Import Settings"] = "Nastavení importu z Google+ "; +$a->strings["Enable Google+ Import"] = "Povolit Import z Google+"; +$a->strings["Google Account ID"] = "název účtu Google "; +$a->strings["Google+ Import Settings saved."] = "Nastavení importu z Google+ uloženo."; $a->strings["Facebook disabled"] = "Facebook zakázán"; $a->strings["Updating contacts"] = "Aktualizace kontaktů"; $a->strings["Facebook API key is missing."] = "Chybí Facebook API klíč."; $a->strings["Facebook Connect"] = "Facebook připojen"; $a->strings["Install Facebook connector for this account."] = "Nainstalovat pro tento účet Facebook konektor."; $a->strings["Remove Facebook connector"] = "Odstranit konektor na Facebook"; +$a->strings["Re-authenticate [This is necessary whenever your Facebook password is changed.]"] = "Opětovná autentikace [Toto je nezbytné kdykoliv se změní Vaše heslo na Facebooku.]"; $a->strings["Post to Facebook by default"] = "Standardně posílat příspěvky na Facebook"; -$a->strings["Link all your Facebook friends and conversations"] = "Připojit všechny své přátele na Facebooku a konverzace"; -$a->strings["Warning: Your Facebook privacy settings can not be imported."] = "Upozornění: nastavení ochrany osobních údajů na Facebooku nelze importovat."; -$a->strings["Linked Facebook items may be publicly visible, depending on your privacy settings for this website/account."] = "Propojené položky z Facebook mohou být veřejně viditelné, v závislosti na nastavení ochrany osobních údajů pro tuto webovou stránku/účet."; -$a->strings["Facebook"] = "Facebook"; +$a->strings["Facebook friend linking has been disabled on this site. The following settings will have no effect."] = "Propojování facebookových přátel bylo na tomto webu zablokováno. Následující odkazy nebudou mít žádný efekt."; +$a->strings["Facebook friend linking has been disabled on this site. If you disable it, you will be unable to re-enable it."] = "Propojování facebookových přátel bylo na tomto webu zablokováno. Když to zakážete nebudete schopni toto znovu povolit."; +$a->strings["Link all your Facebook friends and conversations on this website"] = "Připojit na tomto webu všechny Vaše přátelé a konverzace z Facebooku"; +$a->strings["Facebook conversations consist of your profile wall and your friend stream."] = "Facebookové konverzace se skládají z Vaší profilové zdi a příspěvků Vašich přátel (stream)."; +$a->strings["On this website, your Facebook friend stream is only visible to you."] = "Na tomto webu můžete vidět pouze příspěvky Vašich přátel Facebook (Stream)."; +$a->strings["The following settings determine the privacy of your Facebook profile wall on this website."] = "Následující nastavení určuje Vaše soukromí na Facebookovém profilu na tomto webu."; +$a->strings["On this website your Facebook profile wall conversations will only be visible to you"] = "Na tomto webu bude konverzace z Facebookové profilové zdi viditelná pouze pro Vás."; +$a->strings["Do not import your Facebook profile wall conversations"] = "Neimportovat konverzace z Facebookové zdi"; +$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."] = "Pokud budete chtít propojit konverzace a ponecháte obě z těchto dvou polí nezaškrtnuté, bude Vaše profilová zeď na Facebooku sloučená s profilovou zdí na tomto webu a nastavení soukromí na tomto webu bude určovat kdo bude mít možnost vidět konverzace."; +$a->strings["Comma separated applications to ignore"] = "čárkou oddělené aplikace k ignorování"; +$a->strings["Problems with Facebook Real-Time Updates"] = "Problémy s Facebook Real-Time aktualizacemi"; $a->strings["Facebook Connector Settings"] = "Nastavení Facebook konektoru "; +$a->strings["Facebook API Key"] = "Facebook API Key"; +$a->strings["Error: it appears that you have specified the App-ID and -Secret in your .htconfig.php file. As long as they are specified there, they cannot be set using this form.

    "] = "Chyba: zdá se, že jste specifikoval App-ID a -Secret ve Vašem .htconfig.php souboru. Dokud jsou na tomto místě specifikované, nemohou být nastaveny s pomocí tohoto formuláře.

    "; +$a->strings["Error: the given API Key seems to be incorrect (the application access token could not be retrieved)."] = "Chyba: zadané API Key se zdá být chybné (není možné získat aplikační přístupový token)."; +$a->strings["The given API Key seems to work correctly."] = "Zadané API Key se zdá funguje v pořádku."; +$a->strings["The correctness of the API Key could not be detected. Something strange's going on."] = "Správnost klíče API nemohla být detekovaná. Děje se něco podivného."; +$a->strings["App-ID / API-Key"] = "App-ID / API-Key"; +$a->strings["Application secret"] = "Application secret"; +$a->strings["Polling Interval in minutes (minimum %1\$s minutes)"] = "Dotazovací interval v minutách (minimum %1\$s minut)"; +$a->strings["Synchronize comments (no comments on Facebook are missed, at the cost of increased system load)"] = "Syncronizovat komentáře (nedojde k vynechání žádného komentáže na Facebooku za cenu vyšší zátěže systému)"; +$a->strings["Real-Time Updates"] = "Real-Time Aktualizace"; +$a->strings["Real-Time Updates are activated."] = "Real-Time aktualizace aktivovány."; +$a->strings["Deactivate Real-Time Updates"] = "Deaktivovat Real-Time aktualizace"; +$a->strings["Real-Time Updates not activated."] = "Real-Time aktualizace nejsou aktivovány."; +$a->strings["Activate Real-Time Updates"] = "Aktivovat Real-Time aktualizace"; +$a->strings["The new values have been saved."] = "Nové hodnoty byly uloženy"; $a->strings["Post to Facebook"] = "Přidat příspěvek na Facebook"; $a->strings["Post to Facebook cancelled because of multi-network access permission conflict."] = "Příspěvek na Facebook zrušen kvůli konfliktu přístupových práv mezi sítěmi."; -$a->strings["Image: "] = "Obrázek: "; -$a->strings["View on Friendika"] = "Pohled na Friendiku"; +$a->strings["View on Friendica"] = "Zobrazení na Friendica"; $a->strings["Facebook post failed. Queued for retry."] = "Zaslání příspěvku na Facebook selhalo. Příspěvek byl zařazen do fronty pro opakované odeslání."; +$a->strings["Your Facebook connection became invalid. Please Re-authenticate."] = "Vaše připojení na Facebook přestalo být platné. Prosím znovu se přihlaste."; +$a->strings["Facebook connection became invalid"] = "Připojení na Facebook bylo zneplatněno."; +$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."] = "Ahoj %1\$s,\n\nSpojení mezi tvým účtem na %2\$s a Facebookem přestalo fungovat. To se obvykle stává poté, co si změníš heslo kFacebooku. Pro opětovnému zprovoznění spojení musíte %3\$s nastavit správné přihlašovací údaje na Facebook konektoru%4\$s."; +$a->strings["StatusNet AutoFollow settings updated."] = "Nastavení automatického následování na StatusNet aktualizováno."; +$a->strings["StatusNet AutoFollow Settings"] = "Nastavení StatusNet automatického následování (AutoFollow)"; +$a->strings["Automatically follow any StatusNet followers/mentioners"] = "Automaticky následovat jakékoliv StatusNet následníky/přispivatele"; +$a->strings["Bg settings updated."] = "Nastavení Bg aktualizováno."; +$a->strings["Bg Settings"] = "Nastavení Bg"; +$a->strings["How many contacts to display on profile sidebar"] = "Kolik kontaktů zobrazit na profilovém bočním menu"; +$a->strings["Lifetime of the cache (in hours)"] = "Životnost vyrovnávací paměti (v hodinách)"; +$a->strings["Cache Statistics"] = "Statistika vyrovnávací paměti"; +$a->strings["Number of items"] = "Počet položek"; +$a->strings["Size of the cache"] = "Velikost vyrovnávací paměti"; +$a->strings["Delete the whole cache"] = "Vymazat celou vyrovnávací paměť"; +$a->strings["Facebook Post disabled"] = "Příspěvky na Facebook zakázán."; +$a->strings["Facebook Post"] = "Facebook příspěvek"; +$a->strings["Install Facebook Post connector for this account."] = "Instalovat pro tento účet konektor pro příspěvky na Facebook."; +$a->strings["Remove Facebook Post connector"] = "Odstranit konektor pro příspěvky na Facebook"; +$a->strings["Facebook Post Settings"] = "Nastavení konektoru pro příspěvky na Facebook"; +$a->strings["%d person likes this"] = array( + 0 => "%d člověku se toto líbí", + 1 => "%d lidem se toto líbí", + 2 => "%d lidem se toto líbí", +); +$a->strings["%d person doesn't like this"] = array( + 0 => "%d člověku se toto nelíbí", + 1 => "%d lidem se toto nelíbí", + 2 => "%d lidem se toto nelíbí", +); +$a->strings["Get added to this list!"] = "Nechte se přidat do tohoto listu!"; $a->strings["Generate new key"] = "Generovat nové klíče"; $a->strings["Widgets key"] = "Widgety klíč"; $a->strings["Widgets available"] = "Widgety k dispozici"; -$a->strings["Connect on Friendika!"] = "Spojit se na Friendice!"; +$a->strings["Connect on Friendica!"] = "Připojit na Friendica!"; +$a->strings["bitchslap"] = ""; +$a->strings["bitchslapped"] = ""; +$a->strings["shag"] = ""; +$a->strings["shagged"] = ""; +$a->strings["do something obscenely biological to"] = ""; +$a->strings["did something obscenely biological to"] = ""; +$a->strings["point out the poke feature to"] = ""; +$a->strings["pointed out the poke feature to"] = ""; +$a->strings["declare undying love for"] = "vyjadřit nehynoucí lásku ke"; +$a->strings["declared undying love for"] = "vyjadřil nehynoucí lásku ke"; +$a->strings["patent"] = "patentovat"; +$a->strings["patented"] = "patentován"; +$a->strings["stroke beard"] = "pohladit plnovous"; +$a->strings["stroked their beard at"] = "pohladit něčí plnovous"; +$a->strings["bemoan the declining standards of modern secondary and tertiary education to"] = "stěžující si na klesající úroveň moderního sekundárního a terciárního vzdělávání u"; +$a->strings["bemoans the declining standards of modern secondary and tertiary education to"] = "stěžovat si na klesající úroveň moderního sekundárního a terciárního vzdělávání u"; +$a->strings["hug"] = "obejmout"; +$a->strings["hugged"] = "obejmut "; +$a->strings["kiss"] = "políbit"; +$a->strings["kissed"] = "políben"; +$a->strings["raise eyebrows at"] = "zvednout obočí na"; +$a->strings["raised their eyebrows at"] = "zvednul obočí na"; +$a->strings["insult"] = "urazit"; +$a->strings["insulted"] = "uražen"; +$a->strings["praise"] = "pochválit"; +$a->strings["praised"] = "pochválen"; +$a->strings["be dubious of"] = "mít pochyby o"; +$a->strings["was dubious of"] = "má pochybnosti z"; +$a->strings["eat"] = "sníst"; +$a->strings["ate"] = "snězen"; +$a->strings["giggle and fawn at"] = "hihňat se"; +$a->strings["giggled and fawned at"] = "hihňá se"; +$a->strings["doubt"] = "pochybovat"; +$a->strings["doubted"] = ""; +$a->strings["glare"] = "zabodáván pohledem"; +$a->strings["glared at"] = "zabodávat pohledem "; +$a->strings["YourLS Settings"] = "YourLS nastavení"; +$a->strings["URL: http://"] = "URL: http://"; +$a->strings["Username:"] = "Uživatelské jméno:"; +$a->strings["Password:"] = "heslo:"; +$a->strings["Use SSL "] = "Použít SSL"; +$a->strings["yourls Settings saved."] = "yourls nastavení uloženo."; +$a->strings["Post to LiveJournal"] = "Poslat na LiveJournal"; +$a->strings["LiveJournal Post Settings"] = "Nastavení LiveJournal Post"; +$a->strings["Enable LiveJournal Post Plugin"] = "Povolit LiveJournal Post plugin"; +$a->strings["LiveJournal username"] = "LiveJournal uživatelské jméno"; +$a->strings["LiveJournal password"] = "LiveJournal heslo"; +$a->strings["Post to LiveJournal by default"] = "Defaultně umístit na LiveJournal"; +$a->strings["Not Safe For Work (General Purpose Content Filter) settings"] = "Not Safe For Work (General Purpose Content Filter) nastavení"; +$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."] = "Tento plugin hledá v příspěvcích slova zadáná níže a skryje jakýkoliv obsah, který tyto slova obsahuje v prostředích, kde to není vhodné. Je slušné a doporučené jakékoliv příspěvky s mahotou označit s #NSFW. Tento filtr může také vyhledávat jakékoliv Vámi specifikované slovní spojení, takže může být využit jako obecný kontextový filtr."; +$a->strings["Enable Content filter"] = "Povolit Kontextový filtr"; +$a->strings["Comma separated list of keywords to hide"] = "Čárkou oddělený seznam klíčových slov ke skrytí"; +$a->strings["Use /expression/ to provide regular expressions"] = "Použít /výraz/ pro použití regulárních výrazů"; +$a->strings["NSFW Settings saved."] = "NSFW nastavení uloženo"; +$a->strings["%s - Click to open/close"] = "%s - Klikněte pro otevření/zavření"; +$a->strings["Forums"] = "Fóra"; +$a->strings["Forums:"] = "Fóra:"; +$a->strings["Page settings updated."] = "Nastavení stránky aktualizováno."; +$a->strings["Page Settings"] = "Nastavení stránky"; +$a->strings["How many forums to display on sidebar without paging"] = "Kolik diskuzních fór zobrazit v bočním panelu bez použití stránkování"; +$a->strings["Randomise Page/Forum list"] = "Náhodný stránka/fórum seznam"; +$a->strings["Show pages/forums on profile page"] = "Zobrazit stránky/fóra na profilové stránce"; +$a->strings["Planets Settings"] = "Nastavení Planets"; +$a->strings["Enable Planets Plugin"] = "Povolit Planets plugin"; +$a->strings["Login"] = "Přihlásit se"; +$a->strings["OpenID"] = "OpenID"; +$a->strings["Latest users"] = "Poslední uživatelé"; +$a->strings["Most active users"] = "Nejaktivnější uživatelé"; +$a->strings["Latest photos"] = "Poslední fotky"; +$a->strings["Latest likes"] = "Poslední \"líbí se mi\""; +$a->strings["event"] = "událost"; +$a->strings["No access"] = "Zádný přístup"; +$a->strings["Could not open component for editing"] = "Nelze otevřít komponentu pro editaci"; +$a->strings["Go back to the calendar"] = "Návrat na kalendář"; +$a->strings["Event data"] = "Data události"; +$a->strings["Calendar"] = "Kalendář"; +$a->strings["Special color"] = "Speciální barva"; +$a->strings["Subject"] = "Subjekt"; +$a->strings["Starts"] = "Hvězdiček"; +$a->strings["Ends"] = "Končí"; +$a->strings["Description"] = "Popis"; +$a->strings["Recurrence"] = "Opakování"; +$a->strings["Frequency"] = "Frekvence"; +$a->strings["Daily"] = "denně"; +$a->strings["Weekly"] = "Týdenně"; +$a->strings["Monthly"] = "Měsíčně"; +$a->strings["Yearly"] = "Ročně"; +$a->strings["days"] = "dnů"; +$a->strings["weeks"] = "týdny"; +$a->strings["months"] = "měsíců"; +$a->strings["years"] = "let"; +$a->strings["Interval"] = "Interval"; +$a->strings["All %select% %time%"] = "Všechny %select% %time%"; +$a->strings["Days"] = "Dny"; +$a->strings["Sunday"] = "Neděle"; +$a->strings["Monday"] = "Pondělí"; +$a->strings["Tuesday"] = "Úterý"; +$a->strings["Wednesday"] = "Středa"; +$a->strings["Thursday"] = "Čtvrtek"; +$a->strings["Friday"] = "Pátek"; +$a->strings["Saturday"] = "Sobota"; +$a->strings["First day of week:"] = "První den v týdnu"; +$a->strings["Day of month"] = "Den v měsíci"; +$a->strings["#num#th of each month"] = "#num#. v každém měsíci"; +$a->strings["#num#th-last of each month"] = "#num#. od konce v každém měsíci"; +$a->strings["#num#th #wkday# of each month"] = "#num#. #wkday# v každém měsíci"; +$a->strings["#num#th-last #wkday# of each month"] = "#num#. od konce #wkday# v každém měsíci"; +$a->strings["Month"] = "Měsíc"; +$a->strings["#num#th of the given month"] = "#num#. v daném měsíci"; +$a->strings["#num#th-last of the given month"] = "#num#. od konce v daném měsíci"; +$a->strings["#num#th #wkday# of the given month"] = "#num#. #wkday# v daném měsíci"; +$a->strings["#num#th-last #wkday# of the given month"] = "#num#. #wkday# od konce v daném měsíci"; +$a->strings["Repeat until"] = "Opakuj dokud"; +$a->strings["Infinite"] = "Do nekončena"; +$a->strings["Until the following date"] = "Do následujícího data"; +$a->strings["Number of times"] = "Počet opakování"; +$a->strings["Exceptions"] = "Výjimky"; +$a->strings["none"] = "žádný"; +$a->strings["Notification"] = "Notifikace"; +$a->strings["Notify by"] = "Notifikován"; +$a->strings["E-Mail"] = "e-mailem"; +$a->strings["On Friendica / Display"] = "Na stránce Friendica"; +$a->strings["Time"] = "Čas"; +$a->strings["Hours"] = "Hodiny"; +$a->strings["Minutes"] = "Minuty"; +$a->strings["Seconds"] = "sekund"; +$a->strings["Weeks"] = "týdnů"; +$a->strings["before the"] = "před"; +$a->strings["start of the event"] = "začátkem události"; +$a->strings["end of the event"] = "koncem události"; +$a->strings["Add a notification"] = "Přidat notifikaci"; +$a->strings["The event #name# will start at #date"] = "Událost #name# bude zahájena #date"; +$a->strings["#name# is about to begin."] = "#name# právě začíná."; +$a->strings["Saved"] = "Uloženo"; +$a->strings["U.S. Time Format (mm/dd/YYYY)"] = "americký formát času (mm/dd/YYYY)"; +$a->strings["German Time Format (dd.mm.YYYY)"] = "německý formát času (dd.mm.YYYY)"; +$a->strings["Private Events"] = "Soukromé události"; +$a->strings["Private Addressbooks"] = "Soukromé adresáře kontaktů"; +$a->strings["Friendica-Native events"] = "Nativní Friendica události"; +$a->strings["Friendica-Contacts"] = "Friendica kontakty"; +$a->strings["Your Friendica-Contacts"] = "Vaše Friendica kontakty"; +$a->strings["Something went wrong when trying to import the file. Sorry. Maybe some events were imported anyway."] = "Při importu souboru se něco nezdařilo, omlouváme se. Přesto se mohly některé události načíst."; +$a->strings["Something went wrong when trying to import the file. Sorry."] = "Při importu souboru se něco nezdařilo, omlouváme se."; +$a->strings["The ICS-File has been imported."] = "ICS soubor byl importován."; +$a->strings["No file was uploaded."] = "Žádný soubor nebyl nahrán."; +$a->strings["Import a ICS-file"] = "Import ICS souboru."; +$a->strings["ICS-File"] = "ICS soubor."; +$a->strings["Overwrite all #num# existing events"] = "Přepsat všechny #num# existující události"; +$a->strings["New event"] = "Nová událost"; +$a->strings["Today"] = "Dnes"; +$a->strings["Day"] = "Den"; +$a->strings["Week"] = "Týden"; +$a->strings["Reload"] = "Načíst znovu"; +$a->strings["Date"] = "Datum"; +$a->strings["Error"] = "Chyba"; +$a->strings["The calendar has been updated."] = "Kalendář byl aktualizován."; +$a->strings["The new calendar has been created."] = "Nový kalendář byl vytvořen."; +$a->strings["The calendar has been deleted."] = "Kalendář byl smazán."; +$a->strings["Calendar Settings"] = "Nastavení kalendáře"; +$a->strings["Date format"] = "Formát datumu"; +$a->strings["Time zone"] = "Časová zóna"; +$a->strings["Calendars"] = "Kalendáře"; +$a->strings["Create a new calendar"] = "Vytvořit nový kalendář"; +$a->strings["Limitations"] = "Omezení"; +$a->strings["Warning"] = "Varování"; +$a->strings["Synchronization (iPhone, Thunderbird Lightning, Android, ...)"] = "Synchronizace (iPhone, Thunderbird Lightning, Android, ...)"; +$a->strings["Synchronizing this calendar with the iPhone"] = "Synchronizovat tento kalendář s iPhone"; +$a->strings["Synchronizing your Friendica-Contacts with the iPhone"] = "Synchronizovat Vaše Friendica kontakty s iPhone"; +$a->strings["The current version of this plugin has not been set up correctly. Please contact the system administrator of your installation of friendica to fix this."] = "Stávající verze tohoto rozšíření nebyla správně nastavena. Prosím, kontaktujte administrátora webu, ať to opraví."; +$a->strings["Extended calendar with CalDAV-support"] = "Rozšířený kalendář s podporou CalDAV"; +$a->strings["noreply"] = "neodpovídat"; +$a->strings["Notification: "] = "Notifikace:"; +$a->strings["The database tables have been installed."] = "Databázové tabulky byly nainstalovány"; +$a->strings["An error occurred during the installation."] = "Během instalace nastala chyba."; +$a->strings["The database tables have been updated."] = "Databázové tabulky byly aktualizovány."; +$a->strings["An error occurred during the update."] = "Během aktualizace došlo k chybě."; +$a->strings["No system-wide settings yet."] = "Nastavení systému dosud nebylo vytvořeno"; +$a->strings["Database status"] = "Status databáze"; +$a->strings["Installed"] = "Instalováno"; +$a->strings["Upgrade needed"] = "Upgrade vyžadován"; +$a->strings["Please back up all calendar data (the tables beginning with dav_*) before proceeding. While all calendar events should be converted to the new database structure, it's always safe to have a backup. Below, you can have a look at the database-queries that will be made when pressing the 'update'-button."] = "Prosím, zálohujte si všechny data v kalendářích (všechny tabulky začínající s dav_*) před pokračováním. Ačkoliv by měly být všechny kalendářové události převedeny do nové databázové struktury, vždy je bezpečnější mít zálohu. Níže se můžete podívat na databázové příkazy, které budou spuštěny po stisknutí tlačítka \"Aktualizovat\"."; +$a->strings["Upgrade"] = "Upgrade"; +$a->strings["Not installed"] = "Nenainstalováno"; +$a->strings["Install"] = "Instalovat"; +$a->strings["Unknown"] = "Neznámý"; +$a->strings["Something really went wrong. I cannot recover from this state automatically, sorry. Please go to the database backend, back up the data, and delete all tables beginning with 'dav_' manually. Afterwards, this installation routine should be able to reinitialize the tables automatically."] = "Něco se opravdu nepovedlo. Z aktuálního stavu nelze provést automatickou obnovu. Prosím přihlaste se do databáze, zazálohujte data a smažte manuálně všechny tabulky začínající s \"dav_\". Poté by měl instalační skript sám automaticky znovu založit potřebné tabulky."; +$a->strings["Troubleshooting"] = "Řešení problémů"; +$a->strings["Manual creation of the database tables:"] = "Manuálnní vytvoření databázových tabulek:"; +$a->strings["Show SQL-statements"] = "Zobrazit SQL-příkazy"; +$a->strings["Private Calendar"] = "Soukromý kalendář"; +$a->strings["Friendica Events: Mine"] = "Friendica události: Mé"; +$a->strings["Friendica Events: Contacts"] = "Friendica události: Kontakty"; +$a->strings["Private Addresses"] = "Soukromé adresy"; +$a->strings["Friendica Contacts"] = "Friendica Kontakty"; +$a->strings["Allow to use your friendica id (%s) to connecto to external unhosted-enabled storage (like ownCloud). See RemoteStorage WebFinger"] = "Umožnit využití friendica id (%s) k napojení na externí úložiště (unhosted-enabled) (jako ownCloud). Více informací na RemoteStorage WebFinger"; +$a->strings["Template URL (with {category})"] = "Dočasná URL adresa (s {category})"; +$a->strings["OAuth end-point"] = "OAuth end-point"; +$a->strings["Api"] = "Api"; +$a->strings["Member since:"] = "Členem od:"; $a->strings["Three Dimensional Tic-Tac-Toe"] = "Trojrozměrné Tic-Tac-Toe"; $a->strings["3D Tic-Tac-Toe"] = "3D Tic-Tac-Toe"; $a->strings["New game"] = "Nová hra"; @@ -760,6 +1363,31 @@ $a->strings["\"Cat\" game!"] = "\"Kočičí\" hra!"; $a->strings["I won!"] = "Vyhrál jsem!"; $a->strings["Randplace Settings"] = "Randplace Nastavení"; $a->strings["Enable Randplace Plugin"] = "Povolit Randplace Plugin"; +$a->strings["Post to Dreamwidth"] = "Poslat na Dreamwidth"; +$a->strings["Dreamwidth Post Settings"] = "Nastavení Dreamwidth příspěvků"; +$a->strings["Enable dreamwidth Post Plugin"] = "Povolit dreamwidth Plugin"; +$a->strings["dreamwidth username"] = "dreamwidth uživatelské jméno"; +$a->strings["dreamwidth password"] = "dreamwidth heslo"; +$a->strings["Post to dreamwidth by default"] = "Defaultně umístit na dreamwidth"; +$a->strings["Post to Drupal"] = "Zveřejnit na Drupal"; +$a->strings["Drupal Post Settings"] = "Nastavení příspěvků Drupal"; +$a->strings["Enable Drupal Post Plugin"] = "Aktivovat Drupal Plugin"; +$a->strings["Drupal username"] = "Drupal uživatelské jméno "; +$a->strings["Drupal password"] = "Drupal heslo"; +$a->strings["Post Type - article,page,or blog"] = "Typ příspěvku - článek, stránka nebo blog"; +$a->strings["Drupal site URL"] = "Drupal adresa webu"; +$a->strings["Drupal site uses clean URLS"] = "Drupal server používá čisté URLS"; +$a->strings["Post to Drupal by default"] = "Defaultní umístění na Drupal "; +$a->strings["Post from Friendica"] = "Příspěvek z Friendica"; +$a->strings["Startpage Settings"] = "Nastavení úvodní stránky"; +$a->strings["Home page to load after login - leave blank for profile wall"] = "Domácí stránka k načtení po přihlášení - pro profilovou zeď ponechejte prázdné"; +$a->strings["Examples: "network" or "notifications/system""] = "Příklady: \"síť\" nebo \"notifikace systému\""; +$a->strings["Geonames settings updated."] = "Geonames nastavení aktualizováno."; +$a->strings["Geonames Settings"] = "Nastavení Geonames"; +$a->strings["Enable Geonames Plugin"] = "Povolit Geonames rozšíření"; +$a->strings["Your account on %s will expire in a few days."] = "Platnost Vašeho účtu na %s vyprší během několika dní."; +$a->strings["Your Friendica account is about to expire."] = "Vašemu účetu Friendica brzy vyprší platnost"; +$a->strings["Hi %1\$s,\n\nYour account on %2\$s will expire in less than five days. You may keep your account by logging in at least once every 30 days"] = "Ahoj %1\$s,\n\nVáš účet na %2\$s vyprší v méně než pěti dnech. Svůj účet si zachováte, pokud se přihlásíte alespoň jednou za každých 30 dní."; $a->strings["Upload a file"] = "Nahrát soubor"; $a->strings["Drop files here to upload"] = "Přeneste sem soubory k nahrání"; $a->strings["Failed"] = "Neúspěch"; @@ -767,16 +1395,111 @@ $a->strings["No files were uploaded."] = "Žádné soubory nebyly nahrány."; $a->strings["Uploaded file is empty"] = "Nahraný soubor je prázdný"; $a->strings["File has an invalid extension, it should be one of "] = "Soubor má neplatnou příponu, ta by měla být jednou z"; $a->strings["Upload was cancelled, or server error encountered"] = "Nahrávání bylo zrušeno nebo došlo k chybě na serveru"; +$a->strings["OEmbed settings updated"] = "OEmbed nastavení aktualizováno"; +$a->strings["Use OEmbed for YouTube videos"] = "Použití OEmbed pro videa na YouTube"; +$a->strings["URL to embed:"] = "URL adresa k vložení:"; +$a->strings["show/hide"] = "zobrazit/skrýt"; +$a->strings["No forum subscriptions"] = "Žádné registrace k fórům"; +$a->strings["Forumlist settings updated."] = "Nastavení Forumlist aktualizováno."; +$a->strings["Forumlist Settings"] = "Nastavení Forumlist"; +$a->strings["Randomise Forumlist/Forum list"] = "Náhodně rozdělit seznam Forumlist/Forum"; +$a->strings["Show forumlists/forums on profile forumlist"] = "Zobrazit forumlists/forums na profilu forumlist"; $a->strings["Impressum"] = "Impressum"; $a->strings["Site Owner"] = "Vlastník webu"; $a->strings["Email Address"] = "E-mailová adresa"; $a->strings["Postal Address"] = "Poštovní adresa"; $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."] = "Doplněk Impressum musí být nakonfigurován!
    Prosím, přidejte alespoň proměnnou owner do konfiguračního souboru. Pro nastavení ostatních proměnných se seznamte s nápovědou v souboru README tohoto doplňku."; +$a->strings["The page operators name."] = "Jméno operátora stránky."; $a->strings["Site Owners Profile"] = "Profil majitele webu"; +$a->strings["Profile address of the operator."] = "Profilová addresa operátora."; +$a->strings["How to contact the operator via snail mail. You can use BBCode here."] = "Jak kontaktovat operátora prostřednictvím klasické pošty. Zde můžete použít BBCode."; $a->strings["Notes"] = "Poznámky"; -$a->strings["OEmbed settings updated"] = "OEmbed nastavení aktualizováno"; -$a->strings["Use OEmbed for YouTube videos"] = "Použití OEmbed pro videa na YouTube"; -$a->strings["URL to embed:"] = "URL adresa k vložení:"; +$a->strings["Additional notes that are displayed beneath the contact information. You can use BBCode here."] = "Další poznámky, které jsou zobrazeny pod kontaktními informacemi. Zde můžete použít BBCode."; +$a->strings["How to contact the operator via email. (will be displayed obfuscated)"] = "Jak konktaktovat operátora přes mail. (bude zobrazen \"zmateně\")"; +$a->strings["Footer note"] = "Poznámka v zápatí"; +$a->strings["Text for the footer. You can use BBCode here."] = "Text pro zápatí. Zde můžete použít BBCode."; +$a->strings["Report Bug"] = "Nahlásit chybu"; +$a->strings["No Timeline settings updated."] = "Nastavení No Timeline aktualizováno."; +$a->strings["No Timeline Settings"] = "Nastavení No Timeline"; +$a->strings["Disable Archive selector on profile wall"] = "Znemožnit použití archivu na této profilové zdi."; +$a->strings["\"Blockem\" Settings"] = "\"Blockem\" Nastavení"; +$a->strings["Comma separated profile URLS to block"] = "Čárkou oddělené URL adresy profilů určených k ignorování"; +$a->strings["BLOCKEM Settings saved."] = "BLOCKEM nastavení uloženo."; +$a->strings["Blocked %s - Click to open/close"] = "Blokován %s - Klikněte pro otevření/zavření"; +$a->strings["Unblock Author"] = "Odblokovat autora"; +$a->strings["Block Author"] = "Zablokovat autora"; +$a->strings["blockem settings updated"] = "blockem nastavení aktualizováno"; +$a->strings[":-)"] = ":-)"; +$a->strings[":-("] = ":-("; +$a->strings["lol"] = "hlasitě se směji"; +$a->strings["Quick Comment Settings"] = "Nastavení rychlých komentářů"; +$a->strings["Quick comments are found near comment boxes, sometimes hidden. Click them to provide simple replies."] = "Rychlé komentáře jsou k nalezení blízko polí s komentáři, někdy jsou skryté. Klikněte na ně k poskytnutí jednoduchých odpovědí."; +$a->strings["Enter quick comments, one per line"] = "Zadejte rychlé komentáře, každý na nový řádek"; +$a->strings["Quick Comment settings saved."] = "Nastavení Quick Comment uloženo."; +$a->strings["Tile Server URL"] = "URL adresa Tile serveru"; +$a->strings["A list of public tile servers"] = "Seznam veřejných tile serverů"; +$a->strings["Default zoom"] = "Defaultní přiblížení"; +$a->strings["The default zoom level. (1:world, 18:highest)"] = "Defaultní úroveň přiblížení (1:svět, 18:nejvyšší)"; +$a->strings["Editplain settings updated."] = "Editplain nastavení aktualizováno"; +$a->strings["Group Text"] = "Skupinový text"; +$a->strings["Use a text only (non-image) group selector in the \"group edit\" menu"] = "Použijte pouze textový (neobrázkový) výběr skupiny v menu editace skupin."; +$a->strings["Could NOT install Libravatar successfully.
    It requires PHP >= 5.3"] = "Libravatar není možné úspěšně nainstalovat .
    Vyžaduje PHP >= 5.3"; +$a->strings["generic profile image"] = "generický profilový obrázek"; +$a->strings["random geometric pattern"] = "náhodný geometrický vzor"; +$a->strings["monster face"] = "tvář příšery"; +$a->strings["computer generated face"] = "počítačově generovaná tvář"; +$a->strings["retro arcade style face"] = "tvář v retro arkádovém stylu"; +$a->strings["Your PHP version %s is lower than the required PHP >= 5.3."] = "Vaše PHP verze %s je nižší než požadovaná PHP >= 5.3."; +$a->strings["This addon is not functional on your server."] = "Tento doplněk není funkční na Vašem serveru."; +$a->strings["Information"] = "Informace"; +$a->strings["Gravatar addon is installed. Please disable the Gravatar addon.
    The Libravatar addon will fall back to Gravatar if nothing was found at Libravatar."] = "Gravatar doplněk je nainstalován. Prosím zakažte doplněk Gravatar.
    Libravatar doplněk se vrátí k doplňku Gravatar, pokud na Libravataru nebude nic nalezeno."; +$a->strings["Default avatar image"] = "Defaultní obrázek avataru"; +$a->strings["Select default avatar image if none was found. See README"] = "Vyberte defaultní avatar obrázek pokud nebyl žádný nalezen. Více viz. soubor README."; +$a->strings["Libravatar settings updated."] = "Nastavení Libravatar aktualizováno."; +$a->strings["Post to libertree"] = "Poslat na Libertree"; +$a->strings["libertree Post Settings"] = "Nastavení Libertree příspěvků"; +$a->strings["Enable Libertree Post Plugin"] = "Povolit Libertree Post rozšíření"; +$a->strings["Libertree API token"] = "Libertree API token"; +$a->strings["Libertree site URL"] = "URL adresa Libertree "; +$a->strings["Post to Libertree by default"] = "Defaultně poslat na Libertree"; +$a->strings["Altpager settings updated."] = "Nastavení Altpager aktualizováno."; +$a->strings["Alternate Pagination Setting"] = "Alternate Pagination nastavení"; +$a->strings["Use links to \"newer\" and \"older\" pages in place of page numbers?"] = "Použít odkazy na \"novější\" a \"starší\" stránky místo čísel stránek?"; +$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."] = "Rozšíření MathJax vykresluje matematické vzorce zapsané s použitím syntaxe LaTeX označené obvyklými znaky $$ nebo v bloku \"eqnarray\" v příspěvcích na Vaší zdi, záložce síť a soukromých zprávách."; +$a->strings["Use the MathJax renderer"] = "Použít Mathjax vykreslování"; +$a->strings["MathJax Base URL"] = "Základní MathJax adresa 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."] = "URL adresa na javascriptový soubor, který musí být obsažen pro použití MathJax. Může to být MathJax CDN nebo or jiná instalace MathJax."; +$a->strings["Editplain Settings"] = "Nastavení Editplain"; +$a->strings["Disable richtext status editor"] = "Zakázat richtext status editor"; +$a->strings["Libravatar addon is installed, too. Please disable Libravatar addon or this Gravatar addon.
    The Libravatar addon will fall back to Gravatar if nothing was found at Libravatar."] = "Libravatar doplněk je také nainstalován. Prosím zakažte doplněk Libravatar nebo tento doplněk Gravatar.
    Libravatar doplněk se vrátí k doplňku Gravatar, pokud na Libravataru nebude nic nalezeno."; +$a->strings["Select default avatar image if none was found at Gravatar. See README"] = "Nastavte defaulní obrázek avatara pokud ho již nemáte na Gravatar. Více viz. soubor README."; +$a->strings["Rating of images"] = "Hodnocení obrázků"; +$a->strings["Select the appropriate avatar rating for your site. See README"] = "Zadejte ohodnocení příslušného avatara pro vaši stránku. Viz README."; +$a->strings["Gravatar settings updated."] = "Nastavení Gravatar aktualizováno."; +$a->strings["Your Friendica test account is about to expire."] = "Váš Friendica testovací účet brzy vyprší."; +$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."] = "Ahoj %1\$s,\n\nplatnost Vašeho testovacího účtu na %2\$s vyprší za méně než 5 dní. Doufáme, že jste si testovací jízdu užili a že se Vám povedlo najít trvalý Friendica server pro Vaši integrovanou sociální komunikaci. List veřejně dostupných serverů je k dispozici na http://dir.friendica.com/siteinfo - a pro více informací, jak si vytvořit svůj vlastní server, navštivte stránky projektu Friendica na adrese http://friendica.com."; +$a->strings["\"pageheader\" Settings"] = "Nastavení záhlaví stránky"; +$a->strings["pageheader Settings saved."] = "Nastavení záhlaví stránky uloženo."; +$a->strings["Post to Insanejournal"] = "Odeslat na Insanejournal"; +$a->strings["InsaneJournal Post Settings"] = "Nastavení příspěvků pro InsaneJournal"; +$a->strings["Enable InsaneJournal Post Plugin"] = "Povolit Insanejournal plugin"; +$a->strings["InsaneJournal username"] = "Insanejournal uživatelské jméno"; +$a->strings["InsaneJournal password"] = "Insanejournal heslo"; +$a->strings["Post to InsaneJournal by default"] = "Defaultně zasílat příspěvky na InsaneJournal"; +$a->strings["Jappix Mini addon settings"] = "Nastavení rozšíření Jappix Mini"; +$a->strings["Activate addon"] = "Aktivovat rozšíření"; +$a->strings["Do not insert the Jappixmini Chat-Widget into the webinterface"] = "Nevlkádejte Jappixmini Chat-Widget do webového rozhraní"; +$a->strings["Jabber username"] = "Jabber uživatelské jméno"; +$a->strings["Jabber server"] = "Jabber server"; +$a->strings["Jabber BOSH host"] = ""; +$a->strings["Jabber password"] = ""; +$a->strings["Encrypt Jabber password with Friendica password (recommended)"] = ""; +$a->strings["Friendica password"] = "Friendica heslo"; +$a->strings["Approve subscription requests from Friendica contacts automatically"] = ""; +$a->strings["Subscribe to Friendica contacts automatically"] = ""; +$a->strings["Purge internal list of jabber addresses of contacts"] = ""; +$a->strings["Add contact"] = "Přidat kontakt"; +$a->strings["View Source"] = "Zobrazit zdroj"; $a->strings["Post to StatusNet"] = "Poslat příspěvek na StatusNet"; $a->strings["Please contact your site administrator.
    The provided API URL is not valid."] = "Obraťte se na administratora webu.
    Poskytnutý odkaz na API není platný."; $a->strings["We could not contact the StatusNet API with the Path you entered."] = "S cestou, kterou jste zadali, se nebylo možné spojit s API StatusNetu."; @@ -785,7 +1508,7 @@ $a->strings["StatusNet Posting Settings"] = "Nastavení zasílání příspěvk $a->strings["Globally Available StatusNet OAuthKeys"] = "Globálně dostupné StatusNet OAuth klíče"; $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)."] = "Jsou dostupné přednastavené OAuth páry klíčů pro některé servery StatusNetu. Pokud používáte některý z nich, použijte toto přihlášení. Pokud ne, neváhejte se připojit k jiné instanci StatusNet (viz níže)."; $a->strings["Provide your own OAuth Credentials"] = "Uveďte své vlastní OAuth přihlašovací údaje"; -$a->strings["No consumer key pair for StatusNet found. Register your Friendika 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 Friendika installation at your favorited StatusNet installation."] = "Nenalezen žádný consumer pár klíčů pro StatusNet. Zaregistrujte svůj Friendika účet jako desktopový klient na svém účtu StatusNetu, zkopírujte níže consumer pár klíčů a zadejte API base root.
    Než si zaregistrujete svůj vlastní pár klíčů OAuth, zjistěte si od administrátora, zda-li už náhodou na tento Friendika server nepřidal pár klíčů pro vámi požadovanou instalaci StatusNetu."; +$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."] = "Nenalezen žádný spotřebitelský páru klíčů pro StatusNet. Zaregistrujte si svůj účet Friendica jako desktopový klient ve Vašem účtu StatusNet, zkopírujte si sem spotřebitelský páru klíčů a vložte API base root.
    Předtím, než si zaregistrujete Váš vlastní pár klíčů OAuth, zjistěte si od Friendica administrátora, zda-li již existuje pár klíčů pro tuto instalaci Friendica pro Vaši oblíbenou StatusNet instalaci."; $a->strings["OAuth Consumer Key"] = "OAuth Consumer Key"; $a->strings["OAuth Consumer Secret"] = "OAuth Consumer Secret"; $a->strings["Base API Path (remember the trailing /)"] = "Cesta k Base API (nezapomeňte na koncový /)"; @@ -797,36 +1520,133 @@ $a->strings["Current StatusNet API is"] = "Aktuální StatusNet API je"; $a->strings["Cancel StatusNet Connection"] = "Zrušit StatusNet připojení"; $a->strings["Currently connected to: "] = "V současné době připojen k:"; $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."] = "Je-li povoleno, všechny Vaše veřejné příspěvky mohou být zaslány na související StatusNet účet. Můžete si vybrat, zda-li toto bude výchozí nastavení (zde), nebo budete mít možnost si vybrat požadované chování při psaní každého příspěvku."; +$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."] = "Upozornění: Z důvodů Vašeho nastavení ochrany soukromí ( Skrýt Vaše profilové detaily před neznámými čtenáři?) \nodkaz potenciálně zahrnutý ve Vašich veřejných příspěvcích poslaných do sítě StatusNet přesměruje návštěvníky na prázdnou stránku informující návštěvníky, že přístup k vašemu profilu je omezen."; $a->strings["Allow posting to StatusNet"] = "Povolit zasílání příspěvků na StatusNet"; $a->strings["Send public postings to StatusNet by default"] = "Standardně poslílat veřejné příspěvky na StatusNet"; +$a->strings["Send linked #-tags and @-names to StatusNet"] = "Poslat propojené #-tagy a @-jména na StatusNet"; $a->strings["Clear OAuth configuration"] = "Vymazat konfiguraci OAuth"; $a->strings["API URL"] = "API URL"; -$a->strings["Consumer Secret"] = "Consumer Secret"; -$a->strings["Consumer Key"] = "Consumer Key"; +$a->strings["Infinite Improbability Drive"] = "Infinite Improbability Drive"; +$a->strings["Post to Tumblr"] = "Příspěvek na Tumbir"; +$a->strings["Tumblr Post Settings"] = "Nastavení příspěvků na Tumbir"; +$a->strings["Enable Tumblr Post Plugin"] = "Povolit rozšíření Tumbir"; +$a->strings["Tumblr login"] = "Tumbir přihlašovací jméno"; +$a->strings["Tumblr password"] = "Tumbir heslo"; +$a->strings["Post to Tumblr by default"] = "Standardně posílat příspěvky na Tumbir"; +$a->strings["Numfriends settings updated."] = "Numfriends nastavení aktualizováno"; +$a->strings["Numfriends Settings"] = "Nastavení Numfriends"; +$a->strings["Gnot settings updated."] = "Nastavení Gnot aktualizováno."; +$a->strings["Gnot Settings"] = "Nastavení Gnot"; +$a->strings["Allows threading of email comment notifications on Gmail and anonymising the subject line."] = "Umožnit řetězení emailových komentářových notifikací na Gmailu a anonymizací řádky předmětu."; +$a->strings["Enable this plugin/addon?"] = "Povolit tento plugin/rozšíření?"; +$a->strings["[Friendica:Notify] Comment to conversation #%d"] = "[Friendica:Upozornění] Komentář ke konverzaci #%d"; +$a->strings["Post to Wordpress"] = "Příspěvky do WordPress"; +$a->strings["WordPress Post Settings"] = "WordPress Post nastavení"; +$a->strings["Enable WordPress Post Plugin"] = "Povolit rozšíření na WordPress"; +$a->strings["WordPress username"] = "WordPress uživatelské jméno"; +$a->strings["WordPress password"] = "WordPress heslo"; +$a->strings["WordPress API URL"] = "URL adresa API WordPress"; +$a->strings["Post to WordPress by default"] = "standardně posílat příspěvky na WordPress"; +$a->strings["Provide a backlink to the Friendica post"] = "Poskytuje zpětný link na Friendica příspěvek"; +$a->strings["Read the original post and comment stream on Friendica"] = "Přečíst si originální příspěvek a komentáře na Friendica"; +$a->strings["\"Show more\" Settings"] = "\"Show more\" nastavení"; +$a->strings["Enable Show More"] = "Povolit Show more"; +$a->strings["Cutting posts after how much characters"] = "Oříznout příspěvky po zadaném množství znaků"; +$a->strings["Show More Settings saved."] = "Nastavení \"Show more\" uloženo."; +$a->strings["This website is tracked using the Piwik analytics tool."] = "Tato webová stránka je sledována pomocí nástroje pro analýzu Piwik."; +$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)."] = "Pokud si nepřejete, aby Vaše návštěvy byly takto sledovány, můžete si nastavit cookie, které zastaví sledování dalších návštěv na tomto webu (opt-out)."; $a->strings["Piwik Base URL"] = "Piwik Base adresa URL"; +$a->strings["Absolute path to your Piwik installation. (without protocol (http/s), with trailing slash)"] = "Absolutní cesta k Vaší instalaci Piwik. (bez protokolu (http/s), s koncovým lomítkem)"; $a->strings["Site ID"] = "ID webu"; $a->strings["Show opt-out cookie link?"] = "Zobrazit odkaz opt-out cookie?"; +$a->strings["Asynchronous tracking"] = "Asynchronní sledování"; $a->strings["Post to Twitter"] = "Poslat příspěvek na Twitter"; $a->strings["Twitter settings updated."] = "Nastavení Twitteru aktualizováno."; $a->strings["Twitter Posting Settings"] = "Nastavení zasílání příspěvků na Twitter "; $a->strings["No consumer key pair for Twitter found. Please contact your site administrator."] = "Nenalezen žádný spotřebitelský páru klíčů pro Twitter. Obraťte se na administrátora webu."; -$a->strings["At this Friendika 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."] = "Na tomto Friendika serveru je Twitter plugin povolen, ale ještě nemáte svůj účet připojen ke svému Twitter účtu. Chcete-li tak učinit, klepnutím na tlačítko níže získejte PIN z Twitteru, který musíte zkopírovat do vstupního pole níže a odešlete formulář. Pouze Vaše veřejné příspěvky budou zveřejněny na Twitteru."; +$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."] = "Na této Friendica instanci je sice povolen Twitter plugin, ale vy jste si ještě nenastavili svůj Twitter účet. Svůj účet si můžete nastavit kliknutím na tlačítko níže k získání PINu z Vašeho Twitteru, který si zkopírujte do níže uvedeného vstupního pole a odešlete formulář. Pouze vaše veřejné příspěvky budou zaslány na Twitter."; $a->strings["Log in with Twitter"] = "Přihlásit se s Twitter"; $a->strings["Copy the PIN from Twitter here"] = "Zkopírujte sem PIN z Twitteru"; $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."] = "Je-li povoleno, všechny Vaše veřejné příspěvky mohou být zaslány na související Twitter účet. Můžete si vybrat, zda-li toto bude výchozí nastavení (zde), nebo budete mít možnost si vybrat požadované chování při psaní každého příspěvku."; +$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."] = "Upozornění: Z důvodů Vašeho nastavení ochrany soukromí ( Skrýt Vaše profilové detaily před neznámými čtenáři?) \nodkaz potenciálně zahrnutý ve Vašich veřejných příspěvcích poslaných do sítě Twitter přesměruje návštěvníky na prázdnou stránku informující návštěvníky, že přístup k vašemu profilu je omezen."; $a->strings["Allow posting to Twitter"] = "Povolit odesílání na Twitter"; $a->strings["Send public postings to Twitter by default"] = "Defaultně zasílat veřejné komentáře na Twitter"; +$a->strings["Send linked #-tags and @-names to Twitter"] = "Poslat propojené #-tagy a @-jména na Twitter"; $a->strings["Consumer key"] = "Consumer key"; $a->strings["Consumer secret"] = "Consumer secret"; -$a->strings["Gender:"] = "Pohlaví:"; -$a->strings["Birthday:"] = "Narozeniny:"; +$a->strings["IRC Settings"] = "Nastavení IRC"; +$a->strings["Channel(s) to auto connect (comma separated)"] = "Kanál(y) pro automatické připojení(oddělené čárkou)"; +$a->strings["Popular Channels (comma separated)"] = "Oblíbené Kanály (oddělené čárkou)"; +$a->strings["IRC settings saved."] = "Nastavení IRC uloženo."; +$a->strings["IRC Chatroom"] = "IRC Místnost"; +$a->strings["Popular Channels"] = "Oblíbené kanály"; +$a->strings["Fromapp settings updated."] = ""; +$a->strings["FromApp Settings"] = ""; +$a->strings["The application name you would like to show your posts originating from."] = ""; +$a->strings["Use this application name even if another application was used."] = ""; +$a->strings["Post to blogger"] = "Poslat na blogger"; +$a->strings["Blogger Post Settings"] = "Nastavení příspěvků na Blogger "; +$a->strings["Enable Blogger Post Plugin"] = "Povolit Blogger Post Plugin"; +$a->strings["Blogger username"] = "Blogger uživatelské jméno"; +$a->strings["Blogger password"] = "Blogger heslo"; +$a->strings["Blogger API URL"] = "Blogger API URL"; +$a->strings["Post to Blogger by default"] = "Defaultně zaslat na Blogger"; +$a->strings["Post to Posterous"] = "Poslat na Posterous"; +$a->strings["Posterous Post Settings"] = "Posterous nastavení příspěvků"; +$a->strings["Enable Posterous Post Plugin"] = "Umožnit Posterous Plugin"; +$a->strings["Posterous login"] = "Posterous login"; +$a->strings["Posterous password"] = "Posterous heslo"; +$a->strings["Posterous site ID"] = "Posterous site ID"; +$a->strings["Posterous API token"] = "Posterous API token"; +$a->strings["Post to Posterous by default"] = "Příspěvky standardně posílat na Posterous"; +$a->strings["Theme settings"] = "Nastavení téma"; +$a->strings["Set resize level for images in posts and comments (width and height)"] = "Nastavit velikost fotek v přízpěvcích a komentářích (šířka a výška)"; +$a->strings["Set font-size for posts and comments"] = "Nastav velikost písma pro přízpěvky a komentáře."; +$a->strings["Set theme width"] = "Nastavení šířku grafické šablony"; +$a->strings["Color scheme"] = "Barevné schéma"; +$a->strings["Your posts and conversations"] = "Vaše příspěvky a konverzace"; +$a->strings["Your profile page"] = "Vaše profilová stránka"; +$a->strings["Your contacts"] = "Vaše kontakty"; +$a->strings["Your photos"] = "Vaše fotky"; +$a->strings["Your events"] = "Vaše události"; +$a->strings["Personal notes"] = "Osobní poznámky"; +$a->strings["Your personal photos"] = "Vaše osobní fotky"; +$a->strings["Community Pages"] = "Komunitní stránky"; +$a->strings["Community Profiles"] = "Komunitní profily"; +$a->strings["Last users"] = "Poslední uživatelé"; +$a->strings["Last likes"] = "Poslední líbí/nelíbí"; +$a->strings["Last photos"] = "Poslední fotografie"; +$a->strings["Find Friends"] = "Nalézt Přátele"; +$a->strings["Local Directory"] = "Lokální Adresář"; +$a->strings["Similar Interests"] = "Podobné zájmy"; +$a->strings["Invite Friends"] = "Pozvat přátele"; +$a->strings["Earth Layers"] = "Earth Layers"; +$a->strings["Set zoomfactor for Earth Layers"] = "Nastavit faktor přiblížení pro Earth Layers"; +$a->strings["Set longitude (X) for Earth Layers"] = "Nastavit zeměpistnou délku (X) pro Earth Layers"; +$a->strings["Set latitude (Y) for Earth Layers"] = "Nastavit zeměpistnou šířku (X) pro Earth Layers"; +$a->strings["Help or @NewHere ?"] = "Pomoc nebo @ProNováčky ?"; +$a->strings["Connect Services"] = "Propojené služby"; +$a->strings["Last Tweets"] = "Poslední tweety"; +$a->strings["Set twitter search term"] = "Nastavit vyhledávací frázi na twitteru"; +$a->strings["don't show"] = "nikdy nezobrazit"; +$a->strings["show"] = "zobrazit"; +$a->strings["Show/hide boxes at right-hand column:"] = "Zobrazit/skrýt boxy na pravém sloupci:"; +$a->strings["Set line-height for posts and comments"] = "Nastav výšku řádku pro přízpěvky a komentáře."; +$a->strings["Set resolution for middle column"] = "Nastav rozlišení pro prostřední sloupec"; +$a->strings["Set color scheme"] = "Nastavení barevného schematu"; +$a->strings["Set zoomfactor for Earth Layer"] = "Nastavit přiblížení pro Earth Layer"; +$a->strings["Last tweets"] = "Poslední tweety"; +$a->strings["Alignment"] = "Zarovnání"; +$a->strings["Left"] = "Vlevo"; +$a->strings["Center"] = "Uprostřed"; +$a->strings["Set colour scheme"] = "Nastavit barevné schéma"; $a->strings["j F, Y"] = "j F, Y"; $a->strings["j F"] = "j F"; +$a->strings["Birthday:"] = "Narozeniny:"; $a->strings["Age:"] = "Věk:"; -$a->strings[" Status:"] = " Status:"; -$a->strings["Homepage:"] = "Domácí stránka:"; +$a->strings["for %1\$d %2\$s"] = "pro %1\$d %2\$s"; +$a->strings["Tags:"] = "Štítky:"; $a->strings["Religion:"] = "Náboženství:"; -$a->strings["About:"] = "O mě:"; $a->strings["Hobbies/Interests:"] = "Koníčky/zájmy:"; $a->strings["Contact information and Social Networks:"] = "Kontaktní informace a sociální sítě:"; $a->strings["Musical interests:"] = "Hudební vkus:"; @@ -845,9 +1665,12 @@ $a->strings["Reputable, has my trust"] = "Renomovaný, má mou důvěru"; $a->strings["Frequently"] = "Často"; $a->strings["Hourly"] = "každou hodinu"; $a->strings["Twice daily"] = "Dvakrát denně"; -$a->strings["Daily"] = "denně"; -$a->strings["Weekly"] = "Týdenně"; -$a->strings["Monthly"] = "Měsíčně"; +$a->strings["OStatus"] = "OStatus"; +$a->strings["RSS/Atom"] = "RSS/Atom"; +$a->strings["Zot!"] = "Zot!"; +$a->strings["LinkedIn"] = "LinkedIn"; +$a->strings["XMPP/IM"] = "XMPP/IM"; +$a->strings["MySpace"] = "MySpace"; $a->strings["Male"] = "Muž"; $a->strings["Female"] = "Žena"; $a->strings["Currently Male"] = "V současné době muž"; @@ -879,6 +1702,8 @@ $a->strings["Single"] = "Svobodný"; $a->strings["Lonely"] = "Osamnělý"; $a->strings["Available"] = "Dostupný"; $a->strings["Unavailable"] = "Nedostupný"; +$a->strings["Has crush"] = "Zamilovaný"; +$a->strings["Infatuated"] = "Zabouchnutý"; $a->strings["Dating"] = "Seznamující se"; $a->strings["Unfaithful"] = "Nevěrný"; $a->strings["Sex Addict"] = "Závislý na sexu"; @@ -887,40 +1712,71 @@ $a->strings["Friends/Benefits"] = "Přátelé / výhody"; $a->strings["Casual"] = "Ležérní"; $a->strings["Engaged"] = "Zadaný"; $a->strings["Married"] = "Ženatý/vdaná"; +$a->strings["Imaginarily married"] = "Pomyslně ženatý/vdaná"; $a->strings["Partners"] = "Partneři"; $a->strings["Cohabiting"] = "Žijící ve společné domácnosti"; +$a->strings["Common law"] = "Zvykové právo"; $a->strings["Happy"] = "Šťastný"; -$a->strings["Not Looking"] = "Nehledající"; +$a->strings["Not looking"] = "Nehledající"; $a->strings["Swinger"] = "Swinger"; $a->strings["Betrayed"] = "Zrazen"; $a->strings["Separated"] = "Odloučený"; $a->strings["Unstable"] = "Nestálý"; $a->strings["Divorced"] = "Rozvedený(á)"; +$a->strings["Imaginarily divorced"] = "Pomyslně rozvedený"; $a->strings["Widowed"] = "Ovdovělý(á)"; $a->strings["Uncertain"] = "Nejistý"; -$a->strings["Complicated"] = "Komplikovaný"; +$a->strings["It's complicated"] = "Je to složité"; $a->strings["Don't care"] = "Nezajímá"; $a->strings["Ask me"] = "Zeptej se mě"; -$a->strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ g:i A"; $a->strings["Starts:"] = "Začíná:"; $a->strings["Finishes:"] = "Končí:"; +$a->strings["(no subject)"] = "(Bez předmětu)"; +$a->strings[" on Last.fm"] = " na Last.fm"; $a->strings["prev"] = "předchozí"; $a->strings["first"] = "první"; $a->strings["last"] = "poslední"; $a->strings["next"] = "další"; +$a->strings["newer"] = "novější"; +$a->strings["older"] = "starší"; $a->strings["No contacts"] = "Žádné kontakty"; $a->strings["%d Contact"] = array( 0 => "%d kontakt", 1 => "%d kontaktů", 2 => "%d kontaktů", ); -$a->strings["Monday"] = "Pondělí"; -$a->strings["Tuesday"] = "Úterý"; -$a->strings["Wednesday"] = "Středa"; -$a->strings["Thursday"] = "Čtvrtek"; -$a->strings["Friday"] = "Pátek"; -$a->strings["Saturday"] = "Sobota"; -$a->strings["Sunday"] = "Neděle"; +$a->strings["poke"] = ""; +$a->strings["poked"] = ""; +$a->strings["ping"] = "cinknout"; +$a->strings["pinged"] = "cinkut"; +$a->strings["prod"] = "pobídnout"; +$a->strings["prodded"] = "pobídnut"; +$a->strings["slap"] = "dát facku"; +$a->strings["slapped"] = "být uhozen"; +$a->strings["finger"] = ""; +$a->strings["fingered"] = ""; +$a->strings["rebuff"] = "odmítnout"; +$a->strings["rebuffed"] = "odmítnut"; +$a->strings["happy"] = "šťasný"; +$a->strings["sad"] = "smutný"; +$a->strings["mellow"] = "jemný"; +$a->strings["tired"] = "unavený"; +$a->strings["perky"] = "emergický"; +$a->strings["angry"] = "nazlobený"; +$a->strings["stupified"] = "otupen"; +$a->strings["puzzled"] = "popletený"; +$a->strings["interested"] = "zajímavý"; +$a->strings["bitter"] = "hořký"; +$a->strings["cheerful"] = "radnostný"; +$a->strings["alive"] = "naživu"; +$a->strings["annoyed"] = "otráven"; +$a->strings["anxious"] = "znepokojený"; +$a->strings["cranky"] = "mrzutý"; +$a->strings["disturbed"] = "vyrušen"; +$a->strings["frustrated"] = "frustrovaný"; +$a->strings["motivated"] = "motivovaný"; +$a->strings["relaxed"] = "uvolněný"; +$a->strings["surprised"] = "překvapený"; $a->strings["January"] = "Ledna"; $a->strings["February"] = "Února"; $a->strings["March"] = "Března"; @@ -932,18 +1788,30 @@ $a->strings["August"] = "Srpna"; $a->strings["September"] = "Září"; $a->strings["October"] = "Října"; $a->strings["November"] = "Listopadu"; -$a->strings["December"] = "Prosince"; +$a->strings["December"] = "Prosinec"; $a->strings["bytes"] = "bytů"; +$a->strings["Click to open/close"] = "Klikněte pro otevření/zavření"; +$a->strings["default"] = "standardní"; $a->strings["Select an alternate language"] = "Vyběr alternativního jazyka"; +$a->strings["activity"] = "aktivita"; +$a->strings["post"] = "příspěvek"; +$a->strings["Item filed"] = "Položka vyplněna"; $a->strings["Sharing notification from Diaspora network"] = "Sdílení oznámení ze sítě Diaspora"; +$a->strings["Attachments:"] = "Přílohy:"; +$a->strings["view full size"] = "zobrazit v plné velikosti"; +$a->strings["Embedded content"] = "vložený obsah"; $a->strings["Embedding disabled"] = "Vkládání zakázáno"; -$a->strings["Create a new group"] = "Vytvořit novou skupinu"; +$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."] = "Dříve smazaná skupina s tímto jménem byla obnovena. Stávající oprávnění může ovlivnit tuto skupinu a její budoucí členy. Pokud to není to, co jste chtěli, vytvořte, prosím, další skupinu s jiným názvem."; +$a->strings["Default privacy group for new contacts"] = "Defaultní soukromá skrupina pro nové kontakty."; $a->strings["Everybody"] = "Všichni"; +$a->strings["edit"] = "editovat"; +$a->strings["Edit group"] = "Editovat skupinu"; +$a->strings["Create a new group"] = "Vytvořit novou skupinu"; +$a->strings["Contacts not in any group"] = "Kontakty, které nejsou v žádné skupině"; $a->strings["Logout"] = "Odhlásit se"; $a->strings["End this session"] = "Konec této relace"; -$a->strings["Login"] = "Přihlásit se"; +$a->strings["Status"] = "Stav"; $a->strings["Sign in"] = "Přihlásit se"; -$a->strings["Home"] = "Domů"; $a->strings["Home Page"] = "Domácí stránka"; $a->strings["Create an account"] = "Vytvořit účet"; $a->strings["Help and documentation"] = "Nápověda a dokumentace"; @@ -953,62 +1821,152 @@ $a->strings["Search site content"] = "Hledání na stránkách tohoto webu"; $a->strings["Conversations on this site"] = "Konverzace na tomto webu"; $a->strings["Directory"] = "Adresář"; $a->strings["People directory"] = "Adresář"; -$a->strings["Network"] = "Síť"; $a->strings["Conversations from your friends"] = "Konverzace od Vašich přátel"; -$a->strings["Your posts and conversations"] = "Vaše příspěvky a konverzace"; -$a->strings["Notifications"] = "Upozornění"; -$a->strings["Friend requests"] = "Požadavky přátelství"; +$a->strings["Friend Requests"] = "Žádosti přátel"; +$a->strings["See all notifications"] = "Zobrazit všechny upozornění"; +$a->strings["Mark all system notifications seen"] = "Označit všechny upozornění systému jako přečtené"; $a->strings["Private mail"] = "Soukromá pošta"; +$a->strings["Inbox"] = "Doručená pošta"; +$a->strings["Outbox"] = "Odeslaná pošta"; $a->strings["Manage"] = "Spravovat"; $a->strings["Manage other pages"] = "Spravovat jiné stránky"; +$a->strings["Profiles"] = "Profily"; $a->strings["Manage/edit profiles"] = "Spravovat/upravit profily"; $a->strings["Manage/edit friends and contacts"] = "Spravovat/upravit přátelé a kontakty"; -$a->strings["Admin"] = "Administrace"; $a->strings["Site setup and configuration"] = "Nastavení webu a konfigurace"; +$a->strings["Nothing new here"] = "Zde není nic nového"; +$a->strings["Add New Contact"] = "Přidat nový kontakt"; +$a->strings["Enter address or web location"] = "Zadejte adresu nebo umístění webu"; +$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Příklad: jan@příklad.cz, http://příklad.cz/jana"; +$a->strings["%d invitation available"] = array( + 0 => "Pozvánka %d k dispozici", + 1 => "Pozvánky %d k dispozici", + 2 => "Pozvánky %d k dispozici", +); +$a->strings["Find People"] = "Nalézt lidi"; +$a->strings["Enter name or interest"] = "Zadejte jméno nebo zájmy"; +$a->strings["Connect/Follow"] = "Připojit / Následovat"; +$a->strings["Examples: Robert Morgenstein, Fishing"] = "Příklady: Robert Morgenstein, rybaření"; +$a->strings["Random Profile"] = "Náhodný Profil"; +$a->strings["Networks"] = "Sítě"; +$a->strings["All Networks"] = "Všechny sítě"; +$a->strings["Saved Folders"] = "Uložené složky"; +$a->strings["Everything"] = "Všechno"; +$a->strings["Categories"] = "Kategorie"; $a->strings["Logged out."] = "Odhlášen."; +$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Zaznamenali jsme problém s Vaším přihlášením prostřednictvím Vámi zadaným OpenID. Prosím ověřte si, že jste ID zadali správně. "; +$a->strings["The error message was:"] = "Chybová zpráva byla:"; $a->strings["Miscellaneous"] = "Různé"; $a->strings["year"] = "rok"; $a->strings["month"] = "měsíc"; $a->strings["day"] = "den"; $a->strings["never"] = "nikdy"; $a->strings["less than a second ago"] = "méně než před sekundou"; -$a->strings["years"] = "let"; -$a->strings["months"] = "měsíců"; -$a->strings["week"] = "týden"; -$a->strings["weeks"] = "týdny"; -$a->strings["days"] = "dnů"; +$a->strings["week"] = "týdnem"; $a->strings["hour"] = "hodina"; $a->strings["hours"] = "hodin"; $a->strings["minute"] = "minuta"; $a->strings["minutes"] = "minut"; $a->strings["second"] = "sekunda"; $a->strings["seconds"] = "sekund"; -$a->strings[" ago"] = " nazpět"; +$a->strings["%1\$d %2\$s ago"] = "před %1\$d %2\$s"; +$a->strings["%s's birthday"] = "%s má narozeniny"; +$a->strings["Happy Birthday %s"] = "Veselé narozeniny %s"; $a->strings["From: "] = "Od:"; $a->strings["Image/photo"] = "Obrázek/fotografie"; +$a->strings["$1 wrote:"] = "$1 napsal:"; +$a->strings["Encrypted content"] = "Šifrovaný obsah"; $a->strings["Cannot locate DNS info for database server '%s'"] = "Nelze nalézt záznam v DNS pro databázový server '%s'"; +$a->strings["[no subject]"] = "[bez předmětu]"; $a->strings["Visible to everybody"] = "Viditelné pro všechny"; -$a->strings["show"] = "zobrazit"; -$a->strings["don't show"] = "nikdy nezobrazit"; -$a->strings["(no subject)"] = "(Bez předmětu)"; +$a->strings["Friendica Notification"] = "Friendica Notifikace"; +$a->strings["Thank You,"] = "Děkujeme, "; +$a->strings["%s Administrator"] = "%s Administrátor"; +$a->strings["%s "] = "%s "; +$a->strings["[Friendica:Notify] New mail received at %s"] = "[Friendica:Upozornění] Obdržena nová zpráva na %s"; +$a->strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s Vám poslal novou soukromou zprávu na %2\$s."; +$a->strings["%1\$s sent you %2\$s."] = "%1\$s Vám poslal %2\$s."; +$a->strings["a private message"] = "soukromá zpráva"; +$a->strings["Please visit %s to view and/or reply to your private messages."] = "Prosím navštivte %s pro zobrazení Vašich soukromých zpráv a možnost na ně odpovědět."; +$a->strings["%1\$s commented on [url=%2\$s]a %3\$s[/url]"] = "%1\$s okomentoval na [url=%2\$s]%3\$s[/url]"; +$a->strings["%1\$s commented on [url=%2\$s]%3\$s's %4\$s[/url]"] = "%1\$s okomentoval na [url=%2\$s]%3\$s's %4\$s[/url]"; +$a->strings["%1\$s commented on [url=%2\$s]your %3\$s[/url]"] = "%1\$s okomentoval na [url=%2\$s]Váš %3\$s[/url]"; +$a->strings["[Friendica:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Friendica:Upozornění] Komentář ke konverzaci #%1\$d od %2\$s"; +$a->strings["%s commented on an item/conversation you have been following."] = "Uživatel %s okomentoval vámi sledovanou položku/konverzaci."; +$a->strings["Please visit %s to view and/or reply to the conversation."] = "Prosím navštivte %s pro zobrazení konverzace a možnosti odpovědět."; +$a->strings["[Friendica:Notify] %s posted to your profile wall"] = "[Friendica:Upozornění] %s umístěn na Vaši profilovou zeď"; +$a->strings["%1\$s posted to your profile wall at %2\$s"] = "%1\$s přidal příspěvek na Vaši profilovou zeď na %2\$s"; +$a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = "%1\$s napřidáno na [url=%2\$s]na Vaši zeď[/url]"; +$a->strings["[Friendica:Notify] %s tagged you"] = "[Friendica:Upozornění] %s Vás označil"; +$a->strings["%1\$s tagged you at %2\$s"] = "%1\$s Vás označil na %2\$s"; +$a->strings["%1\$s [url=%2\$s]tagged you[/url]."] = "%1\$s [url=%2\$s]Vás označil[/url]."; +$a->strings["[Friendica:Notify] %1\$s poked you"] = "[Friendica:Upozornění] %1\$s Vás šťouchnul"; +$a->strings["%1\$s poked you at %2\$s"] = "%1\$s Vás šťouchnul na %2\$s"; +$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = "Uživatel %1\$s [url=%2\$s]Vás šťouchnul[/url]."; +$a->strings["[Friendica:Notify] %s tagged your post"] = "[Friendica:Upozornění] %s označil Váš příspěvek"; +$a->strings["%1\$s tagged your post at %2\$s"] = "%1\$s označil Váš příspěvek na %2\$s"; +$a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = "%1\$s označil [url=%2\$s]Váš příspěvek[/url]"; +$a->strings["[Friendica:Notify] Introduction received"] = "[Friendica:Upozornění] Obdrženo přestavení"; +$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = "Obdržel jste žádost o spojení od '%1\$s' na %2\$s"; +$a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = "Obdržel jste [url=%1\$s]žádost o spojení[/url] od %2\$s."; +$a->strings["You may visit their profile at %s"] = "Můžete navštívit jejich profil na %s"; +$a->strings["Please visit %s to approve or reject the introduction."] = "Prosím navštivte %s pro schválení či zamítnutí představení."; +$a->strings["[Friendica:Notify] Friend suggestion received"] = "[Friendica:Upozornění] Obdržen návrh na přátelství"; +$a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "Obdržel jste návrh přátelství od '%1\$s' na %2\$s"; +$a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from %3\$s."] = "Obdržel jste [url=%1\$s]návrh přátelství[/url] s %2\$s from %3\$s."; +$a->strings["Name:"] = "Jméno:"; +$a->strings["Photo:"] = "Foto:"; +$a->strings["Please visit %s to approve or reject the suggestion."] = "Prosím navštivte %s pro schválení či zamítnutí doporučení."; +$a->strings["Connect URL missing."] = "Chybí URL adresa."; +$a->strings["This site is not configured to allow communications with other networks."] = "Tento web není nakonfigurován tak, aby umožňoval komunikaci s ostatními sítěmi."; +$a->strings["No compatible communication protocols or feeds were discovered."] = "Nenalezen žádný kompatibilní komunikační protokol nebo kanál."; +$a->strings["The profile address specified does not provide adequate information."] = "Uvedená adresa profilu neposkytuje dostatečné informace."; +$a->strings["An author or name was not found."] = "Autor nebo jméno nenalezeno"; +$a->strings["No browser URL could be matched to this address."] = "Této adrese neodpovídá žádné URL prohlížeče."; +$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Není možné namapovat adresu identity ve stylu @ s žádným možným protokolem ani emailovým kontaktem."; +$a->strings["Use mailto: in front of address to force email check."] = "Použite mailo: před adresou k vynucení emailové kontroly."; +$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "Zadaná adresa profilu patří do sítě, která byla na tomto serveru zakázána."; +$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Omezený profil. Tato osoba nebude schopna od Vás přijímat přímé / osobní sdělení."; +$a->strings["Unable to retrieve contact information."] = "Nepodařilo se získat kontaktní informace."; +$a->strings["following"] = "následující"; +$a->strings["A new person is sharing with you at "] = "Nový člověk si s vámi sdílí na"; $a->strings["You have a new follower at "] = "Máte nového následovníka na"; -$a->strings["event"] = "událost"; -$a->strings["View %s's profile"] = "Zobrazit %s profilu"; -$a->strings["%s from %s"] = "%s od %s"; -$a->strings["View in context"] = "Pohled v kontextu"; -$a->strings["See more posts like this"] = "Zobrazit více podobných příspěvků"; -$a->strings["See all %d comments"] = "Zobrazit všechny komentáře %d"; -$a->strings["Select"] = "Vybrat"; -$a->strings["toggle star status"] = "přepnout hvězdu"; -$a->strings["to"] = "pro"; -$a->strings["Wall-to-Wall"] = "Zeď-na-Zeď"; -$a->strings["via Wall-To-Wall:"] = "přes Zeď-na-Zeď "; -$a->strings["Delete Selected Items"] = "Smazat vybrané položky"; -$a->strings["View status"] = "Zobrazit stav"; -$a->strings["View profile"] = "Zobrazit profil"; -$a->strings["View photos"] = "Zobrazit fotografie"; -$a->strings["View recent"] = "Zobrazit poslední"; +$a->strings["Archives"] = "Archív"; +$a->strings["An invitation is required."] = "Pozvánka je vyžadována."; +$a->strings["Invitation could not be verified."] = "Pozvánka nemohla být ověřena."; +$a->strings["Invalid OpenID url"] = "Neplatný odkaz OpenID"; +$a->strings["Please enter the required information."] = "Zadejte prosím požadované informace."; +$a->strings["Please use a shorter name."] = "Použijte prosím kratší jméno."; +$a->strings["Name too short."] = "Jméno je příliš krátké."; +$a->strings["That doesn't appear to be your full (First Last) name."] = "Nezdá se, že by to bylo vaše celé jméno (křestní jméno a příjmení)."; +$a->strings["Your email domain is not among those allowed on this site."] = "Váš e-mailová doména není na tomto serveru mezi povolenými."; +$a->strings["Not a valid email address."] = "Neplatná e-mailová adresa."; +$a->strings["Cannot use that email."] = "Tento e-mail nelze použít."; +$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and must also begin with a letter."] = "Vaše \"přezdívka\" může obsahovat pouze \"a-z\", \"0-9\", \"-\", a \"_\", a musí začínat písmenem."; +$a->strings["Nickname is already registered. Please choose another."] = "Přezdívka je již registrována. Prosím vyberte jinou."; +$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "Tato přezdívka již zde byla použita a nemůže být využita znovu. Prosím vyberete si jinou."; +$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "Závažná chyba: Generování bezpečnostních klíčů se nezdařilo."; +$a->strings["An error occurred during registration. Please try again."] = "Došlo k chybě při registraci. Zkuste to prosím znovu."; +$a->strings["An error occurred creating your default profile. Please try again."] = "Došlo k chybě při vytváření Vašeho výchozího profilu. Zkuste to prosím znovu."; +$a->strings["Welcome "] = "Vítejte "; +$a->strings["Please upload a profile photo."] = "Prosím nahrejte profilovou fotografii"; +$a->strings["Welcome back "] = "Vítejte zpět "; +$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."] = "Formulářový bezpečnostní token nebyl správný. To pravděpodobně nastalo kvůli tom, že formulář byl otevřen příliš dlouho (>3 hodiny) před jeho odesláním."; +$a->strings["stopped following"] = "následování zastaveno"; +$a->strings["Poke"] = "Šťouchnout"; +$a->strings["View Status"] = "Zobrazit Status"; +$a->strings["View Profile"] = "Zobrazit Profil"; +$a->strings["View Photos"] = "Zobrazit Fotky"; +$a->strings["Network Posts"] = "Zobrazit Příspěvky sítě"; +$a->strings["Edit Contact"] = "Editovat Kontakty"; $a->strings["Send PM"] = "Poslat soukromou zprávu"; +$a->strings["%1\$s poked %2\$s"] = "%1\$s šťouchnul %2\$s"; +$a->strings["post/item"] = "příspěvek/položka"; +$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "uživatel %1\$s označil %2\$s's %3\$s jako oblíbeného"; +$a->strings["Categories:"] = ""; +$a->strings["Filed under:"] = ""; +$a->strings["remove"] = "odstranit"; +$a->strings["Delete Selected Items"] = "Smazat vybrané položky"; $a->strings["%s likes this."] = "%s se to líbí."; $a->strings["%s doesn't like this."] = "%s se to nelíbí."; $a->strings["%2\$d people like this."] = "%2\$d lidem se to líbí."; @@ -1018,26 +1976,44 @@ $a->strings[", and %d other people"] = ", a %d dalších lidí"; $a->strings["%s like this."] = "%s se to líbí."; $a->strings["%s don't like this."] = "%s se to nelíbí."; $a->strings["Visible to everybody"] = "Viditelné pro všechny"; -$a->strings["Please enter a YouTube link:"] = "Prosím zadejte odkaz na YouTube:"; -$a->strings["Please enter a video(.ogg) link/URL:"] = "Prosím, zadejte odkaz na video (ogg.):"; -$a->strings["Please enter an audio(.ogg) link/URL:"] = "Prosím, zadejte odkaz na audio (ogg.):"; +$a->strings["Please enter a video link/URL:"] = "Prosím zadejte URL adresu videa:"; +$a->strings["Please enter an audio link/URL:"] = "Prosím zadejte URL adresu zvukového záznamu:"; +$a->strings["Tag term:"] = "Štítek:"; $a->strings["Where are you right now?"] = "Kde právě jste?"; -$a->strings["Enter a title for this item"] = "Zadejte titulek pro tuto položku"; -$a->strings["Set title"] = "Nastavit titulek"; +$a->strings["upload photo"] = "nahrát fotky"; +$a->strings["attach file"] = "přidat soubor"; +$a->strings["web link"] = "webový odkaz"; +$a->strings["Insert video link"] = "Zadejte odkaz na video"; +$a->strings["video link"] = "odkaz na video"; +$a->strings["Insert audio link"] = "Zadejte odkaz na zvukový záznam"; +$a->strings["audio link"] = "odkaz na audio"; +$a->strings["set location"] = "nastavit místo"; +$a->strings["clear location"] = "vymazat místo"; +$a->strings["permissions"] = "oprávnění"; +$a->strings["Click here to upgrade."] = "Klikněte zde pro aktualizaci."; +$a->strings["This action exceeds the limits set by your subscription plan."] = "Tato akce překročí limit nastavené Vaším předplatným."; +$a->strings["This action is not available under your subscription plan."] = "Tato akce není v rámci Vašeho předplatného dostupná."; $a->strings["Delete this item?"] = "Odstranit tuto položku?"; +$a->strings["show fewer"] = "zobrazit méně"; +$a->strings["Update %s failed. See error logs."] = "Aktualizace %s selhala. Zkontrolujte protokol chyb."; +$a->strings["Update Error at %s"] = "Chyba aktualizace na %s"; $a->strings["Create a New Account"] = "Vytvořit nový účet"; $a->strings["Nickname or Email address: "] = "Přezdívka nebo e-mailová adresa:"; $a->strings["Password: "] = "Heslo: "; -$a->strings["Nickname/Email/OpenID: "] = "Přezdívka/E-mail/OpenID: "; -$a->strings["Password (if not OpenID): "] = "Heslo (pokud se nepoužívá OpenID):"; +$a->strings["Or login using OpenID: "] = "Nebo přihlášení pomocí OpenID: "; $a->strings["Forgot your password?"] = "Zapomněli jste své heslo?"; -$a->strings["Connect"] = "Spojit"; -$a->strings[", "] = ", "; -$a->strings["Status:"] = "Status:"; +$a->strings["Requested account is not available."] = "Požadovaný účet není dostupný."; +$a->strings["Edit profile"] = "Upravit profil"; +$a->strings["Message"] = "Zpráva"; $a->strings["g A l F d"] = "g A l F d"; +$a->strings["F d"] = "d. F"; +$a->strings["[today]"] = "[Dnes]"; $a->strings["Birthday Reminders"] = "Připomínka narozenin"; $a->strings["Birthdays this week:"] = "Narozeniny tento týden:"; -$a->strings["(Adjusted for local time)"] = "(Upraveno pro místní čas)"; -$a->strings["[today]"] = "[Dnes]"; -$a->strings["Not Found"] = "Nenalezen"; -$a->strings["Page not found."] = "Stránka nenalezena"; +$a->strings["[No description]"] = "[Žádný popis]"; +$a->strings["Event Reminders"] = "Připomenutí událostí"; +$a->strings["Events this week:"] = "Události tohoto týdne:"; +$a->strings["Status Messages and Posts"] = "Statusové zprávy a příspěvky "; +$a->strings["Profile Details"] = "Detaily profilu"; +$a->strings["Events and Calendar"] = "Události a kalendář"; +$a->strings["Only You Can See This"] = "Toto můžete vidět jen Vy"; diff --git a/view/de/messages.po b/view/de/messages.po index c21bde3951..69b0744cd1 100644 --- a/view/de/messages.po +++ b/view/de/messages.po @@ -13,6 +13,7 @@ # , 2012. # , 2012. # Martin Schmitt , 2012. +# , 2012. # Oliver , 2012. # , 2011-2012. # , 2011-2012. @@ -21,8 +22,8 @@ msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: http://bugs.friendica.com/\n" -"POT-Creation-Date: 2012-09-09 10:00-0700\n" -"PO-Revision-Date: 2012-09-11 07:17+0000\n" +"POT-Creation-Date: 2012-09-25 10:00-0700\n" +"PO-Revision-Date: 2012-09-27 04:19+0000\n" "Last-Translator: bavatar \n" "Language-Team: German (http://www.transifex.com/projects/p/friendica/language/de/)\n" "MIME-Version: 1.0\n" @@ -61,8 +62,8 @@ msgstr "Konnte den Kontakt nicht aktualisieren." #: ../../mod/group.php:19 ../../mod/viewcontacts.php:22 #: ../../mod/register.php:38 ../../mod/regmod.php:116 ../../mod/item.php:126 #: ../../mod/item.php:142 ../../mod/mood.php:114 -#: ../../mod/profile_photo.php:19 ../../mod/profile_photo.php:142 -#: ../../mod/profile_photo.php:153 ../../mod/profile_photo.php:166 +#: ../../mod/profile_photo.php:19 ../../mod/profile_photo.php:169 +#: ../../mod/profile_photo.php:180 ../../mod/profile_photo.php:193 #: ../../mod/message.php:38 ../../mod/message.php:168 #: ../../mod/allfriends.php:9 ../../mod/nogroup.php:25 #: ../../mod/wall_upload.php:64 ../../mod/follow.php:9 @@ -70,9 +71,10 @@ msgstr "Konnte den Kontakt nicht aktualisieren." #: ../../mod/profiles.php:413 ../../mod/delegate.php:6 #: ../../mod/suggest.php:28 ../../mod/invite.php:13 ../../mod/invite.php:81 #: ../../mod/dfrn_confirm.php:53 ../../addon/facebook/facebook.php:510 -#: ../../addon/facebook/facebook.php:516 -#: ../../addon/dav/friendica/layout.fnk.php:354 ../../include/items.php:3834 -#: ../../index.php:315 +#: ../../addon/facebook/facebook.php:516 ../../addon/fbpost/fbpost.php:159 +#: ../../addon/fbpost/fbpost.php:165 +#: ../../addon/dav/friendica/layout.fnk.php:354 ../../include/items.php:3908 +#: ../../index.php:317 msgid "Permission denied." msgstr "Zugriff verweigert." @@ -102,7 +104,7 @@ msgid "Return to contact editor" msgstr "Zurück zum Kontakteditor" #: ../../mod/crepair.php:148 ../../mod/settings.php:545 -#: ../../mod/settings.php:571 ../../mod/admin.php:690 ../../mod/admin.php:699 +#: ../../mod/settings.php:571 ../../mod/admin.php:692 ../../mod/admin.php:702 msgid "Name" msgstr "Name" @@ -139,30 +141,30 @@ msgid "New photo from this URL" msgstr "Neues Foto von dieser URL" #: ../../mod/crepair.php:166 ../../mod/fsuggest.php:107 -#: ../../mod/events.php:439 ../../mod/photos.php:1005 +#: ../../mod/events.php:455 ../../mod/photos.php:1005 #: ../../mod/photos.php:1081 ../../mod/photos.php:1338 #: ../../mod/photos.php:1378 ../../mod/photos.php:1419 #: ../../mod/photos.php:1451 ../../mod/install.php:246 #: ../../mod/install.php:284 ../../mod/localtime.php:45 ../../mod/poke.php:199 -#: ../../mod/content.php:691 ../../mod/contacts.php:348 +#: ../../mod/content.php:693 ../../mod/contacts.php:348 #: ../../mod/settings.php:543 ../../mod/settings.php:697 #: ../../mod/settings.php:769 ../../mod/settings.php:976 #: ../../mod/group.php:85 ../../mod/mood.php:137 ../../mod/message.php:294 -#: ../../mod/message.php:480 ../../mod/admin.php:443 ../../mod/admin.php:687 -#: ../../mod/admin.php:823 ../../mod/admin.php:1022 ../../mod/admin.php:1109 +#: ../../mod/message.php:480 ../../mod/admin.php:443 ../../mod/admin.php:689 +#: ../../mod/admin.php:826 ../../mod/admin.php:1025 ../../mod/admin.php:1112 #: ../../mod/profiles.php:583 ../../mod/invite.php:119 #: ../../addon/fromgplus/fromgplus.php:40 #: ../../addon/facebook/facebook.php:619 #: ../../addon/snautofollow/snautofollow.php:64 ../../addon/bg/bg.php:90 -#: ../../addon/yourls/yourls.php:76 ../../addon/ljpost/ljpost.php:93 -#: ../../addon/nsfw/nsfw.php:57 ../../addon/page/page.php:210 -#: ../../addon/planets/planets.php:158 +#: ../../addon/fbpost/fbpost.php:226 ../../addon/yourls/yourls.php:76 +#: ../../addon/ljpost/ljpost.php:93 ../../addon/nsfw/nsfw.php:88 +#: ../../addon/page/page.php:210 ../../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/startpage/startpage.php:92 #: ../../addon/geonames/geonames.php:187 ../../addon/oembed.old/oembed.php:41 #: ../../addon/forumlist/forumlist.php:169 -#: ../../addon/impressum/impressum.php:82 +#: ../../addon/impressum/impressum.php:83 #: ../../addon/notimeline/notimeline.php:64 ../../addon/blockem/blockem.php:57 #: ../../addon/qcomment/qcomment.php:61 #: ../../addon/openstreetmap/openstreetmap.php:70 @@ -172,7 +174,7 @@ msgstr "Neues Foto von dieser URL" #: ../../addon/mathjax/mathjax.php:42 ../../addon/editplain/editplain.php:84 #: ../../addon/blackout/blackout.php:98 ../../addon/gravatar/gravatar.php:95 #: ../../addon/pageheader/pageheader.php:55 ../../addon/ijpost/ijpost.php:93 -#: ../../addon/jappixmini/jappixmini.php:302 +#: ../../addon/jappixmini/jappixmini.php:307 #: ../../addon/statusnet/statusnet.php:278 #: ../../addon/statusnet/statusnet.php:292 #: ../../addon/statusnet/statusnet.php:318 @@ -183,13 +185,13 @@ msgstr "Neues Foto von dieser URL" #: ../../addon/wppost/wppost.php:110 ../../addon/showmore/showmore.php:48 #: ../../addon/piwik/piwik.php:89 ../../addon/twitter/twitter.php:180 #: ../../addon/twitter/twitter.php:209 ../../addon/twitter/twitter.php:394 -#: ../../addon/irc/irc.php:55 ../../addon/blogger/blogger.php:102 -#: ../../addon/posterous/posterous.php:103 +#: ../../addon/irc/irc.php:55 ../../addon/fromapp/fromapp.php:77 +#: ../../addon/blogger/blogger.php:102 ../../addon/posterous/posterous.php:103 #: ../../view/theme/cleanzero/config.php:80 #: ../../view/theme/diabook/theme.php:757 #: ../../view/theme/diabook/config.php:190 -#: ../../view/theme/quattro/config.php:52 ../../view/theme/dispy/config.php:70 -#: ../../include/conversation.php:591 +#: ../../view/theme/quattro/config.php:53 ../../view/theme/dispy/config.php:70 +#: ../../include/conversation.php:607 ../../object/Item.php:559 msgid "Submit" msgstr "Senden" @@ -202,11 +204,11 @@ msgstr "Hilfe:" msgid "Help" msgstr "Hilfe" -#: ../../mod/help.php:38 ../../index.php:224 +#: ../../mod/help.php:38 ../../index.php:226 msgid "Not Found" msgstr "Nicht gefunden" -#: ../../mod/help.php:41 ../../index.php:227 +#: ../../mod/help.php:41 ../../index.php:229 msgid "Page not found." msgstr "Seite nicht gefunden." @@ -236,90 +238,91 @@ msgstr "Schlage %s einen Kontakt vor" msgid "Event title and start time are required." msgstr "Der Veranstaltungstitel und die Anfangszeit müssen angegeben werden." -#: ../../mod/events.php:263 +#: ../../mod/events.php:279 msgid "l, F j" msgstr "l, F j" -#: ../../mod/events.php:285 +#: ../../mod/events.php:301 msgid "Edit event" msgstr "Veranstaltung bearbeiten" -#: ../../mod/events.php:307 ../../include/text.php:1147 +#: ../../mod/events.php:323 ../../include/text.php:1187 msgid "link to source" msgstr "Link zum Originalbeitrag" -#: ../../mod/events.php:331 ../../view/theme/diabook/theme.php:131 -#: ../../include/nav.php:52 ../../boot.php:1683 +#: ../../mod/events.php:347 ../../view/theme/diabook/theme.php:131 +#: ../../include/nav.php:52 ../../boot.php:1689 msgid "Events" msgstr "Veranstaltungen" -#: ../../mod/events.php:332 +#: ../../mod/events.php:348 msgid "Create New Event" msgstr "Neue Veranstaltung erstellen" -#: ../../mod/events.php:333 ../../addon/dav/friendica/layout.fnk.php:263 +#: ../../mod/events.php:349 ../../addon/dav/friendica/layout.fnk.php:263 msgid "Previous" msgstr "Vorherige" -#: ../../mod/events.php:334 ../../mod/install.php:205 +#: ../../mod/events.php:350 ../../mod/install.php:205 #: ../../addon/dav/friendica/layout.fnk.php:266 msgid "Next" msgstr "Nächste" -#: ../../mod/events.php:407 +#: ../../mod/events.php:423 msgid "hour:minute" msgstr "Stunde:Minute" -#: ../../mod/events.php:417 +#: ../../mod/events.php:433 msgid "Event details" msgstr "Veranstaltungsdetails" -#: ../../mod/events.php:418 +#: ../../mod/events.php:434 #, php-format msgid "Format is %s %s. Starting date and Title are required." msgstr "Das Format ist %s %s. Beginnzeitpunkt und Titel werden benötigt." -#: ../../mod/events.php:420 +#: ../../mod/events.php:436 msgid "Event Starts:" msgstr "Veranstaltungsbeginn:" -#: ../../mod/events.php:420 ../../mod/events.php:434 +#: ../../mod/events.php:436 ../../mod/events.php:450 msgid "Required" msgstr "Benötigt" -#: ../../mod/events.php:423 +#: ../../mod/events.php:439 msgid "Finish date/time is not known or not relevant" msgstr "Enddatum/-zeit ist nicht bekannt oder nicht relevant" -#: ../../mod/events.php:425 +#: ../../mod/events.php:441 msgid "Event Finishes:" msgstr "Veranstaltungsende:" -#: ../../mod/events.php:428 +#: ../../mod/events.php:444 msgid "Adjust for viewer timezone" msgstr "An Zeitzone des Betrachters anpassen" -#: ../../mod/events.php:430 +#: ../../mod/events.php:446 msgid "Description:" msgstr "Beschreibung" -#: ../../mod/events.php:432 ../../mod/directory.php:134 +#: ../../mod/events.php:448 ../../mod/directory.php:134 #: ../../include/event.php:40 ../../include/bb2diaspora.php:412 #: ../../boot.php:1226 msgid "Location:" msgstr "Ort:" -#: ../../mod/events.php:434 +#: ../../mod/events.php:450 msgid "Title:" msgstr "Titel:" -#: ../../mod/events.php:436 +#: ../../mod/events.php:452 msgid "Share this event" msgstr "Veranstaltung teilen" -#: ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 +#: ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 ../../mod/editpost.php:136 #: ../../mod/dfrn_request.php:847 ../../mod/settings.php:544 #: ../../mod/settings.php:570 ../../addon/js_upload/js_upload.php:45 +#: ../../include/conversation.php:1307 msgid "Cancel" msgstr "Abbrechen" @@ -387,7 +390,7 @@ msgstr "Ja" msgid "No" msgstr "Nein" -#: ../../mod/photos.php:46 ../../boot.php:1676 +#: ../../mod/photos.php:46 ../../boot.php:1682 msgid "Photo Albums" msgstr "Fotoalben" @@ -412,13 +415,13 @@ msgid "Contact information unavailable" msgstr "Kontaktinformationen nicht verfügbar" #: ../../mod/photos.php:149 ../../mod/photos.php:653 ../../mod/photos.php:1073 -#: ../../mod/photos.php:1088 ../../mod/profile_photo.php:60 -#: ../../mod/profile_photo.php:67 ../../mod/profile_photo.php:74 -#: ../../mod/profile_photo.php:177 ../../mod/profile_photo.php:261 -#: ../../mod/profile_photo.php:270 +#: ../../mod/photos.php:1088 ../../mod/profile_photo.php:74 +#: ../../mod/profile_photo.php:81 ../../mod/profile_photo.php:88 +#: ../../mod/profile_photo.php:204 ../../mod/profile_photo.php:296 +#: ../../mod/profile_photo.php:305 #: ../../addon/communityhome/communityhome.php:111 -#: ../../view/theme/diabook/theme.php:599 ../../include/user.php:318 -#: ../../include/user.php:325 ../../include/user.php:332 +#: ../../view/theme/diabook/theme.php:599 ../../include/user.php:324 +#: ../../include/user.php:331 ../../include/user.php:338 msgid "Profile Photos" msgstr "Profilbilder" @@ -440,9 +443,9 @@ msgstr "wurde getaggt in einem" #: ../../mod/photos.php:584 ../../mod/like.php:145 ../../mod/tagger.php:62 #: ../../addon/communityhome/communityhome.php:163 -#: ../../view/theme/diabook/theme.php:570 ../../include/text.php:1399 +#: ../../view/theme/diabook/theme.php:570 ../../include/text.php:1439 #: ../../include/diaspora.php:1824 ../../include/conversation.php:125 -#: ../../include/conversation.php:255 +#: ../../include/conversation.php:253 msgid "photo" msgstr "Foto" @@ -458,12 +461,12 @@ msgstr "Die Bildgröße übersteigt das Limit von " msgid "Image file is empty." msgstr "Bilddatei ist leer." -#: ../../mod/photos.php:729 ../../mod/profile_photo.php:126 +#: ../../mod/photos.php:729 ../../mod/profile_photo.php:153 #: ../../mod/wall_upload.php:110 msgid "Unable to process image." msgstr "Konnte das Bild nicht bearbeiten." -#: ../../mod/photos.php:756 ../../mod/profile_photo.php:266 +#: ../../mod/photos.php:756 ../../mod/profile_photo.php:301 #: ../../mod/wall_upload.php:136 msgid "Image upload failed." msgstr "Hochladen des Bildes gescheitert." @@ -548,8 +551,8 @@ msgstr "Foto bearbeiten" msgid "Use as profile photo" msgstr "Als Profilbild verwenden" -#: ../../mod/photos.php:1224 ../../mod/content.php:601 -#: ../../include/conversation.php:428 +#: ../../mod/photos.php:1224 ../../mod/content.php:603 +#: ../../include/conversation.php:436 ../../object/Item.php:103 msgid "Private Message" msgstr "Private Nachricht" @@ -590,50 +593,53 @@ msgid "" "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" msgstr "Beispiel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" -#: ../../mod/photos.php:1356 ../../mod/content.php:665 -#: ../../include/conversation.php:565 +#: ../../mod/photos.php:1356 ../../mod/content.php:667 +#: ../../include/conversation.php:581 ../../object/Item.php:195 msgid "I like this (toggle)" msgstr "Ich mag das (toggle)" -#: ../../mod/photos.php:1357 ../../mod/content.php:666 -#: ../../include/conversation.php:566 +#: ../../mod/photos.php:1357 ../../mod/content.php:668 +#: ../../include/conversation.php:582 ../../object/Item.php:196 msgid "I don't like this (toggle)" msgstr "Ich mag das nicht (toggle)" -#: ../../mod/photos.php:1358 ../../include/conversation.php:1195 +#: ../../mod/photos.php:1358 ../../include/conversation.php:1268 msgid "Share" msgstr "Teilen" #: ../../mod/photos.php:1359 ../../mod/editpost.php:112 -#: ../../mod/content.php:482 ../../mod/content.php:843 +#: ../../mod/content.php:482 ../../mod/content.php:845 #: ../../mod/wallmessage.php:152 ../../mod/message.php:293 -#: ../../mod/message.php:481 ../../include/conversation.php:659 -#: ../../include/conversation.php:891 ../../include/conversation.php:1214 +#: ../../mod/message.php:481 ../../include/conversation.php:686 +#: ../../include/conversation.php:944 ../../include/conversation.php:1287 +#: ../../object/Item.php:257 msgid "Please wait" msgstr "Bitte warten" #: ../../mod/photos.php:1375 ../../mod/photos.php:1416 -#: ../../mod/photos.php:1448 ../../mod/content.php:688 -#: ../../include/conversation.php:588 +#: ../../mod/photos.php:1448 ../../mod/content.php:690 +#: ../../include/conversation.php:604 ../../object/Item.php:556 msgid "This is you" msgstr "Das bist du" #: ../../mod/photos.php:1377 ../../mod/photos.php:1418 -#: ../../mod/photos.php:1450 ../../mod/content.php:690 -#: ../../include/conversation.php:590 ../../boot.php:574 +#: ../../mod/photos.php:1450 ../../mod/content.php:692 +#: ../../include/conversation.php:606 ../../boot.php:574 +#: ../../object/Item.php:558 msgid "Comment" msgstr "Kommentar" #: ../../mod/photos.php:1379 ../../mod/editpost.php:133 -#: ../../mod/content.php:700 ../../include/conversation.php:600 -#: ../../include/conversation.php:1232 +#: ../../mod/content.php:702 ../../include/conversation.php:616 +#: ../../include/conversation.php:1305 ../../object/Item.php:568 msgid "Preview" msgstr "Vorschau" #: ../../mod/photos.php:1479 ../../mod/content.php:439 -#: ../../mod/content.php:721 ../../mod/settings.php:606 -#: ../../mod/settings.php:695 ../../mod/group.php:168 ../../mod/admin.php:694 -#: ../../include/conversation.php:440 ../../include/conversation.php:847 +#: ../../mod/content.php:723 ../../mod/settings.php:606 +#: ../../mod/settings.php:695 ../../mod/group.php:168 ../../mod/admin.php:696 +#: ../../include/conversation.php:448 ../../include/conversation.php:889 +#: ../../object/Item.php:116 msgid "Delete" msgstr "Löschen" @@ -699,28 +705,29 @@ msgstr "Beitrag nicht gefunden" msgid "Edit post" msgstr "Beitrag bearbeiten" -#: ../../mod/editpost.php:88 ../../include/conversation.php:1181 +#: ../../mod/editpost.php:88 ../../include/conversation.php:1254 msgid "Post to Email" msgstr "An E-Mail senden" -#: ../../mod/editpost.php:103 ../../mod/content.php:708 -#: ../../mod/settings.php:605 ../../include/conversation.php:433 +#: ../../mod/editpost.php:103 ../../mod/content.php:710 +#: ../../mod/settings.php:605 ../../include/conversation.php:441 +#: ../../object/Item.php:107 msgid "Edit" msgstr "Bearbeiten" #: ../../mod/editpost.php:104 ../../mod/wallmessage.php:150 #: ../../mod/message.php:291 ../../mod/message.php:478 -#: ../../include/conversation.php:1196 +#: ../../include/conversation.php:1269 msgid "Upload photo" msgstr "Foto hochladen" -#: ../../mod/editpost.php:105 ../../include/conversation.php:1198 +#: ../../mod/editpost.php:105 ../../include/conversation.php:1271 msgid "Attach file" msgstr "Datei anhängen" #: ../../mod/editpost.php:106 ../../mod/wallmessage.php:151 #: ../../mod/message.php:292 ../../mod/message.php:479 -#: ../../include/conversation.php:1200 +#: ../../include/conversation.php:1273 msgid "Insert web link" msgstr "einen Link einfügen" @@ -736,35 +743,35 @@ msgstr "Vorbis [.ogg] Video einfügen" msgid "Insert Vorbis [.ogg] audio" msgstr "Vorbis [.ogg] Audio einfügen" -#: ../../mod/editpost.php:110 ../../include/conversation.php:1206 +#: ../../mod/editpost.php:110 ../../include/conversation.php:1279 msgid "Set your location" msgstr "Deinen Standort festlegen" -#: ../../mod/editpost.php:111 ../../include/conversation.php:1208 +#: ../../mod/editpost.php:111 ../../include/conversation.php:1281 msgid "Clear browser location" msgstr "Browser-Standort leeren" -#: ../../mod/editpost.php:113 ../../include/conversation.php:1215 +#: ../../mod/editpost.php:113 ../../include/conversation.php:1288 msgid "Permission settings" msgstr "Berechtigungseinstellungen" -#: ../../mod/editpost.php:121 ../../include/conversation.php:1224 +#: ../../mod/editpost.php:121 ../../include/conversation.php:1297 msgid "CC: email addresses" msgstr "Cc:-E-Mail-Addressen" -#: ../../mod/editpost.php:122 ../../include/conversation.php:1225 +#: ../../mod/editpost.php:122 ../../include/conversation.php:1298 msgid "Public post" msgstr "Öffentlicher Beitrag" -#: ../../mod/editpost.php:125 ../../include/conversation.php:1211 +#: ../../mod/editpost.php:125 ../../include/conversation.php:1284 msgid "Set title" msgstr "Titel setzen" -#: ../../mod/editpost.php:127 ../../include/conversation.php:1213 +#: ../../mod/editpost.php:127 ../../include/conversation.php:1286 msgid "Categories (comma-separated list)" msgstr "Kategorien (kommasepariert)" -#: ../../mod/editpost.php:128 ../../include/conversation.php:1227 +#: ../../mod/editpost.php:128 ../../include/conversation.php:1300 msgid "Example: bob@example.com, mary@example.com" msgstr "Z.B.: bob@example.com, mary@example.com" @@ -885,7 +892,7 @@ msgstr "Bitte bestätige deine Kontaktanfrage bei %s." msgid "Confirm" msgstr "Bestätigen" -#: ../../mod/dfrn_request.php:715 ../../include/items.php:3213 +#: ../../mod/dfrn_request.php:715 ../../include/items.php:3287 msgid "[Name Withheld]" msgstr "[Name unterdrückt]" @@ -1306,123 +1313,156 @@ msgstr "Gruppe ist leer" msgid "Group: " msgstr "Gruppe: " -#: ../../mod/content.php:438 ../../mod/content.php:720 -#: ../../include/conversation.php:439 ../../include/conversation.php:846 +#: ../../mod/content.php:438 ../../mod/content.php:722 +#: ../../include/conversation.php:447 ../../include/conversation.php:888 +#: ../../object/Item.php:115 msgid "Select" msgstr "Auswählen" -#: ../../mod/content.php:455 ../../mod/content.php:813 -#: ../../mod/content.php:814 ../../include/conversation.php:627 -#: ../../include/conversation.php:628 ../../include/conversation.php:863 +#: ../../mod/content.php:455 ../../mod/content.php:815 +#: ../../mod/content.php:816 ../../include/conversation.php:654 +#: ../../include/conversation.php:655 ../../include/conversation.php:907 +#: ../../object/Item.php:226 ../../object/Item.php:227 #, php-format msgid "View %s's profile @ %s" msgstr "Das Profil von %s auf %s betrachten." -#: ../../mod/content.php:465 ../../mod/content.php:825 -#: ../../include/conversation.php:641 ../../include/conversation.php:874 +#: ../../mod/content.php:465 ../../mod/content.php:827 +#: ../../include/conversation.php:668 ../../include/conversation.php:927 +#: ../../object/Item.php:239 #, php-format msgid "%s from %s" msgstr "%s von %s" -#: ../../mod/content.php:480 ../../include/conversation.php:889 +#: ../../mod/content.php:480 ../../include/conversation.php:942 msgid "View in context" msgstr "Im Zusammenhang betrachten" -#: ../../mod/content.php:586 ../../include/conversation.php:668 +#: ../../mod/content.php:586 ../../include/conversation.php:695 +#: ../../object/Item.php:276 #, php-format msgid "%d comment" msgid_plural "%d comments" msgstr[0] "%d Kommentar" msgstr[1] "%d Kommentare" -#: ../../mod/content.php:587 ../../addon/page/page.php:76 +#: ../../mod/content.php:588 ../../include/text.php:1443 +#: ../../include/conversation.php:697 ../../object/Item.php:278 +#: ../../object/Item.php:291 +msgid "comment" +msgid_plural "comments" +msgstr[0] "" +msgstr[1] "Kommentar" + +#: ../../mod/content.php:589 ../../addon/page/page.php:76 #: ../../addon/page/page.php:110 ../../addon/showmore/showmore.php:119 -#: ../../include/contact_widgets.php:195 ../../include/conversation.php:669 -#: ../../boot.php:575 +#: ../../include/contact_widgets.php:195 ../../include/conversation.php:698 +#: ../../boot.php:575 ../../object/Item.php:279 msgid "show more" msgstr "mehr anzeigen" -#: ../../mod/content.php:665 ../../include/conversation.php:565 +#: ../../mod/content.php:667 ../../include/conversation.php:581 +#: ../../object/Item.php:195 msgid "like" msgstr "mag ich" -#: ../../mod/content.php:666 ../../include/conversation.php:566 +#: ../../mod/content.php:668 ../../include/conversation.php:582 +#: ../../object/Item.php:196 msgid "dislike" msgstr "mag ich nicht" -#: ../../mod/content.php:668 ../../include/conversation.php:568 +#: ../../mod/content.php:670 ../../include/conversation.php:584 +#: ../../object/Item.php:198 msgid "Share this" msgstr "Weitersagen" -#: ../../mod/content.php:668 ../../include/conversation.php:568 +#: ../../mod/content.php:670 ../../include/conversation.php:584 +#: ../../object/Item.php:198 msgid "share" msgstr "Teilen" -#: ../../mod/content.php:692 ../../include/conversation.php:592 +#: ../../mod/content.php:694 ../../include/conversation.php:608 +#: ../../object/Item.php:560 msgid "Bold" msgstr "Fett" -#: ../../mod/content.php:693 ../../include/conversation.php:593 +#: ../../mod/content.php:695 ../../include/conversation.php:609 +#: ../../object/Item.php:561 msgid "Italic" msgstr "Kursiv" -#: ../../mod/content.php:694 ../../include/conversation.php:594 +#: ../../mod/content.php:696 ../../include/conversation.php:610 +#: ../../object/Item.php:562 msgid "Underline" msgstr "Unterstrichen" -#: ../../mod/content.php:695 ../../include/conversation.php:595 +#: ../../mod/content.php:697 ../../include/conversation.php:611 +#: ../../object/Item.php:563 msgid "Quote" msgstr "Zitat" -#: ../../mod/content.php:696 ../../include/conversation.php:596 +#: ../../mod/content.php:698 ../../include/conversation.php:612 +#: ../../object/Item.php:564 msgid "Code" msgstr "Code" -#: ../../mod/content.php:697 ../../include/conversation.php:597 +#: ../../mod/content.php:699 ../../include/conversation.php:613 +#: ../../object/Item.php:565 msgid "Image" msgstr "Bild" -#: ../../mod/content.php:698 ../../include/conversation.php:598 +#: ../../mod/content.php:700 ../../include/conversation.php:614 +#: ../../object/Item.php:566 msgid "Link" msgstr "Verweis" -#: ../../mod/content.php:699 ../../include/conversation.php:599 +#: ../../mod/content.php:701 ../../include/conversation.php:615 +#: ../../object/Item.php:567 msgid "Video" msgstr "Video" -#: ../../mod/content.php:733 ../../include/conversation.php:529 +#: ../../mod/content.php:735 ../../include/conversation.php:545 +#: ../../object/Item.php:179 msgid "add star" msgstr "markieren" -#: ../../mod/content.php:734 ../../include/conversation.php:530 +#: ../../mod/content.php:736 ../../include/conversation.php:546 +#: ../../object/Item.php:180 msgid "remove star" msgstr "Markierung entfernen" -#: ../../mod/content.php:735 ../../include/conversation.php:531 +#: ../../mod/content.php:737 ../../include/conversation.php:547 +#: ../../object/Item.php:181 msgid "toggle star status" msgstr "Markierung umschalten" -#: ../../mod/content.php:738 ../../include/conversation.php:534 +#: ../../mod/content.php:740 ../../include/conversation.php:550 +#: ../../object/Item.php:184 msgid "starred" msgstr "markiert" -#: ../../mod/content.php:739 ../../include/conversation.php:535 +#: ../../mod/content.php:741 ../../include/conversation.php:551 +#: ../../object/Item.php:185 msgid "add tag" msgstr "Tag hinzufügen" -#: ../../mod/content.php:743 ../../include/conversation.php:443 +#: ../../mod/content.php:745 ../../include/conversation.php:451 +#: ../../object/Item.php:119 msgid "save to folder" msgstr "In Ordner speichern" -#: ../../mod/content.php:815 ../../include/conversation.php:629 +#: ../../mod/content.php:817 ../../include/conversation.php:656 +#: ../../object/Item.php:228 msgid "to" msgstr "zu" -#: ../../mod/content.php:816 ../../include/conversation.php:630 +#: ../../mod/content.php:818 ../../include/conversation.php:657 +#: ../../object/Item.php:229 msgid "Wall-to-Wall" msgstr "Wall-to-Wall" -#: ../../mod/content.php:817 ../../include/conversation.php:631 +#: ../../mod/content.php:819 ../../include/conversation.php:658 +#: ../../object/Item.php:230 msgid "via Wall-To-Wall:" msgstr "via Wall-To-Wall:" @@ -1507,7 +1547,7 @@ msgid "if applicable" msgstr "falls anwendbar" #: ../../mod/notifications.php:157 ../../mod/notifications.php:204 -#: ../../mod/admin.php:692 +#: ../../mod/admin.php:694 msgid "Approve" msgstr "Genehmigen" @@ -1708,12 +1748,12 @@ msgid "View all contacts" msgstr "Alle Kontakte anzeigen" #: ../../mod/contacts.php:315 ../../mod/contacts.php:374 -#: ../../mod/admin.php:696 +#: ../../mod/admin.php:698 msgid "Unblock" msgstr "Entsperren" #: ../../mod/contacts.php:315 ../../mod/contacts.php:374 -#: ../../mod/admin.php:695 +#: ../../mod/admin.php:697 msgid "Block" msgstr "Sperren" @@ -1810,7 +1850,7 @@ msgstr "letzte Aktualisierung:" msgid "Update public posts" msgstr "Öffentliche Beiträge aktualisieren" -#: ../../mod/contacts.php:371 ../../mod/admin.php:1167 +#: ../../mod/contacts.php:371 ../../mod/admin.php:1170 msgid "Update now" msgstr "Jetzt aktualisieren" @@ -1938,9 +1978,9 @@ msgstr "Anfrage zum Zurücksetzen des Passworts auf %s erhalten" #: ../../mod/register.php:90 ../../mod/register.php:144 #: ../../mod/regmod.php:54 ../../mod/dfrn_confirm.php:752 #: ../../addon/facebook/facebook.php:702 -#: ../../addon/facebook/facebook.php:1200 +#: ../../addon/facebook/facebook.php:1200 ../../addon/fbpost/fbpost.php:661 #: ../../addon/public_server/public_server.php:62 -#: ../../addon/testdrive/testdrive.php:67 ../../include/items.php:3222 +#: ../../addon/testdrive/testdrive.php:67 ../../include/items.php:3296 #: ../../boot.php:788 msgid "Administrator" msgstr "Administrator" @@ -2024,7 +2064,7 @@ msgid "Remove account" msgstr "Konto löschen" #: ../../mod/settings.php:69 ../../mod/newmember.php:22 -#: ../../mod/admin.php:782 ../../mod/admin.php:987 +#: ../../mod/admin.php:785 ../../mod/admin.php:990 #: ../../addon/dav/friendica/layout.fnk.php:225 #: ../../addon/mathjax/mathjax.php:36 ../../view/theme/diabook/theme.php:643 #: ../../view/theme/diabook/theme.php:773 ../../include/nav.php:137 @@ -2088,7 +2128,7 @@ msgid "Private forum has no privacy permissions and no default privacy group." msgstr "Für das private Forum sind keine Zugriffsrechte eingestellt, und es gibt keine voreingestellte Gruppe für neue Kontakte." #: ../../mod/settings.php:471 ../../addon/facebook/facebook.php:495 -#: ../../addon/impressum/impressum.php:77 +#: ../../addon/fbpost/fbpost.php:144 ../../addon/impressum/impressum.php:78 #: ../../addon/openstreetmap/openstreetmap.php:80 #: ../../addon/mathjax/mathjax.php:66 ../../addon/piwik/piwik.php:105 #: ../../addon/twitter/twitter.php:389 @@ -2355,7 +2395,7 @@ msgstr "Dürfen dir Unbekannte private Nachrichten schicken?" msgid "Profile is not published." msgstr "Profil ist nicht veröffentlicht." -#: ../../mod/settings.php:944 ../../mod/profile_photo.php:214 +#: ../../mod/settings.php:944 ../../mod/profile_photo.php:248 msgid "or" msgstr "oder" @@ -2629,13 +2669,14 @@ 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:1690 +#: ../../mod/notes.php:44 ../../boot.php:1696 msgid "Personal Notes" msgstr "Persönliche Notizen" #: ../../mod/notes.php:63 ../../mod/filer.php:30 #: ../../addon/facebook/facebook.php:770 #: ../../addon/privacy_image_cache/privacy_image_cache.php:263 +#: ../../addon/fbpost/fbpost.php:267 #: ../../addon/dav/friendica/layout.fnk.php:441 #: ../../addon/dav/friendica/layout.fnk.php:488 ../../include/text.php:681 msgid "Save" @@ -2672,7 +2713,7 @@ msgstr "Kein Empfänger." #: ../../mod/wallmessage.php:123 ../../mod/wallmessage.php:131 #: ../../mod/message.php:242 ../../mod/message.php:250 -#: ../../include/conversation.php:1132 ../../include/conversation.php:1149 +#: ../../include/conversation.php:1205 ../../include/conversation.php:1222 msgid "Please enter a link URL:" msgstr "Bitte gib die URL des Links ein:" @@ -2755,11 +2796,11 @@ msgstr "Überprüfe die restlichen Einstellungen, insbesondere die Einstellungen #: ../../mod/newmember.php:32 ../../mod/profperm.php:103 #: ../../view/theme/diabook/theme.php:128 ../../include/profile_advanced.php:7 #: ../../include/profile_advanced.php:84 ../../include/nav.php:50 -#: ../../boot.php:1666 +#: ../../boot.php:1672 msgid "Profile" msgstr "Profil" -#: ../../mod/newmember.php:36 ../../mod/profile_photo.php:211 +#: ../../mod/newmember.php:36 ../../mod/profile_photo.php:244 msgid "Upload Profile Photo" msgstr "Profilbild hochladen" @@ -2797,7 +2838,7 @@ msgid "Connecting" msgstr "Verbindungen knüpfen" #: ../../mod/newmember.php:49 ../../mod/newmember.php:51 -#: ../../addon/facebook/facebook.php:728 +#: ../../addon/facebook/facebook.php:728 ../../addon/fbpost/fbpost.php:239 #: ../../include/contact_selectors.php:81 msgid "Facebook" msgstr "Facebook" @@ -2924,7 +2965,7 @@ msgstr "Gruppe nicht gefunden." msgid "Group name changed." msgstr "Gruppenname geändert." -#: ../../mod/group.php:72 ../../mod/profperm.php:19 ../../index.php:314 +#: ../../mod/group.php:72 ../../mod/profperm.php:19 ../../index.php:316 msgid "Permission denied" msgstr "Zugriff verweigert" @@ -3033,38 +3074,38 @@ msgstr "Deine OpenID (optional): " msgid "Include your profile in member directory?" msgstr "Soll dein Profil im Nutzerverzeichnis angezeigt werden?" -#: ../../mod/register.php:253 +#: ../../mod/register.php:255 msgid "Membership on this site is by invitation only." msgstr "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung möglich." -#: ../../mod/register.php:254 +#: ../../mod/register.php:256 msgid "Your invitation ID: " msgstr "ID deiner Einladung: " -#: ../../mod/register.php:257 ../../mod/admin.php:444 +#: ../../mod/register.php:259 ../../mod/admin.php:444 msgid "Registration" msgstr "Registrierung" -#: ../../mod/register.php:265 +#: ../../mod/register.php:267 msgid "Your Full Name (e.g. Joe Smith): " msgstr "Vollständiger Name (z.B. Max Mustermann): " -#: ../../mod/register.php:266 +#: ../../mod/register.php:268 msgid "Your Email Address: " msgstr "Deine E-Mail-Adresse: " -#: ../../mod/register.php:267 +#: ../../mod/register.php:269 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:268 +#: ../../mod/register.php:270 msgid "Choose a nickname: " msgstr "Spitznamen wählen: " -#: ../../mod/register.php:271 ../../include/nav.php:81 ../../boot.php:887 +#: ../../mod/register.php:273 ../../include/nav.php:81 ../../boot.php:887 msgid "Register" msgstr "Registrieren" @@ -3073,32 +3114,32 @@ msgid "People Search" msgstr "Personensuche" #: ../../mod/like.php:145 ../../mod/like.php:298 ../../mod/tagger.php:62 -#: ../../addon/facebook/facebook.php:1594 +#: ../../addon/facebook/facebook.php:1598 #: ../../addon/communityhome/communityhome.php:158 #: ../../addon/communityhome/communityhome.php:167 #: ../../view/theme/diabook/theme.php:565 #: ../../view/theme/diabook/theme.php:574 ../../include/diaspora.php:1824 #: ../../include/conversation.php:120 ../../include/conversation.php:129 -#: ../../include/conversation.php:250 ../../include/conversation.php:259 +#: ../../include/conversation.php:248 ../../include/conversation.php:257 msgid "status" msgstr "Status" -#: ../../mod/like.php:162 ../../addon/facebook/facebook.php:1598 +#: ../../mod/like.php:162 ../../addon/facebook/facebook.php:1602 #: ../../addon/communityhome/communityhome.php:172 #: ../../view/theme/diabook/theme.php:579 ../../include/diaspora.php:1840 -#: ../../include/conversation.php:137 +#: ../../include/conversation.php:136 #, php-format msgid "%1$s likes %2$s's %3$s" msgstr "%1$s mag %2$ss %3$s" -#: ../../mod/like.php:164 ../../include/conversation.php:140 +#: ../../mod/like.php:164 ../../include/conversation.php:139 #, php-format 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:159 -#: ../../mod/admin.php:731 ../../mod/admin.php:930 ../../mod/display.php:29 -#: ../../mod/display.php:145 ../../include/items.php:3700 +#: ../../mod/admin.php:734 ../../mod/admin.php:933 ../../mod/display.php:29 +#: ../../mod/display.php:145 ../../include/items.php:3774 msgid "Item not found." msgstr "Beitrag nicht gefunden." @@ -3107,7 +3148,7 @@ msgid "Access denied." msgstr "Zugriff verweigert." #: ../../mod/fbrowser.php:25 ../../view/theme/diabook/theme.php:130 -#: ../../include/nav.php:51 ../../boot.php:1673 +#: ../../include/nav.php:51 ../../boot.php:1679 msgid "Photos" msgstr "Bilder" @@ -3169,7 +3210,7 @@ msgstr "Falls du diese Beiträge nicht erhalten möchtest, kontaktiere bitte den msgid "%s posted an update." msgstr "%s hat ein Update veröffentlicht." -#: ../../mod/mood.php:62 ../../include/conversation.php:228 +#: ../../mod/mood.php:62 ../../include/conversation.php:226 #, php-format msgid "%1$s is currently %2$s" msgstr "%1$s ist momentan %2$s" @@ -3182,61 +3223,65 @@ msgstr "Stimmung" msgid "Set your current mood and tell your friends" msgstr "Wähle deine aktuelle Stimmung und erzähle sie deinen Freunden" -#: ../../mod/profile_photo.php:30 +#: ../../mod/profile_photo.php:44 msgid "Image uploaded but image cropping failed." msgstr "Bilder hochgeladen, aber das Zuschneiden ist fehlgeschlagen." -#: ../../mod/profile_photo.php:63 ../../mod/profile_photo.php:70 -#: ../../mod/profile_photo.php:77 ../../mod/profile_photo.php:273 +#: ../../mod/profile_photo.php:77 ../../mod/profile_photo.php:84 +#: ../../mod/profile_photo.php:91 ../../mod/profile_photo.php:308 #, php-format msgid "Image size reduction [%s] failed." msgstr "Verkleinern der Bildgröße von [%s] ist gescheitert." -#: ../../mod/profile_photo.php:91 +#: ../../mod/profile_photo.php:118 msgid "" "Shift-reload the page or clear browser cache if the new photo does not " "display immediately." msgstr "Drücke Umschalt+Neu Laden oder leere den Browser-Cache, falls das neue Foto nicht gleich angezeigt wird." -#: ../../mod/profile_photo.php:101 +#: ../../mod/profile_photo.php:128 msgid "Unable to process image" msgstr "Bild konnte nicht verarbeitet werden" -#: ../../mod/profile_photo.php:117 ../../mod/wall_upload.php:88 +#: ../../mod/profile_photo.php:144 ../../mod/wall_upload.php:88 #, php-format msgid "Image exceeds size limit of %d" msgstr "Bildgröße überschreitet das Limit von %d" -#: ../../mod/profile_photo.php:210 +#: ../../mod/profile_photo.php:242 msgid "Upload File:" msgstr "Datei hochladen:" -#: ../../mod/profile_photo.php:212 +#: ../../mod/profile_photo.php:243 +msgid "Select a profile:" +msgstr "Profil auswählen" + +#: ../../mod/profile_photo.php:245 #: ../../addon/dav/friendica/layout.fnk.php:152 msgid "Upload" msgstr "Hochladen" -#: ../../mod/profile_photo.php:214 +#: ../../mod/profile_photo.php:248 msgid "skip this step" msgstr "diesen Schritt überspringen" -#: ../../mod/profile_photo.php:214 +#: ../../mod/profile_photo.php:248 msgid "select a photo from your photo albums" msgstr "wähle ein Foto von deinen Fotoalben" -#: ../../mod/profile_photo.php:227 +#: ../../mod/profile_photo.php:262 msgid "Crop Image" msgstr "Bild zurechtschneiden" -#: ../../mod/profile_photo.php:228 +#: ../../mod/profile_photo.php:263 msgid "Please adjust the image cropping for optimum viewing." msgstr "Passe bitte den Bildausschnitt an, damit das Bild optimal dargestellt werden kann." -#: ../../mod/profile_photo.php:230 +#: ../../mod/profile_photo.php:265 msgid "Done Editing" msgstr "Bearbeitung abgeschlossen" -#: ../../mod/profile_photo.php:264 +#: ../../mod/profile_photo.php:299 msgid "Image uploaded successfully." msgstr "Bild erfolgreich auf den Server geladen." @@ -3343,15 +3388,15 @@ msgstr "Themeneinstellungen aktualisiert." msgid "Site" msgstr "Seite" -#: ../../mod/admin.php:97 ../../mod/admin.php:686 ../../mod/admin.php:698 +#: ../../mod/admin.php:97 ../../mod/admin.php:688 ../../mod/admin.php:701 msgid "Users" msgstr "Nutzer" -#: ../../mod/admin.php:98 ../../mod/admin.php:780 ../../mod/admin.php:822 +#: ../../mod/admin.php:98 ../../mod/admin.php:783 ../../mod/admin.php:825 msgid "Plugins" msgstr "Plugins" -#: ../../mod/admin.php:99 ../../mod/admin.php:985 ../../mod/admin.php:1021 +#: ../../mod/admin.php:99 ../../mod/admin.php:988 ../../mod/admin.php:1024 msgid "Themes" msgstr "Themen" @@ -3359,7 +3404,7 @@ msgstr "Themen" msgid "DB updates" msgstr "DB Updates" -#: ../../mod/admin.php:115 ../../mod/admin.php:122 ../../mod/admin.php:1108 +#: ../../mod/admin.php:115 ../../mod/admin.php:122 ../../mod/admin.php:1111 msgid "Logs" msgstr "Protokolle" @@ -3375,19 +3420,19 @@ msgstr "Plugin Features" msgid "User registrations waiting for confirmation" msgstr "Nutzeranmeldungen die auf Bestätigung warten" -#: ../../mod/admin.php:183 ../../mod/admin.php:668 +#: ../../mod/admin.php:183 ../../mod/admin.php:669 msgid "Normal Account" msgstr "Normales Konto" -#: ../../mod/admin.php:184 ../../mod/admin.php:669 +#: ../../mod/admin.php:184 ../../mod/admin.php:670 msgid "Soapbox Account" msgstr "Marktschreier-Konto" -#: ../../mod/admin.php:185 ../../mod/admin.php:670 +#: ../../mod/admin.php:185 ../../mod/admin.php:671 msgid "Community/Celebrity Account" msgstr "Forum/Promi-Konto" -#: ../../mod/admin.php:186 ../../mod/admin.php:671 +#: ../../mod/admin.php:186 ../../mod/admin.php:672 msgid "Automatic Friend Account" msgstr "Automatisches Freundekonto" @@ -3403,9 +3448,9 @@ msgstr "Privates Forum" msgid "Message queues" msgstr "Nachrichten-Warteschlangen" -#: ../../mod/admin.php:212 ../../mod/admin.php:441 ../../mod/admin.php:685 -#: ../../mod/admin.php:779 ../../mod/admin.php:821 ../../mod/admin.php:984 -#: ../../mod/admin.php:1020 ../../mod/admin.php:1107 +#: ../../mod/admin.php:212 ../../mod/admin.php:441 ../../mod/admin.php:687 +#: ../../mod/admin.php:782 ../../mod/admin.php:824 ../../mod/admin.php:987 +#: ../../mod/admin.php:1023 ../../mod/admin.php:1110 msgid "Administration" msgstr "Administration" @@ -3618,14 +3663,14 @@ msgid "Allow infinite level threading for items on this site." msgstr "Erlaube ein unendliches Level für Threads auf dieser Seite." #: ../../mod/admin.php:470 -msgid "No default permissions for new users" -msgstr "Keine Standard-Zugriffsrechte für Beiträge neuer Nutzer" +msgid "Private posts by default for new users" +msgstr "Private Beiträge als Standard für neue Nutzer" #: ../../mod/admin.php:470 msgid "" -"New users will have no private permissions set for their posts by default, " -"making their posts public until they change it." -msgstr "Neue Benutzer werden keine Voreinstellungen für die Zugriffrechte haben, so dass ihre Beiträge öffentlich sind, bis sie es ändern." +"Set default post permissions for all new members to the default privacy " +"group rather than public." +msgstr "Die Standard-Zugriffsrechte für neue Nutzer werden so gesetzt, dass als Voreinstellung in die private Gruppe gepostet wird anstelle von öffentlichen Beiträgen." #: ../../mod/admin.php:472 msgid "Block multiple registrations" @@ -3830,148 +3875,152 @@ msgstr "Nutzer '%s' entsperrt" msgid "User '%s' blocked" msgstr "Nutzer '%s' gesperrt" -#: ../../mod/admin.php:688 +#: ../../mod/admin.php:690 msgid "select all" msgstr "Alle auswählen" -#: ../../mod/admin.php:689 +#: ../../mod/admin.php:691 msgid "User registrations waiting for confirm" msgstr "Neuanmeldungen, die auf deine Bestätigung warten" -#: ../../mod/admin.php:690 +#: ../../mod/admin.php:692 msgid "Request date" msgstr "Anfragedatum" -#: ../../mod/admin.php:690 ../../mod/admin.php:699 +#: ../../mod/admin.php:692 ../../mod/admin.php:702 #: ../../include/contact_selectors.php:79 msgid "Email" msgstr "E-Mail" -#: ../../mod/admin.php:691 +#: ../../mod/admin.php:693 msgid "No registrations." msgstr "Keine Neuanmeldungen." -#: ../../mod/admin.php:693 +#: ../../mod/admin.php:695 msgid "Deny" msgstr "Verwehren" #: ../../mod/admin.php:699 +msgid "Site admin" +msgstr "Seitenadministrator" + +#: ../../mod/admin.php:702 msgid "Register date" msgstr "Anmeldedatum" -#: ../../mod/admin.php:699 +#: ../../mod/admin.php:702 msgid "Last login" msgstr "Letzte Anmeldung" -#: ../../mod/admin.php:699 +#: ../../mod/admin.php:702 msgid "Last item" msgstr "Letzter Beitrag" -#: ../../mod/admin.php:699 +#: ../../mod/admin.php:702 msgid "Account" msgstr "Nutzerkonto" -#: ../../mod/admin.php:701 +#: ../../mod/admin.php:704 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:702 +#: ../../mod/admin.php:705 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:743 +#: ../../mod/admin.php:746 #, php-format msgid "Plugin %s disabled." msgstr "Plugin %s deaktiviert." -#: ../../mod/admin.php:747 +#: ../../mod/admin.php:750 #, php-format msgid "Plugin %s enabled." msgstr "Plugin %s aktiviert." -#: ../../mod/admin.php:757 ../../mod/admin.php:955 +#: ../../mod/admin.php:760 ../../mod/admin.php:958 msgid "Disable" msgstr "Ausschalten" -#: ../../mod/admin.php:759 ../../mod/admin.php:957 +#: ../../mod/admin.php:762 ../../mod/admin.php:960 msgid "Enable" msgstr "Einschalten" -#: ../../mod/admin.php:781 ../../mod/admin.php:986 +#: ../../mod/admin.php:784 ../../mod/admin.php:989 msgid "Toggle" msgstr "Umschalten" -#: ../../mod/admin.php:789 ../../mod/admin.php:996 +#: ../../mod/admin.php:792 ../../mod/admin.php:999 msgid "Author: " msgstr "Autor:" -#: ../../mod/admin.php:790 ../../mod/admin.php:997 +#: ../../mod/admin.php:793 ../../mod/admin.php:1000 msgid "Maintainer: " msgstr "Betreuer:" -#: ../../mod/admin.php:919 +#: ../../mod/admin.php:922 msgid "No themes found." msgstr "Keine Themen gefunden." -#: ../../mod/admin.php:978 +#: ../../mod/admin.php:981 msgid "Screenshot" msgstr "Bildschirmfoto" -#: ../../mod/admin.php:1026 +#: ../../mod/admin.php:1029 msgid "[Experimental]" msgstr "[Experimentell]" -#: ../../mod/admin.php:1027 +#: ../../mod/admin.php:1030 msgid "[Unsupported]" msgstr "[Nicht unterstützt]" -#: ../../mod/admin.php:1054 +#: ../../mod/admin.php:1057 msgid "Log settings updated." msgstr "Protokolleinstellungen aktualisiert." -#: ../../mod/admin.php:1110 +#: ../../mod/admin.php:1113 msgid "Clear" msgstr "löschen" -#: ../../mod/admin.php:1116 +#: ../../mod/admin.php:1119 msgid "Debugging" msgstr "Protokoll führen" -#: ../../mod/admin.php:1117 +#: ../../mod/admin.php:1120 msgid "Log file" msgstr "Protokolldatei" -#: ../../mod/admin.php:1117 +#: ../../mod/admin.php:1120 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:1118 +#: ../../mod/admin.php:1121 msgid "Log level" msgstr "Protokoll-Level" -#: ../../mod/admin.php:1168 +#: ../../mod/admin.php:1171 msgid "Close" msgstr "Schließen" -#: ../../mod/admin.php:1174 +#: ../../mod/admin.php:1177 msgid "FTP Host" msgstr "FTP Host" -#: ../../mod/admin.php:1175 +#: ../../mod/admin.php:1178 msgid "FTP Path" msgstr "FTP Pfad" -#: ../../mod/admin.php:1176 +#: ../../mod/admin.php:1179 msgid "FTP User" msgstr "FTP Nutzername" -#: ../../mod/admin.php:1177 +#: ../../mod/admin.php:1180 msgid "FTP Password" msgstr "FTP Passwort" @@ -3987,48 +4036,48 @@ msgstr "Der Zugriff zu diesem Profil wurde eingeschränkt." msgid "Tips for New Members" msgstr "Tipps für neue Nutzer" -#: ../../mod/ping.php:185 +#: ../../mod/ping.php:235 msgid "{0} wants to be your friend" msgstr "{0} möchte mit dir in Kontakt treten" -#: ../../mod/ping.php:190 +#: ../../mod/ping.php:240 msgid "{0} sent you a message" msgstr "{0} hat dir eine Nachricht geschickt" -#: ../../mod/ping.php:195 +#: ../../mod/ping.php:245 msgid "{0} requested registration" msgstr "{0} möchte sich registrieren" -#: ../../mod/ping.php:201 +#: ../../mod/ping.php:251 #, php-format msgid "{0} commented %s's post" msgstr "{0} kommentierte einen Beitrag von %s" -#: ../../mod/ping.php:206 +#: ../../mod/ping.php:256 #, php-format msgid "{0} liked %s's post" msgstr "{0} mag %ss Beitrag" -#: ../../mod/ping.php:211 +#: ../../mod/ping.php:261 #, php-format msgid "{0} disliked %s's post" msgstr "{0} mag %ss Beitrag nicht" -#: ../../mod/ping.php:216 +#: ../../mod/ping.php:266 #, php-format msgid "{0} is now friends with %s" msgstr "{0} ist jetzt mit %s befreundet" -#: ../../mod/ping.php:221 +#: ../../mod/ping.php:271 msgid "{0} posted" msgstr "{0} hat etwas veröffentlicht" -#: ../../mod/ping.php:226 +#: ../../mod/ping.php:276 #, php-format msgid "{0} tagged %s's post with #%s" msgstr "{0} hat %ss Beitrag mit dem Schlagwort #%s versehen" -#: ../../mod/ping.php:232 +#: ../../mod/ping.php:282 msgid "{0} mentioned you in a post" msgstr "{0} hat dich in einem Beitrag erwähnt" @@ -4390,8 +4439,8 @@ msgstr "sichtbar für jeden" msgid "Edit visibility" msgstr "Sichtbarkeit bearbeiten" -#: ../../mod/filer.php:29 ../../include/conversation.php:1136 -#: ../../include/conversation.php:1153 +#: ../../mod/filer.php:29 ../../include/conversation.php:1209 +#: ../../include/conversation.php:1226 msgid "Save to Folder:" msgstr "In diesen Ordner verschieben:" @@ -4399,7 +4448,7 @@ msgstr "In diesen Ordner verschieben:" msgid "- select -" msgstr "- auswählen -" -#: ../../mod/tagger.php:95 ../../include/conversation.php:267 +#: ../../mod/tagger.php:95 ../../include/conversation.php:265 #, php-format msgid "%1$s tagged %2$s's %3$s with %4$s" msgstr "%1$s hat %2$ss %3$s mit %4$s getaggt" @@ -4657,7 +4706,7 @@ msgid "Unable to set contact photo." msgstr "Konnte das Bild des Kontakts nicht speichern." #: ../../mod/dfrn_confirm.php:477 ../../include/diaspora.php:608 -#: ../../include/conversation.php:173 +#: ../../include/conversation.php:171 #, php-format msgid "%1$s is now friends with %2$s" msgstr "%1$s ist nun mit %2$s befreundet" @@ -4732,7 +4781,7 @@ msgstr "Facebook deaktiviert" msgid "Updating contacts" msgstr "Aktualisiere Kontakte" -#: ../../addon/facebook/facebook.php:551 +#: ../../addon/facebook/facebook.php:551 ../../addon/fbpost/fbpost.php:192 msgid "Facebook API key is missing." msgstr "Facebook-API-Schlüssel nicht gefunden" @@ -4748,13 +4797,13 @@ msgstr "Facebook-Connector für dieses Konto installieren." msgid "Remove Facebook connector" msgstr "Facebook-Connector entfernen" -#: ../../addon/facebook/facebook.php:576 +#: ../../addon/facebook/facebook.php:576 ../../addon/fbpost/fbpost.php:217 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:583 +#: ../../addon/facebook/facebook.php:583 ../../addon/fbpost/fbpost.php:224 msgid "Post to Facebook by default" msgstr "Veröffentliche standardmäßig bei Facebook" @@ -4820,11 +4869,11 @@ msgstr "Probleme mit Facebook Echtzeit-Updates" msgid "Facebook Connector Settings" msgstr "Facebook-Verbindungseinstellungen" -#: ../../addon/facebook/facebook.php:744 +#: ../../addon/facebook/facebook.php:744 ../../addon/fbpost/fbpost.php:255 msgid "Facebook API Key" msgstr "Facebook API Schlüssel" -#: ../../addon/facebook/facebook.php:754 +#: ../../addon/facebook/facebook.php:754 ../../addon/fbpost/fbpost.php:262 msgid "" "Error: it appears that you have specified the App-ID and -Secret in your " ".htconfig.php file. As long as they are specified there, they cannot be set " @@ -4847,11 +4896,11 @@ msgid "" "going on." msgstr "Die Richtigkeit des API Schlüssels konnte nicht gefunden werden. Irgendwas stimmt nicht." -#: ../../addon/facebook/facebook.php:766 +#: ../../addon/facebook/facebook.php:766 ../../addon/fbpost/fbpost.php:264 msgid "App-ID / API-Key" msgstr "App-ID / API-Key" -#: ../../addon/facebook/facebook.php:767 +#: ../../addon/facebook/facebook.php:767 ../../addon/fbpost/fbpost.php:265 msgid "Application secret" msgstr "Anwendungs-Geheimnis" @@ -4886,38 +4935,38 @@ msgstr "Echtzeit-Updates nicht aktiviert." msgid "Activate Real-Time Updates" msgstr "Echtzeit-Updates aktivieren" -#: ../../addon/facebook/facebook.php:799 +#: ../../addon/facebook/facebook.php:799 ../../addon/fbpost/fbpost.php:282 #: ../../addon/dav/friendica/layout.fnk.php:361 msgid "The new values have been saved." msgstr "Die neuen Einstellungen wurden gespeichert." -#: ../../addon/facebook/facebook.php:823 +#: ../../addon/facebook/facebook.php:823 ../../addon/fbpost/fbpost.php:301 msgid "Post to Facebook" msgstr "Bei Facebook veröffentlichen" -#: ../../addon/facebook/facebook.php:921 +#: ../../addon/facebook/facebook.php:921 ../../addon/fbpost/fbpost.php:399 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:1149 +#: ../../addon/facebook/facebook.php:1149 ../../addon/fbpost/fbpost.php:610 msgid "View on Friendica" msgstr "In Friendica betrachten" -#: ../../addon/facebook/facebook.php:1182 +#: ../../addon/facebook/facebook.php:1182 ../../addon/fbpost/fbpost.php:643 msgid "Facebook post failed. Queued for retry." msgstr "Veröffentlichung bei Facebook gescheitert. Wir versuchen es später erneut." -#: ../../addon/facebook/facebook.php:1222 +#: ../../addon/facebook/facebook.php:1222 ../../addon/fbpost/fbpost.php:683 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:1223 +#: ../../addon/facebook/facebook.php:1223 ../../addon/fbpost/fbpost.php:684 msgid "Facebook connection became invalid" msgstr "Facebook Anmeldedaten sind ungültig geworden" -#: ../../addon/facebook/facebook.php:1224 +#: ../../addon/facebook/facebook.php:1224 ../../addon/fbpost/fbpost.php:685 #, php-format msgid "" "Hi %1$s,\n" @@ -4969,6 +5018,26 @@ msgstr "Größe des Caches" msgid "Delete the whole cache" msgstr "Cache leeren" +#: ../../addon/fbpost/fbpost.php:172 +msgid "Facebook Post disabled" +msgstr "Nach Facebook senden deaktiviert" + +#: ../../addon/fbpost/fbpost.php:199 +msgid "Facebook Post" +msgstr "Facebook Relai" + +#: ../../addon/fbpost/fbpost.php:205 +msgid "Install Facebook Post connector for this account." +msgstr "Facebook-Connector für dieses Konto installieren." + +#: ../../addon/fbpost/fbpost.php:212 +msgid "Remove Facebook Post connector" +msgstr "Facebook-Connector entfernen" + +#: ../../addon/fbpost/fbpost.php:240 +msgid "Facebook Post Settings" +msgstr "Facebook-Beitragseinstellungen" + #: ../../addon/widgets/widget_like.php:58 #, php-format msgid "%d person likes this" @@ -5028,11 +5097,11 @@ msgid "did something obscenely biological to" msgstr "machte etwas obszönes Körperliches mit" #: ../../addon/morepokes/morepokes.php:22 -msgid "point out the new poke feature to" -msgstr "die neue Anstups-Funktion zeigen" +msgid "point out the poke feature to" +msgstr "zeigte die neue Anstups-Funktion" #: ../../addon/morepokes/morepokes.php:22 -msgid "pointed out the new poke feature to" +msgid "pointed out the poke feature to" msgstr "zeigte die neue Anstups-Funktion" #: ../../addon/morepokes/morepokes.php:23 @@ -5044,113 +5113,109 @@ msgid "declared undying love for" msgstr "verkündete unsterbliche Liebe für" #: ../../addon/morepokes/morepokes.php:24 -msgid "set fire to" -msgstr "entflammt" - -#: ../../addon/morepokes/morepokes.php:25 msgid "patent" msgstr "patentieren" -#: ../../addon/morepokes/morepokes.php:25 +#: ../../addon/morepokes/morepokes.php:24 msgid "patented" msgstr "patentierte" -#: ../../addon/morepokes/morepokes.php:26 +#: ../../addon/morepokes/morepokes.php:25 msgid "stroke beard" msgstr "sich den Bart kratzen" -#: ../../addon/morepokes/morepokes.php:26 +#: ../../addon/morepokes/morepokes.php:25 msgid "stroked their beard at" msgstr "kratzte sich den Bart in Richtung" -#: ../../addon/morepokes/morepokes.php:27 +#: ../../addon/morepokes/morepokes.php:26 msgid "" "bemoan the declining standards of modern secondary and tertiary education to" msgstr "sich über die sinkenden Standards der Schul- und Hochschulbildung beklagen" -#: ../../addon/morepokes/morepokes.php:27 +#: ../../addon/morepokes/morepokes.php:26 msgid "" "bemoans the declining standards of modern secondary and tertiary education " "to" msgstr "beklagte sich über die sinkenden Standards der Schul- und Hochschulbildung bei" -#: ../../addon/morepokes/morepokes.php:28 +#: ../../addon/morepokes/morepokes.php:27 msgid "hug" msgstr "umarmen" -#: ../../addon/morepokes/morepokes.php:28 +#: ../../addon/morepokes/morepokes.php:27 msgid "hugged" msgstr "umarmte" -#: ../../addon/morepokes/morepokes.php:29 +#: ../../addon/morepokes/morepokes.php:28 msgid "kiss" msgstr "küssen" -#: ../../addon/morepokes/morepokes.php:29 +#: ../../addon/morepokes/morepokes.php:28 msgid "kissed" msgstr "küsste" -#: ../../addon/morepokes/morepokes.php:30 +#: ../../addon/morepokes/morepokes.php:29 msgid "raise eyebrows at" msgstr "Augenbrauen hochziehen" -#: ../../addon/morepokes/morepokes.php:30 +#: ../../addon/morepokes/morepokes.php:29 msgid "raised their eyebrows at" msgstr "zog die Augenbrauen hoch in Richtung" -#: ../../addon/morepokes/morepokes.php:31 +#: ../../addon/morepokes/morepokes.php:30 msgid "insult" msgstr "beleidigen" -#: ../../addon/morepokes/morepokes.php:31 +#: ../../addon/morepokes/morepokes.php:30 msgid "insulted" msgstr "beleidigte" -#: ../../addon/morepokes/morepokes.php:32 +#: ../../addon/morepokes/morepokes.php:31 msgid "praise" msgstr "preisen" -#: ../../addon/morepokes/morepokes.php:32 +#: ../../addon/morepokes/morepokes.php:31 msgid "praised" msgstr "pries" -#: ../../addon/morepokes/morepokes.php:33 +#: ../../addon/morepokes/morepokes.php:32 msgid "be dubious of" msgstr "ungewiss sein" -#: ../../addon/morepokes/morepokes.php:33 +#: ../../addon/morepokes/morepokes.php:32 msgid "was dubious of" msgstr "war ungewiss über" -#: ../../addon/morepokes/morepokes.php:34 +#: ../../addon/morepokes/morepokes.php:33 msgid "eat" msgstr "essen" -#: ../../addon/morepokes/morepokes.php:34 +#: ../../addon/morepokes/morepokes.php:33 msgid "ate" msgstr "aß" -#: ../../addon/morepokes/morepokes.php:35 +#: ../../addon/morepokes/morepokes.php:34 msgid "giggle and fawn at" msgstr "kichern und einschleimen" -#: ../../addon/morepokes/morepokes.php:35 +#: ../../addon/morepokes/morepokes.php:34 msgid "giggled and fawned at" msgstr "kicherte und schleimte sich ein bei" -#: ../../addon/morepokes/morepokes.php:36 +#: ../../addon/morepokes/morepokes.php:35 msgid "doubt" msgstr "bezweifeln" -#: ../../addon/morepokes/morepokes.php:36 +#: ../../addon/morepokes/morepokes.php:35 msgid "doubted" msgstr "bezweifelte" -#: ../../addon/morepokes/morepokes.php:37 +#: ../../addon/morepokes/morepokes.php:36 msgid "glare" msgstr "zornig anstarren" -#: ../../addon/morepokes/morepokes.php:37 +#: ../../addon/morepokes/morepokes.php:36 msgid "glared at" msgstr "starrte zornig auf" @@ -5202,11 +5267,11 @@ msgstr "LiveJournal Passwort" msgid "Post to LiveJournal by default" msgstr "Standardmäßig bei LiveJournal veröffentlichen" -#: ../../addon/nsfw/nsfw.php:47 +#: ../../addon/nsfw/nsfw.php:78 msgid "Not Safe For Work (General Purpose Content Filter) settings" msgstr "Not Safe for Work (allg. Filter für ungewollte Inhalte) Einstellungen:" -#: ../../addon/nsfw/nsfw.php:49 +#: ../../addon/nsfw/nsfw.php:80 msgid "" "This plugin looks in posts for the words/text you specify below, and " "collapses any content containing those keywords so it is not displayed at " @@ -5216,23 +5281,23 @@ msgid "" " can thereby be used as a general purpose content filter." msgstr "Dieses Plugin sucht in Beiträgen nach Wörtern oder Textbauteilen die du weiter unten eingibst, findet es diese Bausteine, dann wird der entsprechende Beitrag zusammengefaltet dargestellt. Auf diese Weise wird verhindert, dass Inhalte, wie z.B. sexuelle Anspielungen, in unpassenden Momenten angezeigt werden. Du solltest den #NSFW Tag für Beiträge verwenden von denen du ausgehen kannst, dass andere sie anstößig finden könnten. Du kannst beliebige Wörter in der Filterliste angeben und ihn so als allgemeinen Filter verwenden." -#: ../../addon/nsfw/nsfw.php:50 +#: ../../addon/nsfw/nsfw.php:81 msgid "Enable Content filter" msgstr "Aktiviere den Inhaltsfilter" -#: ../../addon/nsfw/nsfw.php:53 +#: ../../addon/nsfw/nsfw.php:84 msgid "Comma separated list of keywords to hide" msgstr "Durch Komma getrennte Liste von Schlüsselwörtern die verborgen werden sollen" -#: ../../addon/nsfw/nsfw.php:58 +#: ../../addon/nsfw/nsfw.php:89 msgid "Use /expression/ to provide regular expressions" msgstr "Verwende /expression/ um reguläre Ausdrücke zu verwenden" -#: ../../addon/nsfw/nsfw.php:74 +#: ../../addon/nsfw/nsfw.php:105 msgid "NSFW Settings saved." msgstr "NSFW-Einstellungen gespeichert" -#: ../../addon/nsfw/nsfw.php:121 +#: ../../addon/nsfw/nsfw.php:157 #, php-format msgid "%s - Click to open/close" msgstr "%s – Zum Öffnen/Schließen klicken" @@ -5306,8 +5371,8 @@ msgid "Latest likes" msgstr "Neueste Favoriten" #: ../../addon/communityhome/communityhome.php:155 -#: ../../view/theme/diabook/theme.php:562 ../../include/text.php:1397 -#: ../../include/conversation.php:117 ../../include/conversation.php:247 +#: ../../view/theme/diabook/theme.php:562 ../../include/text.php:1437 +#: ../../include/conversation.php:117 ../../include/conversation.php:245 msgid "event" msgstr "Veranstaltung" @@ -6111,68 +6176,68 @@ msgstr "Zufällige Zusammenstellung der Foren-Liste" msgid "Show forumlists/forums on profile forumlist" msgstr "Liste der Foren deren Abonnement du bist in deinem Profil anzeigen:" -#: ../../addon/impressum/impressum.php:36 +#: ../../addon/impressum/impressum.php:37 msgid "Impressum" msgstr "Impressum" -#: ../../addon/impressum/impressum.php:49 -#: ../../addon/impressum/impressum.php:51 -#: ../../addon/impressum/impressum.php:83 +#: ../../addon/impressum/impressum.php:50 +#: ../../addon/impressum/impressum.php:52 +#: ../../addon/impressum/impressum.php:84 msgid "Site Owner" msgstr "Betreiber der Seite" -#: ../../addon/impressum/impressum.php:49 -#: ../../addon/impressum/impressum.php:87 +#: ../../addon/impressum/impressum.php:50 +#: ../../addon/impressum/impressum.php:88 msgid "Email Address" msgstr "Email Adresse" -#: ../../addon/impressum/impressum.php:54 -#: ../../addon/impressum/impressum.php:85 +#: ../../addon/impressum/impressum.php:55 +#: ../../addon/impressum/impressum.php:86 msgid "Postal Address" msgstr "Postalische Anschrift" -#: ../../addon/impressum/impressum.php:60 +#: ../../addon/impressum/impressum.php:61 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:83 +#: ../../addon/impressum/impressum.php:84 msgid "The page operators name." msgstr "Name des Serveradministrators" -#: ../../addon/impressum/impressum.php:84 +#: ../../addon/impressum/impressum.php:85 msgid "Site Owners Profile" msgstr "Profil des Seitenbetreibers" -#: ../../addon/impressum/impressum.php:84 +#: ../../addon/impressum/impressum.php:85 msgid "Profile address of the operator." msgstr "Profil-Adresse des Serveradministrators" -#: ../../addon/impressum/impressum.php:85 +#: ../../addon/impressum/impressum.php:86 msgid "How to contact the operator via snail mail. You can use BBCode here." msgstr "Kontaktmöglichkeiten zum Administrator via Schneckenpost. Du kannst BBCode verwenden." -#: ../../addon/impressum/impressum.php:86 +#: ../../addon/impressum/impressum.php:87 msgid "Notes" msgstr "Hinweise" -#: ../../addon/impressum/impressum.php:86 +#: ../../addon/impressum/impressum.php:87 msgid "" "Additional notes that are displayed beneath the contact information. You can" " use BBCode here." msgstr "Zusätzliche Informationen die neben den Kontaktmöglichkeiten angezeigt werden. Du kannst BBCode verwenden." -#: ../../addon/impressum/impressum.php:87 +#: ../../addon/impressum/impressum.php:88 msgid "How to contact the operator via email. (will be displayed obfuscated)" msgstr "Wie man den Betreiber per Email erreicht. (Adresse wird verschleiert dargestellt)" -#: ../../addon/impressum/impressum.php:88 +#: ../../addon/impressum/impressum.php:89 msgid "Footer note" msgstr "Fußnote" -#: ../../addon/impressum/impressum.php:88 +#: ../../addon/impressum/impressum.php:89 msgid "Text for the footer. You can use BBCode here." msgstr "Text für die Fußzeile. Du kannst BBCode verwenden." @@ -6477,6 +6542,59 @@ msgstr "InsaneJournal Passwort" msgid "Post to InsaneJournal by default" msgstr "Standardmäßig auf InsaneJournal posten." +#: ../../addon/jappixmini/jappixmini.php:266 +msgid "Jappix Mini addon settings" +msgstr "Jappix Mini Addon Einstellungen" + +#: ../../addon/jappixmini/jappixmini.php:268 +msgid "Activate addon" +msgstr "Addon aktivieren" + +#: ../../addon/jappixmini/jappixmini.php:271 +msgid "" +"Do not insert the Jappixmini Chat-Widget into the webinterface" +msgstr "Füge das Jappix Mini Chat Widget nicht zum Webinterface hinzu" + +#: ../../addon/jappixmini/jappixmini.php:274 +msgid "Jabber username" +msgstr "Jabber Nutzername" + +#: ../../addon/jappixmini/jappixmini.php:277 +msgid "Jabber server" +msgstr "Jabber Server" + +#: ../../addon/jappixmini/jappixmini.php:281 +msgid "Jabber BOSH host" +msgstr "Jabber BOSH Host" + +#: ../../addon/jappixmini/jappixmini.php:285 +msgid "Jabber password" +msgstr "Japper Passwort" + +#: ../../addon/jappixmini/jappixmini.php:290 +msgid "Encrypt Jabber password with Friendica password (recommended)" +msgstr "Verschlüssele das Jabber Passwort mit dem Friendica Passwort (empfohlen)" + +#: ../../addon/jappixmini/jappixmini.php:293 +msgid "Friendica password" +msgstr "Friendica Passwort" + +#: ../../addon/jappixmini/jappixmini.php:296 +msgid "Approve subscription requests from Friendica contacts automatically" +msgstr "Kontaktanfragen von Friendica Kontakten automatisch akzeptieren" + +#: ../../addon/jappixmini/jappixmini.php:299 +msgid "Subscribe to Friendica contacts automatically" +msgstr "Automatisch Friendica Kontakten bei Jabber folgen" + +#: ../../addon/jappixmini/jappixmini.php:302 +msgid "Purge internal list of jabber addresses of contacts" +msgstr "Lösche die interne Liste der Jabber Adressen der Kontakte" + +#: ../../addon/jappixmini/jappixmini.php:308 +msgid "Add contact" +msgstr "Kontakt hinzufügen" + #: ../../addon/viewsrc/viewsrc.php:37 msgid "View Source" msgstr "Quelle ansehen" @@ -6847,6 +6965,23 @@ msgstr "IRC Chatraum" msgid "Popular Channels" msgstr "Beliebte Räume" +#: ../../addon/fromapp/fromapp.php:38 +msgid "Fromapp settings updated." +msgstr "FromApp Einstellungen aktualisiert." + +#: ../../addon/fromapp/fromapp.php:64 +msgid "FromApp Settings" +msgstr "FromApp Einstellungen" + +#: ../../addon/fromapp/fromapp.php:66 +msgid "" +"The application name you would like to show your posts originating from." +msgstr "Der Name der Anwendung von der deine Beiträge stammen sollen." + +#: ../../addon/fromapp/fromapp.php:70 +msgid "Use this application name even if another application was used." +msgstr "Verwende diesen Namen auch wenn eine andere Anwendung den Anwendungsnamen bereits gesetzt hat." + #: ../../addon/blogger/blogger.php:42 msgid "Post to blogger" msgstr "Auf Blogger posten" @@ -6909,7 +7044,7 @@ msgstr "Veröffentliche öffentliche Beiträge standardmäßig bei Posterous" #: ../../view/theme/cleanzero/config.php:82 #: ../../view/theme/diabook/config.php:192 -#: ../../view/theme/quattro/config.php:54 ../../view/theme/dispy/config.php:72 +#: ../../view/theme/quattro/config.php:55 ../../view/theme/dispy/config.php:72 msgid "Theme settings" msgstr "Themeneinstellungen" @@ -6928,7 +7063,7 @@ msgid "Set theme width" msgstr "Theme Breite festlegen" #: ../../view/theme/cleanzero/config.php:86 -#: ../../view/theme/quattro/config.php:56 +#: ../../view/theme/quattro/config.php:57 msgid "Color scheme" msgstr "Farbschema" @@ -7103,15 +7238,15 @@ msgstr "Zoomfaktor der Earth Layer" msgid "Last tweets" msgstr "Neueste Tweets" -#: ../../view/theme/quattro/config.php:55 +#: ../../view/theme/quattro/config.php:56 msgid "Alignment" msgstr "Ausrichtung" -#: ../../view/theme/quattro/config.php:55 +#: ../../view/theme/quattro/config.php:56 msgid "Left" msgstr "Links" -#: ../../view/theme/quattro/config.php:55 +#: ../../view/theme/quattro/config.php:56 msgid "Center" msgstr "Mitte" @@ -7389,7 +7524,7 @@ msgid "Sex Addict" msgstr "Sexbesessen" #: ../../include/profile_selectors.php:42 ../../include/user.php:278 -#: ../../include/user.php:283 +#: ../../include/user.php:282 msgid "Friends" msgstr "Freunde" @@ -7532,7 +7667,7 @@ msgstr[1] "%d Kontakte" msgid "poke" msgstr "anstupsen" -#: ../../include/text.php:719 ../../include/conversation.php:212 +#: ../../include/text.php:719 ../../include/conversation.php:210 msgid "poked" msgstr "stupste" @@ -7708,47 +7843,27 @@ msgstr "Dezember" msgid "bytes" msgstr "Byte" -#: ../../include/text.php:1027 ../../include/text.php:1042 -msgid "remove" -msgstr "löschen" - -#: ../../include/text.php:1027 ../../include/text.php:1042 -msgid "[remove]" -msgstr "[löschen]" - -#: ../../include/text.php:1030 -msgid "Categories:" -msgstr "Kategorien:" - -#: ../../include/text.php:1045 -msgid "Filed under:" -msgstr "Abgelegt unter:" - -#: ../../include/text.php:1061 ../../include/text.php:1073 +#: ../../include/text.php:1034 ../../include/text.php:1046 msgid "Click to open/close" msgstr "Zum öffnen/schließen klicken" -#: ../../include/text.php:1179 ../../include/user.php:236 +#: ../../include/text.php:1219 ../../include/user.php:236 msgid "default" msgstr "Standard" -#: ../../include/text.php:1191 +#: ../../include/text.php:1231 msgid "Select an alternate language" msgstr "Alternative Sprache auswählen" -#: ../../include/text.php:1401 +#: ../../include/text.php:1441 msgid "activity" msgstr "Aktivität" -#: ../../include/text.php:1403 -msgid "comment" -msgstr "Kommentar" - -#: ../../include/text.php:1404 +#: ../../include/text.php:1444 msgid "post" msgstr "Beitrag" -#: ../../include/text.php:1559 +#: ../../include/text.php:1599 msgid "Item filed" msgstr "Beitrag abgelegt" @@ -7756,7 +7871,7 @@ msgstr "Beitrag abgelegt" msgid "Sharing notification from Diaspora network" msgstr "Freigabe-Benachrichtigung von Diaspora" -#: ../../include/diaspora.php:2202 +#: ../../include/diaspora.php:2211 msgid "Attachments:" msgstr "Anhänge:" @@ -7811,7 +7926,7 @@ msgstr "Abmelden" msgid "End this session" msgstr "Diese Sitzung beenden" -#: ../../include/nav.php:49 ../../boot.php:1659 +#: ../../include/nav.php:49 ../../boot.php:1665 msgid "Status" msgstr "Status" @@ -8041,12 +8156,12 @@ msgstr "Sekunden" msgid "%1$d %2$s ago" msgstr "%1$d %2$s her" -#: ../../include/datetime.php:472 ../../include/items.php:1621 +#: ../../include/datetime.php:472 ../../include/items.php:1683 #, php-format msgid "%s's birthday" msgstr "%ss Geburtstag" -#: ../../include/datetime.php:473 ../../include/items.php:1622 +#: ../../include/datetime.php:473 ../../include/items.php:1684 #, php-format msgid "Happy Birthday %s" msgstr "Herzlichen Glückwunsch %s" @@ -8321,15 +8436,15 @@ msgstr "Konnte die Kontaktinformationen nicht empfangen." msgid "following" msgstr "folgen" -#: ../../include/items.php:3220 +#: ../../include/items.php:3294 msgid "A new person is sharing with you at " msgstr "Eine neue Person teilt mit dir auf " -#: ../../include/items.php:3220 +#: ../../include/items.php:3294 msgid "You have a new follower at " msgstr "Du hast einen neuen Kontakt auf " -#: ../../include/items.php:3901 +#: ../../include/items.php:3975 msgid "Archives" msgstr "Archiv" @@ -8423,163 +8538,177 @@ msgstr "Das Sicherheitsmerkmal war nicht korrekt. Das passiert meistens wenn das msgid "stopped following" msgstr "wird nicht mehr gefolgt" -#: ../../include/Contact.php:220 ../../include/conversation.php:1033 +#: ../../include/Contact.php:220 ../../include/conversation.php:1106 msgid "Poke" msgstr "Anstupsen" -#: ../../include/Contact.php:221 ../../include/conversation.php:1027 +#: ../../include/Contact.php:221 ../../include/conversation.php:1100 msgid "View Status" msgstr "Pinnwand anschauen" -#: ../../include/Contact.php:222 ../../include/conversation.php:1028 +#: ../../include/Contact.php:222 ../../include/conversation.php:1101 msgid "View Profile" msgstr "Profil anschauen" -#: ../../include/Contact.php:223 ../../include/conversation.php:1029 +#: ../../include/Contact.php:223 ../../include/conversation.php:1102 msgid "View Photos" msgstr "Bilder anschauen" #: ../../include/Contact.php:224 ../../include/Contact.php:237 -#: ../../include/conversation.php:1030 +#: ../../include/conversation.php:1103 msgid "Network Posts" msgstr "Netzwerkbeiträge" #: ../../include/Contact.php:225 ../../include/Contact.php:237 -#: ../../include/conversation.php:1031 +#: ../../include/conversation.php:1104 msgid "Edit Contact" msgstr "Kontakt bearbeiten" #: ../../include/Contact.php:226 ../../include/Contact.php:237 -#: ../../include/conversation.php:1032 +#: ../../include/conversation.php:1105 msgid "Send PM" msgstr "Private Nachricht senden" -#: ../../include/conversation.php:208 +#: ../../include/conversation.php:206 #, php-format msgid "%1$s poked %2$s" msgstr "%1$s hat %2$s angestupst" -#: ../../include/conversation.php:292 +#: ../../include/conversation.php:290 msgid "post/item" msgstr "Nachricht/Beitrag" -#: ../../include/conversation.php:293 +#: ../../include/conversation.php:291 #, php-format msgid "%1$s marked %2$s's %3$s as favorite" msgstr "%1$s hat %2$s\\s %3$s als Favorit markiert" -#: ../../include/conversation.php:933 +#: ../../include/conversation.php:645 ../../include/conversation.php:919 +#: ../../object/Item.php:217 +msgid "Categories:" +msgstr "Kategorien" + +#: ../../include/conversation.php:646 ../../include/conversation.php:920 +#: ../../object/Item.php:218 +msgid "Filed under:" +msgstr "Abgelegt unter:" + +#: ../../include/conversation.php:1002 +msgid "remove" +msgstr "löschen" + +#: ../../include/conversation.php:1006 msgid "Delete Selected Items" msgstr "Lösche die markierten Beiträge" -#: ../../include/conversation.php:1091 +#: ../../include/conversation.php:1164 #, php-format msgid "%s likes this." msgstr "%s mag das." -#: ../../include/conversation.php:1091 +#: ../../include/conversation.php:1164 #, php-format msgid "%s doesn't like this." msgstr "%s mag das nicht." -#: ../../include/conversation.php:1095 +#: ../../include/conversation.php:1168 #, php-format msgid "%2$d people like this." msgstr "%2$d Leute mögen das." -#: ../../include/conversation.php:1097 +#: ../../include/conversation.php:1170 #, php-format msgid "%2$d people don't like this." msgstr "%2$d Leute mögen das nicht." -#: ../../include/conversation.php:1103 +#: ../../include/conversation.php:1176 msgid "and" msgstr "und" -#: ../../include/conversation.php:1106 +#: ../../include/conversation.php:1179 #, php-format msgid ", and %d other people" msgstr " und %d andere" -#: ../../include/conversation.php:1107 +#: ../../include/conversation.php:1180 #, php-format msgid "%s like this." msgstr "%s mögen das." -#: ../../include/conversation.php:1107 +#: ../../include/conversation.php:1180 #, php-format msgid "%s don't like this." msgstr "%s mögen das nicht." -#: ../../include/conversation.php:1131 ../../include/conversation.php:1148 +#: ../../include/conversation.php:1204 ../../include/conversation.php:1221 msgid "Visible to everybody" msgstr "Für jedermann sichtbar" -#: ../../include/conversation.php:1133 ../../include/conversation.php:1150 +#: ../../include/conversation.php:1206 ../../include/conversation.php:1223 msgid "Please enter a video link/URL:" msgstr "Bitte Link/URL zum Video einfügen:" -#: ../../include/conversation.php:1134 ../../include/conversation.php:1151 +#: ../../include/conversation.php:1207 ../../include/conversation.php:1224 msgid "Please enter an audio link/URL:" msgstr "Bitte Link/URL zum Audio einfügen:" -#: ../../include/conversation.php:1135 ../../include/conversation.php:1152 +#: ../../include/conversation.php:1208 ../../include/conversation.php:1225 msgid "Tag term:" msgstr "Tag:" -#: ../../include/conversation.php:1137 ../../include/conversation.php:1154 +#: ../../include/conversation.php:1210 ../../include/conversation.php:1227 msgid "Where are you right now?" msgstr "Wo hältst du dich jetzt gerade auf?" -#: ../../include/conversation.php:1197 +#: ../../include/conversation.php:1270 msgid "upload photo" msgstr "Bild hochladen" -#: ../../include/conversation.php:1199 +#: ../../include/conversation.php:1272 msgid "attach file" msgstr "Datei anhängen" -#: ../../include/conversation.php:1201 +#: ../../include/conversation.php:1274 msgid "web link" msgstr "Weblink" -#: ../../include/conversation.php:1202 +#: ../../include/conversation.php:1275 msgid "Insert video link" msgstr "Video-Adresse einfügen" -#: ../../include/conversation.php:1203 +#: ../../include/conversation.php:1276 msgid "video link" msgstr "Video-Link" -#: ../../include/conversation.php:1204 +#: ../../include/conversation.php:1277 msgid "Insert audio link" msgstr "Audio-Adresse einfügen" -#: ../../include/conversation.php:1205 +#: ../../include/conversation.php:1278 msgid "audio link" msgstr "Audio-Link" -#: ../../include/conversation.php:1207 +#: ../../include/conversation.php:1280 msgid "set location" msgstr "Ort setzen" -#: ../../include/conversation.php:1209 +#: ../../include/conversation.php:1282 msgid "clear location" msgstr "Ort löschen" -#: ../../include/conversation.php:1216 +#: ../../include/conversation.php:1289 msgid "permissions" msgstr "Zugriffsrechte" -#: ../../include/plugin.php:400 ../../include/plugin.php:402 +#: ../../include/plugin.php:389 ../../include/plugin.php:391 msgid "Click here to upgrade." msgstr "Zum Upgraden hier klicken." -#: ../../include/plugin.php:408 +#: ../../include/plugin.php:397 msgid "This action exceeds the limits set by your subscription plan." msgstr "Diese Aktion überschreitet die Obergrenze deines Abonnements." -#: ../../include/plugin.php:413 +#: ../../include/plugin.php:402 msgid "This action is not available under your subscription plan." msgstr "Diese Aktion ist in deinem Abonnement nicht verfügbar." @@ -8665,18 +8794,18 @@ msgstr "Veranstaltungserinnerungen" msgid "Events this week:" msgstr "Veranstaltungen diese Woche" -#: ../../boot.php:1662 +#: ../../boot.php:1668 msgid "Status Messages and Posts" msgstr "Statusnachrichten und Beiträge" -#: ../../boot.php:1669 +#: ../../boot.php:1675 msgid "Profile Details" msgstr "Profildetails" -#: ../../boot.php:1686 +#: ../../boot.php:1692 msgid "Events and Calendar" msgstr "Ereignisse und Kalender" -#: ../../boot.php:1693 +#: ../../boot.php:1699 msgid "Only You Can See This" msgstr "Nur du kannst das sehen" diff --git a/view/de/strings.php b/view/de/strings.php index 55129ae0da..119676bdbd 100644 --- a/view/de/strings.php +++ b/view/de/strings.php @@ -277,6 +277,10 @@ $a->strings["%d comment"] = array( 0 => "%d Kommentar", 1 => "%d Kommentare", ); +$a->strings["comment"] = array( + 0 => "", + 1 => "Kommentar", +); $a->strings["show more"] = "mehr anzeigen"; $a->strings["like"] = "mag ich"; $a->strings["dislike"] = "mag ich nicht"; @@ -706,6 +710,7 @@ $a->strings["Shift-reload the page or clear browser cache if the new photo does $a->strings["Unable to process image"] = "Bild konnte nicht verarbeitet werden"; $a->strings["Image exceeds size limit of %d"] = "Bildgröße überschreitet das Limit von %d"; $a->strings["Upload File:"] = "Datei hochladen:"; +$a->strings["Select a profile:"] = "Profil auswählen"; $a->strings["Upload"] = "Hochladen"; $a->strings["skip this step"] = "diesen Schritt überspringen"; $a->strings["select a photo from your photo albums"] = "wähle ein Foto von deinen Fotoalben"; @@ -802,8 +807,8 @@ $a->strings["Global directory update URL"] = "URL für Updates beim weltweiten V $a->strings["URL to update the global directory. If this is not set, the global directory is completely unavailable to the application."] = "URL für Update des globalen Verzeichnisses. Wenn nichts eingetragen ist, bleibt das globale Verzeichnis unerreichbar."; $a->strings["Allow threaded items"] = "Erlaube Threads in Diskussionen"; $a->strings["Allow infinite level threading for items on this site."] = "Erlaube ein unendliches Level für Threads auf dieser Seite."; -$a->strings["No default permissions for new users"] = "Keine Standard-Zugriffsrechte für Beiträge neuer Nutzer"; -$a->strings["New users will have no private permissions set for their posts by default, making their posts public until they change it."] = "Neue Benutzer werden keine Voreinstellungen für die Zugriffrechte haben, so dass ihre Beiträge öffentlich sind, bis sie es ändern."; +$a->strings["Private posts by default for new users"] = "Private Beiträge als Standard für neue Nutzer"; +$a->strings["Set default post permissions for all new members to the default privacy group rather than public."] = "Die Standard-Zugriffsrechte für neue Nutzer werden so gesetzt, dass als Voreinstellung in die private Gruppe gepostet wird anstelle von öffentlichen Beiträgen."; $a->strings["Block multiple registrations"] = "Unterbinde Mehrfachregistrierung"; $a->strings["Disallow users to register additional accounts for use as pages."] = "Benutzern nicht erlauben, weitere Konten als zusätzliche Profile anzulegen."; $a->strings["OpenID support"] = "OpenID Unterstützung"; @@ -859,6 +864,7 @@ $a->strings["Request date"] = "Anfragedatum"; $a->strings["Email"] = "E-Mail"; $a->strings["No registrations."] = "Keine Neuanmeldungen."; $a->strings["Deny"] = "Verwehren"; +$a->strings["Site admin"] = "Seitenadministrator"; $a->strings["Register date"] = "Anmeldedatum"; $a->strings["Last login"] = "Letzte Anmeldung"; $a->strings["Last item"] = "Letzter Beitrag"; @@ -1115,6 +1121,11 @@ $a->strings["Cache Statistics"] = "Cache Statistik"; $a->strings["Number of items"] = "Anzahl der Einträge"; $a->strings["Size of the cache"] = "Größe des Caches"; $a->strings["Delete the whole cache"] = "Cache leeren"; +$a->strings["Facebook Post disabled"] = "Nach Facebook senden deaktiviert"; +$a->strings["Facebook Post"] = "Facebook Relai"; +$a->strings["Install Facebook Post connector for this account."] = "Facebook-Connector für dieses Konto installieren."; +$a->strings["Remove Facebook Post connector"] = "Facebook-Connector entfernen"; +$a->strings["Facebook Post Settings"] = "Facebook-Beitragseinstellungen"; $a->strings["%d person likes this"] = array( 0 => "%d Person mag das", 1 => "%d Leute mögen das", @@ -1134,11 +1145,10 @@ $a->strings["shag"] = "poppen"; $a->strings["shagged"] = "poppte"; $a->strings["do something obscenely biological to"] = "mit ihm/ihr etwas obszönes Körperliches machen"; $a->strings["did something obscenely biological to"] = "machte etwas obszönes Körperliches mit"; -$a->strings["point out the new poke feature to"] = "die neue Anstups-Funktion zeigen"; -$a->strings["pointed out the new poke feature to"] = "zeigte die neue Anstups-Funktion"; +$a->strings["point out the poke feature to"] = "zeigte die neue Anstups-Funktion"; +$a->strings["pointed out the poke feature to"] = "zeigte die neue Anstups-Funktion"; $a->strings["declare undying love for"] = "unterbliche Liebe verkünden"; $a->strings["declared undying love for"] = "verkündete unsterbliche Liebe für"; -$a->strings["set fire to"] = "entflammt"; $a->strings["patent"] = "patentieren"; $a->strings["patented"] = "patentierte"; $a->strings["stroke beard"] = "sich den Bart kratzen"; @@ -1465,6 +1475,19 @@ $a->strings["Enable InsaneJournal Post Plugin"] = "InsaneJournal Plugin aktivier $a->strings["InsaneJournal username"] = "InsaneJournal Benutzername"; $a->strings["InsaneJournal password"] = "InsaneJournal Passwort"; $a->strings["Post to InsaneJournal by default"] = "Standardmäßig auf InsaneJournal posten."; +$a->strings["Jappix Mini addon settings"] = "Jappix Mini Addon Einstellungen"; +$a->strings["Activate addon"] = "Addon aktivieren"; +$a->strings["Do not insert the Jappixmini Chat-Widget into the webinterface"] = "Füge das Jappix Mini Chat Widget nicht zum Webinterface hinzu"; +$a->strings["Jabber username"] = "Jabber Nutzername"; +$a->strings["Jabber server"] = "Jabber Server"; +$a->strings["Jabber BOSH host"] = "Jabber BOSH Host"; +$a->strings["Jabber password"] = "Japper Passwort"; +$a->strings["Encrypt Jabber password with Friendica password (recommended)"] = "Verschlüssele das Jabber Passwort mit dem Friendica Passwort (empfohlen)"; +$a->strings["Friendica password"] = "Friendica Passwort"; +$a->strings["Approve subscription requests from Friendica contacts automatically"] = "Kontaktanfragen von Friendica Kontakten automatisch akzeptieren"; +$a->strings["Subscribe to Friendica contacts automatically"] = "Automatisch Friendica Kontakten bei Jabber folgen"; +$a->strings["Purge internal list of jabber addresses of contacts"] = "Lösche die interne Liste der Jabber Adressen der Kontakte"; +$a->strings["Add contact"] = "Kontakt hinzufügen"; $a->strings["View Source"] = "Quelle ansehen"; $a->strings["Post to StatusNet"] = "Bei StatusNet veröffentlichen"; $a->strings["Please contact your site administrator.
    The provided API URL is not valid."] = "Bitte kontaktiere den Administrator des Servers.
    Die angegebene API-URL ist nicht gültig."; @@ -1546,6 +1569,10 @@ $a->strings["Popular Channels (comma separated)"] = "Beliebte Kanäle (mit Komma $a->strings["IRC settings saved."] = "IRC Einstellungen gespeichert."; $a->strings["IRC Chatroom"] = "IRC Chatraum"; $a->strings["Popular Channels"] = "Beliebte Räume"; +$a->strings["Fromapp settings updated."] = "FromApp Einstellungen aktualisiert."; +$a->strings["FromApp Settings"] = "FromApp Einstellungen"; +$a->strings["The application name you would like to show your posts originating from."] = "Der Name der Anwendung von der deine Beiträge stammen sollen."; +$a->strings["Use this application name even if another application was used."] = "Verwende diesen Namen auch wenn eine andere Anwendung den Anwendungsnamen bereits gesetzt hat."; $a->strings["Post to blogger"] = "Auf Blogger posten"; $a->strings["Blogger Post Settings"] = "Einstellungen zum posten auf Blogger"; $a->strings["Enable Blogger Post Plugin"] = "Blogger-Post-Plugin aktivieren"; @@ -1751,15 +1778,10 @@ $a->strings["October"] = "Oktober"; $a->strings["November"] = "November"; $a->strings["December"] = "Dezember"; $a->strings["bytes"] = "Byte"; -$a->strings["remove"] = "löschen"; -$a->strings["[remove]"] = "[löschen]"; -$a->strings["Categories:"] = "Kategorien:"; -$a->strings["Filed under:"] = "Abgelegt unter:"; $a->strings["Click to open/close"] = "Zum öffnen/schließen klicken"; $a->strings["default"] = "Standard"; $a->strings["Select an alternate language"] = "Alternative Sprache auswählen"; $a->strings["activity"] = "Aktivität"; -$a->strings["comment"] = "Kommentar"; $a->strings["post"] = "Beitrag"; $a->strings["Item filed"] = "Beitrag abgelegt"; $a->strings["Sharing notification from Diaspora network"] = "Freigabe-Benachrichtigung von Diaspora"; @@ -1928,6 +1950,9 @@ $a->strings["Send PM"] = "Private Nachricht senden"; $a->strings["%1\$s poked %2\$s"] = "%1\$s hat %2\$s angestupst"; $a->strings["post/item"] = "Nachricht/Beitrag"; $a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "%1\$s hat %2\$s\\s %3\$s als Favorit markiert"; +$a->strings["Categories:"] = "Kategorien"; +$a->strings["Filed under:"] = "Abgelegt unter:"; +$a->strings["remove"] = "löschen"; $a->strings["Delete Selected Items"] = "Lösche die markierten Beiträge"; $a->strings["%s likes this."] = "%s mag das."; $a->strings["%s doesn't like this."] = "%s mag das nicht."; diff --git a/view/eo/messages.po b/view/eo/messages.po index 267cbdd858..6729ca86af 100644 --- a/view/eo/messages.po +++ b/view/eo/messages.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: http://bugs.friendica.com/\n" -"POT-Creation-Date: 2012-07-15 10:00-0700\n" -"PO-Revision-Date: 2012-07-16 19:31+0000\n" +"POT-Creation-Date: 2012-09-25 10:00-0700\n" +"PO-Revision-Date: 2012-09-26 08:16+0000\n" "Last-Translator: Martin Schmitt \n" "Language-Team: Esperanto (http://www.transifex.com/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" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ../../mod/oexchange.php:25 msgid "Post successful." @@ -36,29 +36,32 @@ msgstr "Kontaktagordoj estas konservita." msgid "Contact update failed." msgstr "Ĝisdatigo de kontakto malsukcesis." -#: ../../mod/crepair.php:115 ../../mod/wall_attach.php:44 +#: ../../mod/crepair.php:115 ../../mod/wall_attach.php:55 #: ../../mod/fsuggest.php:78 ../../mod/events.php:140 ../../mod/api.php:26 -#: ../../mod/api.php:31 ../../mod/photos.php:135 ../../mod/photos.php:957 -#: ../../mod/editpost.php:10 ../../mod/install.php:151 -#: ../../mod/notifications.php:66 ../../mod/contacts.php:145 -#: ../../mod/settings.php:106 ../../mod/settings.php:537 -#: ../../mod/settings.php:542 ../../mod/manage.php:86 ../../mod/network.php:6 +#: ../../mod/api.php:31 ../../mod/photos.php:128 ../../mod/photos.php:972 +#: ../../mod/editpost.php:10 ../../mod/install.php:151 ../../mod/poke.php:135 +#: ../../mod/notifications.php:66 ../../mod/contacts.php:146 +#: ../../mod/settings.php:86 ../../mod/settings.php:525 +#: ../../mod/settings.php:530 ../../mod/manage.php:87 ../../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:125 -#: ../../mod/item.php:141 ../../mod/profile_photo.php:19 -#: ../../mod/profile_photo.php:142 ../../mod/profile_photo.php:153 -#: ../../mod/profile_photo.php:166 ../../mod/message.php:45 -#: ../../mod/message.php:175 ../../mod/allfriends.php:9 -#: ../../mod/nogroup.php:25 ../../mod/wall_upload.php:53 -#: ../../mod/follow.php:9 ../../mod/display.php:138 ../../mod/profiles.php:7 -#: ../../mod/profiles.php:408 ../../mod/delegate.php:6 +#: ../../mod/register.php:38 ../../mod/regmod.php:116 ../../mod/item.php:126 +#: ../../mod/item.php:142 ../../mod/mood.php:114 +#: ../../mod/profile_photo.php:19 ../../mod/profile_photo.php:169 +#: ../../mod/profile_photo.php:180 ../../mod/profile_photo.php:193 +#: ../../mod/message.php:38 ../../mod/message.php:168 +#: ../../mod/allfriends.php:9 ../../mod/nogroup.php:25 +#: ../../mod/wall_upload.php:64 ../../mod/follow.php:9 +#: ../../mod/display.php:141 ../../mod/profiles.php:7 +#: ../../mod/profiles.php:413 ../../mod/delegate.php:6 #: ../../mod/suggest.php:28 ../../mod/invite.php:13 ../../mod/invite.php:81 #: ../../mod/dfrn_confirm.php:53 ../../addon/facebook/facebook.php:510 -#: ../../addon/facebook/facebook.php:516 ../../addon/dav/layout.fnk.php:353 -#: ../../include/items.php:3593 ../../index.php:309 +#: ../../addon/facebook/facebook.php:516 ../../addon/fbpost/fbpost.php:159 +#: ../../addon/fbpost/fbpost.php:165 +#: ../../addon/dav/friendica/layout.fnk.php:354 ../../include/items.php:3908 +#: ../../index.php:317 msgid "Permission denied." msgstr "Malpermesita." @@ -87,8 +90,8 @@ msgstr "Bonvolu klaki 'malantaŭen' en via retesplorilo nun se msgid "Return to contact editor" msgstr "Reen al kontakta redaktilo" -#: ../../mod/crepair.php:148 ../../mod/settings.php:557 -#: ../../mod/settings.php:583 ../../mod/admin.php:661 ../../mod/admin.php:670 +#: ../../mod/crepair.php:148 ../../mod/settings.php:545 +#: ../../mod/settings.php:571 ../../mod/admin.php:692 ../../mod/admin.php:702 msgid "Name" msgstr "Nomo" @@ -125,54 +128,57 @@ msgid "New photo from this URL" msgstr "Nova bildo el tiu adreso" #: ../../mod/crepair.php:166 ../../mod/fsuggest.php:107 -#: ../../mod/events.php:436 ../../mod/photos.php:992 ../../mod/photos.php:1063 -#: ../../mod/photos.php:1309 ../../mod/photos.php:1349 -#: ../../mod/photos.php:1389 ../../mod/photos.php:1420 -#: ../../mod/install.php:246 ../../mod/install.php:284 -#: ../../mod/localtime.php:45 ../../mod/content.php:691 -#: ../../mod/contacts.php:343 ../../mod/settings.php:555 -#: ../../mod/settings.php:709 ../../mod/settings.php:770 -#: ../../mod/settings.php:971 ../../mod/group.php:85 ../../mod/message.php:294 -#: ../../mod/message.php:473 ../../mod/admin.php:422 ../../mod/admin.php:658 -#: ../../mod/admin.php:794 ../../mod/admin.php:993 ../../mod/admin.php:1080 -#: ../../mod/profiles.php:577 ../../mod/invite.php:119 +#: ../../mod/events.php:455 ../../mod/photos.php:1005 +#: ../../mod/photos.php:1081 ../../mod/photos.php:1338 +#: ../../mod/photos.php:1378 ../../mod/photos.php:1419 +#: ../../mod/photos.php:1451 ../../mod/install.php:246 +#: ../../mod/install.php:284 ../../mod/localtime.php:45 ../../mod/poke.php:199 +#: ../../mod/content.php:693 ../../mod/contacts.php:348 +#: ../../mod/settings.php:543 ../../mod/settings.php:697 +#: ../../mod/settings.php:769 ../../mod/settings.php:976 +#: ../../mod/group.php:85 ../../mod/mood.php:137 ../../mod/message.php:294 +#: ../../mod/message.php:480 ../../mod/admin.php:443 ../../mod/admin.php:689 +#: ../../mod/admin.php:826 ../../mod/admin.php:1025 ../../mod/admin.php:1112 +#: ../../mod/profiles.php:583 ../../mod/invite.php:119 #: ../../addon/fromgplus/fromgplus.php:40 #: ../../addon/facebook/facebook.php:619 -#: ../../addon/snautofollow/snautofollow.php:64 -#: ../../addon/yourls/yourls.php:76 ../../addon/ljpost/ljpost.php:93 -#: ../../addon/nsfw/nsfw.php:57 ../../addon/page/page.php:210 -#: ../../addon/planets/planets.php:158 +#: ../../addon/snautofollow/snautofollow.php:64 ../../addon/bg/bg.php:90 +#: ../../addon/fbpost/fbpost.php:226 ../../addon/yourls/yourls.php:76 +#: ../../addon/ljpost/ljpost.php:93 ../../addon/nsfw/nsfw.php:88 +#: ../../addon/page/page.php:210 ../../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/startpage/startpage.php:92 #: ../../addon/geonames/geonames.php:187 ../../addon/oembed.old/oembed.php:41 -#: ../../addon/impressum/impressum.php:82 +#: ../../addon/forumlist/forumlist.php:169 +#: ../../addon/impressum/impressum.php:83 #: ../../addon/notimeline/notimeline.php:64 ../../addon/blockem/blockem.php:57 #: ../../addon/qcomment/qcomment.php:61 #: ../../addon/openstreetmap/openstreetmap.php:70 +#: ../../addon/group_text/group_text.php:84 #: ../../addon/libravatar/libravatar.php:99 #: ../../addon/libertree/libertree.php:90 ../../addon/altpager/altpager.php:87 #: ../../addon/mathjax/mathjax.php:42 ../../addon/editplain/editplain.php:84 #: ../../addon/blackout/blackout.php:98 ../../addon/gravatar/gravatar.php:95 #: ../../addon/pageheader/pageheader.php:55 ../../addon/ijpost/ijpost.php:93 -#: ../../addon/jappixmini/jappixmini.php:302 +#: ../../addon/jappixmini/jappixmini.php:307 #: ../../addon/statusnet/statusnet.php:278 #: ../../addon/statusnet/statusnet.php:292 #: ../../addon/statusnet/statusnet.php:318 #: ../../addon/statusnet/statusnet.php:325 #: ../../addon/statusnet/statusnet.php:353 -#: ../../addon/statusnet/statusnet.php:567 ../../addon/tumblr/tumblr.php:90 +#: ../../addon/statusnet/statusnet.php:576 ../../addon/tumblr/tumblr.php:90 #: ../../addon/numfriends/numfriends.php:85 ../../addon/gnot/gnot.php:88 #: ../../addon/wppost/wppost.php:110 ../../addon/showmore/showmore.php:48 #: ../../addon/piwik/piwik.php:89 ../../addon/twitter/twitter.php:180 -#: ../../addon/twitter/twitter.php:209 ../../addon/twitter/twitter.php:387 -#: ../../addon/irc/irc.php:55 ../../addon/blogger/blogger.php:102 -#: ../../addon/posterous/posterous.php:103 +#: ../../addon/twitter/twitter.php:209 ../../addon/twitter/twitter.php:394 +#: ../../addon/irc/irc.php:55 ../../addon/fromapp/fromapp.php:77 +#: ../../addon/blogger/blogger.php:102 ../../addon/posterous/posterous.php:103 #: ../../view/theme/cleanzero/config.php:80 #: ../../view/theme/diabook/theme.php:757 #: ../../view/theme/diabook/config.php:190 -#: ../../view/theme/quattro/config.php:52 ../../view/theme/dispy/config.php:70 -#: ../../include/conversation.php:653 +#: ../../view/theme/quattro/config.php:53 ../../view/theme/dispy/config.php:70 +#: ../../include/conversation.php:607 ../../object/Item.php:559 msgid "Submit" msgstr "Sendi" @@ -180,25 +186,25 @@ msgstr "Sendi" msgid "Help:" msgstr "Helpo:" -#: ../../mod/help.php:34 ../../addon/dav/layout.fnk.php:116 +#: ../../mod/help.php:34 ../../addon/dav/friendica/layout.fnk.php:225 #: ../../include/nav.php:86 msgid "Help" msgstr "Helpo" -#: ../../mod/help.php:38 ../../index.php:218 +#: ../../mod/help.php:38 ../../index.php:226 msgid "Not Found" msgstr "Ne trovita" -#: ../../mod/help.php:41 ../../index.php:221 +#: ../../mod/help.php:41 ../../index.php:229 msgid "Page not found." msgstr "Paĝo ne trovita" -#: ../../mod/wall_attach.php:58 +#: ../../mod/wall_attach.php:69 #, php-format msgid "File exceeds size limit of %d" msgstr "Dosiero estas pli granda ol la limito de %d" -#: ../../mod/wall_attach.php:99 ../../mod/wall_attach.php:110 +#: ../../mod/wall_attach.php:110 ../../mod/wall_attach.php:121 msgid "File upload failed." msgstr "Alŝutado malsukcesis." @@ -219,90 +225,91 @@ msgstr "Sugesti amikon por %s" msgid "Event title and start time are required." msgstr "Titolo kaj starttempo estas bezonataj por la okazo." -#: ../../mod/events.php:260 +#: ../../mod/events.php:279 msgid "l, F j" msgstr "l, F j" -#: ../../mod/events.php:282 +#: ../../mod/events.php:301 msgid "Edit event" msgstr "Redakti okazon" -#: ../../mod/events.php:304 ../../include/text.php:1094 +#: ../../mod/events.php:323 ../../include/text.php:1187 msgid "link to source" msgstr "ligilo al fonto" -#: ../../mod/events.php:328 ../../view/theme/diabook/theme.php:131 -#: ../../include/nav.php:52 ../../boot.php:1596 +#: ../../mod/events.php:347 ../../view/theme/diabook/theme.php:131 +#: ../../include/nav.php:52 ../../boot.php:1689 msgid "Events" msgstr "Okazoj" -#: ../../mod/events.php:329 +#: ../../mod/events.php:348 msgid "Create New Event" msgstr "Krei novan okazon" -#: ../../mod/events.php:330 ../../addon/dav/layout.fnk.php:154 +#: ../../mod/events.php:349 ../../addon/dav/friendica/layout.fnk.php:263 msgid "Previous" msgstr "antaŭa" -#: ../../mod/events.php:331 ../../mod/install.php:205 -#: ../../addon/dav/layout.fnk.php:157 +#: ../../mod/events.php:350 ../../mod/install.php:205 +#: ../../addon/dav/friendica/layout.fnk.php:266 msgid "Next" msgstr "sekva" -#: ../../mod/events.php:404 +#: ../../mod/events.php:423 msgid "hour:minute" msgstr "horo:minuto" -#: ../../mod/events.php:414 +#: ../../mod/events.php:433 msgid "Event details" msgstr "Detaloj de okazo" -#: ../../mod/events.php:415 +#: ../../mod/events.php:434 #, php-format msgid "Format is %s %s. Starting date and Title are required." msgstr "Format is %s %s. Titolo kaj starttempo estas bezonataj." -#: ../../mod/events.php:417 +#: ../../mod/events.php:436 msgid "Event Starts:" msgstr "Okazo startas:" -#: ../../mod/events.php:417 ../../mod/events.php:431 +#: ../../mod/events.php:436 ../../mod/events.php:450 msgid "Required" msgstr "Bezonata" -#: ../../mod/events.php:420 +#: ../../mod/events.php:439 msgid "Finish date/time is not known or not relevant" msgstr "Fina dato/tempo ne estas konata aŭ ne bezonata" -#: ../../mod/events.php:422 +#: ../../mod/events.php:441 msgid "Event Finishes:" msgstr "Okazo finas:" -#: ../../mod/events.php:425 +#: ../../mod/events.php:444 msgid "Adjust for viewer timezone" msgstr "Agordi al horzono de la leganto" -#: ../../mod/events.php:427 +#: ../../mod/events.php:446 msgid "Description:" msgstr "Priskribo" -#: ../../mod/events.php:429 ../../mod/directory.php:132 -#: ../../include/event.php:40 ../../include/bb2diaspora.php:469 -#: ../../boot.php:1173 +#: ../../mod/events.php:448 ../../mod/directory.php:134 +#: ../../include/event.php:40 ../../include/bb2diaspora.php:412 +#: ../../boot.php:1226 msgid "Location:" msgstr "Loko:" -#: ../../mod/events.php:431 +#: ../../mod/events.php:450 msgid "Title:" msgstr "Titolo:" -#: ../../mod/events.php:433 +#: ../../mod/events.php:452 msgid "Share this event" msgstr "Kunhavigi la okazon" -#: ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 -#: ../../mod/dfrn_request.php:845 ../../mod/settings.php:556 -#: ../../mod/settings.php:582 ../../addon/js_upload/js_upload.php:45 +#: ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 ../../mod/editpost.php:136 +#: ../../mod/dfrn_request.php:847 ../../mod/settings.php:544 +#: ../../mod/settings.php:570 ../../addon/js_upload/js_upload.php:45 +#: ../../include/conversation.php:1307 msgid "Cancel" msgstr "Nuligi" @@ -319,10 +326,11 @@ msgid "Select a tag to remove: " msgstr "Elektu forviŝontan markon:" #: ../../mod/tagrm.php:93 ../../mod/delegate.php:130 +#: ../../addon/dav/common/wdcal_edit.inc.php:468 msgid "Remove" msgstr "Forviŝi" -#: ../../mod/dfrn_poll.php:94 ../../mod/dfrn_poll.php:522 +#: ../../mod/dfrn_poll.php:99 ../../mod/dfrn_poll.php:530 #, php-format msgid "%s welcomes %s" msgstr "%s salutas %s" @@ -345,291 +353,302 @@ msgid "" " 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:833 -#: ../../mod/settings.php:887 ../../mod/settings.php:893 -#: ../../mod/settings.php:901 ../../mod/settings.php:905 -#: ../../mod/settings.php:910 ../../mod/settings.php:916 -#: ../../mod/settings.php:922 ../../mod/settings.php:928 -#: ../../mod/settings.php:958 ../../mod/settings.php:959 -#: ../../mod/settings.php:960 ../../mod/settings.php:961 -#: ../../mod/settings.php:962 ../../mod/register.php:234 -#: ../../mod/profiles.php:554 +#: ../../mod/api.php:105 ../../mod/dfrn_request.php:835 +#: ../../mod/settings.php:892 ../../mod/settings.php:898 +#: ../../mod/settings.php:906 ../../mod/settings.php:910 +#: ../../mod/settings.php:915 ../../mod/settings.php:921 +#: ../../mod/settings.php:927 ../../mod/settings.php:933 +#: ../../mod/settings.php:963 ../../mod/settings.php:964 +#: ../../mod/settings.php:965 ../../mod/settings.php:966 +#: ../../mod/settings.php:967 ../../mod/register.php:236 +#: ../../mod/profiles.php:563 msgid "Yes" msgstr "Jes" -#: ../../mod/api.php:106 ../../mod/dfrn_request.php:834 -#: ../../mod/settings.php:887 ../../mod/settings.php:893 -#: ../../mod/settings.php:901 ../../mod/settings.php:905 -#: ../../mod/settings.php:910 ../../mod/settings.php:916 -#: ../../mod/settings.php:922 ../../mod/settings.php:928 -#: ../../mod/settings.php:958 ../../mod/settings.php:959 -#: ../../mod/settings.php:960 ../../mod/settings.php:961 -#: ../../mod/settings.php:962 ../../mod/register.php:235 -#: ../../mod/profiles.php:555 +#: ../../mod/api.php:106 ../../mod/dfrn_request.php:836 +#: ../../mod/settings.php:892 ../../mod/settings.php:898 +#: ../../mod/settings.php:906 ../../mod/settings.php:910 +#: ../../mod/settings.php:915 ../../mod/settings.php:921 +#: ../../mod/settings.php:927 ../../mod/settings.php:933 +#: ../../mod/settings.php:963 ../../mod/settings.php:964 +#: ../../mod/settings.php:965 ../../mod/settings.php:966 +#: ../../mod/settings.php:967 ../../mod/register.php:237 +#: ../../mod/profiles.php:564 msgid "No" msgstr "Ne" -#: ../../mod/photos.php:46 ../../boot.php:1590 +#: ../../mod/photos.php:46 ../../boot.php:1682 msgid "Photo Albums" msgstr "Bildalbumoj" -#: ../../mod/photos.php:54 ../../mod/photos.php:156 ../../mod/photos.php:971 -#: ../../mod/photos.php:1055 ../../mod/photos.php:1070 -#: ../../mod/photos.php:1498 ../../mod/photos.php:1510 +#: ../../mod/photos.php:54 ../../mod/photos.php:149 ../../mod/photos.php:986 +#: ../../mod/photos.php:1073 ../../mod/photos.php:1088 +#: ../../mod/photos.php:1530 ../../mod/photos.php:1542 #: ../../addon/communityhome/communityhome.php:110 #: ../../view/theme/diabook/theme.php:598 msgid "Contact Photos" msgstr "Kontaktbildoj" -#: ../../mod/photos.php:61 ../../mod/photos.php:1080 ../../mod/photos.php:1548 +#: ../../mod/photos.php:61 ../../mod/photos.php:1104 ../../mod/photos.php:1580 msgid "Upload New Photos" msgstr "Alŝuti novajn bildojn" -#: ../../mod/photos.php:72 ../../mod/settings.php:21 +#: ../../mod/photos.php:74 ../../mod/settings.php:23 msgid "everybody" msgstr "ĉiuj" -#: ../../mod/photos.php:145 +#: ../../mod/photos.php:138 msgid "Contact information unavailable" msgstr "Kontaktoj informoj ne disponeblas" -#: ../../mod/photos.php:156 ../../mod/photos.php:660 ../../mod/photos.php:1055 -#: ../../mod/photos.php:1070 ../../mod/profile_photo.php:60 -#: ../../mod/profile_photo.php:67 ../../mod/profile_photo.php:74 -#: ../../mod/profile_photo.php:177 ../../mod/profile_photo.php:261 -#: ../../mod/profile_photo.php:270 +#: ../../mod/photos.php:149 ../../mod/photos.php:653 ../../mod/photos.php:1073 +#: ../../mod/photos.php:1088 ../../mod/profile_photo.php:74 +#: ../../mod/profile_photo.php:81 ../../mod/profile_photo.php:88 +#: ../../mod/profile_photo.php:204 ../../mod/profile_photo.php:296 +#: ../../mod/profile_photo.php:305 #: ../../addon/communityhome/communityhome.php:111 -#: ../../view/theme/diabook/theme.php:599 ../../include/user.php:304 -#: ../../include/user.php:311 ../../include/user.php:318 +#: ../../view/theme/diabook/theme.php:599 ../../include/user.php:324 +#: ../../include/user.php:331 ../../include/user.php:338 msgid "Profile Photos" msgstr "Profilbildoj" -#: ../../mod/photos.php:166 +#: ../../mod/photos.php:159 msgid "Album not found." msgstr "Albumo ne trovita." -#: ../../mod/photos.php:184 ../../mod/photos.php:1064 +#: ../../mod/photos.php:177 ../../mod/photos.php:1082 msgid "Delete Album" msgstr "Forviŝi albumon" -#: ../../mod/photos.php:247 ../../mod/photos.php:1310 +#: ../../mod/photos.php:240 ../../mod/photos.php:1339 msgid "Delete Photo" msgstr "Forviŝi bildon" -#: ../../mod/photos.php:591 +#: ../../mod/photos.php:584 msgid "was tagged in a" msgstr "estas markita en" -#: ../../mod/photos.php:591 ../../mod/like.php:145 ../../mod/tagger.php:70 +#: ../../mod/photos.php:584 ../../mod/like.php:145 ../../mod/tagger.php:62 #: ../../addon/communityhome/communityhome.php:163 -#: ../../view/theme/diabook/theme.php:570 ../../include/text.php:1346 -#: ../../include/diaspora.php:1793 ../../include/conversation.php:114 -#: ../../include/conversation.php:187 +#: ../../view/theme/diabook/theme.php:570 ../../include/text.php:1439 +#: ../../include/diaspora.php:1824 ../../include/conversation.php:125 +#: ../../include/conversation.php:253 msgid "photo" msgstr "bildo" -#: ../../mod/photos.php:591 +#: ../../mod/photos.php:584 msgid "by" msgstr "de" -#: ../../mod/photos.php:696 ../../addon/js_upload/js_upload.php:315 +#: ../../mod/photos.php:689 ../../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:704 +#: ../../mod/photos.php:697 msgid "Image file is empty." msgstr "Bilddosiero estas malplena." -#: ../../mod/photos.php:736 ../../mod/profile_photo.php:126 -#: ../../mod/wall_upload.php:99 +#: ../../mod/photos.php:729 ../../mod/profile_photo.php:153 +#: ../../mod/wall_upload.php:110 msgid "Unable to process image." msgstr "Ne eblas procedi la bildon." -#: ../../mod/photos.php:763 ../../mod/profile_photo.php:266 -#: ../../mod/wall_upload.php:125 +#: ../../mod/photos.php:756 ../../mod/profile_photo.php:301 +#: ../../mod/wall_upload.php:136 msgid "Image upload failed." msgstr "Alŝuto de bildo malsukcesis." -#: ../../mod/photos.php:849 ../../mod/community.php:16 -#: ../../mod/dfrn_request.php:759 ../../mod/viewcontacts.php:17 -#: ../../mod/display.php:7 ../../mod/search.php:71 ../../mod/directory.php:29 +#: ../../mod/photos.php:842 ../../mod/community.php:18 +#: ../../mod/dfrn_request.php:760 ../../mod/viewcontacts.php:17 +#: ../../mod/display.php:7 ../../mod/search.php:73 ../../mod/directory.php:31 msgid "Public access denied." msgstr "Publika atingo ne permesita." -#: ../../mod/photos.php:859 +#: ../../mod/photos.php:852 msgid "No photos selected" msgstr "Neniu bildoj elektita" -#: ../../mod/photos.php:938 +#: ../../mod/photos.php:953 msgid "Access to this item is restricted." msgstr "Atingo al tio elemento estas limigita." -#: ../../mod/photos.php:1002 +#: ../../mod/photos.php:1015 #, php-format msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage." msgstr "Vi uzas %1$.2f MB de %2$.2f MB bildkonservejo." -#: ../../mod/photos.php:1005 +#: ../../mod/photos.php:1018 #, php-format msgid "You have used %1$.2f Mbytes of photo storage." msgstr "Vi uzas %1$.2f MB de bildkonservejo." -#: ../../mod/photos.php:1011 +#: ../../mod/photos.php:1024 msgid "Upload Photos" msgstr "Alŝuti bildojn" -#: ../../mod/photos.php:1015 ../../mod/photos.php:1059 +#: ../../mod/photos.php:1028 ../../mod/photos.php:1077 msgid "New album name: " msgstr "Nomo por nova albumo:" -#: ../../mod/photos.php:1016 +#: ../../mod/photos.php:1029 msgid "or existing album name: " msgstr "aŭ nomo de estanta albumo:" -#: ../../mod/photos.php:1017 +#: ../../mod/photos.php:1030 msgid "Do not show a status post for this upload" msgstr "Ne kreu statan afiŝon por tio alŝuto." -#: ../../mod/photos.php:1019 ../../mod/photos.php:1305 +#: ../../mod/photos.php:1032 ../../mod/photos.php:1334 msgid "Permissions" msgstr "Permesoj" -#: ../../mod/photos.php:1074 +#: ../../mod/photos.php:1092 msgid "Edit Album" msgstr "Redakti albumon" -#: ../../mod/photos.php:1098 ../../mod/photos.php:1531 +#: ../../mod/photos.php:1098 +msgid "Show Newest First" +msgstr "" + +#: ../../mod/photos.php:1100 +msgid "Show Oldest First" +msgstr "" + +#: ../../mod/photos.php:1124 ../../mod/photos.php:1563 msgid "View Photo" msgstr "Vidi bildon" -#: ../../mod/photos.php:1133 +#: ../../mod/photos.php:1159 msgid "Permission denied. Access to this item may be restricted." msgstr "Malpermesita. Atingo al tio elemento eble estas limigita." -#: ../../mod/photos.php:1135 +#: ../../mod/photos.php:1161 msgid "Photo not available" msgstr "La bildo ne disponeblas" -#: ../../mod/photos.php:1185 +#: ../../mod/photos.php:1217 msgid "View photo" msgstr "Vidi bildon" -#: ../../mod/photos.php:1185 +#: ../../mod/photos.php:1217 msgid "Edit photo" msgstr "Redakti bildon" -#: ../../mod/photos.php:1186 +#: ../../mod/photos.php:1218 msgid "Use as profile photo" msgstr "Uzi kiel profilbildo" -#: ../../mod/photos.php:1192 ../../mod/content.php:601 -#: ../../include/conversation.php:563 +#: ../../mod/photos.php:1224 ../../mod/content.php:603 +#: ../../include/conversation.php:436 ../../object/Item.php:103 msgid "Private Message" msgstr "Privata mesaĝo" -#: ../../mod/photos.php:1214 +#: ../../mod/photos.php:1243 msgid "View Full Size" msgstr "Vidi plengrande " -#: ../../mod/photos.php:1282 +#: ../../mod/photos.php:1311 msgid "Tags: " msgstr "Markoj:" -#: ../../mod/photos.php:1285 +#: ../../mod/photos.php:1314 msgid "[Remove any tag]" msgstr "[Forviŝi iun markon]" -#: ../../mod/photos.php:1295 +#: ../../mod/photos.php:1324 msgid "Rotate CW (right)" msgstr "Turni horloĝdirekte (dekstren)" -#: ../../mod/photos.php:1296 +#: ../../mod/photos.php:1325 msgid "Rotate CCW (left)" msgstr "Turni kontraŭhorloĝdirekte (maldekstren)" -#: ../../mod/photos.php:1298 +#: ../../mod/photos.php:1327 msgid "New album name" msgstr "Nova nomo de albumo" -#: ../../mod/photos.php:1301 +#: ../../mod/photos.php:1330 msgid "Caption" msgstr "Apudskribo" -#: ../../mod/photos.php:1303 +#: ../../mod/photos.php:1332 msgid "Add a Tag" msgstr "Aldoni markon" -#: ../../mod/photos.php:1307 +#: ../../mod/photos.php:1336 msgid "" "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" msgstr "Ekzemple: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" -#: ../../mod/photos.php:1327 ../../mod/content.php:665 -#: ../../include/conversation.php:627 +#: ../../mod/photos.php:1356 ../../mod/content.php:667 +#: ../../include/conversation.php:581 ../../object/Item.php:195 msgid "I like this (toggle)" msgstr "Mi ŝatas tion (ŝalti)" -#: ../../mod/photos.php:1328 ../../mod/content.php:666 -#: ../../include/conversation.php:628 +#: ../../mod/photos.php:1357 ../../mod/content.php:668 +#: ../../include/conversation.php:582 ../../object/Item.php:196 msgid "I don't like this (toggle)" msgstr "Mi malŝatas tion(ŝalti)" -#: ../../mod/photos.php:1329 ../../include/conversation.php:1066 +#: ../../mod/photos.php:1358 ../../include/conversation.php:1268 msgid "Share" msgstr "Kunhavigi" -#: ../../mod/photos.php:1330 ../../mod/editpost.php:104 -#: ../../mod/content.php:482 ../../mod/content.php:842 -#: ../../mod/wallmessage.php:145 ../../mod/message.php:293 -#: ../../mod/message.php:474 ../../include/conversation.php:444 -#: ../../include/conversation.php:804 ../../include/conversation.php:1085 +#: ../../mod/photos.php:1359 ../../mod/editpost.php:112 +#: ../../mod/content.php:482 ../../mod/content.php:845 +#: ../../mod/wallmessage.php:152 ../../mod/message.php:293 +#: ../../mod/message.php:481 ../../include/conversation.php:686 +#: ../../include/conversation.php:944 ../../include/conversation.php:1287 +#: ../../object/Item.php:257 msgid "Please wait" msgstr "Bonvolu atendi" -#: ../../mod/photos.php:1346 ../../mod/photos.php:1386 -#: ../../mod/photos.php:1417 ../../mod/content.php:688 -#: ../../include/conversation.php:650 +#: ../../mod/photos.php:1375 ../../mod/photos.php:1416 +#: ../../mod/photos.php:1448 ../../mod/content.php:690 +#: ../../include/conversation.php:604 ../../object/Item.php:556 msgid "This is you" msgstr "Tiu estas vi" -#: ../../mod/photos.php:1348 ../../mod/photos.php:1388 -#: ../../mod/photos.php:1419 ../../mod/content.php:690 -#: ../../include/conversation.php:652 ../../boot.php:565 +#: ../../mod/photos.php:1377 ../../mod/photos.php:1418 +#: ../../mod/photos.php:1450 ../../mod/content.php:692 +#: ../../include/conversation.php:606 ../../boot.php:574 +#: ../../object/Item.php:558 msgid "Comment" msgstr "Komenti" -#: ../../mod/photos.php:1350 ../../mod/editpost.php:125 -#: ../../mod/content.php:700 ../../include/conversation.php:662 -#: ../../include/conversation.php:1103 +#: ../../mod/photos.php:1379 ../../mod/editpost.php:133 +#: ../../mod/content.php:702 ../../include/conversation.php:616 +#: ../../include/conversation.php:1305 ../../object/Item.php:568 msgid "Preview" msgstr "Antaŭrigardi" -#: ../../mod/photos.php:1447 ../../mod/content.php:439 -#: ../../mod/content.php:720 ../../mod/settings.php:618 -#: ../../mod/settings.php:707 ../../mod/group.php:168 ../../mod/admin.php:665 -#: ../../include/conversation.php:401 ../../include/conversation.php:682 +#: ../../mod/photos.php:1479 ../../mod/content.php:439 +#: ../../mod/content.php:723 ../../mod/settings.php:606 +#: ../../mod/settings.php:695 ../../mod/group.php:168 ../../mod/admin.php:696 +#: ../../include/conversation.php:448 ../../include/conversation.php:889 +#: ../../object/Item.php:116 msgid "Delete" msgstr "Forviŝi" -#: ../../mod/photos.php:1537 +#: ../../mod/photos.php:1569 msgid "View Album" msgstr "Vidi albumon" -#: ../../mod/photos.php:1546 +#: ../../mod/photos.php:1578 msgid "Recent Photos" msgstr "̂Ĵusaj bildoj" -#: ../../mod/community.php:21 +#: ../../mod/community.php:23 msgid "Not available." msgstr "Ne disponebla." -#: ../../mod/community.php:30 ../../view/theme/diabook/theme.php:133 +#: ../../mod/community.php:32 ../../view/theme/diabook/theme.php:133 #: ../../include/nav.php:101 msgid "Community" msgstr "Komunumo" -#: ../../mod/community.php:61 ../../mod/community.php:86 -#: ../../mod/search.php:146 ../../mod/search.php:172 +#: ../../mod/community.php:63 ../../mod/community.php:88 +#: ../../mod/search.php:148 ../../mod/search.php:174 msgid "No results." msgstr "Nenion trovita." @@ -673,72 +692,73 @@ msgstr "Elemento ne trovita" msgid "Edit post" msgstr "Redakti afiŝon" -#: ../../mod/editpost.php:80 ../../include/conversation.php:1052 +#: ../../mod/editpost.php:88 ../../include/conversation.php:1254 msgid "Post to Email" msgstr "Sendi per retpoŝto" -#: ../../mod/editpost.php:95 ../../mod/content.php:707 -#: ../../mod/settings.php:617 ../../include/conversation.php:669 +#: ../../mod/editpost.php:103 ../../mod/content.php:710 +#: ../../mod/settings.php:605 ../../include/conversation.php:441 +#: ../../object/Item.php:107 msgid "Edit" msgstr "Redakti" -#: ../../mod/editpost.php:96 ../../mod/wallmessage.php:143 -#: ../../mod/message.php:291 ../../mod/message.php:471 -#: ../../include/conversation.php:1067 +#: ../../mod/editpost.php:104 ../../mod/wallmessage.php:150 +#: ../../mod/message.php:291 ../../mod/message.php:478 +#: ../../include/conversation.php:1269 msgid "Upload photo" msgstr "Alŝuti bildon" -#: ../../mod/editpost.php:97 ../../include/conversation.php:1069 +#: ../../mod/editpost.php:105 ../../include/conversation.php:1271 msgid "Attach file" msgstr "Kunligi dosieron" -#: ../../mod/editpost.php:98 ../../mod/wallmessage.php:144 -#: ../../mod/message.php:292 ../../mod/message.php:472 -#: ../../include/conversation.php:1071 +#: ../../mod/editpost.php:106 ../../mod/wallmessage.php:151 +#: ../../mod/message.php:292 ../../mod/message.php:479 +#: ../../include/conversation.php:1273 msgid "Insert web link" msgstr "Enmeti retan adreson" -#: ../../mod/editpost.php:99 +#: ../../mod/editpost.php:107 msgid "Insert YouTube video" msgstr "Enmeti videton ĉe YouTube" -#: ../../mod/editpost.php:100 +#: ../../mod/editpost.php:108 msgid "Insert Vorbis [.ogg] video" msgstr "Enmeti videton en formato Vorbis [.ogg]" -#: ../../mod/editpost.php:101 +#: ../../mod/editpost.php:109 msgid "Insert Vorbis [.ogg] audio" msgstr "Enmeti sonon en formato Vorbis [.ogg]" -#: ../../mod/editpost.php:102 ../../include/conversation.php:1077 +#: ../../mod/editpost.php:110 ../../include/conversation.php:1279 msgid "Set your location" msgstr "Agordi vian lokon" -#: ../../mod/editpost.php:103 ../../include/conversation.php:1079 +#: ../../mod/editpost.php:111 ../../include/conversation.php:1281 msgid "Clear browser location" msgstr "Forviŝu retesplorilan lokon" -#: ../../mod/editpost.php:105 ../../include/conversation.php:1086 +#: ../../mod/editpost.php:113 ../../include/conversation.php:1288 msgid "Permission settings" msgstr "Permesagordoj" -#: ../../mod/editpost.php:113 ../../include/conversation.php:1095 +#: ../../mod/editpost.php:121 ../../include/conversation.php:1297 msgid "CC: email addresses" msgstr "CC: retpoŝtadresojn" -#: ../../mod/editpost.php:114 ../../include/conversation.php:1096 +#: ../../mod/editpost.php:122 ../../include/conversation.php:1298 msgid "Public post" msgstr "Publika afiŝo" -#: ../../mod/editpost.php:117 ../../include/conversation.php:1082 +#: ../../mod/editpost.php:125 ../../include/conversation.php:1284 msgid "Set title" msgstr "Redakti titolon" -#: ../../mod/editpost.php:119 ../../include/conversation.php:1084 +#: ../../mod/editpost.php:127 ../../include/conversation.php:1286 msgid "Categories (comma-separated list)" msgstr "Kategorioj (disigita per komo)" -#: ../../mod/editpost.php:120 ../../include/conversation.php:1098 +#: ../../mod/editpost.php:128 ../../include/conversation.php:1300 msgid "Example: bob@example.com, mary@example.com" msgstr "Ekzemple: bob@example.com, mary@example.com" @@ -823,7 +843,7 @@ msgstr "Nevalida adreso de profilo." msgid "Disallowed profile URL." msgstr "Malpermesita adreso de profilo." -#: ../../mod/dfrn_request.php:570 ../../mod/contacts.php:122 +#: ../../mod/dfrn_request.php:570 ../../mod/contacts.php:123 msgid "Failed to update contact record." msgstr "Ĝisdatigo de via kontaktrikordo malsukcesis." @@ -859,75 +879,75 @@ msgstr "Bonvolu konfirmi vian prezenton / kontaktpeton al %s." msgid "Confirm" msgstr "Konfirmi." -#: ../../mod/dfrn_request.php:715 ../../include/items.php:2984 +#: ../../mod/dfrn_request.php:715 ../../include/items.php:3287 msgid "[Name Withheld]" msgstr "[Kaŝita nomo]" -#: ../../mod/dfrn_request.php:808 +#: ../../mod/dfrn_request.php:810 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:824 +#: ../../mod/dfrn_request.php:826 msgid "Connect as an email follower (Coming soon)" msgstr "Konektu kiel retpoŝta sekvanto (Baldaŭ venos)" -#: ../../mod/dfrn_request.php:826 +#: ../../mod/dfrn_request.php:828 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:829 +#: ../../mod/dfrn_request.php:831 msgid "Friend/Connection Request" msgstr "Prezento / Konektpeto" -#: ../../mod/dfrn_request.php:830 +#: ../../mod/dfrn_request.php:832 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:831 +#: ../../mod/dfrn_request.php:833 msgid "Please answer the following:" msgstr "Bonvolu respondi:" -#: ../../mod/dfrn_request.php:832 +#: ../../mod/dfrn_request.php:834 #, php-format msgid "Does %s know you?" msgstr "Ĉu %s konas vin?" -#: ../../mod/dfrn_request.php:835 +#: ../../mod/dfrn_request.php:837 msgid "Add a personal note:" msgstr "Aldoni personan noton:" -#: ../../mod/dfrn_request.php:837 ../../include/contact_selectors.php:76 +#: ../../mod/dfrn_request.php:839 ../../include/contact_selectors.php:76 msgid "Friendica" msgstr "Friendica" -#: ../../mod/dfrn_request.php:838 +#: ../../mod/dfrn_request.php:840 msgid "StatusNet/Federated Social Web" msgstr "StatusNet/Federaciaj interkonaj retejoj" -#: ../../mod/dfrn_request.php:839 ../../mod/settings.php:652 +#: ../../mod/dfrn_request.php:841 ../../mod/settings.php:640 #: ../../include/contact_selectors.php:80 msgid "Diaspora" msgstr "Diaspora" -#: ../../mod/dfrn_request.php:840 +#: ../../mod/dfrn_request.php:842 #, 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:841 +#: ../../mod/dfrn_request.php:843 msgid "Your Identity Address:" msgstr "Via identeca adreso:" -#: ../../mod/dfrn_request.php:844 +#: ../../mod/dfrn_request.php:846 msgid "Submit Request" msgstr "Sendi peton" @@ -954,7 +974,7 @@ msgid "" msgstr "Vi bezonas mane importi la dosieron \"database.sql\" per phpmyadmin aŭ mysql." #: ../../mod/install.php:139 ../../mod/install.php:204 -#: ../../mod/install.php:489 +#: ../../mod/install.php:488 msgid "Please see the file \"INSTALL.txt\"." msgstr "Bonvolu legi la dosieron \"INSTALL.txt\"." @@ -1171,22 +1191,22 @@ msgid "" "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:476 +#: ../../mod/install.php:475 msgid "Errors encountered creating database tables." msgstr "Okazis eraroj dum la kreado de tabeloj en la datumbazo." -#: ../../mod/install.php:487 +#: ../../mod/install.php:486 msgid "

    What next

    " msgstr "

    Kio sekvas nun?

    " -#: ../../mod/install.php:488 +#: ../../mod/install.php:487 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/localtime.php:12 ../../include/event.php:11 -#: ../../include/bb2diaspora.php:447 +#: ../../include/bb2diaspora.php:390 msgid "l F d, Y \\@ g:i A" msgstr "l F d, Y \\@ g:i A" @@ -1219,6 +1239,26 @@ msgstr "Konvertita loka horo: %s" msgid "Please select your timezone:" msgstr "Bonvolu elekti vian horzonon:" +#: ../../mod/poke.php:192 +msgid "Poke/Prod" +msgstr "" + +#: ../../mod/poke.php:193 +msgid "poke, prod or do other things to somebody" +msgstr "" + +#: ../../mod/poke.php:194 +msgid "Recipient" +msgstr "" + +#: ../../mod/poke.php:195 +msgid "Choose what you wish to do to recipient" +msgstr "" + +#: ../../mod/poke.php:198 +msgid "Make this post private" +msgstr "" + #: ../../mod/match.php:12 msgid "Profile Match" msgstr "Kongrua profilo" @@ -1232,7 +1272,7 @@ msgid "is interested in:" msgstr "interesiĝas pri:" #: ../../mod/match.php:58 ../../mod/suggest.php:59 -#: ../../include/contact_widgets.php:9 ../../boot.php:1117 +#: ../../include/contact_widgets.php:9 ../../boot.php:1164 msgid "Connect" msgstr "Konekti" @@ -1260,127 +1300,160 @@ msgstr "Grupo estas malplena" msgid "Group: " msgstr "Grupo:" -#: ../../mod/content.php:438 ../../mod/content.php:719 -#: ../../include/conversation.php:400 ../../include/conversation.php:681 +#: ../../mod/content.php:438 ../../mod/content.php:722 +#: ../../include/conversation.php:447 ../../include/conversation.php:888 +#: ../../object/Item.php:115 msgid "Select" msgstr "Elekti" -#: ../../mod/content.php:455 ../../mod/content.php:812 -#: ../../mod/content.php:813 ../../include/conversation.php:417 -#: ../../include/conversation.php:774 ../../include/conversation.php:775 +#: ../../mod/content.php:455 ../../mod/content.php:815 +#: ../../mod/content.php:816 ../../include/conversation.php:654 +#: ../../include/conversation.php:655 ../../include/conversation.php:907 +#: ../../object/Item.php:226 ../../object/Item.php:227 #, php-format msgid "View %s's profile @ %s" msgstr "Vidi la profilon de %s ĉe %s" -#: ../../mod/content.php:465 ../../mod/content.php:824 -#: ../../include/conversation.php:427 ../../include/conversation.php:786 +#: ../../mod/content.php:465 ../../mod/content.php:827 +#: ../../include/conversation.php:668 ../../include/conversation.php:927 +#: ../../object/Item.php:239 #, php-format msgid "%s from %s" msgstr "%s de %s" -#: ../../mod/content.php:480 ../../include/conversation.php:442 +#: ../../mod/content.php:480 ../../include/conversation.php:942 msgid "View in context" msgstr "Vidi kun kunteksto" -#: ../../mod/content.php:586 ../../include/conversation.php:548 +#: ../../mod/content.php:586 ../../include/conversation.php:695 +#: ../../object/Item.php:276 #, php-format msgid "%d comment" msgid_plural "%d comments" msgstr[0] "%d komento" msgstr[1] "%d komentoj" -#: ../../mod/content.php:587 ../../addon/page/page.php:76 -#: ../../addon/page/page.php:110 ../../addon/showmore/showmore.php:87 -#: ../../include/contact_widgets.php:188 ../../include/conversation.php:549 -#: ../../boot.php:566 +#: ../../mod/content.php:588 ../../include/text.php:1443 +#: ../../include/conversation.php:697 ../../object/Item.php:278 +#: ../../object/Item.php:291 +msgid "comment" +msgid_plural "comments" +msgstr[0] "" +msgstr[1] "komento" + +#: ../../mod/content.php:589 ../../addon/page/page.php:76 +#: ../../addon/page/page.php:110 ../../addon/showmore/showmore.php:119 +#: ../../include/contact_widgets.php:195 ../../include/conversation.php:698 +#: ../../boot.php:575 ../../object/Item.php:279 msgid "show more" msgstr "montri pli" -#: ../../mod/content.php:665 ../../include/conversation.php:627 +#: ../../mod/content.php:667 ../../include/conversation.php:581 +#: ../../object/Item.php:195 msgid "like" msgstr "ŝati" -#: ../../mod/content.php:666 ../../include/conversation.php:628 +#: ../../mod/content.php:668 ../../include/conversation.php:582 +#: ../../object/Item.php:196 msgid "dislike" msgstr "malŝati" -#: ../../mod/content.php:668 ../../include/conversation.php:630 +#: ../../mod/content.php:670 ../../include/conversation.php:584 +#: ../../object/Item.php:198 msgid "Share this" msgstr "Kunhavigi ĉi tiun" -#: ../../mod/content.php:668 ../../include/conversation.php:630 +#: ../../mod/content.php:670 ../../include/conversation.php:584 +#: ../../object/Item.php:198 msgid "share" msgstr "kunhavigi" -#: ../../mod/content.php:692 ../../include/conversation.php:654 +#: ../../mod/content.php:694 ../../include/conversation.php:608 +#: ../../object/Item.php:560 msgid "Bold" msgstr "Grasa" -#: ../../mod/content.php:693 ../../include/conversation.php:655 +#: ../../mod/content.php:695 ../../include/conversation.php:609 +#: ../../object/Item.php:561 msgid "Italic" msgstr "Kursiva" -#: ../../mod/content.php:694 ../../include/conversation.php:656 +#: ../../mod/content.php:696 ../../include/conversation.php:610 +#: ../../object/Item.php:562 msgid "Underline" msgstr "Substreki" -#: ../../mod/content.php:695 ../../include/conversation.php:657 +#: ../../mod/content.php:697 ../../include/conversation.php:611 +#: ../../object/Item.php:563 msgid "Quote" msgstr "Citaĵo" -#: ../../mod/content.php:696 ../../include/conversation.php:658 +#: ../../mod/content.php:698 ../../include/conversation.php:612 +#: ../../object/Item.php:564 msgid "Code" msgstr "Kodo" -#: ../../mod/content.php:697 ../../include/conversation.php:659 +#: ../../mod/content.php:699 ../../include/conversation.php:613 +#: ../../object/Item.php:565 msgid "Image" msgstr "Bildo" -#: ../../mod/content.php:698 ../../include/conversation.php:660 +#: ../../mod/content.php:700 ../../include/conversation.php:614 +#: ../../object/Item.php:566 msgid "Link" msgstr "Ligilo" -#: ../../mod/content.php:699 ../../include/conversation.php:661 +#: ../../mod/content.php:701 ../../include/conversation.php:615 +#: ../../object/Item.php:567 msgid "Video" msgstr "Video" -#: ../../mod/content.php:732 ../../include/conversation.php:694 +#: ../../mod/content.php:735 ../../include/conversation.php:545 +#: ../../object/Item.php:179 msgid "add star" msgstr "aldoni stelon" -#: ../../mod/content.php:733 ../../include/conversation.php:695 +#: ../../mod/content.php:736 ../../include/conversation.php:546 +#: ../../object/Item.php:180 msgid "remove star" msgstr "forpreni stelon" -#: ../../mod/content.php:734 ../../include/conversation.php:696 +#: ../../mod/content.php:737 ../../include/conversation.php:547 +#: ../../object/Item.php:181 msgid "toggle star status" msgstr "ŝalti/malŝalti steloŝtato" -#: ../../mod/content.php:737 ../../include/conversation.php:699 +#: ../../mod/content.php:740 ../../include/conversation.php:550 +#: ../../object/Item.php:184 msgid "starred" msgstr "steligita" -#: ../../mod/content.php:738 ../../include/conversation.php:700 +#: ../../mod/content.php:741 ../../include/conversation.php:551 +#: ../../object/Item.php:185 msgid "add tag" msgstr "aldoni markon" -#: ../../mod/content.php:742 ../../include/conversation.php:704 +#: ../../mod/content.php:745 ../../include/conversation.php:451 +#: ../../object/Item.php:119 msgid "save to folder" msgstr "konservi en dosierujo" -#: ../../mod/content.php:814 ../../include/conversation.php:776 +#: ../../mod/content.php:817 ../../include/conversation.php:656 +#: ../../object/Item.php:228 msgid "to" msgstr "al" -#: ../../mod/content.php:815 ../../include/conversation.php:777 +#: ../../mod/content.php:818 ../../include/conversation.php:657 +#: ../../object/Item.php:229 msgid "Wall-to-Wall" msgstr "Muro-al-Muro" -#: ../../mod/content.php:816 ../../include/conversation.php:778 +#: ../../mod/content.php:819 ../../include/conversation.php:658 +#: ../../object/Item.php:230 msgid "via Wall-To-Wall:" msgstr "per Muro-al-Muro:" -#: ../../mod/home.php:26 ../../addon/communityhome/communityhome.php:179 +#: ../../mod/home.php:28 ../../addon/communityhome/communityhome.php:179 #, php-format msgid "Welcome to %s" msgstr "Bonvenon ĉe %s" @@ -1395,8 +1468,8 @@ msgid "Discard" msgstr "Forviŝi" #: ../../mod/notifications.php:51 ../../mod/notifications.php:160 -#: ../../mod/notifications.php:206 ../../mod/contacts.php:316 -#: ../../mod/contacts.php:370 +#: ../../mod/notifications.php:206 ../../mod/contacts.php:321 +#: ../../mod/contacts.php:375 msgid "Ignore" msgstr "Ignori" @@ -1421,7 +1494,7 @@ msgstr "Hejmo" msgid "Introductions" msgstr "Prezentoj" -#: ../../mod/notifications.php:100 ../../mod/message.php:183 +#: ../../mod/notifications.php:100 ../../mod/message.php:176 #: ../../include/nav.php:128 msgid "Messages" msgstr "Mesaĝoj" @@ -1448,7 +1521,7 @@ msgid "suggested by %s" msgstr "sugestita de %s" #: ../../mod/notifications.php:153 ../../mod/notifications.php:200 -#: ../../mod/contacts.php:376 +#: ../../mod/contacts.php:381 msgid "Hide this contact from others" msgstr "Kaŝi ĉi tiun kontakton al aliaj" @@ -1461,7 +1534,7 @@ msgid "if applicable" msgstr "se aplikebla" #: ../../mod/notifications.php:157 ../../mod/notifications.php:204 -#: ../../mod/admin.php:663 +#: ../../mod/admin.php:694 msgid "Approve" msgstr "Aprobi" @@ -1570,307 +1643,307 @@ msgstr "Ne pli da hejmrilataj atentigoj." msgid "Home Notifications" msgstr "Hejmrilataj atentigoj" -#: ../../mod/contacts.php:83 ../../mod/contacts.php:163 +#: ../../mod/contacts.php:84 ../../mod/contacts.php:164 msgid "Could not access contact record." msgstr "Ne eblis atingi kontaktrikordo." -#: ../../mod/contacts.php:97 +#: ../../mod/contacts.php:98 msgid "Could not locate selected profile." msgstr "Ne trovis elektitan profilon." -#: ../../mod/contacts.php:120 +#: ../../mod/contacts.php:121 msgid "Contact updated." msgstr "Kontakto estas ĝisdatigita." -#: ../../mod/contacts.php:185 +#: ../../mod/contacts.php:186 msgid "Contact has been blocked" msgstr "Kontakto estas blokita." -#: ../../mod/contacts.php:185 +#: ../../mod/contacts.php:186 msgid "Contact has been unblocked" msgstr "Kontakto estas malblokita." -#: ../../mod/contacts.php:199 +#: ../../mod/contacts.php:200 msgid "Contact has been ignored" msgstr "Kontakto estas ignorita." -#: ../../mod/contacts.php:199 +#: ../../mod/contacts.php:200 msgid "Contact has been unignored" msgstr "Kontakto estas malignorita." -#: ../../mod/contacts.php:215 +#: ../../mod/contacts.php:216 msgid "Contact has been archived" msgstr "Enarkivigis kontakton" -#: ../../mod/contacts.php:215 +#: ../../mod/contacts.php:216 msgid "Contact has been unarchived" msgstr "Elarkivigis kontakton" -#: ../../mod/contacts.php:228 +#: ../../mod/contacts.php:229 msgid "Contact has been removed." msgstr "Kontakto estas forigita." -#: ../../mod/contacts.php:258 +#: ../../mod/contacts.php:263 #, php-format msgid "You are mutual friends with %s" msgstr "Vi estas reciproka amiko de %s" -#: ../../mod/contacts.php:262 +#: ../../mod/contacts.php:267 #, php-format msgid "You are sharing with %s" msgstr "Vi kunhavigas kun %s" -#: ../../mod/contacts.php:267 +#: ../../mod/contacts.php:272 #, php-format msgid "%s is sharing with you" msgstr "%s kunhavigas kun vi" -#: ../../mod/contacts.php:284 +#: ../../mod/contacts.php:289 msgid "Private communications are not available for this contact." msgstr "Privataj komunikadoj ne disponeblas por ĉi tiu kontakto." -#: ../../mod/contacts.php:287 +#: ../../mod/contacts.php:292 msgid "Never" msgstr "Neniam" -#: ../../mod/contacts.php:291 +#: ../../mod/contacts.php:296 msgid "(Update was successful)" msgstr "(Ĝisdatigo sukcesis.)" -#: ../../mod/contacts.php:291 +#: ../../mod/contacts.php:296 msgid "(Update was not successful)" msgstr "(Ĝisdatigo malsukcesis.)" -#: ../../mod/contacts.php:293 +#: ../../mod/contacts.php:298 msgid "Suggest friends" msgstr "Sugesti amikojn" -#: ../../mod/contacts.php:297 +#: ../../mod/contacts.php:302 #, php-format msgid "Network type: %s" msgstr "Reta tipo: %s" -#: ../../mod/contacts.php:300 ../../include/contact_widgets.php:183 +#: ../../mod/contacts.php:305 ../../include/contact_widgets.php:190 #, 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:305 +#: ../../mod/contacts.php:310 msgid "View all contacts" msgstr "Vidi ĉiujn kontaktojn" -#: ../../mod/contacts.php:310 ../../mod/contacts.php:369 -#: ../../mod/admin.php:667 +#: ../../mod/contacts.php:315 ../../mod/contacts.php:374 +#: ../../mod/admin.php:698 msgid "Unblock" msgstr "Malbloki" -#: ../../mod/contacts.php:310 ../../mod/contacts.php:369 -#: ../../mod/admin.php:666 +#: ../../mod/contacts.php:315 ../../mod/contacts.php:374 +#: ../../mod/admin.php:697 msgid "Block" msgstr "Bloki" -#: ../../mod/contacts.php:313 +#: ../../mod/contacts.php:318 msgid "Toggle Blocked status" msgstr "Ŝalti/malŝalti Blokitan staton" -#: ../../mod/contacts.php:316 ../../mod/contacts.php:370 +#: ../../mod/contacts.php:321 ../../mod/contacts.php:375 msgid "Unignore" msgstr "Malignori" -#: ../../mod/contacts.php:319 +#: ../../mod/contacts.php:324 msgid "Toggle Ignored status" msgstr "Ŝalti/malŝalti Ignoritan staton" -#: ../../mod/contacts.php:323 +#: ../../mod/contacts.php:328 msgid "Unarchive" msgstr "Elarkivigi" -#: ../../mod/contacts.php:323 +#: ../../mod/contacts.php:328 msgid "Archive" msgstr "Enarkivigi" -#: ../../mod/contacts.php:326 +#: ../../mod/contacts.php:331 msgid "Toggle Archive status" msgstr "Ŝalti/malŝalti Enarkivigitan staton" -#: ../../mod/contacts.php:329 +#: ../../mod/contacts.php:334 msgid "Repair" msgstr "Ripari" -#: ../../mod/contacts.php:332 +#: ../../mod/contacts.php:337 msgid "Advanced Contact Settings" msgstr "Specialaj Kontaktagordoj" -#: ../../mod/contacts.php:338 +#: ../../mod/contacts.php:343 msgid "Communications lost with this contact!" msgstr "Mi perdis la kommunikadon kun tiu kontakto!" -#: ../../mod/contacts.php:341 +#: ../../mod/contacts.php:346 msgid "Contact Editor" msgstr "Kontakta redaktilo." -#: ../../mod/contacts.php:344 +#: ../../mod/contacts.php:349 msgid "Profile Visibility" msgstr "Videbleco de profilo" -#: ../../mod/contacts.php:345 +#: ../../mod/contacts.php:350 #, 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:346 +#: ../../mod/contacts.php:351 msgid "Contact Information / Notes" msgstr "Kontaktaj informoj / Notoj" -#: ../../mod/contacts.php:347 +#: ../../mod/contacts.php:352 msgid "Edit contact notes" msgstr "Redakti kontaktnotojn" -#: ../../mod/contacts.php:352 ../../mod/contacts.php:544 +#: ../../mod/contacts.php:357 ../../mod/contacts.php:549 #: ../../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:353 +#: ../../mod/contacts.php:358 msgid "Block/Unblock contact" msgstr "Bloki/Malbloki kontakton" -#: ../../mod/contacts.php:354 +#: ../../mod/contacts.php:359 msgid "Ignore contact" msgstr "Ignori kontakton" -#: ../../mod/contacts.php:355 +#: ../../mod/contacts.php:360 msgid "Repair URL settings" msgstr "Ripari URL agordoj" -#: ../../mod/contacts.php:356 +#: ../../mod/contacts.php:361 msgid "View conversations" msgstr "Vidi konversaciojn" -#: ../../mod/contacts.php:358 +#: ../../mod/contacts.php:363 msgid "Delete contact" msgstr "Forviŝi kontakton" -#: ../../mod/contacts.php:362 +#: ../../mod/contacts.php:367 msgid "Last update:" msgstr "Plej ĵusa ĝisdatigo:" -#: ../../mod/contacts.php:364 +#: ../../mod/contacts.php:369 msgid "Update public posts" msgstr "Ĝisdatigi publikajn afiŝojn" -#: ../../mod/contacts.php:366 ../../mod/admin.php:1138 +#: ../../mod/contacts.php:371 ../../mod/admin.php:1170 msgid "Update now" msgstr "Ĝisdatigi nun" -#: ../../mod/contacts.php:373 +#: ../../mod/contacts.php:378 msgid "Currently blocked" msgstr "Nuntempe blokata" -#: ../../mod/contacts.php:374 +#: ../../mod/contacts.php:379 msgid "Currently ignored" msgstr "Nuntempe ignorata" -#: ../../mod/contacts.php:375 +#: ../../mod/contacts.php:380 msgid "Currently archived" msgstr "Nuntempe enarkivigita" -#: ../../mod/contacts.php:376 +#: ../../mod/contacts.php:381 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:429 +#: ../../mod/contacts.php:434 msgid "Suggestions" msgstr "Sugestoj" -#: ../../mod/contacts.php:432 +#: ../../mod/contacts.php:437 msgid "Suggest potential friends" msgstr "Sugesti amikojn" -#: ../../mod/contacts.php:435 ../../mod/group.php:191 +#: ../../mod/contacts.php:440 ../../mod/group.php:191 msgid "All Contacts" msgstr "Ĉiuj Kontaktoj" -#: ../../mod/contacts.php:438 +#: ../../mod/contacts.php:443 msgid "Show all contacts" msgstr "Montri ĉiujn kontaktojn" -#: ../../mod/contacts.php:441 +#: ../../mod/contacts.php:446 msgid "Unblocked" msgstr "Malblokita" -#: ../../mod/contacts.php:444 +#: ../../mod/contacts.php:449 msgid "Only show unblocked contacts" msgstr "Nur montri neblokitajn kontaktojn" -#: ../../mod/contacts.php:448 +#: ../../mod/contacts.php:453 msgid "Blocked" msgstr "Blokita" -#: ../../mod/contacts.php:451 +#: ../../mod/contacts.php:456 msgid "Only show blocked contacts" msgstr "Nur montri blokitajn kontaktojn" -#: ../../mod/contacts.php:455 +#: ../../mod/contacts.php:460 msgid "Ignored" msgstr "Ignorita" -#: ../../mod/contacts.php:458 +#: ../../mod/contacts.php:463 msgid "Only show ignored contacts" msgstr "Nur montri ignoritajn kontaktojn" -#: ../../mod/contacts.php:462 +#: ../../mod/contacts.php:467 msgid "Archived" msgstr "Enarkivigita" -#: ../../mod/contacts.php:465 +#: ../../mod/contacts.php:470 msgid "Only show archived contacts" msgstr "Nur montri enarkivigitajn kontaktojn" -#: ../../mod/contacts.php:469 +#: ../../mod/contacts.php:474 msgid "Hidden" msgstr "Kaŝita" -#: ../../mod/contacts.php:472 +#: ../../mod/contacts.php:477 msgid "Only show hidden contacts" msgstr "Nur montri kaŝitajn kontaktojn" -#: ../../mod/contacts.php:520 +#: ../../mod/contacts.php:525 msgid "Mutual Friendship" msgstr "Reciproka amikeco" -#: ../../mod/contacts.php:524 +#: ../../mod/contacts.php:529 msgid "is a fan of yours" msgstr "estas admiranto de vi" -#: ../../mod/contacts.php:528 +#: ../../mod/contacts.php:533 msgid "you are a fan of" msgstr "vi estas admiranto de" -#: ../../mod/contacts.php:545 ../../mod/nogroup.php:41 +#: ../../mod/contacts.php:550 ../../mod/nogroup.php:41 msgid "Edit contact" msgstr "Redakti kontakton" -#: ../../mod/contacts.php:566 ../../view/theme/diabook/theme.php:129 +#: ../../mod/contacts.php:571 ../../view/theme/diabook/theme.php:129 #: ../../include/nav.php:139 msgid "Contacts" msgstr "Kontaktoj" -#: ../../mod/contacts.php:570 +#: ../../mod/contacts.php:575 msgid "Search your contacts" msgstr "Serĉi viajn kontaktojn" -#: ../../mod/contacts.php:571 ../../mod/directory.php:57 +#: ../../mod/contacts.php:576 ../../mod/directory.php:59 msgid "Finding: " msgstr "Trovata:" -#: ../../mod/contacts.php:572 ../../mod/directory.php:59 +#: ../../mod/contacts.php:577 ../../mod/directory.php:61 #: ../../include/contact_widgets.php:33 msgid "Find" msgstr "Trovi" @@ -1892,10 +1965,10 @@ msgstr "Pasvorta riparado petita je %s" #: ../../mod/register.php:90 ../../mod/register.php:144 #: ../../mod/regmod.php:54 ../../mod/dfrn_confirm.php:752 #: ../../addon/facebook/facebook.php:702 -#: ../../addon/facebook/facebook.php:1192 +#: ../../addon/facebook/facebook.php:1200 ../../addon/fbpost/fbpost.php:661 #: ../../addon/public_server/public_server.php:62 -#: ../../addon/testdrive/testdrive.php:67 ../../include/items.php:2993 -#: ../../boot.php:767 +#: ../../addon/testdrive/testdrive.php:67 ../../include/items.php:3296 +#: ../../boot.php:788 msgid "Administrator" msgstr "Administranto" @@ -1905,7 +1978,7 @@ msgid "" "Password reset failed." msgstr "Ne povis konfirmi la peton. (Eble vi sendis ĝin antaŭ.) Pasvorta riparado malsukcesis." -#: ../../mod/lostpass.php:83 ../../boot.php:899 +#: ../../mod/lostpass.php:83 ../../boot.php:925 msgid "Password Reset" msgstr "Pasvorta riparado" @@ -1949,251 +2022,261 @@ msgstr "Salutnomo aŭ retpoŝtadreso: " msgid "Reset" msgstr "Repari" -#: ../../mod/settings.php:50 ../../include/nav.php:137 +#: ../../mod/settings.php:30 ../../include/nav.php:137 msgid "Account settings" msgstr "Konto" -#: ../../mod/settings.php:55 +#: ../../mod/settings.php:35 msgid "Display settings" msgstr "Ekrano" -#: ../../mod/settings.php:61 +#: ../../mod/settings.php:41 msgid "Connector settings" msgstr "Konektiloj" -#: ../../mod/settings.php:66 +#: ../../mod/settings.php:46 msgid "Plugin settings" msgstr "Kromprogramoj" -#: ../../mod/settings.php:71 +#: ../../mod/settings.php:51 msgid "Connected apps" msgstr "Konektitaj programoj" -#: ../../mod/settings.php:76 +#: ../../mod/settings.php:56 msgid "Export personal data" msgstr "Eksporto" -#: ../../mod/settings.php:81 +#: ../../mod/settings.php:61 msgid "Remove account" msgstr "Forigi konton" -#: ../../mod/settings.php:89 ../../mod/admin.php:753 ../../mod/admin.php:958 -#: ../../addon/dav/layout.fnk.php:116 ../../addon/mathjax/mathjax.php:36 -#: ../../view/theme/diabook/theme.php:643 +#: ../../mod/settings.php:69 ../../mod/newmember.php:22 +#: ../../mod/admin.php:785 ../../mod/admin.php:990 +#: ../../addon/dav/friendica/layout.fnk.php:225 +#: ../../addon/mathjax/mathjax.php:36 ../../view/theme/diabook/theme.php:643 #: ../../view/theme/diabook/theme.php:773 ../../include/nav.php:137 msgid "Settings" msgstr "Agordoj" -#: ../../mod/settings.php:133 +#: ../../mod/settings.php:113 msgid "Missing some important data!" msgstr "Mankas importantaj datumoj!" -#: ../../mod/settings.php:136 ../../mod/settings.php:581 +#: ../../mod/settings.php:116 ../../mod/settings.php:569 msgid "Update" msgstr "Ĝisdatigi" -#: ../../mod/settings.php:241 +#: ../../mod/settings.php:221 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:246 +#: ../../mod/settings.php:226 msgid "Email settings updated." msgstr "Retpoŝtagordoj ĝisdatigita" -#: ../../mod/settings.php:305 +#: ../../mod/settings.php:290 msgid "Passwords do not match. Password unchanged." msgstr "La pasvortoj ne estas egala. Pasvorto ne ŝanĝita." -#: ../../mod/settings.php:310 +#: ../../mod/settings.php:295 msgid "Empty passwords are not allowed. Password unchanged." msgstr "Malplenaj pasvortoj ne estas permesita. Pasvorto ne ŝanĝita." -#: ../../mod/settings.php:321 +#: ../../mod/settings.php:306 msgid "Password changed." msgstr "Pasvorto ŝanĝita." -#: ../../mod/settings.php:323 +#: ../../mod/settings.php:308 msgid "Password update failed. Please try again." msgstr "Ĝisdatigo de pasvorto malsukcesis. Bonvolu provi refoje." -#: ../../mod/settings.php:386 +#: ../../mod/settings.php:373 msgid " Please use a shorter name." msgstr " Bonvolu uzi pli mallongan nomon." -#: ../../mod/settings.php:388 +#: ../../mod/settings.php:375 msgid " Name too short." msgstr " Nomo estas tro mallonga." -#: ../../mod/settings.php:394 +#: ../../mod/settings.php:381 msgid " Not valid email." msgstr " Repoŝtadreso ne validas." -#: ../../mod/settings.php:396 +#: ../../mod/settings.php:383 msgid " Cannot change to that email." msgstr " Ne povas ŝanĝi al tio retpoŝtadreso." -#: ../../mod/settings.php:450 +#: ../../mod/settings.php:437 msgid "Private forum has no privacy permissions. Using default privacy group." msgstr "Privata forumo ne havas privatecajn agordojn. Defaŭlta privateca grupo estas uzata." -#: ../../mod/settings.php:454 +#: ../../mod/settings.php:441 msgid "Private forum has no privacy permissions and no default privacy group." msgstr "Privata forumo havas nek privatecajn agordojn nek defaŭltan privatecan grupon." -#: ../../mod/settings.php:484 ../../addon/facebook/facebook.php:495 -#: ../../addon/impressum/impressum.php:77 +#: ../../mod/settings.php:471 ../../addon/facebook/facebook.php:495 +#: ../../addon/fbpost/fbpost.php:144 ../../addon/impressum/impressum.php:78 #: ../../addon/openstreetmap/openstreetmap.php:80 #: ../../addon/mathjax/mathjax.php:66 ../../addon/piwik/piwik.php:105 -#: ../../addon/twitter/twitter.php:382 +#: ../../addon/twitter/twitter.php:389 msgid "Settings updated." msgstr "Agordoj ĝisdatigita." -#: ../../mod/settings.php:554 ../../mod/settings.php:580 -#: ../../mod/settings.php:616 +#: ../../mod/settings.php:542 ../../mod/settings.php:568 +#: ../../mod/settings.php:604 msgid "Add application" msgstr "Aldoni programon" -#: ../../mod/settings.php:558 ../../mod/settings.php:584 -#: ../../addon/statusnet/statusnet.php:561 +#: ../../mod/settings.php:546 ../../mod/settings.php:572 +#: ../../addon/statusnet/statusnet.php:570 msgid "Consumer Key" msgstr "Ŝlosilo de kliento" -#: ../../mod/settings.php:559 ../../mod/settings.php:585 -#: ../../addon/statusnet/statusnet.php:560 +#: ../../mod/settings.php:547 ../../mod/settings.php:573 +#: ../../addon/statusnet/statusnet.php:569 msgid "Consumer Secret" msgstr "Sekreto de kliento" -#: ../../mod/settings.php:560 ../../mod/settings.php:586 +#: ../../mod/settings.php:548 ../../mod/settings.php:574 msgid "Redirect" msgstr "Alidirekto" -#: ../../mod/settings.php:561 ../../mod/settings.php:587 +#: ../../mod/settings.php:549 ../../mod/settings.php:575 msgid "Icon url" msgstr "Piktograma adreso" -#: ../../mod/settings.php:572 +#: ../../mod/settings.php:560 msgid "You can't edit this application." msgstr "Ĉi tio programo ne estas redaktebla." -#: ../../mod/settings.php:615 +#: ../../mod/settings.php:603 msgid "Connected Apps" msgstr "Konektitaj Programoj" -#: ../../mod/settings.php:619 +#: ../../mod/settings.php:607 msgid "Client key starts with" msgstr "Ŝlosilo de kliento komencas kun" -#: ../../mod/settings.php:620 +#: ../../mod/settings.php:608 msgid "No name" msgstr "Neniu nomo" -#: ../../mod/settings.php:621 +#: ../../mod/settings.php:609 msgid "Remove authorization" msgstr "Forviŝi rajtigon" -#: ../../mod/settings.php:632 +#: ../../mod/settings.php:620 msgid "No Plugin settings configured" msgstr "Neniom da kromprogramoagordoj farita" -#: ../../mod/settings.php:640 ../../addon/widgets/widgets.php:123 +#: ../../mod/settings.php:628 ../../addon/widgets/widgets.php:123 msgid "Plugin Settings" msgstr "Kromprogramoagordoj" -#: ../../mod/settings.php:652 ../../mod/settings.php:653 +#: ../../mod/settings.php:640 ../../mod/settings.php:641 #, php-format msgid "Built-in support for %s connectivity is %s" msgstr "Integrita subteno por %s koneto estas %s" -#: ../../mod/settings.php:652 ../../mod/settings.php:653 +#: ../../mod/settings.php:640 ../../mod/settings.php:641 msgid "enabled" msgstr "ŝaltita" -#: ../../mod/settings.php:652 ../../mod/settings.php:653 +#: ../../mod/settings.php:640 ../../mod/settings.php:641 msgid "disabled" msgstr "malŝaltita" -#: ../../mod/settings.php:653 +#: ../../mod/settings.php:641 msgid "StatusNet" msgstr "StatusNet" -#: ../../mod/settings.php:685 +#: ../../mod/settings.php:673 msgid "Email access is disabled on this site." msgstr "Retpoŝta atingo ne disponeblas ĉi tie." -#: ../../mod/settings.php:691 +#: ../../mod/settings.php:679 msgid "Connector Settings" msgstr "Konektiloagordoj" -#: ../../mod/settings.php:696 +#: ../../mod/settings.php:684 msgid "Email/Mailbox Setup" msgstr "Agordoj pri Retpoŝto" -#: ../../mod/settings.php:697 +#: ../../mod/settings.php:685 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 per retpoŝto (nedeviga), bonvolu specifi kiel konekti al vian retpoŝtkonton." -#: ../../mod/settings.php:698 +#: ../../mod/settings.php:686 msgid "Last successful email check:" msgstr "Plej ĵusa sukcesa kontrolo de poŝto:" -#: ../../mod/settings.php:700 +#: ../../mod/settings.php:688 msgid "IMAP server name:" msgstr "Nomo de IMAP servilo:" -#: ../../mod/settings.php:701 +#: ../../mod/settings.php:689 msgid "IMAP port:" msgstr "Numero de IMAP pordo:" -#: ../../mod/settings.php:702 +#: ../../mod/settings.php:690 msgid "Security:" msgstr "Sekureco:" -#: ../../mod/settings.php:702 ../../mod/settings.php:707 +#: ../../mod/settings.php:690 ../../mod/settings.php:695 +#: ../../addon/dav/common/wdcal_edit.inc.php:191 msgid "None" msgstr "Nenio" -#: ../../mod/settings.php:703 +#: ../../mod/settings.php:691 msgid "Email login name:" msgstr "Retpoŝta salutnomo:" -#: ../../mod/settings.php:704 +#: ../../mod/settings.php:692 msgid "Email password:" msgstr "Retpoŝta pasvorto:" -#: ../../mod/settings.php:705 +#: ../../mod/settings.php:693 msgid "Reply-to address:" msgstr "Responda adreso (Reply-to):" -#: ../../mod/settings.php:706 +#: ../../mod/settings.php:694 msgid "Send public posts to all email contacts:" msgstr "Sendu publikajn afiŝojn al ĉiuj retpoŝtkontaktoj:" -#: ../../mod/settings.php:707 +#: ../../mod/settings.php:695 msgid "Action after import:" msgstr "Ago post la importado:" -#: ../../mod/settings.php:707 +#: ../../mod/settings.php:695 msgid "Mark as seen" msgstr "Marki kiel legita" -#: ../../mod/settings.php:707 +#: ../../mod/settings.php:695 msgid "Move to folder" msgstr "Movi al dosierujo" -#: ../../mod/settings.php:708 +#: ../../mod/settings.php:696 msgid "Move to folder:" msgstr "Movi al dosierujo:" -#: ../../mod/settings.php:768 +#: ../../mod/settings.php:727 ../../mod/admin.php:402 +msgid "No special theme for mobile devices" +msgstr "" + +#: ../../mod/settings.php:767 msgid "Display Settings" msgstr "Ekranagordoj" -#: ../../mod/settings.php:774 +#: ../../mod/settings.php:773 ../../mod/settings.php:784 msgid "Display Theme:" msgstr "Vidiga etoso:" +#: ../../mod/settings.php:774 +msgid "Mobile Theme:" +msgstr "" + #: ../../mod/settings.php:775 msgid "Update browser every xx seconds" msgstr "Ĝisdatigu retesplorilon ĉiu xxx sekundoj" @@ -2203,8 +2286,8 @@ msgid "Minimum of 10 seconds, no maximum" msgstr "Minimume 10 sekundoj, sen maksimumo" #: ../../mod/settings.php:776 -msgid "Number of items to display on the network page:" -msgstr "Kvanto da elementoj kiuj estos montrata ĉe la reto paĝo." +msgid "Number of items to display per page:" +msgstr "" #: ../../mod/settings.php:776 msgid "Maximum of 100 items" @@ -2214,274 +2297,278 @@ msgstr "Maksimume 100 eroj" msgid "Don't show emoticons" msgstr "Ne montru ridetulojn" -#: ../../mod/settings.php:848 +#: ../../mod/settings.php:853 msgid "Normal Account Page" msgstr "Normala Kontopaĝo" -#: ../../mod/settings.php:849 +#: ../../mod/settings.php:854 msgid "This account is a normal personal profile" msgstr "Tiu konto estas normala persona profilo" -#: ../../mod/settings.php:852 +#: ../../mod/settings.php:857 msgid "Soapbox Page" msgstr "Soapbox Paĝo" -#: ../../mod/settings.php:853 +#: ../../mod/settings.php:858 msgid "Automatically approve all connection/friend requests as read-only fans" msgstr "Aŭtomate konfirmi ĉiujn kontaktpetojn kiel nurlegaj admirantoj" -#: ../../mod/settings.php:856 +#: ../../mod/settings.php:861 msgid "Community Forum/Celebrity Account" msgstr "Komunuma Forumo/Eminentula Konto" -#: ../../mod/settings.php:857 +#: ../../mod/settings.php:862 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:860 +#: ../../mod/settings.php:865 msgid "Automatic Friend Page" msgstr "Aŭtomata Amiko Paĝo" -#: ../../mod/settings.php:861 +#: ../../mod/settings.php:866 msgid "Automatically approve all connection/friend requests as friends" msgstr "Aŭtomate konfirmi ĉiujn kontaktpetojn kiel amikoj" -#: ../../mod/settings.php:864 +#: ../../mod/settings.php:869 msgid "Private Forum [Experimental]" msgstr "Privata Forumo [eksperimenta]" -#: ../../mod/settings.php:865 +#: ../../mod/settings.php:870 msgid "Private forum - approved members only" msgstr "Privata forumo - nur por aprobitaj membroj" -#: ../../mod/settings.php:877 +#: ../../mod/settings.php:882 msgid "OpenID:" msgstr "OpenID:" -#: ../../mod/settings.php:877 +#: ../../mod/settings.php:882 msgid "(Optional) Allow this OpenID to login to this account." msgstr "(Nedeviga) Permesi atingon al la konton al ĉi tio OpenID." -#: ../../mod/settings.php:887 +#: ../../mod/settings.php:892 msgid "Publish your default profile in your local site directory?" msgstr "Publikigi vian defaŭltan profilon en la loka reteja katalogo?" -#: ../../mod/settings.php:893 +#: ../../mod/settings.php:898 msgid "Publish your default profile in the global social directory?" msgstr "Publikigi vian defaŭltan profilon en la tutmonda interkona katalogo?" -#: ../../mod/settings.php:901 +#: ../../mod/settings.php:906 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:905 +#: ../../mod/settings.php:910 msgid "Hide your profile details from unknown viewers?" msgstr "Kaŝi viajn profilajn detalojn al nekonataj spektantoj?" -#: ../../mod/settings.php:910 +#: ../../mod/settings.php:915 msgid "Allow friends to post to your profile page?" msgstr "Ĉu amikoj povu afiŝi al via profilo?" -#: ../../mod/settings.php:916 +#: ../../mod/settings.php:921 msgid "Allow friends to tag your posts?" msgstr "Ĉu amikoj povu aldoni markojn al viaj afiŝoj?" -#: ../../mod/settings.php:922 +#: ../../mod/settings.php:927 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:928 +#: ../../mod/settings.php:933 msgid "Permit unknown people to send you private mail?" msgstr "Permesigi nekonatulojn sendi retpoŝton al vi?" -#: ../../mod/settings.php:936 +#: ../../mod/settings.php:941 msgid "Profile is not published." msgstr "Profilo ne estas publika." -#: ../../mod/settings.php:939 ../../mod/profile_photo.php:214 +#: ../../mod/settings.php:944 ../../mod/profile_photo.php:248 msgid "or" msgstr "aŭ" -#: ../../mod/settings.php:944 +#: ../../mod/settings.php:949 msgid "Your Identity Address is" msgstr "Via identeca adreso estas" -#: ../../mod/settings.php:955 +#: ../../mod/settings.php:960 msgid "Automatically expire posts after this many days:" msgstr "Automatike senvalidigi afiŝojn post tiom da tagoj:" -#: ../../mod/settings.php:955 +#: ../../mod/settings.php:960 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:956 +#: ../../mod/settings.php:961 msgid "Advanced expiration settings" msgstr "Detalaj agordoj rilate al senvalidiĝo" -#: ../../mod/settings.php:957 +#: ../../mod/settings.php:962 msgid "Advanced Expiration" msgstr "Detala senvalidiĝo" -#: ../../mod/settings.php:958 +#: ../../mod/settings.php:963 msgid "Expire posts:" msgstr "Senvalidigi afiŝojn:" -#: ../../mod/settings.php:959 +#: ../../mod/settings.php:964 msgid "Expire personal notes:" msgstr "Senvalidigi personajn notojn:" -#: ../../mod/settings.php:960 +#: ../../mod/settings.php:965 msgid "Expire starred posts:" msgstr "Senvalidigi steligitajn afiŝojn:" -#: ../../mod/settings.php:961 +#: ../../mod/settings.php:966 msgid "Expire photos:" msgstr "Senvalidigi bildojn:" -#: ../../mod/settings.php:962 +#: ../../mod/settings.php:967 msgid "Only expire posts by others:" msgstr "Nur senvalidigi afiŝojn de aliaj: " -#: ../../mod/settings.php:969 +#: ../../mod/settings.php:974 msgid "Account Settings" msgstr "Kontoagordoj" -#: ../../mod/settings.php:977 +#: ../../mod/settings.php:982 msgid "Password Settings" msgstr "Agordoj pri Pasvorto" -#: ../../mod/settings.php:978 +#: ../../mod/settings.php:983 msgid "New Password:" msgstr "Nova pasvorto:" -#: ../../mod/settings.php:979 +#: ../../mod/settings.php:984 msgid "Confirm:" msgstr "Konfirmi:" -#: ../../mod/settings.php:979 +#: ../../mod/settings.php:984 msgid "Leave password fields blank unless changing" msgstr "Lasu pasvortkampojn malplenaj se vi ne ŝanĝas la pasvorton." -#: ../../mod/settings.php:983 +#: ../../mod/settings.php:988 msgid "Basic Settings" msgstr "Bazaj Agordoj" -#: ../../mod/settings.php:984 ../../include/profile_advanced.php:15 +#: ../../mod/settings.php:989 ../../include/profile_advanced.php:15 msgid "Full Name:" msgstr "Plena Nomo:" -#: ../../mod/settings.php:985 +#: ../../mod/settings.php:990 msgid "Email Address:" msgstr "Retpoŝtadreso:" -#: ../../mod/settings.php:986 +#: ../../mod/settings.php:991 msgid "Your Timezone:" msgstr "Via Horzono:" -#: ../../mod/settings.php:987 +#: ../../mod/settings.php:992 msgid "Default Post Location:" msgstr "Defaŭlta Loko por Afiŝoj:" -#: ../../mod/settings.php:988 +#: ../../mod/settings.php:993 msgid "Use Browser Location:" msgstr "Uzu Lokon laŭ Retesplorilo:" -#: ../../mod/settings.php:991 +#: ../../mod/settings.php:996 msgid "Security and Privacy Settings" msgstr "Agordoj pri Sekureco kaj Privateco" -#: ../../mod/settings.php:993 +#: ../../mod/settings.php:998 msgid "Maximum Friend Requests/Day:" msgstr "Taga maksimumo da kontaktpetoj:" -#: ../../mod/settings.php:993 ../../mod/settings.php:1012 +#: ../../mod/settings.php:998 ../../mod/settings.php:1017 msgid "(to prevent spam abuse)" msgstr "(por malhelpi spamaĵojn)" -#: ../../mod/settings.php:994 +#: ../../mod/settings.php:999 msgid "Default Post Permissions" msgstr "Defaŭltaj permesoj por afiŝoj" -#: ../../mod/settings.php:995 +#: ../../mod/settings.php:1000 msgid "(click to open/close)" msgstr "(klaku por malfermi/fermi)" -#: ../../mod/settings.php:1012 +#: ../../mod/settings.php:1017 msgid "Maximum private messages per day from unknown people:" msgstr "Taga maksimumo da privataj mesaĝoj." -#: ../../mod/settings.php:1015 +#: ../../mod/settings.php:1020 msgid "Notification Settings" msgstr "Agordoj pri Atentigoj" -#: ../../mod/settings.php:1016 +#: ../../mod/settings.php:1021 msgid "By default post a status message when:" msgstr "Defaŭlte afiŝi statmesaĝon okaze de:" -#: ../../mod/settings.php:1017 +#: ../../mod/settings.php:1022 msgid "accepting a friend request" msgstr "akcepti kontaktpeton" -#: ../../mod/settings.php:1018 +#: ../../mod/settings.php:1023 msgid "joining a forum/community" msgstr "aliĝi forumon/komunumon" -#: ../../mod/settings.php:1019 +#: ../../mod/settings.php:1024 msgid "making an interesting profile change" msgstr "fari interesan profilŝanĝon" -#: ../../mod/settings.php:1020 +#: ../../mod/settings.php:1025 msgid "Send a notification email when:" msgstr "Sendu atentiga repoŝton se:" -#: ../../mod/settings.php:1021 +#: ../../mod/settings.php:1026 msgid "You receive an introduction" msgstr "Vi ricevas inviton" -#: ../../mod/settings.php:1022 +#: ../../mod/settings.php:1027 msgid "Your introductions are confirmed" msgstr "Viaj prezentoj estas konfirmata." -#: ../../mod/settings.php:1023 +#: ../../mod/settings.php:1028 msgid "Someone writes on your profile wall" msgstr "Iu skribas je via profila muro." -#: ../../mod/settings.php:1024 +#: ../../mod/settings.php:1029 msgid "Someone writes a followup comment" msgstr "Iu skribas sekvan komenton" -#: ../../mod/settings.php:1025 +#: ../../mod/settings.php:1030 msgid "You receive a private message" msgstr "Vi ricevas privatan mesaĝon." -#: ../../mod/settings.php:1026 +#: ../../mod/settings.php:1031 msgid "You receive a friend suggestion" msgstr "Vi ricevas amikosugeston" -#: ../../mod/settings.php:1027 +#: ../../mod/settings.php:1032 msgid "You are tagged in a post" msgstr "Vi estas markita en afiŝon" -#: ../../mod/settings.php:1030 +#: ../../mod/settings.php:1033 +msgid "You are poked/prodded/etc. in a post" +msgstr "" + +#: ../../mod/settings.php:1036 msgid "Advanced Account/Page Type Settings" msgstr "Detalaj Agordoj pri Tipo de Konto/Paĝo." -#: ../../mod/settings.php:1031 +#: ../../mod/settings.php:1037 msgid "Change the behaviour of this account for special situations" msgstr "Agordi la teniĝon de la konto en specialaj situacioj" -#: ../../mod/manage.php:90 +#: ../../mod/manage.php:91 msgid "Manage Identities and/or Pages" msgstr "Administri identecojn kaj/aŭ paĝojn." -#: ../../mod/manage.php:93 +#: ../../mod/manage.php:94 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 +#: ../../mod/manage.php:96 msgid "Select an identity to manage: " msgstr "Elektu identencon por administrado:" @@ -2569,14 +2656,16 @@ msgstr "La privateco de privataj mesaĝoj al ĉi tiu persono ne ĉiam estas gara msgid "Invalid contact." msgstr "Nevalida kontakto." -#: ../../mod/notes.php:44 ../../boot.php:1602 +#: ../../mod/notes.php:44 ../../boot.php:1696 msgid "Personal Notes" msgstr "Personaj Notoj" #: ../../mod/notes.php:63 ../../mod/filer.php:30 #: ../../addon/facebook/facebook.php:770 -#: ../../addon/privacy_image_cache/privacy_image_cache.php:187 -#: ../../addon/dav/layout.fnk.php:384 ../../include/text.php:677 +#: ../../addon/privacy_image_cache/privacy_image_cache.php:263 +#: ../../addon/fbpost/fbpost.php:267 +#: ../../addon/dav/friendica/layout.fnk.php:441 +#: ../../addon/dav/friendica/layout.fnk.php:488 ../../include/text.php:681 msgid "Save" msgstr "Konservi" @@ -2585,7 +2674,7 @@ msgstr "Konservi" 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:66 +#: ../../mod/wallmessage.php:56 ../../mod/message.php:59 msgid "No recipient selected." msgstr "Neniom da ricevontoj." @@ -2593,15 +2682,15 @@ msgstr "Neniom da ricevontoj." msgid "Unable to check your home location." msgstr "Ne eblas kontroli vian hejmlokon." -#: ../../mod/wallmessage.php:62 ../../mod/message.php:73 +#: ../../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:76 +#: ../../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:79 +#: ../../mod/wallmessage.php:68 ../../mod/message.php:72 msgid "Message sent." msgstr "Mesaĝo estas sendita." @@ -2609,34 +2698,35 @@ msgstr "Mesaĝo estas sendita." msgid "No recipient." msgstr "Neniom da ricevontoj." -#: ../../mod/wallmessage.php:124 ../../mod/message.php:250 -#: ../../include/conversation.php:1020 +#: ../../mod/wallmessage.php:123 ../../mod/wallmessage.php:131 +#: ../../mod/message.php:242 ../../mod/message.php:250 +#: ../../include/conversation.php:1205 ../../include/conversation.php:1222 msgid "Please enter a link URL:" msgstr "Bonvolu entajpu adreson de ligilo:" -#: ../../mod/wallmessage.php:131 ../../mod/message.php:278 +#: ../../mod/wallmessage.php:138 ../../mod/message.php:278 msgid "Send Private Message" msgstr "Sendi Privatan Mesaĝon" -#: ../../mod/wallmessage.php:132 +#: ../../mod/wallmessage.php:139 #, php-format msgid "" "If you wish for %s to respond, please check that the privacy settings on " "your site allow private mail from unknown senders." msgstr "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:279 -#: ../../mod/message.php:462 +#: ../../mod/wallmessage.php:140 ../../mod/message.php:279 +#: ../../mod/message.php:469 msgid "To:" msgstr "Al:" -#: ../../mod/wallmessage.php:134 ../../mod/message.php:284 -#: ../../mod/message.php:464 +#: ../../mod/wallmessage.php:141 ../../mod/message.php:284 +#: ../../mod/message.php:471 msgid "Subject:" msgstr "Temo:" -#: ../../mod/wallmessage.php:140 ../../mod/message.php:288 -#: ../../mod/message.php:467 ../../mod/invite.php:113 +#: ../../mod/wallmessage.php:147 ../../mod/message.php:288 +#: ../../mod/message.php:474 ../../mod/invite.php:113 msgid "Your message:" msgstr "Via mesaĝo:" @@ -2656,21 +2746,33 @@ msgid "" "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:14 +msgid "Getting Started" +msgstr "" #: ../../mod/newmember.php:18 +msgid "Friendica Walk-Through" +msgstr "" + +#: ../../mod/newmember.php:18 +msgid "" +"On your Quick Start page - find a brief introduction to your " +"profile and network tabs, make some new connections, and find some groups to" +" join." +msgstr "" + +#: ../../mod/newmember.php:26 +msgid "Go to Your Settings" +msgstr "" + +#: ../../mod/newmember.php:26 msgid "" "On your 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 +#: ../../mod/newmember.php:28 msgid "" "Review the other settings, particularly the privacy settings. An unpublished" " directory listing is like having an unlisted phone number. In general, you " @@ -2678,61 +2780,106 @@ msgid "" "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 +#: ../../mod/newmember.php:32 ../../mod/profperm.php:103 +#: ../../view/theme/diabook/theme.php:128 ../../include/profile_advanced.php:7 +#: ../../include/profile_advanced.php:84 ../../include/nav.php:50 +#: ../../boot.php:1672 +msgid "Profile" +msgstr "Profilo" + +#: ../../mod/newmember.php:36 ../../mod/profile_photo.php:244 +msgid "Upload Profile Photo" +msgstr "Alŝuti profilbildon" + +#: ../../mod/newmember.php:36 msgid "" "Upload a profile photo if you have not done so already. Studies have shown " "that people with real photos of themselves are ten times more likely to make" " friends than people who do not." msgstr "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:38 +msgid "Edit Your Profile" +msgstr "" -#: ../../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 pere de via retkesto." - -#: ../../mod/newmember.php:34 +#: ../../mod/newmember.php:38 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 +#: ../../mod/newmember.php:40 +msgid "Profile Keywords" +msgstr "" + +#: ../../mod/newmember.php:40 msgid "" "Set some public keywords for your default profile which describe your " "interests. We may be able to find other people with similar interests and " "suggest friendships." msgstr "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 +#: ../../mod/newmember.php:44 +msgid "Connecting" +msgstr "" + +#: ../../mod/newmember.php:49 ../../mod/newmember.php:51 +#: ../../addon/facebook/facebook.php:728 ../../addon/fbpost/fbpost.php:239 +#: ../../include/contact_selectors.php:81 +msgid "Facebook" +msgstr "Facebook" + +#: ../../mod/newmember.php:49 +msgid "" +"Authorise the Facebook Connector if you currently have a Facebook account " +"and we will (optionally) import all your Facebook friends and conversations." +msgstr "Rajtigu la Facebook Konektilon se vi nuntempe havas Facebook konton, kaj ni (nedeviga) enportu viajn Facebook amikojn kaj konversaciojn." + +#: ../../mod/newmember.php:51 +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:56 +msgid "Importing Emails" +msgstr "" + +#: ../../mod/newmember.php:56 +msgid "" +"Enter your email access information on your Connector Settings page if you " +"wish to import and interact with friends or mailing lists from your email " +"INBOX" +msgstr "Entajpu la akreditaĵojn por via retpoŝtkonto en la konektilagordoj se vi volas importi aŭ interagi kun amikoj aŭ dissendlistoj pere de via retkesto." + +#: ../../mod/newmember.php:58 +msgid "Go to Your Contacts Page" +msgstr "" + +#: ../../mod/newmember.php:58 msgid "" "Your Contacts page is your gateway to managing friendships and connecting " "with friends on other networks. Typically you enter their address or site " "URL in the 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 +#: ../../mod/newmember.php:60 +msgid "Go to Your Site's Directory" +msgstr "" + +#: ../../mod/newmember.php:60 msgid "" "The Directory page lets you find other people in this network or other " "federated sites. Look for a 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 +#: ../../mod/newmember.php:62 +msgid "Finding New People" +msgstr "" + +#: ../../mod/newmember.php:62 msgid "" "On the side panel of the Contacts page are several tools to find new " "friends. We can match people by interest, look up people by name or " @@ -2741,14 +2888,41 @@ msgid "" "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 +#: ../../mod/newmember.php:66 ../../include/group.php:239 +msgid "Groups" +msgstr "Grupoj" + +#: ../../mod/newmember.php:70 +msgid "Group Your Contacts" +msgstr "" + +#: ../../mod/newmember.php:70 msgid "" "Once you have made some friends, organize them into private conversation " "groups from the sidebar of your Contacts page and then you can interact with" " each group privately on your Network page." msgstr "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 +#: ../../mod/newmember.php:73 +msgid "Why Aren't My Posts Public?" +msgstr "" + +#: ../../mod/newmember.php:73 +msgid "" +"Friendica respects your privacy. By default, your posts will only show up to" +" people you've added as friends. For more information, see the help section " +"from the link above." +msgstr "" + +#: ../../mod/newmember.php:78 +msgid "Getting Help" +msgstr "" + +#: ../../mod/newmember.php:82 +msgid "Go to the Help Section" +msgstr "" + +#: ../../mod/newmember.php:82 msgid "" "Our help pages may be consulted for detail on other program" " features and resources." @@ -2778,7 +2952,7 @@ msgstr "Grupo ne estas trovita." msgid "Group name changed." msgstr "La nomo de la grupo estas ŝanĝita." -#: ../../mod/group.php:72 ../../mod/profperm.php:19 ../../index.php:308 +#: ../../mod/group.php:72 ../../mod/profperm.php:19 ../../index.php:316 msgid "Permission denied" msgstr "Malpermesita" @@ -2818,12 +2992,6 @@ msgstr "Nevaliada profila identigilo." msgid "Profile Visibility Editor" msgstr "Redaktilo por profila videbleco." -#: ../../mod/profperm.php:103 ../../view/theme/diabook/theme.php:128 -#: ../../include/profile_advanced.php:7 ../../include/profile_advanced.php:84 -#: ../../include/nav.php:50 ../../boot.php:1581 -msgid "Profile" -msgstr "Profilo" - #: ../../mod/profperm.php:114 msgid "Visible To" msgstr "Videbla Al" @@ -2836,7 +3004,7 @@ msgstr "Ĉiuj Kontaktoj (kun sekura atingo al la profilo)" msgid "No contacts." msgstr "Neniu kontaktojn." -#: ../../mod/viewcontacts.php:76 ../../include/text.php:614 +#: ../../mod/viewcontacts.php:76 ../../include/text.php:618 msgid "View Contacts" msgstr "Vidi Kontaktojn" @@ -2873,58 +3041,58 @@ msgid "" "Please try again tomorrow." msgstr "La retejo transiras la maksimuman kvanton da ĉiutagaj kontaj registradoj. Bonvolu provi denove morgaŭ." -#: ../../mod/register.php:215 +#: ../../mod/register.php:217 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 per OpenID se vi provizas vian OpenID adreson kaj klakas 'Registri'." -#: ../../mod/register.php:216 +#: ../../mod/register.php:218 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:217 +#: ../../mod/register.php:219 msgid "Your OpenID (optional): " msgstr "Via OpenID (nedeviga):" -#: ../../mod/register.php:231 +#: ../../mod/register.php:233 msgid "Include your profile in member directory?" msgstr "Aldoni vian profilon al la membrokatalogo?" -#: ../../mod/register.php:251 +#: ../../mod/register.php:255 msgid "Membership on this site is by invitation only." msgstr "Membriĝi ĉi tie nur eblas laŭ invito." -#: ../../mod/register.php:252 +#: ../../mod/register.php:256 msgid "Your invitation ID: " msgstr "Via invita idento: " -#: ../../mod/register.php:255 ../../mod/admin.php:423 +#: ../../mod/register.php:259 ../../mod/admin.php:444 msgid "Registration" msgstr "Registrado" -#: ../../mod/register.php:263 +#: ../../mod/register.php:267 msgid "Your Full Name (e.g. Joe Smith): " msgstr "Via Plena Nomo (e.g. Joe Smith): " -#: ../../mod/register.php:264 +#: ../../mod/register.php:268 msgid "Your Email Address: " msgstr "Via Retpoŝtadreso: " -#: ../../mod/register.php:265 +#: ../../mod/register.php:269 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:266 +#: ../../mod/register.php:270 msgid "Choose a nickname: " msgstr "Elektu kaŝnomon: " -#: ../../mod/register.php:269 ../../include/nav.php:81 ../../boot.php:865 +#: ../../mod/register.php:273 ../../include/nav.php:81 ../../boot.php:887 msgid "Register" msgstr "Registri" @@ -2932,33 +3100,33 @@ msgstr "Registri" msgid "People Search" msgstr "Serĉi Membrojn" -#: ../../mod/like.php:145 ../../mod/like.php:298 ../../mod/tagger.php:70 -#: ../../addon/facebook/facebook.php:1586 +#: ../../mod/like.php:145 ../../mod/like.php:298 ../../mod/tagger.php:62 +#: ../../addon/facebook/facebook.php:1598 #: ../../addon/communityhome/communityhome.php:158 #: ../../addon/communityhome/communityhome.php:167 #: ../../view/theme/diabook/theme.php:565 -#: ../../view/theme/diabook/theme.php:574 ../../include/diaspora.php:1793 -#: ../../include/conversation.php:109 ../../include/conversation.php:118 -#: ../../include/conversation.php:182 ../../include/conversation.php:191 +#: ../../view/theme/diabook/theme.php:574 ../../include/diaspora.php:1824 +#: ../../include/conversation.php:120 ../../include/conversation.php:129 +#: ../../include/conversation.php:248 ../../include/conversation.php:257 msgid "status" msgstr "staton" -#: ../../mod/like.php:162 ../../addon/facebook/facebook.php:1590 +#: ../../mod/like.php:162 ../../addon/facebook/facebook.php:1602 #: ../../addon/communityhome/communityhome.php:172 -#: ../../view/theme/diabook/theme.php:579 ../../include/diaspora.php:1809 -#: ../../include/conversation.php:126 +#: ../../view/theme/diabook/theme.php:579 ../../include/diaspora.php:1840 +#: ../../include/conversation.php:136 #, php-format msgid "%1$s likes %2$s's %3$s" msgstr "%1$s ŝatas la %3$s de %2$s" -#: ../../mod/like.php:164 ../../include/conversation.php:129 +#: ../../mod/like.php:164 ../../include/conversation.php:139 #, 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:159 -#: ../../mod/admin.php:702 ../../mod/admin.php:901 ../../mod/display.php:37 -#: ../../mod/display.php:142 ../../include/items.php:3472 +#: ../../mod/admin.php:734 ../../mod/admin.php:933 ../../mod/display.php:29 +#: ../../mod/display.php:145 ../../include/items.php:3774 msgid "Item not found." msgstr "Elemento ne estas trovita." @@ -2967,7 +3135,7 @@ msgid "Access denied." msgstr "Atingo nepermesita." #: ../../mod/fbrowser.php:25 ../../view/theme/diabook/theme.php:130 -#: ../../include/nav.php:51 ../../boot.php:1587 +#: ../../include/nav.php:51 ../../boot.php:1679 msgid "Photos" msgstr "Bildoj" @@ -2988,105 +3156,119 @@ msgstr "Registraĵo por %s senvalidigita." msgid "Please login." msgstr "Bonvolu ensaluti." -#: ../../mod/item.php:90 +#: ../../mod/item.php:91 msgid "Unable to locate original post." msgstr "Ne eblas trovi originalan afiŝon." -#: ../../mod/item.php:274 +#: ../../mod/item.php:275 msgid "Empty post discarded." msgstr "Forviŝis malplenan afiŝon." -#: ../../mod/item.php:395 ../../mod/wall_upload.php:122 -#: ../../mod/wall_upload.php:131 ../../mod/wall_upload.php:138 +#: ../../mod/item.php:407 ../../mod/wall_upload.php:133 +#: ../../mod/wall_upload.php:142 ../../mod/wall_upload.php:149 #: ../../include/message.php:144 msgid "Wall Photos" msgstr "Muraj Bildoj" -#: ../../mod/item.php:800 +#: ../../mod/item.php:820 msgid "System error. Post not saved." msgstr "Sistema eraro. Afiŝo ne registrita." -#: ../../mod/item.php:825 +#: ../../mod/item.php:845 #, 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:827 +#: ../../mod/item.php:847 #, php-format msgid "You may visit them online at %s" msgstr "Vi povas viziti ilin rete ĉe %s" -#: ../../mod/item.php:828 +#: ../../mod/item.php:848 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:830 +#: ../../mod/item.php:850 #, php-format msgid "%s posted an update." msgstr "%s publikigis afiŝon." -#: ../../mod/profile_photo.php:30 +#: ../../mod/mood.php:62 ../../include/conversation.php:226 +#, php-format +msgid "%1$s is currently %2$s" +msgstr "" + +#: ../../mod/mood.php:133 +msgid "Mood" +msgstr "" + +#: ../../mod/mood.php:134 +msgid "Set your current mood and tell your friends" +msgstr "" + +#: ../../mod/profile_photo.php:44 msgid "Image uploaded but image cropping failed." msgstr "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:273 +#: ../../mod/profile_photo.php:77 ../../mod/profile_photo.php:84 +#: ../../mod/profile_photo.php:91 ../../mod/profile_photo.php:308 #, php-format msgid "Image size reduction [%s] failed." msgstr "Malsukcesis malpligrandigi [%s] la bildon." -#: ../../mod/profile_photo.php:91 +#: ../../mod/profile_photo.php:118 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 +#: ../../mod/profile_photo.php:128 msgid "Unable to process image" msgstr "Ne eblas procezi bildon." -#: ../../mod/profile_photo.php:117 ../../mod/wall_upload.php:77 +#: ../../mod/profile_photo.php:144 ../../mod/wall_upload.php:88 #, php-format msgid "Image exceeds size limit of %d" msgstr "Bildo estas pli granda ol la limito %d" -#: ../../mod/profile_photo.php:210 +#: ../../mod/profile_photo.php:242 msgid "Upload File:" msgstr "Alŝuti dosieron:" -#: ../../mod/profile_photo.php:211 -msgid "Upload Profile Photo" -msgstr "Alŝuti profilbildon" +#: ../../mod/profile_photo.php:243 +msgid "Select a profile:" +msgstr "" -#: ../../mod/profile_photo.php:212 +#: ../../mod/profile_photo.php:245 +#: ../../addon/dav/friendica/layout.fnk.php:152 msgid "Upload" msgstr "Alŝuti" -#: ../../mod/profile_photo.php:214 +#: ../../mod/profile_photo.php:248 msgid "skip this step" msgstr "Preterpasi tian paŝon" -#: ../../mod/profile_photo.php:214 +#: ../../mod/profile_photo.php:248 msgid "select a photo from your photo albums" msgstr "elekti bildon el viaj albumoj" -#: ../../mod/profile_photo.php:227 +#: ../../mod/profile_photo.php:262 msgid "Crop Image" msgstr "Stuci Bildon" -#: ../../mod/profile_photo.php:228 +#: ../../mod/profile_photo.php:263 msgid "Please adjust the image cropping for optimum viewing." msgstr "Bonvolu agordi la stuco de la bildo por optimuma aspekto." -#: ../../mod/profile_photo.php:230 +#: ../../mod/profile_photo.php:265 msgid "Done Editing" msgstr "Finigi Redaktado" -#: ../../mod/profile_photo.php:264 +#: ../../mod/profile_photo.php:299 msgid "Image uploaded successfully." msgstr "Bildo estas sukcese enŝutita." @@ -3112,15 +3294,15 @@ msgstr "Bonvolu entajpi vian pasvorton por kontrolado:" msgid "New Message" msgstr "Nova Mesaĝo" -#: ../../mod/message.php:70 +#: ../../mod/message.php:63 msgid "Unable to locate contact information." msgstr "Ne eblas trovi kontaktajn informojn." -#: ../../mod/message.php:198 +#: ../../mod/message.php:191 msgid "Message deleted." msgstr "Mesaĝo estas forviŝita." -#: ../../mod/message.php:228 +#: ../../mod/message.php:221 msgid "Conversation removed." msgstr "Dialogo estas forviŝita." @@ -3143,7 +3325,7 @@ msgstr "Vi kaj %s" msgid "%s and You" msgstr "%s kaj vi" -#: ../../mod/message.php:350 ../../mod/message.php:455 +#: ../../mod/message.php:350 ../../mod/message.php:462 msgid "Delete conversation" msgstr "Forviŝi dialogon" @@ -3151,28 +3333,28 @@ msgstr "Forviŝi dialogon" msgid "D, d M Y - g:i A" msgstr "D, d M Y - g:i A" -#: ../../mod/message.php:355 +#: ../../mod/message.php:356 #, php-format msgid "%d message" msgid_plural "%d messages" msgstr[0] "%d mesaĝo" msgstr[1] "%d mesaĝoj" -#: ../../mod/message.php:390 +#: ../../mod/message.php:391 msgid "Message not available." msgstr "Mesaĝo nedisponebla." -#: ../../mod/message.php:438 +#: ../../mod/message.php:444 msgid "Delete message" msgstr "Forviŝu mesaĝon" -#: ../../mod/message.php:457 +#: ../../mod/message.php:464 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:461 +#: ../../mod/message.php:468 msgid "Send Reply" msgstr "Respondi" @@ -3189,19 +3371,19 @@ msgstr "Neniom da amiko al montri." msgid "Theme settings updated." msgstr "Gisdatigis agordojn pri etosoj." -#: ../../mod/admin.php:96 ../../mod/admin.php:421 +#: ../../mod/admin.php:96 ../../mod/admin.php:442 msgid "Site" msgstr "Retejo" -#: ../../mod/admin.php:97 ../../mod/admin.php:657 ../../mod/admin.php:669 +#: ../../mod/admin.php:97 ../../mod/admin.php:688 ../../mod/admin.php:701 msgid "Users" msgstr "Uzantoj" -#: ../../mod/admin.php:98 ../../mod/admin.php:751 ../../mod/admin.php:793 +#: ../../mod/admin.php:98 ../../mod/admin.php:783 ../../mod/admin.php:825 msgid "Plugins" msgstr "Kromprogramoj" -#: ../../mod/admin.php:99 ../../mod/admin.php:956 ../../mod/admin.php:992 +#: ../../mod/admin.php:99 ../../mod/admin.php:988 ../../mod/admin.php:1024 msgid "Themes" msgstr "Etosoj" @@ -3209,7 +3391,7 @@ msgstr "Etosoj" msgid "DB updates" msgstr "DB ĝisdatigoj" -#: ../../mod/admin.php:115 ../../mod/admin.php:122 ../../mod/admin.php:1079 +#: ../../mod/admin.php:115 ../../mod/admin.php:122 ../../mod/admin.php:1111 msgid "Logs" msgstr "Protokoloj" @@ -3225,19 +3407,19 @@ msgstr "Kromprogramaj Trajtoj" msgid "User registrations waiting for confirmation" msgstr "Uzantaj registradoj atendante konfirmon" -#: ../../mod/admin.php:183 ../../mod/admin.php:639 +#: ../../mod/admin.php:183 ../../mod/admin.php:669 msgid "Normal Account" msgstr "Normala konto" -#: ../../mod/admin.php:184 ../../mod/admin.php:640 +#: ../../mod/admin.php:184 ../../mod/admin.php:670 msgid "Soapbox Account" msgstr "Soapbox Konto" -#: ../../mod/admin.php:185 ../../mod/admin.php:641 +#: ../../mod/admin.php:185 ../../mod/admin.php:671 msgid "Community/Celebrity Account" msgstr "Komunuma/eminentula Konto" -#: ../../mod/admin.php:186 ../../mod/admin.php:642 +#: ../../mod/admin.php:186 ../../mod/admin.php:672 msgid "Automatic Friend Account" msgstr "Aŭtomata Amika Konto" @@ -3253,9 +3435,9 @@ msgstr "Privata Forumo" msgid "Message queues" msgstr "Mesaĝvicoj" -#: ../../mod/admin.php:212 ../../mod/admin.php:420 ../../mod/admin.php:656 -#: ../../mod/admin.php:750 ../../mod/admin.php:792 ../../mod/admin.php:955 -#: ../../mod/admin.php:991 ../../mod/admin.php:1078 +#: ../../mod/admin.php:212 ../../mod/admin.php:441 ../../mod/admin.php:687 +#: ../../mod/admin.php:782 ../../mod/admin.php:824 ../../mod/admin.php:987 +#: ../../mod/admin.php:1023 ../../mod/admin.php:1110 msgid "Administration" msgstr "Administrado" @@ -3279,560 +3461,610 @@ msgstr "Versio" msgid "Active plugins" msgstr "Ŝaltitaj kromprogramoj" -#: ../../mod/admin.php:359 +#: ../../mod/admin.php:373 msgid "Site settings updated." msgstr "Ĝisdatigis retejaj agordoj." -#: ../../mod/admin.php:407 +#: ../../mod/admin.php:428 msgid "Closed" msgstr "Ferma" -#: ../../mod/admin.php:408 +#: ../../mod/admin.php:429 msgid "Requires approval" msgstr "Bezonas aprobon" -#: ../../mod/admin.php:409 +#: ../../mod/admin.php:430 msgid "Open" msgstr "Malferma" -#: ../../mod/admin.php:413 +#: ../../mod/admin.php:434 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:414 +#: ../../mod/admin.php:435 msgid "Force all links to use SSL" msgstr "Devigi ke ĉiuj ligiloj uzu SSL." -#: ../../mod/admin.php:415 +#: ../../mod/admin.php:436 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:424 +#: ../../mod/admin.php:445 msgid "File upload" msgstr "Alŝuto" -#: ../../mod/admin.php:425 +#: ../../mod/admin.php:446 msgid "Policies" msgstr "Politiko" -#: ../../mod/admin.php:426 +#: ../../mod/admin.php:447 msgid "Advanced" msgstr "Altnivela" -#: ../../mod/admin.php:430 ../../addon/statusnet/statusnet.php:558 +#: ../../mod/admin.php:451 ../../addon/statusnet/statusnet.php:567 msgid "Site name" msgstr "Nomo de retejo" -#: ../../mod/admin.php:431 +#: ../../mod/admin.php:452 msgid "Banner/Logo" msgstr "Emblemo" -#: ../../mod/admin.php:432 +#: ../../mod/admin.php:453 msgid "System language" msgstr "Sistema lingvo" -#: ../../mod/admin.php:433 +#: ../../mod/admin.php:454 msgid "System theme" msgstr "Sistema etoso" -#: ../../mod/admin.php:433 +#: ../../mod/admin.php:454 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:434 +#: ../../mod/admin.php:455 +msgid "Mobile system theme" +msgstr "" + +#: ../../mod/admin.php:455 +msgid "Theme for mobile devices" +msgstr "" + +#: ../../mod/admin.php:456 msgid "SSL link policy" msgstr "Strategio por SSL ligiloj" -#: ../../mod/admin.php:434 +#: ../../mod/admin.php:456 msgid "Determines whether generated links should be forced to use SSL" msgstr "Difinas ĉu generotaj ligiloj devige uzu SSL." -#: ../../mod/admin.php:435 +#: ../../mod/admin.php:457 msgid "Maximum image size" msgstr "Maksimuma bildgrando" -#: ../../mod/admin.php:435 +#: ../../mod/admin.php:457 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:437 +#: ../../mod/admin.php:458 +msgid "Maximum image length" +msgstr "" + +#: ../../mod/admin.php:458 +msgid "" +"Maximum length in pixels of the longest side of uploaded images. Default is " +"-1, which means no limits." +msgstr "" + +#: ../../mod/admin.php:459 +msgid "JPEG image quality" +msgstr "" + +#: ../../mod/admin.php:459 +msgid "" +"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " +"100, which is full quality." +msgstr "" + +#: ../../mod/admin.php:461 msgid "Register policy" msgstr "Interkonsento pri registrado" -#: ../../mod/admin.php:438 +#: ../../mod/admin.php:462 msgid "Register text" msgstr "Interkonsento teksto" -#: ../../mod/admin.php:438 +#: ../../mod/admin.php:462 msgid "Will be displayed prominently on the registration page." msgstr "Tio estos eminente montrata en la registro paĝo." -#: ../../mod/admin.php:439 +#: ../../mod/admin.php:463 msgid "Accounts abandoned after x days" msgstr "Kontoj forlasitaj post x tagoj" -#: ../../mod/admin.php:439 +#: ../../mod/admin.php:463 msgid "" "Will not waste system resources polling external sites for abandonded " "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:440 +#: ../../mod/admin.php:464 msgid "Allowed friend domains" msgstr "Permesitaj amikaj domainoj" -#: ../../mod/admin.php:440 +#: ../../mod/admin.php:464 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:441 +#: ../../mod/admin.php:465 msgid "Allowed email domains" msgstr "Permesitaj retpoŝtaj domajnoj" -#: ../../mod/admin.php:441 +#: ../../mod/admin.php:465 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:442 +#: ../../mod/admin.php:466 msgid "Block public" msgstr "Bloki publike" -#: ../../mod/admin.php:442 +#: ../../mod/admin.php:466 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:443 +#: ../../mod/admin.php:467 msgid "Force publish" msgstr "Devigi publikigon" -#: ../../mod/admin.php:443 +#: ../../mod/admin.php:467 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:444 +#: ../../mod/admin.php:468 msgid "Global directory update URL" msgstr "Ĝenerala adreso por ĝisdatigi la katalogon" -#: ../../mod/admin.php:444 +#: ../../mod/admin.php:468 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:446 +#: ../../mod/admin.php:469 +msgid "Allow threaded items" +msgstr "" + +#: ../../mod/admin.php:469 +msgid "Allow infinite level threading for items on this site." +msgstr "" + +#: ../../mod/admin.php:470 +msgid "Private posts by default for new users" +msgstr "" + +#: ../../mod/admin.php:470 +msgid "" +"Set default post permissions for all new members to the default privacy " +"group rather than public." +msgstr "" + +#: ../../mod/admin.php:472 msgid "Block multiple registrations" msgstr "Bloki pluroblajn registradojn." -#: ../../mod/admin.php:446 +#: ../../mod/admin.php:472 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:447 +#: ../../mod/admin.php:473 msgid "OpenID support" msgstr "Subteno por OpenID" -#: ../../mod/admin.php:447 +#: ../../mod/admin.php:473 msgid "OpenID support for registration and logins." msgstr "Subteni OpenID por registrado kaj ensaluto." -#: ../../mod/admin.php:448 +#: ../../mod/admin.php:474 msgid "Fullname check" msgstr "Kontroli plenan nomon" -#: ../../mod/admin.php:448 +#: ../../mod/admin.php:474 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:449 +#: ../../mod/admin.php:475 msgid "UTF-8 Regular expressions" msgstr "UTF-8 regulaj exprimoj" -#: ../../mod/admin.php:449 +#: ../../mod/admin.php:475 msgid "Use PHP UTF8 regular expressions" msgstr "Uzi PHP UTF8 regulajn esprimojn." -#: ../../mod/admin.php:450 +#: ../../mod/admin.php:476 msgid "Show Community Page" msgstr "Montri Komunuma Paĝo" -#: ../../mod/admin.php:450 +#: ../../mod/admin.php:476 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:451 +#: ../../mod/admin.php:477 msgid "Enable OStatus support" msgstr "Ŝalti subtenon por OStatus" -#: ../../mod/admin.php:451 +#: ../../mod/admin.php:477 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:452 +#: ../../mod/admin.php:478 msgid "Enable Diaspora support" msgstr "Ŝalti subtenon por Diaspora" -#: ../../mod/admin.php:452 +#: ../../mod/admin.php:478 msgid "Provide built-in Diaspora network compatibility." msgstr "Provizi integritan Diaspora subtenon." -#: ../../mod/admin.php:453 +#: ../../mod/admin.php:479 msgid "Only allow Friendica contacts" msgstr "Nur permesigi Friendica kontaktojn" -#: ../../mod/admin.php:453 +#: ../../mod/admin.php:479 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:454 +#: ../../mod/admin.php:480 msgid "Verify SSL" msgstr "Kontroli SSL" -#: ../../mod/admin.php:454 +#: ../../mod/admin.php:480 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:455 +#: ../../mod/admin.php:481 msgid "Proxy user" msgstr "Uzantnomo por retperanto" -#: ../../mod/admin.php:456 +#: ../../mod/admin.php:482 msgid "Proxy URL" msgstr "URL adreso de retperanto" -#: ../../mod/admin.php:457 +#: ../../mod/admin.php:483 msgid "Network timeout" msgstr "Reta tempolimo" -#: ../../mod/admin.php:457 +#: ../../mod/admin.php:483 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:458 +#: ../../mod/admin.php:484 msgid "Delivery interval" msgstr "Intervalo de liverado" -#: ../../mod/admin.php:458 +#: ../../mod/admin.php:484 msgid "" "Delay background delivery processes by this many seconds to reduce system " "load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " "for large dedicated servers." msgstr "Malfruigi fonan liveradon dum tiom da sekundoj por malpliigi la ŝargon de la sistemo. Rekomendoj: 4-5 por komunaj serviloj, 2-3 por virtualaj privataj serviloj, 0-1 por grandaj dediĉitaj serviloj." -#: ../../mod/admin.php:459 +#: ../../mod/admin.php:485 msgid "Poll interval" msgstr "Enketintervalo" -#: ../../mod/admin.php:459 +#: ../../mod/admin.php:485 msgid "" "Delay background polling processes by this many seconds to reduce system " "load. If 0, use delivery interval." msgstr "Malfruigi fonajn enketprocesojn je tiom da sekundoj por malpliigi la ŝargon de la sistemo. Se 0, uzas la liverintervalon." -#: ../../mod/admin.php:460 +#: ../../mod/admin.php:486 msgid "Maximum Load Average" msgstr "Maksimuma Meza Sistemŝargo" -#: ../../mod/admin.php:460 +#: ../../mod/admin.php:486 msgid "" "Maximum system load before delivery and poll processes are deferred - " "default 50." msgstr "Maksimuma sistemŝargo post kiu livero- kaj enketprocesoj estos prokrastinataj. - Defaŭlte 50." -#: ../../mod/admin.php:474 +#: ../../mod/admin.php:503 msgid "Update has been marked successful" msgstr "Ĝisdatigo estas markita sukcesa" -#: ../../mod/admin.php:484 +#: ../../mod/admin.php:513 #, php-format msgid "Executing %s failed. Check system logs." msgstr "Ne sukcesis plenumi %s. Kontrolu la sistemprotokolojn." -#: ../../mod/admin.php:487 +#: ../../mod/admin.php:516 #, php-format msgid "Update %s was successfully applied." msgstr "Sukcese aplikis la ĝisdatigo %s." -#: ../../mod/admin.php:491 +#: ../../mod/admin.php:520 #, php-format msgid "Update %s did not return a status. Unknown if it succeeded." msgstr "Ĝisdatigo %s ne liveris elirstaton. " -#: ../../mod/admin.php:494 +#: ../../mod/admin.php:523 #, php-format msgid "Update function %s could not be found." msgstr "Ne troveblas ĝisdatigo funkcio %s." -#: ../../mod/admin.php:509 +#: ../../mod/admin.php:538 msgid "No failed updates." msgstr "Neniom da malsukcesaj ĝisdatigoj." -#: ../../mod/admin.php:513 +#: ../../mod/admin.php:542 msgid "Failed Updates" msgstr "Malsukcesaj Ĝisdatigoj" -#: ../../mod/admin.php:514 +#: ../../mod/admin.php:543 msgid "" "This does not include updates prior to 1139, which did not return a status." msgstr "Ne inkluzivas ĝisdatigojn antaŭ 1139, kiuj ne liveris elirstaton." -#: ../../mod/admin.php:515 +#: ../../mod/admin.php:544 msgid "Mark success (if update was manually applied)" msgstr "Marki sukcesa (se la ĝisdatigo estas instalita mane)" -#: ../../mod/admin.php:516 +#: ../../mod/admin.php:545 msgid "Attempt to execute this update step automatically" msgstr "Provi automate plenumi ĉi tian paŝon de la ĝisdatigo." -#: ../../mod/admin.php:541 +#: ../../mod/admin.php:570 #, 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:548 +#: ../../mod/admin.php:577 #, 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:587 +#: ../../mod/admin.php:616 #, php-format msgid "User '%s' deleted" msgstr "Uzanto '%s' forviŝita" -#: ../../mod/admin.php:595 +#: ../../mod/admin.php:624 #, php-format msgid "User '%s' unblocked" msgstr "Uzanto '%s' malblokita" -#: ../../mod/admin.php:595 +#: ../../mod/admin.php:624 #, php-format msgid "User '%s' blocked" msgstr "Uzanto '%s' blokita" -#: ../../mod/admin.php:659 +#: ../../mod/admin.php:690 msgid "select all" msgstr "elekti ĉiujn" -#: ../../mod/admin.php:660 +#: ../../mod/admin.php:691 msgid "User registrations waiting for confirm" msgstr "Registriĝoj atendante aprobon" -#: ../../mod/admin.php:661 +#: ../../mod/admin.php:692 msgid "Request date" msgstr "Dato de peto" -#: ../../mod/admin.php:661 ../../mod/admin.php:670 +#: ../../mod/admin.php:692 ../../mod/admin.php:702 #: ../../include/contact_selectors.php:79 msgid "Email" msgstr "Retpoŝto" -#: ../../mod/admin.php:662 +#: ../../mod/admin.php:693 msgid "No registrations." msgstr "Neniom da registriĝoj." -#: ../../mod/admin.php:664 +#: ../../mod/admin.php:695 msgid "Deny" msgstr "Negi" -#: ../../mod/admin.php:670 +#: ../../mod/admin.php:699 +msgid "Site admin" +msgstr "" + +#: ../../mod/admin.php:702 msgid "Register date" msgstr "Dato de registrado" -#: ../../mod/admin.php:670 +#: ../../mod/admin.php:702 msgid "Last login" msgstr "Plej ĵusa ensaluto" -#: ../../mod/admin.php:670 +#: ../../mod/admin.php:702 msgid "Last item" msgstr "Plej ĵusa elemento" -#: ../../mod/admin.php:670 +#: ../../mod/admin.php:702 msgid "Account" msgstr "Konto" -#: ../../mod/admin.php:672 +#: ../../mod/admin.php:704 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:673 +#: ../../mod/admin.php:705 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:714 +#: ../../mod/admin.php:746 #, php-format msgid "Plugin %s disabled." msgstr "Kromprogramo %s estas malŝaltita." -#: ../../mod/admin.php:718 +#: ../../mod/admin.php:750 #, php-format msgid "Plugin %s enabled." msgstr "Kromprogramo %s estas ŝaltita." -#: ../../mod/admin.php:728 ../../mod/admin.php:926 +#: ../../mod/admin.php:760 ../../mod/admin.php:958 msgid "Disable" msgstr "Malŝalti" -#: ../../mod/admin.php:730 ../../mod/admin.php:928 +#: ../../mod/admin.php:762 ../../mod/admin.php:960 msgid "Enable" msgstr "Ŝalti" -#: ../../mod/admin.php:752 ../../mod/admin.php:957 +#: ../../mod/admin.php:784 ../../mod/admin.php:989 msgid "Toggle" msgstr "Ŝalti/Malŝalti" -#: ../../mod/admin.php:760 ../../mod/admin.php:967 +#: ../../mod/admin.php:792 ../../mod/admin.php:999 msgid "Author: " msgstr "Aŭtoro: " -#: ../../mod/admin.php:761 ../../mod/admin.php:968 +#: ../../mod/admin.php:793 ../../mod/admin.php:1000 msgid "Maintainer: " msgstr "Prizorganto: " -#: ../../mod/admin.php:890 +#: ../../mod/admin.php:922 msgid "No themes found." msgstr "Ne trovis etosojn." -#: ../../mod/admin.php:949 +#: ../../mod/admin.php:981 msgid "Screenshot" msgstr "Ekrankopio" -#: ../../mod/admin.php:997 +#: ../../mod/admin.php:1029 msgid "[Experimental]" msgstr "[Eksperimenta]" -#: ../../mod/admin.php:998 +#: ../../mod/admin.php:1030 msgid "[Unsupported]" msgstr "[Nesubtenata]" -#: ../../mod/admin.php:1025 +#: ../../mod/admin.php:1057 msgid "Log settings updated." msgstr "Protokolagordoj ĝisdatigitaj." -#: ../../mod/admin.php:1081 +#: ../../mod/admin.php:1113 msgid "Clear" msgstr "Forviŝi" -#: ../../mod/admin.php:1087 +#: ../../mod/admin.php:1119 msgid "Debugging" msgstr "Sencimigado" -#: ../../mod/admin.php:1088 +#: ../../mod/admin.php:1120 msgid "Log file" msgstr "Protokolo" -#: ../../mod/admin.php:1088 +#: ../../mod/admin.php:1120 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:1089 +#: ../../mod/admin.php:1121 msgid "Log level" msgstr "Protokolnivelo" -#: ../../mod/admin.php:1139 +#: ../../mod/admin.php:1171 msgid "Close" msgstr "Fermi" -#: ../../mod/admin.php:1145 +#: ../../mod/admin.php:1177 msgid "FTP Host" msgstr "FTP Servilo" -#: ../../mod/admin.php:1146 +#: ../../mod/admin.php:1178 msgid "FTP Path" msgstr "FTP Vojo" -#: ../../mod/admin.php:1147 +#: ../../mod/admin.php:1179 msgid "FTP User" msgstr "FTP Uzanto" -#: ../../mod/admin.php:1148 +#: ../../mod/admin.php:1180 msgid "FTP Password" msgstr "FTP Pasvorto" -#: ../../mod/profile.php:21 ../../boot.php:1030 +#: ../../mod/profile.php:22 ../../boot.php:1074 msgid "Requested profile is not available." msgstr "La petita profilo ne disponeblas." -#: ../../mod/profile.php:141 ../../mod/display.php:75 +#: ../../mod/profile.php:152 ../../mod/display.php:77 msgid "Access to this profile has been restricted." msgstr "Atingo al ĉi tio profilo estas limitigita" -#: ../../mod/profile.php:166 +#: ../../mod/profile.php:177 msgid "Tips for New Members" msgstr "Konsilo por novaj membroj" -#: ../../mod/ping.php:185 +#: ../../mod/ping.php:235 msgid "{0} wants to be your friend" msgstr "{0} volas amikiĝi kun vi" -#: ../../mod/ping.php:190 +#: ../../mod/ping.php:240 msgid "{0} sent you a message" msgstr "{0} sendis mesaĝon al vi" -#: ../../mod/ping.php:195 +#: ../../mod/ping.php:245 msgid "{0} requested registration" msgstr "{0} petis registradon" -#: ../../mod/ping.php:201 +#: ../../mod/ping.php:251 #, php-format msgid "{0} commented %s's post" msgstr "{0} komentis pri la afiŝo de %s" -#: ../../mod/ping.php:206 +#: ../../mod/ping.php:256 #, php-format msgid "{0} liked %s's post" msgstr "{0} satis la afiŝon de %s" -#: ../../mod/ping.php:211 +#: ../../mod/ping.php:261 #, php-format msgid "{0} disliked %s's post" msgstr "{0} malŝatis la afiŝon de %s" -#: ../../mod/ping.php:216 +#: ../../mod/ping.php:266 #, php-format msgid "{0} is now friends with %s" msgstr "{0} amikiĝis kun %s" -#: ../../mod/ping.php:221 +#: ../../mod/ping.php:271 msgid "{0} posted" msgstr "{0} afiŝis" -#: ../../mod/ping.php:226 +#: ../../mod/ping.php:276 #, php-format msgid "{0} tagged %s's post with #%s" msgstr "{0} markis la afiŝon de %s kun #%s" -#: ../../mod/ping.php:232 +#: ../../mod/ping.php:282 msgid "{0} mentioned you in a post" msgstr "{0} menciis vin en afiŝo" @@ -3849,8 +4081,8 @@ msgid "" "Account not found and OpenID registration is not permitted on this site." msgstr "Ne trovis kontoj, kaj registrado per OpenID estas malpermesita ĉi tie." -#: ../../mod/openid.php:93 ../../include/auth.php:99 -#: ../../include/auth.php:162 +#: ../../mod/openid.php:93 ../../include/auth.php:98 +#: ../../include/auth.php:161 msgid "Login failed." msgstr "Ensalutado malsukcesis." @@ -3866,11 +4098,11 @@ msgstr "Komunaj Amikoj" msgid "No contacts in common." msgstr "Neniom da komunaj kontaktoj." -#: ../../mod/share.php:28 ../../include/bb2diaspora.php:286 +#: ../../mod/share.php:28 msgid "link" msgstr "ligilo" -#: ../../mod/display.php:135 +#: ../../mod/display.php:138 msgid "Item has been removed." msgstr "Elemento estas forviŝita." @@ -3882,13 +4114,13 @@ msgstr "Programoj" msgid "No installed applications." msgstr "Neniom da instalitaj programoj." -#: ../../mod/search.php:83 ../../include/text.php:674 -#: ../../include/text.php:675 ../../include/nav.php:91 +#: ../../mod/search.php:85 ../../include/text.php:678 +#: ../../include/text.php:679 ../../include/nav.php:91 msgid "Search" msgstr "Serĉi" -#: ../../mod/profiles.php:21 ../../mod/profiles.php:418 -#: ../../mod/profiles.php:532 ../../mod/dfrn_confirm.php:62 +#: ../../mod/profiles.php:21 ../../mod/profiles.php:423 +#: ../../mod/profiles.php:537 ../../mod/dfrn_confirm.php:62 msgid "Profile not found." msgstr "Profilo ne trovita." @@ -3896,305 +4128,306 @@ msgstr "Profilo ne trovita." msgid "Profile Name is required." msgstr "Nomo de profilo estas bezonata." -#: ../../mod/profiles.php:155 +#: ../../mod/profiles.php:160 msgid "Marital Status" msgstr "Amrilata Stato" -#: ../../mod/profiles.php:159 +#: ../../mod/profiles.php:164 msgid "Romantic Partner" msgstr "Kora Partnero" -#: ../../mod/profiles.php:163 +#: ../../mod/profiles.php:168 msgid "Likes" msgstr "Ŝatoj" -#: ../../mod/profiles.php:167 +#: ../../mod/profiles.php:172 msgid "Dislikes" msgstr "Malŝatoj" -#: ../../mod/profiles.php:171 +#: ../../mod/profiles.php:176 msgid "Work/Employment" msgstr "Laboro" -#: ../../mod/profiles.php:174 +#: ../../mod/profiles.php:179 msgid "Religion" msgstr "Religio" -#: ../../mod/profiles.php:178 +#: ../../mod/profiles.php:183 msgid "Political Views" msgstr "Politikaj Opinioj" -#: ../../mod/profiles.php:182 +#: ../../mod/profiles.php:187 msgid "Gender" msgstr "Sekso" -#: ../../mod/profiles.php:186 +#: ../../mod/profiles.php:191 msgid "Sexual Preference" msgstr "Seksa Prefero" -#: ../../mod/profiles.php:190 +#: ../../mod/profiles.php:195 msgid "Homepage" msgstr "Hejmpaĝo" -#: ../../mod/profiles.php:194 +#: ../../mod/profiles.php:199 msgid "Interests" msgstr "Interesoj" -#: ../../mod/profiles.php:198 +#: ../../mod/profiles.php:203 msgid "Address" msgstr "Adreso" -#: ../../mod/profiles.php:205 ../../addon/dav/layout.fnk.php:310 +#: ../../mod/profiles.php:210 ../../addon/dav/common/wdcal_edit.inc.php:183 msgid "Location" msgstr "Loko" -#: ../../mod/profiles.php:288 +#: ../../mod/profiles.php:293 msgid "Profile updated." msgstr "Profilo ĝisdatigita." -#: ../../mod/profiles.php:355 +#: ../../mod/profiles.php:360 msgid " and " msgstr " kaj " -#: ../../mod/profiles.php:363 +#: ../../mod/profiles.php:368 msgid "public profile" msgstr "publika profilo" -#: ../../mod/profiles.php:366 +#: ../../mod/profiles.php:371 #, php-format msgid "%1$s changed %2$s to “%3$s”" msgstr "%1$s ŝanĝis %2$s al “%3$s”" -#: ../../mod/profiles.php:367 +#: ../../mod/profiles.php:372 #, php-format msgid " - Visit %1$s's %2$s" msgstr " - Vizitu la %2$s de %1$s" -#: ../../mod/profiles.php:370 +#: ../../mod/profiles.php:375 #, 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:437 +#: ../../mod/profiles.php:442 msgid "Profile deleted." msgstr "Profilo forviŝita." -#: ../../mod/profiles.php:455 ../../mod/profiles.php:489 +#: ../../mod/profiles.php:460 ../../mod/profiles.php:494 msgid "Profile-" msgstr "Profilo-" -#: ../../mod/profiles.php:474 ../../mod/profiles.php:516 +#: ../../mod/profiles.php:479 ../../mod/profiles.php:521 msgid "New profile created." msgstr "Nova profilo kreita." -#: ../../mod/profiles.php:495 +#: ../../mod/profiles.php:500 msgid "Profile unavailable to clone." msgstr "Ne eblas kopii profilon." -#: ../../mod/profiles.php:553 +#: ../../mod/profiles.php:562 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:576 +#: ../../mod/profiles.php:582 msgid "Edit Profile Details" msgstr "Redakti Detalojn de Profilo" -#: ../../mod/profiles.php:578 +#: ../../mod/profiles.php:584 msgid "View this profile" msgstr "Vidi la profilon." -#: ../../mod/profiles.php:579 +#: ../../mod/profiles.php:585 msgid "Create a new profile using these settings" msgstr "Krei novan profilon kun tiaj agordoj" -#: ../../mod/profiles.php:580 +#: ../../mod/profiles.php:586 msgid "Clone this profile" msgstr "Kopii ĉi tiun profilon" -#: ../../mod/profiles.php:581 +#: ../../mod/profiles.php:587 msgid "Delete this profile" msgstr "Forviŝi ĉi tiun profilon" -#: ../../mod/profiles.php:582 +#: ../../mod/profiles.php:588 msgid "Profile Name:" msgstr "Nomo de Profilo:" -#: ../../mod/profiles.php:583 +#: ../../mod/profiles.php:589 msgid "Your Full Name:" msgstr "Via Plena Nomo:" -#: ../../mod/profiles.php:584 +#: ../../mod/profiles.php:590 msgid "Title/Description:" msgstr "Titolo/Priskribo:" -#: ../../mod/profiles.php:585 +#: ../../mod/profiles.php:591 msgid "Your Gender:" msgstr "Via Sekso:" -#: ../../mod/profiles.php:586 +#: ../../mod/profiles.php:592 #, php-format msgid "Birthday (%s):" msgstr "Naskiĝtago (%s):" -#: ../../mod/profiles.php:587 +#: ../../mod/profiles.php:593 msgid "Street Address:" msgstr "Adreso:" -#: ../../mod/profiles.php:588 +#: ../../mod/profiles.php:594 msgid "Locality/City:" msgstr "Urbo:" -#: ../../mod/profiles.php:589 +#: ../../mod/profiles.php:595 msgid "Postal/Zip Code:" msgstr "Poŝtkodo:" -#: ../../mod/profiles.php:590 +#: ../../mod/profiles.php:596 msgid "Country:" msgstr "Lando:" -#: ../../mod/profiles.php:591 +#: ../../mod/profiles.php:597 msgid "Region/State:" msgstr "Ŝtato:" -#: ../../mod/profiles.php:592 +#: ../../mod/profiles.php:598 msgid " Marital Status:" msgstr " Civita Stato:" -#: ../../mod/profiles.php:593 +#: ../../mod/profiles.php:599 msgid "Who: (if applicable)" msgstr "Kiu (se aplikeble):" -#: ../../mod/profiles.php:594 +#: ../../mod/profiles.php:600 msgid "Examples: cathy123, Cathy Williams, cathy@example.com" msgstr "Ekzemploj: cathy123, Cathy Williams, cathy@example.com" -#: ../../mod/profiles.php:595 +#: ../../mod/profiles.php:601 msgid "Since [date]:" msgstr "Ekde [dato]:" -#: ../../mod/profiles.php:596 ../../include/profile_advanced.php:46 +#: ../../mod/profiles.php:602 ../../include/profile_advanced.php:46 msgid "Sexual Preference:" msgstr "Seksa Prefero:" -#: ../../mod/profiles.php:597 +#: ../../mod/profiles.php:603 msgid "Homepage URL:" msgstr "Adreso de Hejmpaĝo:" -#: ../../mod/profiles.php:598 ../../include/profile_advanced.php:50 +#: ../../mod/profiles.php:604 ../../include/profile_advanced.php:50 msgid "Hometown:" msgstr "Hejmurbo:" -#: ../../mod/profiles.php:599 ../../include/profile_advanced.php:54 +#: ../../mod/profiles.php:605 ../../include/profile_advanced.php:54 msgid "Political Views:" msgstr "Politikaj Opinioj:" -#: ../../mod/profiles.php:600 +#: ../../mod/profiles.php:606 msgid "Religious Views:" msgstr "Religiaj Opinioj:" -#: ../../mod/profiles.php:601 +#: ../../mod/profiles.php:607 msgid "Public Keywords:" msgstr "Publikaj ŝlosilvortoj:" -#: ../../mod/profiles.php:602 +#: ../../mod/profiles.php:608 msgid "Private Keywords:" msgstr "Privataj ŝlosilvortoj:" -#: ../../mod/profiles.php:603 ../../include/profile_advanced.php:62 +#: ../../mod/profiles.php:609 ../../include/profile_advanced.php:62 msgid "Likes:" msgstr "Ŝatoj:" -#: ../../mod/profiles.php:604 ../../include/profile_advanced.php:64 +#: ../../mod/profiles.php:610 ../../include/profile_advanced.php:64 msgid "Dislikes:" msgstr "Malŝatoj:" -#: ../../mod/profiles.php:605 +#: ../../mod/profiles.php:611 msgid "Example: fishing photography software" msgstr "Ekzemple: fiŝkapti fotografio programaro" -#: ../../mod/profiles.php:606 +#: ../../mod/profiles.php:612 msgid "(Used for suggesting potential friends, can be seen by others)" msgstr "(Por sugesti amikoj. Videbla al aliaj.)" -#: ../../mod/profiles.php:607 +#: ../../mod/profiles.php:613 msgid "(Used for searching profiles, never shown to others)" msgstr "(Por serĉi profilojn. Neniam videbla al aliaj.)" -#: ../../mod/profiles.php:608 +#: ../../mod/profiles.php:614 msgid "Tell us about yourself..." msgstr "Diru al ni pri vi..." -#: ../../mod/profiles.php:609 +#: ../../mod/profiles.php:615 msgid "Hobbies/Interests" msgstr "Ŝatokupoj/Interesoj" -#: ../../mod/profiles.php:610 +#: ../../mod/profiles.php:616 msgid "Contact information and Social Networks" msgstr "Kontaktaj informoj kaj Interkonaj Retejoj" -#: ../../mod/profiles.php:611 +#: ../../mod/profiles.php:617 msgid "Musical interests" msgstr "Muzikaj interesoj" -#: ../../mod/profiles.php:612 +#: ../../mod/profiles.php:618 msgid "Books, literature" msgstr "Libroj, literaturo" -#: ../../mod/profiles.php:613 +#: ../../mod/profiles.php:619 msgid "Television" msgstr "Televido" -#: ../../mod/profiles.php:614 +#: ../../mod/profiles.php:620 msgid "Film/dance/culture/entertainment" msgstr "Filmoj/dancoj/arto/amuzaĵoj" -#: ../../mod/profiles.php:615 +#: ../../mod/profiles.php:621 msgid "Love/romance" msgstr "Amo/romanco" -#: ../../mod/profiles.php:616 +#: ../../mod/profiles.php:622 msgid "Work/employment" msgstr "Laboro" -#: ../../mod/profiles.php:617 +#: ../../mod/profiles.php:623 msgid "School/education" msgstr "Lernejo/eduko" -#: ../../mod/profiles.php:622 +#: ../../mod/profiles.php:628 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:632 ../../mod/directory.php:109 +#: ../../mod/profiles.php:638 ../../mod/directory.php:111 msgid "Age: " msgstr "Aĝo:" -#: ../../mod/profiles.php:671 +#: ../../mod/profiles.php:677 msgid "Edit/Manage Profiles" msgstr "Redakti/administri Profilojn" -#: ../../mod/profiles.php:672 ../../boot.php:1139 +#: ../../mod/profiles.php:678 ../../boot.php:1192 msgid "Change profile photo" msgstr "Ŝanĝi profilbildon" -#: ../../mod/profiles.php:673 ../../boot.php:1140 +#: ../../mod/profiles.php:679 ../../boot.php:1193 msgid "Create New Profile" msgstr "Krei novan profilon" -#: ../../mod/profiles.php:684 ../../boot.php:1150 +#: ../../mod/profiles.php:690 ../../boot.php:1203 msgid "Profile Image" msgstr "Profilbildo" -#: ../../mod/profiles.php:686 ../../boot.php:1153 +#: ../../mod/profiles.php:692 ../../boot.php:1206 msgid "visible to everybody" msgstr "videbla al ĉiuj" -#: ../../mod/profiles.php:687 ../../boot.php:1154 +#: ../../mod/profiles.php:693 ../../boot.php:1207 msgid "Edit visibility" msgstr "Redakti videblecon" -#: ../../mod/filer.php:29 ../../include/conversation.php:1024 +#: ../../mod/filer.php:29 ../../include/conversation.php:1209 +#: ../../include/conversation.php:1226 msgid "Save to Folder:" msgstr "Konservi en Dosierujo:" @@ -4202,7 +4435,7 @@ msgstr "Konservi en Dosierujo:" msgid "- select -" msgstr "- elekti -" -#: ../../mod/tagger.php:103 ../../include/conversation.php:199 +#: ../../mod/tagger.php:95 ../../include/conversation.php:265 #, php-format msgid "%1$s tagged %2$s's %3$s with %4$s" msgstr "%1$s markis la %3$s de %2$s kun %4$s" @@ -4301,42 +4534,42 @@ msgstr "Neniu sugestoj disponeblas. Se ĉi tiu estas nova retejo, bonvolu reprov msgid "Ignore/Hide" msgstr "Ignori/Kaŝi" -#: ../../mod/directory.php:47 ../../view/theme/diabook/theme.php:624 +#: ../../mod/directory.php:49 ../../view/theme/diabook/theme.php:624 msgid "Global Directory" msgstr "Tutmonda Katalogo" -#: ../../mod/directory.php:55 +#: ../../mod/directory.php:57 msgid "Find on this site" msgstr "Trovi en ĉi retejo" -#: ../../mod/directory.php:58 +#: ../../mod/directory.php:60 msgid "Site Directory" msgstr "Reteja Katalogo" -#: ../../mod/directory.php:112 +#: ../../mod/directory.php:114 msgid "Gender: " msgstr "Sekso:" -#: ../../mod/directory.php:134 ../../include/profile_advanced.php:17 -#: ../../boot.php:1175 +#: ../../mod/directory.php:136 ../../include/profile_advanced.php:17 +#: ../../boot.php:1228 msgid "Gender:" msgstr "Sekso:" -#: ../../mod/directory.php:136 ../../include/profile_advanced.php:37 -#: ../../boot.php:1178 +#: ../../mod/directory.php:138 ../../include/profile_advanced.php:37 +#: ../../boot.php:1231 msgid "Status:" msgstr "Stato:" -#: ../../mod/directory.php:138 ../../include/profile_advanced.php:48 -#: ../../boot.php:1180 +#: ../../mod/directory.php:140 ../../include/profile_advanced.php:48 +#: ../../boot.php:1233 msgid "Homepage:" msgstr "Hejmpaĝo:" -#: ../../mod/directory.php:140 ../../include/profile_advanced.php:58 +#: ../../mod/directory.php:142 ../../include/profile_advanced.php:58 msgid "About:" msgstr "Pri:" -#: ../../mod/directory.php:178 +#: ../../mod/directory.php:180 msgid "No entries (some entries may be hidden)." msgstr "Neniom da afiŝoj (kelkaj afiŝoj eble ne estas videbla)." @@ -4459,8 +4692,8 @@ msgstr "La prezento malsukcesis au estas revokita." msgid "Unable to set contact photo." msgstr "Neeblas agordi la kontaktbildo." -#: ../../mod/dfrn_confirm.php:477 ../../include/diaspora.php:577 -#: ../../include/conversation.php:162 +#: ../../mod/dfrn_confirm.php:477 ../../include/diaspora.php:608 +#: ../../include/conversation.php:171 #, php-format msgid "%1$s is now friends with %2$s" msgstr "%1$s amikiĝis kun %2$s" @@ -4535,7 +4768,7 @@ msgstr "Facebook malŝaltita" msgid "Updating contacts" msgstr "Mi ĝisdatigas la kontaktojn." -#: ../../addon/facebook/facebook.php:551 +#: ../../addon/facebook/facebook.php:551 ../../addon/fbpost/fbpost.php:192 msgid "Facebook API key is missing." msgstr "La API ŝlosilo de Facebook ne estas konata ĉi tie." @@ -4551,13 +4784,13 @@ msgstr "Instali la Facebook konektilo por ĉi tiu konto." msgid "Remove Facebook connector" msgstr "Forigi la Facebook konektilon." -#: ../../addon/facebook/facebook.php:576 +#: ../../addon/facebook/facebook.php:576 ../../addon/fbpost/fbpost.php:217 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:583 +#: ../../addon/facebook/facebook.php:583 ../../addon/fbpost/fbpost.php:224 msgid "Post to Facebook by default" msgstr "Ĉiam afiŝi al Facebook." @@ -4619,20 +4852,15 @@ msgstr "Ignorotaj programoj, disigita per komo" msgid "Problems with Facebook Real-Time Updates" msgstr "Problemoj kun Facebook Realtempaj Ĝisdatigoj" -#: ../../addon/facebook/facebook.php:728 -#: ../../include/contact_selectors.php:81 -msgid "Facebook" -msgstr "Facebook" - #: ../../addon/facebook/facebook.php:729 msgid "Facebook Connector Settings" msgstr "Agordoj por la Facebook konektilo" -#: ../../addon/facebook/facebook.php:744 +#: ../../addon/facebook/facebook.php:744 ../../addon/fbpost/fbpost.php:255 msgid "Facebook API Key" msgstr "Facebook API ŝlosilo" -#: ../../addon/facebook/facebook.php:754 +#: ../../addon/facebook/facebook.php:754 ../../addon/fbpost/fbpost.php:262 msgid "" "Error: it appears that you have specified the App-ID and -Secret in your " ".htconfig.php file. As long as they are specified there, they cannot be set " @@ -4655,11 +4883,11 @@ msgid "" "going on." msgstr "Ne povis kontroli la ĝusteco de la API ŝlosilo. Stranga afero okazas." -#: ../../addon/facebook/facebook.php:766 +#: ../../addon/facebook/facebook.php:766 ../../addon/fbpost/fbpost.php:264 msgid "App-ID / API-Key" msgstr "Programo ID / API Ŝlosilo" -#: ../../addon/facebook/facebook.php:767 +#: ../../addon/facebook/facebook.php:767 ../../addon/fbpost/fbpost.php:265 msgid "Application secret" msgstr "Programo sekreto" @@ -4694,37 +4922,38 @@ msgstr "Realtempaj Ĝisdatigoj estas malŝaltita" msgid "Activate Real-Time Updates" msgstr "Ŝalti Realtempaj Ĝisdatigoj" -#: ../../addon/facebook/facebook.php:799 ../../addon/dav/layout.fnk.php:360 +#: ../../addon/facebook/facebook.php:799 ../../addon/fbpost/fbpost.php:282 +#: ../../addon/dav/friendica/layout.fnk.php:361 msgid "The new values have been saved." msgstr "Konservis novajn valorojn." -#: ../../addon/facebook/facebook.php:823 +#: ../../addon/facebook/facebook.php:823 ../../addon/fbpost/fbpost.php:301 msgid "Post to Facebook" msgstr "Afiŝi al Facebook" -#: ../../addon/facebook/facebook.php:921 +#: ../../addon/facebook/facebook.php:921 ../../addon/fbpost/fbpost.php:399 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:1141 +#: ../../addon/facebook/facebook.php:1149 ../../addon/fbpost/fbpost.php:610 msgid "View on Friendica" msgstr "Vidi ĉe Friendica" -#: ../../addon/facebook/facebook.php:1174 +#: ../../addon/facebook/facebook.php:1182 ../../addon/fbpost/fbpost.php:643 msgid "Facebook post failed. Queued for retry." msgstr "Malsukcesis afiŝi ĉe Facebook. Enigita en vico." -#: ../../addon/facebook/facebook.php:1214 +#: ../../addon/facebook/facebook.php:1222 ../../addon/fbpost/fbpost.php:683 msgid "Your Facebook connection became invalid. Please Re-authenticate." msgstr "Via Facbook konekto iĝis nevalida. Bonvolu reaŭtentiĝi." -#: ../../addon/facebook/facebook.php:1215 +#: ../../addon/facebook/facebook.php:1223 ../../addon/fbpost/fbpost.php:684 msgid "Facebook connection became invalid" msgstr "Facebook konekto iĝis nevalida." -#: ../../addon/facebook/facebook.php:1216 +#: ../../addon/facebook/facebook.php:1224 ../../addon/fbpost/fbpost.php:685 #, php-format msgid "" "Hi %1$s,\n" @@ -4744,26 +4973,58 @@ msgstr "StatusNet AutoFollow agordoj" msgid "Automatically follow any StatusNet followers/mentioners" msgstr "Aŭtomate sekvu ĉiujn StatusNet sekvantojn/menciantojn." -#: ../../addon/privacy_image_cache/privacy_image_cache.php:184 +#: ../../addon/bg/bg.php:51 +msgid "Bg settings updated." +msgstr "" + +#: ../../addon/bg/bg.php:82 +msgid "Bg Settings" +msgstr "" + +#: ../../addon/bg/bg.php:84 ../../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/privacy_image_cache/privacy_image_cache.php:260 msgid "Lifetime of the cache (in hours)" msgstr "Vivodaŭro de kaŝmemoro (horoj)" -#: ../../addon/privacy_image_cache/privacy_image_cache.php:189 +#: ../../addon/privacy_image_cache/privacy_image_cache.php:265 msgid "Cache Statistics" msgstr "Statistikoj pri kaŝmemoro" -#: ../../addon/privacy_image_cache/privacy_image_cache.php:192 +#: ../../addon/privacy_image_cache/privacy_image_cache.php:268 msgid "Number of items" msgstr "Kvanto da eroj" -#: ../../addon/privacy_image_cache/privacy_image_cache.php:194 +#: ../../addon/privacy_image_cache/privacy_image_cache.php:270 msgid "Size of the cache" msgstr "Grando de la kaŝmemoro" -#: ../../addon/privacy_image_cache/privacy_image_cache.php:196 +#: ../../addon/privacy_image_cache/privacy_image_cache.php:272 msgid "Delete the whole cache" msgstr "Forviŝi la kaŝmemoron" +#: ../../addon/fbpost/fbpost.php:172 +msgid "Facebook Post disabled" +msgstr "" + +#: ../../addon/fbpost/fbpost.php:199 +msgid "Facebook Post" +msgstr "" + +#: ../../addon/fbpost/fbpost.php:205 +msgid "Install Facebook Post connector for this account." +msgstr "" + +#: ../../addon/fbpost/fbpost.php:212 +msgid "Remove Facebook Post connector" +msgstr "" + +#: ../../addon/fbpost/fbpost.php:240 +msgid "Facebook Post Settings" +msgstr "" + #: ../../addon/widgets/widget_like.php:58 #, php-format msgid "%d person likes this" @@ -4798,6 +5059,153 @@ msgstr "Disponeblaj fenestraĵoj" msgid "Connect on Friendica!" msgstr "Konekti ĉe Friendica!" +#: ../../addon/morepokes/morepokes.php:19 +msgid "bitchslap" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:19 +msgid "bitchslapped" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:20 +msgid "shag" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:20 +msgid "shagged" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:21 +msgid "do something obscenely biological to" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:21 +msgid "did something obscenely biological to" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:22 +msgid "point out the poke feature to" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:22 +msgid "pointed out the poke feature to" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:23 +msgid "declare undying love for" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:23 +msgid "declared undying love for" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:24 +msgid "patent" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:24 +msgid "patented" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:25 +msgid "stroke beard" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:25 +msgid "stroked their beard at" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:26 +msgid "" +"bemoan the declining standards of modern secondary and tertiary education to" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:26 +msgid "" +"bemoans the declining standards of modern secondary and tertiary education " +"to" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:27 +msgid "hug" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:27 +msgid "hugged" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:28 +msgid "kiss" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:28 +msgid "kissed" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:29 +msgid "raise eyebrows at" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:29 +msgid "raised their eyebrows at" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:30 +msgid "insult" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:30 +msgid "insulted" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:31 +msgid "praise" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:31 +msgid "praised" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:32 +msgid "be dubious of" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:32 +msgid "was dubious of" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:33 +msgid "eat" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:33 +msgid "ate" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:34 +msgid "giggle and fawn at" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:34 +msgid "giggled and fawned at" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:35 +msgid "doubt" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:35 +msgid "doubted" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:36 +msgid "glare" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:36 +msgid "glared at" +msgstr "" + #: ../../addon/yourls/yourls.php:55 msgid "YourLS Settings" msgstr "\"YourLS\" Agordoj" @@ -4846,11 +5254,11 @@ msgstr "LiveJournal pasvorto" msgid "Post to LiveJournal by default" msgstr "Defaŭlte afiŝi al LiveJournal" -#: ../../addon/nsfw/nsfw.php:47 +#: ../../addon/nsfw/nsfw.php:78 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 +#: ../../addon/nsfw/nsfw.php:80 msgid "" "This plugin looks in posts for the words/text you specify below, and " "collapses any content containing those keywords so it is not displayed at " @@ -4860,32 +5268,33 @@ msgid "" " 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 +#: ../../addon/nsfw/nsfw.php:81 msgid "Enable Content filter" msgstr "Ŝalti la filtrilo por la enhavo" -#: ../../addon/nsfw/nsfw.php:53 +#: ../../addon/nsfw/nsfw.php:84 msgid "Comma separated list of keywords to hide" msgstr "Perkome disigita listo da kaŝontaj ŝlosilvortoj" -#: ../../addon/nsfw/nsfw.php:58 +#: ../../addon/nsfw/nsfw.php:89 msgid "Use /expression/ to provide regular expressions" msgstr "Uzu /expr/ por provizi regulajn esprimojn." -#: ../../addon/nsfw/nsfw.php:74 +#: ../../addon/nsfw/nsfw.php:105 msgid "NSFW Settings saved." msgstr "NSFW agordoj konservitaj." -#: ../../addon/nsfw/nsfw.php:121 +#: ../../addon/nsfw/nsfw.php:157 #, php-format msgid "%s - Click to open/close" msgstr "%s - Klaku por malfermi/fermi" #: ../../addon/page/page.php:61 ../../addon/page/page.php:91 +#: ../../addon/forumlist/forumlist.php:54 msgid "Forums" msgstr "Forumoj" -#: ../../addon/page/page.php:129 +#: ../../addon/page/page.php:129 ../../addon/forumlist/forumlist.php:88 msgid "Forums:" msgstr "Forumoj:" @@ -4897,7 +5306,7 @@ msgstr "Paĝajn agordojn ĝisdatigita." msgid "Page Settings" msgstr "Paĝaj Agordoj" -#: ../../addon/page/page.php:196 +#: ../../addon/page/page.php:196 ../../addon/forumlist/forumlist.php:155 msgid "How many forums to display on sidebar without paging" msgstr "Montri tiom da forumoj en la flanka strio sen paĝigo" @@ -4921,7 +5330,7 @@ msgstr "Ŝalti la Planets kromprogamon" #: ../../addon/communityhome/communityhome.php:34 #: ../../addon/communityhome/twillingham/communityhome.php:28 #: ../../addon/communityhome/twillingham/communityhome.php:34 -#: ../../include/nav.php:64 ../../boot.php:886 +#: ../../include/nav.php:64 ../../boot.php:912 msgid "Login" msgstr "Ensaluti" @@ -4949,208 +5358,553 @@ msgid "Latest likes" msgstr "Ĵusaj ŝatitaĵoj" #: ../../addon/communityhome/communityhome.php:155 -#: ../../view/theme/diabook/theme.php:562 ../../include/text.php:1344 -#: ../../include/conversation.php:106 ../../include/conversation.php:179 +#: ../../view/theme/diabook/theme.php:562 ../../include/text.php:1437 +#: ../../include/conversation.php:117 ../../include/conversation.php:245 msgid "event" msgstr "okazo" -#: ../../addon/dav/common/wdcal_configuration.php:126 -msgid "U.S. Time Format (mm/dd/YYYY)" -msgstr "Usona datformato (mm/dd/YYYY)" - -#: ../../addon/dav/common/wdcal_configuration.php:205 -msgid "German Time Format (dd.mm.YYYY)" -msgstr "Germana datformato (dd.mm.YYYY)" - -#: ../../addon/dav/common/calendar.fnk.php:517 -#: ../../addon/dav/common/calendar.fnk.php:533 -#: ../../addon/dav/layout.fnk.php:200 -msgid "Error" -msgstr "Eraro" - -#: ../../addon/dav/common/calendar.fnk.php:568 -#: ../../addon/dav/common/calendar.fnk.php:637 -#: ../../addon/dav/common/calendar.fnk.php:664 -#: ../../addon/dav/layout.fnk.php:231 +#: ../../addon/dav/common/wdcal_backend.inc.php:92 +#: ../../addon/dav/common/wdcal_backend.inc.php:166 +#: ../../addon/dav/common/wdcal_backend.inc.php:178 +#: ../../addon/dav/common/wdcal_backend.inc.php:206 +#: ../../addon/dav/common/wdcal_backend.inc.php:214 +#: ../../addon/dav/common/wdcal_backend.inc.php:229 msgid "No access" msgstr "No access" -#: ../../addon/dav/layout.fnk.php:119 -msgid "New event" -msgstr "Nova okazo" +#: ../../addon/dav/common/wdcal_edit.inc.php:30 +#: ../../addon/dav/common/wdcal_edit.inc.php:738 +msgid "Could not open component for editing" +msgstr "" -#: ../../addon/dav/layout.fnk.php:123 -msgid "Today" -msgstr "Hodiaŭ" - -#: ../../addon/dav/layout.fnk.php:132 -msgid "Day" -msgstr "Tago" - -#: ../../addon/dav/layout.fnk.php:139 -msgid "Week" -msgstr "Semajno" - -#: ../../addon/dav/layout.fnk.php:146 -msgid "Month" -msgstr "Monato" - -#: ../../addon/dav/layout.fnk.php:151 -msgid "Reload" -msgstr "Reŝargi" - -#: ../../addon/dav/layout.fnk.php:162 -msgid "Date" -msgstr "Dato" - -#: ../../addon/dav/layout.fnk.php:224 -msgid "Not found" -msgstr "Ne trovita" - -#: ../../addon/dav/layout.fnk.php:292 ../../addon/dav/layout.fnk.php:365 +#: ../../addon/dav/common/wdcal_edit.inc.php:140 +#: ../../addon/dav/friendica/layout.fnk.php:143 +#: ../../addon/dav/friendica/layout.fnk.php:422 msgid "Go back to the calendar" msgstr "Iri reen al la kalendaro" -#: ../../addon/dav/layout.fnk.php:300 -msgid "Starts" -msgstr "Komencas" +#: ../../addon/dav/common/wdcal_edit.inc.php:144 +msgid "Event data" +msgstr "" -#: ../../addon/dav/layout.fnk.php:305 -msgid "Ends" -msgstr "Finas" - -#: ../../addon/dav/layout.fnk.php:312 -msgid "Description" -msgstr "Priskribo" - -#: ../../addon/dav/layout.fnk.php:315 -msgid "Notification" -msgstr "Atentigo" - -#: ../../addon/dav/layout.fnk.php:324 -msgid "Minutes" -msgstr "Minutoj" - -#: ../../addon/dav/layout.fnk.php:327 -msgid "Hours" -msgstr "Horoj" - -#: ../../addon/dav/layout.fnk.php:330 -msgid "Days" -msgstr "Tagoj" - -#: ../../addon/dav/layout.fnk.php:331 -msgid "before" -msgstr "antaŭ" - -#: ../../addon/dav/layout.fnk.php:367 -msgid "Calendar Settings" -msgstr "Kalendaraj Agordoj" - -#: ../../addon/dav/layout.fnk.php:373 -msgid "Date format" -msgstr "Datformato" - -#: ../../addon/dav/layout.fnk.php:382 -msgid "Time zone" -msgstr "Horzono" - -#: ../../addon/dav/layout.fnk.php:387 -msgid "Limitations" -msgstr "Limigoj" - -#: ../../addon/dav/layout.fnk.php:391 ../../addon/libravatar/libravatar.php:82 -msgid "Warning" -msgstr "Averto" - -#: ../../addon/dav/layout.fnk.php:395 -msgid "Synchronization (iPhone, Thunderbird Lightning, Android, ...)" -msgstr "Sinkronigo (iPhone, Thunderbird Lightning, Android, ...)" - -#: ../../addon/dav/layout.fnk.php:402 -msgid "Synchronizing this calendar with the iPhone" -msgstr "Sinkronigi tiun kalendaron kun la iPhone" - -#: ../../addon/dav/layout.fnk.php:413 -msgid "Synchronizing your Friendica-Contacts with the iPhone" -msgstr "Sinkronigi viajn Friendica kontaktojn kun la iPhone" - -#: ../../addon/dav/dav_carddav_backend_friendica_community.inc.php:37 -msgid "Friendica-Contacts" -msgstr "Friendica Kontaktoj" - -#: ../../addon/dav/dav_carddav_backend_friendica_community.inc.php:38 -msgid "Your Friendica-Contacts" -msgstr "Viaj Friendica Kontaktoj" - -#: ../../addon/dav/main.php:244 +#: ../../addon/dav/common/wdcal_edit.inc.php:146 +#: ../../addon/dav/friendica/main.php:239 msgid "Calendar" msgstr "Kalendaro" -#: ../../addon/dav/main.php:247 +#: ../../addon/dav/common/wdcal_edit.inc.php:163 +msgid "Special color" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:169 +msgid "Subject" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:173 +msgid "Starts" +msgstr "Komencas" + +#: ../../addon/dav/common/wdcal_edit.inc.php:178 +msgid "Ends" +msgstr "Finas" + +#: ../../addon/dav/common/wdcal_edit.inc.php:185 +msgid "Description" +msgstr "Priskribo" + +#: ../../addon/dav/common/wdcal_edit.inc.php:188 +msgid "Recurrence" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:190 +msgid "Frequency" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:194 +#: ../../include/contact_selectors.php:59 +msgid "Daily" +msgstr "Ĉiutage" + +#: ../../addon/dav/common/wdcal_edit.inc.php:197 +#: ../../include/contact_selectors.php:60 +msgid "Weekly" +msgstr "Ĉiusemajne" + +#: ../../addon/dav/common/wdcal_edit.inc.php:200 +#: ../../include/contact_selectors.php:61 +msgid "Monthly" +msgstr "Ĉiumonate" + +#: ../../addon/dav/common/wdcal_edit.inc.php:203 +msgid "Yearly" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:214 +#: ../../include/datetime.php:288 +msgid "days" +msgstr "tagoj" + +#: ../../addon/dav/common/wdcal_edit.inc.php:215 +#: ../../include/datetime.php:287 +msgid "weeks" +msgstr "semajnoj" + +#: ../../addon/dav/common/wdcal_edit.inc.php:216 +#: ../../include/datetime.php:286 +msgid "months" +msgstr "monatoj" + +#: ../../addon/dav/common/wdcal_edit.inc.php:217 +#: ../../include/datetime.php:285 +msgid "years" +msgstr "jaroj" + +#: ../../addon/dav/common/wdcal_edit.inc.php:218 +msgid "Interval" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:218 +msgid "All %select% %time%" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:222 +#: ../../addon/dav/common/wdcal_edit.inc.php:260 +#: ../../addon/dav/common/wdcal_edit.inc.php:481 +msgid "Days" +msgstr "Tagoj" + +#: ../../addon/dav/common/wdcal_edit.inc.php:231 +#: ../../addon/dav/common/wdcal_edit.inc.php:254 +#: ../../addon/dav/common/wdcal_edit.inc.php:270 +#: ../../addon/dav/common/wdcal_edit.inc.php:293 +#: ../../addon/dav/common/wdcal_edit.inc.php:305 ../../include/text.php:917 +msgid "Sunday" +msgstr "Dimanĉo" + +#: ../../addon/dav/common/wdcal_edit.inc.php:235 +#: ../../addon/dav/common/wdcal_edit.inc.php:274 +#: ../../addon/dav/common/wdcal_edit.inc.php:308 ../../include/text.php:917 +msgid "Monday" +msgstr "Lundo" + +#: ../../addon/dav/common/wdcal_edit.inc.php:238 +#: ../../addon/dav/common/wdcal_edit.inc.php:277 ../../include/text.php:917 +msgid "Tuesday" +msgstr "Mardo" + +#: ../../addon/dav/common/wdcal_edit.inc.php:241 +#: ../../addon/dav/common/wdcal_edit.inc.php:280 ../../include/text.php:917 +msgid "Wednesday" +msgstr "Merkredo" + +#: ../../addon/dav/common/wdcal_edit.inc.php:244 +#: ../../addon/dav/common/wdcal_edit.inc.php:283 ../../include/text.php:917 +msgid "Thursday" +msgstr "Ĵaŭdo" + +#: ../../addon/dav/common/wdcal_edit.inc.php:247 +#: ../../addon/dav/common/wdcal_edit.inc.php:286 ../../include/text.php:917 +msgid "Friday" +msgstr "Vendredo" + +#: ../../addon/dav/common/wdcal_edit.inc.php:250 +#: ../../addon/dav/common/wdcal_edit.inc.php:289 ../../include/text.php:917 +msgid "Saturday" +msgstr "Sabato" + +#: ../../addon/dav/common/wdcal_edit.inc.php:297 +msgid "First day of week:" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:350 +#: ../../addon/dav/common/wdcal_edit.inc.php:373 +msgid "Day of month" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:354 +msgid "#num#th of each month" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:357 +msgid "#num#th-last of each month" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:360 +msgid "#num#th #wkday# of each month" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:363 +msgid "#num#th-last #wkday# of each month" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:372 +#: ../../addon/dav/friendica/layout.fnk.php:255 +msgid "Month" +msgstr "Monato" + +#: ../../addon/dav/common/wdcal_edit.inc.php:377 +msgid "#num#th of the given month" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:380 +msgid "#num#th-last of the given month" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:383 +msgid "#num#th #wkday# of the given month" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:386 +msgid "#num#th-last #wkday# of the given month" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:413 +msgid "Repeat until" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:417 +msgid "Infinite" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:420 +msgid "Until the following date" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:423 +msgid "Number of times" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:429 +msgid "Exceptions" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:432 +msgid "none" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:449 +msgid "Notification" +msgstr "Atentigo" + +#: ../../addon/dav/common/wdcal_edit.inc.php:466 +msgid "Notify by" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:469 +msgid "E-Mail" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:470 +msgid "On Friendica / Display" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:474 +msgid "Time" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:478 +msgid "Hours" +msgstr "Horoj" + +#: ../../addon/dav/common/wdcal_edit.inc.php:479 +msgid "Minutes" +msgstr "Minutoj" + +#: ../../addon/dav/common/wdcal_edit.inc.php:480 +msgid "Seconds" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:482 +msgid "Weeks" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:485 +msgid "before the" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:486 +msgid "start of the event" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:487 +msgid "end of the event" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:492 +msgid "Add a notification" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:687 +msgid "The event #name# will start at #date" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:696 +msgid "#name# is about to begin." +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:769 +msgid "Saved" +msgstr "" + +#: ../../addon/dav/common/wdcal_configuration.php:148 +msgid "U.S. Time Format (mm/dd/YYYY)" +msgstr "Usona datformato (mm/dd/YYYY)" + +#: ../../addon/dav/common/wdcal_configuration.php:243 +msgid "German Time Format (dd.mm.YYYY)" +msgstr "Germana datformato (dd.mm.YYYY)" + +#: ../../addon/dav/common/dav_caldav_backend_private.inc.php:39 +msgid "Private Events" +msgstr "" + +#: ../../addon/dav/common/dav_carddav_backend_private.inc.php:46 +msgid "Private Addressbooks" +msgstr "" + +#: ../../addon/dav/friendica/dav_caldav_backend_virtual_friendica.inc.php:36 +msgid "Friendica-Native events" +msgstr "" + +#: ../../addon/dav/friendica/dav_carddav_backend_virtual_friendica.inc.php:36 +#: ../../addon/dav/friendica/dav_carddav_backend_virtual_friendica.inc.php:59 +msgid "Friendica-Contacts" +msgstr "Friendica Kontaktoj" + +#: ../../addon/dav/friendica/dav_carddav_backend_virtual_friendica.inc.php:60 +msgid "Your Friendica-Contacts" +msgstr "Viaj Friendica Kontaktoj" + +#: ../../addon/dav/friendica/layout.fnk.php:99 +#: ../../addon/dav/friendica/layout.fnk.php:136 +msgid "" +"Something went wrong when trying to import the file. Sorry. Maybe some " +"events were imported anyway." +msgstr "" + +#: ../../addon/dav/friendica/layout.fnk.php:131 +msgid "Something went wrong when trying to import the file. Sorry." +msgstr "" + +#: ../../addon/dav/friendica/layout.fnk.php:134 +msgid "The ICS-File has been imported." +msgstr "" + +#: ../../addon/dav/friendica/layout.fnk.php:138 +msgid "No file was uploaded." +msgstr "" + +#: ../../addon/dav/friendica/layout.fnk.php:147 +msgid "Import a ICS-file" +msgstr "" + +#: ../../addon/dav/friendica/layout.fnk.php:150 +msgid "ICS-File" +msgstr "" + +#: ../../addon/dav/friendica/layout.fnk.php:151 +msgid "Overwrite all #num# existing events" +msgstr "" + +#: ../../addon/dav/friendica/layout.fnk.php:228 +msgid "New event" +msgstr "Nova okazo" + +#: ../../addon/dav/friendica/layout.fnk.php:232 +msgid "Today" +msgstr "Hodiaŭ" + +#: ../../addon/dav/friendica/layout.fnk.php:241 +msgid "Day" +msgstr "Tago" + +#: ../../addon/dav/friendica/layout.fnk.php:248 +msgid "Week" +msgstr "Semajno" + +#: ../../addon/dav/friendica/layout.fnk.php:260 +msgid "Reload" +msgstr "Reŝargi" + +#: ../../addon/dav/friendica/layout.fnk.php:271 +msgid "Date" +msgstr "Dato" + +#: ../../addon/dav/friendica/layout.fnk.php:313 +msgid "Error" +msgstr "Eraro" + +#: ../../addon/dav/friendica/layout.fnk.php:380 +msgid "The calendar has been updated." +msgstr "" + +#: ../../addon/dav/friendica/layout.fnk.php:393 +msgid "The new calendar has been created." +msgstr "" + +#: ../../addon/dav/friendica/layout.fnk.php:417 +msgid "The calendar has been deleted." +msgstr "" + +#: ../../addon/dav/friendica/layout.fnk.php:424 +msgid "Calendar Settings" +msgstr "Kalendaraj Agordoj" + +#: ../../addon/dav/friendica/layout.fnk.php:430 +msgid "Date format" +msgstr "Datformato" + +#: ../../addon/dav/friendica/layout.fnk.php:439 +msgid "Time zone" +msgstr "Horzono" + +#: ../../addon/dav/friendica/layout.fnk.php:445 +msgid "Calendars" +msgstr "" + +#: ../../addon/dav/friendica/layout.fnk.php:487 +msgid "Create a new calendar" +msgstr "" + +#: ../../addon/dav/friendica/layout.fnk.php:496 +msgid "Limitations" +msgstr "Limigoj" + +#: ../../addon/dav/friendica/layout.fnk.php:500 +#: ../../addon/libravatar/libravatar.php:82 +msgid "Warning" +msgstr "Averto" + +#: ../../addon/dav/friendica/layout.fnk.php:504 +msgid "Synchronization (iPhone, Thunderbird Lightning, Android, ...)" +msgstr "Sinkronigo (iPhone, Thunderbird Lightning, Android, ...)" + +#: ../../addon/dav/friendica/layout.fnk.php:511 +msgid "Synchronizing this calendar with the iPhone" +msgstr "Sinkronigi tiun kalendaron kun la iPhone" + +#: ../../addon/dav/friendica/layout.fnk.php:522 +msgid "Synchronizing your Friendica-Contacts with the iPhone" +msgstr "Sinkronigi viajn Friendica kontaktojn kun la iPhone" + +#: ../../addon/dav/friendica/main.php:202 +msgid "" +"The current version of this plugin has not been set up correctly. Please " +"contact the system administrator of your installation of friendica to fix " +"this." +msgstr "" + +#: ../../addon/dav/friendica/main.php:242 msgid "Extended calendar with CalDAV-support" msgstr "Etendita kalendaro kun CalDAV subteno" -#: ../../addon/dav/main.php:263 +#: ../../addon/dav/friendica/main.php:279 +#: ../../addon/dav/friendica/main.php:280 ../../include/delivery.php:464 +#: ../../include/enotify.php:28 ../../include/notifier.php:710 +msgid "noreply" +msgstr "nerespondi" + +#: ../../addon/dav/friendica/main.php:282 +msgid "Notification: " +msgstr "" + +#: ../../addon/dav/friendica/main.php:309 msgid "The database tables have been installed." msgstr "La tabeloj estas instalita en la datumbazo" -#: ../../addon/dav/main.php:264 +#: ../../addon/dav/friendica/main.php:310 msgid "An error occurred during the installation." msgstr "Eraro okazis dum instalado" -#: ../../addon/dav/main.php:280 +#: ../../addon/dav/friendica/main.php:316 +msgid "The database tables have been updated." +msgstr "" + +#: ../../addon/dav/friendica/main.php:317 +msgid "An error occurred during the update." +msgstr "" + +#: ../../addon/dav/friendica/main.php:333 msgid "No system-wide settings yet." msgstr "Ankoraŭ ne disponablas tutsistemaj agordoj" -#: ../../addon/dav/main.php:283 +#: ../../addon/dav/friendica/main.php:336 msgid "Database status" msgstr "Stato de datumbazo" -#: ../../addon/dav/main.php:286 +#: ../../addon/dav/friendica/main.php:339 msgid "Installed" msgstr "Instalita" -#: ../../addon/dav/main.php:289 +#: ../../addon/dav/friendica/main.php:343 msgid "Upgrade needed" msgstr "Ĝisdatigo bezonata" -#: ../../addon/dav/main.php:289 +#: ../../addon/dav/friendica/main.php:343 +msgid "" +"Please back up all calendar data (the tables beginning with dav_*) before " +"proceeding. While all calendar events should be converted to the new " +"database structure, it's always safe to have a backup. Below, you can have a" +" look at the database-queries that will be made when pressing the " +"'update'-button." +msgstr "" + +#: ../../addon/dav/friendica/main.php:343 msgid "Upgrade" msgstr "Ĝisdatigo" -#: ../../addon/dav/main.php:292 +#: ../../addon/dav/friendica/main.php:346 msgid "Not installed" msgstr "Ne instalita" -#: ../../addon/dav/main.php:292 +#: ../../addon/dav/friendica/main.php:346 msgid "Install" msgstr "Instali" -#: ../../addon/dav/main.php:297 +#: ../../addon/dav/friendica/main.php:350 +msgid "Unknown" +msgstr "" + +#: ../../addon/dav/friendica/main.php:350 +msgid "" +"Something really went wrong. I cannot recover from this state automatically," +" sorry. Please go to the database backend, back up the data, and delete all " +"tables beginning with 'dav_' manually. Afterwards, this installation routine" +" should be able to reinitialize the tables automatically." +msgstr "" + +#: ../../addon/dav/friendica/main.php:355 msgid "Troubleshooting" msgstr "Problemsolvado" -#: ../../addon/dav/main.php:298 +#: ../../addon/dav/friendica/main.php:356 msgid "Manual creation of the database tables:" msgstr "Mana kreado de tabeloj en la datumbazo:" -#: ../../addon/dav/main.php:299 +#: ../../addon/dav/friendica/main.php:357 msgid "Show SQL-statements" msgstr "Montru SQL ordonojn" -#: ../../addon/dav/calendar.friendica.fnk.php:151 +#: ../../addon/dav/friendica/calendar.friendica.fnk.php:206 msgid "Private Calendar" msgstr "Privata kalendaro" -#: ../../addon/dav/calendar.friendica.fnk.php:158 +#: ../../addon/dav/friendica/calendar.friendica.fnk.php:207 msgid "Friendica Events: Mine" msgstr "Friendica Okazoj: Miaj" -#: ../../addon/dav/calendar.friendica.fnk.php:161 +#: ../../addon/dav/friendica/calendar.friendica.fnk.php:208 msgid "Friendica Events: Contacts" msgstr "Friendica Okazoj: De Kontaktoj" +#: ../../addon/dav/friendica/calendar.friendica.fnk.php:248 +msgid "Private Addresses" +msgstr "" + +#: ../../addon/dav/friendica/calendar.friendica.fnk.php:249 +msgid "Friendica Contacts" +msgstr "" + #: ../../addon/uhremotestorage/uhremotestorage.php:84 #, php-format msgid "" @@ -5385,68 +6139,92 @@ msgstr "Uzi OEmbed por YouTube videtoj" msgid "URL to embed:" msgstr "Enigi la URL adreson:" -#: ../../addon/impressum/impressum.php:36 +#: ../../addon/forumlist/forumlist.php:57 +msgid "show/hide" +msgstr "" + +#: ../../addon/forumlist/forumlist.php:72 +msgid "No forum subscriptions" +msgstr "" + +#: ../../addon/forumlist/forumlist.php:124 +msgid "Forumlist settings updated." +msgstr "" + +#: ../../addon/forumlist/forumlist.php:153 +msgid "Forumlist Settings" +msgstr "" + +#: ../../addon/forumlist/forumlist.php:158 +msgid "Randomise Forumlist/Forum list" +msgstr "" + +#: ../../addon/forumlist/forumlist.php:161 +msgid "Show forumlists/forums on profile forumlist" +msgstr "" + +#: ../../addon/impressum/impressum.php:37 msgid "Impressum" msgstr "Kolofono" -#: ../../addon/impressum/impressum.php:49 -#: ../../addon/impressum/impressum.php:51 -#: ../../addon/impressum/impressum.php:83 +#: ../../addon/impressum/impressum.php:50 +#: ../../addon/impressum/impressum.php:52 +#: ../../addon/impressum/impressum.php:84 msgid "Site Owner" msgstr "Proprietulo de la paĝo" -#: ../../addon/impressum/impressum.php:49 -#: ../../addon/impressum/impressum.php:87 +#: ../../addon/impressum/impressum.php:50 +#: ../../addon/impressum/impressum.php:88 msgid "Email Address" msgstr "Retpoŝta Adreso" -#: ../../addon/impressum/impressum.php:54 -#: ../../addon/impressum/impressum.php:85 +#: ../../addon/impressum/impressum.php:55 +#: ../../addon/impressum/impressum.php:86 msgid "Postal Address" msgstr "Poŝta Adreso" -#: ../../addon/impressum/impressum.php:60 +#: ../../addon/impressum/impressum.php:61 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:83 +#: ../../addon/impressum/impressum.php:84 msgid "The page operators name." msgstr "La nomo de la funkciigisto de la retejo." -#: ../../addon/impressum/impressum.php:84 +#: ../../addon/impressum/impressum.php:85 msgid "Site Owners Profile" msgstr "Profilo de la Proprietulo de la Retejo" -#: ../../addon/impressum/impressum.php:84 +#: ../../addon/impressum/impressum.php:85 msgid "Profile address of the operator." msgstr "La profilo de la funkciigisto de la retejo." -#: ../../addon/impressum/impressum.php:85 +#: ../../addon/impressum/impressum.php:86 msgid "How to contact the operator via snail mail. You can use BBCode here." msgstr "Kiel poŝte kontakti la funkciigisto de la retejo. Vi eblas uzi BBCode ĉi tie." -#: ../../addon/impressum/impressum.php:86 +#: ../../addon/impressum/impressum.php:87 msgid "Notes" msgstr "Notoj" -#: ../../addon/impressum/impressum.php:86 +#: ../../addon/impressum/impressum.php:87 msgid "" "Additional notes that are displayed beneath the contact information. You can" " use BBCode here." msgstr "Pli da notoj kiuj aperas sub la kontaktinformoj. Vi eblas uzi BBCode ĉi tie." -#: ../../addon/impressum/impressum.php:87 +#: ../../addon/impressum/impressum.php:88 msgid "How to contact the operator via email. (will be displayed obfuscated)" msgstr "Kiel kontakti la funkciigiston de la retejo per retpoŝto. (montriĝos vuale) " -#: ../../addon/impressum/impressum.php:88 +#: ../../addon/impressum/impressum.php:89 msgid "Footer note" msgstr "Paĝpiednoto" -#: ../../addon/impressum/impressum.php:88 +#: ../../addon/impressum/impressum.php:89 msgid "Text for the footer. You can use BBCode here." msgstr "Teksto por la paĝpiedo. Vie eblas uzi BBCode ĉi tie." @@ -5543,6 +6321,19 @@ msgstr "Defaŭlta zoma faktoro" msgid "The default zoom level. (1:world, 18:highest)" msgstr "La defaŭlta zoma faktoro. (1:tutmonda, 18:plej proksima)" +#: ../../addon/group_text/group_text.php:46 +#: ../../addon/editplain/editplain.php:46 +msgid "Editplain settings updated." +msgstr "Ĝisdatigis la Editplain agordojn." + +#: ../../addon/group_text/group_text.php:76 +msgid "Group Text" +msgstr "" + +#: ../../addon/group_text/group_text.php:78 +msgid "Use a text only (non-image) group selector in the \"group edit\" menu" +msgstr "" + #: ../../addon/libravatar/libravatar.php:14 msgid "Could NOT install Libravatar successfully.
    It requires PHP >= 5.3" msgstr "NE SUKCESIS instali la bibliotekon Libravatar.
    Ĝi bezonas PHP >= 5.3" @@ -5663,10 +6454,6 @@ msgid "" "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" @@ -5742,6 +6529,59 @@ msgstr "Pasvorto ĉe InsaneJournal" msgid "Post to InsaneJournal by default" msgstr "Defaŭlte afiŝi ĉe InsaneJournal" +#: ../../addon/jappixmini/jappixmini.php:266 +msgid "Jappix Mini addon settings" +msgstr "" + +#: ../../addon/jappixmini/jappixmini.php:268 +msgid "Activate addon" +msgstr "" + +#: ../../addon/jappixmini/jappixmini.php:271 +msgid "" +"Do not insert the Jappixmini Chat-Widget into the webinterface" +msgstr "" + +#: ../../addon/jappixmini/jappixmini.php:274 +msgid "Jabber username" +msgstr "" + +#: ../../addon/jappixmini/jappixmini.php:277 +msgid "Jabber server" +msgstr "" + +#: ../../addon/jappixmini/jappixmini.php:281 +msgid "Jabber BOSH host" +msgstr "" + +#: ../../addon/jappixmini/jappixmini.php:285 +msgid "Jabber password" +msgstr "" + +#: ../../addon/jappixmini/jappixmini.php:290 +msgid "Encrypt Jabber password with Friendica password (recommended)" +msgstr "" + +#: ../../addon/jappixmini/jappixmini.php:293 +msgid "Friendica password" +msgstr "" + +#: ../../addon/jappixmini/jappixmini.php:296 +msgid "Approve subscription requests from Friendica contacts automatically" +msgstr "" + +#: ../../addon/jappixmini/jappixmini.php:299 +msgid "Subscribe to Friendica contacts automatically" +msgstr "" + +#: ../../addon/jappixmini/jappixmini.php:302 +msgid "Purge internal list of jabber addresses of contacts" +msgstr "" + +#: ../../addon/jappixmini/jappixmini.php:308 +msgid "Add contact" +msgstr "" + #: ../../addon/viewsrc/viewsrc.php:37 msgid "View Source" msgstr "Vidi Fonton" @@ -5867,7 +6707,7 @@ msgstr "Sendi ligitajn #-etikedojn kaj @-nomon al StatusNet" msgid "Clear OAuth configuration" msgstr "Forviŝi OAuth agordojn" -#: ../../addon/statusnet/statusnet.php:559 +#: ../../addon/statusnet/statusnet.php:568 msgid "API URL" msgstr "API URL adreso" @@ -5907,10 +6747,6 @@ msgstr "Ĝisdatigis agordojn por Numfriends." 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." @@ -6084,11 +6920,11 @@ msgstr "Defaŭlte sendi publikajn afiŝojn al Twitter" msgid "Send linked #-tags and @-names to Twitter" msgstr "Sendi ligitajn #-etikedojn kaj @-nomon al Twitter" -#: ../../addon/twitter/twitter.php:389 +#: ../../addon/twitter/twitter.php:396 msgid "Consumer key" msgstr "Ŝlosilo de Kliento" -#: ../../addon/twitter/twitter.php:390 +#: ../../addon/twitter/twitter.php:397 msgid "Consumer secret" msgstr "Sekreto de Kliento" @@ -6116,6 +6952,23 @@ msgstr "IRC babilejo" msgid "Popular Channels" msgstr "Popularaj Kanaloj" +#: ../../addon/fromapp/fromapp.php:38 +msgid "Fromapp settings updated." +msgstr "" + +#: ../../addon/fromapp/fromapp.php:64 +msgid "FromApp Settings" +msgstr "" + +#: ../../addon/fromapp/fromapp.php:66 +msgid "" +"The application name you would like to show your posts originating from." +msgstr "" + +#: ../../addon/fromapp/fromapp.php:70 +msgid "Use this application name even if another application was used." +msgstr "" + #: ../../addon/blogger/blogger.php:42 msgid "Post to blogger" msgstr "Afiŝi al blogger" @@ -6178,7 +7031,7 @@ msgstr "Defaŭlte afiŝi al Posterous" #: ../../view/theme/cleanzero/config.php:82 #: ../../view/theme/diabook/config.php:192 -#: ../../view/theme/quattro/config.php:54 ../../view/theme/dispy/config.php:72 +#: ../../view/theme/quattro/config.php:55 ../../view/theme/dispy/config.php:72 msgid "Theme settings" msgstr "Agordoj pri la etoso" @@ -6197,7 +7050,7 @@ msgid "Set theme width" msgstr "Agordi la larĝo por la etoso" #: ../../view/theme/cleanzero/config.php:86 -#: ../../view/theme/quattro/config.php:56 +#: ../../view/theme/quattro/config.php:57 msgid "Color scheme" msgstr "Kolorskemo" @@ -6372,15 +7225,15 @@ msgstr "Agordi zoman faktoron de Tertavolo" msgid "Last tweets" msgstr "Ĵusaj pepaĵoj" -#: ../../view/theme/quattro/config.php:55 +#: ../../view/theme/quattro/config.php:56 msgid "Alignment" msgstr "Ĝisrandigo" -#: ../../view/theme/quattro/config.php:55 +#: ../../view/theme/quattro/config.php:56 msgid "Left" msgstr "Maldekstren" -#: ../../view/theme/quattro/config.php:55 +#: ../../view/theme/quattro/config.php:56 msgid "Center" msgstr "Centren" @@ -6489,18 +7342,6 @@ msgstr "Ĉiuhore" 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" @@ -6670,6 +7511,7 @@ msgid "Sex Addict" msgstr "Seksmaniulo" #: ../../include/profile_selectors.php:42 ../../include/user.php:278 +#: ../../include/user.php:282 msgid "Friends" msgstr "Amikoj" @@ -6757,24 +7599,19 @@ msgstr "Egala" msgid "Ask me" msgstr "Demandu min" -#: ../../include/event.php:20 ../../include/bb2diaspora.php:453 +#: ../../include/event.php:20 ../../include/bb2diaspora.php:396 msgid "Starts:" msgstr "Ekas:" -#: ../../include/event.php:30 ../../include/bb2diaspora.php:461 +#: ../../include/event.php:30 ../../include/bb2diaspora.php:404 msgid "Finishes:" msgstr "Finas:" -#: ../../include/delivery.php:456 ../../include/notifier.php:678 +#: ../../include/delivery.php:457 ../../include/notifier.php:703 msgid "(no subject)" msgstr "(neniu temo)" -#: ../../include/delivery.php:463 ../../include/enotify.php:26 -#: ../../include/notifier.php:685 -msgid "noreply" -msgstr "nerespondi" - -#: ../../include/Scrape.php:572 +#: ../../include/Scrape.php:576 msgid " on Last.fm" msgstr " ĉe Last.fm" @@ -6802,158 +7639,238 @@ msgstr "pli nova" msgid "older" msgstr "pli malnova" -#: ../../include/text.php:593 +#: ../../include/text.php:597 msgid "No contacts" msgstr "Neniu kontaktoj" -#: ../../include/text.php:602 +#: ../../include/text.php:606 #, php-format msgid "%d Contact" msgid_plural "%d Contacts" msgstr[0] "%d Kontakto" msgstr[1] "%d Kontaktoj" -#: ../../include/text.php:864 -msgid "Monday" -msgstr "Lundo" +#: ../../include/text.php:719 +msgid "poke" +msgstr "" -#: ../../include/text.php:864 -msgid "Tuesday" -msgstr "Mardo" +#: ../../include/text.php:719 ../../include/conversation.php:210 +msgid "poked" +msgstr "" -#: ../../include/text.php:864 -msgid "Wednesday" -msgstr "Merkredo" +#: ../../include/text.php:720 +msgid "ping" +msgstr "" -#: ../../include/text.php:864 -msgid "Thursday" -msgstr "Ĵaŭdo" +#: ../../include/text.php:720 +msgid "pinged" +msgstr "" -#: ../../include/text.php:864 -msgid "Friday" -msgstr "Vendredo" +#: ../../include/text.php:721 +msgid "prod" +msgstr "" -#: ../../include/text.php:864 -msgid "Saturday" -msgstr "Sabato" +#: ../../include/text.php:721 +msgid "prodded" +msgstr "" -#: ../../include/text.php:864 -msgid "Sunday" -msgstr "Dimanĉo" +#: ../../include/text.php:722 +msgid "slap" +msgstr "" -#: ../../include/text.php:868 +#: ../../include/text.php:722 +msgid "slapped" +msgstr "" + +#: ../../include/text.php:723 +msgid "finger" +msgstr "" + +#: ../../include/text.php:723 +msgid "fingered" +msgstr "" + +#: ../../include/text.php:724 +msgid "rebuff" +msgstr "" + +#: ../../include/text.php:724 +msgid "rebuffed" +msgstr "" + +#: ../../include/text.php:736 +msgid "happy" +msgstr "" + +#: ../../include/text.php:737 +msgid "sad" +msgstr "" + +#: ../../include/text.php:738 +msgid "mellow" +msgstr "" + +#: ../../include/text.php:739 +msgid "tired" +msgstr "" + +#: ../../include/text.php:740 +msgid "perky" +msgstr "" + +#: ../../include/text.php:741 +msgid "angry" +msgstr "" + +#: ../../include/text.php:742 +msgid "stupified" +msgstr "" + +#: ../../include/text.php:743 +msgid "puzzled" +msgstr "" + +#: ../../include/text.php:744 +msgid "interested" +msgstr "" + +#: ../../include/text.php:745 +msgid "bitter" +msgstr "" + +#: ../../include/text.php:746 +msgid "cheerful" +msgstr "" + +#: ../../include/text.php:747 +msgid "alive" +msgstr "" + +#: ../../include/text.php:748 +msgid "annoyed" +msgstr "" + +#: ../../include/text.php:749 +msgid "anxious" +msgstr "" + +#: ../../include/text.php:750 +msgid "cranky" +msgstr "" + +#: ../../include/text.php:751 +msgid "disturbed" +msgstr "" + +#: ../../include/text.php:752 +msgid "frustrated" +msgstr "" + +#: ../../include/text.php:753 +msgid "motivated" +msgstr "" + +#: ../../include/text.php:754 +msgid "relaxed" +msgstr "" + +#: ../../include/text.php:755 +msgid "surprised" +msgstr "" + +#: ../../include/text.php:921 msgid "January" msgstr "Januaro" -#: ../../include/text.php:868 +#: ../../include/text.php:921 msgid "February" msgstr "Februaro" -#: ../../include/text.php:868 +#: ../../include/text.php:921 msgid "March" msgstr "Marto" -#: ../../include/text.php:868 +#: ../../include/text.php:921 msgid "April" msgstr "Aprilo" -#: ../../include/text.php:868 +#: ../../include/text.php:921 msgid "May" msgstr "Majo" -#: ../../include/text.php:868 +#: ../../include/text.php:921 msgid "June" msgstr "Junio" -#: ../../include/text.php:868 +#: ../../include/text.php:921 msgid "July" msgstr "Julio" -#: ../../include/text.php:868 +#: ../../include/text.php:921 msgid "August" msgstr "Aŭgusto" -#: ../../include/text.php:868 +#: ../../include/text.php:921 msgid "September" msgstr "Septembro" -#: ../../include/text.php:868 +#: ../../include/text.php:921 msgid "October" msgstr "Oktobro" -#: ../../include/text.php:868 +#: ../../include/text.php:921 msgid "November" msgstr "Novembro" -#: ../../include/text.php:868 +#: ../../include/text.php:921 msgid "December" msgstr "Decembro" -#: ../../include/text.php:954 +#: ../../include/text.php:1007 msgid "bytes" msgstr "bajtoj" -#: ../../include/text.php:974 ../../include/text.php:989 -msgid "remove" -msgstr "forviŝi" - -#: ../../include/text.php:974 ../../include/text.php:989 -msgid "[remove]" -msgstr "[forviŝi]" - -#: ../../include/text.php:977 -msgid "Categories:" -msgstr "Kategorioj:" - -#: ../../include/text.php:992 -msgid "Filed under:" -msgstr "Enarkivigita kiel:" - -#: ../../include/text.php:1008 ../../include/text.php:1020 +#: ../../include/text.php:1034 ../../include/text.php:1046 msgid "Click to open/close" msgstr "Klaku por malfermi/fermi" -#: ../../include/text.php:1126 ../../include/user.php:236 +#: ../../include/text.php:1219 ../../include/user.php:236 msgid "default" msgstr "defaŭlta" -#: ../../include/text.php:1138 +#: ../../include/text.php:1231 msgid "Select an alternate language" msgstr "Elekti alian lingvon" -#: ../../include/text.php:1348 +#: ../../include/text.php:1441 msgid "activity" msgstr "aktiveco" -#: ../../include/text.php:1350 -msgid "comment" -msgstr "komento" - -#: ../../include/text.php:1351 +#: ../../include/text.php:1444 msgid "post" msgstr "afiŝo" -#: ../../include/text.php:1506 +#: ../../include/text.php:1599 msgid "Item filed" msgstr "Enarkivigis elementon " -#: ../../include/diaspora.php:660 +#: ../../include/diaspora.php:691 msgid "Sharing notification from Diaspora network" msgstr "Antentigo pri kunhavigado de la Diaspora reto" -#: ../../include/diaspora.php:2174 +#: ../../include/diaspora.php:2211 msgid "Attachments:" msgstr "Kunsendaĵoj:" -#: ../../include/network.php:842 +#: ../../include/network.php:849 msgid "view full size" msgstr "vidi plengrande" -#: ../../include/oembed.php:135 +#: ../../include/oembed.php:137 msgid "Embedded content" msgstr "Enigita enhavo" -#: ../../include/oembed.php:144 +#: ../../include/oembed.php:146 msgid "Embedding disabled" msgstr "Malŝaltita enigitado" @@ -6976,10 +7893,6 @@ msgstr "Ĉiuj" msgid "edit" msgstr "redakti" -#: ../../include/group.php:239 -msgid "Groups" -msgstr "Grupoj" - #: ../../include/group.php:240 msgid "Edit group" msgstr "Redakti grupon" @@ -6992,7 +7905,7 @@ msgstr "Krei novan grupon" msgid "Contacts not in any group" msgstr "Kontaktoj en neniu grupo" -#: ../../include/nav.php:46 ../../boot.php:885 +#: ../../include/nav.php:46 ../../boot.php:911 msgid "Logout" msgstr "Elsaluti" @@ -7000,7 +7913,7 @@ msgstr "Elsaluti" msgid "End this session" msgstr "Fini ĉi-tiun seancon" -#: ../../include/nav.php:49 ../../boot.php:1575 +#: ../../include/nav.php:49 ../../boot.php:1665 msgid "Status" msgstr "Stato" @@ -7080,11 +7993,11 @@ msgstr "Administri" msgid "Manage other pages" msgstr "Administri aliajn paĝojn" -#: ../../include/nav.php:138 ../../boot.php:1133 +#: ../../include/nav.php:138 ../../boot.php:1186 msgid "Profiles" msgstr "Profiloj" -#: ../../include/nav.php:138 ../../boot.php:1133 +#: ../../include/nav.php:138 ../../boot.php:1186 msgid "Manage/edit profiles" msgstr "Administri/redakti profilojn" @@ -7159,17 +8072,17 @@ msgstr "Ĉio" msgid "Categories" msgstr "Kategorioj" -#: ../../include/auth.php:36 +#: ../../include/auth.php:35 msgid "Logged out." msgstr "Elsalutita." -#: ../../include/auth.php:115 +#: ../../include/auth.php:114 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:115 +#: ../../include/auth.php:114 msgid "The error message was:" msgstr "La erarmesaĝo estis:" @@ -7177,81 +8090,65 @@ msgstr "La erarmesaĝo estis:" msgid "Miscellaneous" msgstr "Diversaj" -#: ../../include/datetime.php:131 ../../include/datetime.php:263 +#: ../../include/datetime.php:153 ../../include/datetime.php:285 msgid "year" msgstr "jaro" -#: ../../include/datetime.php:136 ../../include/datetime.php:264 +#: ../../include/datetime.php:158 ../../include/datetime.php:286 msgid "month" msgstr "monato" -#: ../../include/datetime.php:141 ../../include/datetime.php:266 +#: ../../include/datetime.php:163 ../../include/datetime.php:288 msgid "day" msgstr "tago" -#: ../../include/datetime.php:254 +#: ../../include/datetime.php:276 msgid "never" msgstr "neniam" -#: ../../include/datetime.php:260 +#: ../../include/datetime.php:282 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 +#: ../../include/datetime.php:287 msgid "week" msgstr "semajno" -#: ../../include/datetime.php:265 -msgid "weeks" -msgstr "semajnoj" - -#: ../../include/datetime.php:266 -msgid "days" -msgstr "tagoj" - -#: ../../include/datetime.php:267 +#: ../../include/datetime.php:289 msgid "hour" msgstr "horo" -#: ../../include/datetime.php:267 +#: ../../include/datetime.php:289 msgid "hours" msgstr "horoj" -#: ../../include/datetime.php:268 +#: ../../include/datetime.php:290 msgid "minute" msgstr "minuto" -#: ../../include/datetime.php:268 +#: ../../include/datetime.php:290 msgid "minutes" msgstr "minutoj" -#: ../../include/datetime.php:269 +#: ../../include/datetime.php:291 msgid "second" msgstr "sekundo" -#: ../../include/datetime.php:269 +#: ../../include/datetime.php:291 msgid "seconds" msgstr "sekundoj" -#: ../../include/datetime.php:278 +#: ../../include/datetime.php:300 #, php-format msgid "%1$d %2$s ago" msgstr "antaŭ %1$d %2$s" -#: ../../include/datetime.php:450 ../../include/items.php:1561 +#: ../../include/datetime.php:472 ../../include/items.php:1683 #, php-format msgid "%s's birthday" msgstr "Naskiĝtago de %s" -#: ../../include/datetime.php:451 ../../include/items.php:1562 +#: ../../include/datetime.php:473 ../../include/items.php:1684 #, php-format msgid "Happy Birthday %s" msgstr "Feliĉan Naskiĝtagon al %s" @@ -7260,14 +8157,18 @@ msgstr "Feliĉan Naskiĝtagon al %s" msgid "From: " msgstr "De: " -#: ../../include/bbcode.php:102 ../../include/bbcode.php:313 +#: ../../include/bbcode.php:185 ../../include/bbcode.php:406 msgid "Image/photo" msgstr "Bildo" -#: ../../include/bbcode.php:278 ../../include/bbcode.php:298 +#: ../../include/bbcode.php:371 ../../include/bbcode.php:391 msgid "$1 wrote:" msgstr "$1 skribis:" +#: ../../include/bbcode.php:410 ../../include/bbcode.php:411 +msgid "Encrypted content" +msgstr "" + #: ../../include/dba.php:41 #, php-format msgid "Cannot locate DNS info for database server '%s'" @@ -7281,172 +8182,188 @@ msgstr "[neniu temo]" msgid "Visible to everybody" msgstr "Videbla al ĉiuj" -#: ../../include/enotify.php:14 +#: ../../include/enotify.php:16 msgid "Friendica Notification" msgstr "Friendica Atentigo" -#: ../../include/enotify.php:17 +#: ../../include/enotify.php:19 msgid "Thank You," msgstr "Dankon," -#: ../../include/enotify.php:19 +#: ../../include/enotify.php:21 #, php-format msgid "%s Administrator" msgstr "%s Administranto" -#: ../../include/enotify.php:38 +#: ../../include/enotify.php:40 #, php-format msgid "%s " msgstr "%s " -#: ../../include/enotify.php:42 +#: ../../include/enotify.php:44 #, php-format msgid "[Friendica:Notify] New mail received at %s" msgstr "[Friendica:Atentigo] Ricevis novan retpoŝton ĉe %s" -#: ../../include/enotify.php:44 +#: ../../include/enotify.php:46 #, php-format msgid "%1$s sent you a new private message at %2$s." msgstr "%1$s sendis al vi novan privatan mesaĝon ĉe %2$s." -#: ../../include/enotify.php:45 +#: ../../include/enotify.php:47 #, php-format msgid "%1$s sent you %2$s." msgstr "%1$s sendis al vi %2$s." -#: ../../include/enotify.php:45 +#: ../../include/enotify.php:47 msgid "a private message" msgstr "privatan mesaĝon" -#: ../../include/enotify.php:46 +#: ../../include/enotify.php:48 #, 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:87 +#: ../../include/enotify.php:89 #, php-format msgid "%1$s commented on [url=%2$s]a %3$s[/url]" msgstr "%1$s komentis pri [url=%2$s]%3$s[/url]" -#: ../../include/enotify.php:94 +#: ../../include/enotify.php:96 #, php-format msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]" msgstr "%1$s komentis pri [url=%2$s]%4$s de %3$s[/url]" -#: ../../include/enotify.php:102 +#: ../../include/enotify.php:104 #, php-format msgid "%1$s commented on [url=%2$s]your %3$s[/url]" msgstr "%1$s komentis pri [url=%2$s]via %3$s[/url]" -#: ../../include/enotify.php:112 +#: ../../include/enotify.php:114 #, php-format msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s" msgstr "[Friendica:Atentigo] Komento pri konversacio #%1$d de %2$s" -#: ../../include/enotify.php:113 +#: ../../include/enotify.php:115 #, 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:116 ../../include/enotify.php:131 -#: ../../include/enotify.php:144 ../../include/enotify.php:157 +#: ../../include/enotify.php:118 ../../include/enotify.php:133 +#: ../../include/enotify.php:146 ../../include/enotify.php:164 +#: ../../include/enotify.php:177 #, 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:123 +#: ../../include/enotify.php:125 #, php-format msgid "[Friendica:Notify] %s posted to your profile wall" msgstr "[Friendica:Atentigo] %s afiŝis al via profilmuro" -#: ../../include/enotify.php:125 +#: ../../include/enotify.php:127 #, php-format msgid "%1$s posted to your profile wall at %2$s" msgstr "%1$s skribis al via profilmuro ĉe %2$s" -#: ../../include/enotify.php:127 +#: ../../include/enotify.php:129 #, php-format msgid "%1$s posted to [url=%2$s]your wall[/url]" msgstr "%1$s afiŝis al [url=%2$s]via muro[/url]" -#: ../../include/enotify.php:138 +#: ../../include/enotify.php:140 #, php-format msgid "[Friendica:Notify] %s tagged you" msgstr "[Friendica:Atentigo] %s markis vin" -#: ../../include/enotify.php:139 +#: ../../include/enotify.php:141 #, php-format msgid "%1$s tagged you at %2$s" msgstr "%1$s markis vin ĉe %2$s" -#: ../../include/enotify.php:140 +#: ../../include/enotify.php:142 #, php-format msgid "%1$s [url=%2$s]tagged you[/url]." msgstr "%1$s [url=%2$s]markis vin[/url]." -#: ../../include/enotify.php:151 +#: ../../include/enotify.php:154 +#, php-format +msgid "[Friendica:Notify] %1$s poked you" +msgstr "" + +#: ../../include/enotify.php:155 +#, php-format +msgid "%1$s poked you at %2$s" +msgstr "" + +#: ../../include/enotify.php:156 +#, php-format +msgid "%1$s [url=%2$s]poked you[/url]." +msgstr "" + +#: ../../include/enotify.php:171 #, php-format msgid "[Friendica:Notify] %s tagged your post" msgstr "[Friendica:Atentigo] %s markis vian afiŝon" -#: ../../include/enotify.php:152 +#: ../../include/enotify.php:172 #, php-format msgid "%1$s tagged your post at %2$s" msgstr "%1$s markis vian afiŝon ĉe %2$s" -#: ../../include/enotify.php:153 +#: ../../include/enotify.php:173 #, php-format msgid "%1$s tagged [url=%2$s]your post[/url]" msgstr "%1$s markis [url=%2$s]vian afiŝon[/url]" -#: ../../include/enotify.php:164 +#: ../../include/enotify.php:184 msgid "[Friendica:Notify] Introduction received" msgstr "[Friendica:Atentigo] Ricevis prezenton" -#: ../../include/enotify.php:165 +#: ../../include/enotify.php:185 #, php-format msgid "You've received an introduction from '%1$s' at %2$s" msgstr "Vi ricevis prezenton de '%1$s' ĉe %2$s" -#: ../../include/enotify.php:166 +#: ../../include/enotify.php:186 #, php-format msgid "You've received [url=%1$s]an introduction[/url] from %2$s." msgstr "Vi ricevis [url=%1$s]prezenton[/url] de %2$s." -#: ../../include/enotify.php:169 ../../include/enotify.php:187 +#: ../../include/enotify.php:189 ../../include/enotify.php:207 #, 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:171 +#: ../../include/enotify.php:191 #, 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:178 +#: ../../include/enotify.php:198 msgid "[Friendica:Notify] Friend suggestion received" msgstr "[Friendica:Atentigo] Ricevis amikosugeston" -#: ../../include/enotify.php:179 +#: ../../include/enotify.php:199 #, php-format msgid "You've received a friend suggestion from '%1$s' at %2$s" msgstr "Vi ricevis amikosugeston de '%1$s' ĉe %2$s" -#: ../../include/enotify.php:180 +#: ../../include/enotify.php:200 #, php-format msgid "" "You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." msgstr "Vi ricevis [url=%1$s]amikosugeston[/url] pri %2$s de %3$s." -#: ../../include/enotify.php:185 +#: ../../include/enotify.php:205 msgid "Name:" msgstr "Nomo:" -#: ../../include/enotify.php:186 +#: ../../include/enotify.php:206 msgid "Photo:" msgstr "Bildo:" -#: ../../include/enotify.php:189 +#: ../../include/enotify.php:209 #, php-format msgid "Please visit %s to approve or reject the suggestion." msgstr "Bonvolu viziti %s por aprobi aŭ malaprobi la sugeston." @@ -7506,23 +8423,18 @@ msgstr "Ne eblas ricevi kontaktinformojn." msgid "following" msgstr "sekvanta" -#: ../../include/items.php:2991 +#: ../../include/items.php:3294 msgid "A new person is sharing with you at " msgstr "Nova persono kunhavigas kun vi ĉe " -#: ../../include/items.php:2991 +#: ../../include/items.php:3294 msgid "You have a new follower at " msgstr "Vi havas novan sekvanton ĉe " -#: ../../include/items.php:3660 +#: ../../include/items.php:3975 msgid "Archives" msgstr "Arkivoj" -#: ../../include/bb2diaspora.php:286 ../../include/bb2diaspora.php:296 -#: ../../include/bb2diaspora.php:297 -msgid "image/photo" -msgstr "bildo/foto" - #: ../../include/user.php:38 msgid "An invitation is required." msgstr "Invio bezonata." @@ -7591,19 +8503,19 @@ msgstr "Eraro okazis dum registrado. Bonvolu provi denove." msgid "An error occurred creating your default profile. Please try again." msgstr "Eraro okazi dum kreado de via defaŭlta profilo. Bonvolu provi denove." -#: ../../include/security.php:21 +#: ../../include/security.php:22 msgid "Welcome " msgstr "Bonvenon " -#: ../../include/security.php:22 +#: ../../include/security.php:23 msgid "Please upload a profile photo." msgstr "Bonvolu alŝuti profilbildon." -#: ../../include/security.php:25 +#: ../../include/security.php:26 msgid "Welcome back " msgstr "Bonvenon " -#: ../../include/security.php:329 +#: ../../include/security.php:344 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." @@ -7613,247 +8525,274 @@ msgstr "La sekuriga ĵetono de la formo estis malĝusta. Tio verŝajne okazis ĉ msgid "stopped following" msgstr "ne plu sekvas" -#: ../../include/Contact.php:218 ../../include/conversation.php:915 +#: ../../include/Contact.php:220 ../../include/conversation.php:1106 +msgid "Poke" +msgstr "" + +#: ../../include/Contact.php:221 ../../include/conversation.php:1100 msgid "View Status" msgstr "Vidi Staton" -#: ../../include/Contact.php:219 ../../include/conversation.php:916 +#: ../../include/Contact.php:222 ../../include/conversation.php:1101 msgid "View Profile" msgstr "Vidi Profilon" -#: ../../include/Contact.php:220 ../../include/conversation.php:917 +#: ../../include/Contact.php:223 ../../include/conversation.php:1102 msgid "View Photos" msgstr "Vidi Bildojn" -#: ../../include/Contact.php:221 ../../include/Contact.php:234 -#: ../../include/conversation.php:918 +#: ../../include/Contact.php:224 ../../include/Contact.php:237 +#: ../../include/conversation.php:1103 msgid "Network Posts" msgstr "Enretaj Afiŝoj" -#: ../../include/Contact.php:222 ../../include/Contact.php:234 -#: ../../include/conversation.php:919 +#: ../../include/Contact.php:225 ../../include/Contact.php:237 +#: ../../include/conversation.php:1104 msgid "Edit Contact" msgstr "Redakti Kontakton" -#: ../../include/Contact.php:223 ../../include/Contact.php:234 -#: ../../include/conversation.php:920 +#: ../../include/Contact.php:226 ../../include/Contact.php:237 +#: ../../include/conversation.php:1105 msgid "Send PM" msgstr "Sendi PM" -#: ../../include/conversation.php:224 +#: ../../include/conversation.php:206 +#, php-format +msgid "%1$s poked %2$s" +msgstr "" + +#: ../../include/conversation.php:290 msgid "post/item" msgstr "afiŝo/elemento" -#: ../../include/conversation.php:225 +#: ../../include/conversation.php:291 #, 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:823 +#: ../../include/conversation.php:645 ../../include/conversation.php:919 +#: ../../object/Item.php:217 +msgid "Categories:" +msgstr "" + +#: ../../include/conversation.php:646 ../../include/conversation.php:920 +#: ../../object/Item.php:218 +msgid "Filed under:" +msgstr "" + +#: ../../include/conversation.php:1002 +msgid "remove" +msgstr "forviŝi" + +#: ../../include/conversation.php:1006 msgid "Delete Selected Items" msgstr "Forviŝi Elektitajn Elementojn" -#: ../../include/conversation.php:978 +#: ../../include/conversation.php:1164 #, php-format msgid "%s likes this." msgstr "%s ŝatas tiun." -#: ../../include/conversation.php:978 +#: ../../include/conversation.php:1164 #, php-format msgid "%s doesn't like this." msgstr "%s malŝatas tiun." -#: ../../include/conversation.php:982 +#: ../../include/conversation.php:1168 #, php-format msgid "%2$d people like this." msgstr "%2$d homoj ŝatas tiun." -#: ../../include/conversation.php:984 +#: ../../include/conversation.php:1170 #, php-format msgid "%2$d people don't like this." msgstr "%2$d homojmalŝatas tiun." -#: ../../include/conversation.php:990 +#: ../../include/conversation.php:1176 msgid "and" msgstr "kaj" -#: ../../include/conversation.php:993 +#: ../../include/conversation.php:1179 #, php-format msgid ", and %d other people" msgstr ", kaj %d aliaj homoj." -#: ../../include/conversation.php:994 +#: ../../include/conversation.php:1180 #, php-format msgid "%s like this." msgstr "%s ŝatas tiun." -#: ../../include/conversation.php:994 +#: ../../include/conversation.php:1180 #, php-format msgid "%s don't like this." msgstr "%s malŝatas tiun." -#: ../../include/conversation.php:1019 +#: ../../include/conversation.php:1204 ../../include/conversation.php:1221 msgid "Visible to everybody" msgstr "Videbla al ĉiuj" -#: ../../include/conversation.php:1021 +#: ../../include/conversation.php:1206 ../../include/conversation.php:1223 msgid "Please enter a video link/URL:" msgstr "Bonvolu entajpi ligilon/adreson de video:" -#: ../../include/conversation.php:1022 +#: ../../include/conversation.php:1207 ../../include/conversation.php:1224 msgid "Please enter an audio link/URL:" msgstr "Bonvolu entajpi ligilon/adreson de sono:" -#: ../../include/conversation.php:1023 +#: ../../include/conversation.php:1208 ../../include/conversation.php:1225 msgid "Tag term:" msgstr "Markfrazo:" -#: ../../include/conversation.php:1025 +#: ../../include/conversation.php:1210 ../../include/conversation.php:1227 msgid "Where are you right now?" msgstr "Kie vi estas nun?" -#: ../../include/conversation.php:1068 +#: ../../include/conversation.php:1270 msgid "upload photo" msgstr "alŝuti bildon" -#: ../../include/conversation.php:1070 +#: ../../include/conversation.php:1272 msgid "attach file" msgstr "kunsendi dosieron" -#: ../../include/conversation.php:1072 +#: ../../include/conversation.php:1274 msgid "web link" msgstr "TTT ligilo" -#: ../../include/conversation.php:1073 +#: ../../include/conversation.php:1275 msgid "Insert video link" msgstr "Alglui ligilon de video" -#: ../../include/conversation.php:1074 +#: ../../include/conversation.php:1276 msgid "video link" msgstr "video ligilo" -#: ../../include/conversation.php:1075 +#: ../../include/conversation.php:1277 msgid "Insert audio link" msgstr "Alglui ligilon de sono" -#: ../../include/conversation.php:1076 +#: ../../include/conversation.php:1278 msgid "audio link" msgstr "sono ligilo" -#: ../../include/conversation.php:1078 +#: ../../include/conversation.php:1280 msgid "set location" msgstr "agordi lokon" -#: ../../include/conversation.php:1080 +#: ../../include/conversation.php:1282 msgid "clear location" msgstr "forviŝi lokon" -#: ../../include/conversation.php:1087 +#: ../../include/conversation.php:1289 msgid "permissions" msgstr "permesoj" -#: ../../include/plugin.php:388 ../../include/plugin.php:390 +#: ../../include/plugin.php:389 ../../include/plugin.php:391 msgid "Click here to upgrade." msgstr "Klaku ĉi tie por ĝisdatigi." -#: ../../include/plugin.php:396 +#: ../../include/plugin.php:397 msgid "This action exceeds the limits set by your subscription plan." msgstr "Tia ago preterpasas la limojn de via abono." -#: ../../include/plugin.php:401 +#: ../../include/plugin.php:402 msgid "This action is not available under your subscription plan." msgstr "Tia ago ne estas permesita laŭ via abono." -#: ../../boot.php:564 +#: ../../boot.php:573 msgid "Delete this item?" msgstr "Forviŝi ĉi tiun elementon?" -#: ../../boot.php:567 +#: ../../boot.php:576 msgid "show fewer" msgstr "montri malpli" -#: ../../boot.php:762 +#: ../../boot.php:783 #, php-format msgid "Update %s failed. See error logs." msgstr "Malsukcesis ĝisdatigi %s. Vidu la protokolojn." -#: ../../boot.php:764 +#: ../../boot.php:785 #, php-format msgid "Update Error at %s" msgstr "Eraro dum ĝisdatigo ĉe %s" -#: ../../boot.php:864 +#: ../../boot.php:886 msgid "Create a New Account" msgstr "Krei Novan Konton" -#: ../../boot.php:888 +#: ../../boot.php:914 msgid "Nickname or Email address: " msgstr "Kaŝnomo aŭ retpoŝtadreso:" -#: ../../boot.php:889 +#: ../../boot.php:915 msgid "Password: " msgstr "Pasvorto:" -#: ../../boot.php:892 +#: ../../boot.php:918 msgid "Or login using OpenID: " msgstr "Aŭ ensaluti per OpenID:" -#: ../../boot.php:898 +#: ../../boot.php:924 msgid "Forgot your password?" msgstr "Ĉu vi vorgesis vian pasvorton?" -#: ../../boot.php:1065 +#: ../../boot.php:1035 +msgid "Requested account is not available." +msgstr "" + +#: ../../boot.php:1112 msgid "Edit profile" msgstr "Redakti profilon" -#: ../../boot.php:1125 +#: ../../boot.php:1178 msgid "Message" msgstr "Mesaĝo" -#: ../../boot.php:1241 ../../boot.php:1320 +#: ../../boot.php:1300 ../../boot.php:1386 msgid "g A l F d" msgstr "\\j\\e \\l\\a G\\a \\h\\o\\r\\o, l F d" -#: ../../boot.php:1242 ../../boot.php:1321 +#: ../../boot.php:1301 ../../boot.php:1387 msgid "F d" msgstr "F d" -#: ../../boot.php:1287 ../../boot.php:1361 +#: ../../boot.php:1346 ../../boot.php:1427 msgid "[today]" msgstr "[hodiaŭ]" -#: ../../boot.php:1299 +#: ../../boot.php:1358 msgid "Birthday Reminders" msgstr "Memorigilo pri naskiĝtagoj" -#: ../../boot.php:1300 +#: ../../boot.php:1359 msgid "Birthdays this week:" msgstr "Naskiĝtagoj ĉi-semajne:" -#: ../../boot.php:1354 +#: ../../boot.php:1420 msgid "[No description]" msgstr "[Neniu priskribo]" -#: ../../boot.php:1372 +#: ../../boot.php:1438 msgid "Event Reminders" msgstr "Memorigilo pri Okazoj" -#: ../../boot.php:1373 +#: ../../boot.php:1439 msgid "Events this week:" msgstr "Okazoj ĉi-semajne:" -#: ../../boot.php:1578 +#: ../../boot.php:1668 msgid "Status Messages and Posts" msgstr "Ŝtatmesaĝoj kaj Afiŝoj" -#: ../../boot.php:1584 +#: ../../boot.php:1675 msgid "Profile Details" msgstr "Profildetaloj" -#: ../../boot.php:1599 +#: ../../boot.php:1692 msgid "Events and Calendar" msgstr "Okazoj kaj Kalendaro" -#: ../../boot.php:1605 +#: ../../boot.php:1699 msgid "Only You Can See This" msgstr "Nur Vi Povas Vidi Tiun" diff --git a/view/eo/strings.php b/view/eo/strings.php index 54e5f15a8d..1f95332eef 100644 --- a/view/eo/strings.php +++ b/view/eo/strings.php @@ -1,7 +1,7 @@ strings["Post successful."] = "Sukcese afiŝita."; @@ -92,6 +92,8 @@ $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["Show Newest First"] = ""; +$a->strings["Show Oldest First"] = ""; $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"; @@ -252,6 +254,11 @@ $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["Poke/Prod"] = ""; +$a->strings["poke, prod or do other things to somebody"] = ""; +$a->strings["Recipient"] = ""; +$a->strings["Choose what you wish to do to recipient"] = ""; +$a->strings["Make this post private"] = ""; $a->strings["Profile Match"] = "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:"; @@ -270,6 +277,10 @@ $a->strings["%d comment"] = array( 0 => "%d komento", 1 => "%d komentoj", ); +$a->strings["comment"] = array( + 0 => "", + 1 => "komento", +); $a->strings["show more"] = "montri pli"; $a->strings["like"] = "ŝati"; $a->strings["dislike"] = "malŝati"; @@ -481,11 +492,13 @@ $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["No special theme for mobile devices"] = ""; $a->strings["Display Settings"] = "Ekranagordoj"; $a->strings["Display Theme:"] = "Vidiga etoso:"; +$a->strings["Mobile Theme:"] = ""; $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["Number of items to display per page:"] = ""; $a->strings["Maximum of 100 items"] = "Maksimume 100 eroj"; $a->strings["Don't show emoticons"] = "Ne montru ridetulojn"; $a->strings["Normal Account Page"] = "Normala Kontopaĝo"; @@ -550,6 +563,7 @@ $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["You are poked/prodded/etc. in a post"] = ""; $a->strings["Advanced Account/Page Type Settings"] = "Detalaj Agordoj pri Tipo de Konto/Paĝo."; $a->strings["Change the behaviour of this account for special situations"] = "Agordi la teniĝon de la konto en specialaj situacioj"; $a->strings["Manage Identities and/or Pages"] = "Administri identecojn kaj/aŭ paĝojn."; @@ -596,19 +610,38 @@ $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["Getting Started"] = ""; +$a->strings["Friendica Walk-Through"] = ""; +$a->strings["On your Quick Start page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."] = ""; +$a->strings["Go to Your Settings"] = ""; $a->strings["On your 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["Profile"] = "Profilo"; +$a->strings["Upload Profile Photo"] = "Alŝuti profilbildon"; $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["Edit Your Profile"] = ""; +$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["Profile Keywords"] = ""; +$a->strings["Set some public keywords for your default profile which describe your interests. We may be able to find other people with similar interests and suggest friendships."] = "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["Connecting"] = ""; +$a->strings["Facebook"] = "Facebook"; $a->strings["Authorise the Facebook Connector if you currently have a Facebook account and we will (optionally) import all your Facebook friends and conversations."] = "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["Importing Emails"] = ""; $a->strings["Enter your email access information on your Connector Settings page if you wish to import and interact with friends or mailing lists from your email INBOX"] = "Entajpu la akreditaĵojn por via retpoŝtkonto en la konektilagordoj se vi volas importi aŭ interagi kun amikoj aŭ dissendlistoj pere de 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["Go to Your Contacts Page"] = ""; $a->strings["Your Contacts page is your gateway to managing friendships and connecting with friends on other networks. Typically you enter their address or site URL in the 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["Go to Your Site's Directory"] = ""; $a->strings["The Directory page lets you find other people in this network or other federated sites. Look for a 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["Finding New People"] = ""; $a->strings["On the side panel of the Contacts page are several tools to find new friends. We can match people by interest, look up people by name or interest, and provide suggestions based on network relationships. On a brand new site, friend suggestions will usually begin to be populated within 24 hours."] = "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["Groups"] = "Grupoj"; +$a->strings["Group Your Contacts"] = ""; $a->strings["Once you have made some friends, organize them into private conversation groups from the sidebar of your Contacts page and then you can interact with each group privately on your Network page."] = "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["Why Aren't My Posts Public?"] = ""; +$a->strings["Friendica respects your privacy. By default, your posts will only show up to people you've added as friends. For more information, see the help section from the link above."] = ""; +$a->strings["Getting Help"] = ""; +$a->strings["Go to the Help Section"] = ""; $a->strings["Our 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."; @@ -626,7 +659,6 @@ $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."; @@ -669,13 +701,16 @@ $a->strings["This message was sent to you by %s, a member of the Friendica socia $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["%1\$s is currently %2\$s"] = ""; +$a->strings["Mood"] = ""; +$a->strings["Set your current mood and tell your friends"] = ""; $a->strings["Image uploaded but image cropping failed."] = "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["Select a profile:"] = ""; $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"; @@ -745,10 +780,16 @@ $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["Mobile system theme"] = ""; +$a->strings["Theme for mobile devices"] = ""; $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["Maximum image length"] = ""; +$a->strings["Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits."] = ""; +$a->strings["JPEG image quality"] = ""; +$a->strings["Uploaded JPEGS will be saved at this quality setting [0-100]. Default is 100, which is full quality."] = ""; $a->strings["Register policy"] = "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."; @@ -764,6 +805,10 @@ $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["Allow threaded items"] = ""; +$a->strings["Allow infinite level threading for items on this site."] = ""; +$a->strings["Private posts by default for new users"] = ""; +$a->strings["Set default post permissions for all new members to the default privacy group rather than public."] = ""; $a->strings["Block multiple registrations"] = "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"; @@ -819,6 +864,7 @@ $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["Site admin"] = ""; $a->strings["Register date"] = "Dato de registrado"; $a->strings["Last login"] = "Plej ĵusa ensaluto"; $a->strings["Last item"] = "Plej ĵusa elemento"; @@ -1041,7 +1087,6 @@ $a->strings["Do not import your Facebook profile wall conversations"] = "Ne impo $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 en tiu ĉi formo.

    "; @@ -1068,11 +1113,19 @@ $a->strings["Hi %1\$s,\n\nThe connection between your accounts on %2\$s and Face $a->strings["StatusNet AutoFollow settings updated."] = "Ĝidatigis StatusNet AutoFollow agordojn."; $a->strings["StatusNet AutoFollow Settings"] = "StatusNet AutoFollow agordoj"; $a->strings["Automatically follow any StatusNet followers/mentioners"] = "Aŭtomate sekvu ĉiujn StatusNet sekvantojn/menciantojn."; +$a->strings["Bg settings updated."] = ""; +$a->strings["Bg Settings"] = ""; +$a->strings["How many contacts to display on profile sidebar"] = "Kiom da kontaktoj mi montru en la flanka strio"; $a->strings["Lifetime of the cache (in hours)"] = "Vivodaŭro de kaŝmemoro (horoj)"; $a->strings["Cache Statistics"] = "Statistikoj pri kaŝmemoro"; $a->strings["Number of items"] = "Kvanto da eroj"; $a->strings["Size of the cache"] = "Grando de la kaŝmemoro"; $a->strings["Delete the whole cache"] = "Forviŝi la kaŝmemoron"; +$a->strings["Facebook Post disabled"] = ""; +$a->strings["Facebook Post"] = ""; +$a->strings["Install Facebook Post connector for this account."] = ""; +$a->strings["Remove Facebook Post connector"] = ""; +$a->strings["Facebook Post Settings"] = ""; $a->strings["%d person likes this"] = array( 0 => "%d homo ŝatas tiun", 1 => "%d homoj ŝatas tiun", @@ -1086,6 +1139,42 @@ $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["bitchslap"] = ""; +$a->strings["bitchslapped"] = ""; +$a->strings["shag"] = ""; +$a->strings["shagged"] = ""; +$a->strings["do something obscenely biological to"] = ""; +$a->strings["did something obscenely biological to"] = ""; +$a->strings["point out the poke feature to"] = ""; +$a->strings["pointed out the poke feature to"] = ""; +$a->strings["declare undying love for"] = ""; +$a->strings["declared undying love for"] = ""; +$a->strings["patent"] = ""; +$a->strings["patented"] = ""; +$a->strings["stroke beard"] = ""; +$a->strings["stroked their beard at"] = ""; +$a->strings["bemoan the declining standards of modern secondary and tertiary education to"] = ""; +$a->strings["bemoans the declining standards of modern secondary and tertiary education to"] = ""; +$a->strings["hug"] = ""; +$a->strings["hugged"] = ""; +$a->strings["kiss"] = ""; +$a->strings["kissed"] = ""; +$a->strings["raise eyebrows at"] = ""; +$a->strings["raised their eyebrows at"] = ""; +$a->strings["insult"] = ""; +$a->strings["insulted"] = ""; +$a->strings["praise"] = ""; +$a->strings["praised"] = ""; +$a->strings["be dubious of"] = ""; +$a->strings["was dubious of"] = ""; +$a->strings["eat"] = ""; +$a->strings["ate"] = ""; +$a->strings["giggle and fawn at"] = ""; +$a->strings["giggled and fawned at"] = ""; +$a->strings["doubt"] = ""; +$a->strings["doubted"] = ""; +$a->strings["glare"] = ""; +$a->strings["glared at"] = ""; $a->strings["YourLS Settings"] = "\"YourLS\" Agordoj"; $a->strings["URL: http://"] = "URL adreso: http://"; $a->strings["Username:"] = "Salutnomo:"; @@ -1121,54 +1210,129 @@ $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["No access"] = "No access"; +$a->strings["Could not open component for editing"] = ""; +$a->strings["Go back to the calendar"] = "Iri reen al la kalendaro"; +$a->strings["Event data"] = ""; +$a->strings["Calendar"] = "Kalendaro"; +$a->strings["Special color"] = ""; +$a->strings["Subject"] = ""; +$a->strings["Starts"] = "Komencas"; +$a->strings["Ends"] = "Finas"; +$a->strings["Description"] = "Priskribo"; +$a->strings["Recurrence"] = ""; +$a->strings["Frequency"] = ""; +$a->strings["Daily"] = "Ĉiutage"; +$a->strings["Weekly"] = "Ĉiusemajne"; +$a->strings["Monthly"] = "Ĉiumonate"; +$a->strings["Yearly"] = ""; +$a->strings["days"] = "tagoj"; +$a->strings["weeks"] = "semajnoj"; +$a->strings["months"] = "monatoj"; +$a->strings["years"] = "jaroj"; +$a->strings["Interval"] = ""; +$a->strings["All %select% %time%"] = ""; +$a->strings["Days"] = "Tagoj"; +$a->strings["Sunday"] = "Dimanĉo"; +$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["First day of week:"] = ""; +$a->strings["Day of month"] = ""; +$a->strings["#num#th of each month"] = ""; +$a->strings["#num#th-last of each month"] = ""; +$a->strings["#num#th #wkday# of each month"] = ""; +$a->strings["#num#th-last #wkday# of each month"] = ""; +$a->strings["Month"] = "Monato"; +$a->strings["#num#th of the given month"] = ""; +$a->strings["#num#th-last of the given month"] = ""; +$a->strings["#num#th #wkday# of the given month"] = ""; +$a->strings["#num#th-last #wkday# of the given month"] = ""; +$a->strings["Repeat until"] = ""; +$a->strings["Infinite"] = ""; +$a->strings["Until the following date"] = ""; +$a->strings["Number of times"] = ""; +$a->strings["Exceptions"] = ""; +$a->strings["none"] = ""; +$a->strings["Notification"] = "Atentigo"; +$a->strings["Notify by"] = ""; +$a->strings["E-Mail"] = ""; +$a->strings["On Friendica / Display"] = ""; +$a->strings["Time"] = ""; +$a->strings["Hours"] = "Horoj"; +$a->strings["Minutes"] = "Minutoj"; +$a->strings["Seconds"] = ""; +$a->strings["Weeks"] = ""; +$a->strings["before the"] = ""; +$a->strings["start of the event"] = ""; +$a->strings["end of the event"] = ""; +$a->strings["Add a notification"] = ""; +$a->strings["The event #name# will start at #date"] = ""; +$a->strings["#name# is about to begin."] = ""; +$a->strings["Saved"] = ""; $a->strings["U.S. Time Format (mm/dd/YYYY)"] = "Usona datformato (mm/dd/YYYY)"; $a->strings["German Time Format (dd.mm.YYYY)"] = "Germana datformato (dd.mm.YYYY)"; -$a->strings["Error"] = "Eraro"; -$a->strings["No access"] = "No access"; +$a->strings["Private Events"] = ""; +$a->strings["Private Addressbooks"] = ""; +$a->strings["Friendica-Native events"] = ""; +$a->strings["Friendica-Contacts"] = "Friendica Kontaktoj"; +$a->strings["Your Friendica-Contacts"] = "Viaj Friendica Kontaktoj"; +$a->strings["Something went wrong when trying to import the file. Sorry. Maybe some events were imported anyway."] = ""; +$a->strings["Something went wrong when trying to import the file. Sorry."] = ""; +$a->strings["The ICS-File has been imported."] = ""; +$a->strings["No file was uploaded."] = ""; +$a->strings["Import a ICS-file"] = ""; +$a->strings["ICS-File"] = ""; +$a->strings["Overwrite all #num# existing events"] = ""; $a->strings["New event"] = "Nova okazo"; $a->strings["Today"] = "Hodiaŭ"; $a->strings["Day"] = "Tago"; $a->strings["Week"] = "Semajno"; -$a->strings["Month"] = "Monato"; $a->strings["Reload"] = "Reŝargi"; $a->strings["Date"] = "Dato"; -$a->strings["Not found"] = "Ne trovita"; -$a->strings["Go back to the calendar"] = "Iri reen al la kalendaro"; -$a->strings["Starts"] = "Komencas"; -$a->strings["Ends"] = "Finas"; -$a->strings["Description"] = "Priskribo"; -$a->strings["Notification"] = "Atentigo"; -$a->strings["Minutes"] = "Minutoj"; -$a->strings["Hours"] = "Horoj"; -$a->strings["Days"] = "Tagoj"; -$a->strings["before"] = "antaŭ"; +$a->strings["Error"] = "Eraro"; +$a->strings["The calendar has been updated."] = ""; +$a->strings["The new calendar has been created."] = ""; +$a->strings["The calendar has been deleted."] = ""; $a->strings["Calendar Settings"] = "Kalendaraj Agordoj"; $a->strings["Date format"] = "Datformato"; $a->strings["Time zone"] = "Horzono"; +$a->strings["Calendars"] = ""; +$a->strings["Create a new calendar"] = ""; $a->strings["Limitations"] = "Limigoj"; $a->strings["Warning"] = "Averto"; $a->strings["Synchronization (iPhone, Thunderbird Lightning, Android, ...)"] = "Sinkronigo (iPhone, Thunderbird Lightning, Android, ...)"; $a->strings["Synchronizing this calendar with the iPhone"] = "Sinkronigi tiun kalendaron kun la iPhone"; $a->strings["Synchronizing your Friendica-Contacts with the iPhone"] = "Sinkronigi viajn Friendica kontaktojn kun la iPhone"; -$a->strings["Friendica-Contacts"] = "Friendica Kontaktoj"; -$a->strings["Your Friendica-Contacts"] = "Viaj Friendica Kontaktoj"; -$a->strings["Calendar"] = "Kalendaro"; +$a->strings["The current version of this plugin has not been set up correctly. Please contact the system administrator of your installation of friendica to fix this."] = ""; $a->strings["Extended calendar with CalDAV-support"] = "Etendita kalendaro kun CalDAV subteno"; +$a->strings["noreply"] = "nerespondi"; +$a->strings["Notification: "] = ""; $a->strings["The database tables have been installed."] = "La tabeloj estas instalita en la datumbazo"; $a->strings["An error occurred during the installation."] = "Eraro okazis dum instalado"; +$a->strings["The database tables have been updated."] = ""; +$a->strings["An error occurred during the update."] = ""; $a->strings["No system-wide settings yet."] = "Ankoraŭ ne disponablas tutsistemaj agordoj"; $a->strings["Database status"] = "Stato de datumbazo"; $a->strings["Installed"] = "Instalita"; $a->strings["Upgrade needed"] = "Ĝisdatigo bezonata"; +$a->strings["Please back up all calendar data (the tables beginning with dav_*) before proceeding. While all calendar events should be converted to the new database structure, it's always safe to have a backup. Below, you can have a look at the database-queries that will be made when pressing the 'update'-button."] = ""; $a->strings["Upgrade"] = "Ĝisdatigo"; $a->strings["Not installed"] = "Ne instalita"; $a->strings["Install"] = "Instali"; +$a->strings["Unknown"] = ""; +$a->strings["Something really went wrong. I cannot recover from this state automatically, sorry. Please go to the database backend, back up the data, and delete all tables beginning with 'dav_' manually. Afterwards, this installation routine should be able to reinitialize the tables automatically."] = ""; $a->strings["Troubleshooting"] = "Problemsolvado"; $a->strings["Manual creation of the database tables:"] = "Mana kreado de tabeloj en la datumbazo:"; $a->strings["Show SQL-statements"] = "Montru SQL ordonojn"; $a->strings["Private Calendar"] = "Privata kalendaro"; $a->strings["Friendica Events: Mine"] = "Friendica Okazoj: Miaj"; $a->strings["Friendica Events: Contacts"] = "Friendica Okazoj: De Kontaktoj"; +$a->strings["Private Addresses"] = ""; +$a->strings["Friendica Contacts"] = ""; $a->strings["Allow to use your friendica id (%s) to connecto to external unhosted-enabled storage (like ownCloud). See 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"; @@ -1223,6 +1387,12 @@ $a->strings["Upload was cancelled, or server error encountered"] = "Alŝutado es $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["show/hide"] = ""; +$a->strings["No forum subscriptions"] = ""; +$a->strings["Forumlist settings updated."] = ""; +$a->strings["Forumlist Settings"] = ""; +$a->strings["Randomise Forumlist/Forum list"] = ""; +$a->strings["Show forumlists/forums on profile forumlist"] = ""; $a->strings["Impressum"] = "Kolofono"; $a->strings["Site Owner"] = "Proprietulo de la paĝo"; $a->strings["Email Address"] = "Retpoŝta Adreso"; @@ -1259,6 +1429,9 @@ $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["Editplain settings updated."] = "Ĝisdatigis la Editplain agordojn."; +$a->strings["Group Text"] = ""; +$a->strings["Use a text only (non-image) group selector in the \"group edit\" menu"] = ""; $a->strings["Could NOT install Libravatar successfully.
    It requires PHP >= 5.3"] = "NE SUKCESIS instali la bibliotekon Libravatar.
    Ĝi bezonas PHP >= 5.3"; $a->strings["generic profile image"] = "komuna profilbildo"; $a->strings["random geometric pattern"] = "loteca geometria skemo"; @@ -1285,7 +1458,6 @@ $a->strings["The MathJax addon renders mathematical formulae written using the L $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["Libravatar addon is installed, too. Please disable Libravatar addon or this Gravatar addon.
    The Libravatar addon will fall back to Gravatar if nothing was found at Libravatar."] = "La Libravatar kromprogramo estas ankaŭ instaltga. Bonvolu malŝalti la Libravatar kromprogramon.
    La Libravatar kromprogramo retropaŝos al Gravatar se neniu troveblis ĉe Libravatar."; @@ -1303,6 +1475,19 @@ $a->strings["Enable InsaneJournal Post Plugin"] = "Ŝalti la InsaneJournal afiŝ $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["Jappix Mini addon settings"] = ""; +$a->strings["Activate addon"] = ""; +$a->strings["Do not insert the Jappixmini Chat-Widget into the webinterface"] = ""; +$a->strings["Jabber username"] = ""; +$a->strings["Jabber server"] = ""; +$a->strings["Jabber BOSH host"] = ""; +$a->strings["Jabber password"] = ""; +$a->strings["Encrypt Jabber password with Friendica password (recommended)"] = ""; +$a->strings["Friendica password"] = ""; +$a->strings["Approve subscription requests from Friendica contacts automatically"] = ""; +$a->strings["Subscribe to Friendica contacts automatically"] = ""; +$a->strings["Purge internal list of jabber addresses of contacts"] = ""; +$a->strings["Add contact"] = ""; $a->strings["View Source"] = "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."; @@ -1339,7 +1524,6 @@ $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."; @@ -1385,6 +1569,10 @@ $a->strings["Popular Channels (comma separated)"] = "Popularaj kanaloj (disigita $a->strings["IRC settings saved."] = "IRC agordoj konservitaj."; $a->strings["IRC Chatroom"] = "IRC babilejo"; $a->strings["Popular Channels"] = "Popularaj Kanaloj"; +$a->strings["Fromapp settings updated."] = ""; +$a->strings["FromApp Settings"] = ""; +$a->strings["The application name you would like to show your posts originating from."] = ""; +$a->strings["Use this application name even if another application was used."] = ""; $a->strings["Post to blogger"] = "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"; @@ -1466,9 +1654,6 @@ $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!"; @@ -1536,7 +1721,6 @@ $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[" on Last.fm"] = " ĉe Last.fm"; $a->strings["prev"] = "antaŭa"; $a->strings["first"] = "unua"; @@ -1549,13 +1733,38 @@ $a->strings["%d Contact"] = array( 0 => "%d Kontakto", 1 => "%d Kontaktoj", ); -$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["poke"] = ""; +$a->strings["poked"] = ""; +$a->strings["ping"] = ""; +$a->strings["pinged"] = ""; +$a->strings["prod"] = ""; +$a->strings["prodded"] = ""; +$a->strings["slap"] = ""; +$a->strings["slapped"] = ""; +$a->strings["finger"] = ""; +$a->strings["fingered"] = ""; +$a->strings["rebuff"] = ""; +$a->strings["rebuffed"] = ""; +$a->strings["happy"] = ""; +$a->strings["sad"] = ""; +$a->strings["mellow"] = ""; +$a->strings["tired"] = ""; +$a->strings["perky"] = ""; +$a->strings["angry"] = ""; +$a->strings["stupified"] = ""; +$a->strings["puzzled"] = ""; +$a->strings["interested"] = ""; +$a->strings["bitter"] = ""; +$a->strings["cheerful"] = ""; +$a->strings["alive"] = ""; +$a->strings["annoyed"] = ""; +$a->strings["anxious"] = ""; +$a->strings["cranky"] = ""; +$a->strings["disturbed"] = ""; +$a->strings["frustrated"] = ""; +$a->strings["motivated"] = ""; +$a->strings["relaxed"] = ""; +$a->strings["surprised"] = ""; $a->strings["January"] = "Januaro"; $a->strings["February"] = "Februaro"; $a->strings["March"] = "Marto"; @@ -1569,15 +1778,10 @@ $a->strings["October"] = "Oktobro"; $a->strings["November"] = "Novembro"; $a->strings["December"] = "Decembro"; $a->strings["bytes"] = "bajtoj"; -$a->strings["remove"] = "forviŝi"; -$a->strings["[remove]"] = "[forviŝi]"; -$a->strings["Categories:"] = "Kategorioj:"; -$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"; @@ -1589,7 +1793,6 @@ $a->strings["A deleted group with this name was revived. Existing item permissio $a->strings["Default privacy group for new contacts"] = "Defaŭlta privateca grupo por novaj kontaktoj"; $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"; @@ -1646,11 +1849,7 @@ $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"; @@ -1663,6 +1862,7 @@ $a->strings["Happy Birthday %s"] = "Feliĉan Naskiĝtagon al %s"; $a->strings["From: "] = "De: "; $a->strings["Image/photo"] = "Bildo"; $a->strings["$1 wrote:"] = "$1 skribis:"; +$a->strings["Encrypted content"] = ""; $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"; @@ -1687,6 +1887,9 @@ $a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = "%1\$s afiŝis al [u $a->strings["[Friendica:Notify] %s tagged you"] = "[Friendica:Atentigo] %s markis vin"; $a->strings["%1\$s tagged you at %2\$s"] = "%1\$s markis vin ĉe %2\$s"; $a->strings["%1\$s [url=%2\$s]tagged you[/url]."] = "%1\$s [url=%2\$s]markis vin[/url]."; +$a->strings["[Friendica:Notify] %1\$s poked you"] = ""; +$a->strings["%1\$s poked you at %2\$s"] = ""; +$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = ""; $a->strings["[Friendica:Notify] %s tagged your post"] = "[Friendica:Atentigo] %s markis vian afiŝon"; $a->strings["%1\$s tagged your post at %2\$s"] = "%1\$s markis vian afiŝon ĉe %2\$s"; $a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = "%1\$s markis [url=%2\$s]vian afiŝon[/url]"; @@ -1716,7 +1919,6 @@ $a->strings["following"] = "sekvanta"; $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["Archives"] = "Arkivoj"; -$a->strings["image/photo"] = "bildo/foto"; $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"; @@ -1738,14 +1940,19 @@ $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["stopped following"] = "ne plu sekvas"; +$a->strings["Poke"] = ""; $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["%1\$s poked %2\$s"] = ""; $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["Categories:"] = ""; +$a->strings["Filed under:"] = ""; +$a->strings["remove"] = "forviŝi"; $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."; @@ -1782,6 +1989,7 @@ $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["Requested account is not available."] = ""; $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"; diff --git a/view/es/messages.po b/view/es/messages.po index 54de3ee64b..3487e558b8 100644 --- a/view/es/messages.po +++ b/view/es/messages.po @@ -1,1459 +1,1217 @@ # FRIENDICA Distributed Social Network -# Copyright (C) 2010, 2011 Mike Macgirvin -# This file is distributed under the same license as the Friendika package. +# Copyright (C) 2010, 2011 the Friendica Project +# This file is distributed under the same license as the Friendica package. # # Translators: # , 2011. +# Carlos Solís , 2012. # David Martín Miranda, 2011. -# , 2011. +# , 2011, 2012. +# Manuel Pérez , 2011-2012. # Manuel Pérez Monís, 2011. # Mike Macgirvin, 2010. msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: http://bugs.friendica.com/\n" -"POT-Creation-Date: 2011-11-15 17:20+0100\n" -"PO-Revision-Date: 2011-11-22 21:19+0000\n" -"Last-Translator: blackhalo \n" -"Language-Team: Spanish (Castilian) (http://www.transifex.net/projects/p/friendica/team/es/)\n" +"POT-Creation-Date: 2012-09-25 10:00-0700\n" +"PO-Revision-Date: 2012-09-26 08:15+0000\n" +"Last-Translator: Carlos Solís \n" +"Language-Team: Spanish (http://www.transifex.com/projects/p/friendica/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: es\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ../../index.php:213 ../../mod/help.php:38 -msgid "Not Found" -msgstr "No se ha encontrado" +#: ../../mod/oexchange.php:25 +msgid "Post successful." +msgstr "¡Publicado!" -#: ../../index.php:216 ../../mod/help.php:41 -msgid "Page not found." -msgstr "Página no encontrada." - -#: ../../index.php:279 ../../mod/profperm.php:19 ../../mod/group.php:67 -msgid "Permission denied" -msgstr "Permiso denegado" - -#: ../../index.php:280 ../../mod/manage.php:75 ../../mod/wall_upload.php:42 -#: ../../mod/follow.php:8 ../../mod/profile_photo.php:19 -#: ../../mod/profile_photo.php:137 ../../mod/profile_photo.php:148 -#: ../../mod/profile_photo.php:159 ../../mod/wall_attach.php:43 -#: ../../mod/suggest.php:28 ../../mod/regmod.php:111 ../../mod/profiles.php:7 -#: ../../mod/profiles.php:229 ../../mod/settings.php:41 -#: ../../mod/settings.php:46 ../../mod/settings.php:376 -#: ../../mod/photos.php:123 ../../mod/photos.php:858 ../../mod/display.php:111 -#: ../../mod/editpost.php:10 ../../mod/invite.php:13 ../../mod/invite.php:81 -#: ../../mod/contacts.php:115 ../../mod/register.php:27 -#: ../../mod/allfriends.php:9 ../../mod/install.php:96 ../../mod/network.php:6 -#: ../../mod/events.php:109 ../../mod/notifications.php:62 -#: ../../mod/crepair.php:113 ../../mod/api.php:26 ../../mod/api.php:31 -#: ../../mod/notes.php:20 ../../mod/fsuggest.php:78 ../../mod/item.php:113 -#: ../../mod/message.php:9 ../../mod/message.php:42 -#: ../../mod/dfrn_confirm.php:53 ../../mod/viewcontacts.php:21 -#: ../../mod/group.php:19 ../../mod/attach.php:33 ../../mod/common.php:9 -#: ../../addon/facebook/facebook.php:331 ../../include/items.php:2874 -msgid "Permission denied." -msgstr "Permiso denegado." - -#: ../../boot.php:419 -msgid "Delete this item?" -msgstr "¿Eliminar este elemento?" - -#: ../../boot.php:420 ../../mod/photos.php:1202 ../../mod/photos.php:1241 -#: ../../mod/photos.php:1272 ../../include/conversation.php:433 -msgid "Comment" -msgstr "Comentar" - -#: ../../boot.php:662 -msgid "Create a New Account" -msgstr "Crear una nueva cuenta" - -#: ../../boot.php:663 ../../mod/register.php:530 ../../include/nav.php:77 -msgid "Register" -msgstr "Registrarse" - -#: ../../boot.php:679 ../../include/nav.php:44 -msgid "Logout" -msgstr "Salir" - -#: ../../boot.php:680 ../../addon/communityhome/communityhome.php:28 -#: ../../addon/communityhome/communityhome.php:34 ../../include/nav.php:62 -msgid "Login" -msgstr "Acceder" - -#: ../../boot.php:682 -msgid "Nickname or Email address: " -msgstr "Apodo o dirección de email: " - -#: ../../boot.php:683 -msgid "Password: " -msgstr "Contraseña: " - -#: ../../boot.php:686 -msgid "OpenID: " -msgstr "OpenID:" - -#: ../../boot.php:692 -msgid "Forgot your password?" -msgstr "¿Olvidó la contraseña?" - -#: ../../boot.php:693 ../../mod/lostpass.php:82 -msgid "Password Reset" -msgstr "Restablecer la contraseña" - -#: ../../boot.php:815 ../../mod/profile.php:10 ../../mod/hcard.php:10 -msgid "No profile" -msgstr "Nigún perfil" - -#: ../../boot.php:839 -msgid "Edit profile" -msgstr "Editar perfil" - -#: ../../boot.php:890 ../../include/contact_widgets.php:9 -msgid "Connect" -msgstr "Conectar" - -#: ../../boot.php:900 ../../include/nav.php:129 -msgid "Profiles" -msgstr "Perfiles" - -#: ../../boot.php:900 ../../include/nav.php:129 -msgid "Manage/edit profiles" -msgstr "Administrar/editar perfiles" - -#: ../../boot.php:906 ../../mod/profiles.php:462 -msgid "Change profile photo" -msgstr "Cambiar foto del perfil" - -#: ../../boot.php:907 ../../mod/profiles.php:463 -msgid "Create New Profile" -msgstr "Crear nuevo perfil" - -#: ../../boot.php:917 ../../mod/profiles.php:473 -msgid "Profile Image" -msgstr "Imagen del Perfil" - -#: ../../boot.php:920 ../../mod/profiles.php:475 -msgid "visible to everybody" -msgstr "Visible para todos" - -#: ../../boot.php:921 ../../mod/profiles.php:476 -msgid "Edit visibility" -msgstr "Editar visibilidad" - -#: ../../boot.php:940 ../../mod/events.php:325 ../../include/event.php:37 -#: ../../include/bb2diaspora.php:249 -msgid "Location:" -msgstr "Localización:" - -#: ../../boot.php:942 ../../include/profile_advanced.php:17 -msgid "Gender:" -msgstr "Género:" - -#: ../../boot.php:945 ../../include/profile_advanced.php:37 -msgid "Status:" -msgstr "Estado:" - -#: ../../boot.php:947 ../../include/profile_advanced.php:45 -msgid "Homepage:" -msgstr "Página de inicio:" - -#: ../../boot.php:1006 ../../boot.php:1068 -msgid "g A l F d" -msgstr "g A l F d" - -#: ../../boot.php:1007 ../../boot.php:1069 -msgid "F d" -msgstr "F d" - -#: ../../boot.php:1030 -msgid "Birthday Reminders" -msgstr "Recordatorios de cumpleaños" - -#: ../../boot.php:1031 -msgid "Birthdays this week:" -msgstr "Cumpleaños esta semana:" - -#: ../../boot.php:1047 ../../boot.php:1111 -msgid "[today]" -msgstr "[hoy]" - -#: ../../boot.php:1092 -msgid "Event Reminders" -msgstr "Recordatorios de eventos" - -#: ../../boot.php:1093 -msgid "Events this week:" -msgstr "Eventos de esta semana:" - -#: ../../boot.php:1105 -msgid "[No description]" -msgstr "[Sin descripción]" - -#: ../../boot.php:1282 ../../include/nav.php:47 -msgid "Status" -msgstr "Estado" - -#: ../../boot.php:1287 ../../mod/profperm.php:103 -#: ../../include/profile_advanced.php:7 ../../include/profile_advanced.php:74 -#: ../../include/nav.php:48 -msgid "Profile" -msgstr "Perfil" - -#: ../../boot.php:1292 ../../include/nav.php:49 -msgid "Photos" -msgstr "Fotografías" - -#: ../../boot.php:1300 ../../mod/events.php:117 ../../include/nav.php:50 -msgid "Events" -msgstr "Eventos" - -#: ../../boot.php:1305 ../../mod/notes.php:44 -msgid "Personal Notes" -msgstr "Notas personales" - -#: ../../mod/manage.php:37 -#, php-format -msgid "Welcome back %s" -msgstr "Bienvenido de nuevo %s" - -#: ../../mod/manage.php:87 -msgid "Manage Identities and/or Pages" -msgstr "Administrar identidades y/o páginas" - -#: ../../mod/manage.php:90 -msgid "" -"(Toggle between different identities or community/group pages which share " -"your account details.)" -msgstr "" -"(Alternar entre las diferentes identidades o las páginas de " -"comunidades/grupos que comparten los datos de su cuenta)." - -#: ../../mod/manage.php:92 -msgid "Select an identity to manage: " -msgstr "Selecciona una identidad a gestionar:" - -#: ../../mod/manage.php:106 ../../mod/profiles.php:375 -#: ../../mod/settings.php:420 ../../mod/settings.php:559 -#: ../../mod/settings.php:707 ../../mod/photos.php:886 -#: ../../mod/photos.php:944 ../../mod/photos.php:1163 -#: ../../mod/photos.php:1203 ../../mod/photos.php:1242 -#: ../../mod/photos.php:1273 ../../mod/localtime.php:45 -#: ../../mod/invite.php:106 ../../mod/contacts.php:306 -#: ../../mod/install.php:137 ../../mod/events.php:330 -#: ../../mod/crepair.php:162 ../../mod/fsuggest.php:107 -#: ../../mod/admin.php:296 ../../mod/admin.php:461 ../../mod/admin.php:587 -#: ../../mod/admin.php:652 ../../mod/group.php:84 ../../mod/group.php:167 -#: ../../addon/tumblr/tumblr.php:89 ../../addon/twitter/twitter.php:179 -#: ../../addon/twitter/twitter.php:202 ../../addon/twitter/twitter.php:299 -#: ../../addon/statusnet/statusnet.php:282 -#: ../../addon/statusnet/statusnet.php:296 -#: ../../addon/statusnet/statusnet.php:322 -#: ../../addon/statusnet/statusnet.php:329 -#: ../../addon/statusnet/statusnet.php:351 -#: ../../addon/statusnet/statusnet.php:486 ../../addon/oembed/oembed.php:41 -#: ../../addon/uhremotestorage/uhremotestorage.php:58 -#: ../../addon/impressum/impressum.php:69 -#: ../../addon/facebook/facebook.php:404 ../../addon/nsfw/nsfw.php:53 -#: ../../addon/randplace/randplace.php:178 ../../addon/piwik/piwik.php:81 -#: ../../addon/wppost/wppost.php:101 ../../include/conversation.php:434 -msgid "Submit" -msgstr "Envía" - -#: ../../mod/dirfind.php:23 -msgid "People Search" -msgstr "Buscar personas" - -#: ../../mod/dirfind.php:57 ../../mod/match.php:57 -msgid "No matches" -msgstr "Sin conincidencias" - -#: ../../mod/wall_upload.php:56 ../../mod/profile_photo.php:113 -#, php-format -msgid "Image exceeds size limit of %d" -msgstr "El tamaño de la imagen supera el límite de %d" - -#: ../../mod/wall_upload.php:65 ../../mod/profile_photo.php:122 -#: ../../mod/photos.php:647 -msgid "Unable to process image." -msgstr "Imposible procesar la imagen." - -#: ../../mod/wall_upload.php:81 ../../mod/wall_upload.php:90 -#: ../../mod/wall_upload.php:97 ../../mod/item.php:299 -#: ../../include/message.php:82 -msgid "Wall Photos" -msgstr "Foto del Muro" - -#: ../../mod/wall_upload.php:84 ../../mod/profile_photo.php:251 -#: ../../mod/photos.php:667 -msgid "Image upload failed." -msgstr "Error al subir la imagen." - -#: ../../mod/profile.php:105 ../../mod/display.php:66 -msgid "Access to this profile has been restricted." -msgstr "EL acceso a este perfil ha sido restringido." - -#: ../../mod/profile.php:127 -msgid "Tips for New Members" -msgstr "Consejos para nuevos miembros" - -#: ../../mod/follow.php:20 ../../mod/dfrn_request.php:340 -msgid "Disallowed profile URL." -msgstr "Dirección de perfil no permitida." - -#: ../../mod/follow.php:39 -msgid "" -"This site is not configured to allow communications with other networks." -msgstr "" -"Este sitio no está configurado para permitir la comunicación con otras " -"redes." - -#: ../../mod/follow.php:40 ../../mod/follow.php:50 -msgid "No compatible communication protocols or feeds were discovered." -msgstr "" -"No se ha descubierto protocolos de comunicación o fuentes compatibles." - -#: ../../mod/follow.php:48 -msgid "The profile address specified does not provide adequate information." -msgstr "" -"La dirección del perfil especificado no proporciona información adecuada." - -#: ../../mod/follow.php:52 -msgid "An author or name was not found." -msgstr "No se ha encontrado un autor o nombre" - -#: ../../mod/follow.php:54 -msgid "No browser URL could be matched to this address." -msgstr "Ninguna dirección URL concuerda con la suministrada." - -#: ../../mod/follow.php:61 -msgid "" -"The profile address specified belongs to a network which has been disabled " -"on this site." -msgstr "" -"La dirección del perfil especificada pertenece a una red que ha sido " -"deshabilitada en este sitio." - -#: ../../mod/follow.php:66 -msgid "" -"Limited profile. This person will be unable to receive direct/personal " -"notifications from you." -msgstr "" -"Perfil limitado. Esta persona no podrá recibir notificaciones " -"directas/personales de ti." - -#: ../../mod/follow.php:133 -msgid "Unable to retrieve contact information." -msgstr "No ha sido posible recibir la información del contacto." - -#: ../../mod/follow.php:179 -msgid "following" -msgstr "siguiendo" - -#: ../../mod/profile_photo.php:28 -msgid "Image uploaded but image cropping failed." -msgstr "Imagen recibida, pero ha fallado al recortarla." - -#: ../../mod/profile_photo.php:58 ../../mod/profile_photo.php:65 -#: ../../mod/profile_photo.php:72 ../../mod/profile_photo.php:170 -#: ../../mod/profile_photo.php:246 ../../mod/profile_photo.php:255 -#: ../../mod/photos.php:144 ../../mod/photos.php:591 ../../mod/photos.php:936 -#: ../../mod/photos.php:951 ../../mod/register.php:318 -#: ../../mod/register.php:325 ../../mod/register.php:332 -#: ../../addon/communityhome/communityhome.php:111 -msgid "Profile Photos" -msgstr "Foto del perfil" - -#: ../../mod/profile_photo.php:61 ../../mod/profile_photo.php:68 -#: ../../mod/profile_photo.php:75 ../../mod/profile_photo.php:258 -#, php-format -msgid "Image size reduction [%s] failed." -msgstr "Ha fallado la reducción de las dimensiones de la imagen [%s]." - -#: ../../mod/profile_photo.php:89 -msgid "" -"Shift-reload the page or clear browser cache if the new photo does not " -"display immediately." -msgstr "" -"Recargue la página o limpie la caché del navegador si la nueva foto no " -"aparece inmediatamente." - -#: ../../mod/profile_photo.php:99 -msgid "Unable to process image" -msgstr "Imposible procesar la imagen" - -#: ../../mod/profile_photo.php:203 -msgid "Upload File:" -msgstr "Subir archivo:" - -#: ../../mod/profile_photo.php:204 -msgid "Upload Profile Photo" -msgstr "Subir foto del Perfil" - -#: ../../mod/profile_photo.php:205 -msgid "Upload" -msgstr "Subir" - -#: ../../mod/profile_photo.php:206 ../../mod/settings.php:686 -msgid "or" -msgstr "o" - -#: ../../mod/profile_photo.php:206 -msgid "skip this step" -msgstr "salta este paso" - -#: ../../mod/profile_photo.php:206 -msgid "select a photo from your photo albums" -msgstr "elige una foto de tus álbumes" - -#: ../../mod/profile_photo.php:219 -msgid "Crop Image" -msgstr "Recortar imagen" - -#: ../../mod/profile_photo.php:220 -msgid "Please adjust the image cropping for optimum viewing." -msgstr "Por favor, ajusta el recorte de la imagen para optimizarla." - -#: ../../mod/profile_photo.php:221 -msgid "Done Editing" -msgstr "Editado" - -#: ../../mod/profile_photo.php:249 -msgid "Image uploaded successfully." -msgstr "Imagen subida con éxito." - -#: ../../mod/home.php:23 ../../addon/communityhome/communityhome.php:179 -#, php-format -msgid "Welcome to %s" -msgstr "Bienvenido a %s" - -#: ../../mod/update_community.php:18 ../../mod/update_network.php:22 -#: ../../mod/update_profile.php:41 ../../mod/update_notes.php:41 +#: ../../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 "[Contenido incrustado - recarga la página para verlo]" -#: ../../mod/wall_attach.php:57 +#: ../../mod/crepair.php:102 +msgid "Contact settings applied." +msgstr "Contacto configurado con éxito." + +#: ../../mod/crepair.php:104 +msgid "Contact update failed." +msgstr "Error al actualizar el Contacto." + +#: ../../mod/crepair.php:115 ../../mod/wall_attach.php:55 +#: ../../mod/fsuggest.php:78 ../../mod/events.php:140 ../../mod/api.php:26 +#: ../../mod/api.php:31 ../../mod/photos.php:128 ../../mod/photos.php:972 +#: ../../mod/editpost.php:10 ../../mod/install.php:151 ../../mod/poke.php:135 +#: ../../mod/notifications.php:66 ../../mod/contacts.php:146 +#: ../../mod/settings.php:86 ../../mod/settings.php:525 +#: ../../mod/settings.php:530 ../../mod/manage.php:87 ../../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:126 +#: ../../mod/item.php:142 ../../mod/mood.php:114 +#: ../../mod/profile_photo.php:19 ../../mod/profile_photo.php:169 +#: ../../mod/profile_photo.php:180 ../../mod/profile_photo.php:193 +#: ../../mod/message.php:38 ../../mod/message.php:168 +#: ../../mod/allfriends.php:9 ../../mod/nogroup.php:25 +#: ../../mod/wall_upload.php:64 ../../mod/follow.php:9 +#: ../../mod/display.php:141 ../../mod/profiles.php:7 +#: ../../mod/profiles.php:413 ../../mod/delegate.php:6 +#: ../../mod/suggest.php:28 ../../mod/invite.php:13 ../../mod/invite.php:81 +#: ../../mod/dfrn_confirm.php:53 ../../addon/facebook/facebook.php:510 +#: ../../addon/facebook/facebook.php:516 ../../addon/fbpost/fbpost.php:159 +#: ../../addon/fbpost/fbpost.php:165 +#: ../../addon/dav/friendica/layout.fnk.php:354 ../../include/items.php:3908 +#: ../../index.php:317 +msgid "Permission denied." +msgstr "Permiso denegado." + +#: ../../mod/crepair.php:129 ../../mod/fsuggest.php:20 +#: ../../mod/fsuggest.php:92 ../../mod/dfrn_confirm.php:118 +msgid "Contact not found." +msgstr "Contacto no encontrado." + +#: ../../mod/crepair.php:135 +msgid "Repair Contact Settings" +msgstr "Reparar la configuración del Contacto" + +#: ../../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 "ADVERTENCIA: Esto es muy avanzado y si se introduce información incorrecta tu conexión con este contacto puede dejar de funcionar." + +#: ../../mod/crepair.php:138 +msgid "" +"Please use your browser 'Back' button now if you are " +"uncertain what to do on this page." +msgstr "Por favor usa el botón 'Atás' de tu navegador ahora si no tienes claro qué hacer en esta página." + +#: ../../mod/crepair.php:144 +msgid "Return to contact editor" +msgstr "Volver al editor de contactos" + +#: ../../mod/crepair.php:148 ../../mod/settings.php:545 +#: ../../mod/settings.php:571 ../../mod/admin.php:692 ../../mod/admin.php:702 +msgid "Name" +msgstr "Nombre" + +#: ../../mod/crepair.php:149 +msgid "Account Nickname" +msgstr "Apodo de la cuenta" + +#: ../../mod/crepair.php:150 +msgid "@Tagname - overrides Name/Nickname" +msgstr "@Etiqueta - Sobrescribe el Nombre/Apodo" + +#: ../../mod/crepair.php:151 +msgid "Account URL" +msgstr "Dirección de la cuenta" + +#: ../../mod/crepair.php:152 +msgid "Friend Request URL" +msgstr "Dirección de la solicitud de amistad" + +#: ../../mod/crepair.php:153 +msgid "Friend Confirm URL" +msgstr "Dirección de confirmación de tu amigo " + +#: ../../mod/crepair.php:154 +msgid "Notification Endpoint URL" +msgstr "Dirección URL de la notificación" + +#: ../../mod/crepair.php:155 +msgid "Poll/Feed URL" +msgstr "Dirección del Sondeo/Fuentes" + +#: ../../mod/crepair.php:156 +msgid "New photo from this URL" +msgstr "Nueva foto de esta dirección" + +#: ../../mod/crepair.php:166 ../../mod/fsuggest.php:107 +#: ../../mod/events.php:455 ../../mod/photos.php:1005 +#: ../../mod/photos.php:1081 ../../mod/photos.php:1338 +#: ../../mod/photos.php:1378 ../../mod/photos.php:1419 +#: ../../mod/photos.php:1451 ../../mod/install.php:246 +#: ../../mod/install.php:284 ../../mod/localtime.php:45 ../../mod/poke.php:199 +#: ../../mod/content.php:693 ../../mod/contacts.php:348 +#: ../../mod/settings.php:543 ../../mod/settings.php:697 +#: ../../mod/settings.php:769 ../../mod/settings.php:976 +#: ../../mod/group.php:85 ../../mod/mood.php:137 ../../mod/message.php:294 +#: ../../mod/message.php:480 ../../mod/admin.php:443 ../../mod/admin.php:689 +#: ../../mod/admin.php:826 ../../mod/admin.php:1025 ../../mod/admin.php:1112 +#: ../../mod/profiles.php:583 ../../mod/invite.php:119 +#: ../../addon/fromgplus/fromgplus.php:40 +#: ../../addon/facebook/facebook.php:619 +#: ../../addon/snautofollow/snautofollow.php:64 ../../addon/bg/bg.php:90 +#: ../../addon/fbpost/fbpost.php:226 ../../addon/yourls/yourls.php:76 +#: ../../addon/ljpost/ljpost.php:93 ../../addon/nsfw/nsfw.php:88 +#: ../../addon/page/page.php:210 ../../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/startpage/startpage.php:92 +#: ../../addon/geonames/geonames.php:187 ../../addon/oembed.old/oembed.php:41 +#: ../../addon/forumlist/forumlist.php:169 +#: ../../addon/impressum/impressum.php:83 +#: ../../addon/notimeline/notimeline.php:64 ../../addon/blockem/blockem.php:57 +#: ../../addon/qcomment/qcomment.php:61 +#: ../../addon/openstreetmap/openstreetmap.php:70 +#: ../../addon/group_text/group_text.php:84 +#: ../../addon/libravatar/libravatar.php:99 +#: ../../addon/libertree/libertree.php:90 ../../addon/altpager/altpager.php:87 +#: ../../addon/mathjax/mathjax.php:42 ../../addon/editplain/editplain.php:84 +#: ../../addon/blackout/blackout.php:98 ../../addon/gravatar/gravatar.php:95 +#: ../../addon/pageheader/pageheader.php:55 ../../addon/ijpost/ijpost.php:93 +#: ../../addon/jappixmini/jappixmini.php:307 +#: ../../addon/statusnet/statusnet.php:278 +#: ../../addon/statusnet/statusnet.php:292 +#: ../../addon/statusnet/statusnet.php:318 +#: ../../addon/statusnet/statusnet.php:325 +#: ../../addon/statusnet/statusnet.php:353 +#: ../../addon/statusnet/statusnet.php:576 ../../addon/tumblr/tumblr.php:90 +#: ../../addon/numfriends/numfriends.php:85 ../../addon/gnot/gnot.php:88 +#: ../../addon/wppost/wppost.php:110 ../../addon/showmore/showmore.php:48 +#: ../../addon/piwik/piwik.php:89 ../../addon/twitter/twitter.php:180 +#: ../../addon/twitter/twitter.php:209 ../../addon/twitter/twitter.php:394 +#: ../../addon/irc/irc.php:55 ../../addon/fromapp/fromapp.php:77 +#: ../../addon/blogger/blogger.php:102 ../../addon/posterous/posterous.php:103 +#: ../../view/theme/cleanzero/config.php:80 +#: ../../view/theme/diabook/theme.php:757 +#: ../../view/theme/diabook/config.php:190 +#: ../../view/theme/quattro/config.php:53 ../../view/theme/dispy/config.php:70 +#: ../../include/conversation.php:607 ../../object/Item.php:559 +msgid "Submit" +msgstr "Envíar" + +#: ../../mod/help.php:30 +msgid "Help:" +msgstr "Ayuda:" + +#: ../../mod/help.php:34 ../../addon/dav/friendica/layout.fnk.php:225 +#: ../../include/nav.php:86 +msgid "Help" +msgstr "Ayuda" + +#: ../../mod/help.php:38 ../../index.php:226 +msgid "Not Found" +msgstr "No se ha encontrado" + +#: ../../mod/help.php:41 ../../index.php:229 +msgid "Page not found." +msgstr "Página no encontrada." + +#: ../../mod/wall_attach.php:69 #, php-format msgid "File exceeds size limit of %d" msgstr "El tamaño del archivo excede el límite de %d" -#: ../../mod/wall_attach.php:87 ../../mod/wall_attach.php:98 +#: ../../mod/wall_attach.php:110 ../../mod/wall_attach.php:121 msgid "File upload failed." msgstr "Ha fallado la subida del archivo." -#: ../../mod/suggest.php:36 ../../include/contact_widgets.php:35 -msgid "Friend Suggestions" -msgstr "Sugerencias de amigos" +#: ../../mod/fsuggest.php:63 +msgid "Friend suggestion sent." +msgstr "Solicitud de amistad enviada." -#: ../../mod/suggest.php:42 -msgid "" -"No suggestions. This works best when you have more than one contact/friend." -msgstr "" -"No hay sugerencias. Esto funciona mejor cuando tienes más de un " -"contacto/amigo." +#: ../../mod/fsuggest.php:97 +msgid "Suggest Friends" +msgstr "Sugerencias de amistad" -#: ../../mod/suggest.php:55 -msgid "Ignore/Hide" -msgstr "Ignorar/Ocultar" - -#: ../../mod/regmod.php:52 ../../mod/register.php:369 +#: ../../mod/fsuggest.php:99 #, php-format -msgid "Registration details for %s" -msgstr "Detalles de registro para %s" +msgid "Suggest a friend for %s" +msgstr "Recomienda un amigo a %s" -#: ../../mod/regmod.php:54 ../../mod/register.php:371 -#: ../../mod/register.php:425 ../../mod/dfrn_request.php:553 -#: ../../mod/lostpass.php:44 ../../mod/lostpass.php:106 -#: ../../mod/dfrn_confirm.php:703 ../../include/items.php:1767 -#: ../../include/items.php:2114 ../../include/items.php:2440 -msgid "Administrator" -msgstr "Administrador" +#: ../../mod/events.php:66 +msgid "Event title and start time are required." +msgstr "Título del evento y hora de inicio requeridas." -#: ../../mod/regmod.php:61 -msgid "Account approved." -msgstr "Cuenta aprobada." +#: ../../mod/events.php:279 +msgid "l, F j" +msgstr "l, F j" -#: ../../mod/regmod.php:93 +#: ../../mod/events.php:301 +msgid "Edit event" +msgstr "Editar evento" + +#: ../../mod/events.php:323 ../../include/text.php:1187 +msgid "link to source" +msgstr "Enlace al original" + +#: ../../mod/events.php:347 ../../view/theme/diabook/theme.php:131 +#: ../../include/nav.php:52 ../../boot.php:1689 +msgid "Events" +msgstr "Eventos" + +#: ../../mod/events.php:348 +msgid "Create New Event" +msgstr "Crea un evento nuevo" + +#: ../../mod/events.php:349 ../../addon/dav/friendica/layout.fnk.php:263 +msgid "Previous" +msgstr "Previo" + +#: ../../mod/events.php:350 ../../mod/install.php:205 +#: ../../addon/dav/friendica/layout.fnk.php:266 +msgid "Next" +msgstr "Siguiente" + +#: ../../mod/events.php:423 +msgid "hour:minute" +msgstr "hora:minuto" + +#: ../../mod/events.php:433 +msgid "Event details" +msgstr "Detalles del evento" + +#: ../../mod/events.php:434 #, php-format -msgid "Registration revoked for %s" -msgstr "Registro anulado para %s" - -#: ../../mod/regmod.php:105 -msgid "Please login." -msgstr "Por favor accede." - -#: ../../mod/profiles.php:21 ../../mod/profiles.php:239 -#: ../../mod/profiles.php:344 ../../mod/dfrn_confirm.php:62 -msgid "Profile not found." -msgstr "Perfil no encontrado." - -#: ../../mod/profiles.php:28 -msgid "Profile Name is required." -msgstr "Se necesita un nombre de perfil." - -#: ../../mod/profiles.php:198 -msgid "Profile updated." -msgstr "Perfil actualizado." - -#: ../../mod/profiles.php:256 -msgid "Profile deleted." -msgstr "Perfil eliminado." - -#: ../../mod/profiles.php:272 ../../mod/profiles.php:303 -msgid "Profile-" -msgstr "Perfil-" - -#: ../../mod/profiles.php:291 ../../mod/profiles.php:330 -msgid "New profile created." -msgstr "Nuevo perfil creado." - -#: ../../mod/profiles.php:309 -msgid "Profile unavailable to clone." -msgstr "Imposible duplicar el perfil." - -#: ../../mod/profiles.php:356 -msgid "Hide your contact/friend list from viewers of this profile?" -msgstr "¿Ocultar tu lista de contactos/amigos en este perfil?" - -#: ../../mod/profiles.php:357 ../../mod/settings.php:629 -#: ../../mod/settings.php:635 ../../mod/settings.php:643 -#: ../../mod/settings.php:647 ../../mod/settings.php:652 -#: ../../mod/settings.php:658 ../../mod/register.php:500 -#: ../../mod/dfrn_request.php:645 ../../mod/api.php:105 -msgid "Yes" -msgstr "Sí" - -#: ../../mod/profiles.php:358 ../../mod/settings.php:629 -#: ../../mod/settings.php:635 ../../mod/settings.php:643 -#: ../../mod/settings.php:647 ../../mod/settings.php:652 -#: ../../mod/settings.php:658 ../../mod/register.php:501 -#: ../../mod/dfrn_request.php:646 ../../mod/api.php:106 -msgid "No" -msgstr "No" - -#: ../../mod/profiles.php:374 -msgid "Edit Profile Details" -msgstr "Editar detalles de tu perfil" - -#: ../../mod/profiles.php:376 -msgid "View this profile" -msgstr "Ver este perfil" - -#: ../../mod/profiles.php:377 -msgid "Create a new profile using these settings" -msgstr "¿Crear un nuevo perfil con esta configuración?" - -#: ../../mod/profiles.php:378 -msgid "Clone this profile" -msgstr "Clonar este perfil" - -#: ../../mod/profiles.php:379 -msgid "Delete this profile" -msgstr "Eliminar este perfil" - -#: ../../mod/profiles.php:380 -msgid "Profile Name:" -msgstr "Nombres del perfil:" - -#: ../../mod/profiles.php:381 -msgid "Your Full Name:" -msgstr "Tu nombre completo:" - -#: ../../mod/profiles.php:382 -msgid "Title/Description:" -msgstr "Título/Descrición:" - -#: ../../mod/profiles.php:383 -msgid "Your Gender:" -msgstr "Género:" - -#: ../../mod/profiles.php:384 -#, php-format -msgid "Birthday (%s):" -msgstr "Cumpleaños (%s):" - -#: ../../mod/profiles.php:385 -msgid "Street Address:" -msgstr "Dirección" - -#: ../../mod/profiles.php:386 -msgid "Locality/City:" -msgstr "Localidad/Ciudad:" - -#: ../../mod/profiles.php:387 -msgid "Postal/Zip Code:" -msgstr "Código postal:" - -#: ../../mod/profiles.php:388 -msgid "Country:" -msgstr "País" - -#: ../../mod/profiles.php:389 -msgid "Region/State:" -msgstr "Región/Estado:" - -#: ../../mod/profiles.php:390 -msgid " Marital Status:" -msgstr " Estado civil:" - -#: ../../mod/profiles.php:391 -msgid "Who: (if applicable)" -msgstr "¿Quién? (si es aplicable)" - -#: ../../mod/profiles.php:392 -msgid "Examples: cathy123, Cathy Williams, cathy@example.com" -msgstr "Ejemplos: cathy123, Cathy Williams, cathy@example.com" - -#: ../../mod/profiles.php:393 ../../include/profile_advanced.php:43 -msgid "Sexual Preference:" -msgstr "Preferencia sexual:" - -#: ../../mod/profiles.php:394 -msgid "Homepage URL:" -msgstr "Dirección de tu página web:" - -#: ../../mod/profiles.php:395 ../../include/profile_advanced.php:47 -msgid "Political Views:" -msgstr "Ideas políticas:" - -#: ../../mod/profiles.php:396 -msgid "Religious Views:" -msgstr "Creencias religiosas" - -#: ../../mod/profiles.php:397 -msgid "Public Keywords:" -msgstr "Palabras clave públicas:" - -#: ../../mod/profiles.php:398 -msgid "Private Keywords:" -msgstr "Palabras clave privadas:" - -#: ../../mod/profiles.php:399 -msgid "Example: fishing photography software" -msgstr "Ejemplo: pesca fotografía software" - -#: ../../mod/profiles.php:400 -msgid "(Used for suggesting potential friends, can be seen by others)" -msgstr "(Utilizado para sugerir amigos potenciales, otros pueden verlo)" - -#: ../../mod/profiles.php:401 -msgid "(Used for searching profiles, never shown to others)" -msgstr "(Utilizado para buscar perfiles, nunca se muestra a otros)" - -#: ../../mod/profiles.php:402 -msgid "Tell us about yourself..." -msgstr "Háblanos sobre ti..." - -#: ../../mod/profiles.php:403 -msgid "Hobbies/Interests" -msgstr "Aficiones/Intereses" - -#: ../../mod/profiles.php:404 -msgid "Contact information and Social Networks" -msgstr "Informacioń de contacto y Redes sociales" - -#: ../../mod/profiles.php:405 -msgid "Musical interests" -msgstr "Gustos musicales" - -#: ../../mod/profiles.php:406 -msgid "Books, literature" -msgstr "Libros, literatura" - -#: ../../mod/profiles.php:407 -msgid "Television" -msgstr "Televisión" - -#: ../../mod/profiles.php:408 -msgid "Film/dance/culture/entertainment" -msgstr "Películas/baile/cultura/entretenimiento" - -#: ../../mod/profiles.php:409 -msgid "Love/romance" -msgstr "Amor/Romance" - -#: ../../mod/profiles.php:410 -msgid "Work/employment" -msgstr "Trabajo/ocupación" - -#: ../../mod/profiles.php:411 -msgid "School/education" -msgstr "Escuela/estudios" - -#: ../../mod/profiles.php:416 -msgid "" -"This is your public profile.
    It may " -"be visible to anybody using the internet." -msgstr "" -"Éste es tu perfil público.
    Puede ser " -"visto por cualquiera usando internet." - -#: ../../mod/profiles.php:426 ../../mod/directory.php:122 -msgid "Age: " -msgstr "Edad: " - -#: ../../mod/profiles.php:461 -msgid "Edit/Manage Profiles" -msgstr "Editar/Administrar perfiles" - -#: ../../mod/notice.php:15 ../../mod/display.php:28 ../../mod/display.php:115 -#: ../../mod/viewsrc.php:15 ../../mod/admin.php:111 ../../mod/admin.php:502 -#: ../../include/items.php:2786 -msgid "Item not found." -msgstr "Elemento no encontrado." - -#: ../../mod/settings.php:9 ../../mod/photos.php:62 -msgid "everybody" -msgstr "todos" - -#: ../../mod/settings.php:67 -msgid "Missing some important data!" -msgstr "¡Faltan algunos datos importantes!" - -#: ../../mod/settings.php:70 ../../mod/settings.php:446 ../../mod/admin.php:62 -msgid "Update" -msgstr "Actualizar" - -#: ../../mod/settings.php:165 -msgid "Failed to connect with email account using the settings provided." -msgstr "" -"Error al conectar con la cuenta de correo mediante la configuración " -"suministrada." - -#: ../../mod/settings.php:170 -msgid "Email settings updated." -msgstr "Configuración de correo electrónico actualizada." - -#: ../../mod/settings.php:188 -msgid "Passwords do not match. Password unchanged." -msgstr "Las contraseñas no coinciden. La contraseña no ha sido modificada." - -#: ../../mod/settings.php:193 -msgid "Empty passwords are not allowed. Password unchanged." -msgstr "" -"No se permiten contraseñas vacías. La contraseña no ha sido modificada." - -#: ../../mod/settings.php:204 -msgid "Password changed." -msgstr "Contraseña modificada." - -#: ../../mod/settings.php:206 -msgid "Password update failed. Please try again." -msgstr "" -"La actualización de la contraseña ha fallado. Por favor, prueba otra vez." - -#: ../../mod/settings.php:253 -msgid " Please use a shorter name." -msgstr " Usa un nombre más corto." - -#: ../../mod/settings.php:255 -msgid " Name too short." -msgstr " Nombre demasiado corto." - -#: ../../mod/settings.php:261 -msgid " Not valid email." -msgstr " Correo no válido." - -#: ../../mod/settings.php:263 -msgid " Cannot change to that email." -msgstr " No se puede usar ese correo." - -#: ../../mod/settings.php:323 ../../addon/twitter/twitter.php:294 -#: ../../addon/impressum/impressum.php:64 -#: ../../addon/facebook/facebook.php:320 ../../addon/piwik/piwik.php:94 -msgid "Settings updated." -msgstr "Configuración actualizada." - -#: ../../mod/settings.php:382 ../../include/nav.php:128 -msgid "Account settings" -msgstr "Configuración de tu cuenta" - -#: ../../mod/settings.php:387 -msgid "Connector settings" -msgstr "Configuración del conector" - -#: ../../mod/settings.php:392 -msgid "Plugin settings" -msgstr "Configuración de los módulos" - -#: ../../mod/settings.php:397 -msgid "Connections" -msgstr "Conexiones" - -#: ../../mod/settings.php:402 -msgid "Export personal data" -msgstr "Exportación de datos personales" - -#: ../../mod/settings.php:419 ../../mod/settings.php:445 -#: ../../mod/settings.php:478 -msgid "Add application" -msgstr "Agregar aplicación" - -#: ../../mod/settings.php:421 ../../mod/settings.php:447 -#: ../../mod/dfrn_request.php:655 ../../mod/tagrm.php:11 -#: ../../mod/tagrm.php:94 ../../addon/js_upload/js_upload.php:45 +msgid "Format is %s %s. Starting date and Title are required." +msgstr "El formato es %s %s. Fecha de inicio y título son obligatorios." + +#: ../../mod/events.php:436 +msgid "Event Starts:" +msgstr "Inicio del evento:" + +#: ../../mod/events.php:436 ../../mod/events.php:450 +msgid "Required" +msgstr "Obligatorio" + +#: ../../mod/events.php:439 +msgid "Finish date/time is not known or not relevant" +msgstr "La fecha/hora de finalización no es conocida o es irrelevante." + +#: ../../mod/events.php:441 +msgid "Event Finishes:" +msgstr "Finalización del evento:" + +#: ../../mod/events.php:444 +msgid "Adjust for viewer timezone" +msgstr "Ajuste de zona horaria" + +#: ../../mod/events.php:446 +msgid "Description:" +msgstr "Descripción:" + +#: ../../mod/events.php:448 ../../mod/directory.php:134 +#: ../../include/event.php:40 ../../include/bb2diaspora.php:412 +#: ../../boot.php:1226 +msgid "Location:" +msgstr "Localización:" + +#: ../../mod/events.php:450 +msgid "Title:" +msgstr "Título:" + +#: ../../mod/events.php:452 +msgid "Share this event" +msgstr "Comparte este evento" + +#: ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 ../../mod/editpost.php:136 +#: ../../mod/dfrn_request.php:847 ../../mod/settings.php:544 +#: ../../mod/settings.php:570 ../../addon/js_upload/js_upload.php:45 +#: ../../include/conversation.php:1307 msgid "Cancel" msgstr "Cancelar" -#: ../../mod/settings.php:422 ../../mod/settings.php:448 -#: ../../mod/crepair.php:144 ../../mod/admin.php:464 ../../mod/admin.php:473 -msgid "Name" -msgstr "Nombre" +#: ../../mod/tagrm.php:41 +msgid "Tag removed" +msgstr "Etiqueta eliminada" -#: ../../mod/settings.php:423 ../../mod/settings.php:449 -#: ../../addon/statusnet/statusnet.php:480 -msgid "Consumer Key" -msgstr "Clave consumer" +#: ../../mod/tagrm.php:79 +msgid "Remove Item Tag" +msgstr "Eliminar etiqueta" -#: ../../mod/settings.php:424 ../../mod/settings.php:450 -#: ../../addon/statusnet/statusnet.php:479 -msgid "Consumer Secret" -msgstr "Secreto consumer" +#: ../../mod/tagrm.php:81 +msgid "Select a tag to remove: " +msgstr "Selecciona una etiqueta para eliminar: " -#: ../../mod/settings.php:425 ../../mod/settings.php:451 -msgid "Redirect" -msgstr "Redirigir" - -#: ../../mod/settings.php:426 ../../mod/settings.php:452 -msgid "Icon url" -msgstr "Dirección URL del ícono" - -#: ../../mod/settings.php:437 -msgid "You can't edit this application." -msgstr "No puedes editar esta aplicación." - -#: ../../mod/settings.php:477 -msgid "Connected Apps" -msgstr "Aplicaciones conectadas" - -#: ../../mod/settings.php:479 ../../mod/editpost.php:90 -#: ../../include/conversation.php:441 ../../include/group.php:190 -msgid "Edit" -msgstr "Editar" - -#: ../../mod/settings.php:480 ../../mod/photos.php:1300 -#: ../../mod/admin.php:468 ../../mod/group.php:154 -#: ../../include/conversation.php:211 ../../include/conversation.php:454 -msgid "Delete" +#: ../../mod/tagrm.php:93 ../../mod/delegate.php:130 +#: ../../addon/dav/common/wdcal_edit.inc.php:468 +msgid "Remove" msgstr "Eliminar" -#: ../../mod/settings.php:481 -msgid "Client key starts with" -msgstr "Clave de cliente comienza con" - -#: ../../mod/settings.php:482 -msgid "No name" -msgstr "Sin nombre" - -#: ../../mod/settings.php:483 -msgid "Remove authorization" -msgstr "Suprimir la autorización" - -#: ../../mod/settings.php:495 -msgid "No Plugin settings configured" -msgstr "Ningún módulo ha sido configurado" - -#: ../../mod/settings.php:502 ../../addon/widgets/widgets.php:122 -msgid "Plugin Settings" -msgstr "Configuración de los módulos" - -#: ../../mod/settings.php:515 ../../mod/settings.php:516 +#: ../../mod/dfrn_poll.php:99 ../../mod/dfrn_poll.php:530 #, php-format -msgid "Built-in support for %s connectivity is %s" -msgstr "El soporte integrado para %s conexión es %s" +msgid "%s welcomes %s" +msgstr "%s te da la bienvenida a %s" -#: ../../mod/settings.php:515 ../../mod/dfrn_request.php:651 -#: ../../include/contact_selectors.php:78 -msgid "Diaspora" -msgstr "Diaspora" +#: ../../mod/api.php:76 ../../mod/api.php:102 +msgid "Authorize application connection" +msgstr "Autorizar la conexión de la aplicación" -#: ../../mod/settings.php:515 ../../mod/settings.php:516 -msgid "enabled" -msgstr "habilitado" +#: ../../mod/api.php:77 +msgid "Return to your app and insert this Securty Code:" +msgstr "Regresa a tu aplicación e introduce este código de seguridad:" -#: ../../mod/settings.php:515 ../../mod/settings.php:516 -msgid "disabled" -msgstr "deshabilitado" +#: ../../mod/api.php:89 +msgid "Please login to continue." +msgstr "Inicia sesión para continuar." -#: ../../mod/settings.php:516 -msgid "StatusNet" -msgstr "StatusNet" - -#: ../../mod/settings.php:542 -msgid "Connector Settings" -msgstr "Configuración del conector" - -#: ../../mod/settings.php:548 -msgid "Email/Mailbox Setup" -msgstr "Configuración del correo/buzón" - -#: ../../mod/settings.php:549 +#: ../../mod/api.php:104 msgid "" -"If you wish to communicate with email contacts using this service " -"(optional), please specify how to connect to your mailbox." -msgstr "" -"Si quieres comunicarte con tus contactos de tu correo usando este servicio " -"(opcional), por favor, especifica cómo conectar con tu buzón." +"Do you want to authorize this application to access your posts and contacts," +" and/or create new posts for you?" +msgstr "¿Quieres autorizar a esta aplicación el acceso a tus mensajes y contactos, y/o crear nuevas publicaciones para ti?" -#: ../../mod/settings.php:550 -msgid "Last successful email check:" -msgstr "Última comprobación del correo con éxito:" +#: ../../mod/api.php:105 ../../mod/dfrn_request.php:835 +#: ../../mod/settings.php:892 ../../mod/settings.php:898 +#: ../../mod/settings.php:906 ../../mod/settings.php:910 +#: ../../mod/settings.php:915 ../../mod/settings.php:921 +#: ../../mod/settings.php:927 ../../mod/settings.php:933 +#: ../../mod/settings.php:963 ../../mod/settings.php:964 +#: ../../mod/settings.php:965 ../../mod/settings.php:966 +#: ../../mod/settings.php:967 ../../mod/register.php:236 +#: ../../mod/profiles.php:563 +msgid "Yes" +msgstr "Sí" -#: ../../mod/settings.php:551 -msgid "Email access is disabled on this site." -msgstr "El acceso por correo está deshabilitado en esta web." +#: ../../mod/api.php:106 ../../mod/dfrn_request.php:836 +#: ../../mod/settings.php:892 ../../mod/settings.php:898 +#: ../../mod/settings.php:906 ../../mod/settings.php:910 +#: ../../mod/settings.php:915 ../../mod/settings.php:921 +#: ../../mod/settings.php:927 ../../mod/settings.php:933 +#: ../../mod/settings.php:963 ../../mod/settings.php:964 +#: ../../mod/settings.php:965 ../../mod/settings.php:966 +#: ../../mod/settings.php:967 ../../mod/register.php:237 +#: ../../mod/profiles.php:564 +msgid "No" +msgstr "No" -#: ../../mod/settings.php:552 -msgid "IMAP server name:" -msgstr "Nombre del servidor IMAP:" - -#: ../../mod/settings.php:553 -msgid "IMAP port:" -msgstr "Puerto IMAP:" - -#: ../../mod/settings.php:554 -msgid "Security:" -msgstr "Seguridad:" - -#: ../../mod/settings.php:554 -msgid "None" -msgstr "Ninguna" - -#: ../../mod/settings.php:555 -msgid "Email login name:" -msgstr "Nombre de usuario:" - -#: ../../mod/settings.php:556 -msgid "Email password:" -msgstr "Contraseña:" - -#: ../../mod/settings.php:557 -msgid "Reply-to address:" -msgstr "Dirección de respuesta:" - -#: ../../mod/settings.php:558 -msgid "Send public posts to all email contacts:" -msgstr "Enviar publicaciones públicas a todos los contactos de correo:" - -#: ../../mod/settings.php:596 ../../mod/admin.php:126 ../../mod/admin.php:443 -msgid "Normal Account" -msgstr "Cuenta normal" - -#: ../../mod/settings.php:597 -msgid "This account is a normal personal profile" -msgstr "Esta cuenta es el perfil de una persona normal" - -#: ../../mod/settings.php:600 ../../mod/admin.php:127 ../../mod/admin.php:444 -msgid "Soapbox Account" -msgstr "Cuenta tribuna" - -#: ../../mod/settings.php:601 -msgid "Automatically approve all connection/friend requests as read-only fans" -msgstr "" -"Aceptar automáticamente todas las peticiones de conexión/amistad como " -"seguidores de solo-lectura" - -#: ../../mod/settings.php:604 ../../mod/admin.php:128 ../../mod/admin.php:445 -msgid "Community/Celebrity Account" -msgstr "Cuenta de Sociedad/Celebridad" - -#: ../../mod/settings.php:605 -msgid "" -"Automatically approve all connection/friend requests as read-write fans" -msgstr "" -"Aceptar automáticamente todas las peticiones de conexión/amistad como " -"seguidores de lectura-escritura" - -#: ../../mod/settings.php:608 ../../mod/admin.php:129 ../../mod/admin.php:446 -msgid "Automatic Friend Account" -msgstr "Cuenta de amistad automática" - -#: ../../mod/settings.php:609 -msgid "Automatically approve all connection/friend requests as friends" -msgstr "" -"Aceptar automáticamente todas las solicitudes de conexión/amistad como " -"amigos" - -#: ../../mod/settings.php:619 -msgid "OpenID:" -msgstr "OpenID" - -#: ../../mod/settings.php:619 -msgid "(Optional) Allow this OpenID to login to this account." -msgstr "(Opcional) Permitir a este OpenID acceder a esta cuenta." - -#: ../../mod/settings.php:629 -msgid "Publish your default profile in your local site directory?" -msgstr "" -"¿Quieres publicar tu perfil predeterminado en el directorio del sitio local?" - -#: ../../mod/settings.php:635 -msgid "Publish your default profile in the global social directory?" -msgstr "" -"¿Quieres publicar tu perfil predeterminado en el directorio social de forma " -"global?" - -#: ../../mod/settings.php:643 -msgid "Hide your contact/friend list from viewers of your default profile?" -msgstr "" -"¿Quieres ocultar tu lista de contactos/amigos en la vista de tu perfil " -"predeterminado?" - -#: ../../mod/settings.php:647 -msgid "Hide profile details and all your messages from unknown viewers?" -msgstr "" -"¿Quieres ocultar los detalles de tu perfil y todos tus mensajes a los " -"desconocidos?" - -#: ../../mod/settings.php:652 -msgid "Allow friends to post to your profile page?" -msgstr "¿Permitir a los amigos publicar en su página de perfil?" - -#: ../../mod/settings.php:658 -msgid "Allow friends to tag your posts?" -msgstr "¿Permitir a los amigos etiquetar tus publicaciones?" - -#: ../../mod/settings.php:667 -msgid "Profile is not published." -msgstr "El perfil no está publicado." - -#: ../../mod/settings.php:691 -msgid "Your Identity Address is" -msgstr "Tu dirección personal es" - -#: ../../mod/settings.php:705 -msgid "Account Settings" -msgstr "Configuración de la cuenta" - -#: ../../mod/settings.php:713 -msgid "Password Settings" -msgstr "Configuración de la contraseña" - -#: ../../mod/settings.php:714 -msgid "New Password:" -msgstr "Contraseña nueva:" - -#: ../../mod/settings.php:715 -msgid "Confirm:" -msgstr "Confirmar:" - -#: ../../mod/settings.php:715 -msgid "Leave password fields blank unless changing" -msgstr "Deja la contraseña en blanco si no quieres cambiarla" - -#: ../../mod/settings.php:719 -msgid "Basic Settings" -msgstr "Configuración básica" - -#: ../../mod/settings.php:720 ../../include/profile_advanced.php:15 -msgid "Full Name:" -msgstr "Nombre completo:" - -#: ../../mod/settings.php:721 -msgid "Email Address:" -msgstr "Dirección de correo electrónico:" - -#: ../../mod/settings.php:722 -msgid "Your Timezone:" -msgstr "Zona horaria:" - -#: ../../mod/settings.php:723 -msgid "Default Post Location:" -msgstr "Localización predeterminada:" - -#: ../../mod/settings.php:724 -msgid "Use Browser Location:" -msgstr "Usar localización del navegador:" - -#: ../../mod/settings.php:725 -msgid "Display Theme:" -msgstr "Utilizar tema:" - -#: ../../mod/settings.php:729 -msgid "Security and Privacy Settings" -msgstr "Configuración de seguridad y privacidad" - -#: ../../mod/settings.php:731 -msgid "Maximum Friend Requests/Day:" -msgstr "Máximo número de peticiones de amistad por día:" - -#: ../../mod/settings.php:731 -msgid "(to prevent spam abuse)" -msgstr "(para prevenir el abuso de spam)" - -#: ../../mod/settings.php:732 -msgid "Default Post Permissions" -msgstr "Permisos por defecto para las publicaciones" - -#: ../../mod/settings.php:733 -msgid "(click to open/close)" -msgstr "(pulsa para abrir/cerrar)" - -#: ../../mod/settings.php:739 -msgid "Automatically expire posts after days:" -msgstr "Las publicaciones expiran automáticamente después de (días):" - -#: ../../mod/settings.php:739 -msgid "If empty, posts will not expire. Expired posts will be deleted" -msgstr "" -"Si lo dejas vacío no expirarán nunca. Las publicaciones que hayan expirado " -"se borrarán" - -#: ../../mod/settings.php:748 -msgid "Notification Settings" -msgstr "Configuración de notificaciones" - -#: ../../mod/settings.php:749 -msgid "Send a notification email when:" -msgstr "Enviar notificación por correo cuando:" - -#: ../../mod/settings.php:750 -msgid "You receive an introduction" -msgstr "Reciba una presentación" - -#: ../../mod/settings.php:751 -msgid "Your introductions are confirmed" -msgstr "Mi presentación sea confirmada" - -#: ../../mod/settings.php:752 -msgid "Someone writes on your profile wall" -msgstr "Alguien escriba en el muro de mi perfil" - -#: ../../mod/settings.php:753 -msgid "Someone writes a followup comment" -msgstr "Algien escriba en un comentario que sigo " - -#: ../../mod/settings.php:754 -msgid "You receive a private message" -msgstr "Reciba un mensaje privado" - -#: ../../mod/settings.php:758 -msgid "Advanced Page Settings" -msgstr "Configuración avanzada" - -#: ../../mod/search.php:13 ../../mod/network.php:75 -msgid "Saved Searches" -msgstr "Búsquedas guardadas" - -#: ../../mod/search.php:16 ../../mod/network.php:81 -msgid "Remove term" -msgstr "Eliminar término" - -#: ../../mod/search.php:71 ../../mod/photos.php:752 ../../mod/display.php:7 -#: ../../mod/dfrn_request.php:594 ../../mod/directory.php:31 -#: ../../mod/viewcontacts.php:16 ../../mod/community.php:16 -msgid "Public access denied." -msgstr "Acceso público denegado." - -#: ../../mod/search.php:83 -msgid "Search This Site" -msgstr "Buscar en este sitio" - -#: ../../mod/search.php:125 ../../mod/community.php:60 -msgid "No results." -msgstr "Sin resultados." - -#: ../../mod/photos.php:42 +#: ../../mod/photos.php:46 ../../boot.php:1682 msgid "Photo Albums" msgstr "Álbum de Fotos" -#: ../../mod/photos.php:50 ../../mod/photos.php:144 ../../mod/photos.php:866 -#: ../../mod/photos.php:936 ../../mod/photos.php:951 ../../mod/photos.php:1351 -#: ../../mod/photos.php:1363 ../../addon/communityhome/communityhome.php:110 +#: ../../mod/photos.php:54 ../../mod/photos.php:149 ../../mod/photos.php:986 +#: ../../mod/photos.php:1073 ../../mod/photos.php:1088 +#: ../../mod/photos.php:1530 ../../mod/photos.php:1542 +#: ../../addon/communityhome/communityhome.php:110 +#: ../../view/theme/diabook/theme.php:598 msgid "Contact Photos" msgstr "Foto del contacto" -#: ../../mod/photos.php:133 -msgid "Contact information unavailable" -msgstr "Información del contacto no disponible" - -#: ../../mod/photos.php:154 -msgid "Album not found." -msgstr "Álbum no encontrado." - -#: ../../mod/photos.php:172 ../../mod/photos.php:945 -msgid "Delete Album" -msgstr "Eliminar álbum" - -#: ../../mod/photos.php:235 ../../mod/photos.php:1164 -msgid "Delete Photo" -msgstr "Eliminar foto" - -#: ../../mod/photos.php:522 -msgid "was tagged in a" -msgstr "ha sido etiquetado en" - -#: ../../mod/photos.php:522 ../../mod/tagger.php:70 ../../mod/like.php:127 -#: ../../addon/communityhome/communityhome.php:163 -#: ../../include/conversation.php:31 ../../include/diaspora.php:1211 -msgid "photo" -msgstr "foto" - -#: ../../mod/photos.php:522 -msgid "by" -msgstr "por" - -#: ../../mod/photos.php:625 ../../addon/js_upload/js_upload.php:312 -msgid "Image exceeds size limit of " -msgstr "La imagen supera el limite de tamaño de " - -#: ../../mod/photos.php:633 -msgid "Image file is empty." -msgstr "El archivo de imagen está vacío." - -#: ../../mod/photos.php:762 -msgid "No photos selected" -msgstr "Ninguna foto seleccionada" - -#: ../../mod/photos.php:839 -msgid "Access to this item is restricted." -msgstr "El acceso a este elemento está restringido." - -#: ../../mod/photos.php:893 -msgid "Upload Photos" -msgstr "Subir fotos" - -#: ../../mod/photos.php:896 ../../mod/photos.php:940 -msgid "New album name: " -msgstr "Nombre del nuevo álbum: " - -#: ../../mod/photos.php:897 -msgid "or existing album name: " -msgstr "o nombre de un álbum existente: " - -#: ../../mod/photos.php:898 -msgid "Do not show a status post for this upload" -msgstr "No mostrar un mensaje de estado de este envío" - -#: ../../mod/photos.php:900 ../../mod/photos.php:1159 -msgid "Permissions" -msgstr "Permisos" - -#: ../../mod/photos.php:955 -msgid "Edit Album" -msgstr "Modifica álbum" - -#: ../../mod/photos.php:965 ../../mod/photos.php:1381 -msgid "View Photo" -msgstr "Ver foto" - -#: ../../mod/photos.php:1000 -msgid "Permission denied. Access to this item may be restricted." -msgstr "Permiso denegado. El acceso a este elemento puede estar restringido." - -#: ../../mod/photos.php:1002 -msgid "Photo not available" -msgstr "Foto no disponible" - -#: ../../mod/photos.php:1052 -msgid "View photo" -msgstr "Ver foto" - -#: ../../mod/photos.php:1052 -msgid "Edit photo" -msgstr "Modificar foto" - -#: ../../mod/photos.php:1053 -msgid "Use as profile photo" -msgstr "Usar como foto del perfil" - -#: ../../mod/photos.php:1059 ../../include/conversation.php:369 -msgid "Private Message" -msgstr "Mensaje privado" - -#: ../../mod/photos.php:1070 -msgid "View Full Size" -msgstr "Ver a tamaño completo" - -#: ../../mod/photos.php:1138 -msgid "Tags: " -msgstr "Etiquetas: " - -#: ../../mod/photos.php:1141 -msgid "[Remove any tag]" -msgstr "[Borrar todas las etiquetas]" - -#: ../../mod/photos.php:1152 -msgid "New album name" -msgstr "Nuevo nombre del álbum" - -#: ../../mod/photos.php:1155 -msgid "Caption" -msgstr "Título" - -#: ../../mod/photos.php:1157 -msgid "Add a Tag" -msgstr "Añadir una etiqueta" - -#: ../../mod/photos.php:1161 -msgid "" -"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" -msgstr "" -"Ejemplo: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" - -#: ../../mod/photos.php:1181 ../../include/conversation.php:416 -msgid "I like this (toggle)" -msgstr "Me gusta esto (cambiar)" - -#: ../../mod/photos.php:1182 ../../include/conversation.php:417 -msgid "I don't like this (toggle)" -msgstr "No me gusta esto (cambiar)" - -#: ../../mod/photos.php:1183 ../../include/conversation.php:814 -msgid "Share" -msgstr "Compartir" - -#: ../../mod/photos.php:1184 ../../mod/editpost.php:99 -#: ../../mod/message.php:137 ../../mod/message.php:270 -#: ../../include/conversation.php:251 ../../include/conversation.php:578 -#: ../../include/conversation.php:823 -msgid "Please wait" -msgstr "Por favor, espere" - -#: ../../mod/photos.php:1200 ../../mod/photos.php:1239 -#: ../../mod/photos.php:1270 ../../include/conversation.php:431 -msgid "This is you" -msgstr "Eres tú" - -#: ../../mod/photos.php:1368 -msgid "Recent Photos" -msgstr "Fotos recientes" - -#: ../../mod/photos.php:1372 +#: ../../mod/photos.php:61 ../../mod/photos.php:1104 ../../mod/photos.php:1580 msgid "Upload New Photos" msgstr "Subir nuevas fotos" -#: ../../mod/photos.php:1385 +#: ../../mod/photos.php:74 ../../mod/settings.php:23 +msgid "everybody" +msgstr "todos" + +#: ../../mod/photos.php:138 +msgid "Contact information unavailable" +msgstr "Información del contacto no disponible" + +#: ../../mod/photos.php:149 ../../mod/photos.php:653 ../../mod/photos.php:1073 +#: ../../mod/photos.php:1088 ../../mod/profile_photo.php:74 +#: ../../mod/profile_photo.php:81 ../../mod/profile_photo.php:88 +#: ../../mod/profile_photo.php:204 ../../mod/profile_photo.php:296 +#: ../../mod/profile_photo.php:305 +#: ../../addon/communityhome/communityhome.php:111 +#: ../../view/theme/diabook/theme.php:599 ../../include/user.php:324 +#: ../../include/user.php:331 ../../include/user.php:338 +msgid "Profile Photos" +msgstr "Foto del perfil" + +#: ../../mod/photos.php:159 +msgid "Album not found." +msgstr "Álbum no encontrado." + +#: ../../mod/photos.php:177 ../../mod/photos.php:1082 +msgid "Delete Album" +msgstr "Eliminar álbum" + +#: ../../mod/photos.php:240 ../../mod/photos.php:1339 +msgid "Delete Photo" +msgstr "Eliminar foto" + +#: ../../mod/photos.php:584 +msgid "was tagged in a" +msgstr "ha sido etiquetado en" + +#: ../../mod/photos.php:584 ../../mod/like.php:145 ../../mod/tagger.php:62 +#: ../../addon/communityhome/communityhome.php:163 +#: ../../view/theme/diabook/theme.php:570 ../../include/text.php:1439 +#: ../../include/diaspora.php:1824 ../../include/conversation.php:125 +#: ../../include/conversation.php:253 +msgid "photo" +msgstr "foto" + +#: ../../mod/photos.php:584 +msgid "by" +msgstr "por" + +#: ../../mod/photos.php:689 ../../addon/js_upload/js_upload.php:315 +msgid "Image exceeds size limit of " +msgstr "La imagen supera tamaño límite de " + +#: ../../mod/photos.php:697 +msgid "Image file is empty." +msgstr "El archivo de imagen está vacío." + +#: ../../mod/photos.php:729 ../../mod/profile_photo.php:153 +#: ../../mod/wall_upload.php:110 +msgid "Unable to process image." +msgstr "Imposible procesar la imagen." + +#: ../../mod/photos.php:756 ../../mod/profile_photo.php:301 +#: ../../mod/wall_upload.php:136 +msgid "Image upload failed." +msgstr "Error al subir la imagen." + +#: ../../mod/photos.php:842 ../../mod/community.php:18 +#: ../../mod/dfrn_request.php:760 ../../mod/viewcontacts.php:17 +#: ../../mod/display.php:7 ../../mod/search.php:73 ../../mod/directory.php:31 +msgid "Public access denied." +msgstr "Acceso público denegado." + +#: ../../mod/photos.php:852 +msgid "No photos selected" +msgstr "Ninguna foto seleccionada" + +#: ../../mod/photos.php:953 +msgid "Access to this item is restricted." +msgstr "El acceso a este elemento está restringido." + +#: ../../mod/photos.php:1015 +#, php-format +msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage." +msgstr "Has usado %1$.2f MB de %2$.2f MB de tu álbum de fotos." + +#: ../../mod/photos.php:1018 +#, php-format +msgid "You have used %1$.2f Mbytes of photo storage." +msgstr "Has usado %1$.2f MB de tu álbum de fotos." + +#: ../../mod/photos.php:1024 +msgid "Upload Photos" +msgstr "Subir fotos" + +#: ../../mod/photos.php:1028 ../../mod/photos.php:1077 +msgid "New album name: " +msgstr "Nombre del nuevo álbum: " + +#: ../../mod/photos.php:1029 +msgid "or existing album name: " +msgstr "o nombre de un álbum existente: " + +#: ../../mod/photos.php:1030 +msgid "Do not show a status post for this upload" +msgstr "No actualizar tu estado con este envío" + +#: ../../mod/photos.php:1032 ../../mod/photos.php:1334 +msgid "Permissions" +msgstr "Permisos" + +#: ../../mod/photos.php:1092 +msgid "Edit Album" +msgstr "Modificar álbum" + +#: ../../mod/photos.php:1098 +msgid "Show Newest First" +msgstr "Mostrar más nuevos primero" + +#: ../../mod/photos.php:1100 +msgid "Show Oldest First" +msgstr "Mostrar más antiguos primero" + +#: ../../mod/photos.php:1124 ../../mod/photos.php:1563 +msgid "View Photo" +msgstr "Ver foto" + +#: ../../mod/photos.php:1159 +msgid "Permission denied. Access to this item may be restricted." +msgstr "Permiso denegado. El acceso a este elemento puede estar restringido." + +#: ../../mod/photos.php:1161 +msgid "Photo not available" +msgstr "Foto no disponible" + +#: ../../mod/photos.php:1217 +msgid "View photo" +msgstr "Ver foto" + +#: ../../mod/photos.php:1217 +msgid "Edit photo" +msgstr "Modificar foto" + +#: ../../mod/photos.php:1218 +msgid "Use as profile photo" +msgstr "Usar como foto del perfil" + +#: ../../mod/photos.php:1224 ../../mod/content.php:603 +#: ../../include/conversation.php:436 ../../object/Item.php:103 +msgid "Private Message" +msgstr "Mensaje privado" + +#: ../../mod/photos.php:1243 +msgid "View Full Size" +msgstr "Ver a tamaño completo" + +#: ../../mod/photos.php:1311 +msgid "Tags: " +msgstr "Etiquetas: " + +#: ../../mod/photos.php:1314 +msgid "[Remove any tag]" +msgstr "[Borrar todas las etiquetas]" + +#: ../../mod/photos.php:1324 +msgid "Rotate CW (right)" +msgstr "Girar a la derecha" + +#: ../../mod/photos.php:1325 +msgid "Rotate CCW (left)" +msgstr "Girar a la izquierda" + +#: ../../mod/photos.php:1327 +msgid "New album name" +msgstr "Nuevo nombre del álbum" + +#: ../../mod/photos.php:1330 +msgid "Caption" +msgstr "Título" + +#: ../../mod/photos.php:1332 +msgid "Add a Tag" +msgstr "Añadir una etiqueta" + +#: ../../mod/photos.php:1336 +msgid "" +"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" +msgstr "Ejemplo: @juan, @Barbara_Ruiz, @julia@example.com, #California, #camping" + +#: ../../mod/photos.php:1356 ../../mod/content.php:667 +#: ../../include/conversation.php:581 ../../object/Item.php:195 +msgid "I like this (toggle)" +msgstr "Me gusta esto (cambiar)" + +#: ../../mod/photos.php:1357 ../../mod/content.php:668 +#: ../../include/conversation.php:582 ../../object/Item.php:196 +msgid "I don't like this (toggle)" +msgstr "No me gusta esto (cambiar)" + +#: ../../mod/photos.php:1358 ../../include/conversation.php:1268 +msgid "Share" +msgstr "Compartir" + +#: ../../mod/photos.php:1359 ../../mod/editpost.php:112 +#: ../../mod/content.php:482 ../../mod/content.php:845 +#: ../../mod/wallmessage.php:152 ../../mod/message.php:293 +#: ../../mod/message.php:481 ../../include/conversation.php:686 +#: ../../include/conversation.php:944 ../../include/conversation.php:1287 +#: ../../object/Item.php:257 +msgid "Please wait" +msgstr "Por favor, espera" + +#: ../../mod/photos.php:1375 ../../mod/photos.php:1416 +#: ../../mod/photos.php:1448 ../../mod/content.php:690 +#: ../../include/conversation.php:604 ../../object/Item.php:556 +msgid "This is you" +msgstr "Este eres tú" + +#: ../../mod/photos.php:1377 ../../mod/photos.php:1418 +#: ../../mod/photos.php:1450 ../../mod/content.php:692 +#: ../../include/conversation.php:606 ../../boot.php:574 +#: ../../object/Item.php:558 +msgid "Comment" +msgstr "Comentar" + +#: ../../mod/photos.php:1379 ../../mod/editpost.php:133 +#: ../../mod/content.php:702 ../../include/conversation.php:616 +#: ../../include/conversation.php:1305 ../../object/Item.php:568 +msgid "Preview" +msgstr "Vista previa" + +#: ../../mod/photos.php:1479 ../../mod/content.php:439 +#: ../../mod/content.php:723 ../../mod/settings.php:606 +#: ../../mod/settings.php:695 ../../mod/group.php:168 ../../mod/admin.php:696 +#: ../../include/conversation.php:448 ../../include/conversation.php:889 +#: ../../object/Item.php:116 +msgid "Delete" +msgstr "Eliminar" + +#: ../../mod/photos.php:1569 msgid "View Album" -msgstr "Ver álbum" +msgstr "Ver Álbum" -#: ../../mod/newmember.php:6 -msgid "Welcome to Friendika" -msgstr "Bienvenido a Friendika" +#: ../../mod/photos.php:1578 +msgid "Recent Photos" +msgstr "Fotos recientes" -#: ../../mod/newmember.php:8 -msgid "New Member Checklist" -msgstr "Listado de nuevos miembros" +#: ../../mod/community.php:23 +msgid "Not available." +msgstr "No disponible" -#: ../../mod/newmember.php:12 +#: ../../mod/community.php:32 ../../view/theme/diabook/theme.php:133 +#: ../../include/nav.php:101 +msgid "Community" +msgstr "Comunidad" + +#: ../../mod/community.php:63 ../../mod/community.php:88 +#: ../../mod/search.php:148 ../../mod/search.php:174 +msgid "No results." +msgstr "Sin resultados." + +#: ../../mod/friendica.php:55 +msgid "This is Friendica, version" +msgstr "Esto es Friendica, versión" + +#: ../../mod/friendica.php:56 +msgid "running at web location" +msgstr "ejecutándose en la dirección web" + +#: ../../mod/friendica.php:58 msgid "" -"We would like to offer some tips and links to help make your experience " -"enjoyable. Click any item to visit the relevant page." -msgstr "" -"Nos gustaría ofrecerte algunos trucos y consejos para ayudar a que tu " -"experiencia sea placentera. Pulsa en cualquier elemento para visitar la " -"página adecuada." +"Please visit Friendica.com to learn " +"more about the Friendica project." +msgstr "Por favor, visita Friendica.com para saber más sobre el proyecto Friendica." -#: ../../mod/newmember.php:16 -msgid "" -"On your Settings page - change your initial password. Also make a " -"note of your Identity Address. This will be useful in making friends." -msgstr "" -"En la página de Configuración - cambia la contraseña inicial. Toma " -"nota de tu dirección personal. Te será útil para hacer amigos." +#: ../../mod/friendica.php:60 +msgid "Bug reports and issues: please visit" +msgstr "Reporte de fallos y problemas: por favor visita" -#: ../../mod/newmember.php:18 +#: ../../mod/friendica.php:61 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 "" -"Revisa las demás configuraciones, especialmente la configuración de " -"privacidad. Un listado de directorio no publicado es como tener un número de" -" teléfono sin publicar. Normalmente querrás publicar tu listado, a menos que" -" tus amigos y amigos potenciales sepan con ponerse en contacto contigo." +"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - " +"dot com" +msgstr "Sugerencias, elogios, donaciones, etc. por favor manda un correo a Info arroba Friendica punto com" -#: ../../mod/newmember.php:20 -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 "" -"Sube una foto para tu perfil si no lo has hecho aún. Los estudios han " -"demostrado que la gente que usa fotos suyas reales tienen diez veces más " -"éxito a la hora de entablar amistad que las que no." +#: ../../mod/friendica.php:75 +msgid "Installed plugins/addons/apps:" +msgstr "Módulos/extensiones/aplicaciones instalados:" -#: ../../mod/newmember.php:23 -msgid "" -"Authorise the Facebook Connector if you currently have a Facebook account " -"and we will (optionally) import all your Facebook friends and conversations." -msgstr "" -"Autoriza la conexión con Facebook si ya tienes una cuenta en Facebook y " -"nosotros (opcionalmente) importaremos tus amistades y conversaciones desde " -"Facebook." +#: ../../mod/friendica.php:88 +msgid "No installed plugins/addons/apps" +msgstr "Módulos/extensiones/aplicaciones no instalados" -#: ../../mod/newmember.php:28 -msgid "" -"Enter your email access information on your Settings page if you wish to " -"import and interact with friends or mailing lists from your email INBOX" -msgstr "" -"Introduce los datos sobre tu dirección de correo en la página de " -"configuración si quieres importar y mantener un contacto con tus amistades o" -" listas de correos desde tu buzón" +#: ../../mod/editpost.php:17 ../../mod/editpost.php:27 +msgid "Item not found" +msgstr "Elemento no encontrado" -#: ../../mod/newmember.php:30 -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 "" -"Edita tu perfil predeterminado como quieras. Revisa la " -"configuración para ocultar tu lista de amigos o tu perfil a los visitantes " -"desconocidos." +#: ../../mod/editpost.php:36 +msgid "Edit post" +msgstr "Editar publicación" -#: ../../mod/newmember.php:32 -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 "" -"Define en tu perfil público algunas palabras que describan tus intereses. " -"Así podremos buscar otras personas con los mismos gustos y sugerirte " -"posibles amigos." +#: ../../mod/editpost.php:88 ../../include/conversation.php:1254 +msgid "Post to Email" +msgstr "Publicar mediante correo electrónico" -#: ../../mod/newmember.php:34 -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 Connect dialog." -msgstr "" -"La página de tus Contactos es tu puerta de entrada para manejar tus " -"relaciones de amistad y conectarte con amigos de otras redes sociales. " -"Introduce la dirección de su perfil o dirección web en el campo " -"Conectar." +#: ../../mod/editpost.php:103 ../../mod/content.php:710 +#: ../../mod/settings.php:605 ../../include/conversation.php:441 +#: ../../object/Item.php:107 +msgid "Edit" +msgstr "Editar" -#: ../../mod/newmember.php:36 -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 "" -"El Directorio te permite encontrar otras personas en esta red o en cualquier" -" otro sitio federado. Busca algún enlace de Conectar o " -"Seguir en su perfil. Proporciona tu direción personal si es " -"necesario." +#: ../../mod/editpost.php:104 ../../mod/wallmessage.php:150 +#: ../../mod/message.php:291 ../../mod/message.php:478 +#: ../../include/conversation.php:1269 +msgid "Upload photo" +msgstr "Subir foto" -#: ../../mod/newmember.php:38 -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 "" -"Una vez que tengas algunos amigos, puedes organizarlos en grupos de " -"conversación privados mediante la barra en tu página de Contactos y luego " -"puedes interactuar con cada grupo por privado desde tu página de Red." +#: ../../mod/editpost.php:105 ../../include/conversation.php:1271 +msgid "Attach file" +msgstr "Adjuntar archivo" -#: ../../mod/newmember.php:40 +#: ../../mod/editpost.php:106 ../../mod/wallmessage.php:151 +#: ../../mod/message.php:292 ../../mod/message.php:479 +#: ../../include/conversation.php:1273 +msgid "Insert web link" +msgstr "Insertar enlace" + +#: ../../mod/editpost.php:107 +msgid "Insert YouTube video" +msgstr "Insertar vídeo de YouTube" + +#: ../../mod/editpost.php:108 +msgid "Insert Vorbis [.ogg] video" +msgstr "Insertar vídeo Vorbis [.ogg]" + +#: ../../mod/editpost.php:109 +msgid "Insert Vorbis [.ogg] audio" +msgstr "Insertar audio Vorbis [.ogg]" + +#: ../../mod/editpost.php:110 ../../include/conversation.php:1279 +msgid "Set your location" +msgstr "Configurar tu localización" + +#: ../../mod/editpost.php:111 ../../include/conversation.php:1281 +msgid "Clear browser location" +msgstr "Borrar la localización del navegador" + +#: ../../mod/editpost.php:113 ../../include/conversation.php:1288 +msgid "Permission settings" +msgstr "Configuración de permisos" + +#: ../../mod/editpost.php:121 ../../include/conversation.php:1297 +msgid "CC: email addresses" +msgstr "CC: dirección de correo electrónico" + +#: ../../mod/editpost.php:122 ../../include/conversation.php:1298 +msgid "Public post" +msgstr "Publicación pública" + +#: ../../mod/editpost.php:125 ../../include/conversation.php:1284 +msgid "Set title" +msgstr "Establecer el título" + +#: ../../mod/editpost.php:127 ../../include/conversation.php:1286 +msgid "Categories (comma-separated list)" +msgstr "Categorías (lista separada por comas)" + +#: ../../mod/editpost.php:128 ../../include/conversation.php:1300 +msgid "Example: bob@example.com, mary@example.com" +msgstr "Ejemplo: juan@ejemplo.com, sofia@ejemplo.com" + +#: ../../mod/dfrn_request.php:93 +msgid "This introduction has already been accepted." +msgstr "Esta presentación ya ha sido aceptada." + +#: ../../mod/dfrn_request.php:118 ../../mod/dfrn_request.php:512 +msgid "Profile location is not valid or does not contain profile information." +msgstr "La dirección del perfil no es válida o no contiene información del perfil." + +#: ../../mod/dfrn_request.php:123 ../../mod/dfrn_request.php:517 +msgid "Warning: profile location has no identifiable owner name." +msgstr "Aviso: La dirección del perfil no tiene un nombre de propietario identificable." + +#: ../../mod/dfrn_request.php:125 ../../mod/dfrn_request.php:519 +msgid "Warning: profile location has no profile photo." +msgstr "Aviso: la dirección del perfil no tiene foto de perfil." + +#: ../../mod/dfrn_request.php:128 ../../mod/dfrn_request.php:522 +#, php-format +msgid "%d required parameter was not found at the given location" +msgid_plural "%d required parameters were not found at the given location" +msgstr[0] "no se encontró %d parámetro requerido en el lugar determinado" +msgstr[1] "no se encontraron %d parámetros requeridos en el lugar determinado" + +#: ../../mod/dfrn_request.php:170 +msgid "Introduction complete." +msgstr "Presentación completa." + +#: ../../mod/dfrn_request.php:209 +msgid "Unrecoverable protocol error." +msgstr "Error de protocolo irrecuperable." + +#: ../../mod/dfrn_request.php:237 +msgid "Profile unavailable." +msgstr "Perfil no disponible." + +#: ../../mod/dfrn_request.php:262 +#, php-format +msgid "%s has received too many connection requests today." +msgstr "%s ha recibido demasiadas solicitudes de conexión hoy." + +#: ../../mod/dfrn_request.php:263 +msgid "Spam protection measures have been invoked." +msgstr "Han sido activadas las medidas de protección contra spam." + +#: ../../mod/dfrn_request.php:264 +msgid "Friends are advised to please try again in 24 hours." +msgstr "Tus amigos serán avisados para que lo intenten de nuevo pasadas 24 horas." + +#: ../../mod/dfrn_request.php:326 +msgid "Invalid locator" +msgstr "Localizador no válido" + +#: ../../mod/dfrn_request.php:335 +msgid "Invalid email address." +msgstr "Dirección de correo incorrecta" + +#: ../../mod/dfrn_request.php:361 +msgid "This account has not been configured for email. Request failed." +msgstr "Esta cuenta no ha sido configurada para el correo. Fallo de solicitud." + +#: ../../mod/dfrn_request.php:457 +msgid "Unable to resolve your name at the provided location." +msgstr "No se ha podido resolver tu nombre en la dirección indicada." + +#: ../../mod/dfrn_request.php:470 +msgid "You have already introduced yourself here." +msgstr "Ya te has presentado aquí." + +#: ../../mod/dfrn_request.php:474 +#, php-format +msgid "Apparently you are already friends with %s." +msgstr "Al parecer, ya eres amigo de %s." + +#: ../../mod/dfrn_request.php:495 +msgid "Invalid profile URL." +msgstr "Dirección de perfil no válida." + +#: ../../mod/dfrn_request.php:501 ../../include/follow.php:27 +msgid "Disallowed profile URL." +msgstr "Dirección de perfil no permitida." + +#: ../../mod/dfrn_request.php:570 ../../mod/contacts.php:123 +msgid "Failed to update contact record." +msgstr "Error al actualizar el contacto." + +#: ../../mod/dfrn_request.php:591 +msgid "Your introduction has been sent." +msgstr "Tu presentación ha sido enviada." + +#: ../../mod/dfrn_request.php:644 +msgid "Please login to confirm introduction." +msgstr "Inicia sesión para confirmar la presentación." + +#: ../../mod/dfrn_request.php:658 msgid "" -"Our help pages may be consulted for detail on other program" -" features and resources." -msgstr "" -"Puedes consultar nuestra página de Ayuda para más ayuda, " -"información y recursos." +"Incorrect identity currently logged in. Please login to " +"this profile." +msgstr "Sesión iniciada con la identificación incorrecta. Entra en este perfil." + +#: ../../mod/dfrn_request.php:669 +msgid "Hide this contact" +msgstr "Ocultar este contacto" + +#: ../../mod/dfrn_request.php:672 +#, php-format +msgid "Welcome home %s." +msgstr "Bienvenido a casa %s" + +#: ../../mod/dfrn_request.php:673 +#, php-format +msgid "Please confirm your introduction/connection request to %s." +msgstr "Por favor, confirma tu solicitud de presentación/conexión con %s." + +#: ../../mod/dfrn_request.php:674 +msgid "Confirm" +msgstr "Confirmar" + +#: ../../mod/dfrn_request.php:715 ../../include/items.php:3287 +msgid "[Name Withheld]" +msgstr "[Nombre oculto]" + +#: ../../mod/dfrn_request.php:810 +msgid "" +"Please enter your 'Identity Address' from one of the following supported " +"communications networks:" +msgstr "Por favor introduce tu dirección ID de una de las siguientes redes sociales soportadas:" + +#: ../../mod/dfrn_request.php:826 +msgid "Connect as an email follower (Coming soon)" +msgstr "Conecta como lector de correo (Disponible en breve)" + +#: ../../mod/dfrn_request.php:828 +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 "Si aún no eres miembro de la red social libre sigue este enlace para encontrar un servidor público de Friendica y unirte a nosotros." + +#: ../../mod/dfrn_request.php:831 +msgid "Friend/Connection Request" +msgstr "Solicitud de Amistad/Conexión" + +#: ../../mod/dfrn_request.php:832 +msgid "" +"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, " +"testuser@identi.ca" +msgstr "Ejemplos: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca" + +#: ../../mod/dfrn_request.php:833 +msgid "Please answer the following:" +msgstr "Por favor responde lo siguiente:" + +#: ../../mod/dfrn_request.php:834 +#, php-format +msgid "Does %s know you?" +msgstr "¿%s te conoce?" + +#: ../../mod/dfrn_request.php:837 +msgid "Add a personal note:" +msgstr "Añade una nota personal:" + +#: ../../mod/dfrn_request.php:839 ../../include/contact_selectors.php:76 +msgid "Friendica" +msgstr "Friendica" + +#: ../../mod/dfrn_request.php:840 +msgid "StatusNet/Federated Social Web" +msgstr "StatusNet/Web Social Federada" + +#: ../../mod/dfrn_request.php:841 ../../mod/settings.php:640 +#: ../../include/contact_selectors.php:80 +msgid "Diaspora" +msgstr "Diaspora*" + +#: ../../mod/dfrn_request.php:842 +#, php-format +msgid "" +" - please do not use this form. Instead, enter %s into your Diaspora search" +" bar." +msgstr "(En vez de usar este formulario, introduce %s en la barra de búsqueda de Diaspora." + +#: ../../mod/dfrn_request.php:843 +msgid "Your Identity Address:" +msgstr "Dirección de tu perfil:" + +#: ../../mod/dfrn_request.php:846 +msgid "Submit Request" +msgstr "Enviar solicitud" + +#: ../../mod/install.php:117 +msgid "Friendica Social Communications Server - Setup" +msgstr "Servidor de Comunicaciones Sociales Friendica - Configuración" + +#: ../../mod/install.php:123 +msgid "Could not connect to database." +msgstr "No es posible la conexión con la base de datos." + +#: ../../mod/install.php:127 +msgid "Could not create table." +msgstr "No se puede crear la tabla." + +#: ../../mod/install.php:133 +msgid "Your Friendica site database has been installed." +msgstr "La base de datos de su sitio web de Friendica ha sido instalada." + +#: ../../mod/install.php:138 +msgid "" +"You may need to import the file \"database.sql\" manually using phpmyadmin " +"or mysql." +msgstr "Puede que tengas que importar el archivo \"Database.sql\" manualmente usando phpmyadmin o mysql." + +#: ../../mod/install.php:139 ../../mod/install.php:204 +#: ../../mod/install.php:488 +msgid "Please see the file \"INSTALL.txt\"." +msgstr "Por favor, consulta el archivo \"INSTALL.txt\"." + +#: ../../mod/install.php:201 +msgid "System check" +msgstr "Verificación del sistema" + +#: ../../mod/install.php:206 +msgid "Check again" +msgstr "Compruebalo de nuevo" + +#: ../../mod/install.php:225 +msgid "Database connection" +msgstr "Conexión con la base de datos" + +#: ../../mod/install.php:226 +msgid "" +"In order to install Friendica we need to know how to connect to your " +"database." +msgstr "Con el fin de poder instalar Friendica, necesitamos saber cómo conectar con tu base de datos." + +#: ../../mod/install.php:227 +msgid "" +"Please contact your hosting provider or site administrator if you have " +"questions about these settings." +msgstr "Por favor, contacta con tu proveedor de servicios o con el administrador de la página si tienes alguna pregunta sobre estas configuraciones." + +#: ../../mod/install.php:228 +msgid "" +"The database you specify below should already exist. If it does not, please " +"create it before continuing." +msgstr "La base de datos que especifiques a continuación debería existir ya. Si no es el caso, debes crearla antes de continuar." + +#: ../../mod/install.php:232 +msgid "Database Server Name" +msgstr "Nombre del servidor de la base de datos" + +#: ../../mod/install.php:233 +msgid "Database Login Name" +msgstr "Usuario de la base de datos" + +#: ../../mod/install.php:234 +msgid "Database Login Password" +msgstr "Contraseña de la base de datos" + +#: ../../mod/install.php:235 +msgid "Database Name" +msgstr "Nombre de la base de datos" + +#: ../../mod/install.php:236 ../../mod/install.php:275 +msgid "Site administrator email address" +msgstr "Dirección de correo del administrador de la web" + +#: ../../mod/install.php:236 ../../mod/install.php:275 +msgid "" +"Your account email address must match this in order to use the web admin " +"panel." +msgstr "La dirección de correo de tu cuenta debe coincidir con esta para poder usar el panel de administración de la web." + +#: ../../mod/install.php:240 ../../mod/install.php:278 +msgid "Please select a default timezone for your website" +msgstr "Por favor, selecciona la zona horaria predeterminada para tu web" + +#: ../../mod/install.php:265 +msgid "Site settings" +msgstr "Configuración de la página web" + +#: ../../mod/install.php:318 +msgid "Could not find a command line version of PHP in the web server PATH." +msgstr "No se pudo encontrar una versión de la línea de comandos de PHP en la ruta del servidor web." + +#: ../../mod/install.php:319 +msgid "" +"If you don't have a command line version of PHP installed on server, you " +"will not be able to run background polling via cron. See 'Activating scheduled tasks'" +msgstr "Si no tienes una versión en línea de comandos de PHP instalada en el servidor no podrás ejecutar actualizaciones en segundo plano a través de cron. Ver 'Activating scheduled tasks'" + +#: ../../mod/install.php:323 +msgid "PHP executable path" +msgstr "Dirección al ejecutable PHP" + +#: ../../mod/install.php:323 +msgid "" +"Enter full path to php executable. You can leave this blank to continue the " +"installation." +msgstr "Introduce la ruta completa al ejecutable php. Puedes dejarlo en blanco y seguir con la instalación." + +#: ../../mod/install.php:328 +msgid "Command line PHP" +msgstr "Línea de comandos PHP" + +#: ../../mod/install.php:337 +msgid "" +"The command line version of PHP on your system does not have " +"\"register_argc_argv\" enabled." +msgstr "La versión en línea de comandos de PHP en tu sistema no tiene \"register_argc_argv\" habilitado." + +#: ../../mod/install.php:338 +msgid "This is required for message delivery to work." +msgstr "Esto es necesario para que funcione la entrega de mensajes." + +#: ../../mod/install.php:340 +msgid "PHP register_argc_argv" +msgstr "PHP register_argc_argv" + +#: ../../mod/install.php:361 +msgid "" +"Error: the \"openssl_pkey_new\" function on this system is not able to " +"generate encryption keys" +msgstr "Error: La función \"openssl_pkey_new\" en este sistema no es capaz de generar claves de cifrado" + +#: ../../mod/install.php:362 +msgid "" +"If running under Windows, please see " +"\"http://www.php.net/manual/en/openssl.installation.php\"." +msgstr "Si se ejecuta en Windows, por favor consulta la sección \"http://www.php.net/manual/en/openssl.installation.php\"." + +#: ../../mod/install.php:364 +msgid "Generate encryption keys" +msgstr "Generar claves de encriptación" + +#: ../../mod/install.php:371 +msgid "libCurl PHP module" +msgstr "Módulo PHP libCurl" + +#: ../../mod/install.php:372 +msgid "GD graphics PHP module" +msgstr "Módulo PHP gráficos GD" + +#: ../../mod/install.php:373 +msgid "OpenSSL PHP module" +msgstr "Módulo PHP OpenSSL" + +#: ../../mod/install.php:374 +msgid "mysqli PHP module" +msgstr "Módulo PHP mysqli" + +#: ../../mod/install.php:375 +msgid "mb_string PHP module" +msgstr "Módulo PHP mb_string" + +#: ../../mod/install.php:380 ../../mod/install.php:382 +msgid "Apache mod_rewrite module" +msgstr "Módulo mod_rewrite de Apache" + +#: ../../mod/install.php:380 +msgid "" +"Error: Apache webserver mod-rewrite module is required but not installed." +msgstr "Error: El módulo de Apache mod-rewrite es necesario pero no está instalado." + +#: ../../mod/install.php:388 +msgid "Error: libCURL PHP module required but not installed." +msgstr "Error: El módulo de PHP libcurl es necesario, pero no está instalado." + +#: ../../mod/install.php:392 +msgid "" +"Error: GD graphics PHP module with JPEG support required but not installed." +msgstr "Error: El módulo de de PHP gráficos GD con soporte JPEG es necesario, pero no está instalado." + +#: ../../mod/install.php:396 +msgid "Error: openssl PHP module required but not installed." +msgstr "Error: El módulo de PHP openssl es necesario, pero no está instalado." + +#: ../../mod/install.php:400 +msgid "Error: mysqli PHP module required but not installed." +msgstr "Error: El módulo de PHP mysqli es necesario, pero no está instalado." + +#: ../../mod/install.php:404 +msgid "Error: mb_string PHP module required but not installed." +msgstr "Error: El módulo de PHP mb_string es necesario, pero no está instalado." + +#: ../../mod/install.php:421 +msgid "" +"The web installer needs to be able to create a file called \".htconfig.php\"" +" in the top folder of your web server and it is unable to do so." +msgstr "El programa de instalación web necesita ser capaz de crear un archivo llamado \".htconfig.php\" en la carpeta principal de tu servidor web y es incapaz de hacerlo." + +#: ../../mod/install.php:422 +msgid "" +"This is most often a permission setting, as the web server may not be able " +"to write files in your folder - even if you can." +msgstr "Se trata a menudo de una configuración de permisos, pues el servidor web puede que no sea capaz de escribir archivos en la carpeta, aunque tú sí puedas." + +#: ../../mod/install.php:423 +msgid "" +"At the end of this procedure, we will give you a text to save in a file " +"named .htconfig.php in your Friendica top folder." +msgstr "Al final obtendremos un texto que debes guardar en un archivo llamado .htconfig.php en la carpeta de Friendica." + +#: ../../mod/install.php:424 +msgid "" +"You can alternatively skip this procedure and perform a manual installation." +" Please see the file \"INSTALL.txt\" for instructions." +msgstr "Como alternativa, puedes saltarte estos pasos y realizar una instalación manual. Por favor, consulta el archivo \"INSTALL.txt\" para las instrucciones." + +#: ../../mod/install.php:427 +msgid ".htconfig.php is writable" +msgstr ".htconfig.php tiene permiso de escritura" + +#: ../../mod/install.php:439 +msgid "" +"Url rewrite in .htaccess is not working. Check your server configuration." +msgstr "La reescritura de la dirección en .htaccess no funcionó. Revisa la configuración." + +#: ../../mod/install.php:441 +msgid "Url rewrite is working" +msgstr "Reescribiendo la dirección..." + +#: ../../mod/install.php:451 +msgid "" +"The database configuration file \".htconfig.php\" could not be written. " +"Please use the enclosed text to create a configuration file in your web " +"server root." +msgstr "El archivo de configuración de base de datos \".htconfig.php\" no se pudo escribir. Por favor, utiliza el texto adjunto para crear un archivo de configuración en la raíz de tu servidor web." + +#: ../../mod/install.php:475 +msgid "Errors encountered creating database tables." +msgstr "Se han encontrados errores creando las tablas de la base de datos." + +#: ../../mod/install.php:486 +msgid "

    What next

    " +msgstr "

    ¿Ahora qué?

    " + +#: ../../mod/install.php:487 +msgid "" +"IMPORTANT: You will need to [manually] setup a scheduled task for the " +"poller." +msgstr "IMPORTANTE: Tendrás que configurar [manualmente] una tarea programada para el sondeo" #: ../../mod/localtime.php:12 ../../include/event.php:11 -#: ../../include/bb2diaspora.php:227 +#: ../../include/bb2diaspora.php:390 msgid "l F d, Y \\@ g:i A" msgstr "l F d, Y \\@ g:i A" @@ -1465,9 +1223,7 @@ msgstr "Conversión horária" msgid "" "Friendika provides this service for sharing events with other networks and " "friends in unknown timezones." -msgstr "" -"Friendica ofrece este servicio para compartir eventos con otras redes y " -"amigos en zonas horarias desconocidas." +msgstr "Friendica ofrece este servicio para compartir eventos con otras redes y amigos en zonas horarias desconocidas." #: ../../mod/localtime.php:30 #, php-format @@ -1486,83 +1242,3350 @@ msgstr "Zona horaria local convertida: %s" #: ../../mod/localtime.php:41 msgid "Please select your timezone:" -msgstr "Por favor, seleccione su zona horaria:" +msgstr "Por favor, selecciona tu zona horaria:" -#: ../../mod/display.php:108 +#: ../../mod/poke.php:192 +msgid "Poke/Prod" +msgstr "Toque/Empujón" + +#: ../../mod/poke.php:193 +msgid "poke, prod or do other things to somebody" +msgstr "da un toque, empujón o similar a alguien" + +#: ../../mod/poke.php:194 +msgid "Recipient" +msgstr "Receptor" + +#: ../../mod/poke.php:195 +msgid "Choose what you wish to do to recipient" +msgstr "Elige qué desea hacer con el receptor" + +#: ../../mod/poke.php:198 +msgid "Make this post private" +msgstr "Hacer esta publicación privada" + +#: ../../mod/match.php:12 +msgid "Profile Match" +msgstr "Coincidencias de Perfil" + +#: ../../mod/match.php:20 +msgid "No keywords to match. Please add keywords to your default profile." +msgstr "No hay palabras clave que coincidan. Por favor, agrega algunas palabras claves en tu perfil predeterminado." + +#: ../../mod/match.php:57 +msgid "is interested in:" +msgstr "estás interesado en:" + +#: ../../mod/match.php:58 ../../mod/suggest.php:59 +#: ../../include/contact_widgets.php:9 ../../boot.php:1164 +msgid "Connect" +msgstr "Conectar" + +#: ../../mod/match.php:65 ../../mod/dirfind.php:60 +msgid "No matches" +msgstr "Sin conincidencias" + +#: ../../mod/lockview.php:39 +msgid "Remote privacy information not available." +msgstr "Privacidad de la información remota no disponible." + +#: ../../mod/lockview.php:43 +msgid "Visible to:" +msgstr "Visible para:" + +#: ../../mod/content.php:119 ../../mod/network.php:436 +msgid "No such group" +msgstr "Ningún grupo" + +#: ../../mod/content.php:130 ../../mod/network.php:447 +msgid "Group is empty" +msgstr "El grupo está vacío" + +#: ../../mod/content.php:134 ../../mod/network.php:451 +msgid "Group: " +msgstr "Grupo: " + +#: ../../mod/content.php:438 ../../mod/content.php:722 +#: ../../include/conversation.php:447 ../../include/conversation.php:888 +#: ../../object/Item.php:115 +msgid "Select" +msgstr "Seleccionar" + +#: ../../mod/content.php:455 ../../mod/content.php:815 +#: ../../mod/content.php:816 ../../include/conversation.php:654 +#: ../../include/conversation.php:655 ../../include/conversation.php:907 +#: ../../object/Item.php:226 ../../object/Item.php:227 +#, php-format +msgid "View %s's profile @ %s" +msgstr "Ver perfil de %s @ %s" + +#: ../../mod/content.php:465 ../../mod/content.php:827 +#: ../../include/conversation.php:668 ../../include/conversation.php:927 +#: ../../object/Item.php:239 +#, php-format +msgid "%s from %s" +msgstr "%s de %s" + +#: ../../mod/content.php:480 ../../include/conversation.php:942 +msgid "View in context" +msgstr "Verlo en contexto" + +#: ../../mod/content.php:586 ../../include/conversation.php:695 +#: ../../object/Item.php:276 +#, php-format +msgid "%d comment" +msgid_plural "%d comments" +msgstr[0] "%d comentario" +msgstr[1] "%d comentarios" + +#: ../../mod/content.php:588 ../../include/text.php:1443 +#: ../../include/conversation.php:697 ../../object/Item.php:278 +#: ../../object/Item.php:291 +msgid "comment" +msgid_plural "comments" +msgstr[0] "" +msgstr[1] "Comentario" + +#: ../../mod/content.php:589 ../../addon/page/page.php:76 +#: ../../addon/page/page.php:110 ../../addon/showmore/showmore.php:119 +#: ../../include/contact_widgets.php:195 ../../include/conversation.php:698 +#: ../../boot.php:575 ../../object/Item.php:279 +msgid "show more" +msgstr "ver más" + +#: ../../mod/content.php:667 ../../include/conversation.php:581 +#: ../../object/Item.php:195 +msgid "like" +msgstr "me gusta" + +#: ../../mod/content.php:668 ../../include/conversation.php:582 +#: ../../object/Item.php:196 +msgid "dislike" +msgstr "no me gusta" + +#: ../../mod/content.php:670 ../../include/conversation.php:584 +#: ../../object/Item.php:198 +msgid "Share this" +msgstr "Compartir esto" + +#: ../../mod/content.php:670 ../../include/conversation.php:584 +#: ../../object/Item.php:198 +msgid "share" +msgstr "compartir" + +#: ../../mod/content.php:694 ../../include/conversation.php:608 +#: ../../object/Item.php:560 +msgid "Bold" +msgstr "Negrita" + +#: ../../mod/content.php:695 ../../include/conversation.php:609 +#: ../../object/Item.php:561 +msgid "Italic" +msgstr "Cursiva" + +#: ../../mod/content.php:696 ../../include/conversation.php:610 +#: ../../object/Item.php:562 +msgid "Underline" +msgstr "Subrayado" + +#: ../../mod/content.php:697 ../../include/conversation.php:611 +#: ../../object/Item.php:563 +msgid "Quote" +msgstr "Cita" + +#: ../../mod/content.php:698 ../../include/conversation.php:612 +#: ../../object/Item.php:564 +msgid "Code" +msgstr "Código" + +#: ../../mod/content.php:699 ../../include/conversation.php:613 +#: ../../object/Item.php:565 +msgid "Image" +msgstr "Imagen" + +#: ../../mod/content.php:700 ../../include/conversation.php:614 +#: ../../object/Item.php:566 +msgid "Link" +msgstr "Enlace" + +#: ../../mod/content.php:701 ../../include/conversation.php:615 +#: ../../object/Item.php:567 +msgid "Video" +msgstr "Vídeo" + +#: ../../mod/content.php:735 ../../include/conversation.php:545 +#: ../../object/Item.php:179 +msgid "add star" +msgstr "Añadir estrella" + +#: ../../mod/content.php:736 ../../include/conversation.php:546 +#: ../../object/Item.php:180 +msgid "remove star" +msgstr "Quitar estrella" + +#: ../../mod/content.php:737 ../../include/conversation.php:547 +#: ../../object/Item.php:181 +msgid "toggle star status" +msgstr "Añadir a destacados" + +#: ../../mod/content.php:740 ../../include/conversation.php:550 +#: ../../object/Item.php:184 +msgid "starred" +msgstr "marcados con estrellas" + +#: ../../mod/content.php:741 ../../include/conversation.php:551 +#: ../../object/Item.php:185 +msgid "add tag" +msgstr "añadir etiqueta" + +#: ../../mod/content.php:745 ../../include/conversation.php:451 +#: ../../object/Item.php:119 +msgid "save to folder" +msgstr "grabado en directorio" + +#: ../../mod/content.php:817 ../../include/conversation.php:656 +#: ../../object/Item.php:228 +msgid "to" +msgstr "a" + +#: ../../mod/content.php:818 ../../include/conversation.php:657 +#: ../../object/Item.php:229 +msgid "Wall-to-Wall" +msgstr "Muro-A-Muro" + +#: ../../mod/content.php:819 ../../include/conversation.php:658 +#: ../../object/Item.php:230 +msgid "via Wall-To-Wall:" +msgstr "via Muro-A-Muro:" + +#: ../../mod/home.php:28 ../../addon/communityhome/communityhome.php:179 +#, php-format +msgid "Welcome to %s" +msgstr "Bienvenido a %s" + +#: ../../mod/notifications.php:26 +msgid "Invalid request identifier." +msgstr "Solicitud de identificación no válida." + +#: ../../mod/notifications.php:35 ../../mod/notifications.php:161 +#: ../../mod/notifications.php:207 +msgid "Discard" +msgstr "Descartar" + +#: ../../mod/notifications.php:51 ../../mod/notifications.php:160 +#: ../../mod/notifications.php:206 ../../mod/contacts.php:321 +#: ../../mod/contacts.php:375 +msgid "Ignore" +msgstr "Ignorar" + +#: ../../mod/notifications.php:75 +msgid "System" +msgstr "Sistema" + +#: ../../mod/notifications.php:80 ../../include/nav.php:113 +msgid "Network" +msgstr "Red" + +#: ../../mod/notifications.php:85 ../../mod/network.php:300 +msgid "Personal" +msgstr "Personal" + +#: ../../mod/notifications.php:90 ../../view/theme/diabook/theme.php:127 +#: ../../include/nav.php:77 ../../include/nav.php:115 +msgid "Home" +msgstr "Inicio" + +#: ../../mod/notifications.php:95 ../../include/nav.php:121 +msgid "Introductions" +msgstr "Presentaciones" + +#: ../../mod/notifications.php:100 ../../mod/message.php:176 +#: ../../include/nav.php:128 +msgid "Messages" +msgstr "Mensajes" + +#: ../../mod/notifications.php:119 +msgid "Show Ignored Requests" +msgstr "Mostrar peticiones ignoradas" + +#: ../../mod/notifications.php:119 +msgid "Hide Ignored Requests" +msgstr "Ocultar peticiones ignoradas" + +#: ../../mod/notifications.php:145 ../../mod/notifications.php:191 +msgid "Notification type: " +msgstr "Tipo de notificación: " + +#: ../../mod/notifications.php:146 +msgid "Friend Suggestion" +msgstr "Propuestas de amistad" + +#: ../../mod/notifications.php:148 +#, php-format +msgid "suggested by %s" +msgstr "sugerido por %s" + +#: ../../mod/notifications.php:153 ../../mod/notifications.php:200 +#: ../../mod/contacts.php:381 +msgid "Hide this contact from others" +msgstr "Ocultar este contacto a los demás." + +#: ../../mod/notifications.php:154 ../../mod/notifications.php:201 +msgid "Post a new friend activity" +msgstr "Publica tu nueva amistad" + +#: ../../mod/notifications.php:154 ../../mod/notifications.php:201 +msgid "if applicable" +msgstr "Si corresponde" + +#: ../../mod/notifications.php:157 ../../mod/notifications.php:204 +#: ../../mod/admin.php:694 +msgid "Approve" +msgstr "Aprobar" + +#: ../../mod/notifications.php:177 +msgid "Claims to be known to you: " +msgstr "Dice conocerte: " + +#: ../../mod/notifications.php:177 +msgid "yes" +msgstr "sí" + +#: ../../mod/notifications.php:177 +msgid "no" +msgstr "no" + +#: ../../mod/notifications.php:184 +msgid "Approve as: " +msgstr "Aprobar como: " + +#: ../../mod/notifications.php:185 +msgid "Friend" +msgstr "Amigo" + +#: ../../mod/notifications.php:186 +msgid "Sharer" +msgstr "Lector" + +#: ../../mod/notifications.php:186 +msgid "Fan/Admirer" +msgstr "Fan/Admirador" + +#: ../../mod/notifications.php:192 +msgid "Friend/Connect Request" +msgstr "Solicitud de Amistad/Conexión" + +#: ../../mod/notifications.php:192 +msgid "New Follower" +msgstr "Nuevo seguidor" + +#: ../../mod/notifications.php:213 +msgid "No introductions." +msgstr "Sin presentaciones." + +#: ../../mod/notifications.php:216 ../../include/nav.php:122 +msgid "Notifications" +msgstr "Notificaciones" + +#: ../../mod/notifications.php:253 ../../mod/notifications.php:378 +#: ../../mod/notifications.php:465 +#, php-format +msgid "%s liked %s's post" +msgstr "A %s le gusta la publicación de %s" + +#: ../../mod/notifications.php:262 ../../mod/notifications.php:387 +#: ../../mod/notifications.php:474 +#, php-format +msgid "%s disliked %s's post" +msgstr "A %s no le gusta la publicación 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 es ahora es amigo de %s" + +#: ../../mod/notifications.php:283 ../../mod/notifications.php:408 +#, php-format +msgid "%s created a new post" +msgstr "%s creó una nueva publicación" + +#: ../../mod/notifications.php:284 ../../mod/notifications.php:409 +#: ../../mod/notifications.php:497 +#, php-format +msgid "%s commented on %s's post" +msgstr "%s comentó la publicación de %s" + +#: ../../mod/notifications.php:298 +msgid "No more network notifications." +msgstr "No hay más notificaciones de red." + +#: ../../mod/notifications.php:302 +msgid "Network Notifications" +msgstr "Notificaciones de Red" + +#: ../../mod/notifications.php:328 ../../mod/notify.php:61 +msgid "No more system notifications." +msgstr "No hay más notificaciones del sistema." + +#: ../../mod/notifications.php:332 ../../mod/notify.php:65 +msgid "System Notifications" +msgstr "Notificaciones del sistema" + +#: ../../mod/notifications.php:423 +msgid "No more personal notifications." +msgstr "No hay más notificaciones personales." + +#: ../../mod/notifications.php:427 +msgid "Personal Notifications" +msgstr "Notificaciones personales" + +#: ../../mod/notifications.php:504 +msgid "No more home notifications." +msgstr "No hay más notificaciones de inicio." + +#: ../../mod/notifications.php:508 +msgid "Home Notifications" +msgstr "Notificaciones de Inicio" + +#: ../../mod/contacts.php:84 ../../mod/contacts.php:164 +msgid "Could not access contact record." +msgstr "No se pudo acceder a los datos del contacto." + +#: ../../mod/contacts.php:98 +msgid "Could not locate selected profile." +msgstr "No se pudo encontrar el perfil seleccionado." + +#: ../../mod/contacts.php:121 +msgid "Contact updated." +msgstr "Contacto actualizado." + +#: ../../mod/contacts.php:186 +msgid "Contact has been blocked" +msgstr "El contacto ha sido bloqueado" + +#: ../../mod/contacts.php:186 +msgid "Contact has been unblocked" +msgstr "El contacto ha sido desbloqueado" + +#: ../../mod/contacts.php:200 +msgid "Contact has been ignored" +msgstr "El contacto ha sido ignorado" + +#: ../../mod/contacts.php:200 +msgid "Contact has been unignored" +msgstr "El contacto ya no está ignorado" + +#: ../../mod/contacts.php:216 +msgid "Contact has been archived" +msgstr "El contacto ha sido archivado" + +#: ../../mod/contacts.php:216 +msgid "Contact has been unarchived" +msgstr "El contacto ya no está archivado" + +#: ../../mod/contacts.php:229 +msgid "Contact has been removed." +msgstr "El contacto ha sido eliminado" + +#: ../../mod/contacts.php:263 +#, php-format +msgid "You are mutual friends with %s" +msgstr "Ahora tienes una amistad mutua con %s" + +#: ../../mod/contacts.php:267 +#, php-format +msgid "You are sharing with %s" +msgstr "Estás compartiendo con %s" + +#: ../../mod/contacts.php:272 +#, php-format +msgid "%s is sharing with you" +msgstr "%s está compartiendo contigo" + +#: ../../mod/contacts.php:289 +msgid "Private communications are not available for this contact." +msgstr "Las comunicaciones privadas no está disponibles para este contacto." + +#: ../../mod/contacts.php:292 +msgid "Never" +msgstr "Nunca" + +#: ../../mod/contacts.php:296 +msgid "(Update was successful)" +msgstr "(La actualización se ha completado)" + +#: ../../mod/contacts.php:296 +msgid "(Update was not successful)" +msgstr "(La actualización no se ha completado)" + +#: ../../mod/contacts.php:298 +msgid "Suggest friends" +msgstr "Sugerir amigos" + +#: ../../mod/contacts.php:302 +#, php-format +msgid "Network type: %s" +msgstr "Tipo de red: %s" + +#: ../../mod/contacts.php:305 ../../include/contact_widgets.php:190 +#, php-format +msgid "%d contact in common" +msgid_plural "%d contacts in common" +msgstr[0] "%d contacto en común" +msgstr[1] "%d contactos en común" + +#: ../../mod/contacts.php:310 +msgid "View all contacts" +msgstr "Ver todos los contactos" + +#: ../../mod/contacts.php:315 ../../mod/contacts.php:374 +#: ../../mod/admin.php:698 +msgid "Unblock" +msgstr "Desbloquear" + +#: ../../mod/contacts.php:315 ../../mod/contacts.php:374 +#: ../../mod/admin.php:697 +msgid "Block" +msgstr "Bloquear" + +#: ../../mod/contacts.php:318 +msgid "Toggle Blocked status" +msgstr "Cambiar bloqueados" + +#: ../../mod/contacts.php:321 ../../mod/contacts.php:375 +msgid "Unignore" +msgstr "Quitar de Ignorados" + +#: ../../mod/contacts.php:324 +msgid "Toggle Ignored status" +msgstr "Cambiar ignorados" + +#: ../../mod/contacts.php:328 +msgid "Unarchive" +msgstr "Sin archivar" + +#: ../../mod/contacts.php:328 +msgid "Archive" +msgstr "Archivo" + +#: ../../mod/contacts.php:331 +msgid "Toggle Archive status" +msgstr "Cambiar archivados" + +#: ../../mod/contacts.php:334 +msgid "Repair" +msgstr "Reparar" + +#: ../../mod/contacts.php:337 +msgid "Advanced Contact Settings" +msgstr "Configuración avanzada" + +#: ../../mod/contacts.php:343 +msgid "Communications lost with this contact!" +msgstr "¡Se ha perdido la comunicación con este contacto!" + +#: ../../mod/contacts.php:346 +msgid "Contact Editor" +msgstr "Editor de contactos" + +#: ../../mod/contacts.php:349 +msgid "Profile Visibility" +msgstr "Visibilidad del Perfil" + +#: ../../mod/contacts.php:350 +#, php-format +msgid "" +"Please choose the profile you would like to display to %s when viewing your " +"profile securely." +msgstr "Por favor, selecciona el perfil que quieras mostrar a %s cuando esté viendo tu perfil de forma segura." + +#: ../../mod/contacts.php:351 +msgid "Contact Information / Notes" +msgstr "Información del Contacto / Notas" + +#: ../../mod/contacts.php:352 +msgid "Edit contact notes" +msgstr "Editar notas del contacto" + +#: ../../mod/contacts.php:357 ../../mod/contacts.php:549 +#: ../../mod/viewcontacts.php:62 ../../mod/nogroup.php:40 +#, php-format +msgid "Visit %s's profile [%s]" +msgstr "Ver el perfil de %s [%s]" + +#: ../../mod/contacts.php:358 +msgid "Block/Unblock contact" +msgstr "Boquear/Desbloquear contacto" + +#: ../../mod/contacts.php:359 +msgid "Ignore contact" +msgstr "Ignorar contacto" + +#: ../../mod/contacts.php:360 +msgid "Repair URL settings" +msgstr "Configuración de reparación de la dirección" + +#: ../../mod/contacts.php:361 +msgid "View conversations" +msgstr "Ver conversaciones" + +#: ../../mod/contacts.php:363 +msgid "Delete contact" +msgstr "Eliminar contacto" + +#: ../../mod/contacts.php:367 +msgid "Last update:" +msgstr "Última actualización:" + +#: ../../mod/contacts.php:369 +msgid "Update public posts" +msgstr "Actualizar publicaciones públicas" + +#: ../../mod/contacts.php:371 ../../mod/admin.php:1170 +msgid "Update now" +msgstr "Actualizar ahora" + +#: ../../mod/contacts.php:378 +msgid "Currently blocked" +msgstr "Bloqueados" + +#: ../../mod/contacts.php:379 +msgid "Currently ignored" +msgstr "Ignorados" + +#: ../../mod/contacts.php:380 +msgid "Currently archived" +msgstr "Archivados" + +#: ../../mod/contacts.php:381 +msgid "" +"Replies/likes to your public posts may still be visible" +msgstr "Los comentarios o \"me gusta\" en tus publicaciones públicas todavía pueden ser visibles." + +#: ../../mod/contacts.php:434 +msgid "Suggestions" +msgstr "Sugerencias" + +#: ../../mod/contacts.php:437 +msgid "Suggest potential friends" +msgstr "Amistades potenciales sugeridas" + +#: ../../mod/contacts.php:440 ../../mod/group.php:191 +msgid "All Contacts" +msgstr "Todos los contactos" + +#: ../../mod/contacts.php:443 +msgid "Show all contacts" +msgstr "Mostrar todos los contactos" + +#: ../../mod/contacts.php:446 +msgid "Unblocked" +msgstr "Desbloqueados" + +#: ../../mod/contacts.php:449 +msgid "Only show unblocked contacts" +msgstr "Mostrar solo contactos sin bloquear" + +#: ../../mod/contacts.php:453 +msgid "Blocked" +msgstr "Bloqueados" + +#: ../../mod/contacts.php:456 +msgid "Only show blocked contacts" +msgstr "Mostrar solo contactos bloqueados" + +#: ../../mod/contacts.php:460 +msgid "Ignored" +msgstr "Ignorados" + +#: ../../mod/contacts.php:463 +msgid "Only show ignored contacts" +msgstr "Mostrar solo contactos ignorados" + +#: ../../mod/contacts.php:467 +msgid "Archived" +msgstr "Archivados" + +#: ../../mod/contacts.php:470 +msgid "Only show archived contacts" +msgstr "Mostrar solo contactos archivados" + +#: ../../mod/contacts.php:474 +msgid "Hidden" +msgstr "Ocultos" + +#: ../../mod/contacts.php:477 +msgid "Only show hidden contacts" +msgstr "Mostrar solo contactos ocultos" + +#: ../../mod/contacts.php:525 +msgid "Mutual Friendship" +msgstr "Amistad recíproca" + +#: ../../mod/contacts.php:529 +msgid "is a fan of yours" +msgstr "es tu fan" + +#: ../../mod/contacts.php:533 +msgid "you are a fan of" +msgstr "eres fan de" + +#: ../../mod/contacts.php:550 ../../mod/nogroup.php:41 +msgid "Edit contact" +msgstr "Modificar contacto" + +#: ../../mod/contacts.php:571 ../../view/theme/diabook/theme.php:129 +#: ../../include/nav.php:139 +msgid "Contacts" +msgstr "Contactos" + +#: ../../mod/contacts.php:575 +msgid "Search your contacts" +msgstr "Buscar en tus contactos" + +#: ../../mod/contacts.php:576 ../../mod/directory.php:59 +msgid "Finding: " +msgstr "Buscando: " + +#: ../../mod/contacts.php:577 ../../mod/directory.php:61 +#: ../../include/contact_widgets.php:33 +msgid "Find" +msgstr "Buscar" + +#: ../../mod/lostpass.php:16 +msgid "No valid account found." +msgstr "No se ha encontrado ninguna cuenta válida" + +#: ../../mod/lostpass.php:32 +msgid "Password reset request issued. Check your email." +msgstr "Solicitud de restablecimiento de contraseña enviada. Revisa tu correo." + +#: ../../mod/lostpass.php:43 +#, php-format +msgid "Password reset requested at %s" +msgstr "Contraseña restablecida enviada a %s" + +#: ../../mod/lostpass.php:45 ../../mod/lostpass.php:107 +#: ../../mod/register.php:90 ../../mod/register.php:144 +#: ../../mod/regmod.php:54 ../../mod/dfrn_confirm.php:752 +#: ../../addon/facebook/facebook.php:702 +#: ../../addon/facebook/facebook.php:1200 ../../addon/fbpost/fbpost.php:661 +#: ../../addon/public_server/public_server.php:62 +#: ../../addon/testdrive/testdrive.php:67 ../../include/items.php:3296 +#: ../../boot.php:788 +msgid "Administrator" +msgstr "Administrador" + +#: ../../mod/lostpass.php:65 +msgid "" +"Request could not be verified. (You may have previously submitted it.) " +"Password reset failed." +msgstr "La solicitud no puede ser verificada (deberías haberla proporcionado antes). Falló el restablecimiento de la contraseña." + +#: ../../mod/lostpass.php:83 ../../boot.php:925 +msgid "Password Reset" +msgstr "Restablecer la contraseña" + +#: ../../mod/lostpass.php:84 +msgid "Your password has been reset as requested." +msgstr "Tu contraseña ha sido restablecida como solicitaste." + +#: ../../mod/lostpass.php:85 +msgid "Your new password is" +msgstr "Tu nueva contraseña es" + +#: ../../mod/lostpass.php:86 +msgid "Save or copy your new password - and then" +msgstr "Guarda o copia tu nueva contraseña y luego" + +#: ../../mod/lostpass.php:87 +msgid "click here to login" +msgstr "pulsa aquí para acceder" + +#: ../../mod/lostpass.php:88 +msgid "" +"Your password may be changed from the Settings page after " +"successful login." +msgstr "Puedes cambiar tu contraseña desde la página de Configuración después de acceder con éxito." + +#: ../../mod/lostpass.php:119 +msgid "Forgot your Password?" +msgstr "¿Olvidaste tu contraseña?" + +#: ../../mod/lostpass.php:120 +msgid "" +"Enter your email address and submit to have your password reset. Then check " +"your email for further instructions." +msgstr "Introduce tu correo para restablecer tu contraseña. Luego comprueba tu correo para las instrucciones adicionales." + +#: ../../mod/lostpass.php:121 +msgid "Nickname or Email: " +msgstr "Apodo o Correo electrónico: " + +#: ../../mod/lostpass.php:122 +msgid "Reset" +msgstr "Restablecer" + +#: ../../mod/settings.php:30 ../../include/nav.php:137 +msgid "Account settings" +msgstr "Configuración de tu cuenta" + +#: ../../mod/settings.php:35 +msgid "Display settings" +msgstr "Mostrar configuración" + +#: ../../mod/settings.php:41 +msgid "Connector settings" +msgstr "Configuración del conector" + +#: ../../mod/settings.php:46 +msgid "Plugin settings" +msgstr "Configuración de los módulos" + +#: ../../mod/settings.php:51 +msgid "Connected apps" +msgstr "Aplicaciones conectadas" + +#: ../../mod/settings.php:56 +msgid "Export personal data" +msgstr "Exportación de datos personales" + +#: ../../mod/settings.php:61 +msgid "Remove account" +msgstr "Eliminar cuenta" + +#: ../../mod/settings.php:69 ../../mod/newmember.php:22 +#: ../../mod/admin.php:785 ../../mod/admin.php:990 +#: ../../addon/dav/friendica/layout.fnk.php:225 +#: ../../addon/mathjax/mathjax.php:36 ../../view/theme/diabook/theme.php:643 +#: ../../view/theme/diabook/theme.php:773 ../../include/nav.php:137 +msgid "Settings" +msgstr "Configuración" + +#: ../../mod/settings.php:113 +msgid "Missing some important data!" +msgstr "¡Faltan algunos datos importantes!" + +#: ../../mod/settings.php:116 ../../mod/settings.php:569 +msgid "Update" +msgstr "Actualizar" + +#: ../../mod/settings.php:221 +msgid "Failed to connect with email account using the settings provided." +msgstr "Error al conectar con la cuenta de correo mediante la configuración suministrada." + +#: ../../mod/settings.php:226 +msgid "Email settings updated." +msgstr "Configuración de correo actualizada." + +#: ../../mod/settings.php:290 +msgid "Passwords do not match. Password unchanged." +msgstr "Las contraseñas no coinciden. La contraseña no ha sido modificada." + +#: ../../mod/settings.php:295 +msgid "Empty passwords are not allowed. Password unchanged." +msgstr "No se permiten contraseñas vacías. La contraseña no ha sido modificada." + +#: ../../mod/settings.php:306 +msgid "Password changed." +msgstr "Contraseña modificada." + +#: ../../mod/settings.php:308 +msgid "Password update failed. Please try again." +msgstr "La actualización de la contraseña ha fallado. Por favor, prueba otra vez." + +#: ../../mod/settings.php:373 +msgid " Please use a shorter name." +msgstr " Usa un nombre más corto." + +#: ../../mod/settings.php:375 +msgid " Name too short." +msgstr " Nombre demasiado corto." + +#: ../../mod/settings.php:381 +msgid " Not valid email." +msgstr " Correo no válido." + +#: ../../mod/settings.php:383 +msgid " Cannot change to that email." +msgstr " No se puede usar ese correo." + +#: ../../mod/settings.php:437 +msgid "Private forum has no privacy permissions. Using default privacy group." +msgstr "El foro privado no tiene permisos de privacidad. Usando el grupo de privacidad por defecto." + +#: ../../mod/settings.php:441 +msgid "Private forum has no privacy permissions and no default privacy group." +msgstr "El foro privado no tiene permisos de privacidad ni grupo por defecto de privacidad." + +#: ../../mod/settings.php:471 ../../addon/facebook/facebook.php:495 +#: ../../addon/fbpost/fbpost.php:144 ../../addon/impressum/impressum.php:78 +#: ../../addon/openstreetmap/openstreetmap.php:80 +#: ../../addon/mathjax/mathjax.php:66 ../../addon/piwik/piwik.php:105 +#: ../../addon/twitter/twitter.php:389 +msgid "Settings updated." +msgstr "Configuración actualizada." + +#: ../../mod/settings.php:542 ../../mod/settings.php:568 +#: ../../mod/settings.php:604 +msgid "Add application" +msgstr "Agregar aplicación" + +#: ../../mod/settings.php:546 ../../mod/settings.php:572 +#: ../../addon/statusnet/statusnet.php:570 +msgid "Consumer Key" +msgstr "Clave del consumidor" + +#: ../../mod/settings.php:547 ../../mod/settings.php:573 +#: ../../addon/statusnet/statusnet.php:569 +msgid "Consumer Secret" +msgstr "Secreto del consumidor" + +#: ../../mod/settings.php:548 ../../mod/settings.php:574 +msgid "Redirect" +msgstr "Redirigir" + +#: ../../mod/settings.php:549 ../../mod/settings.php:575 +msgid "Icon url" +msgstr "Dirección del ícono" + +#: ../../mod/settings.php:560 +msgid "You can't edit this application." +msgstr "No puedes editar esta aplicación." + +#: ../../mod/settings.php:603 +msgid "Connected Apps" +msgstr "Aplicaciones conectadas" + +#: ../../mod/settings.php:607 +msgid "Client key starts with" +msgstr "Clave de cliente comienza por" + +#: ../../mod/settings.php:608 +msgid "No name" +msgstr "Sin nombre" + +#: ../../mod/settings.php:609 +msgid "Remove authorization" +msgstr "Suprimir la autorización" + +#: ../../mod/settings.php:620 +msgid "No Plugin settings configured" +msgstr "No se ha configurado ningún módulo" + +#: ../../mod/settings.php:628 ../../addon/widgets/widgets.php:123 +msgid "Plugin Settings" +msgstr "Configuración de los módulos" + +#: ../../mod/settings.php:640 ../../mod/settings.php:641 +#, php-format +msgid "Built-in support for %s connectivity is %s" +msgstr "El soporte integrado de conexión con %s está %s" + +#: ../../mod/settings.php:640 ../../mod/settings.php:641 +msgid "enabled" +msgstr "habilitado" + +#: ../../mod/settings.php:640 ../../mod/settings.php:641 +msgid "disabled" +msgstr "deshabilitado" + +#: ../../mod/settings.php:641 +msgid "StatusNet" +msgstr "StatusNet" + +#: ../../mod/settings.php:673 +msgid "Email access is disabled on this site." +msgstr "El acceso por correo está deshabilitado en esta web." + +#: ../../mod/settings.php:679 +msgid "Connector Settings" +msgstr "Configuración del conector" + +#: ../../mod/settings.php:684 +msgid "Email/Mailbox Setup" +msgstr "Configuración del correo/buzón" + +#: ../../mod/settings.php:685 +msgid "" +"If you wish to communicate with email contacts using this service " +"(optional), please specify how to connect to your mailbox." +msgstr "Si quieres comunicarte con tus contactos de correo usando este servicio (opcional), por favor, especifica cómo conectar con tu buzón." + +#: ../../mod/settings.php:686 +msgid "Last successful email check:" +msgstr "Última comprobación del correo con éxito:" + +#: ../../mod/settings.php:688 +msgid "IMAP server name:" +msgstr "Nombre del servidor IMAP:" + +#: ../../mod/settings.php:689 +msgid "IMAP port:" +msgstr "Puerto IMAP:" + +#: ../../mod/settings.php:690 +msgid "Security:" +msgstr "Seguridad:" + +#: ../../mod/settings.php:690 ../../mod/settings.php:695 +#: ../../addon/dav/common/wdcal_edit.inc.php:191 +msgid "None" +msgstr "Ninguna" + +#: ../../mod/settings.php:691 +msgid "Email login name:" +msgstr "Nombre de usuario:" + +#: ../../mod/settings.php:692 +msgid "Email password:" +msgstr "Contraseña:" + +#: ../../mod/settings.php:693 +msgid "Reply-to address:" +msgstr "Dirección de respuesta:" + +#: ../../mod/settings.php:694 +msgid "Send public posts to all email contacts:" +msgstr "Enviar publicaciones públicas a todos los contactos de correo:" + +#: ../../mod/settings.php:695 +msgid "Action after import:" +msgstr "Acción después de importar:" + +#: ../../mod/settings.php:695 +msgid "Mark as seen" +msgstr "Marcar como leído" + +#: ../../mod/settings.php:695 +msgid "Move to folder" +msgstr "Mover a un directorio" + +#: ../../mod/settings.php:696 +msgid "Move to folder:" +msgstr "Mover al directorio:" + +#: ../../mod/settings.php:727 ../../mod/admin.php:402 +msgid "No special theme for mobile devices" +msgstr "No hay tema especial para dispositivos móviles" + +#: ../../mod/settings.php:767 +msgid "Display Settings" +msgstr "Mostrar Configuración" + +#: ../../mod/settings.php:773 ../../mod/settings.php:784 +msgid "Display Theme:" +msgstr "Utilizar tema:" + +#: ../../mod/settings.php:774 +msgid "Mobile Theme:" +msgstr "Tema móvil:" + +#: ../../mod/settings.php:775 +msgid "Update browser every xx seconds" +msgstr "Actualizar navegador cada xx segundos" + +#: ../../mod/settings.php:775 +msgid "Minimum of 10 seconds, no maximum" +msgstr "Mínimo 10 segundos, sin máximo" + +#: ../../mod/settings.php:776 +msgid "Number of items to display per page:" +msgstr "Número de elementos a mostrar por página:" + +#: ../../mod/settings.php:776 +msgid "Maximum of 100 items" +msgstr "Máximo 100 elementos" + +#: ../../mod/settings.php:777 +msgid "Don't show emoticons" +msgstr "No mostrar emoticones" + +#: ../../mod/settings.php:853 +msgid "Normal Account Page" +msgstr "Página de cuenta normal" + +#: ../../mod/settings.php:854 +msgid "This account is a normal personal profile" +msgstr "Esta cuenta es el perfil personal normal" + +#: ../../mod/settings.php:857 +msgid "Soapbox Page" +msgstr "Página de tribuna" + +#: ../../mod/settings.php:858 +msgid "Automatically approve all connection/friend requests as read-only fans" +msgstr "Acepta automáticamente todas las peticiones de conexión/amistad como seguidores de solo-lectura" + +#: ../../mod/settings.php:861 +msgid "Community Forum/Celebrity Account" +msgstr "Cuenta de Comunidad, Foro o Celebridad" + +#: ../../mod/settings.php:862 +msgid "" +"Automatically approve all connection/friend requests as read-write fans" +msgstr "Acepta automáticamente todas las peticiones de conexión/amistad como seguidores de lectura-escritura" + +#: ../../mod/settings.php:865 +msgid "Automatic Friend Page" +msgstr "Página de Amistad autómatica" + +#: ../../mod/settings.php:866 +msgid "Automatically approve all connection/friend requests as friends" +msgstr "Aceptar automáticamente todas las solicitudes de conexión/amistad como amigos" + +#: ../../mod/settings.php:869 +msgid "Private Forum [Experimental]" +msgstr "Foro privado [Experimental]" + +#: ../../mod/settings.php:870 +msgid "Private forum - approved members only" +msgstr "Foro privado - solo miembros" + +#: ../../mod/settings.php:882 +msgid "OpenID:" +msgstr "OpenID:" + +#: ../../mod/settings.php:882 +msgid "(Optional) Allow this OpenID to login to this account." +msgstr "(Opcional) Permitir a este OpenID acceder a esta cuenta." + +#: ../../mod/settings.php:892 +msgid "Publish your default profile in your local site directory?" +msgstr "¿Quieres publicar tu perfil predeterminado en el directorio local del sitio?" + +#: ../../mod/settings.php:898 +msgid "Publish your default profile in the global social directory?" +msgstr "¿Quieres publicar tu perfil predeterminado en el directorio social de forma global?" + +#: ../../mod/settings.php:906 +msgid "Hide your contact/friend list from viewers of your default profile?" +msgstr "¿Quieres ocultar tu lista de contactos/amigos en la vista de tu perfil predeterminado?" + +#: ../../mod/settings.php:910 +msgid "Hide your profile details from unknown viewers?" +msgstr "¿Quieres que los detalles de tu perfil permanezcan ocultos a los desconocidos?" + +#: ../../mod/settings.php:915 +msgid "Allow friends to post to your profile page?" +msgstr "¿Permites que tus amigos publiquen en tu página de perfil?" + +#: ../../mod/settings.php:921 +msgid "Allow friends to tag your posts?" +msgstr "¿Permites a los amigos etiquetar tus publicaciones?" + +#: ../../mod/settings.php:927 +msgid "Allow us to suggest you as a potential friend to new members?" +msgstr "¿Nos permite recomendarte como amigo potencial a los nuevos miembros?" + +#: ../../mod/settings.php:933 +msgid "Permit unknown people to send you private mail?" +msgstr "¿Permites que desconocidos te manden correos privados?" + +#: ../../mod/settings.php:941 +msgid "Profile is not published." +msgstr "El perfil no está publicado." + +#: ../../mod/settings.php:944 ../../mod/profile_photo.php:248 +msgid "or" +msgstr "o" + +#: ../../mod/settings.php:949 +msgid "Your Identity Address is" +msgstr "Tu dirección personal es" + +#: ../../mod/settings.php:960 +msgid "Automatically expire posts after this many days:" +msgstr "Las publicaciones expirarán automáticamente después de estos días:" + +#: ../../mod/settings.php:960 +msgid "If empty, posts will not expire. Expired posts will be deleted" +msgstr "Si lo dejas vacío no expirarán nunca. Las publicaciones que hayan expirado se borrarán" + +#: ../../mod/settings.php:961 +msgid "Advanced expiration settings" +msgstr "Configuración avanzada de expiración" + +#: ../../mod/settings.php:962 +msgid "Advanced Expiration" +msgstr "Expiración avanzada" + +#: ../../mod/settings.php:963 +msgid "Expire posts:" +msgstr "¿Expiran las publicaciones?" + +#: ../../mod/settings.php:964 +msgid "Expire personal notes:" +msgstr "¿Expiran las notas personales?" + +#: ../../mod/settings.php:965 +msgid "Expire starred posts:" +msgstr "¿Expiran los favoritos?" + +#: ../../mod/settings.php:966 +msgid "Expire photos:" +msgstr "¿Expiran las fotografías?" + +#: ../../mod/settings.php:967 +msgid "Only expire posts by others:" +msgstr "Solo expiran los mensajes de los demás:" + +#: ../../mod/settings.php:974 +msgid "Account Settings" +msgstr "Configuración de la cuenta" + +#: ../../mod/settings.php:982 +msgid "Password Settings" +msgstr "Configuración de la contraseña" + +#: ../../mod/settings.php:983 +msgid "New Password:" +msgstr "Contraseña nueva:" + +#: ../../mod/settings.php:984 +msgid "Confirm:" +msgstr "Confirmar:" + +#: ../../mod/settings.php:984 +msgid "Leave password fields blank unless changing" +msgstr "Deja la contraseña en blanco si no quieres cambiarla" + +#: ../../mod/settings.php:988 +msgid "Basic Settings" +msgstr "Configuración básica" + +#: ../../mod/settings.php:989 ../../include/profile_advanced.php:15 +msgid "Full Name:" +msgstr "Nombre completo:" + +#: ../../mod/settings.php:990 +msgid "Email Address:" +msgstr "Dirección de correo:" + +#: ../../mod/settings.php:991 +msgid "Your Timezone:" +msgstr "Zona horaria:" + +#: ../../mod/settings.php:992 +msgid "Default Post Location:" +msgstr "Localización predeterminada:" + +#: ../../mod/settings.php:993 +msgid "Use Browser Location:" +msgstr "Usar localización del navegador:" + +#: ../../mod/settings.php:996 +msgid "Security and Privacy Settings" +msgstr "Configuración de seguridad y privacidad" + +#: ../../mod/settings.php:998 +msgid "Maximum Friend Requests/Day:" +msgstr "Máximo número de peticiones de amistad por día:" + +#: ../../mod/settings.php:998 ../../mod/settings.php:1017 +msgid "(to prevent spam abuse)" +msgstr "(para prevenir el abuso de spam)" + +#: ../../mod/settings.php:999 +msgid "Default Post Permissions" +msgstr "Permisos por defecto para las publicaciones" + +#: ../../mod/settings.php:1000 +msgid "(click to open/close)" +msgstr "(pulsa para abrir/cerrar)" + +#: ../../mod/settings.php:1017 +msgid "Maximum private messages per day from unknown people:" +msgstr "Número máximo de mensajes diarios para desconocidos:" + +#: ../../mod/settings.php:1020 +msgid "Notification Settings" +msgstr "Configuración de notificaciones" + +#: ../../mod/settings.php:1021 +msgid "By default post a status message when:" +msgstr "Publicar en tu estado cuando:" + +#: ../../mod/settings.php:1022 +msgid "accepting a friend request" +msgstr "aceptes una solicitud de amistad" + +#: ../../mod/settings.php:1023 +msgid "joining a forum/community" +msgstr "te unas a un foro/comunidad" + +#: ../../mod/settings.php:1024 +msgid "making an interesting profile change" +msgstr "hagas un cambio interesante en tu perfil" + +#: ../../mod/settings.php:1025 +msgid "Send a notification email when:" +msgstr "Enviar notificación por correo cuando:" + +#: ../../mod/settings.php:1026 +msgid "You receive an introduction" +msgstr "Recibas una presentación" + +#: ../../mod/settings.php:1027 +msgid "Your introductions are confirmed" +msgstr "Tu presentación sea confirmada" + +#: ../../mod/settings.php:1028 +msgid "Someone writes on your profile wall" +msgstr "Alguien escriba en el muro de mi perfil" + +#: ../../mod/settings.php:1029 +msgid "Someone writes a followup comment" +msgstr "Algien escriba en un comentario que sigo" + +#: ../../mod/settings.php:1030 +msgid "You receive a private message" +msgstr "Recibas un mensaje privado" + +#: ../../mod/settings.php:1031 +msgid "You receive a friend suggestion" +msgstr "Recibas una sugerencia de amistad" + +#: ../../mod/settings.php:1032 +msgid "You are tagged in a post" +msgstr "Seas etiquetado en una publicación" + +#: ../../mod/settings.php:1033 +msgid "You are poked/prodded/etc. in a post" +msgstr "Te han tocado/empujado/etc. en una publicación" + +#: ../../mod/settings.php:1036 +msgid "Advanced Account/Page Type Settings" +msgstr "Configuración avanzada de tipo de Cuenta/Página" + +#: ../../mod/settings.php:1037 +msgid "Change the behaviour of this account for special situations" +msgstr "Cambiar el comportamiento de esta cuenta para situaciones especiales" + +#: ../../mod/manage.php:91 +msgid "Manage Identities and/or Pages" +msgstr "Administrar identidades y/o páginas" + +#: ../../mod/manage.php:94 +msgid "" +"Toggle between different identities or community/group pages which share " +"your account details or which you have been granted \"manage\" permissions" +msgstr "Cambia entre diferentes identidades o páginas de Comunidad/Grupos que comparten los detalles de tu cuenta o sobre los que tienes permisos para administrar" + +#: ../../mod/manage.php:96 +msgid "Select an identity to manage: " +msgstr "Selecciona una identidad a gestionar:" + +#: ../../mod/network.php:97 +msgid "Search Results For:" +msgstr "Resultados de la busqueda para:" + +#: ../../mod/network.php:137 ../../mod/search.php:16 +msgid "Remove term" +msgstr "Eliminar término" + +#: ../../mod/network.php:146 ../../mod/search.php:13 +msgid "Saved Searches" +msgstr "Búsquedas guardadas" + +#: ../../mod/network.php:147 ../../include/group.php:244 +msgid "add" +msgstr "añadir" + +#: ../../mod/network.php:287 +msgid "Commented Order" +msgstr "Orden de comentarios" + +#: ../../mod/network.php:290 +msgid "Sort by Comment Date" +msgstr "Ordenar por fecha de comentarios" + +#: ../../mod/network.php:293 +msgid "Posted Order" +msgstr "Orden de publicación" + +#: ../../mod/network.php:296 +msgid "Sort by Post Date" +msgstr "Ordenar por fecha de publicación" + +#: ../../mod/network.php:303 +msgid "Posts that mention or involve you" +msgstr "Publicaciones que te mencionan o involucran" + +#: ../../mod/network.php:306 +msgid "New" +msgstr "Nuevo" + +#: ../../mod/network.php:309 +msgid "Activity Stream - by date" +msgstr "Corriente de actividad por fecha" + +#: ../../mod/network.php:312 +msgid "Starred" +msgstr "Favoritos" + +#: ../../mod/network.php:315 +msgid "Favourite Posts" +msgstr "Publicaciones favoritas" + +#: ../../mod/network.php:318 +msgid "Shared Links" +msgstr "Enlaces compartidos" + +#: ../../mod/network.php:321 +msgid "Interesting Links" +msgstr "Enlaces interesantes" + +#: ../../mod/network.php:388 +#, 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] "Aviso: este grupo contiene %s contacto con conexión no segura." +msgstr[1] "Aviso: este grupo contiene %s contactos con conexiones no seguras." + +#: ../../mod/network.php:391 +msgid "Private messages to this group are at risk of public disclosure." +msgstr "Los mensajes privados a este grupo corren el riesgo de ser mostrados públicamente." + +#: ../../mod/network.php:461 +msgid "Contact: " +msgstr "Contacto: " + +#: ../../mod/network.php:463 +msgid "Private messages to this person are at risk of public disclosure." +msgstr "Los mensajes privados a esta persona corren el riesgo de ser mostrados públicamente." + +#: ../../mod/network.php:468 +msgid "Invalid contact." +msgstr "Contacto erróneo." + +#: ../../mod/notes.php:44 ../../boot.php:1696 +msgid "Personal Notes" +msgstr "Notas personales" + +#: ../../mod/notes.php:63 ../../mod/filer.php:30 +#: ../../addon/facebook/facebook.php:770 +#: ../../addon/privacy_image_cache/privacy_image_cache.php:263 +#: ../../addon/fbpost/fbpost.php:267 +#: ../../addon/dav/friendica/layout.fnk.php:441 +#: ../../addon/dav/friendica/layout.fnk.php:488 ../../include/text.php:681 +msgid "Save" +msgstr "Guardar" + +#: ../../mod/wallmessage.php:42 ../../mod/wallmessage.php:112 +#, php-format +msgid "Number of daily wall messages for %s exceeded. Message failed." +msgstr "Excedido el número máximo de mensajes para %s. El mensaje no se ha enviado." + +#: ../../mod/wallmessage.php:56 ../../mod/message.php:59 +msgid "No recipient selected." +msgstr "Ningún destinatario seleccionado" + +#: ../../mod/wallmessage.php:59 +msgid "Unable to check your home location." +msgstr "Imposible comprobar tu servidor de inicio." + +#: ../../mod/wallmessage.php:62 ../../mod/message.php:66 +msgid "Message could not be sent." +msgstr "El mensaje no ha podido ser enviado." + +#: ../../mod/wallmessage.php:65 ../../mod/message.php:69 +msgid "Message collection failure." +msgstr "Fallo en la recolección de mensajes." + +#: ../../mod/wallmessage.php:68 ../../mod/message.php:72 +msgid "Message sent." +msgstr "Mensaje enviado." + +#: ../../mod/wallmessage.php:86 ../../mod/wallmessage.php:95 +msgid "No recipient." +msgstr "Sin receptor." + +#: ../../mod/wallmessage.php:123 ../../mod/wallmessage.php:131 +#: ../../mod/message.php:242 ../../mod/message.php:250 +#: ../../include/conversation.php:1205 ../../include/conversation.php:1222 +msgid "Please enter a link URL:" +msgstr "Introduce la dirección del enlace:" + +#: ../../mod/wallmessage.php:138 ../../mod/message.php:278 +msgid "Send Private Message" +msgstr "Enviar mensaje privado" + +#: ../../mod/wallmessage.php:139 +#, php-format +msgid "" +"If you wish for %s to respond, please check that the privacy settings on " +"your site allow private mail from unknown senders." +msgstr "Si quieres que %s te responda, asegúrate de que la configuración de privacidad permite enviar correo privado a desconocidos." + +#: ../../mod/wallmessage.php:140 ../../mod/message.php:279 +#: ../../mod/message.php:469 +msgid "To:" +msgstr "Para:" + +#: ../../mod/wallmessage.php:141 ../../mod/message.php:284 +#: ../../mod/message.php:471 +msgid "Subject:" +msgstr "Asunto:" + +#: ../../mod/wallmessage.php:147 ../../mod/message.php:288 +#: ../../mod/message.php:474 ../../mod/invite.php:113 +msgid "Your message:" +msgstr "Tu mensaje:" + +#: ../../mod/newmember.php:6 +msgid "Welcome to Friendica" +msgstr "Bienvenido a Friendica " + +#: ../../mod/newmember.php:8 +msgid "New Member Checklist" +msgstr "Listado de nuevos miembros" + +#: ../../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 "Nos gustaría ofrecerte algunos consejos y enlaces para ayudar a hacer tu experiencia más amena. Pulsa en cualquier elemento para visitar la página correspondiente. Un enlace a esta página será visible desde tu página de inicio durante las dos semanas siguientes a tu inscripción y luego desaparecerá." + +#: ../../mod/newmember.php:14 +msgid "Getting Started" +msgstr "Empezando" + +#: ../../mod/newmember.php:18 +msgid "Friendica Walk-Through" +msgstr "Visita guiada a Friendica" + +#: ../../mod/newmember.php:18 +msgid "" +"On your Quick Start page - find a brief introduction to your " +"profile and network tabs, make some new connections, and find some groups to" +" join." +msgstr "En tu página de Inicio Rápido - busca una introducción breve para tus pestañas de perfil y red, haz algunas conexiones nuevas, y busca algunos grupos a los que unirte." + +#: ../../mod/newmember.php:26 +msgid "Go to Your Settings" +msgstr "Ir a tus ajustes" + +#: ../../mod/newmember.php:26 +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 "En la página de Configuración puedes cambiar tu contraseña inicial. También aparece tu ID (Identity Address). Es parecida a una dirección de correo y te servirá para conectar con gente de redes sociales libres." + +#: ../../mod/newmember.php:28 +msgid "" +"Review the other settings, particularly the privacy settings. An unpublished" +" directory listing is like having an unlisted phone number. In general, you " +"should probably publish your listing - unless all of your friends and " +"potential friends know exactly how to find you." +msgstr "Revisa las otras configuraciones, especialmente la configuración de privacidad. Un listado de directorio sin publicar es como tener un número de teléfono sin publicar. Normalmente querrás publicar tu listado, a menos que tus amigos y amigos potenciales sepan cómo ponerse en contacto contigo." + +#: ../../mod/newmember.php:32 ../../mod/profperm.php:103 +#: ../../view/theme/diabook/theme.php:128 ../../include/profile_advanced.php:7 +#: ../../include/profile_advanced.php:84 ../../include/nav.php:50 +#: ../../boot.php:1672 +msgid "Profile" +msgstr "Perfil" + +#: ../../mod/newmember.php:36 ../../mod/profile_photo.php:244 +msgid "Upload Profile Photo" +msgstr "Subir foto del Perfil" + +#: ../../mod/newmember.php:36 +msgid "" +"Upload a profile photo if you have not done so already. Studies have shown " +"that people with real photos of themselves are ten times more likely to make" +" friends than people who do not." +msgstr "Sube una foto para tu perfil si no lo has hecho aún. Los estudios han demostrado que la gente que usa fotos suyas reales tienen diez veces más éxito a la hora de entablar amistad que las que no." + +#: ../../mod/newmember.php:38 +msgid "Edit Your Profile" +msgstr "Editar tu perfil" + +#: ../../mod/newmember.php:38 +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 "Edita tu perfil predeterminado como quieras. Revisa la configuración para ocultar tu lista de amigos o tu perfil a los visitantes desconocidos." + +#: ../../mod/newmember.php:40 +msgid "Profile Keywords" +msgstr "Palabras clave del perfil" + +#: ../../mod/newmember.php:40 +msgid "" +"Set some public keywords for your default profile which describe your " +"interests. We may be able to find other people with similar interests and " +"suggest friendships." +msgstr "Define en tu perfil público algunas palabras que describan tus intereses. Así podremos buscar otras personas con los mismos gustos y sugerirte posibles amigos." + +#: ../../mod/newmember.php:44 +msgid "Connecting" +msgstr "Conectando" + +#: ../../mod/newmember.php:49 ../../mod/newmember.php:51 +#: ../../addon/facebook/facebook.php:728 ../../addon/fbpost/fbpost.php:239 +#: ../../include/contact_selectors.php:81 +msgid "Facebook" +msgstr "Facebook" + +#: ../../mod/newmember.php:49 +msgid "" +"Authorise the Facebook Connector if you currently have a Facebook account " +"and we will (optionally) import all your Facebook friends and conversations." +msgstr "Autoriza la conexión con Facebook si ya tienes una cuenta en Facebook y nosotros (opcionalmente) importaremos tus amistades y conversaciones desde Facebook." + +#: ../../mod/newmember.php:51 +msgid "" +"If this is your own personal server, installing the Facebook addon " +"may ease your transition to the free social web." +msgstr "Si este es tu propio servidor privado, instalar el conector de Facebook puede facilitar el paso hacia la red social libre." + +#: ../../mod/newmember.php:56 +msgid "Importing Emails" +msgstr "Importando correos electrónicos" + +#: ../../mod/newmember.php:56 +msgid "" +"Enter your email access information on your Connector Settings page if you " +"wish to import and interact with friends or mailing lists from your email " +"INBOX" +msgstr "Introduce la información para acceder a tu correo en la página de Configuración del conector si quieres importar e interactuar con amigos o listas de correos del buzón de entrada de tu correo electrónico." + +#: ../../mod/newmember.php:58 +msgid "Go to Your Contacts Page" +msgstr "Ir a tu página de contactos" + +#: ../../mod/newmember.php:58 +msgid "" +"Your Contacts page is your gateway to managing friendships and connecting " +"with friends on other networks. Typically you enter their address or site " +"URL in the Add New Contact dialog." +msgstr "Tu página de Contactos es el portal desde donde podrás manejar tus amistades y conectarte con amigos de otras redes. Normalmente introduces su dirección o la dirección de su sitio web en el recuadro \"Añadir contacto nuevo\"." + +#: ../../mod/newmember.php:60 +msgid "Go to Your Site's Directory" +msgstr "Ir al directorio de tu sitio" + +#: ../../mod/newmember.php:60 +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 "El Directorio te permite encontrar otras personas en esta red o en cualquier otro sitio federado. Busca algún enlace de Conectar o Seguir en su perfil. Proporciona tu direción personal si es necesario." + +#: ../../mod/newmember.php:62 +msgid "Finding New People" +msgstr "Encontrando nueva gente" + +#: ../../mod/newmember.php:62 +msgid "" +"On the side panel of the Contacts page are several tools to find new " +"friends. We can match people by interest, look up people by name or " +"interest, and provide suggestions based on network relationships. On a brand" +" new site, friend suggestions will usually begin to be populated within 24 " +"hours." +msgstr "En el panel lateral de la página de Contactos existen varias herramientas para encontrar nuevos amigos. Podemos filtrar personas por sus intereses, buscar personas por nombre o por sus intereses, y ofrecerte sugerencias basadas en sus relaciones de la red. En un sitio nuevo, las sugerencias de amigos por lo general comienzan pasadas las 24 horas." + +#: ../../mod/newmember.php:66 ../../include/group.php:239 +msgid "Groups" +msgstr "Grupos" + +#: ../../mod/newmember.php:70 +msgid "Group Your Contacts" +msgstr "Agrupa tus contactos" + +#: ../../mod/newmember.php:70 +msgid "" +"Once you have made some friends, organize them into private conversation " +"groups from the sidebar of your Contacts page and then you can interact with" +" each group privately on your Network page." +msgstr "Una vez que tengas algunos amigos, puedes organizarlos en grupos privados de conversación mediante el memnú en tu página de Contactos y luego puedes interactuar con cada grupo por separado desde tu página de Red." + +#: ../../mod/newmember.php:73 +msgid "Why Aren't My Posts Public?" +msgstr "¿Por qué mis publicaciones no son públicas?" + +#: ../../mod/newmember.php:73 +msgid "" +"Friendica respects your privacy. By default, your posts will only show up to" +" people you've added as friends. For more information, see the help section " +"from the link above." +msgstr "Friendica respeta tu privacidad. Por defecto, tus publicaciones solo se mostrarán a personas que hayas añadido como amistades. Para más información, mira la sección de ayuda en el enlace de más arriba." + +#: ../../mod/newmember.php:78 +msgid "Getting Help" +msgstr "Consiguiendo ayuda" + +#: ../../mod/newmember.php:82 +msgid "Go to the Help Section" +msgstr "Ir a la sección de ayuda" + +#: ../../mod/newmember.php:82 +msgid "" +"Our help pages may be consulted for detail on other program" +" features and resources." +msgstr "Puedes consultar nuestra página de Ayuda para más información y recursos de ayuda." + +#: ../../mod/attach.php:8 +msgid "Item not available." +msgstr "Elemento no disponible." + +#: ../../mod/attach.php:20 +msgid "Item was not found." +msgstr "Elemento no encontrado." + +#: ../../mod/group.php:29 +msgid "Group created." +msgstr "Grupo creado." + +#: ../../mod/group.php:35 +msgid "Could not create group." +msgstr "Imposible crear el grupo." + +#: ../../mod/group.php:47 ../../mod/group.php:137 +msgid "Group not found." +msgstr "Grupo no encontrado." + +#: ../../mod/group.php:60 +msgid "Group name changed." +msgstr "El nombre del grupo ha cambiado." + +#: ../../mod/group.php:72 ../../mod/profperm.php:19 ../../index.php:316 +msgid "Permission denied" +msgstr "Permiso denegado" + +#: ../../mod/group.php:90 +msgid "Create a group of contacts/friends." +msgstr "Crea un grupo de contactos/amigos." + +#: ../../mod/group.php:91 ../../mod/group.php:177 +msgid "Group Name: " +msgstr "Nombre del grupo: " + +#: ../../mod/group.php:110 +msgid "Group removed." +msgstr "Grupo eliminado." + +#: ../../mod/group.php:112 +msgid "Unable to remove group." +msgstr "No se puede eliminar el grupo." + +#: ../../mod/group.php:176 +msgid "Group Editor" +msgstr "Editor de grupos" + +#: ../../mod/group.php:189 +msgid "Members" +msgstr "Miembros" + +#: ../../mod/group.php:221 ../../mod/profperm.php:105 +msgid "Click on a contact to add or remove." +msgstr "Pulsa en un contacto para añadirlo o eliminarlo." + +#: ../../mod/profperm.php:25 ../../mod/profperm.php:55 +msgid "Invalid profile identifier." +msgstr "Identificador de perfil no válido." + +#: ../../mod/profperm.php:101 +msgid "Profile Visibility Editor" +msgstr "Editor de visibilidad del perfil" + +#: ../../mod/profperm.php:114 +msgid "Visible To" +msgstr "Visible para" + +#: ../../mod/profperm.php:130 +msgid "All Contacts (with secure profile access)" +msgstr "Todos los contactos (con perfil de acceso seguro)" + +#: ../../mod/viewcontacts.php:39 +msgid "No contacts." +msgstr "Ningún contacto." + +#: ../../mod/viewcontacts.php:76 ../../include/text.php:618 +msgid "View Contacts" +msgstr "Ver contactos" + +#: ../../mod/register.php:88 ../../mod/regmod.php:52 +#, php-format +msgid "Registration details for %s" +msgstr "Detalles de registro para %s" + +#: ../../mod/register.php:96 +msgid "" +"Registration successful. Please check your email for further instructions." +msgstr "Te has registrado con éxito. Por favor, consulta tu correo para más información." + +#: ../../mod/register.php:100 +msgid "Failed to send email message. Here is the message that failed." +msgstr "Error al enviar el mensaje de correo. Este es el mensaje no enviado." + +#: ../../mod/register.php:105 +msgid "Your registration can not be processed." +msgstr "Tu registro no se puede procesar." + +#: ../../mod/register.php:142 +#, php-format +msgid "Registration request at %s" +msgstr "Solicitud de registro en %s" + +#: ../../mod/register.php:151 +msgid "Your registration is pending approval by the site owner." +msgstr "Tu registro está pendiente de aprobación por el propietario del sitio." + +#: ../../mod/register.php:189 +msgid "" +"This site has exceeded the number of allowed daily account registrations. " +"Please try again tomorrow." +msgstr "Este sitio ha excedido el número de registros diarios permitidos. Inténtalo de nuevo mañana por favor." + +#: ../../mod/register.php:217 +msgid "" +"You may (optionally) fill in this form via OpenID by supplying your OpenID " +"and clicking 'Register'." +msgstr "Puedes (opcionalmente) rellenar este formulario a través de OpenID escribiendo tu OpenID y pulsando en \"Registrar\"." + +#: ../../mod/register.php:218 +msgid "" +"If you are not familiar with OpenID, please leave that field blank and fill " +"in the rest of the items." +msgstr "Si no estás familiarizado con OpenID, por favor deja ese campo en blanco y rellena el resto de los elementos." + +#: ../../mod/register.php:219 +msgid "Your OpenID (optional): " +msgstr "Tu OpenID (opcional):" + +#: ../../mod/register.php:233 +msgid "Include your profile in member directory?" +msgstr "¿Incluir tu perfil en el directorio de miembros?" + +#: ../../mod/register.php:255 +msgid "Membership on this site is by invitation only." +msgstr "Sitio solo accesible mediante invitación." + +#: ../../mod/register.php:256 +msgid "Your invitation ID: " +msgstr "ID de tu invitación: " + +#: ../../mod/register.php:259 ../../mod/admin.php:444 +msgid "Registration" +msgstr "Registro" + +#: ../../mod/register.php:267 +msgid "Your Full Name (e.g. Joe Smith): " +msgstr "Tu nombre completo (por ejemplo, Manuel Pérez): " + +#: ../../mod/register.php:268 +msgid "Your Email Address: " +msgstr "Tu dirección de correo: " + +#: ../../mod/register.php:269 +msgid "" +"Choose a profile nickname. This must begin with a text character. Your " +"profile address on this site will then be " +"'nickname@$sitename'." +msgstr "Elije un apodo. Debe comenzar con una letra. Tu dirección de perfil en este sitio va a ser \"apodo@$nombredelsitio\"." + +#: ../../mod/register.php:270 +msgid "Choose a nickname: " +msgstr "Escoge un apodo: " + +#: ../../mod/register.php:273 ../../include/nav.php:81 ../../boot.php:887 +msgid "Register" +msgstr "Registrarse" + +#: ../../mod/dirfind.php:26 +msgid "People Search" +msgstr "Buscar personas" + +#: ../../mod/like.php:145 ../../mod/like.php:298 ../../mod/tagger.php:62 +#: ../../addon/facebook/facebook.php:1598 +#: ../../addon/communityhome/communityhome.php:158 +#: ../../addon/communityhome/communityhome.php:167 +#: ../../view/theme/diabook/theme.php:565 +#: ../../view/theme/diabook/theme.php:574 ../../include/diaspora.php:1824 +#: ../../include/conversation.php:120 ../../include/conversation.php:129 +#: ../../include/conversation.php:248 ../../include/conversation.php:257 +msgid "status" +msgstr "estado" + +#: ../../mod/like.php:162 ../../addon/facebook/facebook.php:1602 +#: ../../addon/communityhome/communityhome.php:172 +#: ../../view/theme/diabook/theme.php:579 ../../include/diaspora.php:1840 +#: ../../include/conversation.php:136 +#, php-format +msgid "%1$s likes %2$s's %3$s" +msgstr "A %1$s le gusta %3$s de %2$s" + +#: ../../mod/like.php:164 ../../include/conversation.php:139 +#, php-format +msgid "%1$s doesn't like %2$s's %3$s" +msgstr "A %1$s no le gusta %3$s de %2$s" + +#: ../../mod/notice.php:15 ../../mod/viewsrc.php:15 ../../mod/admin.php:159 +#: ../../mod/admin.php:734 ../../mod/admin.php:933 ../../mod/display.php:29 +#: ../../mod/display.php:145 ../../include/items.php:3774 +msgid "Item not found." +msgstr "Elemento no encontrado." + +#: ../../mod/viewsrc.php:7 +msgid "Access denied." +msgstr "Acceso denegado." + +#: ../../mod/fbrowser.php:25 ../../view/theme/diabook/theme.php:130 +#: ../../include/nav.php:51 ../../boot.php:1679 +msgid "Photos" +msgstr "Fotografías" + +#: ../../mod/fbrowser.php:96 +msgid "Files" +msgstr "Archivos" + +#: ../../mod/regmod.php:61 +msgid "Account approved." +msgstr "Cuenta aprobada." + +#: ../../mod/regmod.php:98 +#, php-format +msgid "Registration revoked for %s" +msgstr "Registro anulado para %s" + +#: ../../mod/regmod.php:110 +msgid "Please login." +msgstr "Por favor accede." + +#: ../../mod/item.php:91 +msgid "Unable to locate original post." +msgstr "No se puede encontrar la publicación original." + +#: ../../mod/item.php:275 +msgid "Empty post discarded." +msgstr "Publicación vacía descartada." + +#: ../../mod/item.php:407 ../../mod/wall_upload.php:133 +#: ../../mod/wall_upload.php:142 ../../mod/wall_upload.php:149 +#: ../../include/message.php:144 +msgid "Wall Photos" +msgstr "Foto del Muro" + +#: ../../mod/item.php:820 +msgid "System error. Post not saved." +msgstr "Error del sistema. Mensaje no guardado." + +#: ../../mod/item.php:845 +#, php-format +msgid "" +"This message was sent to you by %s, a member of the Friendica social " +"network." +msgstr "Este mensaje te lo ha enviado %s, miembro de la red social Friendica." + +#: ../../mod/item.php:847 +#, php-format +msgid "You may visit them online at %s" +msgstr "Los puedes visitar en línea en %s" + +#: ../../mod/item.php:848 +msgid "" +"Please contact the sender by replying to this post if you do not wish to " +"receive these messages." +msgstr "Por favor contacta con el remitente respondiendo a este mensaje si no deseas recibir estos mensajes." + +#: ../../mod/item.php:850 +#, php-format +msgid "%s posted an update." +msgstr "%s ha publicado una actualización." + +#: ../../mod/mood.php:62 ../../include/conversation.php:226 +#, php-format +msgid "%1$s is currently %2$s" +msgstr "%1$s está actualmente %2$s" + +#: ../../mod/mood.php:133 +msgid "Mood" +msgstr "Ánimo" + +#: ../../mod/mood.php:134 +msgid "Set your current mood and tell your friends" +msgstr "Coloca tu ánimo actual y cuéntaselo a tus amigos" + +#: ../../mod/profile_photo.php:44 +msgid "Image uploaded but image cropping failed." +msgstr "Imagen recibida, pero ha fallado al recortarla." + +#: ../../mod/profile_photo.php:77 ../../mod/profile_photo.php:84 +#: ../../mod/profile_photo.php:91 ../../mod/profile_photo.php:308 +#, php-format +msgid "Image size reduction [%s] failed." +msgstr "Ha fallado la reducción de las dimensiones de la imagen [%s]." + +#: ../../mod/profile_photo.php:118 +msgid "" +"Shift-reload the page or clear browser cache if the new photo does not " +"display immediately." +msgstr "Recarga la página o limpia la caché del navegador si la foto nueva no aparece inmediatamente." + +#: ../../mod/profile_photo.php:128 +msgid "Unable to process image" +msgstr "Imposible procesar la imagen" + +#: ../../mod/profile_photo.php:144 ../../mod/wall_upload.php:88 +#, php-format +msgid "Image exceeds size limit of %d" +msgstr "El tamaño de la imagen supera el límite de %d" + +#: ../../mod/profile_photo.php:242 +msgid "Upload File:" +msgstr "Subir archivo:" + +#: ../../mod/profile_photo.php:243 +msgid "Select a profile:" +msgstr "Elige un perfil:" + +#: ../../mod/profile_photo.php:245 +#: ../../addon/dav/friendica/layout.fnk.php:152 +msgid "Upload" +msgstr "Subir" + +#: ../../mod/profile_photo.php:248 +msgid "skip this step" +msgstr "saltar este paso" + +#: ../../mod/profile_photo.php:248 +msgid "select a photo from your photo albums" +msgstr "elige una foto de tus álbumes" + +#: ../../mod/profile_photo.php:262 +msgid "Crop Image" +msgstr "Recortar imagen" + +#: ../../mod/profile_photo.php:263 +msgid "Please adjust the image cropping for optimum viewing." +msgstr "Por favor, ajusta el recorte de la imagen para optimizarla." + +#: ../../mod/profile_photo.php:265 +msgid "Done Editing" +msgstr "Editado" + +#: ../../mod/profile_photo.php:299 +msgid "Image uploaded successfully." +msgstr "Imagen subida con éxito." + +#: ../../mod/hcard.php:10 +msgid "No profile" +msgstr "Nigún perfil" + +#: ../../mod/removeme.php:45 ../../mod/removeme.php:48 +msgid "Remove My Account" +msgstr "Eliminar mi cuenta" + +#: ../../mod/removeme.php:46 +msgid "" +"This will completely remove your account. Once this has been done it is not " +"recoverable." +msgstr "Esto eliminará por completo tu cuenta. Una vez hecho no se puede deshacer." + +#: ../../mod/removeme.php:47 +msgid "Please enter your password for verification:" +msgstr "Por favor, introduce tu contraseña para la verificación:" + +#: ../../mod/message.php:9 ../../include/nav.php:131 +msgid "New Message" +msgstr "Nuevo mensaje" + +#: ../../mod/message.php:63 +msgid "Unable to locate contact information." +msgstr "No se puede encontrar información del contacto." + +#: ../../mod/message.php:191 +msgid "Message deleted." +msgstr "Mensaje eliminado." + +#: ../../mod/message.php:221 +msgid "Conversation removed." +msgstr "Conversación eliminada." + +#: ../../mod/message.php:327 +msgid "No messages." +msgstr "No hay mensajes." + +#: ../../mod/message.php:334 +#, php-format +msgid "Unknown sender - %s" +msgstr "Remitente desconocido - %s" + +#: ../../mod/message.php:337 +#, php-format +msgid "You and %s" +msgstr "Tú y %s" + +#: ../../mod/message.php:340 +#, php-format +msgid "%s and You" +msgstr "%s y Tú" + +#: ../../mod/message.php:350 ../../mod/message.php:462 +msgid "Delete conversation" +msgstr "Eliminar conversación" + +#: ../../mod/message.php:353 +msgid "D, d M Y - g:i A" +msgstr "D, d M Y - g:i A" + +#: ../../mod/message.php:356 +#, php-format +msgid "%d message" +msgid_plural "%d messages" +msgstr[0] "%d mensaje" +msgstr[1] "%d mensajes" + +#: ../../mod/message.php:391 +msgid "Message not available." +msgstr "Mensaje no disponibile." + +#: ../../mod/message.php:444 +msgid "Delete message" +msgstr "Borrar mensaje" + +#: ../../mod/message.php:464 +msgid "" +"No secure communications available. You may be able to " +"respond from the sender's profile page." +msgstr "No hay comunicaciones seguras disponibles. Podrías responder desde la página de perfil del remitente. " + +#: ../../mod/message.php:468 +msgid "Send Reply" +msgstr "Enviar respuesta" + +#: ../../mod/allfriends.php:34 +#, php-format +msgid "Friends of %s" +msgstr "Amigos de %s" + +#: ../../mod/allfriends.php:40 +msgid "No friends to display." +msgstr "No hay amigos para mostrar." + +#: ../../mod/admin.php:55 +msgid "Theme settings updated." +msgstr "Configuración de la apariencia actualizada." + +#: ../../mod/admin.php:96 ../../mod/admin.php:442 +msgid "Site" +msgstr "Sitio" + +#: ../../mod/admin.php:97 ../../mod/admin.php:688 ../../mod/admin.php:701 +msgid "Users" +msgstr "Usuarios" + +#: ../../mod/admin.php:98 ../../mod/admin.php:783 ../../mod/admin.php:825 +msgid "Plugins" +msgstr "Módulos" + +#: ../../mod/admin.php:99 ../../mod/admin.php:988 ../../mod/admin.php:1024 +msgid "Themes" +msgstr "Temas" + +#: ../../mod/admin.php:100 +msgid "DB updates" +msgstr "Actualizaciones de la Base de Datos" + +#: ../../mod/admin.php:115 ../../mod/admin.php:122 ../../mod/admin.php:1111 +msgid "Logs" +msgstr "Registros" + +#: ../../mod/admin.php:120 ../../include/nav.php:146 +msgid "Admin" +msgstr "Admin" + +#: ../../mod/admin.php:121 +msgid "Plugin Features" +msgstr "Características del módulo" + +#: ../../mod/admin.php:123 +msgid "User registrations waiting for confirmation" +msgstr "Registro de usuarios esperando la confirmación" + +#: ../../mod/admin.php:183 ../../mod/admin.php:669 +msgid "Normal Account" +msgstr "Cuenta normal" + +#: ../../mod/admin.php:184 ../../mod/admin.php:670 +msgid "Soapbox Account" +msgstr "Cuenta tribuna" + +#: ../../mod/admin.php:185 ../../mod/admin.php:671 +msgid "Community/Celebrity Account" +msgstr "Cuenta de Comunidad/Celebridad" + +#: ../../mod/admin.php:186 ../../mod/admin.php:672 +msgid "Automatic Friend Account" +msgstr "Cuenta de amistad automática" + +#: ../../mod/admin.php:187 +msgid "Blog Account" +msgstr "Cuenta de blog" + +#: ../../mod/admin.php:188 +msgid "Private Forum" +msgstr "Foro privado" + +#: ../../mod/admin.php:207 +msgid "Message queues" +msgstr "Cola de mensajes" + +#: ../../mod/admin.php:212 ../../mod/admin.php:441 ../../mod/admin.php:687 +#: ../../mod/admin.php:782 ../../mod/admin.php:824 ../../mod/admin.php:987 +#: ../../mod/admin.php:1023 ../../mod/admin.php:1110 +msgid "Administration" +msgstr "Administración" + +#: ../../mod/admin.php:213 +msgid "Summary" +msgstr "Resumen" + +#: ../../mod/admin.php:215 +msgid "Registered users" +msgstr "Usuarios registrados" + +#: ../../mod/admin.php:217 +msgid "Pending registrations" +msgstr "Pendientes de registro" + +#: ../../mod/admin.php:218 +msgid "Version" +msgstr "Versión" + +#: ../../mod/admin.php:220 +msgid "Active plugins" +msgstr "Módulos activos" + +#: ../../mod/admin.php:373 +msgid "Site settings updated." +msgstr "Configuración de actualización." + +#: ../../mod/admin.php:428 +msgid "Closed" +msgstr "Cerrado" + +#: ../../mod/admin.php:429 +msgid "Requires approval" +msgstr "Requiere aprobación" + +#: ../../mod/admin.php:430 +msgid "Open" +msgstr "Abierto" + +#: ../../mod/admin.php:434 +msgid "No SSL policy, links will track page SSL state" +msgstr "No existe una política de SSL, los vínculos harán un seguimiento del estado de SSL en la página" + +#: ../../mod/admin.php:435 +msgid "Force all links to use SSL" +msgstr "Forzar todos los enlaces a utilizar SSL" + +#: ../../mod/admin.php:436 +msgid "Self-signed certificate, use SSL for local links only (discouraged)" +msgstr "Certificación personal, usa SSL solo para enlaces locales (no recomendado)" + +#: ../../mod/admin.php:445 +msgid "File upload" +msgstr "Subida de archivo" + +#: ../../mod/admin.php:446 +msgid "Policies" +msgstr "Políticas" + +#: ../../mod/admin.php:447 +msgid "Advanced" +msgstr "Avanzado" + +#: ../../mod/admin.php:451 ../../addon/statusnet/statusnet.php:567 +msgid "Site name" +msgstr "Nombre del sitio" + +#: ../../mod/admin.php:452 +msgid "Banner/Logo" +msgstr "Imagen/Logotipo" + +#: ../../mod/admin.php:453 +msgid "System language" +msgstr "Idioma" + +#: ../../mod/admin.php:454 +msgid "System theme" +msgstr "Tema" + +#: ../../mod/admin.php:454 +msgid "" +"Default system theme - may be over-ridden by user profiles -
    change theme settings" +msgstr "Tema por defecto del sistema, los usuarios podrán elegir el suyo propio en su configuración cambiar configuración del tema" + +#: ../../mod/admin.php:455 +msgid "Mobile system theme" +msgstr "Tema de sistema móvil" + +#: ../../mod/admin.php:455 +msgid "Theme for mobile devices" +msgstr "Tema para dispositivos móviles" + +#: ../../mod/admin.php:456 +msgid "SSL link policy" +msgstr "Política de enlaces SSL" + +#: ../../mod/admin.php:456 +msgid "Determines whether generated links should be forced to use SSL" +msgstr "Determina si los enlaces generados deben ser forzados a utilizar SSL" + +#: ../../mod/admin.php:457 +msgid "Maximum image size" +msgstr "Tamaño máximo de la imagen" + +#: ../../mod/admin.php:457 +msgid "" +"Maximum size in bytes of uploaded images. Default is 0, which means no " +"limits." +msgstr "Tamaño máximo en bytes de las imágenes a subir. Por defecto es 0, que quiere decir que no hay límite." + +#: ../../mod/admin.php:458 +msgid "Maximum image length" +msgstr "Largo máximo de imagen" + +#: ../../mod/admin.php:458 +msgid "" +"Maximum length in pixels of the longest side of uploaded images. Default is " +"-1, which means no limits." +msgstr "Longitud máxima en píxeles del lado más largo de las imágenes subidas. Por defecto es -1, que significa que no hay límites." + +#: ../../mod/admin.php:459 +msgid "JPEG image quality" +msgstr "Calidad de imagen JPEG" + +#: ../../mod/admin.php:459 +msgid "" +"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " +"100, which is full quality." +msgstr "Los archivos JPEG subidos se guardarán con este ajuste de calidad [0-100]. Por defecto es 100, que es calidad máxima." + +#: ../../mod/admin.php:461 +msgid "Register policy" +msgstr "Política de registros" + +#: ../../mod/admin.php:462 +msgid "Register text" +msgstr "Términos" + +#: ../../mod/admin.php:462 +msgid "Will be displayed prominently on the registration page." +msgstr "Se mostrará en un lugar destacado en la página de registro." + +#: ../../mod/admin.php:463 +msgid "Accounts abandoned after x days" +msgstr "Cuentas abandonadas después de x días" + +#: ../../mod/admin.php:463 +msgid "" +"Will not waste system resources polling external sites for abandonded " +"accounts. Enter 0 for no time limit." +msgstr "No gastará recursos del sistema creando sondeos a sitios externos para cuentas abandonadas. Introduce 0 para ningún límite temporal." + +#: ../../mod/admin.php:464 +msgid "Allowed friend domains" +msgstr "Dominios amigos permitidos" + +#: ../../mod/admin.php:464 +msgid "" +"Comma separated list of domains which are allowed to establish friendships " +"with this site. Wildcards are accepted. Empty to allow any domains" +msgstr "Lista separada por comas de los dominios que están autorizados para establecer conexiones con este sitio. Se aceptan comodines. Dejar en blanco para permitir cualquier dominio" + +#: ../../mod/admin.php:465 +msgid "Allowed email domains" +msgstr "Dominios de correo permitidos" + +#: ../../mod/admin.php:465 +msgid "" +"Comma separated list of domains which are allowed in email addresses for " +"registrations to this site. Wildcards are accepted. Empty to allow any " +"domains" +msgstr "Lista separada por comas de los dominios que están autorizados en las direcciones de correo para registrarse en este sitio. Se aceptan comodines. Dejar en blanco para permitir cualquier dominio" + +#: ../../mod/admin.php:466 +msgid "Block public" +msgstr "Bloqueo público" + +#: ../../mod/admin.php:466 +msgid "" +"Check to block public access to all otherwise public personal pages on this " +"site unless you are currently logged in." +msgstr "Marca para bloquear el acceso público a todas las páginas personales, aún siendo públicas, hasta que no hayas iniciado tu sesión." + +#: ../../mod/admin.php:467 +msgid "Force publish" +msgstr "Forzar publicación" + +#: ../../mod/admin.php:467 +msgid "" +"Check to force all profiles on this site to be listed in the site directory." +msgstr "Marca para forzar que todos los perfiles de este sitio sean listados en el directorio del sitio." + +#: ../../mod/admin.php:468 +msgid "Global directory update URL" +msgstr "Dirección de actualización del directorio global" + +#: ../../mod/admin.php:468 +msgid "" +"URL to update the global directory. If this is not set, the global directory" +" is completely unavailable to the application." +msgstr "Dirección para actualizar el directorio global. Si no se establece ningún valor el directorio global será inaccesible para la aplicación." + +#: ../../mod/admin.php:469 +msgid "Allow threaded items" +msgstr "Permitir elementos en hilo" + +#: ../../mod/admin.php:469 +msgid "Allow infinite level threading for items on this site." +msgstr "Permitir infinitos niveles de hilo para los elementos de este sitio." + +#: ../../mod/admin.php:470 +msgid "Private posts by default for new users" +msgstr "Publicaciones privadas por defecto para usuarios nuevos" + +#: ../../mod/admin.php:470 +msgid "" +"Set default post permissions for all new members to the default privacy " +"group rather than public." +msgstr "Ajusta los permisos de publicación por defecto a los miembros nuevos al grupo privado por defecto en vez del público." + +#: ../../mod/admin.php:472 +msgid "Block multiple registrations" +msgstr "Bloquear registros multiples" + +#: ../../mod/admin.php:472 +msgid "Disallow users to register additional accounts for use as pages." +msgstr "Impedir que los usuarios registren cuentas adicionales para su uso como páginas." + +#: ../../mod/admin.php:473 +msgid "OpenID support" +msgstr "Soporte OpenID" + +#: ../../mod/admin.php:473 +msgid "OpenID support for registration and logins." +msgstr "Soporte OpenID para registros y accesos." + +#: ../../mod/admin.php:474 +msgid "Fullname check" +msgstr "Comprobar Nombre completo" + +#: ../../mod/admin.php:474 +msgid "" +"Force users to register with a space between firstname and lastname in Full " +"name, as an antispam measure" +msgstr "Fuerza a los usuarios a registrarse con un espacio entre su nombre y su apellido en el campo Nombre completo como medida anti-spam" + +#: ../../mod/admin.php:475 +msgid "UTF-8 Regular expressions" +msgstr "Expresiones regulares UTF-8" + +#: ../../mod/admin.php:475 +msgid "Use PHP UTF8 regular expressions" +msgstr "Usar expresiones regulares de UTF8 en PHP" + +#: ../../mod/admin.php:476 +msgid "Show Community Page" +msgstr "Ver página de la Comunidad" + +#: ../../mod/admin.php:476 +msgid "" +"Display a Community page showing all recent public postings on this site." +msgstr "Mostrar una página de Comunidad que resuma todas las publicaciones públicas recientes de este sitio." + +#: ../../mod/admin.php:477 +msgid "Enable OStatus support" +msgstr "Permitir soporte OStatus" + +#: ../../mod/admin.php:477 +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 "Provee una compatibilidad con OStatus (identi.ca, status.net, etc.) Todas las comunicaciones mediante OStatus son públicas, por lo que se mostrarán avisos sobre la privacidad con frecuencia." + +#: ../../mod/admin.php:478 +msgid "Enable Diaspora support" +msgstr "Habilitar el soporte para Diaspora*" + +#: ../../mod/admin.php:478 +msgid "Provide built-in Diaspora network compatibility." +msgstr "Provee una compatibilidad con la red de Diaspora." + +#: ../../mod/admin.php:479 +msgid "Only allow Friendica contacts" +msgstr "Permitir solo contactos de Friendica" + +#: ../../mod/admin.php:479 +msgid "" +"All contacts must use Friendica protocols. All other built-in communication " +"protocols disabled." +msgstr "Todos los contactos deben usar protocolos de Friendica. El resto de protocolos serán desactivados." + +#: ../../mod/admin.php:480 +msgid "Verify SSL" +msgstr "Verificar SSL" + +#: ../../mod/admin.php:480 +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 "Si quieres puedes activar la comprobación estricta de certificados. Esto significa que serás incapaz de conectar con ningún sitio que use certificados SSL autofirmados." + +#: ../../mod/admin.php:481 +msgid "Proxy user" +msgstr "Usuario proxy" + +#: ../../mod/admin.php:482 +msgid "Proxy URL" +msgstr "Dirección proxy" + +#: ../../mod/admin.php:483 +msgid "Network timeout" +msgstr "Tiempo de espera de red" + +#: ../../mod/admin.php:483 +msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." +msgstr "Valor en segundos. Usar 0 para dejarlo sin límites (no se recomienda)." + +#: ../../mod/admin.php:484 +msgid "Delivery interval" +msgstr "Intervalo de actualización" + +#: ../../mod/admin.php:484 +msgid "" +"Delay background delivery processes by this many seconds to reduce system " +"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " +"for large dedicated servers." +msgstr "Retrasar la entrega de procesos en segundo plano por esta cantidad de segundos para reducir la carga del sistema. Recomendamos: 4-5 para los servidores compartidos, 2-3 para servidores privados virtuales, 0-1 para los grandes servidores dedicados." + +#: ../../mod/admin.php:485 +msgid "Poll interval" +msgstr "Intervalo de sondeo" + +#: ../../mod/admin.php:485 +msgid "" +"Delay background polling processes by this many seconds to reduce system " +"load. If 0, use delivery interval." +msgstr "Retrasar los procesos en segundo plano de sondeo en esta cantidad de segundos para reducir la carga del sistema. Si es 0, se usará el intervalo de entrega." + +#: ../../mod/admin.php:486 +msgid "Maximum Load Average" +msgstr "Promedio de carga máxima" + +#: ../../mod/admin.php:486 +msgid "" +"Maximum system load before delivery and poll processes are deferred - " +"default 50." +msgstr "Carga máxima del sistema antes de que la entrega y los procesos de sondeo sean retrasados - por defecto 50." + +#: ../../mod/admin.php:503 +msgid "Update has been marked successful" +msgstr "La actualización se ha completado con éxito" + +#: ../../mod/admin.php:513 +#, php-format +msgid "Executing %s failed. Check system logs." +msgstr "%s ha fallado, comprueba los registros." + +#: ../../mod/admin.php:516 +#, php-format +msgid "Update %s was successfully applied." +msgstr "Actualización %s aplicada con éxito." + +#: ../../mod/admin.php:520 +#, php-format +msgid "Update %s did not return a status. Unknown if it succeeded." +msgstr "La actualización %s no ha informado, se desconoce el estado." + +#: ../../mod/admin.php:523 +#, php-format +msgid "Update function %s could not be found." +msgstr "No se puede encontrar la función de actualización %s." + +#: ../../mod/admin.php:538 +msgid "No failed updates." +msgstr "Actualizaciones sin fallos." + +#: ../../mod/admin.php:542 +msgid "Failed Updates" +msgstr "Actualizaciones fallidas" + +#: ../../mod/admin.php:543 +msgid "" +"This does not include updates prior to 1139, which did not return a status." +msgstr "No se incluyen las anteriores a la 1139, que no indicaban su estado." + +#: ../../mod/admin.php:544 +msgid "Mark success (if update was manually applied)" +msgstr "Marcar como correcta (si actualizaste manualmente)" + +#: ../../mod/admin.php:545 +msgid "Attempt to execute this update step automatically" +msgstr "Intentando ejecutar este paso automáticamente" + +#: ../../mod/admin.php:570 +#, php-format +msgid "%s user blocked/unblocked" +msgid_plural "%s users blocked/unblocked" +msgstr[0] "%s usuario bloqueado/desbloqueado" +msgstr[1] "%s usuarios bloqueados/desbloqueados" + +#: ../../mod/admin.php:577 +#, php-format +msgid "%s user deleted" +msgid_plural "%s users deleted" +msgstr[0] "%s usuario eliminado" +msgstr[1] "%s usuarios eliminados" + +#: ../../mod/admin.php:616 +#, php-format +msgid "User '%s' deleted" +msgstr "Usuario '%s' eliminado" + +#: ../../mod/admin.php:624 +#, php-format +msgid "User '%s' unblocked" +msgstr "Usuario '%s' desbloqueado" + +#: ../../mod/admin.php:624 +#, php-format +msgid "User '%s' blocked" +msgstr "Usuario '%s' bloqueado'" + +#: ../../mod/admin.php:690 +msgid "select all" +msgstr "seleccionar todo" + +#: ../../mod/admin.php:691 +msgid "User registrations waiting for confirm" +msgstr "Registro de usuarios esperando confirmación" + +#: ../../mod/admin.php:692 +msgid "Request date" +msgstr "Solicitud de fecha" + +#: ../../mod/admin.php:692 ../../mod/admin.php:702 +#: ../../include/contact_selectors.php:79 +msgid "Email" +msgstr "Correo electrónico" + +#: ../../mod/admin.php:693 +msgid "No registrations." +msgstr "Sin registros." + +#: ../../mod/admin.php:695 +msgid "Deny" +msgstr "Denegado" + +#: ../../mod/admin.php:699 +msgid "Site admin" +msgstr "" + +#: ../../mod/admin.php:702 +msgid "Register date" +msgstr "Fecha de registro" + +#: ../../mod/admin.php:702 +msgid "Last login" +msgstr "Último acceso" + +#: ../../mod/admin.php:702 +msgid "Last item" +msgstr "Último elemento" + +#: ../../mod/admin.php:702 +msgid "Account" +msgstr "Cuenta" + +#: ../../mod/admin.php:704 +msgid "" +"Selected users will be deleted!\\n\\nEverything these users had posted on " +"this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "¡Los usuarios seleccionados serán eliminados!\\n\\n¡Todo lo que hayan publicado en este sitio se borrará para siempre!\\n\\n¿Estás seguro?" + +#: ../../mod/admin.php:705 +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 "¡El usuario {0} será eliminado!\\n\\n¡Todo lo que haya publicado en este sitio se borrará para siempre!\\n\\n¿Estás seguro?" + +#: ../../mod/admin.php:746 +#, php-format +msgid "Plugin %s disabled." +msgstr "Módulo %s deshabilitado." + +#: ../../mod/admin.php:750 +#, php-format +msgid "Plugin %s enabled." +msgstr "Módulo %s habilitado." + +#: ../../mod/admin.php:760 ../../mod/admin.php:958 +msgid "Disable" +msgstr "Desactivado" + +#: ../../mod/admin.php:762 ../../mod/admin.php:960 +msgid "Enable" +msgstr "Activado" + +#: ../../mod/admin.php:784 ../../mod/admin.php:989 +msgid "Toggle" +msgstr "Activar" + +#: ../../mod/admin.php:792 ../../mod/admin.php:999 +msgid "Author: " +msgstr "Autor:" + +#: ../../mod/admin.php:793 ../../mod/admin.php:1000 +msgid "Maintainer: " +msgstr "Mantenedor: " + +#: ../../mod/admin.php:922 +msgid "No themes found." +msgstr "No se encontraron temas." + +#: ../../mod/admin.php:981 +msgid "Screenshot" +msgstr "Captura de pantalla" + +#: ../../mod/admin.php:1029 +msgid "[Experimental]" +msgstr "[Experimental]" + +#: ../../mod/admin.php:1030 +msgid "[Unsupported]" +msgstr "[Sin soporte]" + +#: ../../mod/admin.php:1057 +msgid "Log settings updated." +msgstr "Configuración de registro actualizada." + +#: ../../mod/admin.php:1113 +msgid "Clear" +msgstr "Limpiar" + +#: ../../mod/admin.php:1119 +msgid "Debugging" +msgstr "Depuración" + +#: ../../mod/admin.php:1120 +msgid "Log file" +msgstr "Archivo de registro" + +#: ../../mod/admin.php:1120 +msgid "" +"Must be writable by web server. Relative to your Friendica top-level " +"directory." +msgstr "Debes tener permiso de escritura en el servidor. Relacionado con tu directorio de inicio de Friendica." + +#: ../../mod/admin.php:1121 +msgid "Log level" +msgstr "Nivel de registro" + +#: ../../mod/admin.php:1171 +msgid "Close" +msgstr "Cerrado" + +#: ../../mod/admin.php:1177 +msgid "FTP Host" +msgstr "Hospedaje FTP" + +#: ../../mod/admin.php:1178 +msgid "FTP Path" +msgstr "Ruta FTP" + +#: ../../mod/admin.php:1179 +msgid "FTP User" +msgstr "Usuario FTP" + +#: ../../mod/admin.php:1180 +msgid "FTP Password" +msgstr "Contraseña FTP" + +#: ../../mod/profile.php:22 ../../boot.php:1074 +msgid "Requested profile is not available." +msgstr "El perfil solicitado no está disponible." + +#: ../../mod/profile.php:152 ../../mod/display.php:77 +msgid "Access to this profile has been restricted." +msgstr "El acceso a este perfil ha sido restringido." + +#: ../../mod/profile.php:177 +msgid "Tips for New Members" +msgstr "Consejos para nuevos miembros" + +#: ../../mod/ping.php:235 +msgid "{0} wants to be your friend" +msgstr "{0} quiere ser tu amigo" + +#: ../../mod/ping.php:240 +msgid "{0} sent you a message" +msgstr "{0} te ha enviado un mensaje" + +#: ../../mod/ping.php:245 +msgid "{0} requested registration" +msgstr "{0} solicitudes de registro" + +#: ../../mod/ping.php:251 +#, php-format +msgid "{0} commented %s's post" +msgstr "{0} comentó la publicación de %s" + +#: ../../mod/ping.php:256 +#, php-format +msgid "{0} liked %s's post" +msgstr "A {0} le ha gustado la publicación de %s" + +#: ../../mod/ping.php:261 +#, php-format +msgid "{0} disliked %s's post" +msgstr "A {0} no le ha gustado la publicación de %s" + +#: ../../mod/ping.php:266 +#, php-format +msgid "{0} is now friends with %s" +msgstr "{0} ahora es amigo de %s" + +#: ../../mod/ping.php:271 +msgid "{0} posted" +msgstr "{0} publicado" + +#: ../../mod/ping.php:276 +#, php-format +msgid "{0} tagged %s's post with #%s" +msgstr "{0} etiquetó la publicación de %s como #%s" + +#: ../../mod/ping.php:282 +msgid "{0} mentioned you in a post" +msgstr "{0} te mencionó en una publicación" + +#: ../../mod/nogroup.php:58 +msgid "Contacts who are not members of a group" +msgstr "Contactos sin grupo" + +#: ../../mod/openid.php:24 +msgid "OpenID protocol error. No ID returned." +msgstr "Error de protocolo OpenID. ID no devuelta." + +#: ../../mod/openid.php:53 +msgid "" +"Account not found and OpenID registration is not permitted on this site." +msgstr "Cuenta no encontrada y el registro OpenID no está permitido en ese sitio." + +#: ../../mod/openid.php:93 ../../include/auth.php:98 +#: ../../include/auth.php:161 +msgid "Login failed." +msgstr "Accesso fallido." + +#: ../../mod/follow.php:27 +msgid "Contact added" +msgstr "Contacto añadido" + +#: ../../mod/common.php:42 +msgid "Common Friends" +msgstr "Amigos comunes" + +#: ../../mod/common.php:78 +msgid "No contacts in common." +msgstr "Sin contactos en común." + +#: ../../mod/share.php:28 +msgid "link" +msgstr "enlace" + +#: ../../mod/display.php:138 msgid "Item has been removed." msgstr "El elemento ha sido eliminado." -#: ../../mod/editpost.php:17 ../../mod/editpost.php:27 -msgid "Item not found" -msgstr "Elemento no encontrado" +#: ../../mod/apps.php:4 +msgid "Applications" +msgstr "Aplicaciones" -#: ../../mod/editpost.php:32 -msgid "Edit post" -msgstr "Editar publicación" +#: ../../mod/apps.php:7 +msgid "No installed applications." +msgstr "Sin aplicaciones" -#: ../../mod/editpost.php:75 ../../include/conversation.php:800 -msgid "Post to Email" -msgstr "Publicar mediante correo electrónico" +#: ../../mod/search.php:85 ../../include/text.php:678 +#: ../../include/text.php:679 ../../include/nav.php:91 +msgid "Search" +msgstr "Buscar" -#: ../../mod/editpost.php:91 ../../mod/message.php:135 -#: ../../mod/message.php:268 ../../include/conversation.php:815 -msgid "Upload photo" -msgstr "Subir foto" +#: ../../mod/profiles.php:21 ../../mod/profiles.php:423 +#: ../../mod/profiles.php:537 ../../mod/dfrn_confirm.php:62 +msgid "Profile not found." +msgstr "Perfil no encontrado." -#: ../../mod/editpost.php:92 ../../include/conversation.php:816 -msgid "Attach file" -msgstr "Adjuntar archivo" +#: ../../mod/profiles.php:31 +msgid "Profile Name is required." +msgstr "Se necesita un nombre de perfil." -#: ../../mod/editpost.php:93 ../../mod/message.php:136 -#: ../../mod/message.php:269 ../../include/conversation.php:817 -msgid "Insert web link" -msgstr "Insertar enlace" +#: ../../mod/profiles.php:160 +msgid "Marital Status" +msgstr "Estado civil" -#: ../../mod/editpost.php:94 -msgid "Insert YouTube video" -msgstr "Insertar video de YouTube" +#: ../../mod/profiles.php:164 +msgid "Romantic Partner" +msgstr "Pareja sentimental" -#: ../../mod/editpost.php:95 -msgid "Insert Vorbis [.ogg] video" -msgstr "Insertar video Vorbis [.ogg]" +#: ../../mod/profiles.php:168 +msgid "Likes" +msgstr "Me gusta" -#: ../../mod/editpost.php:96 -msgid "Insert Vorbis [.ogg] audio" -msgstr "Insertar audio Vorbis [.ogg]" +#: ../../mod/profiles.php:172 +msgid "Dislikes" +msgstr "No me gusta" -#: ../../mod/editpost.php:97 ../../include/conversation.php:820 -msgid "Set your location" -msgstr "Configura tu localización" +#: ../../mod/profiles.php:176 +msgid "Work/Employment" +msgstr "Trabajo/estudios" -#: ../../mod/editpost.php:98 ../../include/conversation.php:821 -msgid "Clear browser location" -msgstr "Borrar la localización del navegador" +#: ../../mod/profiles.php:179 +msgid "Religion" +msgstr "Religión" -#: ../../mod/editpost.php:100 ../../include/conversation.php:824 -msgid "Permission settings" -msgstr "Configuración de permisos" +#: ../../mod/profiles.php:183 +msgid "Political Views" +msgstr "Preferencias políticas" -#: ../../mod/editpost.php:108 ../../include/conversation.php:832 -msgid "CC: email addresses" -msgstr "CC: dirección de correo electrónico" +#: ../../mod/profiles.php:187 +msgid "Gender" +msgstr "Género" -#: ../../mod/editpost.php:109 ../../include/conversation.php:833 -msgid "Public post" -msgstr "Post público" +#: ../../mod/profiles.php:191 +msgid "Sexual Preference" +msgstr "Orientación sexual" -#: ../../mod/editpost.php:111 ../../include/conversation.php:835 -msgid "Example: bob@example.com, mary@example.com" -msgstr "Ejemplo: juan@ejemplo.com, sofia@ejemplo.com" +#: ../../mod/profiles.php:195 +msgid "Homepage" +msgstr "Página de inicio" + +#: ../../mod/profiles.php:199 +msgid "Interests" +msgstr "Intereses" + +#: ../../mod/profiles.php:203 +msgid "Address" +msgstr "Dirección" + +#: ../../mod/profiles.php:210 ../../addon/dav/common/wdcal_edit.inc.php:183 +msgid "Location" +msgstr "Ubicación" + +#: ../../mod/profiles.php:293 +msgid "Profile updated." +msgstr "Perfil actualizado." + +#: ../../mod/profiles.php:360 +msgid " and " +msgstr " y " + +#: ../../mod/profiles.php:368 +msgid "public profile" +msgstr "perfil público" + +#: ../../mod/profiles.php:371 +#, php-format +msgid "%1$s changed %2$s to “%3$s”" +msgstr "%1$s cambió su %2$s a “%3$s”" + +#: ../../mod/profiles.php:372 +#, php-format +msgid " - Visit %1$s's %2$s" +msgstr " - Visita %1$s's %2$s" + +#: ../../mod/profiles.php:375 +#, php-format +msgid "%1$s has an updated %2$s, changing %3$s." +msgstr "%1$s tiene una actualización %2$s, cambiando %3$s." + +#: ../../mod/profiles.php:442 +msgid "Profile deleted." +msgstr "Perfil eliminado." + +#: ../../mod/profiles.php:460 ../../mod/profiles.php:494 +msgid "Profile-" +msgstr "Perfil-" + +#: ../../mod/profiles.php:479 ../../mod/profiles.php:521 +msgid "New profile created." +msgstr "Nuevo perfil creado." + +#: ../../mod/profiles.php:500 +msgid "Profile unavailable to clone." +msgstr "Imposible duplicar el perfil." + +#: ../../mod/profiles.php:562 +msgid "Hide your contact/friend list from viewers of this profile?" +msgstr "¿Ocultar tu lista de contactos/amigos en este perfil?" + +#: ../../mod/profiles.php:582 +msgid "Edit Profile Details" +msgstr "Editar detalles de tu perfil" + +#: ../../mod/profiles.php:584 +msgid "View this profile" +msgstr "Ver este perfil" + +#: ../../mod/profiles.php:585 +msgid "Create a new profile using these settings" +msgstr "¿Crear un nuevo perfil con esta configuración?" + +#: ../../mod/profiles.php:586 +msgid "Clone this profile" +msgstr "Clonar este perfil" + +#: ../../mod/profiles.php:587 +msgid "Delete this profile" +msgstr "Eliminar este perfil" + +#: ../../mod/profiles.php:588 +msgid "Profile Name:" +msgstr "Nombres del perfil:" + +#: ../../mod/profiles.php:589 +msgid "Your Full Name:" +msgstr "Tu nombre completo:" + +#: ../../mod/profiles.php:590 +msgid "Title/Description:" +msgstr "Título/Descrición:" + +#: ../../mod/profiles.php:591 +msgid "Your Gender:" +msgstr "Género:" + +#: ../../mod/profiles.php:592 +#, php-format +msgid "Birthday (%s):" +msgstr "Cumpleaños (%s):" + +#: ../../mod/profiles.php:593 +msgid "Street Address:" +msgstr "Dirección" + +#: ../../mod/profiles.php:594 +msgid "Locality/City:" +msgstr "Localidad/Ciudad:" + +#: ../../mod/profiles.php:595 +msgid "Postal/Zip Code:" +msgstr "Código postal:" + +#: ../../mod/profiles.php:596 +msgid "Country:" +msgstr "País" + +#: ../../mod/profiles.php:597 +msgid "Region/State:" +msgstr "Región/Estado:" + +#: ../../mod/profiles.php:598 +msgid " Marital Status:" +msgstr " Estado civil:" + +#: ../../mod/profiles.php:599 +msgid "Who: (if applicable)" +msgstr "¿Quién? (si es aplicable)" + +#: ../../mod/profiles.php:600 +msgid "Examples: cathy123, Cathy Williams, cathy@example.com" +msgstr "Ejemplos: cathy123, Cathy Williams, cathy@example.com" + +#: ../../mod/profiles.php:601 +msgid "Since [date]:" +msgstr "Desde [fecha]:" + +#: ../../mod/profiles.php:602 ../../include/profile_advanced.php:46 +msgid "Sexual Preference:" +msgstr "Preferencia sexual:" + +#: ../../mod/profiles.php:603 +msgid "Homepage URL:" +msgstr "Dirección de tu página:" + +#: ../../mod/profiles.php:604 ../../include/profile_advanced.php:50 +msgid "Hometown:" +msgstr "Ciudad de origen:" + +#: ../../mod/profiles.php:605 ../../include/profile_advanced.php:54 +msgid "Political Views:" +msgstr "Ideas políticas:" + +#: ../../mod/profiles.php:606 +msgid "Religious Views:" +msgstr "Creencias religiosas:" + +#: ../../mod/profiles.php:607 +msgid "Public Keywords:" +msgstr "Palabras clave públicas:" + +#: ../../mod/profiles.php:608 +msgid "Private Keywords:" +msgstr "Palabras clave privadas:" + +#: ../../mod/profiles.php:609 ../../include/profile_advanced.php:62 +msgid "Likes:" +msgstr "Me gusta:" + +#: ../../mod/profiles.php:610 ../../include/profile_advanced.php:64 +msgid "Dislikes:" +msgstr "No me gusta:" + +#: ../../mod/profiles.php:611 +msgid "Example: fishing photography software" +msgstr "Ejemplo: pesca fotografía software" + +#: ../../mod/profiles.php:612 +msgid "(Used for suggesting potential friends, can be seen by others)" +msgstr "(Utilizadas para sugerir amigos potenciales, otros pueden verlo)" + +#: ../../mod/profiles.php:613 +msgid "(Used for searching profiles, never shown to others)" +msgstr "(Utilizadas para buscar perfiles, nunca se muestra a otros)" + +#: ../../mod/profiles.php:614 +msgid "Tell us about yourself..." +msgstr "Háblanos sobre ti..." + +#: ../../mod/profiles.php:615 +msgid "Hobbies/Interests" +msgstr "Aficiones/Intereses" + +#: ../../mod/profiles.php:616 +msgid "Contact information and Social Networks" +msgstr "Informacioń de contacto y Redes sociales" + +#: ../../mod/profiles.php:617 +msgid "Musical interests" +msgstr "Gustos musicales" + +#: ../../mod/profiles.php:618 +msgid "Books, literature" +msgstr "Libros, literatura" + +#: ../../mod/profiles.php:619 +msgid "Television" +msgstr "Televisión" + +#: ../../mod/profiles.php:620 +msgid "Film/dance/culture/entertainment" +msgstr "Películas/baile/cultura/entretenimiento" + +#: ../../mod/profiles.php:621 +msgid "Love/romance" +msgstr "Amor/Romance" + +#: ../../mod/profiles.php:622 +msgid "Work/employment" +msgstr "Trabajo/ocupación" + +#: ../../mod/profiles.php:623 +msgid "School/education" +msgstr "Escuela/estudios" + +#: ../../mod/profiles.php:628 +msgid "" +"This is your public profile.
    It may " +"be visible to anybody using the internet." +msgstr "Éste es tu perfil público.
    Puede ser visto por cualquier usuario de internet." + +#: ../../mod/profiles.php:638 ../../mod/directory.php:111 +msgid "Age: " +msgstr "Edad: " + +#: ../../mod/profiles.php:677 +msgid "Edit/Manage Profiles" +msgstr "Editar/Administrar perfiles" + +#: ../../mod/profiles.php:678 ../../boot.php:1192 +msgid "Change profile photo" +msgstr "Cambiar foto del perfil" + +#: ../../mod/profiles.php:679 ../../boot.php:1193 +msgid "Create New Profile" +msgstr "Crear nuevo perfil" + +#: ../../mod/profiles.php:690 ../../boot.php:1203 +msgid "Profile Image" +msgstr "Imagen del Perfil" + +#: ../../mod/profiles.php:692 ../../boot.php:1206 +msgid "visible to everybody" +msgstr "Visible para todos" + +#: ../../mod/profiles.php:693 ../../boot.php:1207 +msgid "Edit visibility" +msgstr "Editar visibilidad" + +#: ../../mod/filer.php:29 ../../include/conversation.php:1209 +#: ../../include/conversation.php:1226 +msgid "Save to Folder:" +msgstr "Guardar en directorio:" + +#: ../../mod/filer.php:29 +msgid "- select -" +msgstr "- seleccionar -" + +#: ../../mod/tagger.php:95 ../../include/conversation.php:265 +#, php-format +msgid "%1$s tagged %2$s's %3$s with %4$s" +msgstr "%1$s ha etiquetado el %3$s de %2$s con %4$s" + +#: ../../mod/delegate.php:95 +msgid "No potential page delegates located." +msgstr "No se han localizado delegados potenciales de la página." + +#: ../../mod/delegate.php:121 +msgid "Delegate Page Management" +msgstr "Delegar la administración de la página" + +#: ../../mod/delegate.php:123 +msgid "" +"Delegates are able to manage all aspects of this account/page except for " +"basic account settings. Please do not delegate your personal account to " +"anybody that you do not trust completely." +msgstr "Los delegados tienen la capacidad de gestionar todos los aspectos de esta cuenta/página, excepto los ajustes básicos de la cuenta. Por favor, no delegues tu cuenta personal a nadie en quien no confíes completamente." + +#: ../../mod/delegate.php:124 +msgid "Existing Page Managers" +msgstr "Administradores actuales de la página" + +#: ../../mod/delegate.php:126 +msgid "Existing Page Delegates" +msgstr "Delegados actuales de la página" + +#: ../../mod/delegate.php:128 +msgid "Potential Delegates" +msgstr "Delegados potenciales" + +#: ../../mod/delegate.php:131 +msgid "Add" +msgstr "Añadir" + +#: ../../mod/delegate.php:132 +msgid "No entries." +msgstr "Sin entradas." + +#: ../../mod/babel.php:17 +msgid "Source (bbcode) text:" +msgstr "Texto fuente (bbcode):" + +#: ../../mod/babel.php:23 +msgid "Source (Diaspora) text to convert to BBcode:" +msgstr "Fuente (Diaspora) para pasar a BBcode:" + +#: ../../mod/babel.php:31 +msgid "Source input: " +msgstr "Entrada: " + +#: ../../mod/babel.php:35 +msgid "bb2html: " +msgstr "bb2html: " + +#: ../../mod/babel.php:39 +msgid "bb2html2bb: " +msgstr "bb2html2bb: " + +#: ../../mod/babel.php:43 +msgid "bb2md: " +msgstr "bb2md: " + +#: ../../mod/babel.php:47 +msgid "bb2md2html: " +msgstr "bb2md2html: " + +#: ../../mod/babel.php:51 +msgid "bb2dia2bb: " +msgstr "bb2dia2bb: " + +#: ../../mod/babel.php:55 +msgid "bb2md2html2bb: " +msgstr "bb2md2html2bb: " + +#: ../../mod/babel.php:65 +msgid "Source input (Diaspora format): " +msgstr "Fuente (formato Diaspora): " + +#: ../../mod/babel.php:70 +msgid "diaspora2bb: " +msgstr "diaspora2bb: " + +#: ../../mod/suggest.php:38 ../../view/theme/diabook/theme.php:626 +#: ../../include/contact_widgets.php:34 +msgid "Friend Suggestions" +msgstr "Sugerencias de amigos" + +#: ../../mod/suggest.php:44 +msgid "" +"No suggestions available. If this is a new site, please try again in 24 " +"hours." +msgstr "No hay sugerencias disponibles. Si el sitio web es nuevo inténtalo de nuevo dentro de 24 horas." + +#: ../../mod/suggest.php:61 +msgid "Ignore/Hide" +msgstr "Ignorar/Ocultar" + +#: ../../mod/directory.php:49 ../../view/theme/diabook/theme.php:624 +msgid "Global Directory" +msgstr "Directorio global" + +#: ../../mod/directory.php:57 +msgid "Find on this site" +msgstr "Buscar en este sitio" + +#: ../../mod/directory.php:60 +msgid "Site Directory" +msgstr "Directorio del sitio" + +#: ../../mod/directory.php:114 +msgid "Gender: " +msgstr "Género:" + +#: ../../mod/directory.php:136 ../../include/profile_advanced.php:17 +#: ../../boot.php:1228 +msgid "Gender:" +msgstr "Género:" + +#: ../../mod/directory.php:138 ../../include/profile_advanced.php:37 +#: ../../boot.php:1231 +msgid "Status:" +msgstr "Estado:" + +#: ../../mod/directory.php:140 ../../include/profile_advanced.php:48 +#: ../../boot.php:1233 +msgid "Homepage:" +msgstr "Página de inicio:" + +#: ../../mod/directory.php:142 ../../include/profile_advanced.php:58 +msgid "About:" +msgstr "Acerca de:" + +#: ../../mod/directory.php:180 +msgid "No entries (some entries may be hidden)." +msgstr "Sin entradas (algunas pueden que estén ocultas)." #: ../../mod/invite.php:35 #, php-format msgid "%s : Not a valid email address." -msgstr "%s : No es una dirección válida de correo." +msgstr "%s : No es una dirección de correo válida." #: ../../mod/invite.php:59 -#, php-format -msgid "Please join my network on %s" -msgstr "Por favor únete a mi red social en %s" +msgid "Please join us on Friendica" +msgstr "Únete a nosotros en Friendica" #: ../../mod/invite.php:69 #, php-format @@ -1580,2393 +4603,1337 @@ msgstr[1] "%d mensajes enviados." msgid "You have no more invitations available" msgstr "No tienes más invitaciones disponibles" -#: ../../mod/invite.php:99 -msgid "Send invitations" -msgstr "Enviar invitaciones" - #: ../../mod/invite.php:100 -msgid "Enter email addresses, one per line:" -msgstr "Introduce las direcciones de correo, una por línea:" - -#: ../../mod/invite.php:101 ../../mod/message.php:132 -#: ../../mod/message.php:265 -msgid "Your message:" -msgstr "Tu mensaje:" +#, 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 "Visita %s para ver una lista de servidores públicos donde puedes darte de alta. Los miembros de otros servidores de Friendica pueden conectarse entre ellos, así como con miembros de otras redes sociales diferentes." #: ../../mod/invite.php:102 #, php-format -msgid "Please join my social network on %s" -msgstr "Únete a mi red social en % s" +msgid "" +"To accept this invitation, please visit and register at %s or any other " +"public Friendica website." +msgstr "Para aceptar la invitación visita y regístrate en %s o en cualquier otro servidor público de Friendica." #: ../../mod/invite.php:103 -msgid "To accept this invitation, please visit:" -msgstr "Para aceptar esta invitación, por favor visita:" +#, 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 "Los servidores de Friendica están interconectados para crear una enorme red social centrada en la privacidad y controlada por sus miembros. También se puede conectar con muchas redes sociales tradicionales. Mira en %s para poder ver un listado de servidores alternativos de Friendica donde puedes darte de alta." -#: ../../mod/invite.php:104 +#: ../../mod/invite.php:106 +msgid "" +"Our apologies. This system is not currently configured to connect with other" +" public sites or invite members." +msgstr "Discúlpanos. Este sistema no está configurado actualmente para conectar con otros servidores públicos o invitar nuevos miembros." + +#: ../../mod/invite.php:111 +msgid "Send invitations" +msgstr "Enviar invitaciones" + +#: ../../mod/invite.php:112 +msgid "Enter email addresses, one per line:" +msgstr "Introduce las direcciones de correo, una por línea:" + +#: ../../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 "Estás cordialmente invitado a unirte a mi y a otros amigos en Friendica, creemos juntos una red social mejor." + +#: ../../mod/invite.php:116 msgid "You will need to supply this invitation code: $invite_code" msgstr "Tienes que proporcionar el siguiente código: $invite_code" -#: ../../mod/invite.php:104 +#: ../../mod/invite.php:116 msgid "" "Once you have registered, please connect with me via my profile page at:" -msgstr "" -"Una vez registrado, por favor contacta conmigo a través de mi página de " -"perfil en:" +msgstr "Una vez registrado, por favor contacta conmigo a través de mi página de perfil en:" -#: ../../mod/ping.php:146 -msgid "{0} wants to be your friend" -msgstr "{0} quiere ser tu amigo" - -#: ../../mod/ping.php:151 -msgid "{0} sent you a message" -msgstr "{0} le ha enviado un mensaje" - -#: ../../mod/ping.php:156 -msgid "{0} requested registration" -msgstr "{0} solicitudes de registro" - -#: ../../mod/ping.php:162 -#, php-format -msgid "{0} commented %s's post" -msgstr "{0} comentó el post de %s" - -#: ../../mod/ping.php:167 -#, php-format -msgid "{0} liked %s's post" -msgstr "A {0} le ha gustado el post de %s" - -#: ../../mod/ping.php:172 -#, php-format -msgid "{0} disliked %s's post" -msgstr "A {0} no le ha gustado el post de %s" - -#: ../../mod/ping.php:177 -#, php-format -msgid "{0} is now friends with %s" -msgstr "{0} ahora es amigo de %s" - -#: ../../mod/ping.php:182 -msgid "{0} posted" -msgstr "{0} publicado" - -#: ../../mod/ping.php:187 -#, php-format -msgid "{0} tagged %s's post with #%s" -msgstr "{0} etiquetó la publicación de %s como #%s" - -#: ../../mod/contacts.php:62 ../../mod/contacts.php:133 -msgid "Could not access contact record." -msgstr "No se pudo acceder a los datos del contacto." - -#: ../../mod/contacts.php:76 -msgid "Could not locate selected profile." -msgstr "No se pudo encontrar el perfil seleccionado." - -#: ../../mod/contacts.php:97 -msgid "Contact updated." -msgstr "Contacto actualizado." - -#: ../../mod/contacts.php:99 ../../mod/dfrn_request.php:409 -msgid "Failed to update contact record." -msgstr "Error al actualizar el contacto." - -#: ../../mod/contacts.php:155 -msgid "Contact has been blocked" -msgstr "El contacto ha sido bloqueado" - -#: ../../mod/contacts.php:155 -msgid "Contact has been unblocked" -msgstr "El contacto ha sido desbloqueado" - -#: ../../mod/contacts.php:169 -msgid "Contact has been ignored" -msgstr "El contacto ha sido ignorado" - -#: ../../mod/contacts.php:169 -msgid "Contact has been unignored" -msgstr "El contacto ya no está ignorado" - -#: ../../mod/contacts.php:190 -msgid "stopped following" -msgstr "dejó de seguir" - -#: ../../mod/contacts.php:211 -msgid "Contact has been removed." -msgstr "El contacto ha sido eliminado" - -#: ../../mod/contacts.php:232 -#, php-format -msgid "You are mutual friends with %s" -msgstr "Ahora tiene una amistad mutua con %s" - -#: ../../mod/contacts.php:236 -#, php-format -msgid "You are sharing with %s" -msgstr "Usted está compartiendo con %s" - -#: ../../mod/contacts.php:241 -#, php-format -msgid "%s is sharing with you" -msgstr "%s está compartiendo con usted" - -#: ../../mod/contacts.php:258 -msgid "Private communications are not available for this contact." -msgstr "Las comunicaciones privadas no está disponibles para este contacto." - -#: ../../mod/contacts.php:261 -msgid "Never" -msgstr "Nunca" - -#: ../../mod/contacts.php:265 -msgid "(Update was successful)" -msgstr "(La actualización se ha completado)" - -#: ../../mod/contacts.php:265 -msgid "(Update was not successful)" -msgstr "(La actualización no se ha completado)" - -#: ../../mod/contacts.php:267 -msgid "Suggest friends" -msgstr "Sugerir amigos" - -#: ../../mod/contacts.php:271 -#, php-format -msgid "Network type: %s" -msgstr "Tipo de red: %s" - -#: ../../mod/contacts.php:274 -#, php-format -msgid "%d contact in common" -msgid_plural "%d contacts in common" -msgstr[0] "%d contacto en común" -msgstr[1] "%d contactos en común" - -#: ../../mod/contacts.php:279 -msgid "View all contacts" -msgstr "Ver todos los contactos" - -#: ../../mod/contacts.php:284 ../../mod/contacts.php:331 -#: ../../mod/admin.php:470 -msgid "Unblock" -msgstr "Desbloquear" - -#: ../../mod/contacts.php:284 ../../mod/contacts.php:331 -#: ../../mod/admin.php:469 -msgid "Block" -msgstr "Bloquear" - -#: ../../mod/contacts.php:289 ../../mod/contacts.php:332 -msgid "Unignore" -msgstr "Quitar de Ignorados" - -#: ../../mod/contacts.php:289 ../../mod/contacts.php:332 -#: ../../mod/notifications.php:47 ../../mod/notifications.php:143 -#: ../../mod/notifications.php:187 -msgid "Ignore" -msgstr "Ignorar" - -#: ../../mod/contacts.php:294 -msgid "Repair" -msgstr "Reparar" - -#: ../../mod/contacts.php:304 -msgid "Contact Editor" -msgstr "Editor de contactos" - -#: ../../mod/contacts.php:307 -msgid "Profile Visibility" -msgstr "Visibilidad del Perfil" - -#: ../../mod/contacts.php:308 -#, php-format +#: ../../mod/invite.php:118 msgid "" -"Please choose the profile you would like to display to %s when viewing your " -"profile securely." -msgstr "" -"Por favor selecciona el perfil que quieras mostrar a %s cuando esté viendo " -"tu perfil de forma segura." +"For more information about the Friendica project and why we feel it is " +"important, please visit http://friendica.com" +msgstr "Para más información sobre el Proyecto Friendica y sobre por qué pensamos que es algo importante, visita http://friendica.com" -#: ../../mod/contacts.php:309 -msgid "Contact Information / Notes" -msgstr "Información del Contacto / Notas" - -#: ../../mod/contacts.php:310 -msgid "Edit contact notes" -msgstr "Editar notas de contacto" - -#: ../../mod/contacts.php:315 ../../mod/contacts.php:430 -#: ../../mod/viewcontacts.php:61 -#, php-format -msgid "Visit %s's profile [%s]" -msgstr "Ver el perfil de %s [%s]" - -#: ../../mod/contacts.php:316 -msgid "Block/Unblock contact" -msgstr "Boquear/Desbloquear contacto" - -#: ../../mod/contacts.php:317 -msgid "Ignore contact" -msgstr "Ignorar contacto" - -#: ../../mod/contacts.php:318 -msgid "Repair URL settings" -msgstr "Configuración de URL de reparación" - -#: ../../mod/contacts.php:319 -msgid "View conversations" -msgstr "Ver conversaciones" - -#: ../../mod/contacts.php:321 -msgid "Delete contact" -msgstr "Eliminar contacto" - -#: ../../mod/contacts.php:325 -msgid "Last update:" -msgstr "Última actualización:" - -#: ../../mod/contacts.php:326 -msgid "Update public posts" -msgstr "Actualizar posts públicos" - -#: ../../mod/contacts.php:328 ../../mod/admin.php:701 -msgid "Update now" -msgstr "Actualizar ahora" - -#: ../../mod/contacts.php:335 -msgid "Currently blocked" -msgstr "Bloqueados" - -#: ../../mod/contacts.php:336 -msgid "Currently ignored" -msgstr "Ignorados" - -#: ../../mod/contacts.php:364 ../../include/nav.php:130 -msgid "Contacts" -msgstr "Contactos" - -#: ../../mod/contacts.php:366 -msgid "Show Blocked Connections" -msgstr "Mostrar conexiones bloqueadas" - -#: ../../mod/contacts.php:366 -msgid "Hide Blocked Connections" -msgstr "Esconder conexiones bloqueadas" - -#: ../../mod/contacts.php:368 -msgid "Search your contacts" -msgstr "Buscar tus contactos" - -#: ../../mod/contacts.php:369 ../../mod/directory.php:65 -msgid "Finding: " -msgstr "Buscando: " - -#: ../../mod/contacts.php:370 ../../mod/directory.php:67 -#: ../../include/contact_widgets.php:34 -msgid "Find" -msgstr "Buscar" - -#: ../../mod/contacts.php:406 -msgid "Mutual Friendship" -msgstr "Amistad recíproca" - -#: ../../mod/contacts.php:410 -msgid "is a fan of yours" -msgstr "es tu fan" - -#: ../../mod/contacts.php:414 -msgid "you are a fan of" -msgstr "eres fan de" - -#: ../../mod/contacts.php:431 ../../include/Contact.php:129 -#: ../../include/conversation.php:679 -msgid "Edit contact" -msgstr "Modificar contacto" - -#: ../../mod/lockview.php:39 -msgid "Remote privacy information not available." -msgstr "Información sobre privacidad remota no disponible." - -#: ../../mod/lockview.php:43 -msgid "Visible to:" -msgstr "Visible para:" - -#: ../../mod/register.php:53 -msgid "An invitation is required." -msgstr "Se necesita invitación." - -#: ../../mod/register.php:58 -msgid "Invitation could not be verified." -msgstr "No se puede verificar la invitación." - -#: ../../mod/register.php:66 -msgid "Invalid OpenID url" -msgstr "Dirección OpenID no válida" - -#: ../../mod/register.php:81 -msgid "Please enter the required information." -msgstr "Por favor, introduce la información necesaria." - -#: ../../mod/register.php:95 -msgid "Please use a shorter name." -msgstr "Por favor, usa un nombre más corto." - -#: ../../mod/register.php:97 -msgid "Name too short." -msgstr "El nombre es demasiado corto." - -#: ../../mod/register.php:112 -msgid "That doesn't appear to be your full (First Last) name." -msgstr "No parece que ese sea tu nombre completo." - -#: ../../mod/register.php:117 -msgid "Your email domain is not among those allowed on this site." -msgstr "" -"Tu dominio de correo electrónico no se encuentra entre los permitidos en " -"este sitio." - -#: ../../mod/register.php:120 -msgid "Not a valid email address." -msgstr "No es una dirección de correo electrónico válida." - -#: ../../mod/register.php:130 -msgid "Cannot use that email." -msgstr "No se puede utilizar este correo electrónico." - -#: ../../mod/register.php:136 +#: ../../mod/dfrn_confirm.php:119 msgid "" -"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and " -"must also begin with a letter." -msgstr "" -"Tu \"apodo\" solo puede contener \"a-z\", \"0-9\", \"-\", y \"_\", y también" -" debe empezar por una letra." +"This may occasionally happen if contact was requested by both persons and it" +" has already been approved." +msgstr "Esto puede ocurrir a veces si la conexión fue solicitada por ambas personas y ya hubiera sido aprobada." -#: ../../mod/register.php:142 ../../mod/register.php:243 -msgid "Nickname is already registered. Please choose another." -msgstr "Apodo ya registrado. Por favor, elije otro." - -#: ../../mod/register.php:161 -msgid "SERIOUS ERROR: Generation of security keys failed." -msgstr "ERROR GRAVE: La generación de claves de seguridad ha fallado." - -#: ../../mod/register.php:229 -msgid "An error occurred during registration. Please try again." -msgstr "" -"Se produjo un error durante el registro. Por favor, inténtalo de nuevo." - -#: ../../mod/register.php:265 -msgid "An error occurred creating your default profile. Please try again." -msgstr "" -"Error al crear tu perfil predeterminado. Por favor, inténtalo de nuevo." - -#: ../../mod/register.php:377 -msgid "" -"Registration successful. Please check your email for further instructions." -msgstr "" -"Te has registrado con éxito. Por favor, consulta tu correo electrónico para " -"obtener instrucciones adicionales." - -#: ../../mod/register.php:381 -msgid "Failed to send email message. Here is the message that failed." -msgstr "" -"Error al enviar el mensaje de correo electrónico. Este es el mensaje no " -"enviado." - -#: ../../mod/register.php:386 -msgid "Your registration can not be processed." -msgstr "Tu registro no se puede procesar." - -#: ../../mod/register.php:423 -#, php-format -msgid "Registration request at %s" -msgstr "Solicitud de registro en %s" - -#: ../../mod/register.php:432 -msgid "Your registration is pending approval by the site owner." -msgstr "" -"Tu registro está pendiente de aprobación por el propietario del sitio." - -#: ../../mod/register.php:481 -msgid "" -"You may (optionally) fill in this form via OpenID by supplying your OpenID " -"and clicking 'Register'." -msgstr "" -"Puedes (opcionalmente) rellenar este formulario a través de OpenID mediante " -"el suministro de tu OpenID y pulsando en 'Registrar'." - -#: ../../mod/register.php:482 -msgid "" -"If you are not familiar with OpenID, please leave that field blank and fill " -"in the rest of the items." -msgstr "" -"Si no estás familiarizado con OpenID, por favor deja ese campo en blanco y " -"rellena el resto de los elementos." - -#: ../../mod/register.php:483 -msgid "Your OpenID (optional): " -msgstr "Tu OpenID (opcional):" - -#: ../../mod/register.php:497 -msgid "Include your profile in member directory?" -msgstr "¿Incluir tu perfil en el directorio de miembros?" - -#: ../../mod/register.php:512 -msgid "Membership on this site is by invitation only." -msgstr "Sitio solo accesible mediante invitación." - -#: ../../mod/register.php:513 -msgid "Your invitation ID: " -msgstr "ID de tu invitación: " - -#: ../../mod/register.php:516 ../../mod/admin.php:297 -msgid "Registration" -msgstr "Registro" - -#: ../../mod/register.php:524 -msgid "Your Full Name (e.g. Joe Smith): " -msgstr "Tu nombre completo (por ejemplo, Pepe Pulido):" - -#: ../../mod/register.php:525 -msgid "Your Email Address: " -msgstr "Tu dirección de correo electrónico:" - -#: ../../mod/register.php:526 -msgid "" -"Choose a profile nickname. This must begin with a text character. Your " -"profile address on this site will then be " -"'nickname@$sitename'." -msgstr "" -"Elije un apodo. Debe comenzar con una letra. Tu dirección de perfil en este " -"sitio va a ser 'apodo@$sitename'." - -#: ../../mod/register.php:527 -msgid "Choose a nickname: " -msgstr "Escoge un apodo: " - -#: ../../mod/oexchange.php:27 -msgid "Post successful." -msgstr "¡Publicado!" - -#: ../../mod/allfriends.php:34 -#, php-format -msgid "Friends of %s" -msgstr "Amigos de %s" - -#: ../../mod/allfriends.php:40 -msgid "No friends to display." -msgstr "No hay amigos para mostrar." - -#: ../../mod/help.php:30 -msgid "Help:" -msgstr "Ayuda:" - -#: ../../mod/help.php:34 ../../include/nav.php:82 -msgid "Help" -msgstr "Ayuda" - -#: ../../mod/install.php:34 -msgid "Could not create/connect to database." -msgstr "No se pudo crear o conectarse a la base de datos." - -#: ../../mod/install.php:39 -msgid "Connected to database." -msgstr "Conectado a la base de datos." - -#: ../../mod/install.php:75 -msgid "Proceed with Installation" -msgstr "Procediendo con la instalación" - -#: ../../mod/install.php:77 -msgid "Your Friendika site database has been installed." -msgstr "La base de datos de Friendila ha sido instalada." - -#: ../../mod/install.php:78 -msgid "" -"IMPORTANT: You will need to [manually] setup a scheduled task for the " -"poller." -msgstr "" -"IMPORTANTE: Tendrás que configurar [manualmente] una tarea programada para " -"el encuestador" - -#: ../../mod/install.php:79 ../../mod/install.php:89 ../../mod/install.php:207 -msgid "Please see the file \"INSTALL.txt\"." -msgstr "Por favor, consulte el archivo \"INSTALL.txt\"." - -#: ../../mod/install.php:81 -msgid "Proceed to registration" -msgstr "Procediendo con el registro" - -#: ../../mod/install.php:87 -msgid "Database import failed." -msgstr "La importación de la base de datos ha fallado." - -#: ../../mod/install.php:88 -msgid "" -"You may need to import the file \"database.sql\" manually using phpmyadmin " -"or mysql." -msgstr "" -"Puede que tenga que importar el archivo \"Database.sql\" manualmente usando " -"phpmyadmin o mysql." - -#: ../../mod/install.php:101 -msgid "Welcome to Friendika." -msgstr "Bienvenido a Friendika." - -#: ../../mod/install.php:124 -msgid "Friendika Social Network" -msgstr "Friendika Red Social" - -#: ../../mod/install.php:125 -msgid "Installation" -msgstr "Instalación" - -#: ../../mod/install.php:126 -msgid "" -"In order to install Friendika we need to know how to connect to your " -"database." -msgstr "" -"Para proceder a la instalación de Friendika es necesario saber cómo conectar" -" con tu base de datos." - -#: ../../mod/install.php:127 -msgid "" -"Please contact your hosting provider or site administrator if you have " -"questions about these settings." -msgstr "" -"Por favor contacta con tu proveedor de servicios o el administrador de " -"lapágina si tienes alguna pregunta sobre estas cofiguraciones" - -#: ../../mod/install.php:128 -msgid "" -"The database you specify below should already exist. If it does not, please " -"create it before continuing." -msgstr "" -"La base de datos que especifiques a continuación ya debería existir. Si no " -"es el caso, debes crearla antes de continuar." - -#: ../../mod/install.php:129 -msgid "Database Server Name" -msgstr "Nombre del servidor de la base de datos" - -#: ../../mod/install.php:130 -msgid "Database Login Name" -msgstr "Usuario de la base de datos" - -#: ../../mod/install.php:131 -msgid "Database Login Password" -msgstr "Contraseña de la base de datos" - -#: ../../mod/install.php:132 -msgid "Database Name" -msgstr "Nombre de la base de datos" - -#: ../../mod/install.php:133 -msgid "Please select a default timezone for your website" -msgstr "Por favor selecciona la zona horaria predeterminada para tu web" - -#: ../../mod/install.php:134 -msgid "" -"Site administrator email address. Your account email address must match this" -" in order to use the web admin panel." -msgstr "" -"Dirección de correo electrónico del administrador. La dirección de correo " -"electrónico de tu cuenta debe cotejar esto para poder acceder al panel de " -"administración." - -#: ../../mod/install.php:153 -msgid "Could not find a command line version of PHP in the web server PATH." -msgstr "" -"No se pudo encontrar una versión de línea de comandos de PHP en la ruta del " -"servidor web." - -#: ../../mod/install.php:154 -msgid "" -"This is required. Please adjust the configuration file .htconfig.php " -"accordingly." -msgstr "" -"Esto es necesario. Por favor, modifica el archivo de configuración. " -"htconfig.php en consecuencia." - -#: ../../mod/install.php:161 -msgid "" -"The command line version of PHP on your system does not have " -"\"register_argc_argv\" enabled." -msgstr "" -"La versión en línea de comandos de PHP en tu sistema no tiene " -"\"register_argc_argv\" habilitado." - -#: ../../mod/install.php:162 -msgid "This is required for message delivery to work." -msgstr "Esto es necesario para el funcionamiento de la entrega de mensajes." - -#: ../../mod/install.php:184 -msgid "" -"Error: the \"openssl_pkey_new\" function on this system is not able to " -"generate encryption keys" -msgstr "" -"Error: La función \"openssl_pkey_new\" en este sistema no es capaz de " -"generar claves de cifrado" - -#: ../../mod/install.php:185 -msgid "" -"If running under Windows, please see " -"\"http://www.php.net/manual/en/openssl.installation.php\"." -msgstr "" -"Si se ejecuta en Windows, por favor consulte la sección " -"\"http://www.php.net/manual/en/openssl.installation.php\"." - -#: ../../mod/install.php:194 -msgid "" -"Error: Apache webserver mod-rewrite module is required but not installed." -msgstr "" -"Error: El módulo servidor web Apache mod-rewrite es necesario pero no está " -"instalado." - -#: ../../mod/install.php:196 -msgid "Error: libCURL PHP module required but not installed." -msgstr "Error: El módulo libcurl PHP es necesario, pero no está instalado." - -#: ../../mod/install.php:198 -msgid "" -"Error: GD graphics PHP module with JPEG support required but not installed." -msgstr "" -"Error: El módulo de gráficos GD de PHP con soporte JPEG es necesario, pero " -"no está instalado." - -#: ../../mod/install.php:200 -msgid "Error: openssl PHP module required but not installed." -msgstr "Error: El módulo openssl PHP es necesario, pero no está instalado." - -#: ../../mod/install.php:202 -msgid "Error: mysqli PHP module required but not installed." -msgstr "Error: El módulo PHP mysqli es necesario, pero no está instalado." - -#: ../../mod/install.php:204 -msgid "Error: mb_string PHP module required but not installed." -msgstr "Error: El módulo mb_string HPH es necesario, pero no está instalado." - -#: ../../mod/install.php:216 -msgid "" -"The web installer needs to be able to create a file called \".htconfig.php\"" -" in the top folder of your web server and it is unable to do so." -msgstr "" -"El programa de instalación web necesita ser capaz de crear un archivo " -"llamado \". htconfig.php\" en la carpeta superior de tu servidor web y es " -"incapaz de hacerlo." - -#: ../../mod/install.php:217 -msgid "" -"This is most often a permission setting, as the web server may not be able " -"to write files in your folder - even if you can." -msgstr "" -"Esto es muy a menudo una configuración de permisos, pues el servidor web " -"puede que no sea capaz de escribir archivos en la carpeta - incluso si tu " -"puedes." - -#: ../../mod/install.php:218 -msgid "" -"Please check with your site documentation or support people to see if this " -"situation can be corrected." -msgstr "" -"Por favor, consulta el sitio de documentación o al soporte técnico para ver " -"si esta situación se puede corregir." - -#: ../../mod/install.php:219 -msgid "" -"If not, you may be required to perform a manual installation. Please see the" -" file \"INSTALL.txt\" for instructions." -msgstr "" -"Si no, deberás proceder con la instalación manual. Por favor, consulta el " -"archivo \"INSTALL.txt\"para obtener instrucciones." - -#: ../../mod/install.php:228 -msgid "" -"The database configuration file \".htconfig.php\" could not be written. " -"Please use the enclosed text to create a configuration file in your web " -"server root." -msgstr "" -"El archivo de configuración de base de datos \". htconfig.php\" No se pudo " -"escribir. Por favor, utiliza el texto adjunto para crear un archivo de " -"configuración en la raíz de tu servidor web." - -#: ../../mod/install.php:243 -msgid "Errors encountered creating database tables." -msgstr "Errores encontrados creando las tablas de bases de datos." - -#: ../../mod/network.php:148 -msgid "Commented Order" -msgstr "Orden de comentarios" - -#: ../../mod/network.php:153 -msgid "Posted Order" -msgstr "Orden de publicación" - -#: ../../mod/network.php:159 -msgid "New" -msgstr "Nuevo" - -#: ../../mod/network.php:164 -msgid "Starred" -msgstr "Favoritos" - -#: ../../mod/network.php:169 -msgid "Bookmarks" -msgstr "Marcadores" - -#: ../../mod/network.php:216 -#, 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] "Aviso: este grupo contiene %s contacto con conexión no segura." -msgstr[1] "Aviso: este grupo contiene %s contactos con conexiones no seguras." - -#: ../../mod/network.php:219 -msgid "Private messages to this group are at risk of public disclosure." -msgstr "" -"Los mensajes privados a este grupo corren el riesgo de ser mostrados " -"públicamente." - -#: ../../mod/network.php:292 -msgid "No such group" -msgstr "Ningún grupo" - -#: ../../mod/network.php:303 -msgid "Group is empty" -msgstr "El grupo está vacío" - -#: ../../mod/network.php:308 -msgid "Group: " -msgstr "Grupo: " - -#: ../../mod/network.php:318 -msgid "Contact: " -msgstr "Contacto: " - -#: ../../mod/network.php:320 -msgid "Private messages to this person are at risk of public disclosure." -msgstr "" -"Los mensajes privados a esta persona corren el riesgo de ser mostrados " -"públicamente." - -#: ../../mod/network.php:325 -msgid "Invalid contact." -msgstr "Contacto erróneo." - -#: ../../mod/profperm.php:25 ../../mod/profperm.php:55 -msgid "Invalid profile identifier." -msgstr "Identificador de perfil no válido." - -#: ../../mod/profperm.php:101 -msgid "Profile Visibility Editor" -msgstr "Editor de visibilidad del perfil" - -#: ../../mod/profperm.php:105 ../../mod/group.php:164 -msgid "Click on a contact to add or remove." -msgstr "Pulsa en un contacto para añadirlo o eliminarlo." - -#: ../../mod/profperm.php:114 -msgid "Visible To" -msgstr "Visible para" - -#: ../../mod/profperm.php:130 -msgid "All Contacts (with secure profile access)" -msgstr "Todos los contactos (con perfil de acceso seguro)" - -#: ../../mod/events.php:61 -msgid "Event description and start time are required." -msgstr "Se requiere una descripción del evento y la hora de inicio." - -#: ../../mod/events.php:207 -msgid "Create New Event" -msgstr "Crea un evento nuevo" - -#: ../../mod/events.php:210 -msgid "Previous" -msgstr "Previo" - -#: ../../mod/events.php:213 -msgid "Next" -msgstr "Siguiente" - -#: ../../mod/events.php:220 -msgid "l, F j" -msgstr "l, F j" - -#: ../../mod/events.php:232 -msgid "Edit event" -msgstr "Editar evento" - -#: ../../mod/events.php:234 ../../include/text.php:857 -msgid "link to source" -msgstr "Enlace al original" - -#: ../../mod/events.php:302 -msgid "hour:minute" -msgstr "hora:minuto" - -#: ../../mod/events.php:311 -msgid "Event details" -msgstr "Detalles del evento" - -#: ../../mod/events.php:312 -#, php-format -msgid "Format is %s %s. Starting date and Description are required." -msgstr "" -"El formato es %s %s. Se requiere una fecha de inicio y una descripción." - -#: ../../mod/events.php:313 -msgid "Event Starts:" -msgstr "Inicio del evento:" - -#: ../../mod/events.php:316 -msgid "Finish date/time is not known or not relevant" -msgstr "La fecha/hora de finalización no es conocida o es irrelevante." - -#: ../../mod/events.php:318 -msgid "Event Finishes:" -msgstr "Finalización del evento:" - -#: ../../mod/events.php:321 -msgid "Adjust for viewer timezone" -msgstr "Ajuste de zona horaria" - -#: ../../mod/events.php:323 -msgid "Description:" -msgstr "Descripción:" - -#: ../../mod/events.php:327 -msgid "Share this event" -msgstr "Comparte este evento" - -#: ../../mod/notifications.php:26 -msgid "Invalid request identifier." -msgstr "Solicitud de identificación no válida." - -#: ../../mod/notifications.php:35 ../../mod/notifications.php:144 -#: ../../mod/notifications.php:188 -msgid "Discard" -msgstr "Descartar" - -#: ../../mod/notifications.php:71 ../../include/nav.php:109 -msgid "Network" -msgstr "Red" - -#: ../../mod/notifications.php:76 ../../include/nav.php:73 -#: ../../include/nav.php:111 -msgid "Home" -msgstr "Inicio" - -#: ../../mod/notifications.php:81 ../../include/nav.php:117 -msgid "Introductions" -msgstr "Introducciones" - -#: ../../mod/notifications.php:86 ../../mod/message.php:72 -#: ../../include/nav.php:122 -msgid "Messages" -msgstr "Mensajes" - -#: ../../mod/notifications.php:105 -msgid "Show Ignored Requests" -msgstr "Mostrar peticiones ignoradas" - -#: ../../mod/notifications.php:105 -msgid "Hide Ignored Requests" -msgstr "Ocultar peticiones ignoradas" - -#: ../../mod/notifications.php:131 ../../mod/notifications.php:174 -msgid "Notification type: " -msgstr "Tipo de notificación: " - -#: ../../mod/notifications.php:132 -msgid "Friend Suggestion" -msgstr "Propuestas de amistad" - -#: ../../mod/notifications.php:134 -#, php-format -msgid "suggested by %s" -msgstr "sugerido por %s" - -#: ../../mod/notifications.php:140 ../../mod/notifications.php:185 -#: ../../mod/admin.php:466 -msgid "Approve" -msgstr "Aprobar" - -#: ../../mod/notifications.php:160 -msgid "Claims to be known to you: " -msgstr "Dice conocerte:" - -#: ../../mod/notifications.php:160 -msgid "yes" -msgstr "sí" - -#: ../../mod/notifications.php:160 -msgid "no" -msgstr "no" - -#: ../../mod/notifications.php:167 -msgid "Approve as: " -msgstr "Aprobar como:" - -#: ../../mod/notifications.php:168 -msgid "Friend" -msgstr "Amigo" - -#: ../../mod/notifications.php:169 -msgid "Sharer" -msgstr "Partícipe" - -#: ../../mod/notifications.php:169 -msgid "Fan/Admirer" -msgstr "Fan/Admirador" - -#: ../../mod/notifications.php:175 -msgid "Friend/Connect Request" -msgstr "Solicitud de Amistad/Conexión" - -#: ../../mod/notifications.php:175 -msgid "New Follower" -msgstr "Nuevo seguidor" - -#: ../../mod/notifications.php:194 -msgid "No notifications." -msgstr "Ninguna notificación." - -#: ../../mod/notifications.php:197 ../../mod/notifications.php:283 -#: ../../mod/notifications.php:359 ../../include/nav.php:118 -msgid "Notifications" -msgstr "Notificaciones" - -#: ../../mod/notifications.php:234 ../../mod/notifications.php:316 -#, php-format -msgid "%s liked %s's post" -msgstr "A %s le gusta el post de %s" - -#: ../../mod/notifications.php:243 ../../mod/notifications.php:325 -#, php-format -msgid "%s disliked %s's post" -msgstr "A %s no le gusta el post de %s" - -#: ../../mod/notifications.php:257 ../../mod/notifications.php:339 -#, php-format -msgid "%s is now friends with %s" -msgstr "%s es ahora es amigo de %s" - -#: ../../mod/notifications.php:264 -#, php-format -msgid "%s created a new post" -msgstr "%s creó un nuevo post" - -#: ../../mod/notifications.php:265 ../../mod/notifications.php:348 -#, php-format -msgid "%s commented on %s's post" -msgstr "%s comentó en el post de %s" - -#: ../../mod/notifications.php:279 ../../mod/notifications.php:355 -msgid "Nothing new!" -msgstr "¡Nada nuevo!" - -#: ../../mod/crepair.php:100 -msgid "Contact settings applied." -msgstr "Contacto configurado con éxito" - -#: ../../mod/crepair.php:102 -msgid "Contact update failed." -msgstr "Error al actualizar el Contacto" - -#: ../../mod/crepair.php:127 ../../mod/fsuggest.php:20 -#: ../../mod/fsuggest.php:92 ../../mod/dfrn_confirm.php:114 -msgid "Contact not found." -msgstr "Contacto no encontrado." - -#: ../../mod/crepair.php:133 -msgid "Repair Contact Settings" -msgstr "Reparar la configuración del Contacto" - -#: ../../mod/crepair.php:135 -msgid "" -"WARNING: This is highly advanced and if you enter incorrect" -" information your communications with this contact may stop working." -msgstr "" -"ADVERTENCIA: Esto es muy avanzado y si se introduce " -"información incorrecta su conexión con este contacto puede dejar de " -"funcionar." - -#: ../../mod/crepair.php:136 -msgid "" -"Please use your browser 'Back' button now if you are " -"uncertain what to do on this page." -msgstr "" -"Por favor usa el botón 'Atás' de tu navegador ahora si no " -"tienes claro qué hacer en esta página." - -#: ../../mod/crepair.php:145 -msgid "Account Nickname" -msgstr "Apodo de la cuenta" - -#: ../../mod/crepair.php:146 -msgid "@Tagname - overrides Name/Nickname" -msgstr "@Etiqueta - Sobrescribe el Nombre/Apodo" - -#: ../../mod/crepair.php:147 -msgid "Account URL" -msgstr "Dirección de la cuenta" - -#: ../../mod/crepair.php:148 -msgid "Friend Request URL" -msgstr "Dirección de la solicitud de amistad" - -#: ../../mod/crepair.php:149 -msgid "Friend Confirm URL" -msgstr "Dirección de confirmación de tu amigo " - -#: ../../mod/crepair.php:150 -msgid "Notification Endpoint URL" -msgstr "Dirección URL de la notificación" - -#: ../../mod/crepair.php:151 -msgid "Poll/Feed URL" -msgstr "Dirección de la Encuesta/Fuentes" - -#: ../../mod/crepair.php:152 -msgid "New photo from this URL" -msgstr "Nueva foto de esta dirección URL" - -#: ../../mod/dfrn_request.php:92 -msgid "This introduction has already been accepted." -msgstr "Esta presentación ya ha sido aceptada." - -#: ../../mod/dfrn_request.php:116 ../../mod/dfrn_request.php:351 -msgid "Profile location is not valid or does not contain profile information." -msgstr "" -"La ubicación del perfil no es válida o no contiene la información del " -"perfil." - -#: ../../mod/dfrn_request.php:121 ../../mod/dfrn_request.php:356 -msgid "Warning: profile location has no identifiable owner name." -msgstr "" -"Aviso: La ubicación del perfil no tiene un nombre de propietario " -"identificable." - -#: ../../mod/dfrn_request.php:123 ../../mod/dfrn_request.php:358 -msgid "Warning: profile location has no profile photo." -msgstr "Aviso: la ubicación del perfil no tiene foto de perfil." - -#: ../../mod/dfrn_request.php:126 ../../mod/dfrn_request.php:361 -#, 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 parámetro requerido no se encontró en el lugar determinado" -msgstr[1] "% d parámetros requeridos no se encontraron en el lugar determinado" - -#: ../../mod/dfrn_request.php:167 -msgid "Introduction complete." -msgstr "Presentación completa." - -#: ../../mod/dfrn_request.php:191 -msgid "Unrecoverable protocol error." -msgstr "Error de protocolo irrecuperable." - -#: ../../mod/dfrn_request.php:219 -msgid "Profile unavailable." -msgstr "Perfil no disponible." - -#: ../../mod/dfrn_request.php:244 -#, php-format -msgid "%s has received too many connection requests today." -msgstr "% s ha recibido demasiadas solicitudes de conexión hoy." - -#: ../../mod/dfrn_request.php:245 -msgid "Spam protection measures have been invoked." -msgstr "Han sido activadas las medidas de protección contra spam." - -#: ../../mod/dfrn_request.php:246 -msgid "Friends are advised to please try again in 24 hours." -msgstr "" -"Tus amigos serán avisados para que lo intenten de nuevo pasadas 24 horas." - -#: ../../mod/dfrn_request.php:276 -msgid "Invalid locator" -msgstr "Localizador no válido" - -#: ../../mod/dfrn_request.php:296 -msgid "Unable to resolve your name at the provided location." -msgstr "No se ha podido resolver tu nombre en la ubicación indicada." - -#: ../../mod/dfrn_request.php:309 -msgid "You have already introduced yourself here." -msgstr "Ya te has presentado aquí." - -#: ../../mod/dfrn_request.php:313 -#, php-format -msgid "Apparently you are already friends with %s." -msgstr "Al parecer, ya eres amigo de %s." - -#: ../../mod/dfrn_request.php:334 -msgid "Invalid profile URL." -msgstr "Dirección de perfil no válida." - -#: ../../mod/dfrn_request.php:430 -msgid "Your introduction has been sent." -msgstr "Su presentación ha sido enviada." - -#: ../../mod/dfrn_request.php:483 -msgid "Please login to confirm introduction." -msgstr "Inicia sesión para confirmar la presentación." - -#: ../../mod/dfrn_request.php:497 -msgid "" -"Incorrect identity currently logged in. Please login to " -"this profile." -msgstr "" -"Sesión iniciada con la identificación incorrecta. Entra en " -"este perfil." - -#: ../../mod/dfrn_request.php:509 -#, php-format -msgid "Welcome home %s." -msgstr "Bienvenido %s" - -#: ../../mod/dfrn_request.php:510 -#, php-format -msgid "Please confirm your introduction/connection request to %s." -msgstr "Por favor, confirma tu solicitud de presentación/conexión con %s." - -#: ../../mod/dfrn_request.php:511 -msgid "Confirm" -msgstr "Confirmar" - -#: ../../mod/dfrn_request.php:544 ../../include/items.php:2431 -msgid "[Name Withheld]" -msgstr "[Nombre oculto]" - -#: ../../mod/dfrn_request.php:551 -msgid "Introduction received at " -msgstr "Presentación recibida en" - -#: ../../mod/dfrn_request.php:635 -#, php-format -msgid "" -"Diaspora members: Please do not use this form. Instead, enter \"%s\" into " -"your Diaspora search bar." -msgstr "" -"Usuarios de Diaspora*: por favor no utilice este formulario. En su lugar, " -"escriba \"%s\" en la barra de búsqueda de Diaspora*." - -#: ../../mod/dfrn_request.php:638 -msgid "" -"Please enter your 'Identity Address' from one of the following supported " -"social networks:" -msgstr "" -"Por favor introduce la dirección de tu perfil para una de las siguientes " -"redes sociales soportadas:" - -#: ../../mod/dfrn_request.php:641 -msgid "Friend/Connection Request" -msgstr "Solicitud de Amistad/Conexión" - -#: ../../mod/dfrn_request.php:642 -msgid "" -"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, " -"testuser@identi.ca" -msgstr "" -"Ejemplos: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, " -"testuser@identi.ca" - -#: ../../mod/dfrn_request.php:643 -msgid "Please answer the following:" -msgstr "Por favor responda lo siguiente:" - -#: ../../mod/dfrn_request.php:644 -#, php-format -msgid "Does %s know you?" -msgstr "¿%s te conoce?" - -#: ../../mod/dfrn_request.php:647 -msgid "Add a personal note:" -msgstr "Agregar una nota personal:" - -#: ../../mod/dfrn_request.php:649 ../../include/contact_selectors.php:78 -msgid "Friendica" -msgstr "Friendica" - -#: ../../mod/dfrn_request.php:650 -msgid "StatusNet/Federated Social Web" -msgstr "StatusNet/Federated Social Web" - -#: ../../mod/dfrn_request.php:652 -msgid "- please share from your own site as noted above" -msgstr "- Por favor comparta desde tu propio sitio como se ha señalado" - -#: ../../mod/dfrn_request.php:653 -msgid "Your Identity Address:" -msgstr "Dirección de tu perfil:" - -#: ../../mod/dfrn_request.php:654 -msgid "Submit Request" -msgstr "Enviar solicitud" - -#: ../../mod/api.php:76 ../../mod/api.php:102 -msgid "Authorize application connection" -msgstr "Autorizar la conexión de la aplicación" - -#: ../../mod/api.php:77 -msgid "Return to your app and insert this Securty Code:" -msgstr "Regrese a su aplicación e inserte este código de seguridad:" - -#: ../../mod/api.php:89 -msgid "Please login to continue." -msgstr "Inicia sesión para continuar." - -#: ../../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 "" -"¿Quiere autorizar a esta aplicación el acceso a sus mensajes y contactos, " -"y/o crear nuevas publicaciones para usted?" - -#: ../../mod/tagger.php:70 ../../mod/like.php:127 -#: ../../addon/facebook/facebook.php:1024 -#: ../../addon/communityhome/communityhome.php:158 -#: ../../addon/communityhome/communityhome.php:167 -#: ../../include/conversation.php:26 ../../include/conversation.php:35 -#: ../../include/diaspora.php:1211 -msgid "status" -msgstr "estado" - -#: ../../mod/tagger.php:103 -#, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" -msgstr "%1$s etiquetados %2$s %3$s con %4$s" - -#: ../../mod/like.php:144 ../../addon/facebook/facebook.php:1028 -#: ../../addon/communityhome/communityhome.php:172 -#: ../../include/conversation.php:43 ../../include/diaspora.php:1227 -#, php-format -msgid "%1$s likes %2$s's %3$s" -msgstr "A %1$s gusta %3$s de %2$s" - -#: ../../mod/like.php:146 ../../include/conversation.php:46 -#, php-format -msgid "%1$s doesn't like %2$s's %3$s" -msgstr "A %1$s no gusta %3$s de %2$s" - -#: ../../mod/lostpass.php:16 -msgid "No valid account found." -msgstr "No se ha encontrado ninguna cuenta válida" - -#: ../../mod/lostpass.php:31 -msgid "Password reset request issued. Check your email." -msgstr "" -"Solicitud de restablecimiento de contraseña enviada. Revisa tu correo " -"electrónico." - -#: ../../mod/lostpass.php:42 -#, php-format -msgid "Password reset requested at %s" -msgstr "Contraseña restablecida enviada a %s" - -#: ../../mod/lostpass.php:64 -msgid "" -"Request could not be verified. (You may have previously submitted it.) " -"Password reset failed." -msgstr "" -"La solicitud no puede ser verificada (deberías haberla proporcionado antes)." -" Falló el restablecimiento de la contraseña." - -#: ../../mod/lostpass.php:83 -msgid "Your password has been reset as requested." -msgstr "Tu contraseña ha sido restablecida como solicitaste." - -#: ../../mod/lostpass.php:84 -msgid "Your new password is" -msgstr "Tu nueva contraseña es" - -#: ../../mod/lostpass.php:85 -msgid "Save or copy your new password - and then" -msgstr "Guarda o copia tu nueva contraseña - y luego" - -#: ../../mod/lostpass.php:86 -msgid "click here to login" -msgstr "pulsa aquí para acceder" - -#: ../../mod/lostpass.php:87 -msgid "" -"Your password may be changed from the Settings page after " -"successful login." -msgstr "" -"Puedes cambiar tu contraseña desde la página de Configuración " -"después de acceder con éxito." - -#: ../../mod/lostpass.php:118 -msgid "Forgot your Password?" -msgstr "¿Olvidaste tu contraseña?" - -#: ../../mod/lostpass.php:119 -msgid "" -"Enter your email address and submit to have your password reset. Then check " -"your email for further instructions." -msgstr "" -"Introduce tu correo electrónico para restablecer tu contraseña. Luego " -"comprueba tu correo para las instrucciones adicionales." - -#: ../../mod/lostpass.php:120 -msgid "Nickname or Email: " -msgstr "Apodo o Correo electrónico: " - -#: ../../mod/lostpass.php:121 -msgid "Reset" -msgstr "Restablecer" - -#: ../../mod/friendica.php:43 -msgid "This is Friendica, version" -msgstr "Esto es Friendica, versión" - -#: ../../mod/friendica.php:44 -msgid "running at web location" -msgstr "ejecutándose en la dirección web" - -#: ../../mod/friendica.php:46 -msgid "" -"Please visit Project.Friendika.com to learn " -"more about the Friendica project." -msgstr "" -"Por favor, visite Project.Friendika.com para saber " -"más sobre el proyecto Friendica." - -#: ../../mod/friendica.php:48 -msgid "Bug reports and issues: please visit" -msgstr "Reporte de fallos y bugs: por favor visita" - -#: ../../mod/friendica.php:49 -msgid "" -"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - " -"dot com" -msgstr "" -"Sugerencias, elogios, donaciones, etc - por favor mande un email a Info " -"arroba Friendica punto com" - -#: ../../mod/friendica.php:54 -msgid "Installed plugins/addons/apps" -msgstr "Módulos/extensiones/programas instalados" - -#: ../../mod/friendica.php:62 -msgid "No installed plugins/addons/apps" -msgstr "Módulos/extensiones/programas no instalados" - -#: ../../mod/removeme.php:42 ../../mod/removeme.php:45 -msgid "Remove My Account" -msgstr "Eliminar mi cuenta" - -#: ../../mod/removeme.php:43 -msgid "" -"This will completely remove your account. Once this has been done it is not " -"recoverable." -msgstr "" -"Esto eliminará por completo tu cuenta. Una vez hecho esto no se puede " -"deshacer." - -#: ../../mod/removeme.php:44 -msgid "Please enter your password for verification:" -msgstr "Por favor, introduce tu contraseña para la verificación:" - -#: ../../mod/apps.php:4 -msgid "Applications" -msgstr "Aplicaciones" - -#: ../../mod/apps.php:7 -msgid "No installed applications." -msgstr "Sin aplicaciones" - -#: ../../mod/notes.php:63 ../../include/text.php:628 -msgid "Save" -msgstr "Guardar" - -#: ../../mod/fsuggest.php:63 -msgid "Friend suggestion sent." -msgstr "Solicitud de amistad enviada." - -#: ../../mod/fsuggest.php:97 -msgid "Suggest Friends" -msgstr "Sugerencias de amistad" - -#: ../../mod/fsuggest.php:99 -#, php-format -msgid "Suggest a friend for %s" -msgstr "Recomienda un amigo a %s" - -#: ../../mod/viewsrc.php:7 -msgid "Access denied." -msgstr "Acceso denegado." - -#: ../../mod/directory.php:49 -msgid "Global Directory" -msgstr "Directorio global" - -#: ../../mod/directory.php:55 -msgid "Normal site view" -msgstr "Vista normal" - -#: ../../mod/directory.php:57 -msgid "Admin - View all site entries" -msgstr "Administrador - Ver todas las entradas del sitio" - -#: ../../mod/directory.php:63 -msgid "Find on this site" -msgstr "Buscar en este sitio" - -#: ../../mod/directory.php:66 -msgid "Site Directory" -msgstr "Directorio del sitio" - -#: ../../mod/directory.php:125 -msgid "Gender: " -msgstr "Género:" - -#: ../../mod/directory.php:151 -msgid "No entries (some entries may be hidden)." -msgstr "Sin entradas (algunas pueden que estén ocultas)." - -#: ../../mod/admin.php:59 ../../mod/admin.php:295 -msgid "Site" -msgstr "Sitio" - -#: ../../mod/admin.php:60 ../../mod/admin.php:460 ../../mod/admin.php:472 -msgid "Users" -msgstr "Usuarios" - -#: ../../mod/admin.php:61 ../../mod/admin.php:549 ../../mod/admin.php:586 -msgid "Plugins" -msgstr "Módulos" - -#: ../../mod/admin.php:76 ../../mod/admin.php:651 -msgid "Logs" -msgstr "Registros" - -#: ../../mod/admin.php:81 -msgid "User registrations waiting for confirmation" -msgstr "Registro de usuarios esperando la confirmación" - -#: ../../mod/admin.php:144 ../../mod/admin.php:294 ../../mod/admin.php:459 -#: ../../mod/admin.php:548 ../../mod/admin.php:585 ../../mod/admin.php:650 -msgid "Administration" -msgstr "Administración" - -#: ../../mod/admin.php:145 -msgid "Summary" -msgstr "Resumen" - -#: ../../mod/admin.php:146 -msgid "Registered users" -msgstr "Usuarios registrados" - -#: ../../mod/admin.php:148 -msgid "Pending registrations" -msgstr "Pendientes de registro" - -#: ../../mod/admin.php:149 -msgid "Version" -msgstr "Versión" - -#: ../../mod/admin.php:151 -msgid "Active plugins" -msgstr "Módulos activos" - -#: ../../mod/admin.php:243 -msgid "Site settings updated." -msgstr "Configuración de actualización de sitio" - -#: ../../mod/admin.php:287 -msgid "Closed" -msgstr "Cerrado" - -#: ../../mod/admin.php:288 -msgid "Requires approval" -msgstr "Requiere aprovación" - -#: ../../mod/admin.php:289 -msgid "Open" -msgstr "Abierto" - -#: ../../mod/admin.php:298 -msgid "File upload" -msgstr "Subida de archivo" - -#: ../../mod/admin.php:299 -msgid "Policies" -msgstr "Políticas" - -#: ../../mod/admin.php:300 -msgid "Advanced" -msgstr "Avanzado" - -#: ../../mod/admin.php:304 ../../addon/statusnet/statusnet.php:477 -msgid "Site name" -msgstr "Nombre del sitio" - -#: ../../mod/admin.php:305 -msgid "Banner/Logo" -msgstr "Banner/Logo" - -#: ../../mod/admin.php:306 -msgid "System language" -msgstr "Idioma" - -#: ../../mod/admin.php:307 -msgid "System theme" -msgstr "Tema" - -#: ../../mod/admin.php:309 -msgid "Maximum image size" -msgstr "Tamaño máximo de la imagen" - -#: ../../mod/admin.php:311 -msgid "Register policy" -msgstr "Política de registros" - -#: ../../mod/admin.php:312 -msgid "Register text" -msgstr "Términos" - -#: ../../mod/admin.php:313 -msgid "Accounts abandoned after x days" -msgstr "Cuentas abandonadas después de x días" - -#: ../../mod/admin.php:313 -msgid "" -"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" -" cuentas abandonadas. Introduzca 0 para ningún límite temporal." - -#: ../../mod/admin.php:314 -msgid "Allowed friend domains" -msgstr "Dominios amigos permitidos" - -#: ../../mod/admin.php:315 -msgid "Allowed email domains" -msgstr "Dominios de correo permitidos" - -#: ../../mod/admin.php:316 -msgid "Block public" -msgstr "Bloqueo público" - -#: ../../mod/admin.php:317 -msgid "Force publish" -msgstr "Forzar publicación" - -#: ../../mod/admin.php:318 -msgid "Global directory update URL" -msgstr "Dirección de actualización del directorio global" - -#: ../../mod/admin.php:320 -msgid "Block multiple registrations" -msgstr "Bloquear multiples registros" - -#: ../../mod/admin.php:321 -msgid "OpenID support" -msgstr "Soporte OpenID" - -#: ../../mod/admin.php:322 -msgid "Gravatar support" -msgstr "Soporte Gravatar" - -#: ../../mod/admin.php:323 -msgid "Fullname check" -msgstr "Comprobar Nombre completo" - -#: ../../mod/admin.php:324 -msgid "UTF-8 Regular expressions" -msgstr "Expresiones regulares UTF-8" - -#: ../../mod/admin.php:325 -msgid "Show Community Page" -msgstr "Ver página de la Comunidad" - -#: ../../mod/admin.php:326 -msgid "Enable OStatus support" -msgstr "Permitir soporte OStatus" - -#: ../../mod/admin.php:327 -msgid "Enable Diaspora support" -msgstr "Habilitar el soporte para Diaspora*" - -#: ../../mod/admin.php:328 -msgid "Only allow Friendika contacts" -msgstr "Permitir solo contactos de Friendika" - -#: ../../mod/admin.php:329 -msgid "Verify SSL" -msgstr "Verificar SSL" - -#: ../../mod/admin.php:330 -msgid "Proxy user" -msgstr "Usuario proxy" - -#: ../../mod/admin.php:331 -msgid "Proxy URL" -msgstr "Dirección proxy" - -#: ../../mod/admin.php:332 -msgid "Network timeout" -msgstr "Tiempo de espera de red" - -#: ../../mod/admin.php:353 -#, php-format -msgid "%s user blocked" -msgid_plural "%s users blocked/unblocked" -msgstr[0] "%s usuario bloqueado" -msgstr[1] "%s usuarios bloqueados" - -#: ../../mod/admin.php:360 -#, php-format -msgid "%s user deleted" -msgid_plural "%s users deleted" -msgstr[0] "%s usuario eliminado" -msgstr[1] "%s usuarios eliminados" - -#: ../../mod/admin.php:394 -#, php-format -msgid "User '%s' deleted" -msgstr "Usuario '%s' eliminado'" - -#: ../../mod/admin.php:401 -#, php-format -msgid "User '%s' unblocked" -msgstr "Usuario '%s' desbloqueado" - -#: ../../mod/admin.php:401 -#, php-format -msgid "User '%s' blocked" -msgstr "Usuario '%s' bloqueado'" - -#: ../../mod/admin.php:462 -msgid "select all" -msgstr "seleccionar todo" - -#: ../../mod/admin.php:463 -msgid "User registrations waiting for confirm" -msgstr "Registro de usuario esperando confirmación" - -#: ../../mod/admin.php:464 -msgid "Request date" -msgstr "Solicitud de fecha" - -#: ../../mod/admin.php:464 ../../mod/admin.php:473 -#: ../../include/contact_selectors.php:78 -msgid "Email" -msgstr "Correo electrónico" - -#: ../../mod/admin.php:465 -msgid "No registrations." -msgstr "Ningún registro." - -#: ../../mod/admin.php:467 -msgid "Deny" -msgstr "Denegado" - -#: ../../mod/admin.php:473 -msgid "Register date" -msgstr "Fecha de registro" - -#: ../../mod/admin.php:473 -msgid "Last login" -msgstr "Último acceso" - -#: ../../mod/admin.php:473 -msgid "Last item" -msgstr "Último elemento" - -#: ../../mod/admin.php:473 -msgid "Account" -msgstr "Cuenta" - -#: ../../mod/admin.php:475 -msgid "" -"Selected users will be deleted!\\n\\nEverything these users had posted on " -"this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "" -"¡Los usuarios seleccionados serán eliminados!\\n\\n¡Todo lo que hayan " -"publicado en este sitio se borrará para siempre!\\n\\n¿Estás seguro?" - -#: ../../mod/admin.php:476 -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 "" -"¡El usuario {0} será eliminado!\\n\\n¡Todo lo que haya publicado en este " -"sitio se borrará para siempre!\\n\\n¿Estás seguro?" - -#: ../../mod/admin.php:512 -#, php-format -msgid "Plugin %s disabled." -msgstr "Módulo %s deshabilitado." - -#: ../../mod/admin.php:516 -#, php-format -msgid "Plugin %s enabled." -msgstr "Módulo %s habilitado." - -#: ../../mod/admin.php:526 -msgid "Disable" -msgstr "Inhabilitado" - -#: ../../mod/admin.php:528 -msgid "Enable" -msgstr "Habilitado" - -#: ../../mod/admin.php:550 -msgid "Toggle" -msgstr "Activar" - -#: ../../mod/admin.php:551 ../../include/nav.php:128 -msgid "Settings" -msgstr "Configuraciones" - -#: ../../mod/admin.php:613 -msgid "Log settings updated." -msgstr "Registro de los parámetros de actualización" - -#: ../../mod/admin.php:653 -msgid "Clear" -msgstr "Limpiar" - -#: ../../mod/admin.php:659 -msgid "Debugging" -msgstr "Depuración" - -#: ../../mod/admin.php:660 -msgid "Log file" -msgstr "Archivo de registro" - -#: ../../mod/admin.php:660 -msgid "Must be writable by web server. Relative to your Friendika index.php." -msgstr "" -"Debes permitirle la escritura al servidor web. Relacionado con Friendika " -"index.php" - -#: ../../mod/admin.php:661 -msgid "Log level" -msgstr "Nivel de registro" - -#: ../../mod/admin.php:702 -msgid "Close" -msgstr "Cerrado" - -#: ../../mod/admin.php:708 -msgid "FTP Host" -msgstr "Host FTP" - -#: ../../mod/admin.php:709 -msgid "FTP Path" -msgstr "Ruta FTP" - -#: ../../mod/admin.php:710 -msgid "FTP User" -msgstr "Usuario FTP" - -#: ../../mod/admin.php:711 -msgid "FTP Password" -msgstr "Contraseña FTP" - -#: ../../mod/item.php:84 -msgid "Unable to locate original post." -msgstr "No se puede encontrar la publicación original." - -#: ../../mod/item.php:199 -msgid "Empty post discarded." -msgstr "Publicación vacía descartada." - -#: ../../mod/item.php:675 ../../mod/item.php:720 ../../mod/item.php:764 -#: ../../mod/item.php:807 ../../include/items.php:1769 -#: ../../include/items.php:2068 ../../include/items.php:2115 -#: ../../include/items.php:2227 ../../include/items.php:2273 -msgid "noreply" -msgstr "no responder" - -#: ../../mod/item.php:719 ../../mod/item.php:806 ../../include/items.php:2272 -msgid "Administrator@" -msgstr "Administrador@" - -#: ../../mod/item.php:722 ../../include/items.php:2117 -#: ../../include/items.php:2275 -#, php-format -msgid "%s commented on an item at %s" -msgstr "%s ha commentato un elemento en %s" - -#: ../../mod/item.php:809 -#, php-format -msgid "%s posted to your profile wall at %s" -msgstr "%s ha publicado en tu muro a las %s" - -#: ../../mod/item.php:843 -msgid "System error. Post not saved." -msgstr "Error del sistema. Mensaje no guardado." - -#: ../../mod/item.php:868 -#, php-format -msgid "" -"This message was sent to you by %s, a member of the Friendika social " -"network." -msgstr "" -"Este mensaje te ha sido enviado por %s, un miembro de la red social " -"Friendika." - -#: ../../mod/item.php:870 -#, php-format -msgid "You may visit them online at %s" -msgstr "Los puedes visitar en línea en %s" - -#: ../../mod/item.php:871 -msgid "" -"Please contact the sender by replying to this post if you do not wish to " -"receive these messages." -msgstr "" -"Por favor contacta con el remitente respondiendo a este mensaje si no deseas" -" recibir estos mensajes." - -#: ../../mod/item.php:873 -#, php-format -msgid "%s posted an update." -msgstr "%s ha publicado una actualización." - -#: ../../mod/tagrm.php:41 -msgid "Tag removed" -msgstr "Etiqueta eliminada" - -#: ../../mod/tagrm.php:79 -msgid "Remove Item Tag" -msgstr "Eliminar etiqueta del elemento" - -#: ../../mod/tagrm.php:81 -msgid "Select a tag to remove: " -msgstr "Seleccione una etiqueta para eliminar:" - -#: ../../mod/tagrm.php:93 -msgid "Remove" -msgstr "Eliminar" - -#: ../../mod/message.php:23 -msgid "No recipient selected." -msgstr "Ningún destinatario seleccionado" - -#: ../../mod/message.php:26 -msgid "Unable to locate contact information." -msgstr "No se puede encontrar información del contacto." - -#: ../../mod/message.php:29 -msgid "Message could not be sent." -msgstr "El mensaje no ha podido ser enviado." - -#: ../../mod/message.php:31 -msgid "Message sent." -msgstr "Mensaje enviado." - -#: ../../mod/message.php:51 -msgid "Inbox" -msgstr "Entrada" - -#: ../../mod/message.php:56 -msgid "Outbox" -msgstr "Enviados" - -#: ../../mod/message.php:61 -msgid "New Message" -msgstr "Nuevo mensaje" - -#: ../../mod/message.php:87 -msgid "Message deleted." -msgstr "Mensaje eliminado." - -#: ../../mod/message.php:103 -msgid "Conversation removed." -msgstr "Conversación eliminada." - -#: ../../mod/message.php:119 ../../include/conversation.php:767 -msgid "Please enter a link URL:" -msgstr "Introduce la dirección del enlace:" - -#: ../../mod/message.php:127 -msgid "Send Private Message" -msgstr "Enviar mensaje privado" - -#: ../../mod/message.php:128 ../../mod/message.php:261 -msgid "To:" -msgstr "Para:" - -#: ../../mod/message.php:129 ../../mod/message.php:262 -msgid "Subject:" -msgstr "Asunto:" - -#: ../../mod/message.php:170 -msgid "No messages." -msgstr "No hay mensajes." - -#: ../../mod/message.php:183 -msgid "Delete conversation" -msgstr "Eliminar conversación" - -#: ../../mod/message.php:186 -msgid "D, d M Y - g:i A" -msgstr "D, d M Y - g:i A" - -#: ../../mod/message.php:213 -msgid "Message not available." -msgstr "Mensaje no disponibile." - -#: ../../mod/message.php:250 -msgid "Delete message" -msgstr "Borrar mensaje" - -#: ../../mod/message.php:260 -msgid "Send Reply" -msgstr "Enviar respuesta" - -#: ../../mod/dfrn_confirm.php:234 +#: ../../mod/dfrn_confirm.php:237 msgid "Response from remote site was not understood." msgstr "La respuesta desde el sitio remoto no ha sido entendida." -#: ../../mod/dfrn_confirm.php:243 +#: ../../mod/dfrn_confirm.php:246 msgid "Unexpected response from remote site: " -msgstr "Respuesta inesperada desde el sitio remoto:" +msgstr "Respuesta inesperada desde el sitio remoto: " -#: ../../mod/dfrn_confirm.php:251 +#: ../../mod/dfrn_confirm.php:254 msgid "Confirmation completed successfully." msgstr "Confirmación completada con éxito." -#: ../../mod/dfrn_confirm.php:253 ../../mod/dfrn_confirm.php:267 -#: ../../mod/dfrn_confirm.php:274 +#: ../../mod/dfrn_confirm.php:256 ../../mod/dfrn_confirm.php:270 +#: ../../mod/dfrn_confirm.php:277 msgid "Remote site reported: " -msgstr "El sito remoto informó:" +msgstr "El sito remoto informó: " -#: ../../mod/dfrn_confirm.php:265 +#: ../../mod/dfrn_confirm.php:268 msgid "Temporary failure. Please wait and try again." msgstr "Error temporal. Por favor, espere y vuelva a intentarlo." -#: ../../mod/dfrn_confirm.php:272 +#: ../../mod/dfrn_confirm.php:275 msgid "Introduction failed or was revoked." msgstr "La presentación ha fallado o ha sido anulada." -#: ../../mod/dfrn_confirm.php:409 +#: ../../mod/dfrn_confirm.php:420 msgid "Unable to set contact photo." msgstr "Imposible establecer la foto del contacto." -#: ../../mod/dfrn_confirm.php:459 ../../include/conversation.php:79 -#: ../../include/diaspora.php:477 +#: ../../mod/dfrn_confirm.php:477 ../../include/diaspora.php:608 +#: ../../include/conversation.php:171 #, php-format msgid "%1$s is now friends with %2$s" -msgstr "%1$s es ahora amigo de %2$s" +msgstr "%1$s ahora es amigo de %2$s" -#: ../../mod/dfrn_confirm.php:530 +#: ../../mod/dfrn_confirm.php:562 #, php-format msgid "No user record found for '%s' " -msgstr "No se ha encontrado a ningún '%s'" +msgstr "No se ha encontrado a ningún '%s' " -#: ../../mod/dfrn_confirm.php:540 +#: ../../mod/dfrn_confirm.php:572 msgid "Our site encryption key is apparently messed up." msgstr "Nuestra clave de cifrado del sitio es aparentemente un lío." -#: ../../mod/dfrn_confirm.php:551 +#: ../../mod/dfrn_confirm.php:583 msgid "Empty site URL was provided or URL could not be decrypted by us." -msgstr "" -"Se ha proporcionado una dirección vacía o no hemos podido descifrarla." +msgstr "Se ha proporcionado una dirección vacía o no hemos podido descifrarla." -#: ../../mod/dfrn_confirm.php:572 +#: ../../mod/dfrn_confirm.php:604 msgid "Contact record was not found for you on our site." msgstr "El contacto no se ha encontrado en nuestra base de datos." -#: ../../mod/dfrn_confirm.php:586 +#: ../../mod/dfrn_confirm.php:618 #, php-format msgid "Site public key not available in contact record for URL %s." -msgstr "" -"La clave pública del sitio no está disponible en los datos del contacto para" -" URL %s." +msgstr "La clave pública del sitio no está disponible en los datos del contacto para %s." -#: ../../mod/dfrn_confirm.php:606 +#: ../../mod/dfrn_confirm.php:638 msgid "" "The ID provided by your system is a duplicate on our system. It should work " "if you try again." -msgstr "" -"La identificación proporcionada por el sistema es un duplicado de nuestro " -"sistema. Debería funcionar si lo intentas de nuevo." +msgstr "La identificación proporcionada por el sistema es un duplicado de nuestro sistema. Debería funcionar si lo intentas de nuevo." -#: ../../mod/dfrn_confirm.php:617 +#: ../../mod/dfrn_confirm.php:649 msgid "Unable to set your contact credentials on our system." -msgstr "" -"No se puede establecer las credenciales de tu contacto en nuestro sistema." +msgstr "No se puede establecer las credenciales de tu contacto en nuestro sistema." -#: ../../mod/dfrn_confirm.php:671 +#: ../../mod/dfrn_confirm.php:716 msgid "Unable to update your contact profile details on our system" -msgstr "" -"No se puede actualizar los datos de tu perfil de contacto en nuestro sistema" +msgstr "No se puede actualizar los datos de tu perfil de contacto en nuestro sistema" -#: ../../mod/dfrn_confirm.php:701 +#: ../../mod/dfrn_confirm.php:750 #, php-format msgid "Connection accepted at %s" -msgstr "Conexión aceptada en % s" +msgstr "Conexión aceptada en %s" -#: ../../mod/openid.php:63 ../../mod/openid.php:123 ../../include/auth.php:122 -#: ../../include/auth.php:147 ../../include/auth.php:201 -msgid "Login failed." -msgstr "Accesso fallido." - -#: ../../mod/openid.php:79 ../../include/auth.php:217 -msgid "Welcome " -msgstr "Bienvenido" - -#: ../../mod/openid.php:80 ../../include/auth.php:218 -msgid "Please upload a profile photo." -msgstr "Por favor sube una foto para tu perfil." - -#: ../../mod/openid.php:83 ../../include/auth.php:221 -msgid "Welcome back " -msgstr "Bienvenido de nuevo" - -#: ../../mod/dfrn_poll.php:90 ../../mod/dfrn_poll.php:516 +#: ../../mod/dfrn_confirm.php:799 #, php-format -msgid "%s welcomes %s" -msgstr "%s te da la bienvenida a %s" +msgid "%1$s has joined %2$s" +msgstr "%1$s se ha unido a %2$s" -#: ../../mod/viewcontacts.php:25 ../../include/text.php:567 -msgid "View Contacts" -msgstr "Ver contactos" +#: ../../addon/fromgplus/fromgplus.php:29 +msgid "Google+ Import Settings" +msgstr "Configuración de la importación de Google+" -#: ../../mod/viewcontacts.php:40 -msgid "No contacts." -msgstr "Ningún contacto." +#: ../../addon/fromgplus/fromgplus.php:32 +msgid "Enable Google+ Import" +msgstr "Habilitar la importación de Google+" -#: ../../mod/group.php:27 -msgid "Group created." -msgstr "Grupo creado." +#: ../../addon/fromgplus/fromgplus.php:35 +msgid "Google Account ID" +msgstr "ID de la cuenta de Google" -#: ../../mod/group.php:33 -msgid "Could not create group." -msgstr "Imposible crear el grupo." +#: ../../addon/fromgplus/fromgplus.php:55 +msgid "Google+ Import Settings saved." +msgstr "Configuración de la importación de Google+ guardada." -#: ../../mod/group.php:43 ../../mod/group.php:123 -msgid "Group not found." -msgstr "Grupo no encontrado." +#: ../../addon/facebook/facebook.php:523 +msgid "Facebook disabled" +msgstr "Facebook deshabilitado" -#: ../../mod/group.php:56 -msgid "Group name changed." -msgstr "El nombre del grupo ha cambiado." +#: ../../addon/facebook/facebook.php:528 +msgid "Updating contacts" +msgstr "Actualizando contactos" -#: ../../mod/group.php:82 -msgid "Create a group of contacts/friends." -msgstr "Crea un grupo de contactos/amigos." +#: ../../addon/facebook/facebook.php:551 ../../addon/fbpost/fbpost.php:192 +msgid "Facebook API key is missing." +msgstr "Falta la clave API de Facebook." -#: ../../mod/group.php:83 ../../mod/group.php:166 -msgid "Group Name: " -msgstr "Nombre del grupo: " +#: ../../addon/facebook/facebook.php:558 +msgid "Facebook Connect" +msgstr "Conexión con Facebook" -#: ../../mod/group.php:98 -msgid "Group removed." -msgstr "Grupo eliminado." +#: ../../addon/facebook/facebook.php:564 +msgid "Install Facebook connector for this account." +msgstr "Instalar el conector de Facebook para esta cuenta." -#: ../../mod/group.php:100 -msgid "Unable to remove group." -msgstr "No se puede eliminar el grupo." +#: ../../addon/facebook/facebook.php:571 +msgid "Remove Facebook connector" +msgstr "Eliminar el conector de Facebook" -#: ../../mod/group.php:165 -msgid "Group Editor" -msgstr "Editor de grupos" - -#: ../../mod/group.php:179 -msgid "Members" -msgstr "Miembros" - -#: ../../mod/group.php:194 -msgid "All Contacts" -msgstr "Todos los contactos" - -#: ../../mod/attach.php:8 -msgid "Item not available." -msgstr "Elemento no disponible." - -#: ../../mod/attach.php:20 -msgid "Item was not found." -msgstr "Elemento no encontrado." - -#: ../../mod/common.php:34 -msgid "Common Friends" -msgstr "Amigos comunes" - -#: ../../mod/common.php:42 -msgid "No friends in common." -msgstr "No hay amigos en común." - -#: ../../mod/match.php:10 -msgid "Profile Match" -msgstr "Coincidencias de Perfil" - -#: ../../mod/match.php:18 -msgid "No keywords to match. Please add keywords to your default profile." -msgstr "" -"No hay palabras clave que coincidan. Por favor, agrega palabras claves a tu " -"perfil predeterminado." - -#: ../../mod/community.php:21 -msgid "Not available." -msgstr "No disponible" - -#: ../../mod/community.php:30 ../../include/nav.php:97 -msgid "Community" -msgstr "Comunidad" - -#: ../../mod/community.php:87 +#: ../../addon/facebook/facebook.php:576 ../../addon/fbpost/fbpost.php:217 msgid "" -"Shared content is covered by the Creative Commons " -"Attribution 3.0 license." -msgstr "" -"El contenido en común está cubierto por la licencia Creative Commons" -" Atribución 3.0." +"Re-authenticate [This is necessary whenever your Facebook password is " +"changed.]" +msgstr "Volver a identificarse [Esto es necesario cada vez que tu contraseña de Facebook cambie.]" -#: ../../addon/tumblr/tumblr.php:35 -msgid "Post to Tumblr" -msgstr "Publicar en Tumblr" +#: ../../addon/facebook/facebook.php:583 ../../addon/fbpost/fbpost.php:224 +msgid "Post to Facebook by default" +msgstr "Publicar en Facebook de forma predeterminada" -#: ../../addon/tumblr/tumblr.php:66 -msgid "Tumblr Post Settings" -msgstr "Configuración de publicación en Tumblr" - -#: ../../addon/tumblr/tumblr.php:68 -msgid "Enable Tumblr Post Plugin" -msgstr "Habilitar el plugin de publicación en Tumblr" - -#: ../../addon/tumblr/tumblr.php:73 -msgid "Tumblr login" -msgstr "Tumblr - inicio de sesión" - -#: ../../addon/tumblr/tumblr.php:78 -msgid "Tumblr password" -msgstr "Tumblr - contraseña" - -#: ../../addon/tumblr/tumblr.php:83 -msgid "Post to Tumblr by default" -msgstr "Publicar a Tumblr por defecto" - -#: ../../addon/tumblr/tumblr.php:174 ../../addon/wppost/wppost.php:171 -msgid "Post from Friendica" -msgstr "Publicar desde Friendica" - -#: ../../addon/twitter/twitter.php:78 -msgid "Post to Twitter" -msgstr "Publicar en Twitter" - -#: ../../addon/twitter/twitter.php:123 -msgid "Twitter settings updated." -msgstr "Actualización de la configuración de Twitter" - -#: ../../addon/twitter/twitter.php:145 -msgid "Twitter Posting Settings" -msgstr "Configuración de publicaciones en Twitter" - -#: ../../addon/twitter/twitter.php:152 +#: ../../addon/facebook/facebook.php:589 msgid "" -"No consumer key pair for Twitter found. Please contact your site " -"administrator." -msgstr "" -"No se ha encontrado ningún par de claves para Twitter. Póngase en contacto " -"con el administrador del sitio." +"Facebook friend linking has been disabled on this site. The following " +"settings will have no effect." +msgstr "El enlace con los contactos de Facebook ha sido desactivado en este servidor. La configuración no tendrá efecto alguno." -#: ../../addon/twitter/twitter.php:171 +#: ../../addon/facebook/facebook.php:593 msgid "" -"At this Friendika 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 "" -"En esta instancia de Friendika el plugin de Twitter fue habilitado, pero aún" -" no has vinculado tu cuenta a tu cuenta de Twitter. Para ello haz clic en el" -" botón de abajo para obtener un PIN de Twitter, que tiene que copiar en el " -"cuadro de entrada y enviar el formulario. Solo sus posts " -"públicos se publicarán en Twitter." +"Facebook friend linking has been disabled on this site. If you disable it, " +"you will be unable to re-enable it." +msgstr "El enlace con los contactos de Facebook ha sido desactivado en este servidor. Si se desactiva no podrá volver a reactivarse." -#: ../../addon/twitter/twitter.php:172 -msgid "Log in with Twitter" -msgstr "Acceder con Twitter" +#: ../../addon/facebook/facebook.php:596 +msgid "Link all your Facebook friends and conversations on this website" +msgstr "Vincula a todos tus amigos de Facebook y las conversaciones con este sitio" -#: ../../addon/twitter/twitter.php:174 -msgid "Copy the PIN from Twitter here" -msgstr "Copia el PIN de Twitter aquí" - -#: ../../addon/twitter/twitter.php:188 ../../addon/statusnet/statusnet.php:337 -msgid "Currently connected to: " -msgstr "Actualmente conectado a:" - -#: ../../addon/twitter/twitter.php:189 +#: ../../addon/facebook/facebook.php:598 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 "" -"Si lo habilitas todas tus publicaciones públicas serán " -"publicadas en la cuenta de Twitter asociada. Puedes elegir hacerlo por " -"defecto (aquí) o individualmente para cada publicación usando las opciones " -"cuando escribes." +"Facebook conversations consist of your profile wall and your friend" +" stream." +msgstr "Las conversaciones de Facebook consisten en tu muro, tu perfil y las publicaciones de tus amigos." -#: ../../addon/twitter/twitter.php:191 -msgid "Allow posting to Twitter" -msgstr "Permitir publicar en Twitter" +#: ../../addon/facebook/facebook.php:599 +msgid "On this website, your Facebook friend stream is only visible to you." +msgstr "En esta página las publicaciones de tus amigos de Facebook solo son visibles para ti." -#: ../../addon/twitter/twitter.php:194 -msgid "Send public postings to Twitter by default" -msgstr "Enviar publicaciones públicas a Twitter por defecto" - -#: ../../addon/twitter/twitter.php:199 ../../addon/statusnet/statusnet.php:348 -msgid "Clear OAuth configuration" -msgstr "Borrar la configuración de OAuth" - -#: ../../addon/twitter/twitter.php:301 -msgid "Consumer key" -msgstr "Clave consumer" - -#: ../../addon/twitter/twitter.php:302 -msgid "Consumer secret" -msgstr "Secreto consumer" - -#: ../../addon/statusnet/statusnet.php:141 -msgid "Post to StatusNet" -msgstr "Publicar en StatusNet" - -#: ../../addon/statusnet/statusnet.php:183 +#: ../../addon/facebook/facebook.php:600 msgid "" -"Please contact your site administrator.
    The provided API URL is not " -"valid." -msgstr "" -"Por favor contacta con el administrador de tu web.
    La dirección API " -"suministrada no es válida." +"The following settings determine the privacy of your Facebook profile wall " +"on this website." +msgstr "La siguiente configuración determina la privacidad del muro de tu perfil de Facebook en este sitio." -#: ../../addon/statusnet/statusnet.php:211 -msgid "We could not contact the StatusNet API with the Path you entered." -msgstr "No podemos contantar con StatusNet en la ruta que has especificado." - -#: ../../addon/statusnet/statusnet.php:238 -msgid "StatusNet settings updated." -msgstr "Actualición de la configuración de StatusNet." - -#: ../../addon/statusnet/statusnet.php:261 -msgid "StatusNet Posting Settings" -msgstr "Configuración de envío a StatusNet" - -#: ../../addon/statusnet/statusnet.php:275 -msgid "Globally Available StatusNet OAuthKeys" -msgstr "StatusNet OAuthKeys disponibles para todos" - -#: ../../addon/statusnet/statusnet.php:276 +#: ../../addon/facebook/facebook.php:604 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 "" -"Existen pares de valores OAuthKey preconfigurados para algunos servidores. " -"Si usas uno de ellos, por favor usa estas credenciales. De los contrario no " -"dudes en conectar con cualquiera otra instancia de StatusNet (ver a " -"continuación)." +"On this website your Facebook profile wall conversations will only be " +"visible to you" +msgstr "En este sitio las publicaciones del muro de Facebook solo son visibles para ti" -#: ../../addon/statusnet/statusnet.php:284 -msgid "Provide your own OAuth Credentials" -msgstr "Proporciona tus propias credenciales OAuth" +#: ../../addon/facebook/facebook.php:609 +msgid "Do not import your Facebook profile wall conversations" +msgstr "No importar las conversaciones de tu muro de Facebook" -#: ../../addon/statusnet/statusnet.php:285 +#: ../../addon/facebook/facebook.php:611 msgid "" -"No consumer key pair for StatusNet found. Register your Friendika 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 " -"Friendika installation at your favorited StatusNet installation." -msgstr "" -"No se ha encontrado ningún par de claves para StatusNet. Registra tu cuenta " -"de Friendika como cliente de escritorio en tu cuenta de StatusNet, copia la " -"clave consumer aquí y escribe la dirección de la base API.
    Antes de " -"registrar tu propio par de claves OAuth, pregunta al administrador si ya hay" -" un par de claves para esta instalación de Friendika en tu instalación " -"StatusNet favorita." +"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 "Si decides conectar las conversaciones y dejar ambas casillas sin marcar, el muro de tu perfil de Facebook se fusionará con el muro de tu perfil en este sitio y la configuración de privacidad en este sitio será utilizada para determinar quién puede ver las conversaciones." -#: ../../addon/statusnet/statusnet.php:287 -msgid "OAuth Consumer Key" -msgstr "OAuth Consumer Key" +#: ../../addon/facebook/facebook.php:616 +msgid "Comma separated applications to ignore" +msgstr "Aplicaciones a ignorar separadas por comas" -#: ../../addon/statusnet/statusnet.php:290 -msgid "OAuth Consumer Secret" -msgstr "OAuth Consumer Secret" +#: ../../addon/facebook/facebook.php:700 +msgid "Problems with Facebook Real-Time Updates" +msgstr "Hay problemas con las actualizaciones en tiempo real de Facebook" -#: ../../addon/statusnet/statusnet.php:293 -msgid "Base API Path (remember the trailing /)" -msgstr "Dirección de base para la API (recordar el / al final)" +#: ../../addon/facebook/facebook.php:729 +msgid "Facebook Connector Settings" +msgstr "Configuración de conexión a Facebook" -#: ../../addon/statusnet/statusnet.php:314 +#: ../../addon/facebook/facebook.php:744 ../../addon/fbpost/fbpost.php:255 +msgid "Facebook API Key" +msgstr "Llave API de Facebook" + +#: ../../addon/facebook/facebook.php:754 ../../addon/fbpost/fbpost.php:262 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 "" -"Para conectarse a tu cuenta de StatusNet haga clic en el botón abajo para " -"obtener un PIN de StatusNet, que tiene que copiar en el cuadro de entrada y " -"enviar el formulario. Solo sus posts públicos se publicarán" -" en StatusNet." +"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 "Error: parece que la App-ID y el -Secret ya están configurados en tu archivo .htconfig.php. Al estar configurados allí, no se usará este formulario.

    " -#: ../../addon/statusnet/statusnet.php:315 -msgid "Log in with StatusNet" -msgstr "Inicia sesión con StatusNet" - -#: ../../addon/statusnet/statusnet.php:317 -msgid "Copy the security code from StatusNet here" -msgstr "Copia el código de seguridad de StatusNet aquí" - -#: ../../addon/statusnet/statusnet.php:323 -msgid "Cancel Connection Process" -msgstr "Cancelar la conexión en proceso" - -#: ../../addon/statusnet/statusnet.php:325 -msgid "Current StatusNet API is" -msgstr "El estado actual de la API de StatusNet es" - -#: ../../addon/statusnet/statusnet.php:326 -msgid "Cancel StatusNet Connection" -msgstr "Cancelar conexión con StatusNet" - -#: ../../addon/statusnet/statusnet.php:338 +#: ../../addon/facebook/facebook.php:759 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 "" -"Si lo habilitas todas tus publicaciones
    públicas
    podrán " -"ser publicadas en la cuenta asociada de StatusNet. Pudes elegir hacerlo por " -"defecto (aquí) o para cada publicación individualmente en las opciones de " -"publicacion cuando la estás escribiendo." +"Error: the given API Key seems to be incorrect (the application access token" +" could not be retrieved)." +msgstr "Error: la llave API proporcionada parece incorrecta (no se pudo recuperar la ficha de acceso a la aplicación)." -#: ../../addon/statusnet/statusnet.php:340 -msgid "Allow posting to StatusNet" -msgstr "Permitir publicaciones en StatusNet" +#: ../../addon/facebook/facebook.php:761 +msgid "The given API Key seems to work correctly." +msgstr "La Llave API proporcionada parece funcionar correctamente." -#: ../../addon/statusnet/statusnet.php:343 -msgid "Send public postings to StatusNet by default" -msgstr "Enviar publicaciones públicas a StatusNet por defecto" +#: ../../addon/facebook/facebook.php:763 +msgid "" +"The correctness of the API Key could not be detected. Something strange's " +"going on." +msgstr "No se ha podido detectar una llave API correcta. Algo raro está pasando." -#: ../../addon/statusnet/statusnet.php:478 -msgid "API URL" -msgstr "Dirección de la API" +#: ../../addon/facebook/facebook.php:766 ../../addon/fbpost/fbpost.php:264 +msgid "App-ID / API-Key" +msgstr "Añadir ID / Llave API" -#: ../../addon/oembed/oembed.php:30 -msgid "OEmbed settings updated" -msgstr "Actualizar la configuración de OEmbed" +#: ../../addon/facebook/facebook.php:767 ../../addon/fbpost/fbpost.php:265 +msgid "Application secret" +msgstr "Secreto de la aplicación" -#: ../../addon/oembed/oembed.php:43 -msgid "Use OEmbed for YouTube videos" -msgstr "Usar OEmbed para los vídeos de YouTube" +#: ../../addon/facebook/facebook.php:768 +#, php-format +msgid "Polling Interval in minutes (minimum %1$s minutes)" +msgstr "Intervalo del sondeo en minutos (mínimo %1$s minutos)" -#: ../../addon/oembed/oembed.php:71 -msgid "URL to embed:" -msgstr "Dirección del recurso:" +#: ../../addon/facebook/facebook.php:769 +msgid "" +"Synchronize comments (no comments on Facebook are missed, at the cost of " +"increased system load)" +msgstr "Sincronizar comentarios (no se perderán comentarios de Facebook, pero se incrementará la carga del sistema)" + +#: ../../addon/facebook/facebook.php:773 +msgid "Real-Time Updates" +msgstr "Actualizaciones en tiempo real" + +#: ../../addon/facebook/facebook.php:777 +msgid "Real-Time Updates are activated." +msgstr "Actualizaciones en tiempo real activada." + +#: ../../addon/facebook/facebook.php:778 +msgid "Deactivate Real-Time Updates" +msgstr "Desactivar actualizaciones en tiempo real" + +#: ../../addon/facebook/facebook.php:780 +msgid "Real-Time Updates not activated." +msgstr "Actualizaciones en tiempo real desactivada." + +#: ../../addon/facebook/facebook.php:780 +msgid "Activate Real-Time Updates" +msgstr "Activar actualizaciones en tiempo real" + +#: ../../addon/facebook/facebook.php:799 ../../addon/fbpost/fbpost.php:282 +#: ../../addon/dav/friendica/layout.fnk.php:361 +msgid "The new values have been saved." +msgstr "Los nuevos valores se han guardado." + +#: ../../addon/facebook/facebook.php:823 ../../addon/fbpost/fbpost.php:301 +msgid "Post to Facebook" +msgstr "Publicar en Facebook" + +#: ../../addon/facebook/facebook.php:921 ../../addon/fbpost/fbpost.php:399 +msgid "" +"Post to Facebook cancelled because of multi-network access permission " +"conflict." +msgstr "Publicación en Facebook cancelada debido a un conflicto con los permisos de acceso a la multi-red." + +#: ../../addon/facebook/facebook.php:1149 ../../addon/fbpost/fbpost.php:610 +msgid "View on Friendica" +msgstr "Ver en Friendica" + +#: ../../addon/facebook/facebook.php:1182 ../../addon/fbpost/fbpost.php:643 +msgid "Facebook post failed. Queued for retry." +msgstr "Publicación en Facebook errónea. Reintentando..." + +#: ../../addon/facebook/facebook.php:1222 ../../addon/fbpost/fbpost.php:683 +msgid "Your Facebook connection became invalid. Please Re-authenticate." +msgstr "Tu conexión con Facebook ha sido invalidada. Por favor vuelve a identificarte." + +#: ../../addon/facebook/facebook.php:1223 ../../addon/fbpost/fbpost.php:684 +msgid "Facebook connection became invalid" +msgstr "La conexión con Facebook ha sido invalidada" + +#: ../../addon/facebook/facebook.php:1224 ../../addon/fbpost/fbpost.php:685 +#, php-format +msgid "" +"Hi %1$s,\n" +"\n" +"The connection between your accounts on %2$s and Facebook became invalid. This usually happens after you change your Facebook-password. To enable the connection again, you have to %3$sre-authenticate the Facebook-connector%4$s." +msgstr "Hola %1$s,\n\nLa conexión entre tu cuenta de %2$s y Facebook se ha roto. Normalmente esto suele ocurrir si has cambiado tu contraseña de Facebook. Para volver a establecerla, tienes que %3$sidentificarte de nuevo en el conector de Facebook%4$s." + +#: ../../addon/snautofollow/snautofollow.php:32 +msgid "StatusNet AutoFollow settings updated." +msgstr "Configuración para seguir automáticamente en StatusNet actualizada." + +#: ../../addon/snautofollow/snautofollow.php:56 +msgid "StatusNet AutoFollow Settings" +msgstr "Configuración para el seguimiento automático en StatusNet" + +#: ../../addon/snautofollow/snautofollow.php:58 +msgid "Automatically follow any StatusNet followers/mentioners" +msgstr "Seguir automáticamente a cualquiera que me siga/mencione en StatusNet" + +#: ../../addon/bg/bg.php:51 +msgid "Bg settings updated." +msgstr "Ajustes de fondo actualizados." + +#: ../../addon/bg/bg.php:82 +msgid "Bg Settings" +msgstr "Ajustes de fondo" + +#: ../../addon/bg/bg.php:84 ../../addon/numfriends/numfriends.php:79 +msgid "How many contacts to display on profile sidebar" +msgstr "¿Cuántos contactos quieres mostrar en la barra lateral de tu perfil?" + +#: ../../addon/privacy_image_cache/privacy_image_cache.php:260 +msgid "Lifetime of the cache (in hours)" +msgstr "Vida útil de la caché (en horas)" + +#: ../../addon/privacy_image_cache/privacy_image_cache.php:265 +msgid "Cache Statistics" +msgstr "Estadísticas de la caché" + +#: ../../addon/privacy_image_cache/privacy_image_cache.php:268 +msgid "Number of items" +msgstr "Número de ítems" + +#: ../../addon/privacy_image_cache/privacy_image_cache.php:270 +msgid "Size of the cache" +msgstr "Tamaño de la caché" + +#: ../../addon/privacy_image_cache/privacy_image_cache.php:272 +msgid "Delete the whole cache" +msgstr "Borrar toda la caché" + +#: ../../addon/fbpost/fbpost.php:172 +msgid "Facebook Post disabled" +msgstr "Facebook deshabilitado" + +#: ../../addon/fbpost/fbpost.php:199 +msgid "Facebook Post" +msgstr "Facebook" + +#: ../../addon/fbpost/fbpost.php:205 +msgid "Install Facebook Post connector for this account." +msgstr "Instalar el conector de Facebook para esta cuenta." + +#: ../../addon/fbpost/fbpost.php:212 +msgid "Remove Facebook Post connector" +msgstr "Eliminar el conector de Facebook" + +#: ../../addon/fbpost/fbpost.php:240 +msgid "Facebook Post Settings" +msgstr "Configuración de conexión a Facebook" + +#: ../../addon/widgets/widget_like.php:58 +#, php-format +msgid "%d person likes this" +msgid_plural "%d people like this" +msgstr[0] "a %d persona le gusta esto" +msgstr[1] "a %d personas les gusta esto" + +#: ../../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] "a %d persona no le gusta esto" +msgstr[1] "a %d personas no les gusta esto" + +#: ../../addon/widgets/widget_friendheader.php:40 +msgid "Get added to this list!" +msgstr "¡Añadido a la lista!" + +#: ../../addon/widgets/widgets.php:56 +msgid "Generate new key" +msgstr "Generar clave nueva" + +#: ../../addon/widgets/widgets.php:59 +msgid "Widgets key" +msgstr "Clave de aplicaciones" + +#: ../../addon/widgets/widgets.php:61 +msgid "Widgets available" +msgstr "Aplicaciones disponibles" + +#: ../../addon/widgets/widget_friends.php:40 +msgid "Connect on Friendica!" +msgstr "¡Conéctate en Friendica!" + +#: ../../addon/morepokes/morepokes.php:19 +msgid "bitchslap" +msgstr "abofetear fuerte" + +#: ../../addon/morepokes/morepokes.php:19 +msgid "bitchslapped" +msgstr "abofeteó fuertemente a" + +#: ../../addon/morepokes/morepokes.php:20 +msgid "shag" +msgstr "picar" + +#: ../../addon/morepokes/morepokes.php:20 +msgid "shagged" +msgstr "picó a" + +#: ../../addon/morepokes/morepokes.php:21 +msgid "do something obscenely biological to" +msgstr "hacer algo obsceno y biológico a" + +#: ../../addon/morepokes/morepokes.php:21 +msgid "did something obscenely biological to" +msgstr "hizo algo obsceno y biológico a" + +#: ../../addon/morepokes/morepokes.php:22 +msgid "point out the poke feature to" +msgstr "señalar la habilidad de toques a" + +#: ../../addon/morepokes/morepokes.php:22 +msgid "pointed out the poke feature to" +msgstr "señaló la habilidad de toques a" + +#: ../../addon/morepokes/morepokes.php:23 +msgid "declare undying love for" +msgstr "declarar amor incondicional a" + +#: ../../addon/morepokes/morepokes.php:23 +msgid "declared undying love for" +msgstr "declaró amor incondicional a" + +#: ../../addon/morepokes/morepokes.php:24 +msgid "patent" +msgstr "patentar" + +#: ../../addon/morepokes/morepokes.php:24 +msgid "patented" +msgstr "patentó" + +#: ../../addon/morepokes/morepokes.php:25 +msgid "stroke beard" +msgstr "acariciar barba" + +#: ../../addon/morepokes/morepokes.php:25 +msgid "stroked their beard at" +msgstr "acarició su barba a" + +#: ../../addon/morepokes/morepokes.php:26 +msgid "" +"bemoan the declining standards of modern secondary and tertiary education to" +msgstr "deplorar los bajos estándares de educación secundaria y terciaria moderna a" + +#: ../../addon/morepokes/morepokes.php:26 +msgid "" +"bemoans the declining standards of modern secondary and tertiary education " +"to" +msgstr "deplora los bajos estándares de educación secundaria y terciaria moderna a" + +#: ../../addon/morepokes/morepokes.php:27 +msgid "hug" +msgstr "abrazar" + +#: ../../addon/morepokes/morepokes.php:27 +msgid "hugged" +msgstr "abrazó a" + +#: ../../addon/morepokes/morepokes.php:28 +msgid "kiss" +msgstr "besar" + +#: ../../addon/morepokes/morepokes.php:28 +msgid "kissed" +msgstr "besó a" + +#: ../../addon/morepokes/morepokes.php:29 +msgid "raise eyebrows at" +msgstr "alzar las cejas a" + +#: ../../addon/morepokes/morepokes.php:29 +msgid "raised their eyebrows at" +msgstr "alzó sus cejas a" + +#: ../../addon/morepokes/morepokes.php:30 +msgid "insult" +msgstr "insultar" + +#: ../../addon/morepokes/morepokes.php:30 +msgid "insulted" +msgstr "insultó a" + +#: ../../addon/morepokes/morepokes.php:31 +msgid "praise" +msgstr "alabar" + +#: ../../addon/morepokes/morepokes.php:31 +msgid "praised" +msgstr "alabó a" + +#: ../../addon/morepokes/morepokes.php:32 +msgid "be dubious of" +msgstr "dudar de" + +#: ../../addon/morepokes/morepokes.php:32 +msgid "was dubious of" +msgstr "dudó de" + +#: ../../addon/morepokes/morepokes.php:33 +msgid "eat" +msgstr "comer" + +#: ../../addon/morepokes/morepokes.php:33 +msgid "ate" +msgstr "comió" + +#: ../../addon/morepokes/morepokes.php:34 +msgid "giggle and fawn at" +msgstr "reír y carcajearse de" + +#: ../../addon/morepokes/morepokes.php:34 +msgid "giggled and fawned at" +msgstr "rió y se carcajeó de" + +#: ../../addon/morepokes/morepokes.php:35 +msgid "doubt" +msgstr "dudar" + +#: ../../addon/morepokes/morepokes.php:35 +msgid "doubted" +msgstr "dudó" + +#: ../../addon/morepokes/morepokes.php:36 +msgid "glare" +msgstr "mirar fijamente" + +#: ../../addon/morepokes/morepokes.php:36 +msgid "glared at" +msgstr "miró fijamente a" + +#: ../../addon/yourls/yourls.php:55 +msgid "YourLS Settings" +msgstr "Tu configuración LS" + +#: ../../addon/yourls/yourls.php:57 +msgid "URL: http://" +msgstr "Dirección: http://" + +#: ../../addon/yourls/yourls.php:62 +msgid "Username:" +msgstr "Nombre de Usuario:" + +#: ../../addon/yourls/yourls.php:67 +msgid "Password:" +msgstr "Contraseña:" + +#: ../../addon/yourls/yourls.php:72 +msgid "Use SSL " +msgstr "Usar SSL " + +#: ../../addon/yourls/yourls.php:92 +msgid "yourls Settings saved." +msgstr "La configuración se ha guardado." + +#: ../../addon/ljpost/ljpost.php:39 +msgid "Post to LiveJournal" +msgstr "Publicar en Livejournal" + +#: ../../addon/ljpost/ljpost.php:70 +msgid "LiveJournal Post Settings" +msgstr "Configuración de las publicaciones en Livejournal" + +#: ../../addon/ljpost/ljpost.php:72 +msgid "Enable LiveJournal Post Plugin" +msgstr "Activar el módulo de publicación en Livejournal" + +#: ../../addon/ljpost/ljpost.php:77 +msgid "LiveJournal username" +msgstr "Nombre de usuario de Livejournal" + +#: ../../addon/ljpost/ljpost.php:82 +msgid "LiveJournal password" +msgstr "Contraseña de Livejournal" + +#: ../../addon/ljpost/ljpost.php:87 +msgid "Post to LiveJournal by default" +msgstr "Publicar en Livejournal por defecto" + +#: ../../addon/nsfw/nsfw.php:78 +msgid "Not Safe For Work (General Purpose Content Filter) settings" +msgstr "Configuración \"Not Safe For Work\" (Filtro de contenido de carácter general)" + +#: ../../addon/nsfw/nsfw.php:80 +msgid "" +"This plugin looks in posts for the words/text you specify below, and " +"collapses any content containing those keywords so it is not displayed at " +"inappropriate times, such as sexual innuendo that may be improper in a work " +"setting. It is polite and recommended to tag any content containing nudity " +"with #NSFW. This filter can also match any other word/text you specify, and" +" can thereby be used as a general purpose content filter." +msgstr "Este complemento busca las palabras clave que especifiques y oculta cualquier comentario que contenga dichas claves, para que no aparezcan en momentos inoportunos, como por ejemplo, material sexual. Se considera de buena educación y correcto etiquetar los desnudos con #NSFW. Este filtro puede servir para filtrar otro contenido, así que te puede servir como un filtro de carácter general, escogiendo las palabras clave adecuadas." + +#: ../../addon/nsfw/nsfw.php:81 +msgid "Enable Content filter" +msgstr "Activar el filtro de contenido" + +#: ../../addon/nsfw/nsfw.php:84 +msgid "Comma separated list of keywords to hide" +msgstr "Palabras clave para ocultar, lista separada por comas" + +#: ../../addon/nsfw/nsfw.php:89 +msgid "Use /expression/ to provide regular expressions" +msgstr "Usa /expresión/ para proporcionar expresiones regulares" + +#: ../../addon/nsfw/nsfw.php:105 +msgid "NSFW Settings saved." +msgstr "Configuración NSFW guardada." + +#: ../../addon/nsfw/nsfw.php:157 +#, php-format +msgid "%s - Click to open/close" +msgstr "%s - Pulsa aquí para abrir/cerrar" + +#: ../../addon/page/page.php:61 ../../addon/page/page.php:91 +#: ../../addon/forumlist/forumlist.php:54 +msgid "Forums" +msgstr "Foros" + +#: ../../addon/page/page.php:129 ../../addon/forumlist/forumlist.php:88 +msgid "Forums:" +msgstr "Foros:" + +#: ../../addon/page/page.php:165 +msgid "Page settings updated." +msgstr "Configuración de la página actualizada" + +#: ../../addon/page/page.php:194 +msgid "Page Settings" +msgstr "Configuración de la página" + +#: ../../addon/page/page.php:196 ../../addon/forumlist/forumlist.php:155 +msgid "How many forums to display on sidebar without paging" +msgstr "¿Cuántos foros se mostrarán en la barra lateral?" + +#: ../../addon/page/page.php:199 +msgid "Randomise Page/Forum list" +msgstr "Lista de Página/Foro al azar" + +#: ../../addon/page/page.php:202 +msgid "Show pages/forums on profile page" +msgstr "Mostrar páginas/foros en tu perfil" + +#: ../../addon/planets/planets.php:150 +msgid "Planets Settings" +msgstr "Configuración de Planets" + +#: ../../addon/planets/planets.php:152 +msgid "Enable Planets Plugin" +msgstr "Activar el módulo de planetas Planets" + +#: ../../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:912 +msgid "Login" +msgstr "Acceder" + +#: ../../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 "Últimos usuarios" + +#: ../../addon/communityhome/communityhome.php:81 +#: ../../addon/communityhome/twillingham/communityhome.php:81 +msgid "Most active users" +msgstr "Usuarios más activos" + +#: ../../addon/communityhome/communityhome.php:98 +msgid "Latest photos" +msgstr "Últimas fotos" + +#: ../../addon/communityhome/communityhome.php:133 +msgid "Latest likes" +msgstr "Últimos me gusta" + +#: ../../addon/communityhome/communityhome.php:155 +#: ../../view/theme/diabook/theme.php:562 ../../include/text.php:1437 +#: ../../include/conversation.php:117 ../../include/conversation.php:245 +msgid "event" +msgstr "evento" + +#: ../../addon/dav/common/wdcal_backend.inc.php:92 +#: ../../addon/dav/common/wdcal_backend.inc.php:166 +#: ../../addon/dav/common/wdcal_backend.inc.php:178 +#: ../../addon/dav/common/wdcal_backend.inc.php:206 +#: ../../addon/dav/common/wdcal_backend.inc.php:214 +#: ../../addon/dav/common/wdcal_backend.inc.php:229 +msgid "No access" +msgstr "Sin acceso" + +#: ../../addon/dav/common/wdcal_edit.inc.php:30 +#: ../../addon/dav/common/wdcal_edit.inc.php:738 +msgid "Could not open component for editing" +msgstr "No se puede abrir para editar" + +#: ../../addon/dav/common/wdcal_edit.inc.php:140 +#: ../../addon/dav/friendica/layout.fnk.php:143 +#: ../../addon/dav/friendica/layout.fnk.php:422 +msgid "Go back to the calendar" +msgstr "Volver al calendario" + +#: ../../addon/dav/common/wdcal_edit.inc.php:144 +msgid "Event data" +msgstr "Datos del evento" + +#: ../../addon/dav/common/wdcal_edit.inc.php:146 +#: ../../addon/dav/friendica/main.php:239 +msgid "Calendar" +msgstr "Calendario" + +#: ../../addon/dav/common/wdcal_edit.inc.php:163 +msgid "Special color" +msgstr "Color especial" + +#: ../../addon/dav/common/wdcal_edit.inc.php:169 +msgid "Subject" +msgstr "Asunto" + +#: ../../addon/dav/common/wdcal_edit.inc.php:173 +msgid "Starts" +msgstr "Comienzo" + +#: ../../addon/dav/common/wdcal_edit.inc.php:178 +msgid "Ends" +msgstr "Final" + +#: ../../addon/dav/common/wdcal_edit.inc.php:185 +msgid "Description" +msgstr "Descripción" + +#: ../../addon/dav/common/wdcal_edit.inc.php:188 +msgid "Recurrence" +msgstr "Recurrencia" + +#: ../../addon/dav/common/wdcal_edit.inc.php:190 +msgid "Frequency" +msgstr "Frecuencia" + +#: ../../addon/dav/common/wdcal_edit.inc.php:194 +#: ../../include/contact_selectors.php:59 +msgid "Daily" +msgstr "Diariamente" + +#: ../../addon/dav/common/wdcal_edit.inc.php:197 +#: ../../include/contact_selectors.php:60 +msgid "Weekly" +msgstr "Semanalmente" + +#: ../../addon/dav/common/wdcal_edit.inc.php:200 +#: ../../include/contact_selectors.php:61 +msgid "Monthly" +msgstr "Mensualmente" + +#: ../../addon/dav/common/wdcal_edit.inc.php:203 +msgid "Yearly" +msgstr "Anual" + +#: ../../addon/dav/common/wdcal_edit.inc.php:214 +#: ../../include/datetime.php:288 +msgid "days" +msgstr "días" + +#: ../../addon/dav/common/wdcal_edit.inc.php:215 +#: ../../include/datetime.php:287 +msgid "weeks" +msgstr "semanas" + +#: ../../addon/dav/common/wdcal_edit.inc.php:216 +#: ../../include/datetime.php:286 +msgid "months" +msgstr "meses" + +#: ../../addon/dav/common/wdcal_edit.inc.php:217 +#: ../../include/datetime.php:285 +msgid "years" +msgstr "años" + +#: ../../addon/dav/common/wdcal_edit.inc.php:218 +msgid "Interval" +msgstr "Intérvalo" + +#: ../../addon/dav/common/wdcal_edit.inc.php:218 +msgid "All %select% %time%" +msgstr "Todos %select% %time%" + +#: ../../addon/dav/common/wdcal_edit.inc.php:222 +#: ../../addon/dav/common/wdcal_edit.inc.php:260 +#: ../../addon/dav/common/wdcal_edit.inc.php:481 +msgid "Days" +msgstr "Días" + +#: ../../addon/dav/common/wdcal_edit.inc.php:231 +#: ../../addon/dav/common/wdcal_edit.inc.php:254 +#: ../../addon/dav/common/wdcal_edit.inc.php:270 +#: ../../addon/dav/common/wdcal_edit.inc.php:293 +#: ../../addon/dav/common/wdcal_edit.inc.php:305 ../../include/text.php:917 +msgid "Sunday" +msgstr "Domingo" + +#: ../../addon/dav/common/wdcal_edit.inc.php:235 +#: ../../addon/dav/common/wdcal_edit.inc.php:274 +#: ../../addon/dav/common/wdcal_edit.inc.php:308 ../../include/text.php:917 +msgid "Monday" +msgstr "Lunes" + +#: ../../addon/dav/common/wdcal_edit.inc.php:238 +#: ../../addon/dav/common/wdcal_edit.inc.php:277 ../../include/text.php:917 +msgid "Tuesday" +msgstr "Martes" + +#: ../../addon/dav/common/wdcal_edit.inc.php:241 +#: ../../addon/dav/common/wdcal_edit.inc.php:280 ../../include/text.php:917 +msgid "Wednesday" +msgstr "Miércoles" + +#: ../../addon/dav/common/wdcal_edit.inc.php:244 +#: ../../addon/dav/common/wdcal_edit.inc.php:283 ../../include/text.php:917 +msgid "Thursday" +msgstr "Jueves" + +#: ../../addon/dav/common/wdcal_edit.inc.php:247 +#: ../../addon/dav/common/wdcal_edit.inc.php:286 ../../include/text.php:917 +msgid "Friday" +msgstr "Viernes" + +#: ../../addon/dav/common/wdcal_edit.inc.php:250 +#: ../../addon/dav/common/wdcal_edit.inc.php:289 ../../include/text.php:917 +msgid "Saturday" +msgstr "Sábado" + +#: ../../addon/dav/common/wdcal_edit.inc.php:297 +msgid "First day of week:" +msgstr "Primer día de la semana:" + +#: ../../addon/dav/common/wdcal_edit.inc.php:350 +#: ../../addon/dav/common/wdcal_edit.inc.php:373 +msgid "Day of month" +msgstr "Día del mes" + +#: ../../addon/dav/common/wdcal_edit.inc.php:354 +msgid "#num#th of each month" +msgstr "#num#º de cada mes" + +#: ../../addon/dav/common/wdcal_edit.inc.php:357 +msgid "#num#th-last of each month" +msgstr "#num#º antes del último de cada mes" + +#: ../../addon/dav/common/wdcal_edit.inc.php:360 +msgid "#num#th #wkday# of each month" +msgstr "#num#º #wkday# de cada mes" + +#: ../../addon/dav/common/wdcal_edit.inc.php:363 +msgid "#num#th-last #wkday# of each month" +msgstr "#num#º antes del último #wkday# de cada mes" + +#: ../../addon/dav/common/wdcal_edit.inc.php:372 +#: ../../addon/dav/friendica/layout.fnk.php:255 +msgid "Month" +msgstr "Mes" + +#: ../../addon/dav/common/wdcal_edit.inc.php:377 +msgid "#num#th of the given month" +msgstr "#num#º del mes dado" + +#: ../../addon/dav/common/wdcal_edit.inc.php:380 +msgid "#num#th-last of the given month" +msgstr "#num#º antes del último del mes dado" + +#: ../../addon/dav/common/wdcal_edit.inc.php:383 +msgid "#num#th #wkday# of the given month" +msgstr "#num#º #wkday# del mes dado" + +#: ../../addon/dav/common/wdcal_edit.inc.php:386 +msgid "#num#th-last #wkday# of the given month" +msgstr "#num#º antes del último #wkday# del mes dado" + +#: ../../addon/dav/common/wdcal_edit.inc.php:413 +msgid "Repeat until" +msgstr "Repetir hasta" + +#: ../../addon/dav/common/wdcal_edit.inc.php:417 +msgid "Infinite" +msgstr "Infinito" + +#: ../../addon/dav/common/wdcal_edit.inc.php:420 +msgid "Until the following date" +msgstr "Hasta la fecha siguiente" + +#: ../../addon/dav/common/wdcal_edit.inc.php:423 +msgid "Number of times" +msgstr "Número de veces" + +#: ../../addon/dav/common/wdcal_edit.inc.php:429 +msgid "Exceptions" +msgstr "Excepciones" + +#: ../../addon/dav/common/wdcal_edit.inc.php:432 +msgid "none" +msgstr "ninguno" + +#: ../../addon/dav/common/wdcal_edit.inc.php:449 +msgid "Notification" +msgstr "Notificación" + +#: ../../addon/dav/common/wdcal_edit.inc.php:466 +msgid "Notify by" +msgstr "Notificar por" + +#: ../../addon/dav/common/wdcal_edit.inc.php:469 +msgid "E-Mail" +msgstr "Correo electrónico" + +#: ../../addon/dav/common/wdcal_edit.inc.php:470 +msgid "On Friendica / Display" +msgstr "Sobre Friendica / Mostrar" + +#: ../../addon/dav/common/wdcal_edit.inc.php:474 +msgid "Time" +msgstr "Hora" + +#: ../../addon/dav/common/wdcal_edit.inc.php:478 +msgid "Hours" +msgstr "Horas" + +#: ../../addon/dav/common/wdcal_edit.inc.php:479 +msgid "Minutes" +msgstr "Minutos" + +#: ../../addon/dav/common/wdcal_edit.inc.php:480 +msgid "Seconds" +msgstr "Segundos" + +#: ../../addon/dav/common/wdcal_edit.inc.php:482 +msgid "Weeks" +msgstr "Semanas" + +#: ../../addon/dav/common/wdcal_edit.inc.php:485 +msgid "before the" +msgstr "antes de" + +#: ../../addon/dav/common/wdcal_edit.inc.php:486 +msgid "start of the event" +msgstr "inicio del evento" + +#: ../../addon/dav/common/wdcal_edit.inc.php:487 +msgid "end of the event" +msgstr "final del evento" + +#: ../../addon/dav/common/wdcal_edit.inc.php:492 +msgid "Add a notification" +msgstr "Añadir una notificación" + +#: ../../addon/dav/common/wdcal_edit.inc.php:687 +msgid "The event #name# will start at #date" +msgstr "El evento #name# comenzará el #date" + +#: ../../addon/dav/common/wdcal_edit.inc.php:696 +msgid "#name# is about to begin." +msgstr "#name# está a punto de comenzar." + +#: ../../addon/dav/common/wdcal_edit.inc.php:769 +msgid "Saved" +msgstr "Guardado" + +#: ../../addon/dav/common/wdcal_configuration.php:148 +msgid "U.S. Time Format (mm/dd/YYYY)" +msgstr "Hora, formato anglosajón (mm/dd/aaaa)" + +#: ../../addon/dav/common/wdcal_configuration.php:243 +msgid "German Time Format (dd.mm.YYYY)" +msgstr "Hora, formato europeo (dd.mm.aaaa)" + +#: ../../addon/dav/common/dav_caldav_backend_private.inc.php:39 +msgid "Private Events" +msgstr "Eventos privados" + +#: ../../addon/dav/common/dav_carddav_backend_private.inc.php:46 +msgid "Private Addressbooks" +msgstr "Libretas de direcciones privada" + +#: ../../addon/dav/friendica/dav_caldav_backend_virtual_friendica.inc.php:36 +msgid "Friendica-Native events" +msgstr "Eventos nativos de Friendica" + +#: ../../addon/dav/friendica/dav_carddav_backend_virtual_friendica.inc.php:36 +#: ../../addon/dav/friendica/dav_carddav_backend_virtual_friendica.inc.php:59 +msgid "Friendica-Contacts" +msgstr "Contactos de Friendica" + +#: ../../addon/dav/friendica/dav_carddav_backend_virtual_friendica.inc.php:60 +msgid "Your Friendica-Contacts" +msgstr "Tus Contactos de Friendica" + +#: ../../addon/dav/friendica/layout.fnk.php:99 +#: ../../addon/dav/friendica/layout.fnk.php:136 +msgid "" +"Something went wrong when trying to import the file. Sorry. Maybe some " +"events were imported anyway." +msgstr "Algo salió mal al importar el archivo. Lo sentimos. Puede que algunos eventos se hayan importado." + +#: ../../addon/dav/friendica/layout.fnk.php:131 +msgid "Something went wrong when trying to import the file. Sorry." +msgstr "Algo salió mal al importar el archivo. Lo sentimos." + +#: ../../addon/dav/friendica/layout.fnk.php:134 +msgid "The ICS-File has been imported." +msgstr "El archivo ICS ha sido importado." + +#: ../../addon/dav/friendica/layout.fnk.php:138 +msgid "No file was uploaded." +msgstr "No se ha importado ningún archivo." + +#: ../../addon/dav/friendica/layout.fnk.php:147 +msgid "Import a ICS-file" +msgstr "Importar archivo ICS" + +#: ../../addon/dav/friendica/layout.fnk.php:150 +msgid "ICS-File" +msgstr "Archivo ICS" + +#: ../../addon/dav/friendica/layout.fnk.php:151 +msgid "Overwrite all #num# existing events" +msgstr "Sobreescribir los #num# eventos existentes" + +#: ../../addon/dav/friendica/layout.fnk.php:228 +msgid "New event" +msgstr "Evento nuevo" + +#: ../../addon/dav/friendica/layout.fnk.php:232 +msgid "Today" +msgstr "Hoy" + +#: ../../addon/dav/friendica/layout.fnk.php:241 +msgid "Day" +msgstr "Día" + +#: ../../addon/dav/friendica/layout.fnk.php:248 +msgid "Week" +msgstr "Semana" + +#: ../../addon/dav/friendica/layout.fnk.php:260 +msgid "Reload" +msgstr "Recargar" + +#: ../../addon/dav/friendica/layout.fnk.php:271 +msgid "Date" +msgstr "Fecha" + +#: ../../addon/dav/friendica/layout.fnk.php:313 +msgid "Error" +msgstr "Error" + +#: ../../addon/dav/friendica/layout.fnk.php:380 +msgid "The calendar has been updated." +msgstr "El calendario ha sido actualizado." + +#: ../../addon/dav/friendica/layout.fnk.php:393 +msgid "The new calendar has been created." +msgstr "Se ha creado un nuevo calendario." + +#: ../../addon/dav/friendica/layout.fnk.php:417 +msgid "The calendar has been deleted." +msgstr "El calendario se ha borrado." + +#: ../../addon/dav/friendica/layout.fnk.php:424 +msgid "Calendar Settings" +msgstr "Configuración del Calendario" + +#: ../../addon/dav/friendica/layout.fnk.php:430 +msgid "Date format" +msgstr "Formato de fecha" + +#: ../../addon/dav/friendica/layout.fnk.php:439 +msgid "Time zone" +msgstr "Zona horaria" + +#: ../../addon/dav/friendica/layout.fnk.php:445 +msgid "Calendars" +msgstr "Calendarios" + +#: ../../addon/dav/friendica/layout.fnk.php:487 +msgid "Create a new calendar" +msgstr "Crear un nuevo calendario" + +#: ../../addon/dav/friendica/layout.fnk.php:496 +msgid "Limitations" +msgstr "Limitaciones" + +#: ../../addon/dav/friendica/layout.fnk.php:500 +#: ../../addon/libravatar/libravatar.php:82 +msgid "Warning" +msgstr "Aviso" + +#: ../../addon/dav/friendica/layout.fnk.php:504 +msgid "Synchronization (iPhone, Thunderbird Lightning, Android, ...)" +msgstr "Sincronización (iPhone, Thunderbird Lightning, Android...)" + +#: ../../addon/dav/friendica/layout.fnk.php:511 +msgid "Synchronizing this calendar with the iPhone" +msgstr "Sincronizar este calendario con iPhone" + +#: ../../addon/dav/friendica/layout.fnk.php:522 +msgid "Synchronizing your Friendica-Contacts with the iPhone" +msgstr "Sincronizar tus contactos de Friendica con iPhone" + +#: ../../addon/dav/friendica/main.php:202 +msgid "" +"The current version of this plugin has not been set up correctly. Please " +"contact the system administrator of your installation of friendica to fix " +"this." +msgstr "La versión actual de este módulo no se ha ajustado correctamente. Por favor contacta al administrador de sistema de tu instalación de Friendica para arreglarlo." + +#: ../../addon/dav/friendica/main.php:242 +msgid "Extended calendar with CalDAV-support" +msgstr "Calendario ampliado con soporte CalDAV" + +#: ../../addon/dav/friendica/main.php:279 +#: ../../addon/dav/friendica/main.php:280 ../../include/delivery.php:464 +#: ../../include/enotify.php:28 ../../include/notifier.php:710 +msgid "noreply" +msgstr "no responder" + +#: ../../addon/dav/friendica/main.php:282 +msgid "Notification: " +msgstr "Notificación:" + +#: ../../addon/dav/friendica/main.php:309 +msgid "The database tables have been installed." +msgstr "Se han instalado las tablas de la base de datos." + +#: ../../addon/dav/friendica/main.php:310 +msgid "An error occurred during the installation." +msgstr "Ha ocurrido un error durante la instalación." + +#: ../../addon/dav/friendica/main.php:316 +msgid "The database tables have been updated." +msgstr "Las tablas de la base de datos han sido actualizadas." + +#: ../../addon/dav/friendica/main.php:317 +msgid "An error occurred during the update." +msgstr "Ocurrió un error durante la actualización." + +#: ../../addon/dav/friendica/main.php:333 +msgid "No system-wide settings yet." +msgstr "No se han configurado aún los ajustes del sistema." + +#: ../../addon/dav/friendica/main.php:336 +msgid "Database status" +msgstr "Estado de la base de datos" + +#: ../../addon/dav/friendica/main.php:339 +msgid "Installed" +msgstr "Instalada" + +#: ../../addon/dav/friendica/main.php:343 +msgid "Upgrade needed" +msgstr "Actualización necesaria" + +#: ../../addon/dav/friendica/main.php:343 +msgid "" +"Please back up all calendar data (the tables beginning with dav_*) before " +"proceeding. While all calendar events should be converted to the new " +"database structure, it's always safe to have a backup. Below, you can have a" +" look at the database-queries that will be made when pressing the " +"'update'-button." +msgstr "Por favor respalda todos los datos de calendario (las tablas que comienzan con dav_*) antes de continuar. Aunque todos los eventos de calendario deberían convertirse a la nueva estructura de base de datos, siempre es seguro tener un respaldo. Abajo, puedes ver las consultas a la base de datos que se realizarán cuando presiones el botón de 'actualizar'." + +#: ../../addon/dav/friendica/main.php:343 +msgid "Upgrade" +msgstr "Actualizada" + +#: ../../addon/dav/friendica/main.php:346 +msgid "Not installed" +msgstr "Sin instalar" + +#: ../../addon/dav/friendica/main.php:346 +msgid "Install" +msgstr "Instalar" + +#: ../../addon/dav/friendica/main.php:350 +msgid "Unknown" +msgstr "Desconocido" + +#: ../../addon/dav/friendica/main.php:350 +msgid "" +"Something really went wrong. I cannot recover from this state automatically," +" sorry. Please go to the database backend, back up the data, and delete all " +"tables beginning with 'dav_' manually. Afterwards, this installation routine" +" should be able to reinitialize the tables automatically." +msgstr "Ha ocurrido algo muy malo. No puedo recuperarme automáticamente de este estado, lo siento. Por favor ve al manejador de fondo de la base de datos, respalda los datos, y borra todas las tablas que comienzan con 'dav_' manualmente. Después de eso, esta rutina de instalación debería de ser capaz de reinicializar las tablas automáticamente." + +#: ../../addon/dav/friendica/main.php:355 +msgid "Troubleshooting" +msgstr "Problemas" + +#: ../../addon/dav/friendica/main.php:356 +msgid "Manual creation of the database tables:" +msgstr "Manual para la creación de las tablas de la base de datos:" + +#: ../../addon/dav/friendica/main.php:357 +msgid "Show SQL-statements" +msgstr "Mostrar declaraciones SQL" + +#: ../../addon/dav/friendica/calendar.friendica.fnk.php:206 +msgid "Private Calendar" +msgstr "Calendario privado" + +#: ../../addon/dav/friendica/calendar.friendica.fnk.php:207 +msgid "Friendica Events: Mine" +msgstr "Eventos de Friendica: Propios" + +#: ../../addon/dav/friendica/calendar.friendica.fnk.php:208 +msgid "Friendica Events: Contacts" +msgstr "Eventos de Friendica: Contactos" + +#: ../../addon/dav/friendica/calendar.friendica.fnk.php:248 +msgid "Private Addresses" +msgstr "Direcciones privadas" + +#: ../../addon/dav/friendica/calendar.friendica.fnk.php:249 +msgid "Friendica Contacts" +msgstr "Contactos de Friendica" + +#: ../../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 "Permitir el uso de tu ID de Friendica (%s) para conexiones de almacenamiento externo sin alojamiento activado (como OwnCloud). Mira RemoteStorage WebFinger" + +#: ../../addon/uhremotestorage/uhremotestorage.php:85 +msgid "Template URL (with {category})" +msgstr "Dirección de la plantilla (con {categoría})" + +#: ../../addon/uhremotestorage/uhremotestorage.php:86 +msgid "OAuth end-point" +msgstr "Punto final OAuth" + +#: ../../addon/uhremotestorage/uhremotestorage.php:87 +msgid "Api" +msgstr "API" + +#: ../../addon/membersince/membersince.php:18 +msgid "Member since:" +msgstr "Miembro desde:" #: ../../addon/tictac/tictac.php:20 msgid "Three Dimensional Tic-Tac-Toe" @@ -3988,26 +5955,19 @@ msgstr "Nuevo juego con handicap" msgid "" "Three dimensional tic-tac-toe is just like the traditional game except that " "it is played on multiple levels simultaneously. " -msgstr "" -"Tres en Raya tridimensional es como el juego tradicional, excepto que se " -"juega en varios niveles simultáneamente." +msgstr "Tres en Raya tridimensional es como el juego tradicional, excepto que se juega en varios niveles simultáneamente." #: ../../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 "" -"En este caso hay tres niveles. Ganarás por conseguir tres en raya en " -"cualquier nivel, así como arriba, abajo y en diagonal a través de los " -"diferentes niveles." +msgstr "En este caso hay tres niveles. Ganarás por conseguir tres en raya en cualquier nivel, así como arriba, abajo y en diagonal a través de los diferentes niveles." #: ../../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 "" -"El juego con handicap desactiva la posición central en el nivel medio porque" -" el jugador reclama que este cuadrado tiene a menudo una ventaja injusta." +msgstr "El juego con handicap desactiva la posición central en el nivel medio porque el jugador que la ocupa tiene a menudo una ventaja injusta." #: ../../addon/tictac/tictac.php:182 msgid "You go first..." @@ -4029,297 +5989,120 @@ msgstr "¡Empate!" msgid "I won!" msgstr "¡He ganado!" -#: ../../addon/uhremotestorage/uhremotestorage.php:56 -#, php-format -msgid "" -"Allow to use your friendika id (%s) to connecto to external unhosted-enabled" -" storage (like ownCloud)" -msgstr "" -"Permitir el uso de su ID de friendica (%s) para conectar a fuentes externas " -"de almacenamiento sin anfitrión habilitado (como ownCloud)" - -#: ../../addon/uhremotestorage/uhremotestorage.php:57 -msgid "Unhosted DAV storage url" -msgstr "Dirección url de almacenamiento DAV sin anfitrión" - -#: ../../addon/impressum/impressum.php:25 -msgid "Impressum" -msgstr "Impressum" - -#: ../../addon/impressum/impressum.php:38 -#: ../../addon/impressum/impressum.php:40 -#: ../../addon/impressum/impressum.php:70 -msgid "Site Owner" -msgstr "Propietario" - -#: ../../addon/impressum/impressum.php:38 -#: ../../addon/impressum/impressum.php:74 -msgid "Email Address" -msgstr "Dirección de correo" - -#: ../../addon/impressum/impressum.php:43 -#: ../../addon/impressum/impressum.php:72 -msgid "Postal Address" -msgstr "Dirección" - -#: ../../addon/impressum/impressum.php:49 -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 "" -"Impressum necesita ser configurado.
    Por favor añade al menos la " -"variable propietario a tu archivo de configuración. Para otras " -"variables lee el archivo README." - -#: ../../addon/impressum/impressum.php:71 -msgid "Site Owners Profile" -msgstr "Perfil del propietario del sitio" - -#: ../../addon/impressum/impressum.php:73 -msgid "Notes" -msgstr "Notas" - -#: ../../addon/facebook/facebook.php:337 -msgid "Facebook disabled" -msgstr "Facebook deshabilitado" - -#: ../../addon/facebook/facebook.php:342 -msgid "Updating contacts" -msgstr "Actualizando contactos" - -#: ../../addon/facebook/facebook.php:351 -msgid "Facebook API key is missing." -msgstr "Falta la clave API de Facebook." - -#: ../../addon/facebook/facebook.php:358 -msgid "Facebook Connect" -msgstr "Conexión con Facebook" - -#: ../../addon/facebook/facebook.php:364 -msgid "Install Facebook connector for this account." -msgstr "Instalar el conector de Facebook para esta cuenta." - -#: ../../addon/facebook/facebook.php:371 -msgid "Remove Facebook connector" -msgstr "Eliminar el conector de Facebook" - -#: ../../addon/facebook/facebook.php:376 -msgid "" -"Re-authenticate [This is necessary whenever your Facebook password is " -"changed.]" -msgstr "" -"Volver a identificarse [Esto es necesario cada vez que su contraseña de " -"Facebook cambie.]" - -#: ../../addon/facebook/facebook.php:383 -msgid "Post to Facebook by default" -msgstr "Publicar en Facebook de forma predeterminada" - -#: ../../addon/facebook/facebook.php:387 -msgid "Link all your Facebook friends and conversations on this website" -msgstr "" -"Vincule a todos tus amigos de Facebook y las conversaciones en este sitio " -"web" - -#: ../../addon/facebook/facebook.php:389 -msgid "" -"Facebook conversations consist of your profile wall and your friend" -" stream." -msgstr "" -"Las conversaciones de Facebook consisten en su muro su " -"perfil y las publicaciones de su amigo." - -#: ../../addon/facebook/facebook.php:390 -msgid "On this website, your Facebook friend stream is only visible to you." -msgstr "" -"En esta página web, las publicaciones de su amigo de Facebook solo son " -"visibles para usted." - -#: ../../addon/facebook/facebook.php:391 -msgid "" -"The following settings determine the privacy of your Facebook profile wall " -"on this website." -msgstr "" -"La siguiente configuración determina la privacidad del muro de su perfil de " -"Facebook en este sitio web." - -#: ../../addon/facebook/facebook.php:395 -msgid "" -"On this website your Facebook profile wall conversations will only be " -"visible to you" -msgstr "" -"En este sitio web las publicaciones del muro de Facebook solo son visibles " -"para usted" - -#: ../../addon/facebook/facebook.php:400 -msgid "Do not import your Facebook profile wall conversations" -msgstr "No importar las conversaciones de su muro de Facebook" - -#: ../../addon/facebook/facebook.php:402 -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 "" -"Si decide conectar las conversaciones y dejar ambas casillas sin marcar, el " -"muro de su perfil de Facebook se fusionará con el muro de su perfil en este " -"sitio web y la configuración de privacidad en este sitio serán utilizados " -"para determinar quién puede ver las conversaciones." - -#: ../../addon/facebook/facebook.php:469 -#: ../../include/contact_selectors.php:78 -msgid "Facebook" -msgstr "Facebook" - -#: ../../addon/facebook/facebook.php:470 -msgid "Facebook Connector Settings" -msgstr "Configuración de conexión a Facebook" - -#: ../../addon/facebook/facebook.php:484 -msgid "Post to Facebook" -msgstr "Publicar en Facebook" - -#: ../../addon/facebook/facebook.php:561 -msgid "" -"Post to Facebook cancelled because of multi-network access permission " -"conflict." -msgstr "" -"Publicación en Facebook cancelada debido a un conflicto con los permisos de " -"acceso a la multi-red." - -#: ../../addon/facebook/facebook.php:624 -msgid "Image: " -msgstr "Imagen: " - -#: ../../addon/facebook/facebook.php:700 -msgid "View on Friendika" -msgstr "Ver en Friendika" - -#: ../../addon/facebook/facebook.php:724 -msgid "Facebook post failed. Queued for retry." -msgstr "Publicación en Facebook errónea. Reintentando..." - -#: ../../addon/widgets/widgets.php:55 -msgid "Generate new key" -msgstr "Generar clave nueva" - -#: ../../addon/widgets/widgets.php:58 -msgid "Widgets key" -msgstr "Clave de aplicación" - -#: ../../addon/widgets/widgets.php:60 -msgid "Widgets available" -msgstr "Aplicación disponible" - -#: ../../addon/widgets/widget_friends.php:40 -msgid "Connect on Friendika!" -msgstr "¡Conectado en Friendika!" - -#: ../../addon/widgets/widget_like.php:58 -#, php-format -msgid "%d person likes this" -msgid_plural "%d people like this" -msgstr[0] "a %d persona le gusta esto" -msgstr[1] "a %d personas les gusta esto" - -#: ../../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] "a %d persona no le gusta esto" -msgstr[1] "a %d personas no les gusta esto" - -#: ../../addon/buglink/buglink.php:15 -msgid "Report Bug" -msgstr "Informe de errores" - -#: ../../addon/nsfw/nsfw.php:47 -msgid "\"Not Safe For Work\" Settings" -msgstr "Configuración «No apto para el trabajo» (NSFW)" - -#: ../../addon/nsfw/nsfw.php:49 -msgid "Comma separated words to treat as NSFW" -msgstr "Palabras separadas por comas para tratarlo como NSFW" - -#: ../../addon/nsfw/nsfw.php:66 -msgid "NSFW Settings saved." -msgstr "Configuración NSFW guardada." - -#: ../../addon/nsfw/nsfw.php:102 -#, php-format -msgid "%s - Click to open/close" -msgstr "%s - Haga clic para abrir/cerrar" - -#: ../../addon/communityhome/communityhome.php:29 -msgid "OpenID" -msgstr "OpenID" - -#: ../../addon/communityhome/communityhome.php:38 -msgid "Last users" -msgstr "Últimos usuarios" - -#: ../../addon/communityhome/communityhome.php:81 -msgid "Most active users" -msgstr "Usuarios más activos" - -#: ../../addon/communityhome/communityhome.php:98 -msgid "Last photos" -msgstr "Últimas fotos" - -#: ../../addon/communityhome/communityhome.php:133 -msgid "Last likes" -msgstr "Últimos \"me gusta\"" - -#: ../../addon/communityhome/communityhome.php:155 -#: ../../include/conversation.php:23 -msgid "event" -msgstr "evento" - -#: ../../addon/membersince/membersince.php:17 -#, php-format -msgid " - Member since: %s" -msgstr "- Miembro desde: %s" - -#: ../../addon/randplace/randplace.php:170 +#: ../../addon/randplace/randplace.php:169 msgid "Randplace Settings" msgstr "Configuración de Randplace" -#: ../../addon/randplace/randplace.php:172 +#: ../../addon/randplace/randplace.php:171 msgid "Enable Randplace Plugin" -msgstr "Activar el módulo Randplace" +msgstr "Activar el módulo de lugar aleatorio Randplace" -#: ../../addon/piwik/piwik.php:70 -msgid "" -"This website is tracked using the Piwik " -"analytics tool." -msgstr "" -"Este sitio web realiza un seguimiento mediante la herramienta de análisis Piwik." +#: ../../addon/dwpost/dwpost.php:39 +msgid "Post to Dreamwidth" +msgstr "Publicar en Dreamwidth" -#: ../../addon/piwik/piwik.php:73 +#: ../../addon/dwpost/dwpost.php:70 +msgid "Dreamwidth Post Settings" +msgstr "Configuración de las publicaciones en Dreamwidth" + +#: ../../addon/dwpost/dwpost.php:72 +msgid "Enable dreamwidth Post Plugin" +msgstr "Activar el módulo de publicación en Dreamwidth" + +#: ../../addon/dwpost/dwpost.php:77 +msgid "dreamwidth username" +msgstr "Nombre de usuario de Dreamwidth" + +#: ../../addon/dwpost/dwpost.php:82 +msgid "dreamwidth password" +msgstr "Contraseña de Dreamwidth" + +#: ../../addon/dwpost/dwpost.php:87 +msgid "Post to dreamwidth by default" +msgstr "Publicar en Dreamwidth por defecto" + +#: ../../addon/drpost/drpost.php:35 +msgid "Post to Drupal" +msgstr "Publicar en Drupal" + +#: ../../addon/drpost/drpost.php:72 +msgid "Drupal Post Settings" +msgstr "Configuración de las publicaciones en Drupal" + +#: ../../addon/drpost/drpost.php:74 +msgid "Enable Drupal Post Plugin" +msgstr "Activar el módulo de publicación en Drupal" + +#: ../../addon/drpost/drpost.php:79 +msgid "Drupal username" +msgstr "Nombre de usuario de Drupal" + +#: ../../addon/drpost/drpost.php:84 +msgid "Drupal password" +msgstr "Contraseña de Drupal" + +#: ../../addon/drpost/drpost.php:89 +msgid "Post Type - article,page,or blog" +msgstr "Tipo de publicación: artículo, página o blog" + +#: ../../addon/drpost/drpost.php:94 +msgid "Drupal site URL" +msgstr "Dirección de Drupal" + +#: ../../addon/drpost/drpost.php:99 +msgid "Drupal site uses clean URLS" +msgstr "El sitio de Drupal usa direcciones URL simples" + +#: ../../addon/drpost/drpost.php:104 +msgid "Post to Drupal by default" +msgstr "Publicar en Drupal por defecto" + +#: ../../addon/drpost/drpost.php:184 ../../addon/wppost/wppost.php:201 +#: ../../addon/blogger/blogger.php:172 ../../addon/posterous/posterous.php:189 +msgid "Post from Friendica" +msgstr "Publicado desde Friendica" + +#: ../../addon/startpage/startpage.php:83 +msgid "Startpage Settings" +msgstr "Configuración de página inicial" + +#: ../../addon/startpage/startpage.php:85 +msgid "Home page to load after login - leave blank for profile wall" +msgstr "Página por defecto, dejálo en blanco para cargar tu perfil" + +#: ../../addon/startpage/startpage.php:88 +msgid "Examples: "network" or "notifications/system"" +msgstr "Ejemplos: "red" o "notificaciones/sistema"" + +#: ../../addon/geonames/geonames.php:143 +msgid "Geonames settings updated." +msgstr "Configuración de Geonames actualizada." + +#: ../../addon/geonames/geonames.php:179 +msgid "Geonames Settings" +msgstr "Configuración de Geonames" + +#: ../../addon/geonames/geonames.php:181 +msgid "Enable Geonames Plugin" +msgstr "Activar el complemento de nombres geográficos Geonames" + +#: ../../addon/public_server/public_server.php:126 +#: ../../addon/testdrive/testdrive.php:94 +#, php-format +msgid "Your account on %s will expire in a few days." +msgstr "Tu cuenta de %s expirará en pocos días." + +#: ../../addon/public_server/public_server.php:127 +msgid "Your Friendica account is about to expire." +msgstr "Tu cuenta de Friendica está a punto de expirar." + +#: ../../addon/public_server/public_server.php:128 #, 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 "" -"Si no quieres que tus visitas sean registradas de esta manera usted puede establecer una cookie para evitar que Piwik realice un " -"seguimiento de las visitas del sitio (opt-out)." - -#: ../../addon/piwik/piwik.php:82 -msgid "Piwik Base URL" -msgstr "Dirección base Piwik" - -#: ../../addon/piwik/piwik.php:83 -msgid "Site ID" -msgstr "ID del sitio" - -#: ../../addon/piwik/piwik.php:84 -msgid "Show opt-out cookie link?" -msgstr "¿Mostrar enlace a las cookies?" +"Hi %1$s,\n" +"\n" +"Your account on %2$s will expire in less than five days. You may keep your account by logging in at least once every 30 days" +msgstr "Hola %1$s,\n\nTu cuenta en %2$s expirará en menos de 5 días. Puedes mantenerla iniciando tu sesión una vez cada 30 días" #: ../../addon/js_upload/js_upload.php:43 msgid "Upload a file" @@ -4333,53 +6116,1200 @@ msgstr "Arrastra los archivos aquí para subirlos" msgid "Failed" msgstr "Falló" -#: ../../addon/js_upload/js_upload.php:294 +#: ../../addon/js_upload/js_upload.php:297 msgid "No files were uploaded." -msgstr "No hay archivos subidos." +msgstr "No se han subido archivos aún." -#: ../../addon/js_upload/js_upload.php:300 +#: ../../addon/js_upload/js_upload.php:303 msgid "Uploaded file is empty" msgstr "El archivo subido está vacío" -#: ../../addon/js_upload/js_upload.php:323 +#: ../../addon/js_upload/js_upload.php:326 msgid "File has an invalid extension, it should be one of " msgstr "El archivo tiene una extensión no válida, debería ser una de " -#: ../../addon/js_upload/js_upload.php:334 +#: ../../addon/js_upload/js_upload.php:337 msgid "Upload was cancelled, or server error encountered" msgstr "La subida ha sido cancelada, o se encontró un error del servidor" -#: ../../addon/wppost/wppost.php:41 +#: ../../addon/oembed.old/oembed.php:30 +msgid "OEmbed settings updated" +msgstr "Actualizar la configuración de OEmbed" + +#: ../../addon/oembed.old/oembed.php:43 +msgid "Use OEmbed for YouTube videos" +msgstr "Usar OEmbed para los vídeos de YouTube" + +#: ../../addon/oembed.old/oembed.php:71 +msgid "URL to embed:" +msgstr "Dirección del recurso:" + +#: ../../addon/forumlist/forumlist.php:57 +msgid "show/hide" +msgstr "mostrar/ocultar" + +#: ../../addon/forumlist/forumlist.php:72 +msgid "No forum subscriptions" +msgstr "Foro sin suscrpciones" + +#: ../../addon/forumlist/forumlist.php:124 +msgid "Forumlist settings updated." +msgstr "Ajustes de lista de foros actualizados." + +#: ../../addon/forumlist/forumlist.php:153 +msgid "Forumlist Settings" +msgstr "Ajustes de lista de foros" + +#: ../../addon/forumlist/forumlist.php:158 +msgid "Randomise Forumlist/Forum list" +msgstr "Aleatorizar lista de foros" + +#: ../../addon/forumlist/forumlist.php:161 +msgid "Show forumlists/forums on profile forumlist" +msgstr "Mostrar lista de foros en perfil forumlist" + +#: ../../addon/impressum/impressum.php:37 +msgid "Impressum" +msgstr "Términos y Política del sitio" + +#: ../../addon/impressum/impressum.php:50 +#: ../../addon/impressum/impressum.php:52 +#: ../../addon/impressum/impressum.php:84 +msgid "Site Owner" +msgstr "Propietario" + +#: ../../addon/impressum/impressum.php:50 +#: ../../addon/impressum/impressum.php:88 +msgid "Email Address" +msgstr "Dirección de correo" + +#: ../../addon/impressum/impressum.php:55 +#: ../../addon/impressum/impressum.php:86 +msgid "Postal Address" +msgstr "Dirección" + +#: ../../addon/impressum/impressum.php:61 +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 "Impressum necesita ser configurado.
    Por favor añade al menos la variable propietario a tu archivo de configuración. Para otras variables lee el archivo README." + +#: ../../addon/impressum/impressum.php:84 +msgid "The page operators name." +msgstr "Nombre del operador de la página." + +#: ../../addon/impressum/impressum.php:85 +msgid "Site Owners Profile" +msgstr "Perfil del propietario del sitio" + +#: ../../addon/impressum/impressum.php:85 +msgid "Profile address of the operator." +msgstr "Dirección del perfil del operador." + +#: ../../addon/impressum/impressum.php:86 +msgid "How to contact the operator via snail mail. You can use BBCode here." +msgstr "Cómo contactar con el operador vía correo postal. BBCode permitido." + +#: ../../addon/impressum/impressum.php:87 +msgid "Notes" +msgstr "Notas" + +#: ../../addon/impressum/impressum.php:87 +msgid "" +"Additional notes that are displayed beneath the contact information. You can" +" use BBCode here." +msgstr "Notas adicionales que se mostrarán bajo la información del contacto. BBCode permitido." + +#: ../../addon/impressum/impressum.php:88 +msgid "How to contact the operator via email. (will be displayed obfuscated)" +msgstr "Cómo contactar con el operador vía email (aparecerá oculto)" + +#: ../../addon/impressum/impressum.php:89 +msgid "Footer note" +msgstr "Nota a pie" + +#: ../../addon/impressum/impressum.php:89 +msgid "Text for the footer. You can use BBCode here." +msgstr "Texto para el Pie de página. BBCode permitido." + +#: ../../addon/buglink/buglink.php:15 +msgid "Report Bug" +msgstr "Informe de errores" + +#: ../../addon/notimeline/notimeline.php:32 +msgid "No Timeline settings updated." +msgstr "Configuración Sin Linea Temporal actualizada." + +#: ../../addon/notimeline/notimeline.php:56 +msgid "No Timeline Settings" +msgstr "Configuración Sin Linea Temporal" + +#: ../../addon/notimeline/notimeline.php:58 +msgid "Disable Archive selector on profile wall" +msgstr "Desactivar el selector de archivos en el muro del perfil" + +#: ../../addon/blockem/blockem.php:51 +msgid "\"Blockem\" Settings" +msgstr "Configuración de \"Blockem\"" + +#: ../../addon/blockem/blockem.php:53 +msgid "Comma separated profile URLS to block" +msgstr "Direcciones separadas por coma de los perfiles a bloquear" + +#: ../../addon/blockem/blockem.php:70 +msgid "BLOCKEM Settings saved." +msgstr "Configuracion Blockem guardada." + +#: ../../addon/blockem/blockem.php:105 +#, php-format +msgid "Blocked %s - Click to open/close" +msgstr "%s bloqueado. Pulsa aquí para mostrar/ocultar" + +#: ../../addon/blockem/blockem.php:160 +msgid "Unblock Author" +msgstr "Desbloquear Autor" + +#: ../../addon/blockem/blockem.php:162 +msgid "Block Author" +msgstr "Bloquear Autor" + +#: ../../addon/blockem/blockem.php:194 +msgid "blockem settings updated" +msgstr "Configuración de Blockem actualizada" + +#: ../../addon/qcomment/qcomment.php:51 +msgid ":-)" +msgstr ":-)" + +#: ../../addon/qcomment/qcomment.php:51 +msgid ":-(" +msgstr ":-(" + +#: ../../addon/qcomment/qcomment.php:51 +msgid "lol" +msgstr "XD" + +#: ../../addon/qcomment/qcomment.php:54 +msgid "Quick Comment Settings" +msgstr "Configuración de Qcomment" + +#: ../../addon/qcomment/qcomment.php:56 +msgid "" +"Quick comments are found near comment boxes, sometimes hidden. Click them to" +" provide simple replies." +msgstr "Qcomments son comentarios rápidos que se encuentran cerca del cuadro de texto, a veces ocultos. Pulsa en ellos para dar respuestas simples." + +#: ../../addon/qcomment/qcomment.php:57 +msgid "Enter quick comments, one per line" +msgstr "Introduce comentarios rápidos, uno por línea" + +#: ../../addon/qcomment/qcomment.php:75 +msgid "Quick Comment settings saved." +msgstr "Configuración de Qcomment guardada." + +#: ../../addon/openstreetmap/openstreetmap.php:71 +msgid "Tile Server URL" +msgstr "Dirección del servidor" + +#: ../../addon/openstreetmap/openstreetmap.php:71 +msgid "" +"A list of public tile servers" +msgstr "Un listado de servidores públicos" + +#: ../../addon/openstreetmap/openstreetmap.php:72 +msgid "Default zoom" +msgstr "Zoom por defecto" + +#: ../../addon/openstreetmap/openstreetmap.php:72 +msgid "The default zoom level. (1:world, 18:highest)" +msgstr "Nivel de zoom predeterminado. (1:mínimo, 18:máximo)" + +#: ../../addon/group_text/group_text.php:46 +#: ../../addon/editplain/editplain.php:46 +msgid "Editplain settings updated." +msgstr "Configuración del Editor de texto plano actualizada." + +#: ../../addon/group_text/group_text.php:76 +msgid "Group Text" +msgstr "Texto agrupado" + +#: ../../addon/group_text/group_text.php:78 +msgid "Use a text only (non-image) group selector in the \"group edit\" menu" +msgstr "Usar selector de grupos solo texto (sin imágenes) en el menú \"editar grupo\"" + +#: ../../addon/libravatar/libravatar.php:14 +msgid "Could NOT install Libravatar successfully.
    It requires PHP >= 5.3" +msgstr "Libravatar puede no haberse instalado correctamente.
    Requiere PHP >=5.3" + +#: ../../addon/libravatar/libravatar.php:73 +#: ../../addon/gravatar/gravatar.php:71 +msgid "generic profile image" +msgstr "imagen genérica del perfil" + +#: ../../addon/libravatar/libravatar.php:74 +#: ../../addon/gravatar/gravatar.php:72 +msgid "random geometric pattern" +msgstr "patrón geométrico aleatorio" + +#: ../../addon/libravatar/libravatar.php:75 +#: ../../addon/gravatar/gravatar.php:73 +msgid "monster face" +msgstr "monstruosa" + +#: ../../addon/libravatar/libravatar.php:76 +#: ../../addon/gravatar/gravatar.php:74 +msgid "computer generated face" +msgstr "generada por ordenador" + +#: ../../addon/libravatar/libravatar.php:77 +#: ../../addon/gravatar/gravatar.php:75 +msgid "retro arcade style face" +msgstr "estilo retro arcade" + +#: ../../addon/libravatar/libravatar.php:83 +#, php-format +msgid "Your PHP version %s is lower than the required PHP >= 5.3." +msgstr "Tu versión de PHP %s, menor que la requerida (PHP >=5.3)." + +#: ../../addon/libravatar/libravatar.php:84 +msgid "This addon is not functional on your server." +msgstr "Esta funcionalidad no está activa en tu servidor." + +#: ../../addon/libravatar/libravatar.php:93 +#: ../../addon/gravatar/gravatar.php:89 +msgid "Information" +msgstr "Información" + +#: ../../addon/libravatar/libravatar.php:93 +msgid "" +"Gravatar addon is installed. Please disable the Gravatar addon.
    The " +"Libravatar addon will fall back to Gravatar if nothing was found at " +"Libravatar." +msgstr "El complemento Gravatar está instalado. Por favor, desactiva dicho complemento.
    El complemento Libravatar usará Gravatar si no encuentra nada en Libravatar." + +#: ../../addon/libravatar/libravatar.php:100 +#: ../../addon/gravatar/gravatar.php:96 +msgid "Default avatar image" +msgstr "Imagen del avatar por defecto" + +#: ../../addon/libravatar/libravatar.php:100 +msgid "Select default avatar image if none was found. See README" +msgstr "Elige una imagen para tu avatar si no se encuentra ninguna (ver README)" + +#: ../../addon/libravatar/libravatar.php:112 +msgid "Libravatar settings updated." +msgstr "Configuración de Libravatar actualizada." + +#: ../../addon/libertree/libertree.php:36 +msgid "Post to libertree" +msgstr "Publicar en Libertree" + +#: ../../addon/libertree/libertree.php:67 +msgid "libertree Post Settings" +msgstr "Configuración de la publicación en Libertree" + +#: ../../addon/libertree/libertree.php:69 +msgid "Enable Libertree Post Plugin" +msgstr "Activar el módulo de publicación en Libertree" + +#: ../../addon/libertree/libertree.php:74 +msgid "Libertree API token" +msgstr "Ficha API de Libertree" + +#: ../../addon/libertree/libertree.php:79 +msgid "Libertree site URL" +msgstr "Dirección de Libertree" + +#: ../../addon/libertree/libertree.php:84 +msgid "Post to Libertree by default" +msgstr "Publicar en Libertree por defecto" + +#: ../../addon/altpager/altpager.php:46 +msgid "Altpager settings updated." +msgstr "Configuración de paginador alternativo actualizada." + +#: ../../addon/altpager/altpager.php:79 +msgid "Alternate Pagination Setting" +msgstr "Configuración de paginación alternativa" + +#: ../../addon/altpager/altpager.php:81 +msgid "Use links to \"newer\" and \"older\" pages in place of page numbers?" +msgstr "¿Usar \"más nuevo\" y \"más antiguo\" en vez de números en las páginas?" + +#: ../../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 "El complemento MathJax renderiza las fórmulas matemáticas escritas usando la sintaxis de LaTeX rodeadas por el habitual $ $ o un bloque de eqnarray en las publicaciones de tu muro, pestaña de red y correo privado." + +#: ../../addon/mathjax/mathjax.php:38 +msgid "Use the MathJax renderer" +msgstr "Usar renderizado Mathjax" + +#: ../../addon/mathjax/mathjax.php:74 +msgid "MathJax Base URL" +msgstr "Dirección base de Mathjax" + +#: ../../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 "La dirección para el archivo javascript debe estar incluida para usar Mathjax. Puede ser Mathjax CDN o cualquier otra instalación de Mathjax." + +#: ../../addon/editplain/editplain.php:76 +msgid "Editplain Settings" +msgstr "Configuración del Editor de texto plano" + +#: ../../addon/editplain/editplain.php:78 +msgid "Disable richtext status editor" +msgstr "Desactivar el editor de texto enriquecido" + +#: ../../addon/gravatar/gravatar.php:89 +msgid "" +"Libravatar addon is installed, too. Please disable Libravatar addon or this " +"Gravatar addon.
    The Libravatar addon will fall back to Gravatar if " +"nothing was found at Libravatar." +msgstr "El complemento Libravatar también está instalado. Por favor desactiva este complemento o el complemento de Gravatar.
    El complemento Libravatar usará Gravatar si no encuentra nada en Libravatar." + +#: ../../addon/gravatar/gravatar.php:96 +msgid "Select default avatar image if none was found at Gravatar. See README" +msgstr "Selecionar la imagen del avatar por defecto si no se ha encontrado ninguna en Gravatar. Mira el README" + +#: ../../addon/gravatar/gravatar.php:97 +msgid "Rating of images" +msgstr "Valoración de las imágenes" + +#: ../../addon/gravatar/gravatar.php:97 +msgid "Select the appropriate avatar rating for your site. See README" +msgstr "Selecciona el avatar de clasificación apropiado para tu sitio. Ver README" + +#: ../../addon/gravatar/gravatar.php:111 +msgid "Gravatar settings updated." +msgstr "Configuración de Gravatar actualizada." + +#: ../../addon/testdrive/testdrive.php:95 +msgid "Your Friendica test account is about to expire." +msgstr "Tu cuenta de prueba de Friendica está a punto de expirar." + +#: ../../addon/testdrive/testdrive.php:96 +#, php-format +msgid "" +"Hi %1$s,\n" +"\n" +"Your test account on %2$s will expire in less than five days. We hope you enjoyed this test drive and use this opportunity to find a permanent Friendica website for your integrated social communications. A list of public sites is available at http://dir.friendica.com/siteinfo - and for more information on setting up your own Friendica server please see the Friendica project website at http://friendica.com." +msgstr "Hola %1$s,\n\nTu cuenta de prueba en %2$s expirará en menos de 5 días. Esperamos que hayas disfrutado de la experiencia y te decidas a unirte a la red social de Friendica. Dispones de un listado de servidores disponibles en http://dir.friendica.com/siteinfo Para saber más sobre cómo crear tu propio servidor de Friendica puedes visitar la web del Proyecto Friendica en http://friendica.com." + +#: ../../addon/pageheader/pageheader.php:50 +msgid "\"pageheader\" Settings" +msgstr "Configuración de cabecera" + +#: ../../addon/pageheader/pageheader.php:68 +msgid "pageheader Settings saved." +msgstr "Configuración de cabecera de página guardada." + +#: ../../addon/ijpost/ijpost.php:39 +msgid "Post to Insanejournal" +msgstr "Publicar en Insanejournal" + +#: ../../addon/ijpost/ijpost.php:70 +msgid "InsaneJournal Post Settings" +msgstr "Configuración de publicación en Insanejournal" + +#: ../../addon/ijpost/ijpost.php:72 +msgid "Enable InsaneJournal Post Plugin" +msgstr "Activar el módulo de publicación en Insanejournal" + +#: ../../addon/ijpost/ijpost.php:77 +msgid "InsaneJournal username" +msgstr "Nombre de usuario de Insanejournal" + +#: ../../addon/ijpost/ijpost.php:82 +msgid "InsaneJournal password" +msgstr "Contraseña de Insanejournal" + +#: ../../addon/ijpost/ijpost.php:87 +msgid "Post to InsaneJournal by default" +msgstr "Publicar en Insanejournal por defecto" + +#: ../../addon/jappixmini/jappixmini.php:266 +msgid "Jappix Mini addon settings" +msgstr "Ajustes de complemento Jappix Mini" + +#: ../../addon/jappixmini/jappixmini.php:268 +msgid "Activate addon" +msgstr "Activar complemento" + +#: ../../addon/jappixmini/jappixmini.php:271 +msgid "" +"Do not insert the Jappixmini Chat-Widget into the webinterface" +msgstr "No insertar la aplicación de chat Jappixmini en la interfaz web" + +#: ../../addon/jappixmini/jappixmini.php:274 +msgid "Jabber username" +msgstr "Nombre de usuario de Jabber" + +#: ../../addon/jappixmini/jappixmini.php:277 +msgid "Jabber server" +msgstr "Servidor de Jabber" + +#: ../../addon/jappixmini/jappixmini.php:281 +msgid "Jabber BOSH host" +msgstr "Anfitrión BOSH de Jabber" + +#: ../../addon/jappixmini/jappixmini.php:285 +msgid "Jabber password" +msgstr "Contraseña de Jabber" + +#: ../../addon/jappixmini/jappixmini.php:290 +msgid "Encrypt Jabber password with Friendica password (recommended)" +msgstr "Encriptar contraseña de Jabber con la contraseña de Friendica (recomendado)" + +#: ../../addon/jappixmini/jappixmini.php:293 +msgid "Friendica password" +msgstr "Contraseña de Friendica" + +#: ../../addon/jappixmini/jappixmini.php:296 +msgid "Approve subscription requests from Friendica contacts automatically" +msgstr "Aprobar peticiones de suscripción de contactos de Friendica automáticamente" + +#: ../../addon/jappixmini/jappixmini.php:299 +msgid "Subscribe to Friendica contacts automatically" +msgstr "Suscribirse a contactos de Friendica automáticamente" + +#: ../../addon/jappixmini/jappixmini.php:302 +msgid "Purge internal list of jabber addresses of contacts" +msgstr "Purgar los contactos de la lista interna de direcciones de Jabber" + +#: ../../addon/jappixmini/jappixmini.php:308 +msgid "Add contact" +msgstr "Añadir contacto" + +#: ../../addon/viewsrc/viewsrc.php:37 +msgid "View Source" +msgstr "Ver fuente" + +#: ../../addon/statusnet/statusnet.php:134 +msgid "Post to StatusNet" +msgstr "Publicar en StatusNet" + +#: ../../addon/statusnet/statusnet.php:176 +msgid "" +"Please contact your site administrator.
    The provided API URL is not " +"valid." +msgstr "Por favor, contacta con el administrador de tu web.
    La dirección API suministrada no es válida." + +#: ../../addon/statusnet/statusnet.php:204 +msgid "We could not contact the StatusNet API with the Path you entered." +msgstr "No podemos contantar con StatusNet en la ruta que has especificado." + +#: ../../addon/statusnet/statusnet.php:232 +msgid "StatusNet settings updated." +msgstr "Actualición de la configuración de StatusNet." + +#: ../../addon/statusnet/statusnet.php:257 +msgid "StatusNet Posting Settings" +msgstr "Configuración de envío a StatusNet" + +#: ../../addon/statusnet/statusnet.php:271 +msgid "Globally Available StatusNet OAuthKeys" +msgstr "StatusNet OAuthKeys disponibles para todos" + +#: ../../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 "Existen pares de valores OAuthKey preconfigurados para algunos servidores. Si usas uno de ellos, por favor usa estas credenciales. De los contrario no dudes en conectar con cualquiera otra instancia de StatusNet (ver a continuación)." + +#: ../../addon/statusnet/statusnet.php:280 +msgid "Provide your own OAuth Credentials" +msgstr "Proporciona tus propias credenciales OAuth" + +#: ../../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 "No se ha encontrado ningún par de claves consumer para StatusNet. Registra tu cuenta de Friendica como un cliente de escritorio en tu cuenta de StatusNet, copia el par de claves consumer aquí e introduce la dirección de la API.
    Antes de registrar tu propio par de claves OAuth pregunta a tu administrador si ya existe un par de claves para esa instalación de Friendica en tu instalación StatusNet favorita." + +#: ../../addon/statusnet/statusnet.php:283 +msgid "OAuth Consumer Key" +msgstr "Clave OAuth del usuario" + +#: ../../addon/statusnet/statusnet.php:286 +msgid "OAuth Consumer Secret" +msgstr "Secreto OAuth del usuario" + +#: ../../addon/statusnet/statusnet.php:289 +msgid "Base API Path (remember the trailing /)" +msgstr "Dirección de la API (recordar el / al final)" + +#: ../../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 "Para conectarte a tu cuenta de StatusNet haz clic en el botón abajo para obtener un PIN de StatusNet, que tienes que copiar en el cuadro de entrada y enviar el formulario. Solo tus publicaciones públicas se publicarán en StatusNet." + +#: ../../addon/statusnet/statusnet.php:311 +msgid "Log in with StatusNet" +msgstr "Inicia sesión en StatusNet" + +#: ../../addon/statusnet/statusnet.php:313 +msgid "Copy the security code from StatusNet here" +msgstr "Copia el código de seguridad de StatusNet aquí" + +#: ../../addon/statusnet/statusnet.php:319 +msgid "Cancel Connection Process" +msgstr "Cancelar la conexión en proceso" + +#: ../../addon/statusnet/statusnet.php:321 +msgid "Current StatusNet API is" +msgstr "El estado actual de la API de StatusNet es" + +#: ../../addon/statusnet/statusnet.php:322 +msgid "Cancel StatusNet Connection" +msgstr "Cancelar conexión con StatusNet" + +#: ../../addon/statusnet/statusnet.php:333 ../../addon/twitter/twitter.php:189 +msgid "Currently connected to: " +msgstr "Actualmente conectado a:" + +#: ../../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 "Si lo habilitas todas tus publicaciones públicas podrán ser publicadas en la cuenta asociada de StatusNet. Pudes elegir hacerlo por defecto (aquí) o para cada publicación individualmente en las opciones de publicacion cuando las escribes." + +#: ../../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 "Nota: Debido a tus opciones de privacidad (¿Ocultar los detalles de tu perfil de espectadores desconocidos?) el vínculo potencialmente incluido en publicaciones públicas que se transmiten a StatusNet conducirá al visitante a una página en blanco que informa a los visitantes que el acceso a tu perfil es restringido." + +#: ../../addon/statusnet/statusnet.php:339 +msgid "Allow posting to StatusNet" +msgstr "Permitir publicaciones en StatusNet" + +#: ../../addon/statusnet/statusnet.php:342 +msgid "Send public postings to StatusNet by default" +msgstr "Enviar publicaciones públicas a StatusNet por defecto" + +#: ../../addon/statusnet/statusnet.php:345 +msgid "Send linked #-tags and @-names to StatusNet" +msgstr "Enviar a StatusNet las #-etiquetas y @-nombres" + +#: ../../addon/statusnet/statusnet.php:350 ../../addon/twitter/twitter.php:206 +msgid "Clear OAuth configuration" +msgstr "Borrar la configuración de OAuth" + +#: ../../addon/statusnet/statusnet.php:568 +msgid "API URL" +msgstr "Dirección de la API" + +#: ../../addon/infiniteimprobabilitydrive/infiniteimprobabilitydrive.php:19 +msgid "Infinite Improbability Drive" +msgstr "Unidad de improbabilidad infinita" + +#: ../../addon/tumblr/tumblr.php:36 +msgid "Post to Tumblr" +msgstr "Publicar en Tumblr" + +#: ../../addon/tumblr/tumblr.php:67 +msgid "Tumblr Post Settings" +msgstr "Configuración de publicación en Tumblr" + +#: ../../addon/tumblr/tumblr.php:69 +msgid "Enable Tumblr Post Plugin" +msgstr "Habilitar el módulo de publicación en Tumblr" + +#: ../../addon/tumblr/tumblr.php:74 +msgid "Tumblr login" +msgstr "Tumblr - inicio de sesión" + +#: ../../addon/tumblr/tumblr.php:79 +msgid "Tumblr password" +msgstr "Tumblr - contraseña" + +#: ../../addon/tumblr/tumblr.php:84 +msgid "Post to Tumblr by default" +msgstr "Publicar en Tumblr por defecto" + +#: ../../addon/numfriends/numfriends.php:46 +msgid "Numfriends settings updated." +msgstr "Configuración del Contador de contactos actualizada" + +#: ../../addon/numfriends/numfriends.php:77 +msgid "Numfriends Settings" +msgstr "Configuración del Contador de contactos" + +#: ../../addon/gnot/gnot.php:48 +msgid "Gnot settings updated." +msgstr "Configuración de Gnot actualizada." + +#: ../../addon/gnot/gnot.php:79 +msgid "Gnot Settings" +msgstr "Configuración de Gnot" + +#: ../../addon/gnot/gnot.php:81 +msgid "" +"Allows threading of email comment notifications on Gmail and anonymising the" +" subject line." +msgstr "Permitir el enhebrado en las notificaciones de comentarios de correo en Gmail y hacer anónima la línea de \"Asunto\"." + +#: ../../addon/gnot/gnot.php:82 +msgid "Enable this plugin/addon?" +msgstr "¿Activar este módulo/extensión?" + +#: ../../addon/gnot/gnot.php:97 +#, php-format +msgid "[Friendica:Notify] Comment to conversation #%d" +msgstr "[Friendica:Notificación] Comentario en la conversación de #%d" + +#: ../../addon/wppost/wppost.php:42 msgid "Post to Wordpress" msgstr "Publicar en Wordpress" -#: ../../addon/wppost/wppost.php:73 +#: ../../addon/wppost/wppost.php:76 msgid "WordPress Post Settings" msgstr "Configuración de publicación en Wordpres" -#: ../../addon/wppost/wppost.php:75 +#: ../../addon/wppost/wppost.php:78 msgid "Enable WordPress Post Plugin" -msgstr "Habilitar el plugin de publicación en Wordpress" +msgstr "Habilitar el módulo de publicación en Wordpress" -#: ../../addon/wppost/wppost.php:80 +#: ../../addon/wppost/wppost.php:83 msgid "WordPress username" msgstr "WordPress - nombre de usuario" -#: ../../addon/wppost/wppost.php:85 +#: ../../addon/wppost/wppost.php:88 msgid "WordPress password" msgstr "WordPress - contraseña" -#: ../../addon/wppost/wppost.php:90 +#: ../../addon/wppost/wppost.php:93 msgid "WordPress API URL" msgstr "WordPress - dirección API" -#: ../../addon/wppost/wppost.php:95 +#: ../../addon/wppost/wppost.php:98 msgid "Post to WordPress by default" msgstr "Publicar a WordPress por defecto" -#: ../../include/notifier.php:616 ../../include/delivery.php:415 -msgid "(no subject)" -msgstr "(sin asunto)" +#: ../../addon/wppost/wppost.php:103 +msgid "Provide a backlink to the Friendica post" +msgstr "Añade un enlace de vuelta a la publicación de Friendica" + +#: ../../addon/wppost/wppost.php:207 +msgid "Read the original post and comment stream on Friendica" +msgstr "Leer la publicación original y los comentarios en Friendica" + +#: ../../addon/showmore/showmore.php:38 +msgid "\"Show more\" Settings" +msgstr "Configuración de \"Muéstrame más\"" + +#: ../../addon/showmore/showmore.php:41 +msgid "Enable Show More" +msgstr "Activar Muéstrame más" + +#: ../../addon/showmore/showmore.php:44 +msgid "Cutting posts after how much characters" +msgstr "Cortar las publicaciones después de cuántos caracteres" + +#: ../../addon/showmore/showmore.php:65 +msgid "Show More Settings saved." +msgstr "Configuración de Muéstrame más guardada." + +#: ../../addon/piwik/piwik.php:79 +msgid "" +"This website is tracked using the Piwik " +"analytics tool." +msgstr "Este sitio realiza un seguimiento mediante la herramienta de análisis Piwik." + +#: ../../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 "Si no quieres que tus visitas sean registradas de esta manera puedes establecer una cookie para evitar que Piwik realice un seguimiento de las visitas del sitio (opt-out)." + +#: ../../addon/piwik/piwik.php:90 +msgid "Piwik Base URL" +msgstr "Dirección base Piwik" + +#: ../../addon/piwik/piwik.php:90 +msgid "" +"Absolute path to your Piwik installation. (without protocol (http/s), with " +"trailing slash)" +msgstr "Ruta absoluta a tu instalación de Piwik (sin el protocolo (http/s) pero con la barra)." + +#: ../../addon/piwik/piwik.php:91 +msgid "Site ID" +msgstr "ID del sitio" + +#: ../../addon/piwik/piwik.php:92 +msgid "Show opt-out cookie link?" +msgstr "¿Mostrar enlace a las cookies?" + +#: ../../addon/piwik/piwik.php:93 +msgid "Asynchronous tracking" +msgstr "Seguimiento asíncrono" + +#: ../../addon/twitter/twitter.php:73 +msgid "Post to Twitter" +msgstr "Publicar en Twitter" + +#: ../../addon/twitter/twitter.php:122 +msgid "Twitter settings updated." +msgstr "Actualización de la configuración de Twitter" + +#: ../../addon/twitter/twitter.php:146 +msgid "Twitter Posting Settings" +msgstr "Configuración de publicaciones en Twitter" + +#: ../../addon/twitter/twitter.php:153 +msgid "" +"No consumer key pair for Twitter found. Please contact your site " +"administrator." +msgstr "No se ha encontrado ningún par de claves para Twitter. Póngase en contacto con el administrador del sitio." + +#: ../../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 "En esta instalación de Friendica el módulo de Twitter está activo pero aún no has conectado tu cuenta con la de Twitter. Para hacerlo, pulsa en el siguiente botón para obtener un PIN de Twitter, que deberás introducir en la casilla de abajo y enviar el formulario. Unicamente el contenido público que publiques será publicado en Twitter." + +#: ../../addon/twitter/twitter.php:173 +msgid "Log in with Twitter" +msgstr "Acceder con Twitter" + +#: ../../addon/twitter/twitter.php:175 +msgid "Copy the PIN from Twitter here" +msgstr "Copia el PIN de Twitter aquí" + +#: ../../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 "Si lo habilitas todas tus publicaciones públicas serán publicadas en la cuenta de Twitter asociada. Puedes elegir hacerlo por defecto (aquí) o individualmente para cada publicación usando las opciones cuando escribas." + +#: ../../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 "Nota: Debido a tus opciones de privacidad (¿Ocultar los detalles de tu perfil de espectadores desconocidos?) el vínculo potencialmente incluido en publicaciones públicas que se transmiten a Twitter conducirá al visitante a una página en blanco que informa a los visitantes que el acceso a tu perfil es restringido." + +#: ../../addon/twitter/twitter.php:195 +msgid "Allow posting to Twitter" +msgstr "Permitir publicar en Twitter" + +#: ../../addon/twitter/twitter.php:198 +msgid "Send public postings to Twitter by default" +msgstr "Enviar publicaciones públicas a Twitter por defecto" + +#: ../../addon/twitter/twitter.php:201 +msgid "Send linked #-tags and @-names to Twitter" +msgstr "Enviar a Twitter las #-etiquetas y @-nombres" + +#: ../../addon/twitter/twitter.php:396 +msgid "Consumer key" +msgstr "Clave del usuario" + +#: ../../addon/twitter/twitter.php:397 +msgid "Consumer secret" +msgstr "Secreto del usuario" + +#: ../../addon/irc/irc.php:44 +msgid "IRC Settings" +msgstr "Configuración IRC" + +#: ../../addon/irc/irc.php:46 +msgid "Channel(s) to auto connect (comma separated)" +msgstr "Conectar automáticamente a (canales separados por coma)" + +#: ../../addon/irc/irc.php:51 +msgid "Popular Channels (comma separated)" +msgstr "Canales populares (separados por coma)" + +#: ../../addon/irc/irc.php:69 +msgid "IRC settings saved." +msgstr "Configuración de IRC guardada." + +#: ../../addon/irc/irc.php:74 +msgid "IRC Chatroom" +msgstr "Sala de Chat IRC" + +#: ../../addon/irc/irc.php:96 +msgid "Popular Channels" +msgstr "Canales populares" + +#: ../../addon/fromapp/fromapp.php:38 +msgid "Fromapp settings updated." +msgstr "" + +#: ../../addon/fromapp/fromapp.php:64 +msgid "FromApp Settings" +msgstr "" + +#: ../../addon/fromapp/fromapp.php:66 +msgid "" +"The application name you would like to show your posts originating from." +msgstr "" + +#: ../../addon/fromapp/fromapp.php:70 +msgid "Use this application name even if another application was used." +msgstr "" + +#: ../../addon/blogger/blogger.php:42 +msgid "Post to blogger" +msgstr "Publícar en Blogger" + +#: ../../addon/blogger/blogger.php:74 +msgid "Blogger Post Settings" +msgstr "Configuración de las publicaciones en Blogger" + +#: ../../addon/blogger/blogger.php:76 +msgid "Enable Blogger Post Plugin" +msgstr "Activar el módulo de publicación en Blogger" + +#: ../../addon/blogger/blogger.php:81 +msgid "Blogger username" +msgstr "Nombre de usuario de Blogger" + +#: ../../addon/blogger/blogger.php:86 +msgid "Blogger password" +msgstr "Contraseña de Blogger" + +#: ../../addon/blogger/blogger.php:91 +msgid "Blogger API URL" +msgstr "Dirección de la API de Blogger" + +#: ../../addon/blogger/blogger.php:96 +msgid "Post to Blogger by default" +msgstr "Publicar en Blogger por defecto" + +#: ../../addon/posterous/posterous.php:37 +msgid "Post to Posterous" +msgstr "Publicar en Posterous" + +#: ../../addon/posterous/posterous.php:70 +msgid "Posterous Post Settings" +msgstr "Configuración de las publicaciones en Posterous" + +#: ../../addon/posterous/posterous.php:72 +msgid "Enable Posterous Post Plugin" +msgstr "Activar el módulo de publicación en Posterous" + +#: ../../addon/posterous/posterous.php:77 +msgid "Posterous login" +msgstr "Entrar en Posterous" + +#: ../../addon/posterous/posterous.php:82 +msgid "Posterous password" +msgstr "Contraseña de Posterous" + +#: ../../addon/posterous/posterous.php:87 +msgid "Posterous site ID" +msgstr "ID de Posterous" + +#: ../../addon/posterous/posterous.php:92 +msgid "Posterous API token" +msgstr "API de Posterous" + +#: ../../addon/posterous/posterous.php:97 +msgid "Post to Posterous by default" +msgstr "Publicar en Posterous por defecto" + +#: ../../view/theme/cleanzero/config.php:82 +#: ../../view/theme/diabook/config.php:192 +#: ../../view/theme/quattro/config.php:55 ../../view/theme/dispy/config.php:72 +msgid "Theme settings" +msgstr "Configuración del Tema" + +#: ../../view/theme/cleanzero/config.php:83 +msgid "Set resize level for images in posts and comments (width and height)" +msgstr "Configurar el tamaño de las imágenes en las publicaciones" + +#: ../../view/theme/cleanzero/config.php:84 +#: ../../view/theme/diabook/config.php:193 +#: ../../view/theme/dispy/config.php:73 +msgid "Set font-size for posts and comments" +msgstr "Tamaño del texto para publicaciones y comentarios" + +#: ../../view/theme/cleanzero/config.php:85 +msgid "Set theme width" +msgstr "Establecer el ancho para el tema" + +#: ../../view/theme/cleanzero/config.php:86 +#: ../../view/theme/quattro/config.php:57 +msgid "Color scheme" +msgstr "Esquema de color" + +#: ../../view/theme/diabook/theme.php:127 ../../include/nav.php:49 +#: ../../include/nav.php:115 +msgid "Your posts and conversations" +msgstr "Tus publicaciones y conversaciones" + +#: ../../view/theme/diabook/theme.php:128 ../../include/nav.php:50 +msgid "Your profile page" +msgstr "Tu página de perfil" + +#: ../../view/theme/diabook/theme.php:129 +msgid "Your contacts" +msgstr "Tus contactos" + +#: ../../view/theme/diabook/theme.php:130 ../../include/nav.php:51 +msgid "Your photos" +msgstr "Tus fotos" + +#: ../../view/theme/diabook/theme.php:131 ../../include/nav.php:52 +msgid "Your events" +msgstr "Tus eventos" + +#: ../../view/theme/diabook/theme.php:132 ../../include/nav.php:53 +msgid "Personal notes" +msgstr "Notas personales" + +#: ../../view/theme/diabook/theme.php:132 ../../include/nav.php:53 +msgid "Your personal photos" +msgstr "Tus fotos personales" + +#: ../../view/theme/diabook/theme.php:134 +#: ../../view/theme/diabook/theme.php:643 +#: ../../view/theme/diabook/theme.php:747 +#: ../../view/theme/diabook/config.php:201 +msgid "Community Pages" +msgstr "Páginas de Comunidad" + +#: ../../view/theme/diabook/theme.php:490 +#: ../../view/theme/diabook/theme.php:749 +#: ../../view/theme/diabook/config.php:203 +msgid "Community Profiles" +msgstr "Perfiles de la Comunidad" + +#: ../../view/theme/diabook/theme.php:511 +#: ../../view/theme/diabook/theme.php:754 +#: ../../view/theme/diabook/config.php:208 +msgid "Last users" +msgstr "Últimos usuarios" + +#: ../../view/theme/diabook/theme.php:540 +#: ../../view/theme/diabook/theme.php:756 +#: ../../view/theme/diabook/config.php:210 +msgid "Last likes" +msgstr "Últimos \"me gusta\"" + +#: ../../view/theme/diabook/theme.php:585 +#: ../../view/theme/diabook/theme.php:755 +#: ../../view/theme/diabook/config.php:209 +msgid "Last photos" +msgstr "Últimas fotos" + +#: ../../view/theme/diabook/theme.php:622 +#: ../../view/theme/diabook/theme.php:752 +#: ../../view/theme/diabook/config.php:206 +msgid "Find Friends" +msgstr "Buscar amigos" + +#: ../../view/theme/diabook/theme.php:623 +msgid "Local Directory" +msgstr "Directorio local" + +#: ../../view/theme/diabook/theme.php:625 ../../include/contact_widgets.php:35 +msgid "Similar Interests" +msgstr "Intereses similares" + +#: ../../view/theme/diabook/theme.php:627 ../../include/contact_widgets.php:37 +msgid "Invite Friends" +msgstr "Invitar amigos" + +#: ../../view/theme/diabook/theme.php:678 +#: ../../view/theme/diabook/theme.php:748 +#: ../../view/theme/diabook/config.php:202 +msgid "Earth Layers" +msgstr "Minimapa" + +#: ../../view/theme/diabook/theme.php:683 +msgid "Set zoomfactor for Earth Layers" +msgstr "Configurar zoom en Minimapa" + +#: ../../view/theme/diabook/theme.php:684 +#: ../../view/theme/diabook/config.php:199 +msgid "Set longitude (X) for Earth Layers" +msgstr "Configurar longitud (X) en Minimapa" + +#: ../../view/theme/diabook/theme.php:685 +#: ../../view/theme/diabook/config.php:200 +msgid "Set latitude (Y) for Earth Layers" +msgstr "Configurar latitud (Y) en Minimapa" + +#: ../../view/theme/diabook/theme.php:698 +#: ../../view/theme/diabook/theme.php:750 +#: ../../view/theme/diabook/config.php:204 +msgid "Help or @NewHere ?" +msgstr "¿Ayuda o @NuevoAquí?" + +#: ../../view/theme/diabook/theme.php:705 +#: ../../view/theme/diabook/theme.php:751 +#: ../../view/theme/diabook/config.php:205 +msgid "Connect Services" +msgstr "Servicios conectados" + +#: ../../view/theme/diabook/theme.php:712 +#: ../../view/theme/diabook/theme.php:753 +msgid "Last Tweets" +msgstr "Últimos tweets" + +#: ../../view/theme/diabook/theme.php:715 +#: ../../view/theme/diabook/config.php:197 +msgid "Set twitter search term" +msgstr "Establecer término de búsqueda en Twitter" + +#: ../../view/theme/diabook/theme.php:735 +#: ../../view/theme/diabook/theme.php:736 +#: ../../view/theme/diabook/theme.php:737 +#: ../../view/theme/diabook/theme.php:738 +#: ../../view/theme/diabook/theme.php:739 +#: ../../view/theme/diabook/theme.php:740 +#: ../../view/theme/diabook/theme.php:741 +#: ../../view/theme/diabook/theme.php:742 +#: ../../view/theme/diabook/theme.php:743 +#: ../../view/theme/diabook/theme.php:744 ../../include/acl_selectors.php:288 +msgid "don't show" +msgstr "no mostrar" + +#: ../../view/theme/diabook/theme.php:735 +#: ../../view/theme/diabook/theme.php:736 +#: ../../view/theme/diabook/theme.php:737 +#: ../../view/theme/diabook/theme.php:738 +#: ../../view/theme/diabook/theme.php:739 +#: ../../view/theme/diabook/theme.php:740 +#: ../../view/theme/diabook/theme.php:741 +#: ../../view/theme/diabook/theme.php:742 +#: ../../view/theme/diabook/theme.php:743 +#: ../../view/theme/diabook/theme.php:744 ../../include/acl_selectors.php:287 +msgid "show" +msgstr "mostrar" + +#: ../../view/theme/diabook/theme.php:745 +msgid "Show/hide boxes at right-hand column:" +msgstr "Mostrar/Ocultar casillas en la columna derecha:" + +#: ../../view/theme/diabook/config.php:194 +#: ../../view/theme/dispy/config.php:74 +msgid "Set line-height for posts and comments" +msgstr "Altura para las publicaciones y comentarios" + +#: ../../view/theme/diabook/config.php:195 +msgid "Set resolution for middle column" +msgstr "Resolución para la columna central" + +#: ../../view/theme/diabook/config.php:196 +msgid "Set color scheme" +msgstr "Configurar esquema de color" + +#: ../../view/theme/diabook/config.php:198 +msgid "Set zoomfactor for Earth Layer" +msgstr "Establecer zoom para Minimapa" + +#: ../../view/theme/diabook/config.php:207 +msgid "Last tweets" +msgstr "Últimos tweets" + +#: ../../view/theme/quattro/config.php:56 +msgid "Alignment" +msgstr "Alineación" + +#: ../../view/theme/quattro/config.php:56 +msgid "Left" +msgstr "Izquierda" + +#: ../../view/theme/quattro/config.php:56 +msgid "Center" +msgstr "Centrado" + +#: ../../view/theme/dispy/config.php:75 +msgid "Set colour scheme" +msgstr "Configurar esquema de color" + +#: ../../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 +msgid "Birthday:" +msgstr "Fecha de nacimiento:" + +#: ../../include/profile_advanced.php:34 +msgid "Age:" +msgstr "Edad:" + +#: ../../include/profile_advanced.php:43 +#, php-format +msgid "for %1$d %2$s" +msgstr "por %1$d %2$s" + +#: ../../include/profile_advanced.php:52 +msgid "Tags:" +msgstr "Etiquetas:" + +#: ../../include/profile_advanced.php:56 +msgid "Religion:" +msgstr "Religión:" + +#: ../../include/profile_advanced.php:60 +msgid "Hobbies/Interests:" +msgstr "Aficiones/Intereses:" + +#: ../../include/profile_advanced.php:67 +msgid "Contact information and Social Networks:" +msgstr "Información de contacto y Redes sociales:" + +#: ../../include/profile_advanced.php:69 +msgid "Musical interests:" +msgstr "Intereses musicales:" + +#: ../../include/profile_advanced.php:71 +msgid "Books, literature:" +msgstr "Libros, literatura:" + +#: ../../include/profile_advanced.php:73 +msgid "Television:" +msgstr "Televisión:" + +#: ../../include/profile_advanced.php:75 +msgid "Film/dance/culture/entertainment:" +msgstr "Películas/baile/cultura/entretenimiento:" + +#: ../../include/profile_advanced.php:77 +msgid "Love/Romance:" +msgstr "Amor/Romance:" + +#: ../../include/profile_advanced.php:79 +msgid "Work/employment:" +msgstr "Trabajo/ocupación:" + +#: ../../include/profile_advanced.php:81 +msgid "School/education:" +msgstr "Escuela/estudios:" #: ../../include/contact_selectors.php:32 msgid "Unknown | Not categorised" @@ -4417,19 +7347,7 @@ msgstr "Cada hora" msgid "Twice daily" msgstr "Dos veces al día" -#: ../../include/contact_selectors.php:59 -msgid "Daily" -msgstr "Diariamente" - -#: ../../include/contact_selectors.php:60 -msgid "Weekly" -msgstr "Semanalmente" - -#: ../../include/contact_selectors.php:61 -msgid "Monthly" -msgstr "Mensualmente" - -#: ../../include/contact_selectors.php:78 +#: ../../include/contact_selectors.php:77 msgid "OStatus" msgstr "OStatus" @@ -4437,10 +7355,22 @@ msgstr "OStatus" msgid "RSS/Atom" msgstr "RSS/Atom" -#: ../../include/contact_selectors.php:78 +#: ../../include/contact_selectors.php:82 msgid "Zot!" msgstr "Zot!" +#: ../../include/contact_selectors.php:83 +msgid "LinkedIn" +msgstr "LinkedIn" + +#: ../../include/contact_selectors.php:84 +msgid "XMPP/IM" +msgstr "XMPP/IM" + +#: ../../include/contact_selectors.php:85 +msgid "MySpace" +msgstr "MySpace" + #: ../../include/profile_selectors.php:6 msgid "Male" msgstr "Hombre" @@ -4467,7 +7397,7 @@ msgstr "Mayormente Mujer" #: ../../include/profile_selectors.php:6 msgid "Transgender" -msgstr "Transgénero" +msgstr "Transgenérico" #: ../../include/profile_selectors.php:6 msgid "Intersex" @@ -4497,737 +7427,596 @@ msgstr "Otro" msgid "Undecided" msgstr "Indeciso" -#: ../../include/profile_selectors.php:19 +#: ../../include/profile_selectors.php:23 msgid "Males" msgstr "Hombres" -#: ../../include/profile_selectors.php:19 +#: ../../include/profile_selectors.php:23 msgid "Females" msgstr "Mujeres" -#: ../../include/profile_selectors.php:19 +#: ../../include/profile_selectors.php:23 msgid "Gay" msgstr "Gay" -#: ../../include/profile_selectors.php:19 +#: ../../include/profile_selectors.php:23 msgid "Lesbian" msgstr "Lesbiana" -#: ../../include/profile_selectors.php:19 +#: ../../include/profile_selectors.php:23 msgid "No Preference" msgstr "Sin preferencias" -#: ../../include/profile_selectors.php:19 +#: ../../include/profile_selectors.php:23 msgid "Bisexual" msgstr "Bisexual" -#: ../../include/profile_selectors.php:19 +#: ../../include/profile_selectors.php:23 msgid "Autosexual" msgstr "Autosexual" -#: ../../include/profile_selectors.php:19 +#: ../../include/profile_selectors.php:23 msgid "Abstinent" -msgstr "Abstinente" +msgstr "Célibe" -#: ../../include/profile_selectors.php:19 +#: ../../include/profile_selectors.php:23 msgid "Virgin" msgstr "Virgen" -#: ../../include/profile_selectors.php:19 +#: ../../include/profile_selectors.php:23 msgid "Deviant" msgstr "Desviado" -#: ../../include/profile_selectors.php:19 +#: ../../include/profile_selectors.php:23 msgid "Fetish" msgstr "Fetichista" -#: ../../include/profile_selectors.php:19 +#: ../../include/profile_selectors.php:23 msgid "Oodles" -msgstr "Orgías" +msgstr "Orgiástico" -#: ../../include/profile_selectors.php:19 +#: ../../include/profile_selectors.php:23 msgid "Nonsexual" msgstr "Asexual" -#: ../../include/profile_selectors.php:33 +#: ../../include/profile_selectors.php:42 msgid "Single" msgstr "Soltero" -#: ../../include/profile_selectors.php:33 +#: ../../include/profile_selectors.php:42 msgid "Lonely" msgstr "Solitario" -#: ../../include/profile_selectors.php:33 +#: ../../include/profile_selectors.php:42 msgid "Available" msgstr "Disponible" -#: ../../include/profile_selectors.php:33 +#: ../../include/profile_selectors.php:42 msgid "Unavailable" msgstr "No disponible" -#: ../../include/profile_selectors.php:33 +#: ../../include/profile_selectors.php:42 +msgid "Has crush" +msgstr "Enamorado" + +#: ../../include/profile_selectors.php:42 +msgid "Infatuated" +msgstr "Loco/a por alguien" + +#: ../../include/profile_selectors.php:42 msgid "Dating" msgstr "De citas" -#: ../../include/profile_selectors.php:33 +#: ../../include/profile_selectors.php:42 msgid "Unfaithful" msgstr "Infiel" -#: ../../include/profile_selectors.php:33 +#: ../../include/profile_selectors.php:42 msgid "Sex Addict" msgstr "Adicto al sexo" -#: ../../include/profile_selectors.php:33 +#: ../../include/profile_selectors.php:42 ../../include/user.php:278 +#: ../../include/user.php:282 msgid "Friends" msgstr "Amigos" -#: ../../include/profile_selectors.php:33 +#: ../../include/profile_selectors.php:42 msgid "Friends/Benefits" msgstr "Amigos con beneficios" -#: ../../include/profile_selectors.php:33 +#: ../../include/profile_selectors.php:42 msgid "Casual" msgstr "Casual" -#: ../../include/profile_selectors.php:33 +#: ../../include/profile_selectors.php:42 msgid "Engaged" msgstr "Comprometido/a" -#: ../../include/profile_selectors.php:33 +#: ../../include/profile_selectors.php:42 msgid "Married" msgstr "Casado/a" -#: ../../include/profile_selectors.php:33 +#: ../../include/profile_selectors.php:42 +msgid "Imaginarily married" +msgstr "Casado imaginario" + +#: ../../include/profile_selectors.php:42 msgid "Partners" msgstr "Socios" -#: ../../include/profile_selectors.php:33 +#: ../../include/profile_selectors.php:42 msgid "Cohabiting" msgstr "Cohabitando" -#: ../../include/profile_selectors.php:33 +#: ../../include/profile_selectors.php:42 +msgid "Common law" +msgstr "Pareja de hecho" + +#: ../../include/profile_selectors.php:42 msgid "Happy" msgstr "Feliz" -#: ../../include/profile_selectors.php:33 -msgid "Not Looking" -msgstr "No estoy buscando" +#: ../../include/profile_selectors.php:42 +msgid "Not looking" +msgstr "No busca relación" -#: ../../include/profile_selectors.php:33 +#: ../../include/profile_selectors.php:42 msgid "Swinger" msgstr "Swinger" -#: ../../include/profile_selectors.php:33 +#: ../../include/profile_selectors.php:42 msgid "Betrayed" msgstr "Traicionado/a" -#: ../../include/profile_selectors.php:33 +#: ../../include/profile_selectors.php:42 msgid "Separated" msgstr "Separado/a" -#: ../../include/profile_selectors.php:33 +#: ../../include/profile_selectors.php:42 msgid "Unstable" msgstr "Inestable" -#: ../../include/profile_selectors.php:33 +#: ../../include/profile_selectors.php:42 msgid "Divorced" msgstr "Divorciado/a" -#: ../../include/profile_selectors.php:33 +#: ../../include/profile_selectors.php:42 +msgid "Imaginarily divorced" +msgstr "Divorciado imaginario" + +#: ../../include/profile_selectors.php:42 msgid "Widowed" msgstr "Viudo/a" -#: ../../include/profile_selectors.php:33 +#: ../../include/profile_selectors.php:42 msgid "Uncertain" msgstr "Incierto" -#: ../../include/profile_selectors.php:33 -msgid "Complicated" -msgstr "Complicado" +#: ../../include/profile_selectors.php:42 +msgid "It's complicated" +msgstr "Es complicado" -#: ../../include/profile_selectors.php:33 +#: ../../include/profile_selectors.php:42 msgid "Don't care" msgstr "No te importa" -#: ../../include/profile_selectors.php:33 +#: ../../include/profile_selectors.php:42 msgid "Ask me" msgstr "Pregúntame" -#: ../../include/event.php:17 ../../include/bb2diaspora.php:233 +#: ../../include/event.php:20 ../../include/bb2diaspora.php:396 msgid "Starts:" msgstr "Inicio:" -#: ../../include/event.php:27 ../../include/bb2diaspora.php:241 +#: ../../include/event.php:30 ../../include/bb2diaspora.php:404 msgid "Finishes:" msgstr "Final:" -#: ../../include/acl_selectors.php:279 -msgid "Visible to everybody" -msgstr "Visible para cualquiera" +#: ../../include/delivery.php:457 ../../include/notifier.php:703 +msgid "(no subject)" +msgstr "(sin asunto)" -#: ../../include/acl_selectors.php:280 -msgid "show" -msgstr "mostrar" +#: ../../include/Scrape.php:576 +msgid " on Last.fm" +msgstr "en Last.fm" -#: ../../include/acl_selectors.php:281 -msgid "don't show" -msgstr "no mostrar" - -#: ../../include/auth.php:27 -msgid "Logged out." -msgstr "Sesión terminada" - -#: ../../include/bbcode.php:147 -msgid "Image/photo" -msgstr "Imagen/Foto" - -#: ../../include/poller.php:457 -msgid "From: " -msgstr "De:" - -#: ../../include/Contact.php:125 ../../include/conversation.php:675 -msgid "View status" -msgstr "Ver estado" - -#: ../../include/Contact.php:126 ../../include/conversation.php:676 -msgid "View profile" -msgstr "Ver perfirl" - -#: ../../include/Contact.php:127 ../../include/conversation.php:677 -msgid "View photos" -msgstr "Ver fotos" - -#: ../../include/Contact.php:128 ../../include/Contact.php:141 -#: ../../include/conversation.php:678 -msgid "View recent" -msgstr "Ver recientes" - -#: ../../include/Contact.php:130 ../../include/Contact.php:141 -#: ../../include/conversation.php:680 -msgid "Send PM" -msgstr "Enviar mensaje privado" - -#: ../../include/datetime.php:44 ../../include/datetime.php:46 -msgid "Miscellaneous" -msgstr "Varios" - -#: ../../include/datetime.php:105 ../../include/datetime.php:237 -msgid "year" -msgstr "año" - -#: ../../include/datetime.php:110 ../../include/datetime.php:238 -msgid "month" -msgstr "mes" - -#: ../../include/datetime.php:115 ../../include/datetime.php:240 -msgid "day" -msgstr "día" - -#: ../../include/datetime.php:228 -msgid "never" -msgstr "nunca" - -#: ../../include/datetime.php:234 -msgid "less than a second ago" -msgstr "hace menos de un segundo" - -#: ../../include/datetime.php:237 -msgid "years" -msgstr "años" - -#: ../../include/datetime.php:238 -msgid "months" -msgstr "meses" - -#: ../../include/datetime.php:239 -msgid "week" -msgstr "semana" - -#: ../../include/datetime.php:239 -msgid "weeks" -msgstr "semanas" - -#: ../../include/datetime.php:240 -msgid "days" -msgstr "días" - -#: ../../include/datetime.php:241 -msgid "hour" -msgstr "hora" - -#: ../../include/datetime.php:241 -msgid "hours" -msgstr "horas" - -#: ../../include/datetime.php:242 -msgid "minute" -msgstr "minuto" - -#: ../../include/datetime.php:242 -msgid "minutes" -msgstr "minutos" - -#: ../../include/datetime.php:243 -msgid "second" -msgstr "segundo" - -#: ../../include/datetime.php:243 -msgid "seconds" -msgstr "segundos" - -#: ../../include/datetime.php:250 -msgid " ago" -msgstr " hace" - -#: ../../include/datetime.php:421 ../../include/profile_advanced.php:30 -#: ../../include/items.php:1215 -msgid "Birthday:" -msgstr "Fecha de nacimiento:" - -#: ../../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:34 -msgid "Age:" -msgstr "Edad:" - -#: ../../include/profile_advanced.php:49 -msgid "Religion:" -msgstr "Religión:" - -#: ../../include/profile_advanced.php:51 -msgid "About:" -msgstr "Acerca de:" - -#: ../../include/profile_advanced.php:53 -msgid "Hobbies/Interests:" -msgstr "Aficiones/Intereses:" - -#: ../../include/profile_advanced.php:55 -msgid "Contact information and Social Networks:" -msgstr "Información de contacto y Redes sociales:" - -#: ../../include/profile_advanced.php:57 -msgid "Musical interests:" -msgstr "Intereses musicales:" - -#: ../../include/profile_advanced.php:59 -msgid "Books, literature:" -msgstr "Libros, literatura:" - -#: ../../include/profile_advanced.php:61 -msgid "Television:" -msgstr "Televisión:" - -#: ../../include/profile_advanced.php:63 -msgid "Film/dance/culture/entertainment:" -msgstr "Películas/baile/cultura/entretenimiento:" - -#: ../../include/profile_advanced.php:65 -msgid "Love/Romance:" -msgstr "Amor/Romance:" - -#: ../../include/profile_advanced.php:67 -msgid "Work/employment:" -msgstr "Trabajo/ocupación:" - -#: ../../include/profile_advanced.php:69 -msgid "School/education:" -msgstr "Escuela/estudios:" - -#: ../../include/text.php:232 +#: ../../include/text.php:243 msgid "prev" msgstr "ant." -#: ../../include/text.php:234 +#: ../../include/text.php:245 msgid "first" msgstr "primera" -#: ../../include/text.php:263 +#: ../../include/text.php:274 msgid "last" msgstr "última" -#: ../../include/text.php:266 +#: ../../include/text.php:277 msgid "next" msgstr "sig." -#: ../../include/text.php:546 +#: ../../include/text.php:295 +msgid "newer" +msgstr "más nuevo" + +#: ../../include/text.php:299 +msgid "older" +msgstr "más antiguo" + +#: ../../include/text.php:597 msgid "No contacts" msgstr "Sin contactos" -#: ../../include/text.php:555 +#: ../../include/text.php:606 #, php-format msgid "%d Contact" msgid_plural "%d Contacts" msgstr[0] "%d Contacto" msgstr[1] "%d Contactos" -#: ../../include/text.php:626 ../../include/nav.php:87 -msgid "Search" -msgstr "Buscar" +#: ../../include/text.php:719 +msgid "poke" +msgstr "tocar" -#: ../../include/text.php:709 -msgid "Monday" -msgstr "Lunes" +#: ../../include/text.php:719 ../../include/conversation.php:210 +msgid "poked" +msgstr "tocó a" -#: ../../include/text.php:709 -msgid "Tuesday" -msgstr "Martes" +#: ../../include/text.php:720 +msgid "ping" +msgstr "hacer \"ping\"" -#: ../../include/text.php:709 -msgid "Wednesday" -msgstr "Miércoles" +#: ../../include/text.php:720 +msgid "pinged" +msgstr "hizo \"ping\" a" -#: ../../include/text.php:709 -msgid "Thursday" -msgstr "Jueves" +#: ../../include/text.php:721 +msgid "prod" +msgstr "empujar" -#: ../../include/text.php:709 -msgid "Friday" -msgstr "Viernes" +#: ../../include/text.php:721 +msgid "prodded" +msgstr "empujó a" -#: ../../include/text.php:709 -msgid "Saturday" -msgstr "Sábado" +#: ../../include/text.php:722 +msgid "slap" +msgstr "abofetear" -#: ../../include/text.php:709 -msgid "Sunday" -msgstr "Domingo" +#: ../../include/text.php:722 +msgid "slapped" +msgstr "abofeteó a" -#: ../../include/text.php:713 +#: ../../include/text.php:723 +msgid "finger" +msgstr "meter dedo" + +#: ../../include/text.php:723 +msgid "fingered" +msgstr "le metió un dedo a" + +#: ../../include/text.php:724 +msgid "rebuff" +msgstr "desairar" + +#: ../../include/text.php:724 +msgid "rebuffed" +msgstr "desairó a" + +#: ../../include/text.php:736 +msgid "happy" +msgstr "feliz" + +#: ../../include/text.php:737 +msgid "sad" +msgstr "triste" + +#: ../../include/text.php:738 +msgid "mellow" +msgstr "sentimental" + +#: ../../include/text.php:739 +msgid "tired" +msgstr "cansado" + +#: ../../include/text.php:740 +msgid "perky" +msgstr "alegre" + +#: ../../include/text.php:741 +msgid "angry" +msgstr "furioso" + +#: ../../include/text.php:742 +msgid "stupified" +msgstr "estupefacto" + +#: ../../include/text.php:743 +msgid "puzzled" +msgstr "extrañado" + +#: ../../include/text.php:744 +msgid "interested" +msgstr "interesado" + +#: ../../include/text.php:745 +msgid "bitter" +msgstr "rencoroso" + +#: ../../include/text.php:746 +msgid "cheerful" +msgstr "jovial" + +#: ../../include/text.php:747 +msgid "alive" +msgstr "vivo" + +#: ../../include/text.php:748 +msgid "annoyed" +msgstr "enojado" + +#: ../../include/text.php:749 +msgid "anxious" +msgstr "ansioso" + +#: ../../include/text.php:750 +msgid "cranky" +msgstr "irritable" + +#: ../../include/text.php:751 +msgid "disturbed" +msgstr "perturbado" + +#: ../../include/text.php:752 +msgid "frustrated" +msgstr "frustrado" + +#: ../../include/text.php:753 +msgid "motivated" +msgstr "motivado" + +#: ../../include/text.php:754 +msgid "relaxed" +msgstr "relajado" + +#: ../../include/text.php:755 +msgid "surprised" +msgstr "sorprendido" + +#: ../../include/text.php:921 msgid "January" msgstr "Enero" -#: ../../include/text.php:713 +#: ../../include/text.php:921 msgid "February" msgstr "Febrero" -#: ../../include/text.php:713 +#: ../../include/text.php:921 msgid "March" msgstr "Marzo" -#: ../../include/text.php:713 +#: ../../include/text.php:921 msgid "April" msgstr "Abril" -#: ../../include/text.php:713 +#: ../../include/text.php:921 msgid "May" msgstr "Mayo" -#: ../../include/text.php:713 +#: ../../include/text.php:921 msgid "June" msgstr "Junio" -#: ../../include/text.php:713 +#: ../../include/text.php:921 msgid "July" msgstr "Julio" -#: ../../include/text.php:713 +#: ../../include/text.php:921 msgid "August" msgstr "Agosto" -#: ../../include/text.php:713 +#: ../../include/text.php:921 msgid "September" msgstr "Septiembre" -#: ../../include/text.php:713 +#: ../../include/text.php:921 msgid "October" msgstr "Octubre" -#: ../../include/text.php:713 +#: ../../include/text.php:921 msgid "November" msgstr "Noviembre" -#: ../../include/text.php:713 +#: ../../include/text.php:921 msgid "December" msgstr "Diciembre" -#: ../../include/text.php:783 +#: ../../include/text.php:1007 msgid "bytes" msgstr "bytes" -#: ../../include/text.php:875 -msgid "Select an alternate language" -msgstr "Elige otro idioma" +#: ../../include/text.php:1034 ../../include/text.php:1046 +msgid "Click to open/close" +msgstr "Pulsa para abrir/cerrar" -#: ../../include/text.php:887 +#: ../../include/text.php:1219 ../../include/user.php:236 msgid "default" msgstr "predeterminado" -#: ../../include/nav.php:44 -msgid "End this session" -msgstr "Terminar esta sesión" +#: ../../include/text.php:1231 +msgid "Select an alternate language" +msgstr "Elige otro idioma" -#: ../../include/nav.php:47 ../../include/nav.php:111 -msgid "Your posts and conversations" -msgstr "Tus publicaciones y conversaciones" +#: ../../include/text.php:1441 +msgid "activity" +msgstr "Actividad" -#: ../../include/nav.php:48 -msgid "Your profile page" -msgstr "Su página de perfil" +#: ../../include/text.php:1444 +msgid "post" +msgstr "Publicación" -#: ../../include/nav.php:49 -msgid "Your photos" -msgstr "Sus fotos" +#: ../../include/text.php:1599 +msgid "Item filed" +msgstr "Elemento archivado" -#: ../../include/nav.php:50 -msgid "Your events" -msgstr "Sus eventos" +#: ../../include/diaspora.php:691 +msgid "Sharing notification from Diaspora network" +msgstr "Compartir notificaciones con la red Diaspora*" -#: ../../include/nav.php:51 -msgid "Personal notes" -msgstr "Notas personales" +#: ../../include/diaspora.php:2211 +msgid "Attachments:" +msgstr "Archivos adjuntos:" -#: ../../include/nav.php:51 -msgid "Your personal photos" -msgstr "Sus fotos personales" - -#: ../../include/nav.php:62 -msgid "Sign in" -msgstr "Date de alta" - -#: ../../include/nav.php:73 -msgid "Home Page" -msgstr "Página de inicio" - -#: ../../include/nav.php:77 -msgid "Create an account" -msgstr "Crea una cuenta" - -#: ../../include/nav.php:82 -msgid "Help and documentation" -msgstr "Ayuda y documentación" - -#: ../../include/nav.php:85 -msgid "Apps" -msgstr "Aplicaciones" - -#: ../../include/nav.php:85 -msgid "Addon applications, utilities, games" -msgstr "APlicaciones, utilidades, juegos" - -#: ../../include/nav.php:87 -msgid "Search site content" -msgstr " Busca contenido en la página" - -#: ../../include/nav.php:97 -msgid "Conversations on this site" -msgstr "Conversaciones en este sitio" - -#: ../../include/nav.php:99 -msgid "Directory" -msgstr "Directorio" - -#: ../../include/nav.php:99 -msgid "People directory" -msgstr "Directorio de gente" - -#: ../../include/nav.php:109 -msgid "Conversations from your friends" -msgstr "Conversaciones de tus amigos" - -#: ../../include/nav.php:117 -msgid "Friend Requests" -msgstr "Solicitudes de amistad" - -#: ../../include/nav.php:122 -msgid "Private mail" -msgstr "Correo privado" - -#: ../../include/nav.php:125 -msgid "Manage" -msgstr "Administrar" - -#: ../../include/nav.php:125 -msgid "Manage other pages" -msgstr "Administrar otras páginas" - -#: ../../include/nav.php:130 -msgid "Manage/edit friends and contacts" -msgstr "Administrar/editar amigos y contactos" - -#: ../../include/nav.php:137 -msgid "Admin" -msgstr "Admin" - -#: ../../include/nav.php:137 -msgid "Site setup and configuration" -msgstr "Opciones y configuración del sitio" - -#: ../../include/nav.php:160 -msgid "Nothing new here" -msgstr "Nada nuevo aquí" - -#: ../../include/conversation.php:210 ../../include/conversation.php:453 -msgid "Select" -msgstr "Seleccionar" - -#: ../../include/conversation.php:225 ../../include/conversation.php:550 -#: ../../include/conversation.php:551 -#, php-format -msgid "View %s's profile @ %s" -msgstr "Ver perfil de %s @ %s" - -#: ../../include/conversation.php:234 ../../include/conversation.php:562 -#, php-format -msgid "%s from %s" -msgstr "%s de %s" - -#: ../../include/conversation.php:250 -msgid "View in context" -msgstr "Verlo en contexto" - -#: ../../include/conversation.php:356 -#, php-format -msgid "See all %d comments" -msgstr "Ver los %d comentarios" - -#: ../../include/conversation.php:416 -msgid "like" -msgstr "me gusta" - -#: ../../include/conversation.php:417 -msgid "dislike" -msgstr "no me gusta" - -#: ../../include/conversation.php:419 -msgid "Share this" -msgstr "Compartir esto" - -#: ../../include/conversation.php:419 -msgid "share" -msgstr "compartir" - -#: ../../include/conversation.php:463 -msgid "add star" -msgstr "Añadir estrella" - -#: ../../include/conversation.php:464 -msgid "remove star" -msgstr "Quitar estrella" - -#: ../../include/conversation.php:465 -msgid "toggle star status" -msgstr "Añadir a destacados" - -#: ../../include/conversation.php:468 -msgid "starred" -msgstr "marcados con estrellas" - -#: ../../include/conversation.php:469 -msgid "add tag" -msgstr "añadir etiqueta" - -#: ../../include/conversation.php:552 -msgid "to" -msgstr "a" - -#: ../../include/conversation.php:553 -msgid "Wall-to-Wall" -msgstr "Muro-A-Muro" - -#: ../../include/conversation.php:554 -msgid "via Wall-To-Wall:" -msgstr "via Muro-A-Muro:" - -#: ../../include/conversation.php:600 -msgid "Delete Selected Items" -msgstr "Eliminar el elemento seleccionado" - -#: ../../include/conversation.php:730 -#, php-format -msgid "%s likes this." -msgstr "A %s le gusta esto." - -#: ../../include/conversation.php:730 -#, php-format -msgid "%s doesn't like this." -msgstr "A %s no le gusta esto." - -#: ../../include/conversation.php:734 -#, php-format -msgid "%2$d people like this." -msgstr "Le gusta a %2$d personas." - -#: ../../include/conversation.php:736 -#, php-format -msgid "%2$d people don't like this." -msgstr "No le gusta a %2$d personas." - -#: ../../include/conversation.php:742 -msgid "and" -msgstr "y" - -#: ../../include/conversation.php:745 -#, php-format -msgid ", and %d other people" -msgstr ", y otras %d personas" - -#: ../../include/conversation.php:746 -#, php-format -msgid "%s like this." -msgstr "Le gusta a %s." - -#: ../../include/conversation.php:746 -#, php-format -msgid "%s don't like this." -msgstr "No le gusta a %s." - -#: ../../include/conversation.php:766 -msgid "Visible to everybody" -msgstr "Visible para cualquiera" - -#: ../../include/conversation.php:768 -msgid "Please enter a video link/URL:" -msgstr "Por favor, introduzca la URL/enlace del vídeo:" - -#: ../../include/conversation.php:769 -msgid "Please enter an audio link/URL:" -msgstr "Por favor, introduzca la URL/enlace del audio:" - -#: ../../include/conversation.php:770 -msgid "Tag term:" -msgstr "Etiquetar:" - -#: ../../include/conversation.php:771 -msgid "Where are you right now?" -msgstr "¿Dónde estás ahora?" - -#: ../../include/conversation.php:772 -msgid "Enter a title for this item" -msgstr "Introduce un título para este elemento" - -#: ../../include/conversation.php:818 -msgid "Insert video link" -msgstr "Insertar enlace del vídeo" - -#: ../../include/conversation.php:819 -msgid "Insert audio link" -msgstr "Inserte un vínculo del audio" - -#: ../../include/conversation.php:822 -msgid "Set title" -msgstr "Establecer el título" - -#: ../../include/bb2diaspora.php:51 +#: ../../include/network.php:849 msgid "view full size" msgstr "Ver a tamaño completo" -#: ../../include/bb2diaspora.php:102 -msgid "image/photo" -msgstr "imagen/foto" +#: ../../include/oembed.php:137 +msgid "Embedded content" +msgstr "Contenido integrado" -#: ../../include/dba.php:31 -#, php-format -msgid "Cannot locate DNS info for database server '%s'" -msgstr "" -"No se puede encontrar información de DNS para el servidor de base de datos " -"'%s'" +#: ../../include/oembed.php:146 +msgid "Embedding disabled" +msgstr "Contenido incrustrado desabilitado" + +#: ../../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 "Un grupo eliminado con este nombre fue restablecido. Los permisos existentes pueden aplicarse a este grupo y a sus futuros miembros. Si esto no es lo que pretendes, por favor, crea otro grupo con un nombre diferente." + +#: ../../include/group.php:176 +msgid "Default privacy group for new contacts" +msgstr "Grupo por defecto para nuevos contactos" + +#: ../../include/group.php:195 +msgid "Everybody" +msgstr "Todo el mundo" + +#: ../../include/group.php:218 +msgid "edit" +msgstr "editar" + +#: ../../include/group.php:240 +msgid "Edit group" +msgstr "Editar grupo" + +#: ../../include/group.php:241 +msgid "Create a new group" +msgstr "Crear un nuevo grupo" + +#: ../../include/group.php:242 +msgid "Contacts not in any group" +msgstr "Contactos sin grupo" + +#: ../../include/nav.php:46 ../../boot.php:911 +msgid "Logout" +msgstr "Salir" + +#: ../../include/nav.php:46 +msgid "End this session" +msgstr "Cerrar la sesión" + +#: ../../include/nav.php:49 ../../boot.php:1665 +msgid "Status" +msgstr "Estado" + +#: ../../include/nav.php:64 +msgid "Sign in" +msgstr "Date de alta" + +#: ../../include/nav.php:77 +msgid "Home Page" +msgstr "Página de inicio" + +#: ../../include/nav.php:81 +msgid "Create an account" +msgstr "Crea una cuenta" + +#: ../../include/nav.php:86 +msgid "Help and documentation" +msgstr "Ayuda y documentación" + +#: ../../include/nav.php:89 +msgid "Apps" +msgstr "Aplicaciones" + +#: ../../include/nav.php:89 +msgid "Addon applications, utilities, games" +msgstr "Aplicaciones, utilidades, juegos" + +#: ../../include/nav.php:91 +msgid "Search site content" +msgstr " Busca contenido en la página" + +#: ../../include/nav.php:101 +msgid "Conversations on this site" +msgstr "Conversaciones en este sitio" + +#: ../../include/nav.php:103 +msgid "Directory" +msgstr "Directorio" + +#: ../../include/nav.php:103 +msgid "People directory" +msgstr "Directorio de usuarios" + +#: ../../include/nav.php:113 +msgid "Conversations from your friends" +msgstr "Conversaciones de tus amigos" + +#: ../../include/nav.php:121 +msgid "Friend Requests" +msgstr "Solicitudes de amistad" + +#: ../../include/nav.php:123 +msgid "See all notifications" +msgstr "Ver todas las notificaciones" + +#: ../../include/nav.php:124 +msgid "Mark all system notifications seen" +msgstr "Marcar todas las notificaciones del sistema como leídas" + +#: ../../include/nav.php:128 +msgid "Private mail" +msgstr "Correo privado" + +#: ../../include/nav.php:129 +msgid "Inbox" +msgstr "Entrada" + +#: ../../include/nav.php:130 +msgid "Outbox" +msgstr "Enviados" + +#: ../../include/nav.php:134 +msgid "Manage" +msgstr "Administrar" + +#: ../../include/nav.php:134 +msgid "Manage other pages" +msgstr "Administrar otras páginas" + +#: ../../include/nav.php:138 ../../boot.php:1186 +msgid "Profiles" +msgstr "Perfiles" + +#: ../../include/nav.php:138 ../../boot.php:1186 +msgid "Manage/edit profiles" +msgstr "Administrar/editar perfiles" + +#: ../../include/nav.php:139 +msgid "Manage/edit friends and contacts" +msgstr "Administrar/editar amigos y contactos" + +#: ../../include/nav.php:146 +msgid "Site setup and configuration" +msgstr "Opciones y configuración del sitio" + +#: ../../include/nav.php:170 +msgid "Nothing new here" +msgstr "Nada nuevo por aquí" #: ../../include/contact_widgets.php:6 msgid "Add New Contact" @@ -5235,97 +8024,780 @@ msgstr "Añadir nuevo contacto" #: ../../include/contact_widgets.php:7 msgid "Enter address or web location" -msgstr "Escriba la dirección o página web" +msgstr "Escribe la dirección o página web" #: ../../include/contact_widgets.php:8 msgid "Example: bob@example.com, http://example.com/barbara" -msgstr "Ejemplo: bob@ejemplo.com, http://ejemplo.com/barbara" +msgstr "Ejemplo: miguel@ejemplo.com, http://ejemplo.com/miguel" -#: ../../include/contact_widgets.php:18 -msgid "Invite Friends" -msgstr "Invitar amigos" - -#: ../../include/contact_widgets.php:24 +#: ../../include/contact_widgets.php:23 #, php-format msgid "%d invitation available" msgid_plural "%d invitations available" msgstr[0] "%d invitación disponible" msgstr[1] "%d invitaviones disponibles" -#: ../../include/contact_widgets.php:30 +#: ../../include/contact_widgets.php:29 msgid "Find People" msgstr "Buscar personas" -#: ../../include/contact_widgets.php:31 +#: ../../include/contact_widgets.php:30 msgid "Enter name or interest" -msgstr "Introduzca nombre o intereses" +msgstr "Introduzce nombre o intereses" -#: ../../include/contact_widgets.php:32 +#: ../../include/contact_widgets.php:31 msgid "Connect/Follow" msgstr "Conectar/Seguir" -#: ../../include/contact_widgets.php:33 +#: ../../include/contact_widgets.php:32 msgid "Examples: Robert Morgenstein, Fishing" msgstr "Ejemplos: Robert Morgenstein, Pesca" #: ../../include/contact_widgets.php:36 -msgid "Similar Interests" -msgstr "Intereses similares" +msgid "Random Profile" +msgstr "Perfil aleatorio" -#: ../../include/items.php:1829 -msgid "New mail received at " -msgstr "Nuevo correo recibido en " +#: ../../include/contact_widgets.php:68 +msgid "Networks" +msgstr "Redes" -#: ../../include/items.php:2438 -msgid "A new person is sharing with you at " -msgstr "Una nueva persona está compartiendo con usted en" +#: ../../include/contact_widgets.php:71 +msgid "All Networks" +msgstr "Todas las redes" -#: ../../include/items.php:2438 -msgid "You have a new follower at " -msgstr "Tienes un nuevo seguidor en " +#: ../../include/contact_widgets.php:98 +msgid "Saved Folders" +msgstr "Directorios guardados" -#: ../../include/message.php:13 +#: ../../include/contact_widgets.php:101 ../../include/contact_widgets.php:129 +msgid "Everything" +msgstr "Todo" + +#: ../../include/contact_widgets.php:126 +msgid "Categories" +msgstr "Categorías" + +#: ../../include/auth.php:35 +msgid "Logged out." +msgstr "Sesión finalizada" + +#: ../../include/auth.php:114 +msgid "" +"We encountered a problem while logging in with the OpenID you provided. " +"Please check the correct spelling of the ID." +msgstr "Se ha encontrado un problema para acceder con el OpenID que has escrito. Verifica que lo hayas escrito correctamente." + +#: ../../include/auth.php:114 +msgid "The error message was:" +msgstr "El mensaje del error fue:" + +#: ../../include/datetime.php:43 ../../include/datetime.php:45 +msgid "Miscellaneous" +msgstr "Varios" + +#: ../../include/datetime.php:153 ../../include/datetime.php:285 +msgid "year" +msgstr "año" + +#: ../../include/datetime.php:158 ../../include/datetime.php:286 +msgid "month" +msgstr "mes" + +#: ../../include/datetime.php:163 ../../include/datetime.php:288 +msgid "day" +msgstr "día" + +#: ../../include/datetime.php:276 +msgid "never" +msgstr "nunca" + +#: ../../include/datetime.php:282 +msgid "less than a second ago" +msgstr "hace menos de un segundo" + +#: ../../include/datetime.php:287 +msgid "week" +msgstr "semana" + +#: ../../include/datetime.php:289 +msgid "hour" +msgstr "hora" + +#: ../../include/datetime.php:289 +msgid "hours" +msgstr "horas" + +#: ../../include/datetime.php:290 +msgid "minute" +msgstr "minuto" + +#: ../../include/datetime.php:290 +msgid "minutes" +msgstr "minutos" + +#: ../../include/datetime.php:291 +msgid "second" +msgstr "segundo" + +#: ../../include/datetime.php:291 +msgid "seconds" +msgstr "segundos" + +#: ../../include/datetime.php:300 +#, php-format +msgid "%1$d %2$s ago" +msgstr "hace %1$d %2$s" + +#: ../../include/datetime.php:472 ../../include/items.php:1683 +#, php-format +msgid "%s's birthday" +msgstr "Cumpleaños de %s" + +#: ../../include/datetime.php:473 ../../include/items.php:1684 +#, php-format +msgid "Happy Birthday %s" +msgstr "Feliz cumpleaños %s" + +#: ../../include/onepoll.php:399 +msgid "From: " +msgstr "De: " + +#: ../../include/bbcode.php:185 ../../include/bbcode.php:406 +msgid "Image/photo" +msgstr "Imagen/Foto" + +#: ../../include/bbcode.php:371 ../../include/bbcode.php:391 +msgid "$1 wrote:" +msgstr "$1 escribió:" + +#: ../../include/bbcode.php:410 ../../include/bbcode.php:411 +msgid "Encrypted content" +msgstr "Contenido cifrado" + +#: ../../include/dba.php:41 +#, php-format +msgid "Cannot locate DNS info for database server '%s'" +msgstr "No se puede encontrar información DNS para la base de datos del servidor '%s'" + +#: ../../include/message.php:15 ../../include/message.php:171 msgid "[no subject]" msgstr "[sin asunto]" -#: ../../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 "" -"Un grupo eliminado con este nombre fue restablecido. Los permisos existentes" -" pueden aplicarse a este grupo y a sus futuros miembros. Si" -" esto no es lo que pretende, por favor, cree otro grupo con un nombre " -"diferente." +#: ../../include/acl_selectors.php:286 +msgid "Visible to everybody" +msgstr "Visible para cualquiera" -#: ../../include/group.php:165 -msgid "Create a new group" -msgstr "Crear un nuevo grupo" +#: ../../include/enotify.php:16 +msgid "Friendica Notification" +msgstr "Notificación de Friendica" -#: ../../include/group.php:166 -msgid "Everybody" -msgstr "Todo el mundo" +#: ../../include/enotify.php:19 +msgid "Thank You," +msgstr "Gracias," -#: ../../include/diaspora.php:544 -msgid "Sharing notification from Diaspora network" -msgstr "Conpartir notificaciones con la red Diaspora*" - -#: ../../include/diaspora.php:1527 -msgid "Attachments:" -msgstr "Archivos adjuntos:" - -#: ../../include/diaspora.php:1710 +#: ../../include/enotify.php:21 #, php-format -msgid "[Relayed] Comment authored by %s from network %s" -msgstr "[Retransmitido] Comentario escrito por %s desde %s" +msgid "%s Administrator" +msgstr "%s Administrador" -#: ../../include/oembed.php:122 -msgid "Embedded content" -msgstr "Contenido integrado" +#: ../../include/enotify.php:40 +#, php-format +msgid "%s " +msgstr "%s " -#: ../../include/oembed.php:131 -msgid "Embedding disabled" -msgstr "Incrustaciones desabilitadas" +#: ../../include/enotify.php:44 +#, php-format +msgid "[Friendica:Notify] New mail received at %s" +msgstr "[Friendica:Notificación] Nuevo correo recibido de %s" +#: ../../include/enotify.php:46 +#, php-format +msgid "%1$s sent you a new private message at %2$s." +msgstr "%1$s te ha enviado un mensaje privado desde %2$s." +#: ../../include/enotify.php:47 +#, php-format +msgid "%1$s sent you %2$s." +msgstr "%1$s te ha enviado %2$s." + +#: ../../include/enotify.php:47 +msgid "a private message" +msgstr "un mensaje privado" + +#: ../../include/enotify.php:48 +#, php-format +msgid "Please visit %s to view and/or reply to your private messages." +msgstr "Por favor, visita %s para ver y/o responder a tus mensajes privados." + +#: ../../include/enotify.php:89 +#, php-format +msgid "%1$s commented on [url=%2$s]a %3$s[/url]" +msgstr "%1$s comentó en [url=%2$s]a %3$s[/url]" + +#: ../../include/enotify.php:96 +#, php-format +msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]" +msgstr "%1$s comentó en [url=%2$s] %4$s de %3$s[/url]" + +#: ../../include/enotify.php:104 +#, php-format +msgid "%1$s commented on [url=%2$s]your %3$s[/url]" +msgstr "%1$s comentó en [url=%2$s] tu %3$s[/url]" + +#: ../../include/enotify.php:114 +#, php-format +msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s" +msgstr "[Friendica:Notificación] Comentario en la conversación de #%1$d por %2$s" + +#: ../../include/enotify.php:115 +#, php-format +msgid "%s commented on an item/conversation you have been following." +msgstr "%s ha comentado en una conversación/elemento que sigues." + +#: ../../include/enotify.php:118 ../../include/enotify.php:133 +#: ../../include/enotify.php:146 ../../include/enotify.php:164 +#: ../../include/enotify.php:177 +#, php-format +msgid "Please visit %s to view and/or reply to the conversation." +msgstr "Por favor, visita %s para ver y/o responder a la conversación." + +#: ../../include/enotify.php:125 +#, php-format +msgid "[Friendica:Notify] %s posted to your profile wall" +msgstr "[Friendica:Notificación] %s publicó en tu muro" + +#: ../../include/enotify.php:127 +#, php-format +msgid "%1$s posted to your profile wall at %2$s" +msgstr "%1$s publicó en tu perfil de %2$s" + +#: ../../include/enotify.php:129 +#, php-format +msgid "%1$s posted to [url=%2$s]your wall[/url]" +msgstr "%1$s publicó en [url=%2$s]tu muro[/url]" + +#: ../../include/enotify.php:140 +#, php-format +msgid "[Friendica:Notify] %s tagged you" +msgstr "[Friendica:Notificación] %s te ha nombrado" + +#: ../../include/enotify.php:141 +#, php-format +msgid "%1$s tagged you at %2$s" +msgstr "%1$s te ha nombrado en %2$s" + +#: ../../include/enotify.php:142 +#, php-format +msgid "%1$s [url=%2$s]tagged you[/url]." +msgstr "%1$s [url=%2$s]te nombró[/url]." + +#: ../../include/enotify.php:154 +#, php-format +msgid "[Friendica:Notify] %1$s poked you" +msgstr "[Friendica:Notify] %1$s te dio un toque" + +#: ../../include/enotify.php:155 +#, php-format +msgid "%1$s poked you at %2$s" +msgstr "%1$s te dio un toque en %2$s" + +#: ../../include/enotify.php:156 +#, php-format +msgid "%1$s [url=%2$s]poked you[/url]." +msgstr "%1$s [url=%2$s]te dio un toque[/url]." + +#: ../../include/enotify.php:171 +#, php-format +msgid "[Friendica:Notify] %s tagged your post" +msgstr "[Friendica:Notificación] %s ha etiquetado tu publicación" + +#: ../../include/enotify.php:172 +#, php-format +msgid "%1$s tagged your post at %2$s" +msgstr "%1$s ha etiquetado tu publicación en %2$s" + +#: ../../include/enotify.php:173 +#, php-format +msgid "%1$s tagged [url=%2$s]your post[/url]" +msgstr "%1$s ha etiquetado [url=%2$s]tu publicación[/url]" + +#: ../../include/enotify.php:184 +msgid "[Friendica:Notify] Introduction received" +msgstr "[Friendica:Notificación] Presentación recibida" + +#: ../../include/enotify.php:185 +#, php-format +msgid "You've received an introduction from '%1$s' at %2$s" +msgstr "Has recibido una presentación de '%1$s' en %2$s" + +#: ../../include/enotify.php:186 +#, php-format +msgid "You've received [url=%1$s]an introduction[/url] from %2$s." +msgstr "Has recibido [url=%1$s]una presentación[/url] de %2$s." + +#: ../../include/enotify.php:189 ../../include/enotify.php:207 +#, php-format +msgid "You may visit their profile at %s" +msgstr "Puedes visitar su perfil en %s" + +#: ../../include/enotify.php:191 +#, php-format +msgid "Please visit %s to approve or reject the introduction." +msgstr "Visita %s para aceptar o rechazar la presentación por favor." + +#: ../../include/enotify.php:198 +msgid "[Friendica:Notify] Friend suggestion received" +msgstr "[Friendica:Notificación] Sugerencia de amigo recibida" + +#: ../../include/enotify.php:199 +#, php-format +msgid "You've received a friend suggestion from '%1$s' at %2$s" +msgstr "Has recibido una sugerencia de amigo de '%1$s' en %2$s" + +#: ../../include/enotify.php:200 +#, php-format +msgid "" +"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." +msgstr "Has recibido [url=%1$s]una sugerencia de amigo[/url] en %2$s de %3$s." + +#: ../../include/enotify.php:205 +msgid "Name:" +msgstr "Nombre: " + +#: ../../include/enotify.php:206 +msgid "Photo:" +msgstr "Foto: " + +#: ../../include/enotify.php:209 +#, php-format +msgid "Please visit %s to approve or reject the suggestion." +msgstr "Visita %s para aceptar o rechazar la sugerencia por favor." + +#: ../../include/follow.php:32 +msgid "Connect URL missing." +msgstr "Falta el conector URL." + +#: ../../include/follow.php:59 +msgid "" +"This site is not configured to allow communications with other networks." +msgstr "Este sitio no está configurado para permitir la comunicación con otras redes." + +#: ../../include/follow.php:60 ../../include/follow.php:80 +msgid "No compatible communication protocols or feeds were discovered." +msgstr "No se ha descubierto protocolos de comunicación o fuentes compatibles." + +#: ../../include/follow.php:78 +msgid "The profile address specified does not provide adequate information." +msgstr "La dirección del perfil especificado no proporciona información adecuada." + +#: ../../include/follow.php:82 +msgid "An author or name was not found." +msgstr "No se ha encontrado un autor o nombre." + +#: ../../include/follow.php:84 +msgid "No browser URL could be matched to this address." +msgstr "Ninguna dirección concuerda con la suministrada." + +#: ../../include/follow.php:86 +msgid "" +"Unable to match @-style Identity Address with a known protocol or email " +"contact." +msgstr "Imposible identificar la dirección @ con algún protocolo conocido o dirección de contacto." + +#: ../../include/follow.php:87 +msgid "Use mailto: in front of address to force email check." +msgstr "Escribe mailto: al principio de la dirección para forzar el envío." + +#: ../../include/follow.php:93 +msgid "" +"The profile address specified belongs to a network which has been disabled " +"on this site." +msgstr "La dirección del perfil especificada pertenece a una red que ha sido deshabilitada en este sitio." + +#: ../../include/follow.php:103 +msgid "" +"Limited profile. This person will be unable to receive direct/personal " +"notifications from you." +msgstr "Perfil limitado. Esta persona no podrá recibir notificaciones directas/personales tuyas." + +#: ../../include/follow.php:205 +msgid "Unable to retrieve contact information." +msgstr "No ha sido posible recibir la información del contacto." + +#: ../../include/follow.php:259 +msgid "following" +msgstr "siguiendo" + +#: ../../include/items.php:3294 +msgid "A new person is sharing with you at " +msgstr "Una nueva persona está compartiendo contigo en " + +#: ../../include/items.php:3294 +msgid "You have a new follower at " +msgstr "Tienes un nuevo seguidor en " + +#: ../../include/items.php:3975 +msgid "Archives" +msgstr "Archivos" + +#: ../../include/user.php:38 +msgid "An invitation is required." +msgstr "Se necesita invitación." + +#: ../../include/user.php:43 +msgid "Invitation could not be verified." +msgstr "No se puede verificar la invitación." + +#: ../../include/user.php:51 +msgid "Invalid OpenID url" +msgstr "Dirección OpenID no válida" + +#: ../../include/user.php:66 +msgid "Please enter the required information." +msgstr "Por favor, introduce la información necesaria." + +#: ../../include/user.php:80 +msgid "Please use a shorter name." +msgstr "Por favor, usa un nombre más corto." + +#: ../../include/user.php:82 +msgid "Name too short." +msgstr "El nombre es demasiado corto." + +#: ../../include/user.php:97 +msgid "That doesn't appear to be your full (First Last) name." +msgstr "No parece que ese sea tu nombre completo." + +#: ../../include/user.php:102 +msgid "Your email domain is not among those allowed on this site." +msgstr "Tu dominio de correo no se encuentra entre los permitidos en este sitio." + +#: ../../include/user.php:105 +msgid "Not a valid email address." +msgstr "No es una dirección de correo electrónico válida." + +#: ../../include/user.php:115 +msgid "Cannot use that email." +msgstr "No se puede utilizar este correo electrónico." + +#: ../../include/user.php:121 +msgid "" +"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and " +"must also begin with a letter." +msgstr "Tu \"apodo\" solo puede contener \"a-z\", \"0-9\", \"-\", y \"_\" y debe empezar por una letra." + +#: ../../include/user.php:127 ../../include/user.php:225 +msgid "Nickname is already registered. Please choose another." +msgstr "Apodo ya registrado. Por favor, elije otro." + +#: ../../include/user.php:137 +msgid "" +"Nickname was once registered here and may not be re-used. Please choose " +"another." +msgstr "El apodo ya ha sido registrado alguna vez y no puede volver a usarse. Por favor, utiliza otro." + +#: ../../include/user.php:153 +msgid "SERIOUS ERROR: Generation of security keys failed." +msgstr "ERROR GRAVE: La generación de claves de seguridad ha fallado." + +#: ../../include/user.php:211 +msgid "An error occurred during registration. Please try again." +msgstr "Se produjo un error durante el registro. Por favor, inténtalo de nuevo." + +#: ../../include/user.php:246 +msgid "An error occurred creating your default profile. Please try again." +msgstr "Error al crear tu perfil predeterminado. Por favor, inténtalo de nuevo." + +#: ../../include/security.php:22 +msgid "Welcome " +msgstr "Bienvenido " + +#: ../../include/security.php:23 +msgid "Please upload a profile photo." +msgstr "Por favor sube una foto para tu perfil." + +#: ../../include/security.php:26 +msgid "Welcome back " +msgstr "Bienvenido de nuevo " + +#: ../../include/security.php:344 +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 ficha de seguridad no es correcta. Seguramente haya ocurrido por haber dejado el formulario abierto demasiado tiempo (>3 horas) antes de enviarlo." + +#: ../../include/Contact.php:111 +msgid "stopped following" +msgstr "dejó de seguir" + +#: ../../include/Contact.php:220 ../../include/conversation.php:1106 +msgid "Poke" +msgstr "Toque" + +#: ../../include/Contact.php:221 ../../include/conversation.php:1100 +msgid "View Status" +msgstr "Ver estado" + +#: ../../include/Contact.php:222 ../../include/conversation.php:1101 +msgid "View Profile" +msgstr "Ver perfil" + +#: ../../include/Contact.php:223 ../../include/conversation.php:1102 +msgid "View Photos" +msgstr "Ver fotos" + +#: ../../include/Contact.php:224 ../../include/Contact.php:237 +#: ../../include/conversation.php:1103 +msgid "Network Posts" +msgstr "Publicaciones en la red" + +#: ../../include/Contact.php:225 ../../include/Contact.php:237 +#: ../../include/conversation.php:1104 +msgid "Edit Contact" +msgstr "Editar contacto" + +#: ../../include/Contact.php:226 ../../include/Contact.php:237 +#: ../../include/conversation.php:1105 +msgid "Send PM" +msgstr "Enviar mensaje privado" + +#: ../../include/conversation.php:206 +#, php-format +msgid "%1$s poked %2$s" +msgstr "%1$s le dio un toque a %2$s" + +#: ../../include/conversation.php:290 +msgid "post/item" +msgstr "publicación/tema" + +#: ../../include/conversation.php:291 +#, php-format +msgid "%1$s marked %2$s's %3$s as favorite" +msgstr "%1$s ha marcado %3$s de %2$s como Favorito" + +#: ../../include/conversation.php:645 ../../include/conversation.php:919 +#: ../../object/Item.php:217 +msgid "Categories:" +msgstr "" + +#: ../../include/conversation.php:646 ../../include/conversation.php:920 +#: ../../object/Item.php:218 +msgid "Filed under:" +msgstr "" + +#: ../../include/conversation.php:1002 +msgid "remove" +msgstr "eliminar" + +#: ../../include/conversation.php:1006 +msgid "Delete Selected Items" +msgstr "Eliminar el elemento seleccionado" + +#: ../../include/conversation.php:1164 +#, php-format +msgid "%s likes this." +msgstr "A %s le gusta esto." + +#: ../../include/conversation.php:1164 +#, php-format +msgid "%s doesn't like this." +msgstr "A %s no le gusta esto." + +#: ../../include/conversation.php:1168 +#, php-format +msgid "%2$d people like this." +msgstr "Le gusta a %2$d personas." + +#: ../../include/conversation.php:1170 +#, php-format +msgid "%2$d people don't like this." +msgstr "No le gusta a %2$d personas." + +#: ../../include/conversation.php:1176 +msgid "and" +msgstr "y" + +#: ../../include/conversation.php:1179 +#, php-format +msgid ", and %d other people" +msgstr " y a otras %d personas" + +#: ../../include/conversation.php:1180 +#, php-format +msgid "%s like this." +msgstr "Le gusta a %s." + +#: ../../include/conversation.php:1180 +#, php-format +msgid "%s don't like this." +msgstr "No le gusta a %s." + +#: ../../include/conversation.php:1204 ../../include/conversation.php:1221 +msgid "Visible to everybody" +msgstr "Visible para cualquiera" + +#: ../../include/conversation.php:1206 ../../include/conversation.php:1223 +msgid "Please enter a video link/URL:" +msgstr "Por favor, introduce la URL/enlace del vídeo:" + +#: ../../include/conversation.php:1207 ../../include/conversation.php:1224 +msgid "Please enter an audio link/URL:" +msgstr "Por favor, introduce la URL/enlace del audio:" + +#: ../../include/conversation.php:1208 ../../include/conversation.php:1225 +msgid "Tag term:" +msgstr "Etiquetar:" + +#: ../../include/conversation.php:1210 ../../include/conversation.php:1227 +msgid "Where are you right now?" +msgstr "¿Dónde estás ahora?" + +#: ../../include/conversation.php:1270 +msgid "upload photo" +msgstr "subir imagen" + +#: ../../include/conversation.php:1272 +msgid "attach file" +msgstr "adjuntar archivo" + +#: ../../include/conversation.php:1274 +msgid "web link" +msgstr "enlace web" + +#: ../../include/conversation.php:1275 +msgid "Insert video link" +msgstr "Insertar enlace del vídeo" + +#: ../../include/conversation.php:1276 +msgid "video link" +msgstr "enlace de video" + +#: ../../include/conversation.php:1277 +msgid "Insert audio link" +msgstr "Insertar vínculo del audio" + +#: ../../include/conversation.php:1278 +msgid "audio link" +msgstr "enlace de audio" + +#: ../../include/conversation.php:1280 +msgid "set location" +msgstr "establecer tu ubicación" + +#: ../../include/conversation.php:1282 +msgid "clear location" +msgstr "limpiar la localización" + +#: ../../include/conversation.php:1289 +msgid "permissions" +msgstr "permisos" + +#: ../../include/plugin.php:389 ../../include/plugin.php:391 +msgid "Click here to upgrade." +msgstr "Pulsa aquí para actualizar." + +#: ../../include/plugin.php:397 +msgid "This action exceeds the limits set by your subscription plan." +msgstr "Esta acción excede los límites permitidos por tu subscripción." + +#: ../../include/plugin.php:402 +msgid "This action is not available under your subscription plan." +msgstr "Esta acción no está permitida para tu subscripción." + +#: ../../boot.php:573 +msgid "Delete this item?" +msgstr "¿Eliminar este elemento?" + +#: ../../boot.php:576 +msgid "show fewer" +msgstr "ver menos" + +#: ../../boot.php:783 +#, php-format +msgid "Update %s failed. See error logs." +msgstr "Falló la actualización de %s. Mira los registros de errores." + +#: ../../boot.php:785 +#, php-format +msgid "Update Error at %s" +msgstr "Error actualizado en %s" + +#: ../../boot.php:886 +msgid "Create a New Account" +msgstr "Crear una nueva cuenta" + +#: ../../boot.php:914 +msgid "Nickname or Email address: " +msgstr "Apodo o dirección de email: " + +#: ../../boot.php:915 +msgid "Password: " +msgstr "Contraseña: " + +#: ../../boot.php:918 +msgid "Or login using OpenID: " +msgstr "O inicia sesión usando OpenID: " + +#: ../../boot.php:924 +msgid "Forgot your password?" +msgstr "¿Olvidaste la contraseña?" + +#: ../../boot.php:1035 +msgid "Requested account is not available." +msgstr "La cuenta solicitada no está disponible." + +#: ../../boot.php:1112 +msgid "Edit profile" +msgstr "Editar perfil" + +#: ../../boot.php:1178 +msgid "Message" +msgstr "Mensaje" + +#: ../../boot.php:1300 ../../boot.php:1386 +msgid "g A l F d" +msgstr "g A l F d" + +#: ../../boot.php:1301 ../../boot.php:1387 +msgid "F d" +msgstr "F d" + +#: ../../boot.php:1346 ../../boot.php:1427 +msgid "[today]" +msgstr "[hoy]" + +#: ../../boot.php:1358 +msgid "Birthday Reminders" +msgstr "Recordatorios de cumpleaños" + +#: ../../boot.php:1359 +msgid "Birthdays this week:" +msgstr "Cumpleaños esta semana:" + +#: ../../boot.php:1420 +msgid "[No description]" +msgstr "[Sin descripción]" + +#: ../../boot.php:1438 +msgid "Event Reminders" +msgstr "Recordatorios de eventos" + +#: ../../boot.php:1439 +msgid "Events this week:" +msgstr "Eventos de esta semana:" + +#: ../../boot.php:1668 +msgid "Status Messages and Posts" +msgstr "Mensajes de Estado y Publicaciones" + +#: ../../boot.php:1675 +msgid "Profile Details" +msgstr "Detalles del Perfil" + +#: ../../boot.php:1692 +msgid "Events and Calendar" +msgstr "Eventos y Calendario" + +#: ../../boot.php:1699 +msgid "Only You Can See This" +msgstr "Únicamente tú puedes ver esto" diff --git a/view/es/strings.php b/view/es/strings.php index d2b8e240eb..e8c617086c 100644 --- a/view/es/strings.php +++ b/view/es/strings.php @@ -1,111 +1,949 @@ strings["Post successful."] = "¡Publicado!"; +$a->strings["[Embedded content - reload page to view]"] = "[Contenido incrustado - recarga la página para verlo]"; +$a->strings["Contact settings applied."] = "Contacto configurado con éxito."; +$a->strings["Contact update failed."] = "Error al actualizar el Contacto."; +$a->strings["Permission denied."] = "Permiso denegado."; +$a->strings["Contact not found."] = "Contacto no encontrado."; +$a->strings["Repair Contact Settings"] = "Reparar la configuración del Contacto"; +$a->strings["WARNING: This is highly advanced and if you enter incorrect information your communications with this contact may stop working."] = "ADVERTENCIA: Esto es muy avanzado y si se introduce información incorrecta tu conexión con este contacto puede dejar de funcionar."; +$a->strings["Please use your browser 'Back' button now if you are uncertain what to do on this page."] = "Por favor usa el botón 'Atás' de tu navegador ahora si no tienes claro qué hacer en esta página."; +$a->strings["Return to contact editor"] = "Volver al editor de contactos"; +$a->strings["Name"] = "Nombre"; +$a->strings["Account Nickname"] = "Apodo de la cuenta"; +$a->strings["@Tagname - overrides Name/Nickname"] = "@Etiqueta - Sobrescribe el Nombre/Apodo"; +$a->strings["Account URL"] = "Dirección de la cuenta"; +$a->strings["Friend Request URL"] = "Dirección de la solicitud de amistad"; +$a->strings["Friend Confirm URL"] = "Dirección de confirmación de tu amigo "; +$a->strings["Notification Endpoint URL"] = "Dirección URL de la notificación"; +$a->strings["Poll/Feed URL"] = "Dirección del Sondeo/Fuentes"; +$a->strings["New photo from this URL"] = "Nueva foto de esta dirección"; +$a->strings["Submit"] = "Envíar"; +$a->strings["Help:"] = "Ayuda:"; +$a->strings["Help"] = "Ayuda"; $a->strings["Not Found"] = "No se ha encontrado"; $a->strings["Page not found."] = "Página no encontrada."; -$a->strings["Permission denied"] = "Permiso denegado"; -$a->strings["Permission denied."] = "Permiso denegado."; -$a->strings["Delete this item?"] = "¿Eliminar este elemento?"; -$a->strings["Comment"] = "Comentar"; -$a->strings["Create a New Account"] = "Crear una nueva cuenta"; -$a->strings["Register"] = "Registrarse"; -$a->strings["Logout"] = "Salir"; -$a->strings["Login"] = "Acceder"; -$a->strings["Nickname or Email address: "] = "Apodo o dirección de email: "; -$a->strings["Password: "] = "Contraseña: "; -$a->strings["OpenID: "] = "OpenID:"; -$a->strings["Forgot your password?"] = "¿Olvidó la contraseña?"; -$a->strings["Password Reset"] = "Restablecer la contraseña"; -$a->strings["No profile"] = "Nigún perfil"; -$a->strings["Edit profile"] = "Editar perfil"; -$a->strings["Connect"] = "Conectar"; -$a->strings["Profiles"] = "Perfiles"; -$a->strings["Manage/edit profiles"] = "Administrar/editar perfiles"; -$a->strings["Change profile photo"] = "Cambiar foto del perfil"; -$a->strings["Create New Profile"] = "Crear nuevo perfil"; -$a->strings["Profile Image"] = "Imagen del Perfil"; -$a->strings["visible to everybody"] = "Visible para todos"; -$a->strings["Edit visibility"] = "Editar visibilidad"; -$a->strings["Location:"] = "Localización:"; -$a->strings["Gender:"] = "Género:"; -$a->strings["Status:"] = "Estado:"; -$a->strings["Homepage:"] = "Página de inicio:"; -$a->strings["g A l F d"] = "g A l F d"; -$a->strings["F d"] = "F d"; -$a->strings["Birthday Reminders"] = "Recordatorios de cumpleaños"; -$a->strings["Birthdays this week:"] = "Cumpleaños esta semana:"; -$a->strings["[today]"] = "[hoy]"; -$a->strings["Event Reminders"] = "Recordatorios de eventos"; -$a->strings["Events this week:"] = "Eventos de esta semana:"; -$a->strings["[No description]"] = "[Sin descripción]"; -$a->strings["Status"] = "Estado"; -$a->strings["Profile"] = "Perfil"; -$a->strings["Photos"] = "Fotografías"; +$a->strings["File exceeds size limit of %d"] = "El tamaño del archivo excede el límite de %d"; +$a->strings["File upload failed."] = "Ha fallado la subida del archivo."; +$a->strings["Friend suggestion sent."] = "Solicitud de amistad enviada."; +$a->strings["Suggest Friends"] = "Sugerencias de amistad"; +$a->strings["Suggest a friend for %s"] = "Recomienda un amigo a %s"; +$a->strings["Event title and start time are required."] = "Título del evento y hora de inicio requeridas."; +$a->strings["l, F j"] = "l, F j"; +$a->strings["Edit event"] = "Editar evento"; +$a->strings["link to source"] = "Enlace al original"; $a->strings["Events"] = "Eventos"; -$a->strings["Personal Notes"] = "Notas personales"; -$a->strings["Welcome back %s"] = "Bienvenido de nuevo %s"; -$a->strings["Manage Identities and/or Pages"] = "Administrar identidades y/o páginas"; -$a->strings["(Toggle between different identities or community/group pages which share your account details.)"] = "(Alternar entre las diferentes identidades o las páginas de comunidades/grupos que comparten los datos de su cuenta)."; -$a->strings["Select an identity to manage: "] = "Selecciona una identidad a gestionar:"; -$a->strings["Submit"] = "Envía"; -$a->strings["People Search"] = "Buscar personas"; -$a->strings["No matches"] = "Sin conincidencias"; -$a->strings["Image exceeds size limit of %d"] = "El tamaño de la imagen supera el límite de %d"; -$a->strings["Unable to process image."] = "Imposible procesar la imagen."; -$a->strings["Wall Photos"] = "Foto del Muro"; -$a->strings["Image upload failed."] = "Error al subir la imagen."; -$a->strings["Access to this profile has been restricted."] = "EL acceso a este perfil ha sido restringido."; -$a->strings["Tips for New Members"] = "Consejos para nuevos miembros"; -$a->strings["Disallowed profile URL."] = "Dirección de perfil no permitida."; -$a->strings["This site is not configured to allow communications with other networks."] = "Este sitio no está configurado para permitir la comunicación con otras redes."; -$a->strings["No compatible communication protocols or feeds were discovered."] = "No se ha descubierto protocolos de comunicación o fuentes compatibles."; -$a->strings["The profile address specified does not provide adequate information."] = "La dirección del perfil especificado no proporciona información adecuada."; -$a->strings["An author or name was not found."] = "No se ha encontrado un autor o nombre"; -$a->strings["No browser URL could be matched to this address."] = "Ninguna dirección URL concuerda con la suministrada."; -$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "La dirección del perfil especificada pertenece a una red que ha sido deshabilitada en este sitio."; -$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Perfil limitado. Esta persona no podrá recibir notificaciones directas/personales de ti."; -$a->strings["Unable to retrieve contact information."] = "No ha sido posible recibir la información del contacto."; -$a->strings["following"] = "siguiendo"; -$a->strings["Image uploaded but image cropping failed."] = "Imagen recibida, pero ha fallado al recortarla."; +$a->strings["Create New Event"] = "Crea un evento nuevo"; +$a->strings["Previous"] = "Previo"; +$a->strings["Next"] = "Siguiente"; +$a->strings["hour:minute"] = "hora:minuto"; +$a->strings["Event details"] = "Detalles del evento"; +$a->strings["Format is %s %s. Starting date and Title are required."] = "El formato es %s %s. Fecha de inicio y título son obligatorios."; +$a->strings["Event Starts:"] = "Inicio del evento:"; +$a->strings["Required"] = "Obligatorio"; +$a->strings["Finish date/time is not known or not relevant"] = "La fecha/hora de finalización no es conocida o es irrelevante."; +$a->strings["Event Finishes:"] = "Finalización del evento:"; +$a->strings["Adjust for viewer timezone"] = "Ajuste de zona horaria"; +$a->strings["Description:"] = "Descripción:"; +$a->strings["Location:"] = "Localización:"; +$a->strings["Title:"] = "Título:"; +$a->strings["Share this event"] = "Comparte este evento"; +$a->strings["Cancel"] = "Cancelar"; +$a->strings["Tag removed"] = "Etiqueta eliminada"; +$a->strings["Remove Item Tag"] = "Eliminar etiqueta"; +$a->strings["Select a tag to remove: "] = "Selecciona una etiqueta para eliminar: "; +$a->strings["Remove"] = "Eliminar"; +$a->strings["%s welcomes %s"] = "%s te da la bienvenida a %s"; +$a->strings["Authorize application connection"] = "Autorizar la conexión de la aplicación"; +$a->strings["Return to your app and insert this Securty Code:"] = "Regresa a tu aplicación e introduce este código de seguridad:"; +$a->strings["Please login to continue."] = "Inicia sesión para continuar."; +$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "¿Quieres autorizar a esta aplicación el acceso a tus mensajes y contactos, y/o crear nuevas publicaciones para ti?"; +$a->strings["Yes"] = "Sí"; +$a->strings["No"] = "No"; +$a->strings["Photo Albums"] = "Álbum de Fotos"; +$a->strings["Contact Photos"] = "Foto del contacto"; +$a->strings["Upload New Photos"] = "Subir nuevas fotos"; +$a->strings["everybody"] = "todos"; +$a->strings["Contact information unavailable"] = "Información del contacto no disponible"; $a->strings["Profile Photos"] = "Foto del perfil"; -$a->strings["Image size reduction [%s] failed."] = "Ha fallado la reducción de las dimensiones de la imagen [%s]."; -$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Recargue la página o limpie la caché del navegador si la nueva foto no aparece inmediatamente."; -$a->strings["Unable to process image"] = "Imposible procesar la imagen"; -$a->strings["Upload File:"] = "Subir archivo:"; -$a->strings["Upload Profile Photo"] = "Subir foto del Perfil"; -$a->strings["Upload"] = "Subir"; +$a->strings["Album not found."] = "Álbum no encontrado."; +$a->strings["Delete Album"] = "Eliminar álbum"; +$a->strings["Delete Photo"] = "Eliminar foto"; +$a->strings["was tagged in a"] = "ha sido etiquetado en"; +$a->strings["photo"] = "foto"; +$a->strings["by"] = "por"; +$a->strings["Image exceeds size limit of "] = "La imagen supera tamaño límite de "; +$a->strings["Image file is empty."] = "El archivo de imagen está vacío."; +$a->strings["Unable to process image."] = "Imposible procesar la imagen."; +$a->strings["Image upload failed."] = "Error al subir la imagen."; +$a->strings["Public access denied."] = "Acceso público denegado."; +$a->strings["No photos selected"] = "Ninguna foto seleccionada"; +$a->strings["Access to this item is restricted."] = "El acceso a este elemento está restringido."; +$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "Has usado %1$.2f MB de %2$.2f MB de tu álbum de fotos."; +$a->strings["You have used %1$.2f Mbytes of photo storage."] = "Has usado %1$.2f MB de tu álbum de fotos."; +$a->strings["Upload Photos"] = "Subir fotos"; +$a->strings["New album name: "] = "Nombre del nuevo álbum: "; +$a->strings["or existing album name: "] = "o nombre de un álbum existente: "; +$a->strings["Do not show a status post for this upload"] = "No actualizar tu estado con este envío"; +$a->strings["Permissions"] = "Permisos"; +$a->strings["Edit Album"] = "Modificar álbum"; +$a->strings["Show Newest First"] = "Mostrar más nuevos primero"; +$a->strings["Show Oldest First"] = "Mostrar más antiguos primero"; +$a->strings["View Photo"] = "Ver foto"; +$a->strings["Permission denied. Access to this item may be restricted."] = "Permiso denegado. El acceso a este elemento puede estar restringido."; +$a->strings["Photo not available"] = "Foto no disponible"; +$a->strings["View photo"] = "Ver foto"; +$a->strings["Edit photo"] = "Modificar foto"; +$a->strings["Use as profile photo"] = "Usar como foto del perfil"; +$a->strings["Private Message"] = "Mensaje privado"; +$a->strings["View Full Size"] = "Ver a tamaño completo"; +$a->strings["Tags: "] = "Etiquetas: "; +$a->strings["[Remove any tag]"] = "[Borrar todas las etiquetas]"; +$a->strings["Rotate CW (right)"] = "Girar a la derecha"; +$a->strings["Rotate CCW (left)"] = "Girar a la izquierda"; +$a->strings["New album name"] = "Nuevo nombre del álbum"; +$a->strings["Caption"] = "Título"; +$a->strings["Add a Tag"] = "Añadir una etiqueta"; +$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Ejemplo: @juan, @Barbara_Ruiz, @julia@example.com, #California, #camping"; +$a->strings["I like this (toggle)"] = "Me gusta esto (cambiar)"; +$a->strings["I don't like this (toggle)"] = "No me gusta esto (cambiar)"; +$a->strings["Share"] = "Compartir"; +$a->strings["Please wait"] = "Por favor, espera"; +$a->strings["This is you"] = "Este eres tú"; +$a->strings["Comment"] = "Comentar"; +$a->strings["Preview"] = "Vista previa"; +$a->strings["Delete"] = "Eliminar"; +$a->strings["View Album"] = "Ver Álbum"; +$a->strings["Recent Photos"] = "Fotos recientes"; +$a->strings["Not available."] = "No disponible"; +$a->strings["Community"] = "Comunidad"; +$a->strings["No results."] = "Sin resultados."; +$a->strings["This is Friendica, version"] = "Esto es Friendica, versión"; +$a->strings["running at web location"] = "ejecutándose en la dirección web"; +$a->strings["Please visit Friendica.com to learn more about the Friendica project."] = "Por favor, visita Friendica.com para saber más sobre el proyecto Friendica."; +$a->strings["Bug reports and issues: please visit"] = "Reporte de fallos y problemas: por favor visita"; +$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Sugerencias, elogios, donaciones, etc. por favor manda un correo a Info arroba Friendica punto com"; +$a->strings["Installed plugins/addons/apps:"] = "Módulos/extensiones/aplicaciones instalados:"; +$a->strings["No installed plugins/addons/apps"] = "Módulos/extensiones/aplicaciones no instalados"; +$a->strings["Item not found"] = "Elemento no encontrado"; +$a->strings["Edit post"] = "Editar publicación"; +$a->strings["Post to Email"] = "Publicar mediante correo electrónico"; +$a->strings["Edit"] = "Editar"; +$a->strings["Upload photo"] = "Subir foto"; +$a->strings["Attach file"] = "Adjuntar archivo"; +$a->strings["Insert web link"] = "Insertar enlace"; +$a->strings["Insert YouTube video"] = "Insertar vídeo de YouTube"; +$a->strings["Insert Vorbis [.ogg] video"] = "Insertar vídeo Vorbis [.ogg]"; +$a->strings["Insert Vorbis [.ogg] audio"] = "Insertar audio Vorbis [.ogg]"; +$a->strings["Set your location"] = "Configurar tu localización"; +$a->strings["Clear browser location"] = "Borrar la localización del navegador"; +$a->strings["Permission settings"] = "Configuración de permisos"; +$a->strings["CC: email addresses"] = "CC: dirección de correo electrónico"; +$a->strings["Public post"] = "Publicación pública"; +$a->strings["Set title"] = "Establecer el título"; +$a->strings["Categories (comma-separated list)"] = "Categorías (lista separada por comas)"; +$a->strings["Example: bob@example.com, mary@example.com"] = "Ejemplo: juan@ejemplo.com, sofia@ejemplo.com"; +$a->strings["This introduction has already been accepted."] = "Esta presentación ya ha sido aceptada."; +$a->strings["Profile location is not valid or does not contain profile information."] = "La dirección del perfil no es válida o no contiene información del perfil."; +$a->strings["Warning: profile location has no identifiable owner name."] = "Aviso: La dirección del perfil no tiene un nombre de propietario identificable."; +$a->strings["Warning: profile location has no profile photo."] = "Aviso: la dirección del perfil no tiene foto de perfil."; +$a->strings["%d required parameter was not found at the given location"] = array( + 0 => "no se encontró %d parámetro requerido en el lugar determinado", + 1 => "no se encontraron %d parámetros requeridos en el lugar determinado", +); +$a->strings["Introduction complete."] = "Presentación completa."; +$a->strings["Unrecoverable protocol error."] = "Error de protocolo irrecuperable."; +$a->strings["Profile unavailable."] = "Perfil no disponible."; +$a->strings["%s has received too many connection requests today."] = "%s ha recibido demasiadas solicitudes de conexión hoy."; +$a->strings["Spam protection measures have been invoked."] = "Han sido activadas las medidas de protección contra spam."; +$a->strings["Friends are advised to please try again in 24 hours."] = "Tus amigos serán avisados para que lo intenten de nuevo pasadas 24 horas."; +$a->strings["Invalid locator"] = "Localizador no válido"; +$a->strings["Invalid email address."] = "Dirección de correo incorrecta"; +$a->strings["This account has not been configured for email. Request failed."] = "Esta cuenta no ha sido configurada para el correo. Fallo de solicitud."; +$a->strings["Unable to resolve your name at the provided location."] = "No se ha podido resolver tu nombre en la dirección indicada."; +$a->strings["You have already introduced yourself here."] = "Ya te has presentado aquí."; +$a->strings["Apparently you are already friends with %s."] = "Al parecer, ya eres amigo de %s."; +$a->strings["Invalid profile URL."] = "Dirección de perfil no válida."; +$a->strings["Disallowed profile URL."] = "Dirección de perfil no permitida."; +$a->strings["Failed to update contact record."] = "Error al actualizar el contacto."; +$a->strings["Your introduction has been sent."] = "Tu presentación ha sido enviada."; +$a->strings["Please login to confirm introduction."] = "Inicia sesión para confirmar la presentación."; +$a->strings["Incorrect identity currently logged in. Please login to this profile."] = "Sesión iniciada con la identificación incorrecta. Entra en este perfil."; +$a->strings["Hide this contact"] = "Ocultar este contacto"; +$a->strings["Welcome home %s."] = "Bienvenido a casa %s"; +$a->strings["Please confirm your introduction/connection request to %s."] = "Por favor, confirma tu solicitud de presentación/conexión con %s."; +$a->strings["Confirm"] = "Confirmar"; +$a->strings["[Name Withheld]"] = "[Nombre oculto]"; +$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Por favor introduce tu dirección ID de una de las siguientes redes sociales soportadas:"; +$a->strings["Connect as an email follower (Coming soon)"] = "Conecta como lector de correo (Disponible en breve)"; +$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."] = "Si aún no eres miembro de la red social libre sigue este enlace para encontrar un servidor público de Friendica y unirte a nosotros."; +$a->strings["Friend/Connection Request"] = "Solicitud de Amistad/Conexión"; +$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Ejemplos: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"; +$a->strings["Please answer the following:"] = "Por favor responde lo siguiente:"; +$a->strings["Does %s know you?"] = "¿%s te conoce?"; +$a->strings["Add a personal note:"] = "Añade una nota personal:"; +$a->strings["Friendica"] = "Friendica"; +$a->strings["StatusNet/Federated Social Web"] = "StatusNet/Web Social Federada"; +$a->strings["Diaspora"] = "Diaspora*"; +$a->strings[" - please do not use this form. Instead, enter %s into your Diaspora search bar."] = "(En vez de usar este formulario, introduce %s en la barra de búsqueda de Diaspora."; +$a->strings["Your Identity Address:"] = "Dirección de tu perfil:"; +$a->strings["Submit Request"] = "Enviar solicitud"; +$a->strings["Friendica Social Communications Server - Setup"] = "Servidor de Comunicaciones Sociales Friendica - Configuración"; +$a->strings["Could not connect to database."] = "No es posible la conexión con la base de datos."; +$a->strings["Could not create table."] = "No se puede crear la tabla."; +$a->strings["Your Friendica site database has been installed."] = "La base de datos de su sitio web de Friendica ha sido instalada."; +$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Puede que tengas que importar el archivo \"Database.sql\" manualmente usando phpmyadmin o mysql."; +$a->strings["Please see the file \"INSTALL.txt\"."] = "Por favor, consulta el archivo \"INSTALL.txt\"."; +$a->strings["System check"] = "Verificación del sistema"; +$a->strings["Check again"] = "Compruebalo de nuevo"; +$a->strings["Database connection"] = "Conexión con la base de datos"; +$a->strings["In order to install Friendica we need to know how to connect to your database."] = "Con el fin de poder instalar Friendica, necesitamos saber cómo conectar con tu base de datos."; +$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Por favor, contacta con tu proveedor de servicios o con el administrador de la página si tienes alguna pregunta sobre estas configuraciones."; +$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "La base de datos que especifiques a continuación debería existir ya. Si no es el caso, debes crearla antes de continuar."; +$a->strings["Database Server Name"] = "Nombre del servidor de la base de datos"; +$a->strings["Database Login Name"] = "Usuario de la base de datos"; +$a->strings["Database Login Password"] = "Contraseña de la base de datos"; +$a->strings["Database Name"] = "Nombre de la base de datos"; +$a->strings["Site administrator email address"] = "Dirección de correo del administrador de la web"; +$a->strings["Your account email address must match this in order to use the web admin panel."] = "La dirección de correo de tu cuenta debe coincidir con esta para poder usar el panel de administración de la web."; +$a->strings["Please select a default timezone for your website"] = "Por favor, selecciona la zona horaria predeterminada para tu web"; +$a->strings["Site settings"] = "Configuración de la página web"; +$a->strings["Could not find a command line version of PHP in the web server PATH."] = "No se pudo encontrar una versión de la línea de comandos de PHP en la ruta del servidor web."; +$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron. See 'Activating scheduled tasks'"] = "Si no tienes una versión en línea de comandos de PHP instalada en el servidor no podrás ejecutar actualizaciones en segundo plano a través de cron. Ver 'Activating scheduled tasks'"; +$a->strings["PHP executable path"] = "Dirección al ejecutable PHP"; +$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Introduce la ruta completa al ejecutable php. Puedes dejarlo en blanco y seguir con la instalación."; +$a->strings["Command line PHP"] = "Línea de comandos PHP"; +$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "La versión en línea de comandos de PHP en tu sistema no tiene \"register_argc_argv\" habilitado."; +$a->strings["This is required for message delivery to work."] = "Esto es necesario para que funcione la entrega de mensajes."; +$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"] = "Error: La función \"openssl_pkey_new\" en este sistema no es capaz de generar claves de cifrado"; +$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Si se ejecuta en Windows, por favor consulta la sección \"http://www.php.net/manual/en/openssl.installation.php\"."; +$a->strings["Generate encryption keys"] = "Generar claves de encriptación"; +$a->strings["libCurl PHP module"] = "Módulo PHP libCurl"; +$a->strings["GD graphics PHP module"] = "Módulo PHP gráficos GD"; +$a->strings["OpenSSL PHP module"] = "Módulo PHP OpenSSL"; +$a->strings["mysqli PHP module"] = "Módulo PHP mysqli"; +$a->strings["mb_string PHP module"] = "Módulo PHP mb_string"; +$a->strings["Apache mod_rewrite module"] = "Módulo mod_rewrite de Apache"; +$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Error: El módulo de Apache mod-rewrite es necesario pero no está instalado."; +$a->strings["Error: libCURL PHP module required but not installed."] = "Error: El módulo de PHP libcurl es necesario, pero no está instalado."; +$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Error: El módulo de de PHP gráficos GD con soporte JPEG es necesario, pero no está instalado."; +$a->strings["Error: openssl PHP module required but not installed."] = "Error: El módulo de PHP openssl es necesario, pero no está instalado."; +$a->strings["Error: mysqli PHP module required but not installed."] = "Error: El módulo de PHP mysqli es necesario, pero no está instalado."; +$a->strings["Error: mb_string PHP module required but not installed."] = "Error: El módulo de PHP mb_string es necesario, pero no está instalado."; +$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."] = "El programa de instalación web necesita ser capaz de crear un archivo llamado \".htconfig.php\" en la carpeta principal de tu servidor web y es incapaz de hacerlo."; +$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."] = "Se trata a menudo de una configuración de permisos, pues el servidor web puede que no sea capaz de escribir archivos en la carpeta, aunque tú sí puedas."; +$a->strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Friendica top folder."] = "Al final obtendremos un texto que debes guardar en un archivo llamado .htconfig.php en la carpeta de Friendica."; +$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "Como alternativa, puedes saltarte estos pasos y realizar una instalación manual. Por favor, consulta el archivo \"INSTALL.txt\" para las instrucciones."; +$a->strings[".htconfig.php is writable"] = ".htconfig.php tiene permiso de escritura"; +$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "La reescritura de la dirección en .htaccess no funcionó. Revisa la configuración."; +$a->strings["Url rewrite is working"] = "Reescribiendo la dirección..."; +$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."] = "El archivo de configuración de base de datos \".htconfig.php\" no se pudo escribir. Por favor, utiliza el texto adjunto para crear un archivo de configuración en la raíz de tu servidor web."; +$a->strings["Errors encountered creating database tables."] = "Se han encontrados errores creando las tablas de la base de datos."; +$a->strings["

    What next

    "] = "

    ¿Ahora qué?

    "; +$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "IMPORTANTE: Tendrás que configurar [manualmente] una tarea programada para el sondeo"; +$a->strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ g:i A"; +$a->strings["Time Conversion"] = "Conversión horária"; +$a->strings["Friendika provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica ofrece este servicio para compartir eventos con otras redes y amigos en zonas horarias desconocidas."; +$a->strings["UTC time: %s"] = "Tiempo UTC: %s"; +$a->strings["Current timezone: %s"] = "Zona horaria actual: %s"; +$a->strings["Converted localtime: %s"] = "Zona horaria local convertida: %s"; +$a->strings["Please select your timezone:"] = "Por favor, selecciona tu zona horaria:"; +$a->strings["Poke/Prod"] = "Toque/Empujón"; +$a->strings["poke, prod or do other things to somebody"] = "da un toque, empujón o similar a alguien"; +$a->strings["Recipient"] = "Receptor"; +$a->strings["Choose what you wish to do to recipient"] = "Elige qué desea hacer con el receptor"; +$a->strings["Make this post private"] = "Hacer esta publicación privada"; +$a->strings["Profile Match"] = "Coincidencias de Perfil"; +$a->strings["No keywords to match. Please add keywords to your default profile."] = "No hay palabras clave que coincidan. Por favor, agrega algunas palabras claves en tu perfil predeterminado."; +$a->strings["is interested in:"] = "estás interesado en:"; +$a->strings["Connect"] = "Conectar"; +$a->strings["No matches"] = "Sin conincidencias"; +$a->strings["Remote privacy information not available."] = "Privacidad de la información remota no disponible."; +$a->strings["Visible to:"] = "Visible para:"; +$a->strings["No such group"] = "Ningún grupo"; +$a->strings["Group is empty"] = "El grupo está vacío"; +$a->strings["Group: "] = "Grupo: "; +$a->strings["Select"] = "Seleccionar"; +$a->strings["View %s's profile @ %s"] = "Ver perfil de %s @ %s"; +$a->strings["%s from %s"] = "%s de %s"; +$a->strings["View in context"] = "Verlo en contexto"; +$a->strings["%d comment"] = array( + 0 => "%d comentario", + 1 => "%d comentarios", +); +$a->strings["comment"] = array( + 0 => "", + 1 => "Comentario", +); +$a->strings["show more"] = "ver más"; +$a->strings["like"] = "me gusta"; +$a->strings["dislike"] = "no me gusta"; +$a->strings["Share this"] = "Compartir esto"; +$a->strings["share"] = "compartir"; +$a->strings["Bold"] = "Negrita"; +$a->strings["Italic"] = "Cursiva"; +$a->strings["Underline"] = "Subrayado"; +$a->strings["Quote"] = "Cita"; +$a->strings["Code"] = "Código"; +$a->strings["Image"] = "Imagen"; +$a->strings["Link"] = "Enlace"; +$a->strings["Video"] = "Vídeo"; +$a->strings["add star"] = "Añadir estrella"; +$a->strings["remove star"] = "Quitar estrella"; +$a->strings["toggle star status"] = "Añadir a destacados"; +$a->strings["starred"] = "marcados con estrellas"; +$a->strings["add tag"] = "añadir etiqueta"; +$a->strings["save to folder"] = "grabado en directorio"; +$a->strings["to"] = "a"; +$a->strings["Wall-to-Wall"] = "Muro-A-Muro"; +$a->strings["via Wall-To-Wall:"] = "via Muro-A-Muro:"; +$a->strings["Welcome to %s"] = "Bienvenido a %s"; +$a->strings["Invalid request identifier."] = "Solicitud de identificación no válida."; +$a->strings["Discard"] = "Descartar"; +$a->strings["Ignore"] = "Ignorar"; +$a->strings["System"] = "Sistema"; +$a->strings["Network"] = "Red"; +$a->strings["Personal"] = "Personal"; +$a->strings["Home"] = "Inicio"; +$a->strings["Introductions"] = "Presentaciones"; +$a->strings["Messages"] = "Mensajes"; +$a->strings["Show Ignored Requests"] = "Mostrar peticiones ignoradas"; +$a->strings["Hide Ignored Requests"] = "Ocultar peticiones ignoradas"; +$a->strings["Notification type: "] = "Tipo de notificación: "; +$a->strings["Friend Suggestion"] = "Propuestas de amistad"; +$a->strings["suggested by %s"] = "sugerido por %s"; +$a->strings["Hide this contact from others"] = "Ocultar este contacto a los demás."; +$a->strings["Post a new friend activity"] = "Publica tu nueva amistad"; +$a->strings["if applicable"] = "Si corresponde"; +$a->strings["Approve"] = "Aprobar"; +$a->strings["Claims to be known to you: "] = "Dice conocerte: "; +$a->strings["yes"] = "sí"; +$a->strings["no"] = "no"; +$a->strings["Approve as: "] = "Aprobar como: "; +$a->strings["Friend"] = "Amigo"; +$a->strings["Sharer"] = "Lector"; +$a->strings["Fan/Admirer"] = "Fan/Admirador"; +$a->strings["Friend/Connect Request"] = "Solicitud de Amistad/Conexión"; +$a->strings["New Follower"] = "Nuevo seguidor"; +$a->strings["No introductions."] = "Sin presentaciones."; +$a->strings["Notifications"] = "Notificaciones"; +$a->strings["%s liked %s's post"] = "A %s le gusta la publicación de %s"; +$a->strings["%s disliked %s's post"] = "A %s no le gusta la publicación de %s"; +$a->strings["%s is now friends with %s"] = "%s es ahora es amigo de %s"; +$a->strings["%s created a new post"] = "%s creó una nueva publicación"; +$a->strings["%s commented on %s's post"] = "%s comentó la publicación de %s"; +$a->strings["No more network notifications."] = "No hay más notificaciones de red."; +$a->strings["Network Notifications"] = "Notificaciones de Red"; +$a->strings["No more system notifications."] = "No hay más notificaciones del sistema."; +$a->strings["System Notifications"] = "Notificaciones del sistema"; +$a->strings["No more personal notifications."] = "No hay más notificaciones personales."; +$a->strings["Personal Notifications"] = "Notificaciones personales"; +$a->strings["No more home notifications."] = "No hay más notificaciones de inicio."; +$a->strings["Home Notifications"] = "Notificaciones de Inicio"; +$a->strings["Could not access contact record."] = "No se pudo acceder a los datos del contacto."; +$a->strings["Could not locate selected profile."] = "No se pudo encontrar el perfil seleccionado."; +$a->strings["Contact updated."] = "Contacto actualizado."; +$a->strings["Contact has been blocked"] = "El contacto ha sido bloqueado"; +$a->strings["Contact has been unblocked"] = "El contacto ha sido desbloqueado"; +$a->strings["Contact has been ignored"] = "El contacto ha sido ignorado"; +$a->strings["Contact has been unignored"] = "El contacto ya no está ignorado"; +$a->strings["Contact has been archived"] = "El contacto ha sido archivado"; +$a->strings["Contact has been unarchived"] = "El contacto ya no está archivado"; +$a->strings["Contact has been removed."] = "El contacto ha sido eliminado"; +$a->strings["You are mutual friends with %s"] = "Ahora tienes una amistad mutua con %s"; +$a->strings["You are sharing with %s"] = "Estás compartiendo con %s"; +$a->strings["%s is sharing with you"] = "%s está compartiendo contigo"; +$a->strings["Private communications are not available for this contact."] = "Las comunicaciones privadas no está disponibles para este contacto."; +$a->strings["Never"] = "Nunca"; +$a->strings["(Update was successful)"] = "(La actualización se ha completado)"; +$a->strings["(Update was not successful)"] = "(La actualización no se ha completado)"; +$a->strings["Suggest friends"] = "Sugerir amigos"; +$a->strings["Network type: %s"] = "Tipo de red: %s"; +$a->strings["%d contact in common"] = array( + 0 => "%d contacto en común", + 1 => "%d contactos en común", +); +$a->strings["View all contacts"] = "Ver todos los contactos"; +$a->strings["Unblock"] = "Desbloquear"; +$a->strings["Block"] = "Bloquear"; +$a->strings["Toggle Blocked status"] = "Cambiar bloqueados"; +$a->strings["Unignore"] = "Quitar de Ignorados"; +$a->strings["Toggle Ignored status"] = "Cambiar ignorados"; +$a->strings["Unarchive"] = "Sin archivar"; +$a->strings["Archive"] = "Archivo"; +$a->strings["Toggle Archive status"] = "Cambiar archivados"; +$a->strings["Repair"] = "Reparar"; +$a->strings["Advanced Contact Settings"] = "Configuración avanzada"; +$a->strings["Communications lost with this contact!"] = "¡Se ha perdido la comunicación con este contacto!"; +$a->strings["Contact Editor"] = "Editor de contactos"; +$a->strings["Profile Visibility"] = "Visibilidad del Perfil"; +$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Por favor, selecciona el perfil que quieras mostrar a %s cuando esté viendo tu perfil de forma segura."; +$a->strings["Contact Information / Notes"] = "Información del Contacto / Notas"; +$a->strings["Edit contact notes"] = "Editar notas del contacto"; +$a->strings["Visit %s's profile [%s]"] = "Ver el perfil de %s [%s]"; +$a->strings["Block/Unblock contact"] = "Boquear/Desbloquear contacto"; +$a->strings["Ignore contact"] = "Ignorar contacto"; +$a->strings["Repair URL settings"] = "Configuración de reparación de la dirección"; +$a->strings["View conversations"] = "Ver conversaciones"; +$a->strings["Delete contact"] = "Eliminar contacto"; +$a->strings["Last update:"] = "Última actualización:"; +$a->strings["Update public posts"] = "Actualizar publicaciones públicas"; +$a->strings["Update now"] = "Actualizar ahora"; +$a->strings["Currently blocked"] = "Bloqueados"; +$a->strings["Currently ignored"] = "Ignorados"; +$a->strings["Currently archived"] = "Archivados"; +$a->strings["Replies/likes to your public posts may still be visible"] = "Los comentarios o \"me gusta\" en tus publicaciones públicas todavía pueden ser visibles."; +$a->strings["Suggestions"] = "Sugerencias"; +$a->strings["Suggest potential friends"] = "Amistades potenciales sugeridas"; +$a->strings["All Contacts"] = "Todos los contactos"; +$a->strings["Show all contacts"] = "Mostrar todos los contactos"; +$a->strings["Unblocked"] = "Desbloqueados"; +$a->strings["Only show unblocked contacts"] = "Mostrar solo contactos sin bloquear"; +$a->strings["Blocked"] = "Bloqueados"; +$a->strings["Only show blocked contacts"] = "Mostrar solo contactos bloqueados"; +$a->strings["Ignored"] = "Ignorados"; +$a->strings["Only show ignored contacts"] = "Mostrar solo contactos ignorados"; +$a->strings["Archived"] = "Archivados"; +$a->strings["Only show archived contacts"] = "Mostrar solo contactos archivados"; +$a->strings["Hidden"] = "Ocultos"; +$a->strings["Only show hidden contacts"] = "Mostrar solo contactos ocultos"; +$a->strings["Mutual Friendship"] = "Amistad recíproca"; +$a->strings["is a fan of yours"] = "es tu fan"; +$a->strings["you are a fan of"] = "eres fan de"; +$a->strings["Edit contact"] = "Modificar contacto"; +$a->strings["Contacts"] = "Contactos"; +$a->strings["Search your contacts"] = "Buscar en tus contactos"; +$a->strings["Finding: "] = "Buscando: "; +$a->strings["Find"] = "Buscar"; +$a->strings["No valid account found."] = "No se ha encontrado ninguna cuenta válida"; +$a->strings["Password reset request issued. Check your email."] = "Solicitud de restablecimiento de contraseña enviada. Revisa tu correo."; +$a->strings["Password reset requested at %s"] = "Contraseña restablecida enviada a %s"; +$a->strings["Administrator"] = "Administrador"; +$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "La solicitud no puede ser verificada (deberías haberla proporcionado antes). Falló el restablecimiento de la contraseña."; +$a->strings["Password Reset"] = "Restablecer la contraseña"; +$a->strings["Your password has been reset as requested."] = "Tu contraseña ha sido restablecida como solicitaste."; +$a->strings["Your new password is"] = "Tu nueva contraseña es"; +$a->strings["Save or copy your new password - and then"] = "Guarda o copia tu nueva contraseña y luego"; +$a->strings["click here to login"] = "pulsa aquí para acceder"; +$a->strings["Your password may be changed from the Settings page after successful login."] = "Puedes cambiar tu contraseña desde la página de Configuración después de acceder con éxito."; +$a->strings["Forgot your Password?"] = "¿Olvidaste tu contraseña?"; +$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Introduce tu correo para restablecer tu contraseña. Luego comprueba tu correo para las instrucciones adicionales."; +$a->strings["Nickname or Email: "] = "Apodo o Correo electrónico: "; +$a->strings["Reset"] = "Restablecer"; +$a->strings["Account settings"] = "Configuración de tu cuenta"; +$a->strings["Display settings"] = "Mostrar configuración"; +$a->strings["Connector settings"] = "Configuración del conector"; +$a->strings["Plugin settings"] = "Configuración de los módulos"; +$a->strings["Connected apps"] = "Aplicaciones conectadas"; +$a->strings["Export personal data"] = "Exportación de datos personales"; +$a->strings["Remove account"] = "Eliminar cuenta"; +$a->strings["Settings"] = "Configuración"; +$a->strings["Missing some important data!"] = "¡Faltan algunos datos importantes!"; +$a->strings["Update"] = "Actualizar"; +$a->strings["Failed to connect with email account using the settings provided."] = "Error al conectar con la cuenta de correo mediante la configuración suministrada."; +$a->strings["Email settings updated."] = "Configuración de correo actualizada."; +$a->strings["Passwords do not match. Password unchanged."] = "Las contraseñas no coinciden. La contraseña no ha sido modificada."; +$a->strings["Empty passwords are not allowed. Password unchanged."] = "No se permiten contraseñas vacías. La contraseña no ha sido modificada."; +$a->strings["Password changed."] = "Contraseña modificada."; +$a->strings["Password update failed. Please try again."] = "La actualización de la contraseña ha fallado. Por favor, prueba otra vez."; +$a->strings[" Please use a shorter name."] = " Usa un nombre más corto."; +$a->strings[" Name too short."] = " Nombre demasiado corto."; +$a->strings[" Not valid email."] = " Correo no válido."; +$a->strings[" Cannot change to that email."] = " No se puede usar ese correo."; +$a->strings["Private forum has no privacy permissions. Using default privacy group."] = "El foro privado no tiene permisos de privacidad. Usando el grupo de privacidad por defecto."; +$a->strings["Private forum has no privacy permissions and no default privacy group."] = "El foro privado no tiene permisos de privacidad ni grupo por defecto de privacidad."; +$a->strings["Settings updated."] = "Configuración actualizada."; +$a->strings["Add application"] = "Agregar aplicación"; +$a->strings["Consumer Key"] = "Clave del consumidor"; +$a->strings["Consumer Secret"] = "Secreto del consumidor"; +$a->strings["Redirect"] = "Redirigir"; +$a->strings["Icon url"] = "Dirección del ícono"; +$a->strings["You can't edit this application."] = "No puedes editar esta aplicación."; +$a->strings["Connected Apps"] = "Aplicaciones conectadas"; +$a->strings["Client key starts with"] = "Clave de cliente comienza por"; +$a->strings["No name"] = "Sin nombre"; +$a->strings["Remove authorization"] = "Suprimir la autorización"; +$a->strings["No Plugin settings configured"] = "No se ha configurado ningún módulo"; +$a->strings["Plugin Settings"] = "Configuración de los módulos"; +$a->strings["Built-in support for %s connectivity is %s"] = "El soporte integrado de conexión con %s está %s"; +$a->strings["enabled"] = "habilitado"; +$a->strings["disabled"] = "deshabilitado"; +$a->strings["StatusNet"] = "StatusNet"; +$a->strings["Email access is disabled on this site."] = "El acceso por correo está deshabilitado en esta web."; +$a->strings["Connector Settings"] = "Configuración del conector"; +$a->strings["Email/Mailbox Setup"] = "Configuración del correo/buzón"; +$a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "Si quieres comunicarte con tus contactos de correo usando este servicio (opcional), por favor, especifica cómo conectar con tu buzón."; +$a->strings["Last successful email check:"] = "Última comprobación del correo con éxito:"; +$a->strings["IMAP server name:"] = "Nombre del servidor IMAP:"; +$a->strings["IMAP port:"] = "Puerto IMAP:"; +$a->strings["Security:"] = "Seguridad:"; +$a->strings["None"] = "Ninguna"; +$a->strings["Email login name:"] = "Nombre de usuario:"; +$a->strings["Email password:"] = "Contraseña:"; +$a->strings["Reply-to address:"] = "Dirección de respuesta:"; +$a->strings["Send public posts to all email contacts:"] = "Enviar publicaciones públicas a todos los contactos de correo:"; +$a->strings["Action after import:"] = "Acción después de importar:"; +$a->strings["Mark as seen"] = "Marcar como leído"; +$a->strings["Move to folder"] = "Mover a un directorio"; +$a->strings["Move to folder:"] = "Mover al directorio:"; +$a->strings["No special theme for mobile devices"] = "No hay tema especial para dispositivos móviles"; +$a->strings["Display Settings"] = "Mostrar Configuración"; +$a->strings["Display Theme:"] = "Utilizar tema:"; +$a->strings["Mobile Theme:"] = "Tema móvil:"; +$a->strings["Update browser every xx seconds"] = "Actualizar navegador cada xx segundos"; +$a->strings["Minimum of 10 seconds, no maximum"] = "Mínimo 10 segundos, sin máximo"; +$a->strings["Number of items to display per page:"] = "Número de elementos a mostrar por página:"; +$a->strings["Maximum of 100 items"] = "Máximo 100 elementos"; +$a->strings["Don't show emoticons"] = "No mostrar emoticones"; +$a->strings["Normal Account Page"] = "Página de cuenta normal"; +$a->strings["This account is a normal personal profile"] = "Esta cuenta es el perfil personal normal"; +$a->strings["Soapbox Page"] = "Página de tribuna"; +$a->strings["Automatically approve all connection/friend requests as read-only fans"] = "Acepta automáticamente todas las peticiones de conexión/amistad como seguidores de solo-lectura"; +$a->strings["Community Forum/Celebrity Account"] = "Cuenta de Comunidad, Foro o Celebridad"; +$a->strings["Automatically approve all connection/friend requests as read-write fans"] = "Acepta automáticamente todas las peticiones de conexión/amistad como seguidores de lectura-escritura"; +$a->strings["Automatic Friend Page"] = "Página de Amistad autómatica"; +$a->strings["Automatically approve all connection/friend requests as friends"] = "Aceptar automáticamente todas las solicitudes de conexión/amistad como amigos"; +$a->strings["Private Forum [Experimental]"] = "Foro privado [Experimental]"; +$a->strings["Private forum - approved members only"] = "Foro privado - solo miembros"; +$a->strings["OpenID:"] = "OpenID:"; +$a->strings["(Optional) Allow this OpenID to login to this account."] = "(Opcional) Permitir a este OpenID acceder a esta cuenta."; +$a->strings["Publish your default profile in your local site directory?"] = "¿Quieres publicar tu perfil predeterminado en el directorio local del sitio?"; +$a->strings["Publish your default profile in the global social directory?"] = "¿Quieres publicar tu perfil predeterminado en el directorio social de forma global?"; +$a->strings["Hide your contact/friend list from viewers of your default profile?"] = "¿Quieres ocultar tu lista de contactos/amigos en la vista de tu perfil predeterminado?"; +$a->strings["Hide your profile details from unknown viewers?"] = "¿Quieres que los detalles de tu perfil permanezcan ocultos a los desconocidos?"; +$a->strings["Allow friends to post to your profile page?"] = "¿Permites que tus amigos publiquen en tu página de perfil?"; +$a->strings["Allow friends to tag your posts?"] = "¿Permites a los amigos etiquetar tus publicaciones?"; +$a->strings["Allow us to suggest you as a potential friend to new members?"] = "¿Nos permite recomendarte como amigo potencial a los nuevos miembros?"; +$a->strings["Permit unknown people to send you private mail?"] = "¿Permites que desconocidos te manden correos privados?"; +$a->strings["Profile is not published."] = "El perfil no está publicado."; $a->strings["or"] = "o"; -$a->strings["skip this step"] = "salta este paso"; +$a->strings["Your Identity Address is"] = "Tu dirección personal es"; +$a->strings["Automatically expire posts after this many days:"] = "Las publicaciones expirarán automáticamente después de estos días:"; +$a->strings["If empty, posts will not expire. Expired posts will be deleted"] = "Si lo dejas vacío no expirarán nunca. Las publicaciones que hayan expirado se borrarán"; +$a->strings["Advanced expiration settings"] = "Configuración avanzada de expiración"; +$a->strings["Advanced Expiration"] = "Expiración avanzada"; +$a->strings["Expire posts:"] = "¿Expiran las publicaciones?"; +$a->strings["Expire personal notes:"] = "¿Expiran las notas personales?"; +$a->strings["Expire starred posts:"] = "¿Expiran los favoritos?"; +$a->strings["Expire photos:"] = "¿Expiran las fotografías?"; +$a->strings["Only expire posts by others:"] = "Solo expiran los mensajes de los demás:"; +$a->strings["Account Settings"] = "Configuración de la cuenta"; +$a->strings["Password Settings"] = "Configuración de la contraseña"; +$a->strings["New Password:"] = "Contraseña nueva:"; +$a->strings["Confirm:"] = "Confirmar:"; +$a->strings["Leave password fields blank unless changing"] = "Deja la contraseña en blanco si no quieres cambiarla"; +$a->strings["Basic Settings"] = "Configuración básica"; +$a->strings["Full Name:"] = "Nombre completo:"; +$a->strings["Email Address:"] = "Dirección de correo:"; +$a->strings["Your Timezone:"] = "Zona horaria:"; +$a->strings["Default Post Location:"] = "Localización predeterminada:"; +$a->strings["Use Browser Location:"] = "Usar localización del navegador:"; +$a->strings["Security and Privacy Settings"] = "Configuración de seguridad y privacidad"; +$a->strings["Maximum Friend Requests/Day:"] = "Máximo número de peticiones de amistad por día:"; +$a->strings["(to prevent spam abuse)"] = "(para prevenir el abuso de spam)"; +$a->strings["Default Post Permissions"] = "Permisos por defecto para las publicaciones"; +$a->strings["(click to open/close)"] = "(pulsa para abrir/cerrar)"; +$a->strings["Maximum private messages per day from unknown people:"] = "Número máximo de mensajes diarios para desconocidos:"; +$a->strings["Notification Settings"] = "Configuración de notificaciones"; +$a->strings["By default post a status message when:"] = "Publicar en tu estado cuando:"; +$a->strings["accepting a friend request"] = "aceptes una solicitud de amistad"; +$a->strings["joining a forum/community"] = "te unas a un foro/comunidad"; +$a->strings["making an interesting profile change"] = "hagas un cambio interesante en tu perfil"; +$a->strings["Send a notification email when:"] = "Enviar notificación por correo cuando:"; +$a->strings["You receive an introduction"] = "Recibas una presentación"; +$a->strings["Your introductions are confirmed"] = "Tu presentación sea confirmada"; +$a->strings["Someone writes on your profile wall"] = "Alguien escriba en el muro de mi perfil"; +$a->strings["Someone writes a followup comment"] = "Algien escriba en un comentario que sigo"; +$a->strings["You receive a private message"] = "Recibas un mensaje privado"; +$a->strings["You receive a friend suggestion"] = "Recibas una sugerencia de amistad"; +$a->strings["You are tagged in a post"] = "Seas etiquetado en una publicación"; +$a->strings["You are poked/prodded/etc. in a post"] = "Te han tocado/empujado/etc. en una publicación"; +$a->strings["Advanced Account/Page Type Settings"] = "Configuración avanzada de tipo de Cuenta/Página"; +$a->strings["Change the behaviour of this account for special situations"] = "Cambiar el comportamiento de esta cuenta para situaciones especiales"; +$a->strings["Manage Identities and/or Pages"] = "Administrar identidades y/o páginas"; +$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Cambia entre diferentes identidades o páginas de Comunidad/Grupos que comparten los detalles de tu cuenta o sobre los que tienes permisos para administrar"; +$a->strings["Select an identity to manage: "] = "Selecciona una identidad a gestionar:"; +$a->strings["Search Results For:"] = "Resultados de la busqueda para:"; +$a->strings["Remove term"] = "Eliminar término"; +$a->strings["Saved Searches"] = "Búsquedas guardadas"; +$a->strings["add"] = "añadir"; +$a->strings["Commented Order"] = "Orden de comentarios"; +$a->strings["Sort by Comment Date"] = "Ordenar por fecha de comentarios"; +$a->strings["Posted Order"] = "Orden de publicación"; +$a->strings["Sort by Post Date"] = "Ordenar por fecha de publicación"; +$a->strings["Posts that mention or involve you"] = "Publicaciones que te mencionan o involucran"; +$a->strings["New"] = "Nuevo"; +$a->strings["Activity Stream - by date"] = "Corriente de actividad por fecha"; +$a->strings["Starred"] = "Favoritos"; +$a->strings["Favourite Posts"] = "Publicaciones favoritas"; +$a->strings["Shared Links"] = "Enlaces compartidos"; +$a->strings["Interesting Links"] = "Enlaces interesantes"; +$a->strings["Warning: This group contains %s member from an insecure network."] = array( + 0 => "Aviso: este grupo contiene %s contacto con conexión no segura.", + 1 => "Aviso: este grupo contiene %s contactos con conexiones no seguras.", +); +$a->strings["Private messages to this group are at risk of public disclosure."] = "Los mensajes privados a este grupo corren el riesgo de ser mostrados públicamente."; +$a->strings["Contact: "] = "Contacto: "; +$a->strings["Private messages to this person are at risk of public disclosure."] = "Los mensajes privados a esta persona corren el riesgo de ser mostrados públicamente."; +$a->strings["Invalid contact."] = "Contacto erróneo."; +$a->strings["Personal Notes"] = "Notas personales"; +$a->strings["Save"] = "Guardar"; +$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "Excedido el número máximo de mensajes para %s. El mensaje no se ha enviado."; +$a->strings["No recipient selected."] = "Ningún destinatario seleccionado"; +$a->strings["Unable to check your home location."] = "Imposible comprobar tu servidor de inicio."; +$a->strings["Message could not be sent."] = "El mensaje no ha podido ser enviado."; +$a->strings["Message collection failure."] = "Fallo en la recolección de mensajes."; +$a->strings["Message sent."] = "Mensaje enviado."; +$a->strings["No recipient."] = "Sin receptor."; +$a->strings["Please enter a link URL:"] = "Introduce la dirección del enlace:"; +$a->strings["Send Private Message"] = "Enviar mensaje privado"; +$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "Si quieres que %s te responda, asegúrate de que la configuración de privacidad permite enviar correo privado a desconocidos."; +$a->strings["To:"] = "Para:"; +$a->strings["Subject:"] = "Asunto:"; +$a->strings["Your message:"] = "Tu mensaje:"; +$a->strings["Welcome to Friendica"] = "Bienvenido a Friendica "; +$a->strings["New Member Checklist"] = "Listado de nuevos miembros"; +$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."] = "Nos gustaría ofrecerte algunos consejos y enlaces para ayudar a hacer tu experiencia más amena. Pulsa en cualquier elemento para visitar la página correspondiente. Un enlace a esta página será visible desde tu página de inicio durante las dos semanas siguientes a tu inscripción y luego desaparecerá."; +$a->strings["Getting Started"] = "Empezando"; +$a->strings["Friendica Walk-Through"] = "Visita guiada a Friendica"; +$a->strings["On your Quick Start page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."] = "En tu página de Inicio Rápido - busca una introducción breve para tus pestañas de perfil y red, haz algunas conexiones nuevas, y busca algunos grupos a los que unirte."; +$a->strings["Go to Your Settings"] = "Ir a tus ajustes"; +$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."] = "En la página de Configuración puedes cambiar tu contraseña inicial. También aparece tu ID (Identity Address). Es parecida a una dirección de correo y te servirá para conectar con gente de redes sociales libres."; +$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."] = "Revisa las otras configuraciones, especialmente la configuración de privacidad. Un listado de directorio sin publicar es como tener un número de teléfono sin publicar. Normalmente querrás publicar tu listado, a menos que tus amigos y amigos potenciales sepan cómo ponerse en contacto contigo."; +$a->strings["Profile"] = "Perfil"; +$a->strings["Upload Profile Photo"] = "Subir foto del Perfil"; +$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."] = "Sube una foto para tu perfil si no lo has hecho aún. Los estudios han demostrado que la gente que usa fotos suyas reales tienen diez veces más éxito a la hora de entablar amistad que las que no."; +$a->strings["Edit Your Profile"] = "Editar tu perfil"; +$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."] = "Edita tu perfil predeterminado como quieras. Revisa la configuración para ocultar tu lista de amigos o tu perfil a los visitantes desconocidos."; +$a->strings["Profile Keywords"] = "Palabras clave del perfil"; +$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."] = "Define en tu perfil público algunas palabras que describan tus intereses. Así podremos buscar otras personas con los mismos gustos y sugerirte posibles amigos."; +$a->strings["Connecting"] = "Conectando"; +$a->strings["Facebook"] = "Facebook"; +$a->strings["Authorise the Facebook Connector if you currently have a Facebook account and we will (optionally) import all your Facebook friends and conversations."] = "Autoriza la conexión con Facebook si ya tienes una cuenta en Facebook y nosotros (opcionalmente) importaremos tus amistades y conversaciones desde Facebook."; +$a->strings["If this is your own personal server, installing the Facebook addon may ease your transition to the free social web."] = "Si este es tu propio servidor privado, instalar el conector de Facebook puede facilitar el paso hacia la red social libre."; +$a->strings["Importing Emails"] = "Importando correos electrónicos"; +$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"] = "Introduce la información para acceder a tu correo en la página de Configuración del conector si quieres importar e interactuar con amigos o listas de correos del buzón de entrada de tu correo electrónico."; +$a->strings["Go to Your Contacts Page"] = "Ir a tu página de contactos"; +$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."] = "Tu página de Contactos es el portal desde donde podrás manejar tus amistades y conectarte con amigos de otras redes. Normalmente introduces su dirección o la dirección de su sitio web en el recuadro \"Añadir contacto nuevo\"."; +$a->strings["Go to Your Site's Directory"] = "Ir al directorio de tu sitio"; +$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."] = "El Directorio te permite encontrar otras personas en esta red o en cualquier otro sitio federado. Busca algún enlace de Conectar o Seguir en su perfil. Proporciona tu direción personal si es necesario."; +$a->strings["Finding New People"] = "Encontrando nueva gente"; +$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 el panel lateral de la página de Contactos existen varias herramientas para encontrar nuevos amigos. Podemos filtrar personas por sus intereses, buscar personas por nombre o por sus intereses, y ofrecerte sugerencias basadas en sus relaciones de la red. En un sitio nuevo, las sugerencias de amigos por lo general comienzan pasadas las 24 horas."; +$a->strings["Groups"] = "Grupos"; +$a->strings["Group Your Contacts"] = "Agrupa tus contactos"; +$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."] = "Una vez que tengas algunos amigos, puedes organizarlos en grupos privados de conversación mediante el memnú en tu página de Contactos y luego puedes interactuar con cada grupo por separado desde tu página de Red."; +$a->strings["Why Aren't My Posts Public?"] = "¿Por qué mis publicaciones no son públicas?"; +$a->strings["Friendica respects your privacy. By default, your posts will only show up to people you've added as friends. For more information, see the help section from the link above."] = "Friendica respeta tu privacidad. Por defecto, tus publicaciones solo se mostrarán a personas que hayas añadido como amistades. Para más información, mira la sección de ayuda en el enlace de más arriba."; +$a->strings["Getting Help"] = "Consiguiendo ayuda"; +$a->strings["Go to the Help Section"] = "Ir a la sección de ayuda"; +$a->strings["Our help pages may be consulted for detail on other program features and resources."] = "Puedes consultar nuestra página de Ayuda para más información y recursos de ayuda."; +$a->strings["Item not available."] = "Elemento no disponible."; +$a->strings["Item was not found."] = "Elemento no encontrado."; +$a->strings["Group created."] = "Grupo creado."; +$a->strings["Could not create group."] = "Imposible crear el grupo."; +$a->strings["Group not found."] = "Grupo no encontrado."; +$a->strings["Group name changed."] = "El nombre del grupo ha cambiado."; +$a->strings["Permission denied"] = "Permiso denegado"; +$a->strings["Create a group of contacts/friends."] = "Crea un grupo de contactos/amigos."; +$a->strings["Group Name: "] = "Nombre del grupo: "; +$a->strings["Group removed."] = "Grupo eliminado."; +$a->strings["Unable to remove group."] = "No se puede eliminar el grupo."; +$a->strings["Group Editor"] = "Editor de grupos"; +$a->strings["Members"] = "Miembros"; +$a->strings["Click on a contact to add or remove."] = "Pulsa en un contacto para añadirlo o eliminarlo."; +$a->strings["Invalid profile identifier."] = "Identificador de perfil no válido."; +$a->strings["Profile Visibility Editor"] = "Editor de visibilidad del perfil"; +$a->strings["Visible To"] = "Visible para"; +$a->strings["All Contacts (with secure profile access)"] = "Todos los contactos (con perfil de acceso seguro)"; +$a->strings["No contacts."] = "Ningún contacto."; +$a->strings["View Contacts"] = "Ver contactos"; +$a->strings["Registration details for %s"] = "Detalles de registro para %s"; +$a->strings["Registration successful. Please check your email for further instructions."] = "Te has registrado con éxito. Por favor, consulta tu correo para más información."; +$a->strings["Failed to send email message. Here is the message that failed."] = "Error al enviar el mensaje de correo. Este es el mensaje no enviado."; +$a->strings["Your registration can not be processed."] = "Tu registro no se puede procesar."; +$a->strings["Registration request at %s"] = "Solicitud de registro en %s"; +$a->strings["Your registration is pending approval by the site owner."] = "Tu registro está pendiente de aprobación por el propietario del sitio."; +$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Este sitio ha excedido el número de registros diarios permitidos. Inténtalo de nuevo mañana por favor."; +$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Puedes (opcionalmente) rellenar este formulario a través de OpenID escribiendo tu OpenID y pulsando en \"Registrar\"."; +$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Si no estás familiarizado con OpenID, por favor deja ese campo en blanco y rellena el resto de los elementos."; +$a->strings["Your OpenID (optional): "] = "Tu OpenID (opcional):"; +$a->strings["Include your profile in member directory?"] = "¿Incluir tu perfil en el directorio de miembros?"; +$a->strings["Membership on this site is by invitation only."] = "Sitio solo accesible mediante invitación."; +$a->strings["Your invitation ID: "] = "ID de tu invitación: "; +$a->strings["Registration"] = "Registro"; +$a->strings["Your Full Name (e.g. Joe Smith): "] = "Tu nombre completo (por ejemplo, Manuel Pérez): "; +$a->strings["Your Email Address: "] = "Tu dirección de correo: "; +$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be 'nickname@\$sitename'."] = "Elije un apodo. Debe comenzar con una letra. Tu dirección de perfil en este sitio va a ser \"apodo@\$nombredelsitio\"."; +$a->strings["Choose a nickname: "] = "Escoge un apodo: "; +$a->strings["Register"] = "Registrarse"; +$a->strings["People Search"] = "Buscar personas"; +$a->strings["status"] = "estado"; +$a->strings["%1\$s likes %2\$s's %3\$s"] = "A %1\$s le gusta %3\$s de %2\$s"; +$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "A %1\$s no le gusta %3\$s de %2\$s"; +$a->strings["Item not found."] = "Elemento no encontrado."; +$a->strings["Access denied."] = "Acceso denegado."; +$a->strings["Photos"] = "Fotografías"; +$a->strings["Files"] = "Archivos"; +$a->strings["Account approved."] = "Cuenta aprobada."; +$a->strings["Registration revoked for %s"] = "Registro anulado para %s"; +$a->strings["Please login."] = "Por favor accede."; +$a->strings["Unable to locate original post."] = "No se puede encontrar la publicación original."; +$a->strings["Empty post discarded."] = "Publicación vacía descartada."; +$a->strings["Wall Photos"] = "Foto del Muro"; +$a->strings["System error. Post not saved."] = "Error del sistema. Mensaje no guardado."; +$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "Este mensaje te lo ha enviado %s, miembro de la red social Friendica."; +$a->strings["You may visit them online at %s"] = "Los puedes visitar en línea en %s"; +$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Por favor contacta con el remitente respondiendo a este mensaje si no deseas recibir estos mensajes."; +$a->strings["%s posted an update."] = "%s ha publicado una actualización."; +$a->strings["%1\$s is currently %2\$s"] = "%1\$s está actualmente %2\$s"; +$a->strings["Mood"] = "Ánimo"; +$a->strings["Set your current mood and tell your friends"] = "Coloca tu ánimo actual y cuéntaselo a tus amigos"; +$a->strings["Image uploaded but image cropping failed."] = "Imagen recibida, pero ha fallado al recortarla."; +$a->strings["Image size reduction [%s] failed."] = "Ha fallado la reducción de las dimensiones de la imagen [%s]."; +$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Recarga la página o limpia la caché del navegador si la foto nueva no aparece inmediatamente."; +$a->strings["Unable to process image"] = "Imposible procesar la imagen"; +$a->strings["Image exceeds size limit of %d"] = "El tamaño de la imagen supera el límite de %d"; +$a->strings["Upload File:"] = "Subir archivo:"; +$a->strings["Select a profile:"] = "Elige un perfil:"; +$a->strings["Upload"] = "Subir"; +$a->strings["skip this step"] = "saltar este paso"; $a->strings["select a photo from your photo albums"] = "elige una foto de tus álbumes"; $a->strings["Crop Image"] = "Recortar imagen"; $a->strings["Please adjust the image cropping for optimum viewing."] = "Por favor, ajusta el recorte de la imagen para optimizarla."; $a->strings["Done Editing"] = "Editado"; $a->strings["Image uploaded successfully."] = "Imagen subida con éxito."; -$a->strings["Welcome to %s"] = "Bienvenido a %s"; -$a->strings["[Embedded content - reload page to view]"] = "[Contenido incrustado - recarga la página para verlo]"; -$a->strings["File exceeds size limit of %d"] = "El tamaño del archivo excede el límite de %d"; -$a->strings["File upload failed."] = "Ha fallado la subida del archivo."; -$a->strings["Friend Suggestions"] = "Sugerencias de amigos"; -$a->strings["No suggestions. This works best when you have more than one contact/friend."] = "No hay sugerencias. Esto funciona mejor cuando tienes más de un contacto/amigo."; -$a->strings["Ignore/Hide"] = "Ignorar/Ocultar"; -$a->strings["Registration details for %s"] = "Detalles de registro para %s"; -$a->strings["Administrator"] = "Administrador"; -$a->strings["Account approved."] = "Cuenta aprobada."; -$a->strings["Registration revoked for %s"] = "Registro anulado para %s"; -$a->strings["Please login."] = "Por favor accede."; +$a->strings["No profile"] = "Nigún perfil"; +$a->strings["Remove My Account"] = "Eliminar mi cuenta"; +$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Esto eliminará por completo tu cuenta. Una vez hecho no se puede deshacer."; +$a->strings["Please enter your password for verification:"] = "Por favor, introduce tu contraseña para la verificación:"; +$a->strings["New Message"] = "Nuevo mensaje"; +$a->strings["Unable to locate contact information."] = "No se puede encontrar información del contacto."; +$a->strings["Message deleted."] = "Mensaje eliminado."; +$a->strings["Conversation removed."] = "Conversación eliminada."; +$a->strings["No messages."] = "No hay mensajes."; +$a->strings["Unknown sender - %s"] = "Remitente desconocido - %s"; +$a->strings["You and %s"] = "Tú y %s"; +$a->strings["%s and You"] = "%s y Tú"; +$a->strings["Delete conversation"] = "Eliminar conversación"; +$a->strings["D, d M Y - g:i A"] = "D, d M Y - g:i A"; +$a->strings["%d message"] = array( + 0 => "%d mensaje", + 1 => "%d mensajes", +); +$a->strings["Message not available."] = "Mensaje no disponibile."; +$a->strings["Delete message"] = "Borrar mensaje"; +$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = "No hay comunicaciones seguras disponibles. Podrías responder desde la página de perfil del remitente. "; +$a->strings["Send Reply"] = "Enviar respuesta"; +$a->strings["Friends of %s"] = "Amigos de %s"; +$a->strings["No friends to display."] = "No hay amigos para mostrar."; +$a->strings["Theme settings updated."] = "Configuración de la apariencia actualizada."; +$a->strings["Site"] = "Sitio"; +$a->strings["Users"] = "Usuarios"; +$a->strings["Plugins"] = "Módulos"; +$a->strings["Themes"] = "Temas"; +$a->strings["DB updates"] = "Actualizaciones de la Base de Datos"; +$a->strings["Logs"] = "Registros"; +$a->strings["Admin"] = "Admin"; +$a->strings["Plugin Features"] = "Características del módulo"; +$a->strings["User registrations waiting for confirmation"] = "Registro de usuarios esperando la confirmación"; +$a->strings["Normal Account"] = "Cuenta normal"; +$a->strings["Soapbox Account"] = "Cuenta tribuna"; +$a->strings["Community/Celebrity Account"] = "Cuenta de Comunidad/Celebridad"; +$a->strings["Automatic Friend Account"] = "Cuenta de amistad automática"; +$a->strings["Blog Account"] = "Cuenta de blog"; +$a->strings["Private Forum"] = "Foro privado"; +$a->strings["Message queues"] = "Cola de mensajes"; +$a->strings["Administration"] = "Administración"; +$a->strings["Summary"] = "Resumen"; +$a->strings["Registered users"] = "Usuarios registrados"; +$a->strings["Pending registrations"] = "Pendientes de registro"; +$a->strings["Version"] = "Versión"; +$a->strings["Active plugins"] = "Módulos activos"; +$a->strings["Site settings updated."] = "Configuración de actualización."; +$a->strings["Closed"] = "Cerrado"; +$a->strings["Requires approval"] = "Requiere aprobación"; +$a->strings["Open"] = "Abierto"; +$a->strings["No SSL policy, links will track page SSL state"] = "No existe una política de SSL, los vínculos harán un seguimiento del estado de SSL en la página"; +$a->strings["Force all links to use SSL"] = "Forzar todos los enlaces a utilizar SSL"; +$a->strings["Self-signed certificate, use SSL for local links only (discouraged)"] = "Certificación personal, usa SSL solo para enlaces locales (no recomendado)"; +$a->strings["File upload"] = "Subida de archivo"; +$a->strings["Policies"] = "Políticas"; +$a->strings["Advanced"] = "Avanzado"; +$a->strings["Site name"] = "Nombre del sitio"; +$a->strings["Banner/Logo"] = "Imagen/Logotipo"; +$a->strings["System language"] = "Idioma"; +$a->strings["System theme"] = "Tema"; +$a->strings["Default system theme - may be over-ridden by user profiles -
    change theme settings"] = "Tema por defecto del sistema, los usuarios podrán elegir el suyo propio en su configuración cambiar configuración del tema"; +$a->strings["Mobile system theme"] = "Tema de sistema móvil"; +$a->strings["Theme for mobile devices"] = "Tema para dispositivos móviles"; +$a->strings["SSL link policy"] = "Política de enlaces SSL"; +$a->strings["Determines whether generated links should be forced to use SSL"] = "Determina si los enlaces generados deben ser forzados a utilizar SSL"; +$a->strings["Maximum image size"] = "Tamaño máximo de la imagen"; +$a->strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Tamaño máximo en bytes de las imágenes a subir. Por defecto es 0, que quiere decir que no hay límite."; +$a->strings["Maximum image length"] = "Largo máximo de imagen"; +$a->strings["Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits."] = "Longitud máxima en píxeles del lado más largo de las imágenes subidas. Por defecto es -1, que significa que no hay límites."; +$a->strings["JPEG image quality"] = "Calidad de imagen JPEG"; +$a->strings["Uploaded JPEGS will be saved at this quality setting [0-100]. Default is 100, which is full quality."] = "Los archivos JPEG subidos se guardarán con este ajuste de calidad [0-100]. Por defecto es 100, que es calidad máxima."; +$a->strings["Register policy"] = "Política de registros"; +$a->strings["Register text"] = "Términos"; +$a->strings["Will be displayed prominently on the registration page."] = "Se mostrará en un lugar destacado en la página de registro."; +$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 sondeos a sitios externos para cuentas abandonadas. Introduce 0 para ningún límite temporal."; +$a->strings["Allowed friend domains"] = "Dominios amigos permitidos"; +$a->strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "Lista separada por comas de los dominios que están autorizados para establecer conexiones con este sitio. Se aceptan comodines. Dejar en blanco para permitir cualquier dominio"; +$a->strings["Allowed email domains"] = "Dominios de correo permitidos"; +$a->strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "Lista separada por comas de los dominios que están autorizados en las direcciones de correo para registrarse en este sitio. Se aceptan comodines. Dejar en blanco para permitir cualquier dominio"; +$a->strings["Block public"] = "Bloqueo público"; +$a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = "Marca para bloquear el acceso público a todas las páginas personales, aún siendo públicas, hasta que no hayas iniciado tu sesión."; +$a->strings["Force publish"] = "Forzar publicación"; +$a->strings["Check to force all profiles on this site to be listed in the site directory."] = "Marca para forzar que todos los perfiles de este sitio sean listados en el directorio del sitio."; +$a->strings["Global directory update URL"] = "Dirección de actualización del directorio global"; +$a->strings["URL to update the global directory. If this is not set, the global directory is completely unavailable to the application."] = "Dirección para actualizar el directorio global. Si no se establece ningún valor el directorio global será inaccesible para la aplicación."; +$a->strings["Allow threaded items"] = "Permitir elementos en hilo"; +$a->strings["Allow infinite level threading for items on this site."] = "Permitir infinitos niveles de hilo para los elementos de este sitio."; +$a->strings["Private posts by default for new users"] = "Publicaciones privadas por defecto para usuarios nuevos"; +$a->strings["Set default post permissions for all new members to the default privacy group rather than public."] = "Ajusta los permisos de publicación por defecto a los miembros nuevos al grupo privado por defecto en vez del público."; +$a->strings["Block multiple registrations"] = "Bloquear registros multiples"; +$a->strings["Disallow users to register additional accounts for use as pages."] = "Impedir que los usuarios registren cuentas adicionales para su uso como páginas."; +$a->strings["OpenID support"] = "Soporte OpenID"; +$a->strings["OpenID support for registration and logins."] = "Soporte OpenID para registros y accesos."; +$a->strings["Fullname check"] = "Comprobar Nombre completo"; +$a->strings["Force users to register with a space between firstname and lastname in Full name, as an antispam measure"] = "Fuerza a los usuarios a registrarse con un espacio entre su nombre y su apellido en el campo Nombre completo como medida anti-spam"; +$a->strings["UTF-8 Regular expressions"] = "Expresiones regulares UTF-8"; +$a->strings["Use PHP UTF8 regular expressions"] = "Usar expresiones regulares de UTF8 en PHP"; +$a->strings["Show Community Page"] = "Ver página de la Comunidad"; +$a->strings["Display a Community page showing all recent public postings on this site."] = "Mostrar una página de Comunidad que resuma todas las publicaciones públicas recientes de este sitio."; +$a->strings["Enable OStatus support"] = "Permitir soporte 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."] = "Provee una compatibilidad con OStatus (identi.ca, status.net, etc.) Todas las comunicaciones mediante OStatus son públicas, por lo que se mostrarán avisos sobre la privacidad con frecuencia."; +$a->strings["Enable Diaspora support"] = "Habilitar el soporte para Diaspora*"; +$a->strings["Provide built-in Diaspora network compatibility."] = "Provee una compatibilidad con la red de Diaspora."; +$a->strings["Only allow Friendica contacts"] = "Permitir solo contactos de Friendica"; +$a->strings["All contacts must use Friendica protocols. All other built-in communication protocols disabled."] = "Todos los contactos deben usar protocolos de Friendica. El resto de protocolos serán desactivados."; +$a->strings["Verify SSL"] = "Verificar 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."] = "Si quieres puedes activar la comprobación estricta de certificados. Esto significa que serás incapaz de conectar con ningún sitio que use certificados SSL autofirmados."; +$a->strings["Proxy user"] = "Usuario proxy"; +$a->strings["Proxy URL"] = "Dirección proxy"; +$a->strings["Network timeout"] = "Tiempo de espera de red"; +$a->strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "Valor en segundos. Usar 0 para dejarlo sin límites (no se recomienda)."; +$a->strings["Delivery interval"] = "Intervalo de actualización"; +$a->strings["Delay background delivery processes by this many seconds to reduce system load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 for large dedicated servers."] = "Retrasar la entrega de procesos en segundo plano por esta cantidad de segundos para reducir la carga del sistema. Recomendamos: 4-5 para los servidores compartidos, 2-3 para servidores privados virtuales, 0-1 para los grandes servidores dedicados."; +$a->strings["Poll interval"] = "Intervalo de sondeo"; +$a->strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "Retrasar los procesos en segundo plano de sondeo en esta cantidad de segundos para reducir la carga del sistema. Si es 0, se usará el intervalo de entrega."; +$a->strings["Maximum Load Average"] = "Promedio de carga máxima"; +$a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Carga máxima del sistema antes de que la entrega y los procesos de sondeo sean retrasados - por defecto 50."; +$a->strings["Update has been marked successful"] = "La actualización se ha completado con éxito"; +$a->strings["Executing %s failed. Check system logs."] = "%s ha fallado, comprueba los registros."; +$a->strings["Update %s was successfully applied."] = "Actualización %s aplicada con éxito."; +$a->strings["Update %s did not return a status. Unknown if it succeeded."] = "La actualización %s no ha informado, se desconoce el estado."; +$a->strings["Update function %s could not be found."] = "No se puede encontrar la función de actualización %s."; +$a->strings["No failed updates."] = "Actualizaciones sin fallos."; +$a->strings["Failed Updates"] = "Actualizaciones fallidas"; +$a->strings["This does not include updates prior to 1139, which did not return a status."] = "No se incluyen las anteriores a la 1139, que no indicaban su estado."; +$a->strings["Mark success (if update was manually applied)"] = "Marcar como correcta (si actualizaste manualmente)"; +$a->strings["Attempt to execute this update step automatically"] = "Intentando ejecutar este paso automáticamente"; +$a->strings["%s user blocked/unblocked"] = array( + 0 => "%s usuario bloqueado/desbloqueado", + 1 => "%s usuarios bloqueados/desbloqueados", +); +$a->strings["%s user deleted"] = array( + 0 => "%s usuario eliminado", + 1 => "%s usuarios eliminados", +); +$a->strings["User '%s' deleted"] = "Usuario '%s' eliminado"; +$a->strings["User '%s' unblocked"] = "Usuario '%s' desbloqueado"; +$a->strings["User '%s' blocked"] = "Usuario '%s' bloqueado'"; +$a->strings["select all"] = "seleccionar todo"; +$a->strings["User registrations waiting for confirm"] = "Registro de usuarios esperando confirmación"; +$a->strings["Request date"] = "Solicitud de fecha"; +$a->strings["Email"] = "Correo electrónico"; +$a->strings["No registrations."] = "Sin registros."; +$a->strings["Deny"] = "Denegado"; +$a->strings["Site admin"] = ""; +$a->strings["Register date"] = "Fecha de registro"; +$a->strings["Last login"] = "Último acceso"; +$a->strings["Last item"] = "Último elemento"; +$a->strings["Account"] = "Cuenta"; +$a->strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "¡Los usuarios seleccionados serán eliminados!\\n\\n¡Todo lo que hayan publicado en este sitio se borrará para siempre!\\n\\n¿Estás seguro?"; +$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?"] = "¡El usuario {0} será eliminado!\\n\\n¡Todo lo que haya publicado en este sitio se borrará para siempre!\\n\\n¿Estás seguro?"; +$a->strings["Plugin %s disabled."] = "Módulo %s deshabilitado."; +$a->strings["Plugin %s enabled."] = "Módulo %s habilitado."; +$a->strings["Disable"] = "Desactivado"; +$a->strings["Enable"] = "Activado"; +$a->strings["Toggle"] = "Activar"; +$a->strings["Author: "] = "Autor:"; +$a->strings["Maintainer: "] = "Mantenedor: "; +$a->strings["No themes found."] = "No se encontraron temas."; +$a->strings["Screenshot"] = "Captura de pantalla"; +$a->strings["[Experimental]"] = "[Experimental]"; +$a->strings["[Unsupported]"] = "[Sin soporte]"; +$a->strings["Log settings updated."] = "Configuración de registro actualizada."; +$a->strings["Clear"] = "Limpiar"; +$a->strings["Debugging"] = "Depuración"; +$a->strings["Log file"] = "Archivo de registro"; +$a->strings["Must be writable by web server. Relative to your Friendica top-level directory."] = "Debes tener permiso de escritura en el servidor. Relacionado con tu directorio de inicio de Friendica."; +$a->strings["Log level"] = "Nivel de registro"; +$a->strings["Close"] = "Cerrado"; +$a->strings["FTP Host"] = "Hospedaje FTP"; +$a->strings["FTP Path"] = "Ruta FTP"; +$a->strings["FTP User"] = "Usuario FTP"; +$a->strings["FTP Password"] = "Contraseña FTP"; +$a->strings["Requested profile is not available."] = "El perfil solicitado no está disponible."; +$a->strings["Access to this profile has been restricted."] = "El acceso a este perfil ha sido restringido."; +$a->strings["Tips for New Members"] = "Consejos para nuevos miembros"; +$a->strings["{0} wants to be your friend"] = "{0} quiere ser tu amigo"; +$a->strings["{0} sent you a message"] = "{0} te ha enviado un mensaje"; +$a->strings["{0} requested registration"] = "{0} solicitudes de registro"; +$a->strings["{0} commented %s's post"] = "{0} comentó la publicación de %s"; +$a->strings["{0} liked %s's post"] = "A {0} le ha gustado la publicación de %s"; +$a->strings["{0} disliked %s's post"] = "A {0} no le ha gustado la publicación de %s"; +$a->strings["{0} is now friends with %s"] = "{0} ahora es amigo de %s"; +$a->strings["{0} posted"] = "{0} publicado"; +$a->strings["{0} tagged %s's post with #%s"] = "{0} etiquetó la publicación de %s como #%s"; +$a->strings["{0} mentioned you in a post"] = "{0} te mencionó en una publicación"; +$a->strings["Contacts who are not members of a group"] = "Contactos sin grupo"; +$a->strings["OpenID protocol error. No ID returned."] = "Error de protocolo OpenID. ID no devuelta."; +$a->strings["Account not found and OpenID registration is not permitted on this site."] = "Cuenta no encontrada y el registro OpenID no está permitido en ese sitio."; +$a->strings["Login failed."] = "Accesso fallido."; +$a->strings["Contact added"] = "Contacto añadido"; +$a->strings["Common Friends"] = "Amigos comunes"; +$a->strings["No contacts in common."] = "Sin contactos en común."; +$a->strings["link"] = "enlace"; +$a->strings["Item has been removed."] = "El elemento ha sido eliminado."; +$a->strings["Applications"] = "Aplicaciones"; +$a->strings["No installed applications."] = "Sin aplicaciones"; +$a->strings["Search"] = "Buscar"; $a->strings["Profile not found."] = "Perfil no encontrado."; $a->strings["Profile Name is required."] = "Se necesita un nombre de perfil."; +$a->strings["Marital Status"] = "Estado civil"; +$a->strings["Romantic Partner"] = "Pareja sentimental"; +$a->strings["Likes"] = "Me gusta"; +$a->strings["Dislikes"] = "No me gusta"; +$a->strings["Work/Employment"] = "Trabajo/estudios"; +$a->strings["Religion"] = "Religión"; +$a->strings["Political Views"] = "Preferencias políticas"; +$a->strings["Gender"] = "Género"; +$a->strings["Sexual Preference"] = "Orientación sexual"; +$a->strings["Homepage"] = "Página de inicio"; +$a->strings["Interests"] = "Intereses"; +$a->strings["Address"] = "Dirección"; +$a->strings["Location"] = "Ubicación"; $a->strings["Profile updated."] = "Perfil actualizado."; +$a->strings[" and "] = " y "; +$a->strings["public profile"] = "perfil público"; +$a->strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s cambió su %2\$s a “%3\$s”"; +$a->strings[" - Visit %1\$s's %2\$s"] = " - Visita %1\$s's %2\$s"; +$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s tiene una actualización %2\$s, cambiando %3\$s."; $a->strings["Profile deleted."] = "Perfil eliminado."; $a->strings["Profile-"] = "Perfil-"; $a->strings["New profile created."] = "Nuevo perfil creado."; $a->strings["Profile unavailable to clone."] = "Imposible duplicar el perfil."; $a->strings["Hide your contact/friend list from viewers of this profile?"] = "¿Ocultar tu lista de contactos/amigos en este perfil?"; -$a->strings["Yes"] = "Sí"; -$a->strings["No"] = "No"; $a->strings["Edit Profile Details"] = "Editar detalles de tu perfil"; $a->strings["View this profile"] = "Ver este perfil"; $a->strings["Create a new profile using these settings"] = "¿Crear un nuevo perfil con esta configuración?"; @@ -124,15 +962,19 @@ $a->strings["Region/State:"] = "Región/Estado:"; $a->strings[" Marital Status:"] = " Estado civil:"; $a->strings["Who: (if applicable)"] = "¿Quién? (si es aplicable)"; $a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Ejemplos: cathy123, Cathy Williams, cathy@example.com"; +$a->strings["Since [date]:"] = "Desde [fecha]:"; $a->strings["Sexual Preference:"] = "Preferencia sexual:"; -$a->strings["Homepage URL:"] = "Dirección de tu página web:"; +$a->strings["Homepage URL:"] = "Dirección de tu página:"; +$a->strings["Hometown:"] = "Ciudad de origen:"; $a->strings["Political Views:"] = "Ideas políticas:"; -$a->strings["Religious Views:"] = "Creencias religiosas"; +$a->strings["Religious Views:"] = "Creencias religiosas:"; $a->strings["Public Keywords:"] = "Palabras clave públicas:"; $a->strings["Private Keywords:"] = "Palabras clave privadas:"; +$a->strings["Likes:"] = "Me gusta:"; +$a->strings["Dislikes:"] = "No me gusta:"; $a->strings["Example: fishing photography software"] = "Ejemplo: pesca fotografía software"; -$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(Utilizado para sugerir amigos potenciales, otros pueden verlo)"; -$a->strings["(Used for searching profiles, never shown to others)"] = "(Utilizado para buscar perfiles, nunca se muestra a otros)"; +$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(Utilizadas para sugerir amigos potenciales, otros pueden verlo)"; +$a->strings["(Used for searching profiles, never shown to others)"] = "(Utilizadas para buscar perfiles, nunca se muestra a otros)"; $a->strings["Tell us about yourself..."] = "Háblanos sobre ti..."; $a->strings["Hobbies/Interests"] = "Aficiones/Intereses"; $a->strings["Contact information and Social Networks"] = "Informacioń de contacto y Redes sociales"; @@ -143,767 +985,147 @@ $a->strings["Film/dance/culture/entertainment"] = "Películas/baile/cultura/entr $a->strings["Love/romance"] = "Amor/Romance"; $a->strings["Work/employment"] = "Trabajo/ocupación"; $a->strings["School/education"] = "Escuela/estudios"; -$a->strings["This is your public profile.
    It may be visible to anybody using the internet."] = "Éste es tu perfil público.
    Puede ser visto por cualquiera usando internet."; +$a->strings["This is your public profile.
    It may be visible to anybody using the internet."] = "Éste es tu perfil público.
    Puede ser visto por cualquier usuario de internet."; $a->strings["Age: "] = "Edad: "; $a->strings["Edit/Manage Profiles"] = "Editar/Administrar perfiles"; -$a->strings["Item not found."] = "Elemento no encontrado."; -$a->strings["everybody"] = "todos"; -$a->strings["Missing some important data!"] = "¡Faltan algunos datos importantes!"; -$a->strings["Update"] = "Actualizar"; -$a->strings["Failed to connect with email account using the settings provided."] = "Error al conectar con la cuenta de correo mediante la configuración suministrada."; -$a->strings["Email settings updated."] = "Configuración de correo electrónico actualizada."; -$a->strings["Passwords do not match. Password unchanged."] = "Las contraseñas no coinciden. La contraseña no ha sido modificada."; -$a->strings["Empty passwords are not allowed. Password unchanged."] = "No se permiten contraseñas vacías. La contraseña no ha sido modificada."; -$a->strings["Password changed."] = "Contraseña modificada."; -$a->strings["Password update failed. Please try again."] = "La actualización de la contraseña ha fallado. Por favor, prueba otra vez."; -$a->strings[" Please use a shorter name."] = " Usa un nombre más corto."; -$a->strings[" Name too short."] = " Nombre demasiado corto."; -$a->strings[" Not valid email."] = " Correo no válido."; -$a->strings[" Cannot change to that email."] = " No se puede usar ese correo."; -$a->strings["Settings updated."] = "Configuración actualizada."; -$a->strings["Account settings"] = "Configuración de tu cuenta"; -$a->strings["Connector settings"] = "Configuración del conector"; -$a->strings["Plugin settings"] = "Configuración de los módulos"; -$a->strings["Connections"] = "Conexiones"; -$a->strings["Export personal data"] = "Exportación de datos personales"; -$a->strings["Add application"] = "Agregar aplicación"; -$a->strings["Cancel"] = "Cancelar"; -$a->strings["Name"] = "Nombre"; -$a->strings["Consumer Key"] = "Clave consumer"; -$a->strings["Consumer Secret"] = "Secreto consumer"; -$a->strings["Redirect"] = "Redirigir"; -$a->strings["Icon url"] = "Dirección URL del ícono"; -$a->strings["You can't edit this application."] = "No puedes editar esta aplicación."; -$a->strings["Connected Apps"] = "Aplicaciones conectadas"; -$a->strings["Edit"] = "Editar"; -$a->strings["Delete"] = "Eliminar"; -$a->strings["Client key starts with"] = "Clave de cliente comienza con"; -$a->strings["No name"] = "Sin nombre"; -$a->strings["Remove authorization"] = "Suprimir la autorización"; -$a->strings["No Plugin settings configured"] = "Ningún módulo ha sido configurado"; -$a->strings["Plugin Settings"] = "Configuración de los módulos"; -$a->strings["Built-in support for %s connectivity is %s"] = "El soporte integrado para %s conexión es %s"; -$a->strings["Diaspora"] = "Diaspora"; -$a->strings["enabled"] = "habilitado"; -$a->strings["disabled"] = "deshabilitado"; -$a->strings["StatusNet"] = "StatusNet"; -$a->strings["Connector Settings"] = "Configuración del conector"; -$a->strings["Email/Mailbox Setup"] = "Configuración del correo/buzón"; -$a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "Si quieres comunicarte con tus contactos de tu correo usando este servicio (opcional), por favor, especifica cómo conectar con tu buzón."; -$a->strings["Last successful email check:"] = "Última comprobación del correo con éxito:"; -$a->strings["Email access is disabled on this site."] = "El acceso por correo está deshabilitado en esta web."; -$a->strings["IMAP server name:"] = "Nombre del servidor IMAP:"; -$a->strings["IMAP port:"] = "Puerto IMAP:"; -$a->strings["Security:"] = "Seguridad:"; -$a->strings["None"] = "Ninguna"; -$a->strings["Email login name:"] = "Nombre de usuario:"; -$a->strings["Email password:"] = "Contraseña:"; -$a->strings["Reply-to address:"] = "Dirección de respuesta:"; -$a->strings["Send public posts to all email contacts:"] = "Enviar publicaciones públicas a todos los contactos de correo:"; -$a->strings["Normal Account"] = "Cuenta normal"; -$a->strings["This account is a normal personal profile"] = "Esta cuenta es el perfil de una persona normal"; -$a->strings["Soapbox Account"] = "Cuenta tribuna"; -$a->strings["Automatically approve all connection/friend requests as read-only fans"] = "Aceptar automáticamente todas las peticiones de conexión/amistad como seguidores de solo-lectura"; -$a->strings["Community/Celebrity Account"] = "Cuenta de Sociedad/Celebridad"; -$a->strings["Automatically approve all connection/friend requests as read-write fans"] = "Aceptar automáticamente todas las peticiones de conexión/amistad como seguidores de lectura-escritura"; -$a->strings["Automatic Friend Account"] = "Cuenta de amistad automática"; -$a->strings["Automatically approve all connection/friend requests as friends"] = "Aceptar automáticamente todas las solicitudes de conexión/amistad como amigos"; -$a->strings["OpenID:"] = "OpenID"; -$a->strings["(Optional) Allow this OpenID to login to this account."] = "(Opcional) Permitir a este OpenID acceder a esta cuenta."; -$a->strings["Publish your default profile in your local site directory?"] = "¿Quieres publicar tu perfil predeterminado en el directorio del sitio local?"; -$a->strings["Publish your default profile in the global social directory?"] = "¿Quieres publicar tu perfil predeterminado en el directorio social de forma global?"; -$a->strings["Hide your contact/friend list from viewers of your default profile?"] = "¿Quieres ocultar tu lista de contactos/amigos en la vista de tu perfil predeterminado?"; -$a->strings["Hide profile details and all your messages from unknown viewers?"] = "¿Quieres ocultar los detalles de tu perfil y todos tus mensajes a los desconocidos?"; -$a->strings["Allow friends to post to your profile page?"] = "¿Permitir a los amigos publicar en su página de perfil?"; -$a->strings["Allow friends to tag your posts?"] = "¿Permitir a los amigos etiquetar tus publicaciones?"; -$a->strings["Profile is not published."] = "El perfil no está publicado."; -$a->strings["Your Identity Address is"] = "Tu dirección personal es"; -$a->strings["Account Settings"] = "Configuración de la cuenta"; -$a->strings["Password Settings"] = "Configuración de la contraseña"; -$a->strings["New Password:"] = "Contraseña nueva:"; -$a->strings["Confirm:"] = "Confirmar:"; -$a->strings["Leave password fields blank unless changing"] = "Deja la contraseña en blanco si no quieres cambiarla"; -$a->strings["Basic Settings"] = "Configuración básica"; -$a->strings["Full Name:"] = "Nombre completo:"; -$a->strings["Email Address:"] = "Dirección de correo electrónico:"; -$a->strings["Your Timezone:"] = "Zona horaria:"; -$a->strings["Default Post Location:"] = "Localización predeterminada:"; -$a->strings["Use Browser Location:"] = "Usar localización del navegador:"; -$a->strings["Display Theme:"] = "Utilizar tema:"; -$a->strings["Security and Privacy Settings"] = "Configuración de seguridad y privacidad"; -$a->strings["Maximum Friend Requests/Day:"] = "Máximo número de peticiones de amistad por día:"; -$a->strings["(to prevent spam abuse)"] = "(para prevenir el abuso de spam)"; -$a->strings["Default Post Permissions"] = "Permisos por defecto para las publicaciones"; -$a->strings["(click to open/close)"] = "(pulsa para abrir/cerrar)"; -$a->strings["Automatically expire posts after days:"] = "Las publicaciones expiran automáticamente después de (días):"; -$a->strings["If empty, posts will not expire. Expired posts will be deleted"] = "Si lo dejas vacío no expirarán nunca. Las publicaciones que hayan expirado se borrarán"; -$a->strings["Notification Settings"] = "Configuración de notificaciones"; -$a->strings["Send a notification email when:"] = "Enviar notificación por correo cuando:"; -$a->strings["You receive an introduction"] = "Reciba una presentación"; -$a->strings["Your introductions are confirmed"] = "Mi presentación sea confirmada"; -$a->strings["Someone writes on your profile wall"] = "Alguien escriba en el muro de mi perfil"; -$a->strings["Someone writes a followup comment"] = "Algien escriba en un comentario que sigo "; -$a->strings["You receive a private message"] = "Reciba un mensaje privado"; -$a->strings["Advanced Page Settings"] = "Configuración avanzada"; -$a->strings["Saved Searches"] = "Búsquedas guardadas"; -$a->strings["Remove term"] = "Eliminar término"; -$a->strings["Public access denied."] = "Acceso público denegado."; -$a->strings["Search This Site"] = "Buscar en este sitio"; -$a->strings["No results."] = "Sin resultados."; -$a->strings["Photo Albums"] = "Álbum de Fotos"; -$a->strings["Contact Photos"] = "Foto del contacto"; -$a->strings["Contact information unavailable"] = "Información del contacto no disponible"; -$a->strings["Album not found."] = "Álbum no encontrado."; -$a->strings["Delete Album"] = "Eliminar álbum"; -$a->strings["Delete Photo"] = "Eliminar foto"; -$a->strings["was tagged in a"] = "ha sido etiquetado en"; -$a->strings["photo"] = "foto"; -$a->strings["by"] = "por"; -$a->strings["Image exceeds size limit of "] = "La imagen supera el limite de tamaño de "; -$a->strings["Image file is empty."] = "El archivo de imagen está vacío."; -$a->strings["No photos selected"] = "Ninguna foto seleccionada"; -$a->strings["Access to this item is restricted."] = "El acceso a este elemento está restringido."; -$a->strings["Upload Photos"] = "Subir fotos"; -$a->strings["New album name: "] = "Nombre del nuevo álbum: "; -$a->strings["or existing album name: "] = "o nombre de un álbum existente: "; -$a->strings["Do not show a status post for this upload"] = "No mostrar un mensaje de estado de este envío"; -$a->strings["Permissions"] = "Permisos"; -$a->strings["Edit Album"] = "Modifica álbum"; -$a->strings["View Photo"] = "Ver foto"; -$a->strings["Permission denied. Access to this item may be restricted."] = "Permiso denegado. El acceso a este elemento puede estar restringido."; -$a->strings["Photo not available"] = "Foto no disponible"; -$a->strings["View photo"] = "Ver foto"; -$a->strings["Edit photo"] = "Modificar foto"; -$a->strings["Use as profile photo"] = "Usar como foto del perfil"; -$a->strings["Private Message"] = "Mensaje privado"; -$a->strings["View Full Size"] = "Ver a tamaño completo"; -$a->strings["Tags: "] = "Etiquetas: "; -$a->strings["[Remove any tag]"] = "[Borrar todas las etiquetas]"; -$a->strings["New album name"] = "Nuevo nombre del álbum"; -$a->strings["Caption"] = "Título"; -$a->strings["Add a Tag"] = "Añadir una etiqueta"; -$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Ejemplo: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"; -$a->strings["I like this (toggle)"] = "Me gusta esto (cambiar)"; -$a->strings["I don't like this (toggle)"] = "No me gusta esto (cambiar)"; -$a->strings["Share"] = "Compartir"; -$a->strings["Please wait"] = "Por favor, espere"; -$a->strings["This is you"] = "Eres tú"; -$a->strings["Recent Photos"] = "Fotos recientes"; -$a->strings["Upload New Photos"] = "Subir nuevas fotos"; -$a->strings["View Album"] = "Ver álbum"; -$a->strings["Welcome to Friendika"] = "Bienvenido a Friendika"; -$a->strings["New Member Checklist"] = "Listado de nuevos miembros"; -$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."] = "Nos gustaría ofrecerte algunos trucos y consejos para ayudar a que tu experiencia sea placentera. Pulsa en cualquier elemento para visitar la página adecuada."; -$a->strings["On your Settings page - change your initial password. Also make a note of your Identity Address. This will be useful in making friends."] = "En la página de Configuración - cambia la contraseña inicial. Toma nota de tu dirección personal. Te será útil para hacer amigos."; -$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."] = "Revisa las demás configuraciones, especialmente la configuración de privacidad. Un listado de directorio no publicado es como tener un número de teléfono sin publicar. Normalmente querrás publicar tu listado, a menos que tus amigos y amigos potenciales sepan con ponerse en contacto contigo."; -$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."] = "Sube una foto para tu perfil si no lo has hecho aún. Los estudios han demostrado que la gente que usa fotos suyas reales tienen diez veces más éxito a la hora de entablar amistad que las que no."; -$a->strings["Authorise the Facebook Connector if you currently have a Facebook account and we will (optionally) import all your Facebook friends and conversations."] = "Autoriza la conexión con Facebook si ya tienes una cuenta en Facebook y nosotros (opcionalmente) importaremos tus amistades y conversaciones desde Facebook."; -$a->strings["Enter your email access information on your Settings page if you wish to import and interact with friends or mailing lists from your email INBOX"] = "Introduce los datos sobre tu dirección de correo en la página de configuración si quieres importar y mantener un contacto con tus amistades o listas de correos desde tu buzón"; -$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."] = "Edita tu perfil predeterminado como quieras. Revisa la configuración para ocultar tu lista de amigos o tu perfil a los visitantes desconocidos."; -$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."] = "Define en tu perfil público algunas palabras que describan tus intereses. Así podremos buscar otras personas con los mismos gustos y sugerirte posibles amigos."; -$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 Connect dialog."] = "La página de tus Contactos es tu puerta de entrada para manejar tus relaciones de amistad y conectarte con amigos de otras redes sociales. Introduce la dirección de su perfil o dirección web en el campo Conectar."; -$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."] = "El Directorio te permite encontrar otras personas en esta red o en cualquier otro sitio federado. Busca algún enlace de Conectar o Seguir en su perfil. Proporciona tu direción personal si es necesario."; -$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."] = "Una vez que tengas algunos amigos, puedes organizarlos en grupos de conversación privados mediante la barra en tu página de Contactos y luego puedes interactuar con cada grupo por privado desde tu página de Red."; -$a->strings["Our help pages may be consulted for detail on other program features and resources."] = "Puedes consultar nuestra página de Ayuda para más ayuda, información y recursos."; -$a->strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ g:i A"; -$a->strings["Time Conversion"] = "Conversión horária"; -$a->strings["Friendika provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica ofrece este servicio para compartir eventos con otras redes y amigos en zonas horarias desconocidas."; -$a->strings["UTC time: %s"] = "Tiempo UTC: %s"; -$a->strings["Current timezone: %s"] = "Zona horaria actual: %s"; -$a->strings["Converted localtime: %s"] = "Zona horaria local convertida: %s"; -$a->strings["Please select your timezone:"] = "Por favor, seleccione su zona horaria:"; -$a->strings["Item has been removed."] = "El elemento ha sido eliminado."; -$a->strings["Item not found"] = "Elemento no encontrado"; -$a->strings["Edit post"] = "Editar publicación"; -$a->strings["Post to Email"] = "Publicar mediante correo electrónico"; -$a->strings["Upload photo"] = "Subir foto"; -$a->strings["Attach file"] = "Adjuntar archivo"; -$a->strings["Insert web link"] = "Insertar enlace"; -$a->strings["Insert YouTube video"] = "Insertar video de YouTube"; -$a->strings["Insert Vorbis [.ogg] video"] = "Insertar video Vorbis [.ogg]"; -$a->strings["Insert Vorbis [.ogg] audio"] = "Insertar audio Vorbis [.ogg]"; -$a->strings["Set your location"] = "Configura tu localización"; -$a->strings["Clear browser location"] = "Borrar la localización del navegador"; -$a->strings["Permission settings"] = "Configuración de permisos"; -$a->strings["CC: email addresses"] = "CC: dirección de correo electrónico"; -$a->strings["Public post"] = "Post público"; -$a->strings["Example: bob@example.com, mary@example.com"] = "Ejemplo: juan@ejemplo.com, sofia@ejemplo.com"; -$a->strings["%s : Not a valid email address."] = "%s : No es una dirección válida de correo."; -$a->strings["Please join my network on %s"] = "Por favor únete a mi red social en %s"; +$a->strings["Change profile photo"] = "Cambiar foto del perfil"; +$a->strings["Create New Profile"] = "Crear nuevo perfil"; +$a->strings["Profile Image"] = "Imagen del Perfil"; +$a->strings["visible to everybody"] = "Visible para todos"; +$a->strings["Edit visibility"] = "Editar visibilidad"; +$a->strings["Save to Folder:"] = "Guardar en directorio:"; +$a->strings["- select -"] = "- seleccionar -"; +$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s ha etiquetado el %3\$s de %2\$s con %4\$s"; +$a->strings["No potential page delegates located."] = "No se han localizado delegados potenciales de la página."; +$a->strings["Delegate Page Management"] = "Delegar la administración de la página"; +$a->strings["Delegates are able to manage all aspects of this account/page except for basic account settings. Please do not delegate your personal account to anybody that you do not trust completely."] = "Los delegados tienen la capacidad de gestionar todos los aspectos de esta cuenta/página, excepto los ajustes básicos de la cuenta. Por favor, no delegues tu cuenta personal a nadie en quien no confíes completamente."; +$a->strings["Existing Page Managers"] = "Administradores actuales de la página"; +$a->strings["Existing Page Delegates"] = "Delegados actuales de la página"; +$a->strings["Potential Delegates"] = "Delegados potenciales"; +$a->strings["Add"] = "Añadir"; +$a->strings["No entries."] = "Sin entradas."; +$a->strings["Source (bbcode) text:"] = "Texto fuente (bbcode):"; +$a->strings["Source (Diaspora) text to convert to BBcode:"] = "Fuente (Diaspora) para pasar a BBcode:"; +$a->strings["Source input: "] = "Entrada: "; +$a->strings["bb2html: "] = "bb2html: "; +$a->strings["bb2html2bb: "] = "bb2html2bb: "; +$a->strings["bb2md: "] = "bb2md: "; +$a->strings["bb2md2html: "] = "bb2md2html: "; +$a->strings["bb2dia2bb: "] = "bb2dia2bb: "; +$a->strings["bb2md2html2bb: "] = "bb2md2html2bb: "; +$a->strings["Source input (Diaspora format): "] = "Fuente (formato Diaspora): "; +$a->strings["diaspora2bb: "] = "diaspora2bb: "; +$a->strings["Friend Suggestions"] = "Sugerencias de amigos"; +$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "No hay sugerencias disponibles. Si el sitio web es nuevo inténtalo de nuevo dentro de 24 horas."; +$a->strings["Ignore/Hide"] = "Ignorar/Ocultar"; +$a->strings["Global Directory"] = "Directorio global"; +$a->strings["Find on this site"] = "Buscar en este sitio"; +$a->strings["Site Directory"] = "Directorio del sitio"; +$a->strings["Gender: "] = "Género:"; +$a->strings["Gender:"] = "Género:"; +$a->strings["Status:"] = "Estado:"; +$a->strings["Homepage:"] = "Página de inicio:"; +$a->strings["About:"] = "Acerca de:"; +$a->strings["No entries (some entries may be hidden)."] = "Sin entradas (algunas pueden que estén ocultas)."; +$a->strings["%s : Not a valid email address."] = "%s : No es una dirección de correo válida."; +$a->strings["Please join us on Friendica"] = "Únete a nosotros en Friendica"; $a->strings["%s : Message delivery failed."] = "%s : Ha fallado la entrega del mensaje."; $a->strings["%d message sent."] = array( 0 => "%d mensaje enviado.", 1 => "%d mensajes enviados.", ); $a->strings["You have no more invitations available"] = "No tienes más invitaciones disponibles"; +$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."] = "Visita %s para ver una lista de servidores públicos donde puedes darte de alta. Los miembros de otros servidores de Friendica pueden conectarse entre ellos, así como con miembros de otras redes sociales diferentes."; +$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "Para aceptar la invitación visita y regístrate en %s o en cualquier otro servidor público de Friendica."; +$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."] = "Los servidores de Friendica están interconectados para crear una enorme red social centrada en la privacidad y controlada por sus miembros. También se puede conectar con muchas redes sociales tradicionales. Mira en %s para poder ver un listado de servidores alternativos de Friendica donde puedes darte de alta."; +$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Discúlpanos. Este sistema no está configurado actualmente para conectar con otros servidores públicos o invitar nuevos miembros."; $a->strings["Send invitations"] = "Enviar invitaciones"; $a->strings["Enter email addresses, one per line:"] = "Introduce las direcciones de correo, una por línea:"; -$a->strings["Your message:"] = "Tu mensaje:"; -$a->strings["Please join my social network on %s"] = "Únete a mi red social en % s"; -$a->strings["To accept this invitation, please visit:"] = "Para aceptar esta invitación, por favor visita:"; +$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "Estás cordialmente invitado a unirte a mi y a otros amigos en Friendica, creemos juntos una red social mejor."; $a->strings["You will need to supply this invitation code: \$invite_code"] = "Tienes que proporcionar el siguiente código: \$invite_code"; $a->strings["Once you have registered, please connect with me via my profile page at:"] = "Una vez registrado, por favor contacta conmigo a través de mi página de perfil en:"; -$a->strings["{0} wants to be your friend"] = "{0} quiere ser tu amigo"; -$a->strings["{0} sent you a message"] = "{0} le ha enviado un mensaje"; -$a->strings["{0} requested registration"] = "{0} solicitudes de registro"; -$a->strings["{0} commented %s's post"] = "{0} comentó el post de %s"; -$a->strings["{0} liked %s's post"] = "A {0} le ha gustado el post de %s"; -$a->strings["{0} disliked %s's post"] = "A {0} no le ha gustado el post de %s"; -$a->strings["{0} is now friends with %s"] = "{0} ahora es amigo de %s"; -$a->strings["{0} posted"] = "{0} publicado"; -$a->strings["{0} tagged %s's post with #%s"] = "{0} etiquetó la publicación de %s como #%s"; -$a->strings["Could not access contact record."] = "No se pudo acceder a los datos del contacto."; -$a->strings["Could not locate selected profile."] = "No se pudo encontrar el perfil seleccionado."; -$a->strings["Contact updated."] = "Contacto actualizado."; -$a->strings["Failed to update contact record."] = "Error al actualizar el contacto."; -$a->strings["Contact has been blocked"] = "El contacto ha sido bloqueado"; -$a->strings["Contact has been unblocked"] = "El contacto ha sido desbloqueado"; -$a->strings["Contact has been ignored"] = "El contacto ha sido ignorado"; -$a->strings["Contact has been unignored"] = "El contacto ya no está ignorado"; -$a->strings["stopped following"] = "dejó de seguir"; -$a->strings["Contact has been removed."] = "El contacto ha sido eliminado"; -$a->strings["You are mutual friends with %s"] = "Ahora tiene una amistad mutua con %s"; -$a->strings["You are sharing with %s"] = "Usted está compartiendo con %s"; -$a->strings["%s is sharing with you"] = "%s está compartiendo con usted"; -$a->strings["Private communications are not available for this contact."] = "Las comunicaciones privadas no está disponibles para este contacto."; -$a->strings["Never"] = "Nunca"; -$a->strings["(Update was successful)"] = "(La actualización se ha completado)"; -$a->strings["(Update was not successful)"] = "(La actualización no se ha completado)"; -$a->strings["Suggest friends"] = "Sugerir amigos"; -$a->strings["Network type: %s"] = "Tipo de red: %s"; -$a->strings["%d contact in common"] = array( - 0 => "%d contacto en común", - 1 => "%d contactos en común", -); -$a->strings["View all contacts"] = "Ver todos los contactos"; -$a->strings["Unblock"] = "Desbloquear"; -$a->strings["Block"] = "Bloquear"; -$a->strings["Unignore"] = "Quitar de Ignorados"; -$a->strings["Ignore"] = "Ignorar"; -$a->strings["Repair"] = "Reparar"; -$a->strings["Contact Editor"] = "Editor de contactos"; -$a->strings["Profile Visibility"] = "Visibilidad del Perfil"; -$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Por favor selecciona el perfil que quieras mostrar a %s cuando esté viendo tu perfil de forma segura."; -$a->strings["Contact Information / Notes"] = "Información del Contacto / Notas"; -$a->strings["Edit contact notes"] = "Editar notas de contacto"; -$a->strings["Visit %s's profile [%s]"] = "Ver el perfil de %s [%s]"; -$a->strings["Block/Unblock contact"] = "Boquear/Desbloquear contacto"; -$a->strings["Ignore contact"] = "Ignorar contacto"; -$a->strings["Repair URL settings"] = "Configuración de URL de reparación"; -$a->strings["View conversations"] = "Ver conversaciones"; -$a->strings["Delete contact"] = "Eliminar contacto"; -$a->strings["Last update:"] = "Última actualización:"; -$a->strings["Update public posts"] = "Actualizar posts públicos"; -$a->strings["Update now"] = "Actualizar ahora"; -$a->strings["Currently blocked"] = "Bloqueados"; -$a->strings["Currently ignored"] = "Ignorados"; -$a->strings["Contacts"] = "Contactos"; -$a->strings["Show Blocked Connections"] = "Mostrar conexiones bloqueadas"; -$a->strings["Hide Blocked Connections"] = "Esconder conexiones bloqueadas"; -$a->strings["Search your contacts"] = "Buscar tus contactos"; -$a->strings["Finding: "] = "Buscando: "; -$a->strings["Find"] = "Buscar"; -$a->strings["Mutual Friendship"] = "Amistad recíproca"; -$a->strings["is a fan of yours"] = "es tu fan"; -$a->strings["you are a fan of"] = "eres fan de"; -$a->strings["Edit contact"] = "Modificar contacto"; -$a->strings["Remote privacy information not available."] = "Información sobre privacidad remota no disponible."; -$a->strings["Visible to:"] = "Visible para:"; -$a->strings["An invitation is required."] = "Se necesita invitación."; -$a->strings["Invitation could not be verified."] = "No se puede verificar la invitación."; -$a->strings["Invalid OpenID url"] = "Dirección OpenID no válida"; -$a->strings["Please enter the required information."] = "Por favor, introduce la información necesaria."; -$a->strings["Please use a shorter name."] = "Por favor, usa un nombre más corto."; -$a->strings["Name too short."] = "El nombre es demasiado corto."; -$a->strings["That doesn't appear to be your full (First Last) name."] = "No parece que ese sea tu nombre completo."; -$a->strings["Your email domain is not among those allowed on this site."] = "Tu dominio de correo electrónico no se encuentra entre los permitidos en este sitio."; -$a->strings["Not a valid email address."] = "No es una dirección de correo electrónico válida."; -$a->strings["Cannot use that email."] = "No se puede utilizar este correo electrónico."; -$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and must also begin with a letter."] = "Tu \"apodo\" solo puede contener \"a-z\", \"0-9\", \"-\", y \"_\", y también debe empezar por una letra."; -$a->strings["Nickname is already registered. Please choose another."] = "Apodo ya registrado. Por favor, elije otro."; -$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "ERROR GRAVE: La generación de claves de seguridad ha fallado."; -$a->strings["An error occurred during registration. Please try again."] = "Se produjo un error durante el registro. Por favor, inténtalo de nuevo."; -$a->strings["An error occurred creating your default profile. Please try again."] = "Error al crear tu perfil predeterminado. Por favor, inténtalo de nuevo."; -$a->strings["Registration successful. Please check your email for further instructions."] = "Te has registrado con éxito. Por favor, consulta tu correo electrónico para obtener instrucciones adicionales."; -$a->strings["Failed to send email message. Here is the message that failed."] = "Error al enviar el mensaje de correo electrónico. Este es el mensaje no enviado."; -$a->strings["Your registration can not be processed."] = "Tu registro no se puede procesar."; -$a->strings["Registration request at %s"] = "Solicitud de registro en %s"; -$a->strings["Your registration is pending approval by the site owner."] = "Tu registro está pendiente de aprobación por el propietario del sitio."; -$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Puedes (opcionalmente) rellenar este formulario a través de OpenID mediante el suministro de tu OpenID y pulsando en 'Registrar'."; -$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Si no estás familiarizado con OpenID, por favor deja ese campo en blanco y rellena el resto de los elementos."; -$a->strings["Your OpenID (optional): "] = "Tu OpenID (opcional):"; -$a->strings["Include your profile in member directory?"] = "¿Incluir tu perfil en el directorio de miembros?"; -$a->strings["Membership on this site is by invitation only."] = "Sitio solo accesible mediante invitación."; -$a->strings["Your invitation ID: "] = "ID de tu invitación: "; -$a->strings["Registration"] = "Registro"; -$a->strings["Your Full Name (e.g. Joe Smith): "] = "Tu nombre completo (por ejemplo, Pepe Pulido):"; -$a->strings["Your Email Address: "] = "Tu dirección de correo electrónico:"; -$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be 'nickname@\$sitename'."] = "Elije un apodo. Debe comenzar con una letra. Tu dirección de perfil en este sitio va a ser 'apodo@\$sitename'."; -$a->strings["Choose a nickname: "] = "Escoge un apodo: "; -$a->strings["Post successful."] = "¡Publicado!"; -$a->strings["Friends of %s"] = "Amigos de %s"; -$a->strings["No friends to display."] = "No hay amigos para mostrar."; -$a->strings["Help:"] = "Ayuda:"; -$a->strings["Help"] = "Ayuda"; -$a->strings["Could not create/connect to database."] = "No se pudo crear o conectarse a la base de datos."; -$a->strings["Connected to database."] = "Conectado a la base de datos."; -$a->strings["Proceed with Installation"] = "Procediendo con la instalación"; -$a->strings["Your Friendika site database has been installed."] = "La base de datos de Friendila ha sido instalada."; -$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "IMPORTANTE: Tendrás que configurar [manualmente] una tarea programada para el encuestador"; -$a->strings["Please see the file \"INSTALL.txt\"."] = "Por favor, consulte el archivo \"INSTALL.txt\"."; -$a->strings["Proceed to registration"] = "Procediendo con el registro"; -$a->strings["Database import failed."] = "La importación de la base de datos ha fallado."; -$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Puede que tenga que importar el archivo \"Database.sql\" manualmente usando phpmyadmin o mysql."; -$a->strings["Welcome to Friendika."] = "Bienvenido a Friendika."; -$a->strings["Friendika Social Network"] = "Friendika Red Social"; -$a->strings["Installation"] = "Instalación"; -$a->strings["In order to install Friendika we need to know how to connect to your database."] = "Para proceder a la instalación de Friendika es necesario saber cómo conectar con tu base de datos."; -$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Por favor contacta con tu proveedor de servicios o el administrador de lapágina si tienes alguna pregunta sobre estas cofiguraciones"; -$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "La base de datos que especifiques a continuación ya debería existir. Si no es el caso, debes crearla antes de continuar."; -$a->strings["Database Server Name"] = "Nombre del servidor de la base de datos"; -$a->strings["Database Login Name"] = "Usuario de la base de datos"; -$a->strings["Database Login Password"] = "Contraseña de la base de datos"; -$a->strings["Database Name"] = "Nombre de la base de datos"; -$a->strings["Please select a default timezone for your website"] = "Por favor selecciona la zona horaria predeterminada para tu web"; -$a->strings["Site administrator email address. Your account email address must match this in order to use the web admin panel."] = "Dirección de correo electrónico del administrador. La dirección de correo electrónico de tu cuenta debe cotejar esto para poder acceder al panel de administración."; -$a->strings["Could not find a command line version of PHP in the web server PATH."] = "No se pudo encontrar una versión de línea de comandos de PHP en la ruta del servidor web."; -$a->strings["This is required. Please adjust the configuration file .htconfig.php accordingly."] = "Esto es necesario. Por favor, modifica el archivo de configuración. htconfig.php en consecuencia."; -$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "La versión en línea de comandos de PHP en tu sistema no tiene \"register_argc_argv\" habilitado."; -$a->strings["This is required for message delivery to work."] = "Esto es necesario para el funcionamiento de la entrega de mensajes."; -$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Error: La función \"openssl_pkey_new\" en este sistema no es capaz de generar claves de cifrado"; -$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Si se ejecuta en Windows, por favor consulte la sección \"http://www.php.net/manual/en/openssl.installation.php\"."; -$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Error: El módulo servidor web Apache mod-rewrite es necesario pero no está instalado."; -$a->strings["Error: libCURL PHP module required but not installed."] = "Error: El módulo libcurl PHP es necesario, pero no está instalado."; -$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Error: El módulo de gráficos GD de PHP con soporte JPEG es necesario, pero no está instalado."; -$a->strings["Error: openssl PHP module required but not installed."] = "Error: El módulo openssl PHP es necesario, pero no está instalado."; -$a->strings["Error: mysqli PHP module required but not installed."] = "Error: El módulo PHP mysqli es necesario, pero no está instalado."; -$a->strings["Error: mb_string PHP module required but not installed."] = "Error: El módulo mb_string HPH es necesario, pero no está instalado."; -$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."] = "El programa de instalación web necesita ser capaz de crear un archivo llamado \". htconfig.php\" en la carpeta superior de tu servidor web y es incapaz de hacerlo."; -$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."] = "Esto es muy a menudo una configuración de permisos, pues el servidor web puede que no sea capaz de escribir archivos en la carpeta - incluso si tu puedes."; -$a->strings["Please check with your site documentation or support people to see if this situation can be corrected."] = "Por favor, consulta el sitio de documentación o al soporte técnico para ver si esta situación se puede corregir."; -$a->strings["If not, you may be required to perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "Si no, deberás proceder con la instalación manual. Por favor, consulta el archivo \"INSTALL.txt\"para obtener instrucciones."; -$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."] = "El archivo de configuración de base de datos \". htconfig.php\" No se pudo escribir. Por favor, utiliza el texto adjunto para crear un archivo de configuración en la raíz de tu servidor web."; -$a->strings["Errors encountered creating database tables."] = "Errores encontrados creando las tablas de bases de datos."; -$a->strings["Commented Order"] = "Orden de comentarios"; -$a->strings["Posted Order"] = "Orden de publicación"; -$a->strings["New"] = "Nuevo"; -$a->strings["Starred"] = "Favoritos"; -$a->strings["Bookmarks"] = "Marcadores"; -$a->strings["Warning: This group contains %s member from an insecure network."] = array( - 0 => "Aviso: este grupo contiene %s contacto con conexión no segura.", - 1 => "Aviso: este grupo contiene %s contactos con conexiones no seguras.", -); -$a->strings["Private messages to this group are at risk of public disclosure."] = "Los mensajes privados a este grupo corren el riesgo de ser mostrados públicamente."; -$a->strings["No such group"] = "Ningún grupo"; -$a->strings["Group is empty"] = "El grupo está vacío"; -$a->strings["Group: "] = "Grupo: "; -$a->strings["Contact: "] = "Contacto: "; -$a->strings["Private messages to this person are at risk of public disclosure."] = "Los mensajes privados a esta persona corren el riesgo de ser mostrados públicamente."; -$a->strings["Invalid contact."] = "Contacto erróneo."; -$a->strings["Invalid profile identifier."] = "Identificador de perfil no válido."; -$a->strings["Profile Visibility Editor"] = "Editor de visibilidad del perfil"; -$a->strings["Click on a contact to add or remove."] = "Pulsa en un contacto para añadirlo o eliminarlo."; -$a->strings["Visible To"] = "Visible para"; -$a->strings["All Contacts (with secure profile access)"] = "Todos los contactos (con perfil de acceso seguro)"; -$a->strings["Event description and start time are required."] = "Se requiere una descripción del evento y la hora de inicio."; -$a->strings["Create New Event"] = "Crea un evento nuevo"; -$a->strings["Previous"] = "Previo"; -$a->strings["Next"] = "Siguiente"; -$a->strings["l, F j"] = "l, F j"; -$a->strings["Edit event"] = "Editar evento"; -$a->strings["link to source"] = "Enlace al original"; -$a->strings["hour:minute"] = "hora:minuto"; -$a->strings["Event details"] = "Detalles del evento"; -$a->strings["Format is %s %s. Starting date and Description are required."] = "El formato es %s %s. Se requiere una fecha de inicio y una descripción."; -$a->strings["Event Starts:"] = "Inicio del evento:"; -$a->strings["Finish date/time is not known or not relevant"] = "La fecha/hora de finalización no es conocida o es irrelevante."; -$a->strings["Event Finishes:"] = "Finalización del evento:"; -$a->strings["Adjust for viewer timezone"] = "Ajuste de zona horaria"; -$a->strings["Description:"] = "Descripción:"; -$a->strings["Share this event"] = "Comparte este evento"; -$a->strings["Invalid request identifier."] = "Solicitud de identificación no válida."; -$a->strings["Discard"] = "Descartar"; -$a->strings["Network"] = "Red"; -$a->strings["Home"] = "Inicio"; -$a->strings["Introductions"] = "Introducciones"; -$a->strings["Messages"] = "Mensajes"; -$a->strings["Show Ignored Requests"] = "Mostrar peticiones ignoradas"; -$a->strings["Hide Ignored Requests"] = "Ocultar peticiones ignoradas"; -$a->strings["Notification type: "] = "Tipo de notificación: "; -$a->strings["Friend Suggestion"] = "Propuestas de amistad"; -$a->strings["suggested by %s"] = "sugerido por %s"; -$a->strings["Approve"] = "Aprobar"; -$a->strings["Claims to be known to you: "] = "Dice conocerte:"; -$a->strings["yes"] = "sí"; -$a->strings["no"] = "no"; -$a->strings["Approve as: "] = "Aprobar como:"; -$a->strings["Friend"] = "Amigo"; -$a->strings["Sharer"] = "Partícipe"; -$a->strings["Fan/Admirer"] = "Fan/Admirador"; -$a->strings["Friend/Connect Request"] = "Solicitud de Amistad/Conexión"; -$a->strings["New Follower"] = "Nuevo seguidor"; -$a->strings["No notifications."] = "Ninguna notificación."; -$a->strings["Notifications"] = "Notificaciones"; -$a->strings["%s liked %s's post"] = "A %s le gusta el post de %s"; -$a->strings["%s disliked %s's post"] = "A %s no le gusta el post de %s"; -$a->strings["%s is now friends with %s"] = "%s es ahora es amigo de %s"; -$a->strings["%s created a new post"] = "%s creó un nuevo post"; -$a->strings["%s commented on %s's post"] = "%s comentó en el post de %s"; -$a->strings["Nothing new!"] = "¡Nada nuevo!"; -$a->strings["Contact settings applied."] = "Contacto configurado con éxito"; -$a->strings["Contact update failed."] = "Error al actualizar el Contacto"; -$a->strings["Contact not found."] = "Contacto no encontrado."; -$a->strings["Repair Contact Settings"] = "Reparar la configuración del Contacto"; -$a->strings["WARNING: This is highly advanced and if you enter incorrect information your communications with this contact may stop working."] = "ADVERTENCIA: Esto es muy avanzado y si se introduce información incorrecta su conexión con este contacto puede dejar de funcionar."; -$a->strings["Please use your browser 'Back' button now if you are uncertain what to do on this page."] = "Por favor usa el botón 'Atás' de tu navegador ahora si no tienes claro qué hacer en esta página."; -$a->strings["Account Nickname"] = "Apodo de la cuenta"; -$a->strings["@Tagname - overrides Name/Nickname"] = "@Etiqueta - Sobrescribe el Nombre/Apodo"; -$a->strings["Account URL"] = "Dirección de la cuenta"; -$a->strings["Friend Request URL"] = "Dirección de la solicitud de amistad"; -$a->strings["Friend Confirm URL"] = "Dirección de confirmación de tu amigo "; -$a->strings["Notification Endpoint URL"] = "Dirección URL de la notificación"; -$a->strings["Poll/Feed URL"] = "Dirección de la Encuesta/Fuentes"; -$a->strings["New photo from this URL"] = "Nueva foto de esta dirección URL"; -$a->strings["This introduction has already been accepted."] = "Esta presentación ya ha sido aceptada."; -$a->strings["Profile location is not valid or does not contain profile information."] = "La ubicación del perfil no es válida o no contiene la información del perfil."; -$a->strings["Warning: profile location has no identifiable owner name."] = "Aviso: La ubicación del perfil no tiene un nombre de propietario identificable."; -$a->strings["Warning: profile location has no profile photo."] = "Aviso: la ubicación del perfil no tiene foto de perfil."; -$a->strings["%d required parameter was not found at the given location"] = array( - 0 => "% d parámetro requerido no se encontró en el lugar determinado", - 1 => "% d parámetros requeridos no se encontraron en el lugar determinado", -); -$a->strings["Introduction complete."] = "Presentación completa."; -$a->strings["Unrecoverable protocol error."] = "Error de protocolo irrecuperable."; -$a->strings["Profile unavailable."] = "Perfil no disponible."; -$a->strings["%s has received too many connection requests today."] = "% s ha recibido demasiadas solicitudes de conexión hoy."; -$a->strings["Spam protection measures have been invoked."] = "Han sido activadas las medidas de protección contra spam."; -$a->strings["Friends are advised to please try again in 24 hours."] = "Tus amigos serán avisados para que lo intenten de nuevo pasadas 24 horas."; -$a->strings["Invalid locator"] = "Localizador no válido"; -$a->strings["Unable to resolve your name at the provided location."] = "No se ha podido resolver tu nombre en la ubicación indicada."; -$a->strings["You have already introduced yourself here."] = "Ya te has presentado aquí."; -$a->strings["Apparently you are already friends with %s."] = "Al parecer, ya eres amigo de %s."; -$a->strings["Invalid profile URL."] = "Dirección de perfil no válida."; -$a->strings["Your introduction has been sent."] = "Su presentación ha sido enviada."; -$a->strings["Please login to confirm introduction."] = "Inicia sesión para confirmar la presentación."; -$a->strings["Incorrect identity currently logged in. Please login to this profile."] = "Sesión iniciada con la identificación incorrecta. Entra en este perfil."; -$a->strings["Welcome home %s."] = "Bienvenido %s"; -$a->strings["Please confirm your introduction/connection request to %s."] = "Por favor, confirma tu solicitud de presentación/conexión con %s."; -$a->strings["Confirm"] = "Confirmar"; -$a->strings["[Name Withheld]"] = "[Nombre oculto]"; -$a->strings["Introduction received at "] = "Presentación recibida en"; -$a->strings["Diaspora members: Please do not use this form. Instead, enter \"%s\" into your Diaspora search bar."] = "Usuarios de Diaspora*: por favor no utilice este formulario. En su lugar, escriba \"%s\" en la barra de búsqueda de Diaspora*."; -$a->strings["Please enter your 'Identity Address' from one of the following supported social networks:"] = "Por favor introduce la dirección de tu perfil para una de las siguientes redes sociales soportadas:"; -$a->strings["Friend/Connection Request"] = "Solicitud de Amistad/Conexión"; -$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Ejemplos: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"; -$a->strings["Please answer the following:"] = "Por favor responda lo siguiente:"; -$a->strings["Does %s know you?"] = "¿%s te conoce?"; -$a->strings["Add a personal note:"] = "Agregar una nota personal:"; -$a->strings["Friendica"] = "Friendica"; -$a->strings["StatusNet/Federated Social Web"] = "StatusNet/Federated Social Web"; -$a->strings["- please share from your own site as noted above"] = "- Por favor comparta desde tu propio sitio como se ha señalado"; -$a->strings["Your Identity Address:"] = "Dirección de tu perfil:"; -$a->strings["Submit Request"] = "Enviar solicitud"; -$a->strings["Authorize application connection"] = "Autorizar la conexión de la aplicación"; -$a->strings["Return to your app and insert this Securty Code:"] = "Regrese a su aplicación e inserte este código de seguridad:"; -$a->strings["Please login to continue."] = "Inicia sesión para continuar."; -$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "¿Quiere autorizar a esta aplicación el acceso a sus mensajes y contactos, y/o crear nuevas publicaciones para usted?"; -$a->strings["status"] = "estado"; -$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s etiquetados %2\$s %3\$s con %4\$s"; -$a->strings["%1\$s likes %2\$s's %3\$s"] = "A %1\$s gusta %3\$s de %2\$s"; -$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "A %1\$s no gusta %3\$s de %2\$s"; -$a->strings["No valid account found."] = "No se ha encontrado ninguna cuenta válida"; -$a->strings["Password reset request issued. Check your email."] = "Solicitud de restablecimiento de contraseña enviada. Revisa tu correo electrónico."; -$a->strings["Password reset requested at %s"] = "Contraseña restablecida enviada a %s"; -$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "La solicitud no puede ser verificada (deberías haberla proporcionado antes). Falló el restablecimiento de la contraseña."; -$a->strings["Your password has been reset as requested."] = "Tu contraseña ha sido restablecida como solicitaste."; -$a->strings["Your new password is"] = "Tu nueva contraseña es"; -$a->strings["Save or copy your new password - and then"] = "Guarda o copia tu nueva contraseña - y luego"; -$a->strings["click here to login"] = "pulsa aquí para acceder"; -$a->strings["Your password may be changed from the Settings page after successful login."] = "Puedes cambiar tu contraseña desde la página de Configuración después de acceder con éxito."; -$a->strings["Forgot your Password?"] = "¿Olvidaste tu contraseña?"; -$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Introduce tu correo electrónico para restablecer tu contraseña. Luego comprueba tu correo para las instrucciones adicionales."; -$a->strings["Nickname or Email: "] = "Apodo o Correo electrónico: "; -$a->strings["Reset"] = "Restablecer"; -$a->strings["This is Friendica, version"] = "Esto es Friendica, versión"; -$a->strings["running at web location"] = "ejecutándose en la dirección web"; -$a->strings["Please visit Project.Friendika.com to learn more about the Friendica project."] = "Por favor, visite Project.Friendika.com para saber más sobre el proyecto Friendica."; -$a->strings["Bug reports and issues: please visit"] = "Reporte de fallos y bugs: por favor visita"; -$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Sugerencias, elogios, donaciones, etc - por favor mande un email a Info arroba Friendica punto com"; -$a->strings["Installed plugins/addons/apps"] = "Módulos/extensiones/programas instalados"; -$a->strings["No installed plugins/addons/apps"] = "Módulos/extensiones/programas no instalados"; -$a->strings["Remove My Account"] = "Eliminar mi cuenta"; -$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Esto eliminará por completo tu cuenta. Una vez hecho esto no se puede deshacer."; -$a->strings["Please enter your password for verification:"] = "Por favor, introduce tu contraseña para la verificación:"; -$a->strings["Applications"] = "Aplicaciones"; -$a->strings["No installed applications."] = "Sin aplicaciones"; -$a->strings["Save"] = "Guardar"; -$a->strings["Friend suggestion sent."] = "Solicitud de amistad enviada."; -$a->strings["Suggest Friends"] = "Sugerencias de amistad"; -$a->strings["Suggest a friend for %s"] = "Recomienda un amigo a %s"; -$a->strings["Access denied."] = "Acceso denegado."; -$a->strings["Global Directory"] = "Directorio global"; -$a->strings["Normal site view"] = "Vista normal"; -$a->strings["Admin - View all site entries"] = "Administrador - Ver todas las entradas del sitio"; -$a->strings["Find on this site"] = "Buscar en este sitio"; -$a->strings["Site Directory"] = "Directorio del sitio"; -$a->strings["Gender: "] = "Género:"; -$a->strings["No entries (some entries may be hidden)."] = "Sin entradas (algunas pueden que estén ocultas)."; -$a->strings["Site"] = "Sitio"; -$a->strings["Users"] = "Usuarios"; -$a->strings["Plugins"] = "Módulos"; -$a->strings["Logs"] = "Registros"; -$a->strings["User registrations waiting for confirmation"] = "Registro de usuarios esperando la confirmación"; -$a->strings["Administration"] = "Administración"; -$a->strings["Summary"] = "Resumen"; -$a->strings["Registered users"] = "Usuarios registrados"; -$a->strings["Pending registrations"] = "Pendientes de registro"; -$a->strings["Version"] = "Versión"; -$a->strings["Active plugins"] = "Módulos activos"; -$a->strings["Site settings updated."] = "Configuración de actualización de sitio"; -$a->strings["Closed"] = "Cerrado"; -$a->strings["Requires approval"] = "Requiere aprovación"; -$a->strings["Open"] = "Abierto"; -$a->strings["File upload"] = "Subida de archivo"; -$a->strings["Policies"] = "Políticas"; -$a->strings["Advanced"] = "Avanzado"; -$a->strings["Site name"] = "Nombre del sitio"; -$a->strings["Banner/Logo"] = "Banner/Logo"; -$a->strings["System language"] = "Idioma"; -$a->strings["System theme"] = "Tema"; -$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 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"; -$a->strings["Force publish"] = "Forzar publicación"; -$a->strings["Global directory update URL"] = "Dirección de actualización del directorio global"; -$a->strings["Block multiple registrations"] = "Bloquear multiples registros"; -$a->strings["OpenID support"] = "Soporte OpenID"; -$a->strings["Gravatar support"] = "Soporte Gravatar"; -$a->strings["Fullname check"] = "Comprobar Nombre completo"; -$a->strings["UTF-8 Regular expressions"] = "Expresiones regulares UTF-8"; -$a->strings["Show Community Page"] = "Ver página de la Comunidad"; -$a->strings["Enable OStatus support"] = "Permitir soporte OStatus"; -$a->strings["Enable Diaspora support"] = "Habilitar el soporte para Diaspora*"; -$a->strings["Only allow Friendika contacts"] = "Permitir solo contactos de Friendika"; -$a->strings["Verify SSL"] = "Verificar SSL"; -$a->strings["Proxy user"] = "Usuario proxy"; -$a->strings["Proxy URL"] = "Dirección proxy"; -$a->strings["Network timeout"] = "Tiempo de espera de red"; -$a->strings["%s user blocked"] = array( - 0 => "%s usuario bloqueado", - 1 => "%s usuarios bloqueados", -); -$a->strings["%s user deleted"] = array( - 0 => "%s usuario eliminado", - 1 => "%s usuarios eliminados", -); -$a->strings["User '%s' deleted"] = "Usuario '%s' eliminado'"; -$a->strings["User '%s' unblocked"] = "Usuario '%s' desbloqueado"; -$a->strings["User '%s' blocked"] = "Usuario '%s' bloqueado'"; -$a->strings["select all"] = "seleccionar todo"; -$a->strings["User registrations waiting for confirm"] = "Registro de usuario esperando confirmación"; -$a->strings["Request date"] = "Solicitud de fecha"; -$a->strings["Email"] = "Correo electrónico"; -$a->strings["No registrations."] = "Ningún registro."; -$a->strings["Deny"] = "Denegado"; -$a->strings["Register date"] = "Fecha de registro"; -$a->strings["Last login"] = "Último acceso"; -$a->strings["Last item"] = "Último elemento"; -$a->strings["Account"] = "Cuenta"; -$a->strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "¡Los usuarios seleccionados serán eliminados!\\n\\n¡Todo lo que hayan publicado en este sitio se borrará para siempre!\\n\\n¿Estás seguro?"; -$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?"] = "¡El usuario {0} será eliminado!\\n\\n¡Todo lo que haya publicado en este sitio se borrará para siempre!\\n\\n¿Estás seguro?"; -$a->strings["Plugin %s disabled."] = "Módulo %s deshabilitado."; -$a->strings["Plugin %s enabled."] = "Módulo %s habilitado."; -$a->strings["Disable"] = "Inhabilitado"; -$a->strings["Enable"] = "Habilitado"; -$a->strings["Toggle"] = "Activar"; -$a->strings["Settings"] = "Configuraciones"; -$a->strings["Log settings updated."] = "Registro de los parámetros de actualización"; -$a->strings["Clear"] = "Limpiar"; -$a->strings["Debugging"] = "Depuración"; -$a->strings["Log file"] = "Archivo de registro"; -$a->strings["Must be writable by web server. Relative to your Friendika index.php."] = "Debes permitirle la escritura al servidor web. Relacionado con Friendika index.php"; -$a->strings["Log level"] = "Nivel de registro"; -$a->strings["Close"] = "Cerrado"; -$a->strings["FTP Host"] = "Host FTP"; -$a->strings["FTP Path"] = "Ruta FTP"; -$a->strings["FTP User"] = "Usuario FTP"; -$a->strings["FTP Password"] = "Contraseña FTP"; -$a->strings["Unable to locate original post."] = "No se puede encontrar la publicación original."; -$a->strings["Empty post discarded."] = "Publicación vacía descartada."; -$a->strings["noreply"] = "no responder"; -$a->strings["Administrator@"] = "Administrador@"; -$a->strings["%s commented on an item at %s"] = "%s ha commentato un elemento en %s"; -$a->strings["%s posted to your profile wall at %s"] = "%s ha publicado en tu muro a las %s"; -$a->strings["System error. Post not saved."] = "Error del sistema. Mensaje no guardado."; -$a->strings["This message was sent to you by %s, a member of the Friendika social network."] = "Este mensaje te ha sido enviado por %s, un miembro de la red social Friendika."; -$a->strings["You may visit them online at %s"] = "Los puedes visitar en línea en %s"; -$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Por favor contacta con el remitente respondiendo a este mensaje si no deseas recibir estos mensajes."; -$a->strings["%s posted an update."] = "%s ha publicado una actualización."; -$a->strings["Tag removed"] = "Etiqueta eliminada"; -$a->strings["Remove Item Tag"] = "Eliminar etiqueta del elemento"; -$a->strings["Select a tag to remove: "] = "Seleccione una etiqueta para eliminar:"; -$a->strings["Remove"] = "Eliminar"; -$a->strings["No recipient selected."] = "Ningún destinatario seleccionado"; -$a->strings["Unable to locate contact information."] = "No se puede encontrar información del contacto."; -$a->strings["Message could not be sent."] = "El mensaje no ha podido ser enviado."; -$a->strings["Message sent."] = "Mensaje enviado."; -$a->strings["Inbox"] = "Entrada"; -$a->strings["Outbox"] = "Enviados"; -$a->strings["New Message"] = "Nuevo mensaje"; -$a->strings["Message deleted."] = "Mensaje eliminado."; -$a->strings["Conversation removed."] = "Conversación eliminada."; -$a->strings["Please enter a link URL:"] = "Introduce la dirección del enlace:"; -$a->strings["Send Private Message"] = "Enviar mensaje privado"; -$a->strings["To:"] = "Para:"; -$a->strings["Subject:"] = "Asunto:"; -$a->strings["No messages."] = "No hay mensajes."; -$a->strings["Delete conversation"] = "Eliminar conversación"; -$a->strings["D, d M Y - g:i A"] = "D, d M Y - g:i A"; -$a->strings["Message not available."] = "Mensaje no disponibile."; -$a->strings["Delete message"] = "Borrar mensaje"; -$a->strings["Send Reply"] = "Enviar respuesta"; +$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "Para más información sobre el Proyecto Friendica y sobre por qué pensamos que es algo importante, visita http://friendica.com"; +$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "Esto puede ocurrir a veces si la conexión fue solicitada por ambas personas y ya hubiera sido aprobada."; $a->strings["Response from remote site was not understood."] = "La respuesta desde el sitio remoto no ha sido entendida."; -$a->strings["Unexpected response from remote site: "] = "Respuesta inesperada desde el sitio remoto:"; +$a->strings["Unexpected response from remote site: "] = "Respuesta inesperada desde el sitio remoto: "; $a->strings["Confirmation completed successfully."] = "Confirmación completada con éxito."; -$a->strings["Remote site reported: "] = "El sito remoto informó:"; +$a->strings["Remote site reported: "] = "El sito remoto informó: "; $a->strings["Temporary failure. Please wait and try again."] = "Error temporal. Por favor, espere y vuelva a intentarlo."; $a->strings["Introduction failed or was revoked."] = "La presentación ha fallado o ha sido anulada."; $a->strings["Unable to set contact photo."] = "Imposible establecer la foto del contacto."; -$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s es ahora amigo de %2\$s"; -$a->strings["No user record found for '%s' "] = "No se ha encontrado a ningún '%s'"; +$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s ahora es amigo de %2\$s"; +$a->strings["No user record found for '%s' "] = "No se ha encontrado a ningún '%s' "; $a->strings["Our site encryption key is apparently messed up."] = "Nuestra clave de cifrado del sitio es aparentemente un lío."; $a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "Se ha proporcionado una dirección vacía o no hemos podido descifrarla."; $a->strings["Contact record was not found for you on our site."] = "El contacto no se ha encontrado en nuestra base de datos."; -$a->strings["Site public key not available in contact record for URL %s."] = "La clave pública del sitio no está disponible en los datos del contacto para URL %s."; +$a->strings["Site public key not available in contact record for URL %s."] = "La clave pública del sitio no está disponible en los datos del contacto para %s."; $a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "La identificación proporcionada por el sistema es un duplicado de nuestro sistema. Debería funcionar si lo intentas de nuevo."; $a->strings["Unable to set your contact credentials on our system."] = "No se puede establecer las credenciales de tu contacto en nuestro sistema."; $a->strings["Unable to update your contact profile details on our system"] = "No se puede actualizar los datos de tu perfil de contacto en nuestro sistema"; -$a->strings["Connection accepted at %s"] = "Conexión aceptada en % s"; -$a->strings["Login failed."] = "Accesso fallido."; -$a->strings["Welcome "] = "Bienvenido"; -$a->strings["Please upload a profile photo."] = "Por favor sube una foto para tu perfil."; -$a->strings["Welcome back "] = "Bienvenido de nuevo"; -$a->strings["%s welcomes %s"] = "%s te da la bienvenida a %s"; -$a->strings["View Contacts"] = "Ver contactos"; -$a->strings["No contacts."] = "Ningún contacto."; -$a->strings["Group created."] = "Grupo creado."; -$a->strings["Could not create group."] = "Imposible crear el grupo."; -$a->strings["Group not found."] = "Grupo no encontrado."; -$a->strings["Group name changed."] = "El nombre del grupo ha cambiado."; -$a->strings["Create a group of contacts/friends."] = "Crea un grupo de contactos/amigos."; -$a->strings["Group Name: "] = "Nombre del grupo: "; -$a->strings["Group removed."] = "Grupo eliminado."; -$a->strings["Unable to remove group."] = "No se puede eliminar el grupo."; -$a->strings["Group Editor"] = "Editor de grupos"; -$a->strings["Members"] = "Miembros"; -$a->strings["All Contacts"] = "Todos los contactos"; -$a->strings["Item not available."] = "Elemento no disponible."; -$a->strings["Item was not found."] = "Elemento no encontrado."; -$a->strings["Common Friends"] = "Amigos comunes"; -$a->strings["No friends in common."] = "No hay amigos en común."; -$a->strings["Profile Match"] = "Coincidencias de Perfil"; -$a->strings["No keywords to match. Please add keywords to your default profile."] = "No hay palabras clave que coincidan. Por favor, agrega palabras claves a tu perfil predeterminado."; -$a->strings["Not available."] = "No disponible"; -$a->strings["Community"] = "Comunidad"; -$a->strings["Shared content is covered by the Creative Commons Attribution 3.0 license."] = "El contenido en común está cubierto por la licencia Creative Commons Atribución 3.0."; -$a->strings["Post to Tumblr"] = "Publicar en Tumblr"; -$a->strings["Tumblr Post Settings"] = "Configuración de publicación en Tumblr"; -$a->strings["Enable Tumblr Post Plugin"] = "Habilitar el plugin de publicación en Tumblr"; -$a->strings["Tumblr login"] = "Tumblr - inicio de sesión"; -$a->strings["Tumblr password"] = "Tumblr - contraseña"; -$a->strings["Post to Tumblr by default"] = "Publicar a Tumblr por defecto"; -$a->strings["Post from Friendica"] = "Publicar desde Friendica"; -$a->strings["Post to Twitter"] = "Publicar en Twitter"; -$a->strings["Twitter settings updated."] = "Actualización de la configuración de Twitter"; -$a->strings["Twitter Posting Settings"] = "Configuración de publicaciones en Twitter"; -$a->strings["No consumer key pair for Twitter found. Please contact your site administrator."] = "No se ha encontrado ningún par de claves para Twitter. Póngase en contacto con el administrador del sitio."; -$a->strings["At this Friendika 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."] = "En esta instancia de Friendika el plugin de Twitter fue habilitado, pero aún no has vinculado tu cuenta a tu cuenta de Twitter. Para ello haz clic en el botón de abajo para obtener un PIN de Twitter, que tiene que copiar en el cuadro de entrada y enviar el formulario. Solo sus posts públicos se publicarán en Twitter."; -$a->strings["Log in with Twitter"] = "Acceder con Twitter"; -$a->strings["Copy the PIN from Twitter here"] = "Copia el PIN de Twitter aquí"; -$a->strings["Currently connected to: "] = "Actualmente conectado a:"; -$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."] = "Si lo habilitas todas tus publicaciones públicas serán publicadas en la cuenta de Twitter asociada. Puedes elegir hacerlo por defecto (aquí) o individualmente para cada publicación usando las opciones cuando escribes."; -$a->strings["Allow posting to Twitter"] = "Permitir publicar en Twitter"; -$a->strings["Send public postings to Twitter by default"] = "Enviar publicaciones públicas a Twitter por defecto"; -$a->strings["Clear OAuth configuration"] = "Borrar la configuración de OAuth"; -$a->strings["Consumer key"] = "Clave consumer"; -$a->strings["Consumer secret"] = "Secreto consumer"; -$a->strings["Post to StatusNet"] = "Publicar en StatusNet"; -$a->strings["Please contact your site administrator.
    The provided API URL is not valid."] = "Por favor contacta con el administrador de tu web.
    La dirección API suministrada no es válida."; -$a->strings["We could not contact the StatusNet API with the Path you entered."] = "No podemos contantar con StatusNet en la ruta que has especificado."; -$a->strings["StatusNet settings updated."] = "Actualición de la configuración de StatusNet."; -$a->strings["StatusNet Posting Settings"] = "Configuración de envío a StatusNet"; -$a->strings["Globally Available StatusNet OAuthKeys"] = "StatusNet OAuthKeys disponibles para todos"; -$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)."] = "Existen pares de valores OAuthKey preconfigurados para algunos servidores. Si usas uno de ellos, por favor usa estas credenciales. De los contrario no dudes en conectar con cualquiera otra instancia de StatusNet (ver a continuación)."; -$a->strings["Provide your own OAuth Credentials"] = "Proporciona tus propias credenciales OAuth"; -$a->strings["No consumer key pair for StatusNet found. Register your Friendika 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 Friendika installation at your favorited StatusNet installation."] = "No se ha encontrado ningún par de claves para StatusNet. Registra tu cuenta de Friendika como cliente de escritorio en tu cuenta de StatusNet, copia la clave consumer aquí y escribe la dirección de la base API.
    Antes de registrar tu propio par de claves OAuth, pregunta al administrador si ya hay un par de claves para esta instalación de Friendika en tu instalación StatusNet favorita."; -$a->strings["OAuth Consumer Key"] = "OAuth Consumer Key"; -$a->strings["OAuth Consumer Secret"] = "OAuth Consumer Secret"; -$a->strings["Base API Path (remember the trailing /)"] = "Dirección de base para la API (recordar el / al final)"; -$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."] = "Para conectarse a tu cuenta de StatusNet haga clic en el botón abajo para obtener un PIN de StatusNet, que tiene que copiar en el cuadro de entrada y enviar el formulario. Solo sus posts públicos se publicarán en StatusNet."; -$a->strings["Log in with StatusNet"] = "Inicia sesión con StatusNet"; -$a->strings["Copy the security code from StatusNet here"] = "Copia el código de seguridad de StatusNet aquí"; -$a->strings["Cancel Connection Process"] = "Cancelar la conexión en proceso"; -$a->strings["Current StatusNet API is"] = "El estado actual de la API de StatusNet es"; -$a->strings["Cancel StatusNet Connection"] = "Cancelar conexión con StatusNet"; -$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."] = "Si lo habilitas todas tus publicaciones
    públicas
    podrán ser publicadas en la cuenta asociada de StatusNet. Pudes elegir hacerlo por defecto (aquí) o para cada publicación individualmente en las opciones de publicacion cuando la estás escribiendo."; -$a->strings["Allow posting to StatusNet"] = "Permitir publicaciones en StatusNet"; -$a->strings["Send public postings to StatusNet by default"] = "Enviar publicaciones públicas a StatusNet por defecto"; -$a->strings["API URL"] = "Dirección de la API"; -$a->strings["OEmbed settings updated"] = "Actualizar la configuración de OEmbed"; -$a->strings["Use OEmbed for YouTube videos"] = "Usar OEmbed para los vídeos de YouTube"; -$a->strings["URL to embed:"] = "Dirección del recurso:"; -$a->strings["Three Dimensional Tic-Tac-Toe"] = "Tres en Raya tridimensional"; -$a->strings["3D Tic-Tac-Toe"] = "Tres en Raya 3D"; -$a->strings["New game"] = "Nueva partida"; -$a->strings["New game with handicap"] = "Nuevo juego con handicap"; -$a->strings["Three dimensional tic-tac-toe is just like the traditional game except that it is played on multiple levels simultaneously. "] = "Tres en Raya tridimensional es como el juego tradicional, excepto que se juega en varios niveles simultáneamente."; -$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."] = "En este caso hay tres niveles. Ganarás por conseguir tres en raya en cualquier nivel, así como arriba, abajo y en diagonal a través de los diferentes niveles."; -$a->strings["The handicap game disables the center position on the middle level because the player claiming this square often has an unfair advantage."] = "El juego con handicap desactiva la posición central en el nivel medio porque el jugador reclama que este cuadrado tiene a menudo una ventaja injusta."; -$a->strings["You go first..."] = "Comienzas tú..."; -$a->strings["I'm going first this time..."] = "Yo voy primero esta vez..."; -$a->strings["You won!"] = "¡Has ganado!"; -$a->strings["\"Cat\" game!"] = "¡Empate!"; -$a->strings["I won!"] = "¡He ganado!"; -$a->strings["Allow to use your friendika id (%s) to connecto to external unhosted-enabled storage (like ownCloud)"] = "Permitir el uso de su ID de friendica (%s) para conectar a fuentes externas de almacenamiento sin anfitrión habilitado (como ownCloud)"; -$a->strings["Unhosted DAV storage url"] = "Dirección url de almacenamiento DAV sin anfitrión"; -$a->strings["Impressum"] = "Impressum"; -$a->strings["Site Owner"] = "Propietario"; -$a->strings["Email Address"] = "Dirección de correo"; -$a->strings["Postal Address"] = "Dirección"; -$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."] = "Impressum necesita ser configurado.
    Por favor añade al menos la variable propietario a tu archivo de configuración. Para otras variables lee el archivo README."; -$a->strings["Site Owners Profile"] = "Perfil del propietario del sitio"; -$a->strings["Notes"] = "Notas"; +$a->strings["Connection accepted at %s"] = "Conexión aceptada en %s"; +$a->strings["%1\$s has joined %2\$s"] = "%1\$s se ha unido a %2\$s"; +$a->strings["Google+ Import Settings"] = "Configuración de la importación de Google+"; +$a->strings["Enable Google+ Import"] = "Habilitar la importación de Google+"; +$a->strings["Google Account ID"] = "ID de la cuenta de Google"; +$a->strings["Google+ Import Settings saved."] = "Configuración de la importación de Google+ guardada."; $a->strings["Facebook disabled"] = "Facebook deshabilitado"; $a->strings["Updating contacts"] = "Actualizando contactos"; $a->strings["Facebook API key is missing."] = "Falta la clave API de Facebook."; $a->strings["Facebook Connect"] = "Conexión con Facebook"; $a->strings["Install Facebook connector for this account."] = "Instalar el conector de Facebook para esta cuenta."; $a->strings["Remove Facebook connector"] = "Eliminar el conector de Facebook"; -$a->strings["Re-authenticate [This is necessary whenever your Facebook password is changed.]"] = "Volver a identificarse [Esto es necesario cada vez que su contraseña de Facebook cambie.]"; +$a->strings["Re-authenticate [This is necessary whenever your Facebook password is changed.]"] = "Volver a identificarse [Esto es necesario cada vez que tu contraseña de Facebook cambie.]"; $a->strings["Post to Facebook by default"] = "Publicar en Facebook de forma predeterminada"; -$a->strings["Link all your Facebook friends and conversations on this website"] = "Vincule a todos tus amigos de Facebook y las conversaciones en este sitio web"; -$a->strings["Facebook conversations consist of your profile wall and your friend stream."] = "Las conversaciones de Facebook consisten en su muro su perfil y las publicaciones de su amigo."; -$a->strings["On this website, your Facebook friend stream is only visible to you."] = "En esta página web, las publicaciones de su amigo de Facebook solo son visibles para usted."; -$a->strings["The following settings determine the privacy of your Facebook profile wall on this website."] = "La siguiente configuración determina la privacidad del muro de su perfil de Facebook en este sitio web."; -$a->strings["On this website your Facebook profile wall conversations will only be visible to you"] = "En este sitio web las publicaciones del muro de Facebook solo son visibles para usted"; -$a->strings["Do not import your Facebook profile wall conversations"] = "No importar las conversaciones de su muro de Facebook"; -$a->strings["If you choose to link conversations and leave both of these boxes unchecked, your Facebook profile wall will be merged with your profile wall on this website and your privacy settings on this website will be used to determine who may see the conversations."] = "Si decide conectar las conversaciones y dejar ambas casillas sin marcar, el muro de su perfil de Facebook se fusionará con el muro de su perfil en este sitio web y la configuración de privacidad en este sitio serán utilizados para determinar quién puede ver las conversaciones."; -$a->strings["Facebook"] = "Facebook"; +$a->strings["Facebook friend linking has been disabled on this site. The following settings will have no effect."] = "El enlace con los contactos de Facebook ha sido desactivado en este servidor. La configuración no tendrá efecto alguno."; +$a->strings["Facebook friend linking has been disabled on this site. If you disable it, you will be unable to re-enable it."] = "El enlace con los contactos de Facebook ha sido desactivado en este servidor. Si se desactiva no podrá volver a reactivarse."; +$a->strings["Link all your Facebook friends and conversations on this website"] = "Vincula a todos tus amigos de Facebook y las conversaciones con este sitio"; +$a->strings["Facebook conversations consist of your profile wall and your friend stream."] = "Las conversaciones de Facebook consisten en tu muro, tu perfil y las publicaciones de tus amigos."; +$a->strings["On this website, your Facebook friend stream is only visible to you."] = "En esta página las publicaciones de tus amigos de Facebook solo son visibles para ti."; +$a->strings["The following settings determine the privacy of your Facebook profile wall on this website."] = "La siguiente configuración determina la privacidad del muro de tu perfil de Facebook en este sitio."; +$a->strings["On this website your Facebook profile wall conversations will only be visible to you"] = "En este sitio las publicaciones del muro de Facebook solo son visibles para ti"; +$a->strings["Do not import your Facebook profile wall conversations"] = "No importar las conversaciones de tu muro de Facebook"; +$a->strings["If you choose to link conversations and leave both of these boxes unchecked, your Facebook profile wall will be merged with your profile wall on this website and your privacy settings on this website will be used to determine who may see the conversations."] = "Si decides conectar las conversaciones y dejar ambas casillas sin marcar, el muro de tu perfil de Facebook se fusionará con el muro de tu perfil en este sitio y la configuración de privacidad en este sitio será utilizada para determinar quién puede ver las conversaciones."; +$a->strings["Comma separated applications to ignore"] = "Aplicaciones a ignorar separadas por comas"; +$a->strings["Problems with Facebook Real-Time Updates"] = "Hay problemas con las actualizaciones en tiempo real de Facebook"; $a->strings["Facebook Connector Settings"] = "Configuración de conexión a Facebook"; +$a->strings["Facebook API Key"] = "Llave API de Facebook"; +$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.

    "] = "Error: parece que la App-ID y el -Secret ya están configurados en tu archivo .htconfig.php. Al estar configurados allí, no se usará este formulario.

    "; +$a->strings["Error: the given API Key seems to be incorrect (the application access token could not be retrieved)."] = "Error: la llave API proporcionada parece incorrecta (no se pudo recuperar la ficha de acceso a la aplicación)."; +$a->strings["The given API Key seems to work correctly."] = "La Llave API proporcionada parece funcionar correctamente."; +$a->strings["The correctness of the API Key could not be detected. Something strange's going on."] = "No se ha podido detectar una llave API correcta. Algo raro está pasando."; +$a->strings["App-ID / API-Key"] = "Añadir ID / Llave API"; +$a->strings["Application secret"] = "Secreto de la aplicación"; +$a->strings["Polling Interval in minutes (minimum %1\$s minutes)"] = "Intervalo del sondeo en minutos (mínimo %1\$s minutos)"; +$a->strings["Synchronize comments (no comments on Facebook are missed, at the cost of increased system load)"] = "Sincronizar comentarios (no se perderán comentarios de Facebook, pero se incrementará la carga del sistema)"; +$a->strings["Real-Time Updates"] = "Actualizaciones en tiempo real"; +$a->strings["Real-Time Updates are activated."] = "Actualizaciones en tiempo real activada."; +$a->strings["Deactivate Real-Time Updates"] = "Desactivar actualizaciones en tiempo real"; +$a->strings["Real-Time Updates not activated."] = "Actualizaciones en tiempo real desactivada."; +$a->strings["Activate Real-Time Updates"] = "Activar actualizaciones en tiempo real"; +$a->strings["The new values have been saved."] = "Los nuevos valores se han guardado."; $a->strings["Post to Facebook"] = "Publicar en Facebook"; $a->strings["Post to Facebook cancelled because of multi-network access permission conflict."] = "Publicación en Facebook cancelada debido a un conflicto con los permisos de acceso a la multi-red."; -$a->strings["Image: "] = "Imagen: "; -$a->strings["View on Friendika"] = "Ver en Friendika"; +$a->strings["View on Friendica"] = "Ver en Friendica"; $a->strings["Facebook post failed. Queued for retry."] = "Publicación en Facebook errónea. Reintentando..."; -$a->strings["Generate new key"] = "Generar clave nueva"; -$a->strings["Widgets key"] = "Clave de aplicación"; -$a->strings["Widgets available"] = "Aplicación disponible"; -$a->strings["Connect on Friendika!"] = "¡Conectado en Friendika!"; +$a->strings["Your Facebook connection became invalid. Please Re-authenticate."] = "Tu conexión con Facebook ha sido invalidada. Por favor vuelve a identificarte."; +$a->strings["Facebook connection became invalid"] = "La conexión con Facebook ha sido invalidada"; +$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."] = "Hola %1\$s,\n\nLa conexión entre tu cuenta de %2\$s y Facebook se ha roto. Normalmente esto suele ocurrir si has cambiado tu contraseña de Facebook. Para volver a establecerla, tienes que %3\$sidentificarte de nuevo en el conector de Facebook%4\$s."; +$a->strings["StatusNet AutoFollow settings updated."] = "Configuración para seguir automáticamente en StatusNet actualizada."; +$a->strings["StatusNet AutoFollow Settings"] = "Configuración para el seguimiento automático en StatusNet"; +$a->strings["Automatically follow any StatusNet followers/mentioners"] = "Seguir automáticamente a cualquiera que me siga/mencione en StatusNet"; +$a->strings["Bg settings updated."] = "Ajustes de fondo actualizados."; +$a->strings["Bg Settings"] = "Ajustes de fondo"; +$a->strings["How many contacts to display on profile sidebar"] = "¿Cuántos contactos quieres mostrar en la barra lateral de tu perfil?"; +$a->strings["Lifetime of the cache (in hours)"] = "Vida útil de la caché (en horas)"; +$a->strings["Cache Statistics"] = "Estadísticas de la caché"; +$a->strings["Number of items"] = "Número de ítems"; +$a->strings["Size of the cache"] = "Tamaño de la caché"; +$a->strings["Delete the whole cache"] = "Borrar toda la caché"; +$a->strings["Facebook Post disabled"] = "Facebook deshabilitado"; +$a->strings["Facebook Post"] = "Facebook"; +$a->strings["Install Facebook Post connector for this account."] = "Instalar el conector de Facebook para esta cuenta."; +$a->strings["Remove Facebook Post connector"] = "Eliminar el conector de Facebook"; +$a->strings["Facebook Post Settings"] = "Configuración de conexión a Facebook"; $a->strings["%d person likes this"] = array( 0 => "a %d persona le gusta esto", 1 => "a %d personas les gusta esto", @@ -912,40 +1134,517 @@ $a->strings["%d person doesn't like this"] = array( 0 => "a %d persona no le gusta esto", 1 => "a %d personas no les gusta esto", ); -$a->strings["Report Bug"] = "Informe de errores"; -$a->strings["\"Not Safe For Work\" Settings"] = "Configuración «No apto para el trabajo» (NSFW)"; -$a->strings["Comma separated words to treat as NSFW"] = "Palabras separadas por comas para tratarlo como NSFW"; +$a->strings["Get added to this list!"] = "¡Añadido a la lista!"; +$a->strings["Generate new key"] = "Generar clave nueva"; +$a->strings["Widgets key"] = "Clave de aplicaciones"; +$a->strings["Widgets available"] = "Aplicaciones disponibles"; +$a->strings["Connect on Friendica!"] = "¡Conéctate en Friendica!"; +$a->strings["bitchslap"] = "abofetear fuerte"; +$a->strings["bitchslapped"] = "abofeteó fuertemente a"; +$a->strings["shag"] = "picar"; +$a->strings["shagged"] = "picó a"; +$a->strings["do something obscenely biological to"] = "hacer algo obsceno y biológico a"; +$a->strings["did something obscenely biological to"] = "hizo algo obsceno y biológico a"; +$a->strings["point out the poke feature to"] = "señalar la habilidad de toques a"; +$a->strings["pointed out the poke feature to"] = "señaló la habilidad de toques a"; +$a->strings["declare undying love for"] = "declarar amor incondicional a"; +$a->strings["declared undying love for"] = "declaró amor incondicional a"; +$a->strings["patent"] = "patentar"; +$a->strings["patented"] = "patentó"; +$a->strings["stroke beard"] = "acariciar barba"; +$a->strings["stroked their beard at"] = "acarició su barba a"; +$a->strings["bemoan the declining standards of modern secondary and tertiary education to"] = "deplorar los bajos estándares de educación secundaria y terciaria moderna a"; +$a->strings["bemoans the declining standards of modern secondary and tertiary education to"] = "deplora los bajos estándares de educación secundaria y terciaria moderna a"; +$a->strings["hug"] = "abrazar"; +$a->strings["hugged"] = "abrazó a"; +$a->strings["kiss"] = "besar"; +$a->strings["kissed"] = "besó a"; +$a->strings["raise eyebrows at"] = "alzar las cejas a"; +$a->strings["raised their eyebrows at"] = "alzó sus cejas a"; +$a->strings["insult"] = "insultar"; +$a->strings["insulted"] = "insultó a"; +$a->strings["praise"] = "alabar"; +$a->strings["praised"] = "alabó a"; +$a->strings["be dubious of"] = "dudar de"; +$a->strings["was dubious of"] = "dudó de"; +$a->strings["eat"] = "comer"; +$a->strings["ate"] = "comió"; +$a->strings["giggle and fawn at"] = "reír y carcajearse de"; +$a->strings["giggled and fawned at"] = "rió y se carcajeó de"; +$a->strings["doubt"] = "dudar"; +$a->strings["doubted"] = "dudó"; +$a->strings["glare"] = "mirar fijamente"; +$a->strings["glared at"] = "miró fijamente a"; +$a->strings["YourLS Settings"] = "Tu configuración LS"; +$a->strings["URL: http://"] = "Dirección: http://"; +$a->strings["Username:"] = "Nombre de Usuario:"; +$a->strings["Password:"] = "Contraseña:"; +$a->strings["Use SSL "] = "Usar SSL "; +$a->strings["yourls Settings saved."] = "La configuración se ha guardado."; +$a->strings["Post to LiveJournal"] = "Publicar en Livejournal"; +$a->strings["LiveJournal Post Settings"] = "Configuración de las publicaciones en Livejournal"; +$a->strings["Enable LiveJournal Post Plugin"] = "Activar el módulo de publicación en Livejournal"; +$a->strings["LiveJournal username"] = "Nombre de usuario de Livejournal"; +$a->strings["LiveJournal password"] = "Contraseña de Livejournal"; +$a->strings["Post to LiveJournal by default"] = "Publicar en Livejournal por defecto"; +$a->strings["Not Safe For Work (General Purpose Content Filter) settings"] = "Configuración \"Not Safe For Work\" (Filtro de contenido de carácter general)"; +$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."] = "Este complemento busca las palabras clave que especifiques y oculta cualquier comentario que contenga dichas claves, para que no aparezcan en momentos inoportunos, como por ejemplo, material sexual. Se considera de buena educación y correcto etiquetar los desnudos con #NSFW. Este filtro puede servir para filtrar otro contenido, así que te puede servir como un filtro de carácter general, escogiendo las palabras clave adecuadas."; +$a->strings["Enable Content filter"] = "Activar el filtro de contenido"; +$a->strings["Comma separated list of keywords to hide"] = "Palabras clave para ocultar, lista separada por comas"; +$a->strings["Use /expression/ to provide regular expressions"] = "Usa /expresión/ para proporcionar expresiones regulares"; $a->strings["NSFW Settings saved."] = "Configuración NSFW guardada."; -$a->strings["%s - Click to open/close"] = "%s - Haga clic para abrir/cerrar"; +$a->strings["%s - Click to open/close"] = "%s - Pulsa aquí para abrir/cerrar"; +$a->strings["Forums"] = "Foros"; +$a->strings["Forums:"] = "Foros:"; +$a->strings["Page settings updated."] = "Configuración de la página actualizada"; +$a->strings["Page Settings"] = "Configuración de la página"; +$a->strings["How many forums to display on sidebar without paging"] = "¿Cuántos foros se mostrarán en la barra lateral?"; +$a->strings["Randomise Page/Forum list"] = "Lista de Página/Foro al azar"; +$a->strings["Show pages/forums on profile page"] = "Mostrar páginas/foros en tu perfil"; +$a->strings["Planets Settings"] = "Configuración de Planets"; +$a->strings["Enable Planets Plugin"] = "Activar el módulo de planetas Planets"; +$a->strings["Login"] = "Acceder"; $a->strings["OpenID"] = "OpenID"; -$a->strings["Last users"] = "Últimos usuarios"; +$a->strings["Latest users"] = "Últimos usuarios"; $a->strings["Most active users"] = "Usuarios más activos"; -$a->strings["Last photos"] = "Últimas fotos"; -$a->strings["Last likes"] = "Últimos \"me gusta\""; +$a->strings["Latest photos"] = "Últimas fotos"; +$a->strings["Latest likes"] = "Últimos me gusta"; $a->strings["event"] = "evento"; -$a->strings[" - Member since: %s"] = "- Miembro desde: %s"; +$a->strings["No access"] = "Sin acceso"; +$a->strings["Could not open component for editing"] = "No se puede abrir para editar"; +$a->strings["Go back to the calendar"] = "Volver al calendario"; +$a->strings["Event data"] = "Datos del evento"; +$a->strings["Calendar"] = "Calendario"; +$a->strings["Special color"] = "Color especial"; +$a->strings["Subject"] = "Asunto"; +$a->strings["Starts"] = "Comienzo"; +$a->strings["Ends"] = "Final"; +$a->strings["Description"] = "Descripción"; +$a->strings["Recurrence"] = "Recurrencia"; +$a->strings["Frequency"] = "Frecuencia"; +$a->strings["Daily"] = "Diariamente"; +$a->strings["Weekly"] = "Semanalmente"; +$a->strings["Monthly"] = "Mensualmente"; +$a->strings["Yearly"] = "Anual"; +$a->strings["days"] = "días"; +$a->strings["weeks"] = "semanas"; +$a->strings["months"] = "meses"; +$a->strings["years"] = "años"; +$a->strings["Interval"] = "Intérvalo"; +$a->strings["All %select% %time%"] = "Todos %select% %time%"; +$a->strings["Days"] = "Días"; +$a->strings["Sunday"] = "Domingo"; +$a->strings["Monday"] = "Lunes"; +$a->strings["Tuesday"] = "Martes"; +$a->strings["Wednesday"] = "Miércoles"; +$a->strings["Thursday"] = "Jueves"; +$a->strings["Friday"] = "Viernes"; +$a->strings["Saturday"] = "Sábado"; +$a->strings["First day of week:"] = "Primer día de la semana:"; +$a->strings["Day of month"] = "Día del mes"; +$a->strings["#num#th of each month"] = "#num#º de cada mes"; +$a->strings["#num#th-last of each month"] = "#num#º antes del último de cada mes"; +$a->strings["#num#th #wkday# of each month"] = "#num#º #wkday# de cada mes"; +$a->strings["#num#th-last #wkday# of each month"] = "#num#º antes del último #wkday# de cada mes"; +$a->strings["Month"] = "Mes"; +$a->strings["#num#th of the given month"] = "#num#º del mes dado"; +$a->strings["#num#th-last of the given month"] = "#num#º antes del último del mes dado"; +$a->strings["#num#th #wkday# of the given month"] = "#num#º #wkday# del mes dado"; +$a->strings["#num#th-last #wkday# of the given month"] = "#num#º antes del último #wkday# del mes dado"; +$a->strings["Repeat until"] = "Repetir hasta"; +$a->strings["Infinite"] = "Infinito"; +$a->strings["Until the following date"] = "Hasta la fecha siguiente"; +$a->strings["Number of times"] = "Número de veces"; +$a->strings["Exceptions"] = "Excepciones"; +$a->strings["none"] = "ninguno"; +$a->strings["Notification"] = "Notificación"; +$a->strings["Notify by"] = "Notificar por"; +$a->strings["E-Mail"] = "Correo electrónico"; +$a->strings["On Friendica / Display"] = "Sobre Friendica / Mostrar"; +$a->strings["Time"] = "Hora"; +$a->strings["Hours"] = "Horas"; +$a->strings["Minutes"] = "Minutos"; +$a->strings["Seconds"] = "Segundos"; +$a->strings["Weeks"] = "Semanas"; +$a->strings["before the"] = "antes de"; +$a->strings["start of the event"] = "inicio del evento"; +$a->strings["end of the event"] = "final del evento"; +$a->strings["Add a notification"] = "Añadir una notificación"; +$a->strings["The event #name# will start at #date"] = "El evento #name# comenzará el #date"; +$a->strings["#name# is about to begin."] = "#name# está a punto de comenzar."; +$a->strings["Saved"] = "Guardado"; +$a->strings["U.S. Time Format (mm/dd/YYYY)"] = "Hora, formato anglosajón (mm/dd/aaaa)"; +$a->strings["German Time Format (dd.mm.YYYY)"] = "Hora, formato europeo (dd.mm.aaaa)"; +$a->strings["Private Events"] = "Eventos privados"; +$a->strings["Private Addressbooks"] = "Libretas de direcciones privada"; +$a->strings["Friendica-Native events"] = "Eventos nativos de Friendica"; +$a->strings["Friendica-Contacts"] = "Contactos de Friendica"; +$a->strings["Your Friendica-Contacts"] = "Tus Contactos de Friendica"; +$a->strings["Something went wrong when trying to import the file. Sorry. Maybe some events were imported anyway."] = "Algo salió mal al importar el archivo. Lo sentimos. Puede que algunos eventos se hayan importado."; +$a->strings["Something went wrong when trying to import the file. Sorry."] = "Algo salió mal al importar el archivo. Lo sentimos."; +$a->strings["The ICS-File has been imported."] = "El archivo ICS ha sido importado."; +$a->strings["No file was uploaded."] = "No se ha importado ningún archivo."; +$a->strings["Import a ICS-file"] = "Importar archivo ICS"; +$a->strings["ICS-File"] = "Archivo ICS"; +$a->strings["Overwrite all #num# existing events"] = "Sobreescribir los #num# eventos existentes"; +$a->strings["New event"] = "Evento nuevo"; +$a->strings["Today"] = "Hoy"; +$a->strings["Day"] = "Día"; +$a->strings["Week"] = "Semana"; +$a->strings["Reload"] = "Recargar"; +$a->strings["Date"] = "Fecha"; +$a->strings["Error"] = "Error"; +$a->strings["The calendar has been updated."] = "El calendario ha sido actualizado."; +$a->strings["The new calendar has been created."] = "Se ha creado un nuevo calendario."; +$a->strings["The calendar has been deleted."] = "El calendario se ha borrado."; +$a->strings["Calendar Settings"] = "Configuración del Calendario"; +$a->strings["Date format"] = "Formato de fecha"; +$a->strings["Time zone"] = "Zona horaria"; +$a->strings["Calendars"] = "Calendarios"; +$a->strings["Create a new calendar"] = "Crear un nuevo calendario"; +$a->strings["Limitations"] = "Limitaciones"; +$a->strings["Warning"] = "Aviso"; +$a->strings["Synchronization (iPhone, Thunderbird Lightning, Android, ...)"] = "Sincronización (iPhone, Thunderbird Lightning, Android...)"; +$a->strings["Synchronizing this calendar with the iPhone"] = "Sincronizar este calendario con iPhone"; +$a->strings["Synchronizing your Friendica-Contacts with the iPhone"] = "Sincronizar tus contactos de Friendica con iPhone"; +$a->strings["The current version of this plugin has not been set up correctly. Please contact the system administrator of your installation of friendica to fix this."] = "La versión actual de este módulo no se ha ajustado correctamente. Por favor contacta al administrador de sistema de tu instalación de Friendica para arreglarlo."; +$a->strings["Extended calendar with CalDAV-support"] = "Calendario ampliado con soporte CalDAV"; +$a->strings["noreply"] = "no responder"; +$a->strings["Notification: "] = "Notificación:"; +$a->strings["The database tables have been installed."] = "Se han instalado las tablas de la base de datos."; +$a->strings["An error occurred during the installation."] = "Ha ocurrido un error durante la instalación."; +$a->strings["The database tables have been updated."] = "Las tablas de la base de datos han sido actualizadas."; +$a->strings["An error occurred during the update."] = "Ocurrió un error durante la actualización."; +$a->strings["No system-wide settings yet."] = "No se han configurado aún los ajustes del sistema."; +$a->strings["Database status"] = "Estado de la base de datos"; +$a->strings["Installed"] = "Instalada"; +$a->strings["Upgrade needed"] = "Actualización necesaria"; +$a->strings["Please back up all calendar data (the tables beginning with dav_*) before proceeding. While all calendar events should be converted to the new database structure, it's always safe to have a backup. Below, you can have a look at the database-queries that will be made when pressing the 'update'-button."] = "Por favor respalda todos los datos de calendario (las tablas que comienzan con dav_*) antes de continuar. Aunque todos los eventos de calendario deberían convertirse a la nueva estructura de base de datos, siempre es seguro tener un respaldo. Abajo, puedes ver las consultas a la base de datos que se realizarán cuando presiones el botón de 'actualizar'."; +$a->strings["Upgrade"] = "Actualizada"; +$a->strings["Not installed"] = "Sin instalar"; +$a->strings["Install"] = "Instalar"; +$a->strings["Unknown"] = "Desconocido"; +$a->strings["Something really went wrong. I cannot recover from this state automatically, sorry. Please go to the database backend, back up the data, and delete all tables beginning with 'dav_' manually. Afterwards, this installation routine should be able to reinitialize the tables automatically."] = "Ha ocurrido algo muy malo. No puedo recuperarme automáticamente de este estado, lo siento. Por favor ve al manejador de fondo de la base de datos, respalda los datos, y borra todas las tablas que comienzan con 'dav_' manualmente. Después de eso, esta rutina de instalación debería de ser capaz de reinicializar las tablas automáticamente."; +$a->strings["Troubleshooting"] = "Problemas"; +$a->strings["Manual creation of the database tables:"] = "Manual para la creación de las tablas de la base de datos:"; +$a->strings["Show SQL-statements"] = "Mostrar declaraciones SQL"; +$a->strings["Private Calendar"] = "Calendario privado"; +$a->strings["Friendica Events: Mine"] = "Eventos de Friendica: Propios"; +$a->strings["Friendica Events: Contacts"] = "Eventos de Friendica: Contactos"; +$a->strings["Private Addresses"] = "Direcciones privadas"; +$a->strings["Friendica Contacts"] = "Contactos de Friendica"; +$a->strings["Allow to use your friendica id (%s) to connecto to external unhosted-enabled storage (like ownCloud). See RemoteStorage WebFinger"] = "Permitir el uso de tu ID de Friendica (%s) para conexiones de almacenamiento externo sin alojamiento activado (como OwnCloud). Mira RemoteStorage WebFinger"; +$a->strings["Template URL (with {category})"] = "Dirección de la plantilla (con {categoría})"; +$a->strings["OAuth end-point"] = "Punto final OAuth"; +$a->strings["Api"] = "API"; +$a->strings["Member since:"] = "Miembro desde:"; +$a->strings["Three Dimensional Tic-Tac-Toe"] = "Tres en Raya tridimensional"; +$a->strings["3D Tic-Tac-Toe"] = "Tres en Raya 3D"; +$a->strings["New game"] = "Nueva partida"; +$a->strings["New game with handicap"] = "Nuevo juego con handicap"; +$a->strings["Three dimensional tic-tac-toe is just like the traditional game except that it is played on multiple levels simultaneously. "] = "Tres en Raya tridimensional es como el juego tradicional, excepto que se juega en varios niveles simultáneamente."; +$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."] = "En este caso hay tres niveles. Ganarás por conseguir tres en raya en cualquier nivel, así como arriba, abajo y en diagonal a través de los diferentes niveles."; +$a->strings["The handicap game disables the center position on the middle level because the player claiming this square often has an unfair advantage."] = "El juego con handicap desactiva la posición central en el nivel medio porque el jugador que la ocupa tiene a menudo una ventaja injusta."; +$a->strings["You go first..."] = "Comienzas tú..."; +$a->strings["I'm going first this time..."] = "Yo voy primero esta vez..."; +$a->strings["You won!"] = "¡Has ganado!"; +$a->strings["\"Cat\" game!"] = "¡Empate!"; +$a->strings["I won!"] = "¡He ganado!"; $a->strings["Randplace Settings"] = "Configuración de Randplace"; -$a->strings["Enable Randplace Plugin"] = "Activar el módulo Randplace"; -$a->strings["This website is tracked using the Piwik analytics tool."] = "Este sitio web realiza un seguimiento mediante la herramienta de análisis Piwik."; -$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)."] = "Si no quieres que tus visitas sean registradas de esta manera usted puede establecer una cookie para evitar que Piwik realice un seguimiento de las visitas del sitio (opt-out)."; -$a->strings["Piwik Base URL"] = "Dirección base Piwik"; -$a->strings["Site ID"] = "ID del sitio"; -$a->strings["Show opt-out cookie link?"] = "¿Mostrar enlace a las cookies?"; +$a->strings["Enable Randplace Plugin"] = "Activar el módulo de lugar aleatorio Randplace"; +$a->strings["Post to Dreamwidth"] = "Publicar en Dreamwidth"; +$a->strings["Dreamwidth Post Settings"] = "Configuración de las publicaciones en Dreamwidth"; +$a->strings["Enable dreamwidth Post Plugin"] = "Activar el módulo de publicación en Dreamwidth"; +$a->strings["dreamwidth username"] = "Nombre de usuario de Dreamwidth"; +$a->strings["dreamwidth password"] = "Contraseña de Dreamwidth"; +$a->strings["Post to dreamwidth by default"] = "Publicar en Dreamwidth por defecto"; +$a->strings["Post to Drupal"] = "Publicar en Drupal"; +$a->strings["Drupal Post Settings"] = "Configuración de las publicaciones en Drupal"; +$a->strings["Enable Drupal Post Plugin"] = "Activar el módulo de publicación en Drupal"; +$a->strings["Drupal username"] = "Nombre de usuario de Drupal"; +$a->strings["Drupal password"] = "Contraseña de Drupal"; +$a->strings["Post Type - article,page,or blog"] = "Tipo de publicación: artículo, página o blog"; +$a->strings["Drupal site URL"] = "Dirección de Drupal"; +$a->strings["Drupal site uses clean URLS"] = "El sitio de Drupal usa direcciones URL simples"; +$a->strings["Post to Drupal by default"] = "Publicar en Drupal por defecto"; +$a->strings["Post from Friendica"] = "Publicado desde Friendica"; +$a->strings["Startpage Settings"] = "Configuración de página inicial"; +$a->strings["Home page to load after login - leave blank for profile wall"] = "Página por defecto, dejálo en blanco para cargar tu perfil"; +$a->strings["Examples: "network" or "notifications/system""] = "Ejemplos: "red" o "notificaciones/sistema""; +$a->strings["Geonames settings updated."] = "Configuración de Geonames actualizada."; +$a->strings["Geonames Settings"] = "Configuración de Geonames"; +$a->strings["Enable Geonames Plugin"] = "Activar el complemento de nombres geográficos Geonames"; +$a->strings["Your account on %s will expire in a few days."] = "Tu cuenta de %s expirará en pocos días."; +$a->strings["Your Friendica account is about to expire."] = "Tu cuenta de Friendica está a punto de expirar."; +$a->strings["Hi %1\$s,\n\nYour account on %2\$s will expire in less than five days. You may keep your account by logging in at least once every 30 days"] = "Hola %1\$s,\n\nTu cuenta en %2\$s expirará en menos de 5 días. Puedes mantenerla iniciando tu sesión una vez cada 30 días"; $a->strings["Upload a file"] = "Subir un archivo"; $a->strings["Drop files here to upload"] = "Arrastra los archivos aquí para subirlos"; $a->strings["Failed"] = "Falló"; -$a->strings["No files were uploaded."] = "No hay archivos subidos."; +$a->strings["No files were uploaded."] = "No se han subido archivos aún."; $a->strings["Uploaded file is empty"] = "El archivo subido está vacío"; $a->strings["File has an invalid extension, it should be one of "] = "El archivo tiene una extensión no válida, debería ser una de "; $a->strings["Upload was cancelled, or server error encountered"] = "La subida ha sido cancelada, o se encontró un error del servidor"; +$a->strings["OEmbed settings updated"] = "Actualizar la configuración de OEmbed"; +$a->strings["Use OEmbed for YouTube videos"] = "Usar OEmbed para los vídeos de YouTube"; +$a->strings["URL to embed:"] = "Dirección del recurso:"; +$a->strings["show/hide"] = "mostrar/ocultar"; +$a->strings["No forum subscriptions"] = "Foro sin suscrpciones"; +$a->strings["Forumlist settings updated."] = "Ajustes de lista de foros actualizados."; +$a->strings["Forumlist Settings"] = "Ajustes de lista de foros"; +$a->strings["Randomise Forumlist/Forum list"] = "Aleatorizar lista de foros"; +$a->strings["Show forumlists/forums on profile forumlist"] = "Mostrar lista de foros en perfil forumlist"; +$a->strings["Impressum"] = "Términos y Política del sitio"; +$a->strings["Site Owner"] = "Propietario"; +$a->strings["Email Address"] = "Dirección de correo"; +$a->strings["Postal Address"] = "Dirección"; +$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."] = "Impressum necesita ser configurado.
    Por favor añade al menos la variable propietario a tu archivo de configuración. Para otras variables lee el archivo README."; +$a->strings["The page operators name."] = "Nombre del operador de la página."; +$a->strings["Site Owners Profile"] = "Perfil del propietario del sitio"; +$a->strings["Profile address of the operator."] = "Dirección del perfil del operador."; +$a->strings["How to contact the operator via snail mail. You can use BBCode here."] = "Cómo contactar con el operador vía correo postal. BBCode permitido."; +$a->strings["Notes"] = "Notas"; +$a->strings["Additional notes that are displayed beneath the contact information. You can use BBCode here."] = "Notas adicionales que se mostrarán bajo la información del contacto. BBCode permitido."; +$a->strings["How to contact the operator via email. (will be displayed obfuscated)"] = "Cómo contactar con el operador vía email (aparecerá oculto)"; +$a->strings["Footer note"] = "Nota a pie"; +$a->strings["Text for the footer. You can use BBCode here."] = "Texto para el Pie de página. BBCode permitido."; +$a->strings["Report Bug"] = "Informe de errores"; +$a->strings["No Timeline settings updated."] = "Configuración Sin Linea Temporal actualizada."; +$a->strings["No Timeline Settings"] = "Configuración Sin Linea Temporal"; +$a->strings["Disable Archive selector on profile wall"] = "Desactivar el selector de archivos en el muro del perfil"; +$a->strings["\"Blockem\" Settings"] = "Configuración de \"Blockem\""; +$a->strings["Comma separated profile URLS to block"] = "Direcciones separadas por coma de los perfiles a bloquear"; +$a->strings["BLOCKEM Settings saved."] = "Configuracion Blockem guardada."; +$a->strings["Blocked %s - Click to open/close"] = "%s bloqueado. Pulsa aquí para mostrar/ocultar"; +$a->strings["Unblock Author"] = "Desbloquear Autor"; +$a->strings["Block Author"] = "Bloquear Autor"; +$a->strings["blockem settings updated"] = "Configuración de Blockem actualizada"; +$a->strings[":-)"] = ":-)"; +$a->strings[":-("] = ":-("; +$a->strings["lol"] = "XD"; +$a->strings["Quick Comment Settings"] = "Configuración de Qcomment"; +$a->strings["Quick comments are found near comment boxes, sometimes hidden. Click them to provide simple replies."] = "Qcomments son comentarios rápidos que se encuentran cerca del cuadro de texto, a veces ocultos. Pulsa en ellos para dar respuestas simples."; +$a->strings["Enter quick comments, one per line"] = "Introduce comentarios rápidos, uno por línea"; +$a->strings["Quick Comment settings saved."] = "Configuración de Qcomment guardada."; +$a->strings["Tile Server URL"] = "Dirección del servidor"; +$a->strings["A list of public tile servers"] = "Un listado de servidores públicos"; +$a->strings["Default zoom"] = "Zoom por defecto"; +$a->strings["The default zoom level. (1:world, 18:highest)"] = "Nivel de zoom predeterminado. (1:mínimo, 18:máximo)"; +$a->strings["Editplain settings updated."] = "Configuración del Editor de texto plano actualizada."; +$a->strings["Group Text"] = "Texto agrupado"; +$a->strings["Use a text only (non-image) group selector in the \"group edit\" menu"] = "Usar selector de grupos solo texto (sin imágenes) en el menú \"editar grupo\""; +$a->strings["Could NOT install Libravatar successfully.
    It requires PHP >= 5.3"] = "Libravatar puede no haberse instalado correctamente.
    Requiere PHP >=5.3"; +$a->strings["generic profile image"] = "imagen genérica del perfil"; +$a->strings["random geometric pattern"] = "patrón geométrico aleatorio"; +$a->strings["monster face"] = "monstruosa"; +$a->strings["computer generated face"] = "generada por ordenador"; +$a->strings["retro arcade style face"] = "estilo retro arcade"; +$a->strings["Your PHP version %s is lower than the required PHP >= 5.3."] = "Tu versión de PHP %s, menor que la requerida (PHP >=5.3)."; +$a->strings["This addon is not functional on your server."] = "Esta funcionalidad no está activa en tu servidor."; +$a->strings["Information"] = "Información"; +$a->strings["Gravatar addon is installed. Please disable the Gravatar addon.
    The Libravatar addon will fall back to Gravatar if nothing was found at Libravatar."] = "El complemento Gravatar está instalado. Por favor, desactiva dicho complemento.
    El complemento Libravatar usará Gravatar si no encuentra nada en Libravatar."; +$a->strings["Default avatar image"] = "Imagen del avatar por defecto"; +$a->strings["Select default avatar image if none was found. See README"] = "Elige una imagen para tu avatar si no se encuentra ninguna (ver README)"; +$a->strings["Libravatar settings updated."] = "Configuración de Libravatar actualizada."; +$a->strings["Post to libertree"] = "Publicar en Libertree"; +$a->strings["libertree Post Settings"] = "Configuración de la publicación en Libertree"; +$a->strings["Enable Libertree Post Plugin"] = "Activar el módulo de publicación en Libertree"; +$a->strings["Libertree API token"] = "Ficha API de Libertree"; +$a->strings["Libertree site URL"] = "Dirección de Libertree"; +$a->strings["Post to Libertree by default"] = "Publicar en Libertree por defecto"; +$a->strings["Altpager settings updated."] = "Configuración de paginador alternativo actualizada."; +$a->strings["Alternate Pagination Setting"] = "Configuración de paginación alternativa"; +$a->strings["Use links to \"newer\" and \"older\" pages in place of page numbers?"] = "¿Usar \"más nuevo\" y \"más antiguo\" en vez de números en las páginas?"; +$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."] = "El complemento MathJax renderiza las fórmulas matemáticas escritas usando la sintaxis de LaTeX rodeadas por el habitual $ $ o un bloque de eqnarray en las publicaciones de tu muro, pestaña de red y correo privado."; +$a->strings["Use the MathJax renderer"] = "Usar renderizado Mathjax"; +$a->strings["MathJax Base URL"] = "Dirección base de Mathjax"; +$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 dirección para el archivo javascript debe estar incluida para usar Mathjax. Puede ser Mathjax CDN o cualquier otra instalación de Mathjax."; +$a->strings["Editplain Settings"] = "Configuración del Editor de texto plano"; +$a->strings["Disable richtext status editor"] = "Desactivar el editor de texto enriquecido"; +$a->strings["Libravatar addon is installed, too. Please disable Libravatar addon or this Gravatar addon.
    The Libravatar addon will fall back to Gravatar if nothing was found at Libravatar."] = "El complemento Libravatar también está instalado. Por favor desactiva este complemento o el complemento de Gravatar.
    El complemento Libravatar usará Gravatar si no encuentra nada en Libravatar."; +$a->strings["Select default avatar image if none was found at Gravatar. See README"] = "Selecionar la imagen del avatar por defecto si no se ha encontrado ninguna en Gravatar. Mira el README"; +$a->strings["Rating of images"] = "Valoración de las imágenes"; +$a->strings["Select the appropriate avatar rating for your site. See README"] = "Selecciona el avatar de clasificación apropiado para tu sitio. Ver README"; +$a->strings["Gravatar settings updated."] = "Configuración de Gravatar actualizada."; +$a->strings["Your Friendica test account is about to expire."] = "Tu cuenta de prueba de Friendica está a punto de expirar."; +$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."] = "Hola %1\$s,\n\nTu cuenta de prueba en %2\$s expirará en menos de 5 días. Esperamos que hayas disfrutado de la experiencia y te decidas a unirte a la red social de Friendica. Dispones de un listado de servidores disponibles en http://dir.friendica.com/siteinfo Para saber más sobre cómo crear tu propio servidor de Friendica puedes visitar la web del Proyecto Friendica en http://friendica.com."; +$a->strings["\"pageheader\" Settings"] = "Configuración de cabecera"; +$a->strings["pageheader Settings saved."] = "Configuración de cabecera de página guardada."; +$a->strings["Post to Insanejournal"] = "Publicar en Insanejournal"; +$a->strings["InsaneJournal Post Settings"] = "Configuración de publicación en Insanejournal"; +$a->strings["Enable InsaneJournal Post Plugin"] = "Activar el módulo de publicación en Insanejournal"; +$a->strings["InsaneJournal username"] = "Nombre de usuario de Insanejournal"; +$a->strings["InsaneJournal password"] = "Contraseña de Insanejournal"; +$a->strings["Post to InsaneJournal by default"] = "Publicar en Insanejournal por defecto"; +$a->strings["Jappix Mini addon settings"] = "Ajustes de complemento Jappix Mini"; +$a->strings["Activate addon"] = "Activar complemento"; +$a->strings["Do not insert the Jappixmini Chat-Widget into the webinterface"] = "No insertar la aplicación de chat Jappixmini en la interfaz web"; +$a->strings["Jabber username"] = "Nombre de usuario de Jabber"; +$a->strings["Jabber server"] = "Servidor de Jabber"; +$a->strings["Jabber BOSH host"] = "Anfitrión BOSH de Jabber"; +$a->strings["Jabber password"] = "Contraseña de Jabber"; +$a->strings["Encrypt Jabber password with Friendica password (recommended)"] = "Encriptar contraseña de Jabber con la contraseña de Friendica (recomendado)"; +$a->strings["Friendica password"] = "Contraseña de Friendica"; +$a->strings["Approve subscription requests from Friendica contacts automatically"] = "Aprobar peticiones de suscripción de contactos de Friendica automáticamente"; +$a->strings["Subscribe to Friendica contacts automatically"] = "Suscribirse a contactos de Friendica automáticamente"; +$a->strings["Purge internal list of jabber addresses of contacts"] = "Purgar los contactos de la lista interna de direcciones de Jabber"; +$a->strings["Add contact"] = "Añadir contacto"; +$a->strings["View Source"] = "Ver fuente"; +$a->strings["Post to StatusNet"] = "Publicar en StatusNet"; +$a->strings["Please contact your site administrator.
    The provided API URL is not valid."] = "Por favor, contacta con el administrador de tu web.
    La dirección API suministrada no es válida."; +$a->strings["We could not contact the StatusNet API with the Path you entered."] = "No podemos contantar con StatusNet en la ruta que has especificado."; +$a->strings["StatusNet settings updated."] = "Actualición de la configuración de StatusNet."; +$a->strings["StatusNet Posting Settings"] = "Configuración de envío a StatusNet"; +$a->strings["Globally Available StatusNet OAuthKeys"] = "StatusNet OAuthKeys disponibles para todos"; +$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)."] = "Existen pares de valores OAuthKey preconfigurados para algunos servidores. Si usas uno de ellos, por favor usa estas credenciales. De los contrario no dudes en conectar con cualquiera otra instancia de StatusNet (ver a continuación)."; +$a->strings["Provide your own OAuth Credentials"] = "Proporciona tus propias credenciales OAuth"; +$a->strings["No consumer key pair for StatusNet found. Register your Friendica Account as an desktop client on your StatusNet account, copy the consumer key pair here and enter the API base root.
    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."] = "No se ha encontrado ningún par de claves consumer para StatusNet. Registra tu cuenta de Friendica como un cliente de escritorio en tu cuenta de StatusNet, copia el par de claves consumer aquí e introduce la dirección de la API.
    Antes de registrar tu propio par de claves OAuth pregunta a tu administrador si ya existe un par de claves para esa instalación de Friendica en tu instalación StatusNet favorita."; +$a->strings["OAuth Consumer Key"] = "Clave OAuth del usuario"; +$a->strings["OAuth Consumer Secret"] = "Secreto OAuth del usuario"; +$a->strings["Base API Path (remember the trailing /)"] = "Dirección de la API (recordar el / al final)"; +$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."] = "Para conectarte a tu cuenta de StatusNet haz clic en el botón abajo para obtener un PIN de StatusNet, que tienes que copiar en el cuadro de entrada y enviar el formulario. Solo tus publicaciones públicas se publicarán en StatusNet."; +$a->strings["Log in with StatusNet"] = "Inicia sesión en StatusNet"; +$a->strings["Copy the security code from StatusNet here"] = "Copia el código de seguridad de StatusNet aquí"; +$a->strings["Cancel Connection Process"] = "Cancelar la conexión en proceso"; +$a->strings["Current StatusNet API is"] = "El estado actual de la API de StatusNet es"; +$a->strings["Cancel StatusNet Connection"] = "Cancelar conexión con StatusNet"; +$a->strings["Currently connected to: "] = "Actualmente conectado a:"; +$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."] = "Si lo habilitas todas tus publicaciones públicas podrán ser publicadas en la cuenta asociada de StatusNet. Pudes elegir hacerlo por defecto (aquí) o para cada publicación individualmente en las opciones de publicacion cuando las escribes."; +$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."] = "Nota: Debido a tus opciones de privacidad (¿Ocultar los detalles de tu perfil de espectadores desconocidos?) el vínculo potencialmente incluido en publicaciones públicas que se transmiten a StatusNet conducirá al visitante a una página en blanco que informa a los visitantes que el acceso a tu perfil es restringido."; +$a->strings["Allow posting to StatusNet"] = "Permitir publicaciones en StatusNet"; +$a->strings["Send public postings to StatusNet by default"] = "Enviar publicaciones públicas a StatusNet por defecto"; +$a->strings["Send linked #-tags and @-names to StatusNet"] = "Enviar a StatusNet las #-etiquetas y @-nombres"; +$a->strings["Clear OAuth configuration"] = "Borrar la configuración de OAuth"; +$a->strings["API URL"] = "Dirección de la API"; +$a->strings["Infinite Improbability Drive"] = "Unidad de improbabilidad infinita"; +$a->strings["Post to Tumblr"] = "Publicar en Tumblr"; +$a->strings["Tumblr Post Settings"] = "Configuración de publicación en Tumblr"; +$a->strings["Enable Tumblr Post Plugin"] = "Habilitar el módulo de publicación en Tumblr"; +$a->strings["Tumblr login"] = "Tumblr - inicio de sesión"; +$a->strings["Tumblr password"] = "Tumblr - contraseña"; +$a->strings["Post to Tumblr by default"] = "Publicar en Tumblr por defecto"; +$a->strings["Numfriends settings updated."] = "Configuración del Contador de contactos actualizada"; +$a->strings["Numfriends Settings"] = "Configuración del Contador de contactos"; +$a->strings["Gnot settings updated."] = "Configuración de Gnot actualizada."; +$a->strings["Gnot Settings"] = "Configuración de Gnot"; +$a->strings["Allows threading of email comment notifications on Gmail and anonymising the subject line."] = "Permitir el enhebrado en las notificaciones de comentarios de correo en Gmail y hacer anónima la línea de \"Asunto\"."; +$a->strings["Enable this plugin/addon?"] = "¿Activar este módulo/extensión?"; +$a->strings["[Friendica:Notify] Comment to conversation #%d"] = "[Friendica:Notificación] Comentario en la conversación de #%d"; $a->strings["Post to Wordpress"] = "Publicar en Wordpress"; $a->strings["WordPress Post Settings"] = "Configuración de publicación en Wordpres"; -$a->strings["Enable WordPress Post Plugin"] = "Habilitar el plugin de publicación en Wordpress"; +$a->strings["Enable WordPress Post Plugin"] = "Habilitar el módulo de publicación en Wordpress"; $a->strings["WordPress username"] = "WordPress - nombre de usuario"; $a->strings["WordPress password"] = "WordPress - contraseña"; $a->strings["WordPress API URL"] = "WordPress - dirección API"; $a->strings["Post to WordPress by default"] = "Publicar a WordPress por defecto"; -$a->strings["(no subject)"] = "(sin asunto)"; +$a->strings["Provide a backlink to the Friendica post"] = "Añade un enlace de vuelta a la publicación de Friendica"; +$a->strings["Read the original post and comment stream on Friendica"] = "Leer la publicación original y los comentarios en Friendica"; +$a->strings["\"Show more\" Settings"] = "Configuración de \"Muéstrame más\""; +$a->strings["Enable Show More"] = "Activar Muéstrame más"; +$a->strings["Cutting posts after how much characters"] = "Cortar las publicaciones después de cuántos caracteres"; +$a->strings["Show More Settings saved."] = "Configuración de Muéstrame más guardada."; +$a->strings["This website is tracked using the Piwik analytics tool."] = "Este sitio realiza un seguimiento mediante la herramienta de análisis Piwik."; +$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)."] = "Si no quieres que tus visitas sean registradas de esta manera puedes establecer una cookie para evitar que Piwik realice un seguimiento de las visitas del sitio (opt-out)."; +$a->strings["Piwik Base URL"] = "Dirección base Piwik"; +$a->strings["Absolute path to your Piwik installation. (without protocol (http/s), with trailing slash)"] = "Ruta absoluta a tu instalación de Piwik (sin el protocolo (http/s) pero con la barra)."; +$a->strings["Site ID"] = "ID del sitio"; +$a->strings["Show opt-out cookie link?"] = "¿Mostrar enlace a las cookies?"; +$a->strings["Asynchronous tracking"] = "Seguimiento asíncrono"; +$a->strings["Post to Twitter"] = "Publicar en Twitter"; +$a->strings["Twitter settings updated."] = "Actualización de la configuración de Twitter"; +$a->strings["Twitter Posting Settings"] = "Configuración de publicaciones en Twitter"; +$a->strings["No consumer key pair for Twitter found. Please contact your site administrator."] = "No se ha encontrado ningún par de claves para Twitter. Póngase en contacto con el administrador del sitio."; +$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."] = "En esta instalación de Friendica el módulo de Twitter está activo pero aún no has conectado tu cuenta con la de Twitter. Para hacerlo, pulsa en el siguiente botón para obtener un PIN de Twitter, que deberás introducir en la casilla de abajo y enviar el formulario. Unicamente el contenido público que publiques será publicado en Twitter."; +$a->strings["Log in with Twitter"] = "Acceder con Twitter"; +$a->strings["Copy the PIN from Twitter here"] = "Copia el PIN de Twitter aquí"; +$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."] = "Si lo habilitas todas tus publicaciones públicas serán publicadas en la cuenta de Twitter asociada. Puedes elegir hacerlo por defecto (aquí) o individualmente para cada publicación usando las opciones cuando escribas."; +$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."] = "Nota: Debido a tus opciones de privacidad (¿Ocultar los detalles de tu perfil de espectadores desconocidos?) el vínculo potencialmente incluido en publicaciones públicas que se transmiten a Twitter conducirá al visitante a una página en blanco que informa a los visitantes que el acceso a tu perfil es restringido."; +$a->strings["Allow posting to Twitter"] = "Permitir publicar en Twitter"; +$a->strings["Send public postings to Twitter by default"] = "Enviar publicaciones públicas a Twitter por defecto"; +$a->strings["Send linked #-tags and @-names to Twitter"] = "Enviar a Twitter las #-etiquetas y @-nombres"; +$a->strings["Consumer key"] = "Clave del usuario"; +$a->strings["Consumer secret"] = "Secreto del usuario"; +$a->strings["IRC Settings"] = "Configuración IRC"; +$a->strings["Channel(s) to auto connect (comma separated)"] = "Conectar automáticamente a (canales separados por coma)"; +$a->strings["Popular Channels (comma separated)"] = "Canales populares (separados por coma)"; +$a->strings["IRC settings saved."] = "Configuración de IRC guardada."; +$a->strings["IRC Chatroom"] = "Sala de Chat IRC"; +$a->strings["Popular Channels"] = "Canales populares"; +$a->strings["Fromapp settings updated."] = ""; +$a->strings["FromApp Settings"] = ""; +$a->strings["The application name you would like to show your posts originating from."] = ""; +$a->strings["Use this application name even if another application was used."] = ""; +$a->strings["Post to blogger"] = "Publícar en Blogger"; +$a->strings["Blogger Post Settings"] = "Configuración de las publicaciones en Blogger"; +$a->strings["Enable Blogger Post Plugin"] = "Activar el módulo de publicación en Blogger"; +$a->strings["Blogger username"] = "Nombre de usuario de Blogger"; +$a->strings["Blogger password"] = "Contraseña de Blogger"; +$a->strings["Blogger API URL"] = "Dirección de la API de Blogger"; +$a->strings["Post to Blogger by default"] = "Publicar en Blogger por defecto"; +$a->strings["Post to Posterous"] = "Publicar en Posterous"; +$a->strings["Posterous Post Settings"] = "Configuración de las publicaciones en Posterous"; +$a->strings["Enable Posterous Post Plugin"] = "Activar el módulo de publicación en Posterous"; +$a->strings["Posterous login"] = "Entrar en Posterous"; +$a->strings["Posterous password"] = "Contraseña de Posterous"; +$a->strings["Posterous site ID"] = "ID de Posterous"; +$a->strings["Posterous API token"] = "API de Posterous"; +$a->strings["Post to Posterous by default"] = "Publicar en Posterous por defecto"; +$a->strings["Theme settings"] = "Configuración del Tema"; +$a->strings["Set resize level for images in posts and comments (width and height)"] = "Configurar el tamaño de las imágenes en las publicaciones"; +$a->strings["Set font-size for posts and comments"] = "Tamaño del texto para publicaciones y comentarios"; +$a->strings["Set theme width"] = "Establecer el ancho para el tema"; +$a->strings["Color scheme"] = "Esquema de color"; +$a->strings["Your posts and conversations"] = "Tus publicaciones y conversaciones"; +$a->strings["Your profile page"] = "Tu página de perfil"; +$a->strings["Your contacts"] = "Tus contactos"; +$a->strings["Your photos"] = "Tus fotos"; +$a->strings["Your events"] = "Tus eventos"; +$a->strings["Personal notes"] = "Notas personales"; +$a->strings["Your personal photos"] = "Tus fotos personales"; +$a->strings["Community Pages"] = "Páginas de Comunidad"; +$a->strings["Community Profiles"] = "Perfiles de la Comunidad"; +$a->strings["Last users"] = "Últimos usuarios"; +$a->strings["Last likes"] = "Últimos \"me gusta\""; +$a->strings["Last photos"] = "Últimas fotos"; +$a->strings["Find Friends"] = "Buscar amigos"; +$a->strings["Local Directory"] = "Directorio local"; +$a->strings["Similar Interests"] = "Intereses similares"; +$a->strings["Invite Friends"] = "Invitar amigos"; +$a->strings["Earth Layers"] = "Minimapa"; +$a->strings["Set zoomfactor for Earth Layers"] = "Configurar zoom en Minimapa"; +$a->strings["Set longitude (X) for Earth Layers"] = "Configurar longitud (X) en Minimapa"; +$a->strings["Set latitude (Y) for Earth Layers"] = "Configurar latitud (Y) en Minimapa"; +$a->strings["Help or @NewHere ?"] = "¿Ayuda o @NuevoAquí?"; +$a->strings["Connect Services"] = "Servicios conectados"; +$a->strings["Last Tweets"] = "Últimos tweets"; +$a->strings["Set twitter search term"] = "Establecer término de búsqueda en Twitter"; +$a->strings["don't show"] = "no mostrar"; +$a->strings["show"] = "mostrar"; +$a->strings["Show/hide boxes at right-hand column:"] = "Mostrar/Ocultar casillas en la columna derecha:"; +$a->strings["Set line-height for posts and comments"] = "Altura para las publicaciones y comentarios"; +$a->strings["Set resolution for middle column"] = "Resolución para la columna central"; +$a->strings["Set color scheme"] = "Configurar esquema de color"; +$a->strings["Set zoomfactor for Earth Layer"] = "Establecer zoom para Minimapa"; +$a->strings["Last tweets"] = "Últimos tweets"; +$a->strings["Alignment"] = "Alineación"; +$a->strings["Left"] = "Izquierda"; +$a->strings["Center"] = "Centrado"; +$a->strings["Set colour scheme"] = "Configurar esquema de color"; +$a->strings["j F, Y"] = "j F, Y"; +$a->strings["j F"] = "j F"; +$a->strings["Birthday:"] = "Fecha de nacimiento:"; +$a->strings["Age:"] = "Edad:"; +$a->strings["for %1\$d %2\$s"] = "por %1\$d %2\$s"; +$a->strings["Tags:"] = "Etiquetas:"; +$a->strings["Religion:"] = "Religión:"; +$a->strings["Hobbies/Interests:"] = "Aficiones/Intereses:"; +$a->strings["Contact information and Social Networks:"] = "Información de contacto y Redes sociales:"; +$a->strings["Musical interests:"] = "Intereses musicales:"; +$a->strings["Books, literature:"] = "Libros, literatura:"; +$a->strings["Television:"] = "Televisión:"; +$a->strings["Film/dance/culture/entertainment:"] = "Películas/baile/cultura/entretenimiento:"; +$a->strings["Love/Romance:"] = "Amor/Romance:"; +$a->strings["Work/employment:"] = "Trabajo/ocupación:"; +$a->strings["School/education:"] = "Escuela/estudios:"; $a->strings["Unknown | Not categorised"] = "Desconocido | No clasificado"; $a->strings["Block immediately"] = "Bloquear inmediatamente"; $a->strings["Shady, spammer, self-marketer"] = "Sospechoso, spammer, auto-publicidad"; @@ -955,19 +1654,19 @@ $a->strings["Reputable, has my trust"] = "Buena reputación, tiene mi confianza" $a->strings["Frequently"] = "Frequentemente"; $a->strings["Hourly"] = "Cada hora"; $a->strings["Twice daily"] = "Dos veces al día"; -$a->strings["Daily"] = "Diariamente"; -$a->strings["Weekly"] = "Semanalmente"; -$a->strings["Monthly"] = "Mensualmente"; $a->strings["OStatus"] = "OStatus"; $a->strings["RSS/Atom"] = "RSS/Atom"; $a->strings["Zot!"] = "Zot!"; +$a->strings["LinkedIn"] = "LinkedIn"; +$a->strings["XMPP/IM"] = "XMPP/IM"; +$a->strings["MySpace"] = "MySpace"; $a->strings["Male"] = "Hombre"; $a->strings["Female"] = "Mujer"; $a->strings["Currently Male"] = "Actualmente Hombre"; $a->strings["Currently Female"] = "Actualmente Mujer"; $a->strings["Mostly Male"] = "Mayormente Hombre"; $a->strings["Mostly Female"] = "Mayormente Mujer"; -$a->strings["Transgender"] = "Transgénero"; +$a->strings["Transgender"] = "Transgenérico"; $a->strings["Intersex"] = "Bisexual"; $a->strings["Transsexual"] = "Transexual"; $a->strings["Hermaphrodite"] = "Hermafrodita"; @@ -982,16 +1681,18 @@ $a->strings["Lesbian"] = "Lesbiana"; $a->strings["No Preference"] = "Sin preferencias"; $a->strings["Bisexual"] = "Bisexual"; $a->strings["Autosexual"] = "Autosexual"; -$a->strings["Abstinent"] = "Abstinente"; +$a->strings["Abstinent"] = "Célibe"; $a->strings["Virgin"] = "Virgen"; $a->strings["Deviant"] = "Desviado"; $a->strings["Fetish"] = "Fetichista"; -$a->strings["Oodles"] = "Orgías"; +$a->strings["Oodles"] = "Orgiástico"; $a->strings["Nonsexual"] = "Asexual"; $a->strings["Single"] = "Soltero"; $a->strings["Lonely"] = "Solitario"; $a->strings["Available"] = "Disponible"; $a->strings["Unavailable"] = "No disponible"; +$a->strings["Has crush"] = "Enamorado"; +$a->strings["Infatuated"] = "Loco/a por alguien"; $a->strings["Dating"] = "De citas"; $a->strings["Unfaithful"] = "Infiel"; $a->strings["Sex Addict"] = "Adicto al sexo"; @@ -1000,83 +1701,70 @@ $a->strings["Friends/Benefits"] = "Amigos con beneficios"; $a->strings["Casual"] = "Casual"; $a->strings["Engaged"] = "Comprometido/a"; $a->strings["Married"] = "Casado/a"; +$a->strings["Imaginarily married"] = "Casado imaginario"; $a->strings["Partners"] = "Socios"; $a->strings["Cohabiting"] = "Cohabitando"; +$a->strings["Common law"] = "Pareja de hecho"; $a->strings["Happy"] = "Feliz"; -$a->strings["Not Looking"] = "No estoy buscando"; +$a->strings["Not looking"] = "No busca relación"; $a->strings["Swinger"] = "Swinger"; $a->strings["Betrayed"] = "Traicionado/a"; $a->strings["Separated"] = "Separado/a"; $a->strings["Unstable"] = "Inestable"; $a->strings["Divorced"] = "Divorciado/a"; +$a->strings["Imaginarily divorced"] = "Divorciado imaginario"; $a->strings["Widowed"] = "Viudo/a"; $a->strings["Uncertain"] = "Incierto"; -$a->strings["Complicated"] = "Complicado"; +$a->strings["It's complicated"] = "Es complicado"; $a->strings["Don't care"] = "No te importa"; $a->strings["Ask me"] = "Pregúntame"; $a->strings["Starts:"] = "Inicio:"; $a->strings["Finishes:"] = "Final:"; -$a->strings["Visible to everybody"] = "Visible para cualquiera"; -$a->strings["show"] = "mostrar"; -$a->strings["don't show"] = "no mostrar"; -$a->strings["Logged out."] = "Sesión terminada"; -$a->strings["Image/photo"] = "Imagen/Foto"; -$a->strings["From: "] = "De:"; -$a->strings["View status"] = "Ver estado"; -$a->strings["View profile"] = "Ver perfirl"; -$a->strings["View photos"] = "Ver fotos"; -$a->strings["View recent"] = "Ver recientes"; -$a->strings["Send PM"] = "Enviar mensaje privado"; -$a->strings["Miscellaneous"] = "Varios"; -$a->strings["year"] = "año"; -$a->strings["month"] = "mes"; -$a->strings["day"] = "día"; -$a->strings["never"] = "nunca"; -$a->strings["less than a second ago"] = "hace menos de un segundo"; -$a->strings["years"] = "años"; -$a->strings["months"] = "meses"; -$a->strings["week"] = "semana"; -$a->strings["weeks"] = "semanas"; -$a->strings["days"] = "días"; -$a->strings["hour"] = "hora"; -$a->strings["hours"] = "horas"; -$a->strings["minute"] = "minuto"; -$a->strings["minutes"] = "minutos"; -$a->strings["second"] = "segundo"; -$a->strings["seconds"] = "segundos"; -$a->strings[" ago"] = " hace"; -$a->strings["Birthday:"] = "Fecha de nacimiento:"; -$a->strings["j F, Y"] = "j F, Y"; -$a->strings["j F"] = "j F"; -$a->strings["Age:"] = "Edad:"; -$a->strings["Religion:"] = "Religión:"; -$a->strings["About:"] = "Acerca de:"; -$a->strings["Hobbies/Interests:"] = "Aficiones/Intereses:"; -$a->strings["Contact information and Social Networks:"] = "Información de contacto y Redes sociales:"; -$a->strings["Musical interests:"] = "Intereses musicales:"; -$a->strings["Books, literature:"] = "Libros, literatura:"; -$a->strings["Television:"] = "Televisión:"; -$a->strings["Film/dance/culture/entertainment:"] = "Películas/baile/cultura/entretenimiento:"; -$a->strings["Love/Romance:"] = "Amor/Romance:"; -$a->strings["Work/employment:"] = "Trabajo/ocupación:"; -$a->strings["School/education:"] = "Escuela/estudios:"; +$a->strings["(no subject)"] = "(sin asunto)"; +$a->strings[" on Last.fm"] = "en Last.fm"; $a->strings["prev"] = "ant."; $a->strings["first"] = "primera"; $a->strings["last"] = "última"; $a->strings["next"] = "sig."; +$a->strings["newer"] = "más nuevo"; +$a->strings["older"] = "más antiguo"; $a->strings["No contacts"] = "Sin contactos"; $a->strings["%d Contact"] = array( 0 => "%d Contacto", 1 => "%d Contactos", ); -$a->strings["Search"] = "Buscar"; -$a->strings["Monday"] = "Lunes"; -$a->strings["Tuesday"] = "Martes"; -$a->strings["Wednesday"] = "Miércoles"; -$a->strings["Thursday"] = "Jueves"; -$a->strings["Friday"] = "Viernes"; -$a->strings["Saturday"] = "Sábado"; -$a->strings["Sunday"] = "Domingo"; +$a->strings["poke"] = "tocar"; +$a->strings["poked"] = "tocó a"; +$a->strings["ping"] = "hacer \"ping\""; +$a->strings["pinged"] = "hizo \"ping\" a"; +$a->strings["prod"] = "empujar"; +$a->strings["prodded"] = "empujó a"; +$a->strings["slap"] = "abofetear"; +$a->strings["slapped"] = "abofeteó a"; +$a->strings["finger"] = "meter dedo"; +$a->strings["fingered"] = "le metió un dedo a"; +$a->strings["rebuff"] = "desairar"; +$a->strings["rebuffed"] = "desairó a"; +$a->strings["happy"] = "feliz"; +$a->strings["sad"] = "triste"; +$a->strings["mellow"] = "sentimental"; +$a->strings["tired"] = "cansado"; +$a->strings["perky"] = "alegre"; +$a->strings["angry"] = "furioso"; +$a->strings["stupified"] = "estupefacto"; +$a->strings["puzzled"] = "extrañado"; +$a->strings["interested"] = "interesado"; +$a->strings["bitter"] = "rencoroso"; +$a->strings["cheerful"] = "jovial"; +$a->strings["alive"] = "vivo"; +$a->strings["annoyed"] = "enojado"; +$a->strings["anxious"] = "ansioso"; +$a->strings["cranky"] = "irritable"; +$a->strings["disturbed"] = "perturbado"; +$a->strings["frustrated"] = "frustrado"; +$a->strings["motivated"] = "motivado"; +$a->strings["relaxed"] = "relajado"; +$a->strings["surprised"] = "sorprendido"; $a->strings["January"] = "Enero"; $a->strings["February"] = "Febrero"; $a->strings["March"] = "Marzo"; @@ -1090,94 +1778,229 @@ $a->strings["October"] = "Octubre"; $a->strings["November"] = "Noviembre"; $a->strings["December"] = "Diciembre"; $a->strings["bytes"] = "bytes"; -$a->strings["Select an alternate language"] = "Elige otro idioma"; +$a->strings["Click to open/close"] = "Pulsa para abrir/cerrar"; $a->strings["default"] = "predeterminado"; -$a->strings["End this session"] = "Terminar esta sesión"; -$a->strings["Your posts and conversations"] = "Tus publicaciones y conversaciones"; -$a->strings["Your profile page"] = "Su página de perfil"; -$a->strings["Your photos"] = "Sus fotos"; -$a->strings["Your events"] = "Sus eventos"; -$a->strings["Personal notes"] = "Notas personales"; -$a->strings["Your personal photos"] = "Sus fotos personales"; +$a->strings["Select an alternate language"] = "Elige otro idioma"; +$a->strings["activity"] = "Actividad"; +$a->strings["post"] = "Publicación"; +$a->strings["Item filed"] = "Elemento archivado"; +$a->strings["Sharing notification from Diaspora network"] = "Compartir notificaciones con la red Diaspora*"; +$a->strings["Attachments:"] = "Archivos adjuntos:"; +$a->strings["view full size"] = "Ver a tamaño completo"; +$a->strings["Embedded content"] = "Contenido integrado"; +$a->strings["Embedding disabled"] = "Contenido incrustrado desabilitado"; +$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."] = "Un grupo eliminado con este nombre fue restablecido. Los permisos existentes pueden aplicarse a este grupo y a sus futuros miembros. Si esto no es lo que pretendes, por favor, crea otro grupo con un nombre diferente."; +$a->strings["Default privacy group for new contacts"] = "Grupo por defecto para nuevos contactos"; +$a->strings["Everybody"] = "Todo el mundo"; +$a->strings["edit"] = "editar"; +$a->strings["Edit group"] = "Editar grupo"; +$a->strings["Create a new group"] = "Crear un nuevo grupo"; +$a->strings["Contacts not in any group"] = "Contactos sin grupo"; +$a->strings["Logout"] = "Salir"; +$a->strings["End this session"] = "Cerrar la sesión"; +$a->strings["Status"] = "Estado"; $a->strings["Sign in"] = "Date de alta"; $a->strings["Home Page"] = "Página de inicio"; $a->strings["Create an account"] = "Crea una cuenta"; $a->strings["Help and documentation"] = "Ayuda y documentación"; $a->strings["Apps"] = "Aplicaciones"; -$a->strings["Addon applications, utilities, games"] = "APlicaciones, utilidades, juegos"; +$a->strings["Addon applications, utilities, games"] = "Aplicaciones, utilidades, juegos"; $a->strings["Search site content"] = " Busca contenido en la página"; $a->strings["Conversations on this site"] = "Conversaciones en este sitio"; $a->strings["Directory"] = "Directorio"; -$a->strings["People directory"] = "Directorio de gente"; +$a->strings["People directory"] = "Directorio de usuarios"; $a->strings["Conversations from your friends"] = "Conversaciones de tus amigos"; $a->strings["Friend Requests"] = "Solicitudes de amistad"; +$a->strings["See all notifications"] = "Ver todas las notificaciones"; +$a->strings["Mark all system notifications seen"] = "Marcar todas las notificaciones del sistema como leídas"; $a->strings["Private mail"] = "Correo privado"; +$a->strings["Inbox"] = "Entrada"; +$a->strings["Outbox"] = "Enviados"; $a->strings["Manage"] = "Administrar"; $a->strings["Manage other pages"] = "Administrar otras páginas"; +$a->strings["Profiles"] = "Perfiles"; +$a->strings["Manage/edit profiles"] = "Administrar/editar perfiles"; $a->strings["Manage/edit friends and contacts"] = "Administrar/editar amigos y contactos"; -$a->strings["Admin"] = "Admin"; $a->strings["Site setup and configuration"] = "Opciones y configuración del sitio"; -$a->strings["Nothing new here"] = "Nada nuevo aquí"; -$a->strings["Select"] = "Seleccionar"; -$a->strings["View %s's profile @ %s"] = "Ver perfil de %s @ %s"; -$a->strings["%s from %s"] = "%s de %s"; -$a->strings["View in context"] = "Verlo en contexto"; -$a->strings["See all %d comments"] = "Ver los %d comentarios"; -$a->strings["like"] = "me gusta"; -$a->strings["dislike"] = "no me gusta"; -$a->strings["Share this"] = "Compartir esto"; -$a->strings["share"] = "compartir"; -$a->strings["add star"] = "Añadir estrella"; -$a->strings["remove star"] = "Quitar estrella"; -$a->strings["toggle star status"] = "Añadir a destacados"; -$a->strings["starred"] = "marcados con estrellas"; -$a->strings["add tag"] = "añadir etiqueta"; -$a->strings["to"] = "a"; -$a->strings["Wall-to-Wall"] = "Muro-A-Muro"; -$a->strings["via Wall-To-Wall:"] = "via Muro-A-Muro:"; +$a->strings["Nothing new here"] = "Nada nuevo por aquí"; +$a->strings["Add New Contact"] = "Añadir nuevo contacto"; +$a->strings["Enter address or web location"] = "Escribe la dirección o página web"; +$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Ejemplo: miguel@ejemplo.com, http://ejemplo.com/miguel"; +$a->strings["%d invitation available"] = array( + 0 => "%d invitación disponible", + 1 => "%d invitaviones disponibles", +); +$a->strings["Find People"] = "Buscar personas"; +$a->strings["Enter name or interest"] = "Introduzce nombre o intereses"; +$a->strings["Connect/Follow"] = "Conectar/Seguir"; +$a->strings["Examples: Robert Morgenstein, Fishing"] = "Ejemplos: Robert Morgenstein, Pesca"; +$a->strings["Random Profile"] = "Perfil aleatorio"; +$a->strings["Networks"] = "Redes"; +$a->strings["All Networks"] = "Todas las redes"; +$a->strings["Saved Folders"] = "Directorios guardados"; +$a->strings["Everything"] = "Todo"; +$a->strings["Categories"] = "Categorías"; +$a->strings["Logged out."] = "Sesión finalizada"; +$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Se ha encontrado un problema para acceder con el OpenID que has escrito. Verifica que lo hayas escrito correctamente."; +$a->strings["The error message was:"] = "El mensaje del error fue:"; +$a->strings["Miscellaneous"] = "Varios"; +$a->strings["year"] = "año"; +$a->strings["month"] = "mes"; +$a->strings["day"] = "día"; +$a->strings["never"] = "nunca"; +$a->strings["less than a second ago"] = "hace menos de un segundo"; +$a->strings["week"] = "semana"; +$a->strings["hour"] = "hora"; +$a->strings["hours"] = "horas"; +$a->strings["minute"] = "minuto"; +$a->strings["minutes"] = "minutos"; +$a->strings["second"] = "segundo"; +$a->strings["seconds"] = "segundos"; +$a->strings["%1\$d %2\$s ago"] = "hace %1\$d %2\$s"; +$a->strings["%s's birthday"] = "Cumpleaños de %s"; +$a->strings["Happy Birthday %s"] = "Feliz cumpleaños %s"; +$a->strings["From: "] = "De: "; +$a->strings["Image/photo"] = "Imagen/Foto"; +$a->strings["$1 wrote:"] = "$1 escribió:"; +$a->strings["Encrypted content"] = "Contenido cifrado"; +$a->strings["Cannot locate DNS info for database server '%s'"] = "No se puede encontrar información DNS para la base de datos del servidor '%s'"; +$a->strings["[no subject]"] = "[sin asunto]"; +$a->strings["Visible to everybody"] = "Visible para cualquiera"; +$a->strings["Friendica Notification"] = "Notificación de Friendica"; +$a->strings["Thank You,"] = "Gracias,"; +$a->strings["%s Administrator"] = "%s Administrador"; +$a->strings["%s "] = "%s "; +$a->strings["[Friendica:Notify] New mail received at %s"] = "[Friendica:Notificación] Nuevo correo recibido de %s"; +$a->strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s te ha enviado un mensaje privado desde %2\$s."; +$a->strings["%1\$s sent you %2\$s."] = "%1\$s te ha enviado %2\$s."; +$a->strings["a private message"] = "un mensaje privado"; +$a->strings["Please visit %s to view and/or reply to your private messages."] = "Por favor, visita %s para ver y/o responder a tus mensajes privados."; +$a->strings["%1\$s commented on [url=%2\$s]a %3\$s[/url]"] = "%1\$s comentó en [url=%2\$s]a %3\$s[/url]"; +$a->strings["%1\$s commented on [url=%2\$s]%3\$s's %4\$s[/url]"] = "%1\$s comentó en [url=%2\$s] %4\$s de %3\$s[/url]"; +$a->strings["%1\$s commented on [url=%2\$s]your %3\$s[/url]"] = "%1\$s comentó en [url=%2\$s] tu %3\$s[/url]"; +$a->strings["[Friendica:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Friendica:Notificación] Comentario en la conversación de #%1\$d por %2\$s"; +$a->strings["%s commented on an item/conversation you have been following."] = "%s ha comentado en una conversación/elemento que sigues."; +$a->strings["Please visit %s to view and/or reply to the conversation."] = "Por favor, visita %s para ver y/o responder a la conversación."; +$a->strings["[Friendica:Notify] %s posted to your profile wall"] = "[Friendica:Notificación] %s publicó en tu muro"; +$a->strings["%1\$s posted to your profile wall at %2\$s"] = "%1\$s publicó en tu perfil de %2\$s"; +$a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = "%1\$s publicó en [url=%2\$s]tu muro[/url]"; +$a->strings["[Friendica:Notify] %s tagged you"] = "[Friendica:Notificación] %s te ha nombrado"; +$a->strings["%1\$s tagged you at %2\$s"] = "%1\$s te ha nombrado en %2\$s"; +$a->strings["%1\$s [url=%2\$s]tagged you[/url]."] = "%1\$s [url=%2\$s]te nombró[/url]."; +$a->strings["[Friendica:Notify] %1\$s poked you"] = "[Friendica:Notify] %1\$s te dio un toque"; +$a->strings["%1\$s poked you at %2\$s"] = "%1\$s te dio un toque en %2\$s"; +$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = "%1\$s [url=%2\$s]te dio un toque[/url]."; +$a->strings["[Friendica:Notify] %s tagged your post"] = "[Friendica:Notificación] %s ha etiquetado tu publicación"; +$a->strings["%1\$s tagged your post at %2\$s"] = "%1\$s ha etiquetado tu publicación en %2\$s"; +$a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = "%1\$s ha etiquetado [url=%2\$s]tu publicación[/url]"; +$a->strings["[Friendica:Notify] Introduction received"] = "[Friendica:Notificación] Presentación recibida"; +$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = "Has recibido una presentación de '%1\$s' en %2\$s"; +$a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = "Has recibido [url=%1\$s]una presentación[/url] de %2\$s."; +$a->strings["You may visit their profile at %s"] = "Puedes visitar su perfil en %s"; +$a->strings["Please visit %s to approve or reject the introduction."] = "Visita %s para aceptar o rechazar la presentación por favor."; +$a->strings["[Friendica:Notify] Friend suggestion received"] = "[Friendica:Notificación] Sugerencia de amigo recibida"; +$a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "Has recibido una sugerencia de amigo de '%1\$s' en %2\$s"; +$a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from %3\$s."] = "Has recibido [url=%1\$s]una sugerencia de amigo[/url] en %2\$s de %3\$s."; +$a->strings["Name:"] = "Nombre: "; +$a->strings["Photo:"] = "Foto: "; +$a->strings["Please visit %s to approve or reject the suggestion."] = "Visita %s para aceptar o rechazar la sugerencia por favor."; +$a->strings["Connect URL missing."] = "Falta el conector URL."; +$a->strings["This site is not configured to allow communications with other networks."] = "Este sitio no está configurado para permitir la comunicación con otras redes."; +$a->strings["No compatible communication protocols or feeds were discovered."] = "No se ha descubierto protocolos de comunicación o fuentes compatibles."; +$a->strings["The profile address specified does not provide adequate information."] = "La dirección del perfil especificado no proporciona información adecuada."; +$a->strings["An author or name was not found."] = "No se ha encontrado un autor o nombre."; +$a->strings["No browser URL could be matched to this address."] = "Ninguna dirección concuerda con la suministrada."; +$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Imposible identificar la dirección @ con algún protocolo conocido o dirección de contacto."; +$a->strings["Use mailto: in front of address to force email check."] = "Escribe mailto: al principio de la dirección para forzar el envío."; +$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "La dirección del perfil especificada pertenece a una red que ha sido deshabilitada en este sitio."; +$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Perfil limitado. Esta persona no podrá recibir notificaciones directas/personales tuyas."; +$a->strings["Unable to retrieve contact information."] = "No ha sido posible recibir la información del contacto."; +$a->strings["following"] = "siguiendo"; +$a->strings["A new person is sharing with you at "] = "Una nueva persona está compartiendo contigo en "; +$a->strings["You have a new follower at "] = "Tienes un nuevo seguidor en "; +$a->strings["Archives"] = "Archivos"; +$a->strings["An invitation is required."] = "Se necesita invitación."; +$a->strings["Invitation could not be verified."] = "No se puede verificar la invitación."; +$a->strings["Invalid OpenID url"] = "Dirección OpenID no válida"; +$a->strings["Please enter the required information."] = "Por favor, introduce la información necesaria."; +$a->strings["Please use a shorter name."] = "Por favor, usa un nombre más corto."; +$a->strings["Name too short."] = "El nombre es demasiado corto."; +$a->strings["That doesn't appear to be your full (First Last) name."] = "No parece que ese sea tu nombre completo."; +$a->strings["Your email domain is not among those allowed on this site."] = "Tu dominio de correo no se encuentra entre los permitidos en este sitio."; +$a->strings["Not a valid email address."] = "No es una dirección de correo electrónico válida."; +$a->strings["Cannot use that email."] = "No se puede utilizar este correo electrónico."; +$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and must also begin with a letter."] = "Tu \"apodo\" solo puede contener \"a-z\", \"0-9\", \"-\", y \"_\" y debe empezar por una letra."; +$a->strings["Nickname is already registered. Please choose another."] = "Apodo ya registrado. Por favor, elije otro."; +$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "El apodo ya ha sido registrado alguna vez y no puede volver a usarse. Por favor, utiliza otro."; +$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "ERROR GRAVE: La generación de claves de seguridad ha fallado."; +$a->strings["An error occurred during registration. Please try again."] = "Se produjo un error durante el registro. Por favor, inténtalo de nuevo."; +$a->strings["An error occurred creating your default profile. Please try again."] = "Error al crear tu perfil predeterminado. Por favor, inténtalo de nuevo."; +$a->strings["Welcome "] = "Bienvenido "; +$a->strings["Please upload a profile photo."] = "Por favor sube una foto para tu perfil."; +$a->strings["Welcome back "] = "Bienvenido de nuevo "; +$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 ficha de seguridad no es correcta. Seguramente haya ocurrido por haber dejado el formulario abierto demasiado tiempo (>3 horas) antes de enviarlo."; +$a->strings["stopped following"] = "dejó de seguir"; +$a->strings["Poke"] = "Toque"; +$a->strings["View Status"] = "Ver estado"; +$a->strings["View Profile"] = "Ver perfil"; +$a->strings["View Photos"] = "Ver fotos"; +$a->strings["Network Posts"] = "Publicaciones en la red"; +$a->strings["Edit Contact"] = "Editar contacto"; +$a->strings["Send PM"] = "Enviar mensaje privado"; +$a->strings["%1\$s poked %2\$s"] = "%1\$s le dio un toque a %2\$s"; +$a->strings["post/item"] = "publicación/tema"; +$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "%1\$s ha marcado %3\$s de %2\$s como Favorito"; +$a->strings["Categories:"] = ""; +$a->strings["Filed under:"] = ""; +$a->strings["remove"] = "eliminar"; $a->strings["Delete Selected Items"] = "Eliminar el elemento seleccionado"; $a->strings["%s likes this."] = "A %s le gusta esto."; $a->strings["%s doesn't like this."] = "A %s no le gusta esto."; $a->strings["%2\$d people like this."] = "Le gusta a %2\$d personas."; $a->strings["%2\$d people don't like this."] = "No le gusta a %2\$d personas."; $a->strings["and"] = "y"; -$a->strings[", and %d other people"] = ", y otras %d personas"; +$a->strings[", and %d other people"] = " y a otras %d personas"; $a->strings["%s like this."] = "Le gusta a %s."; $a->strings["%s don't like this."] = "No le gusta a %s."; $a->strings["Visible to everybody"] = "Visible para cualquiera"; -$a->strings["Please enter a video link/URL:"] = "Por favor, introduzca la URL/enlace del vídeo:"; -$a->strings["Please enter an audio link/URL:"] = "Por favor, introduzca la URL/enlace del audio:"; +$a->strings["Please enter a video link/URL:"] = "Por favor, introduce la URL/enlace del vídeo:"; +$a->strings["Please enter an audio link/URL:"] = "Por favor, introduce la URL/enlace del audio:"; $a->strings["Tag term:"] = "Etiquetar:"; $a->strings["Where are you right now?"] = "¿Dónde estás ahora?"; -$a->strings["Enter a title for this item"] = "Introduce un título para este elemento"; +$a->strings["upload photo"] = "subir imagen"; +$a->strings["attach file"] = "adjuntar archivo"; +$a->strings["web link"] = "enlace web"; $a->strings["Insert video link"] = "Insertar enlace del vídeo"; -$a->strings["Insert audio link"] = "Inserte un vínculo del audio"; -$a->strings["Set title"] = "Establecer el título"; -$a->strings["view full size"] = "Ver a tamaño completo"; -$a->strings["image/photo"] = "imagen/foto"; -$a->strings["Cannot locate DNS info for database server '%s'"] = "No se puede encontrar información de DNS para el servidor de base de datos '%s'"; -$a->strings["Add New Contact"] = "Añadir nuevo contacto"; -$a->strings["Enter address or web location"] = "Escriba la dirección o página web"; -$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Ejemplo: bob@ejemplo.com, http://ejemplo.com/barbara"; -$a->strings["Invite Friends"] = "Invitar amigos"; -$a->strings["%d invitation available"] = array( - 0 => "%d invitación disponible", - 1 => "%d invitaviones disponibles", -); -$a->strings["Find People"] = "Buscar personas"; -$a->strings["Enter name or interest"] = "Introduzca nombre o intereses"; -$a->strings["Connect/Follow"] = "Conectar/Seguir"; -$a->strings["Examples: Robert Morgenstein, Fishing"] = "Ejemplos: Robert Morgenstein, Pesca"; -$a->strings["Similar Interests"] = "Intereses similares"; -$a->strings["New mail received at "] = "Nuevo correo recibido en "; -$a->strings["A new person is sharing with you at "] = "Una nueva persona está compartiendo con usted en"; -$a->strings["You have a new follower at "] = "Tienes un nuevo seguidor en "; -$a->strings["[no subject]"] = "[sin asunto]"; -$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."] = "Un grupo eliminado con este nombre fue restablecido. Los permisos existentes pueden aplicarse a este grupo y a sus futuros miembros. Si esto no es lo que pretende, por favor, cree otro grupo con un nombre diferente."; -$a->strings["Create a new group"] = "Crear un nuevo grupo"; -$a->strings["Everybody"] = "Todo el mundo"; -$a->strings["Sharing notification from Diaspora network"] = "Conpartir notificaciones con la red Diaspora*"; -$a->strings["Attachments:"] = "Archivos adjuntos:"; -$a->strings["[Relayed] Comment authored by %s from network %s"] = "[Retransmitido] Comentario escrito por %s desde %s"; -$a->strings["Embedded content"] = "Contenido integrado"; -$a->strings["Embedding disabled"] = "Incrustaciones desabilitadas"; +$a->strings["video link"] = "enlace de video"; +$a->strings["Insert audio link"] = "Insertar vínculo del audio"; +$a->strings["audio link"] = "enlace de audio"; +$a->strings["set location"] = "establecer tu ubicación"; +$a->strings["clear location"] = "limpiar la localización"; +$a->strings["permissions"] = "permisos"; +$a->strings["Click here to upgrade."] = "Pulsa aquí para actualizar."; +$a->strings["This action exceeds the limits set by your subscription plan."] = "Esta acción excede los límites permitidos por tu subscripción."; +$a->strings["This action is not available under your subscription plan."] = "Esta acción no está permitida para tu subscripción."; +$a->strings["Delete this item?"] = "¿Eliminar este elemento?"; +$a->strings["show fewer"] = "ver menos"; +$a->strings["Update %s failed. See error logs."] = "Falló la actualización de %s. Mira los registros de errores."; +$a->strings["Update Error at %s"] = "Error actualizado en %s"; +$a->strings["Create a New Account"] = "Crear una nueva cuenta"; +$a->strings["Nickname or Email address: "] = "Apodo o dirección de email: "; +$a->strings["Password: "] = "Contraseña: "; +$a->strings["Or login using OpenID: "] = "O inicia sesión usando OpenID: "; +$a->strings["Forgot your password?"] = "¿Olvidaste la contraseña?"; +$a->strings["Requested account is not available."] = "La cuenta solicitada no está disponible."; +$a->strings["Edit profile"] = "Editar perfil"; +$a->strings["Message"] = "Mensaje"; +$a->strings["g A l F d"] = "g A l F d"; +$a->strings["F d"] = "F d"; +$a->strings["[today]"] = "[hoy]"; +$a->strings["Birthday Reminders"] = "Recordatorios de cumpleaños"; +$a->strings["Birthdays this week:"] = "Cumpleaños esta semana:"; +$a->strings["[No description]"] = "[Sin descripción]"; +$a->strings["Event Reminders"] = "Recordatorios de eventos"; +$a->strings["Events this week:"] = "Eventos de esta semana:"; +$a->strings["Status Messages and Posts"] = "Mensajes de Estado y Publicaciones"; +$a->strings["Profile Details"] = "Detalles del Perfil"; +$a->strings["Events and Calendar"] = "Eventos y Calendario"; +$a->strings["Only You Can See This"] = "Únicamente tú puedes ver esto"; diff --git a/view/follow.tpl b/view/follow.tpl index 259e74a931..d6f3261307 100644 --- a/view/follow.tpl +++ b/view/follow.tpl @@ -1,7 +1,7 @@

    $connect

    $desc
    -
    +
    diff --git a/view/fr/messages.po b/view/fr/messages.po index 5628299b84..3cbe052220 100644 --- a/view/fr/messages.po +++ b/view/fr/messages.po @@ -1,1455 +1,1208 @@ # FRIENDICA Distributed Social Network -# Copyright (C) 2010, 2011 Mike Macgirvin -# This file is distributed under the same license as the Friendika package. +# Copyright (C) 2010, 2011 the Friendica Project +# This file is distributed under the same license as the Friendica package. # # Translators: -# Olivier , 2011. +# , 2012. +# Olivier , 2011-2012. msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: http://bugs.friendica.com/\n" -"POT-Creation-Date: 2011-11-15 17:20+0100\n" -"PO-Revision-Date: 2011-11-17 08:22+0000\n" -"Last-Translator: olivierm \n" -"Language-Team: French (http://www.transifex.net/projects/p/friendica/team/fr/)\n" +"POT-Creation-Date: 2012-09-26 10:00-0700\n" +"PO-Revision-Date: 2012-09-27 12:16+0000\n" +"Last-Translator: Olivier \n" +"Language-Team: French (http://www.transifex.com/projects/p/friendica/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: fr\n" -"Plural-Forms: nplurals=2; plural=(n > 1)\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../../index.php:213 ../../mod/help.php:38 -msgid "Not Found" -msgstr "Non trouvé" +#: ../../mod/oexchange.php:25 +msgid "Post successful." +msgstr "Publication réussie." -#: ../../index.php:216 ../../mod/help.php:41 -msgid "Page not found." -msgstr "Page introuvable." - -#: ../../index.php:279 ../../mod/profperm.php:19 ../../mod/group.php:67 -msgid "Permission denied" -msgstr "Permission refusée" - -#: ../../index.php:280 ../../mod/manage.php:75 ../../mod/wall_upload.php:42 -#: ../../mod/follow.php:8 ../../mod/profile_photo.php:19 -#: ../../mod/profile_photo.php:137 ../../mod/profile_photo.php:148 -#: ../../mod/profile_photo.php:159 ../../mod/wall_attach.php:43 -#: ../../mod/suggest.php:28 ../../mod/regmod.php:111 ../../mod/profiles.php:7 -#: ../../mod/profiles.php:229 ../../mod/settings.php:41 -#: ../../mod/settings.php:46 ../../mod/settings.php:376 -#: ../../mod/photos.php:123 ../../mod/photos.php:858 ../../mod/display.php:111 -#: ../../mod/editpost.php:10 ../../mod/invite.php:13 ../../mod/invite.php:81 -#: ../../mod/contacts.php:115 ../../mod/register.php:27 -#: ../../mod/allfriends.php:9 ../../mod/install.php:96 ../../mod/network.php:6 -#: ../../mod/events.php:109 ../../mod/notifications.php:62 -#: ../../mod/crepair.php:113 ../../mod/api.php:26 ../../mod/api.php:31 -#: ../../mod/notes.php:20 ../../mod/fsuggest.php:78 ../../mod/item.php:113 -#: ../../mod/message.php:9 ../../mod/message.php:42 -#: ../../mod/dfrn_confirm.php:53 ../../mod/viewcontacts.php:21 -#: ../../mod/group.php:19 ../../mod/attach.php:33 ../../mod/common.php:9 -#: ../../addon/facebook/facebook.php:331 ../../include/items.php:2874 -msgid "Permission denied." -msgstr "Permission refusée." - -#: ../../boot.php:419 -msgid "Delete this item?" -msgstr "Effacer cet élément?" - -#: ../../boot.php:420 ../../mod/photos.php:1202 ../../mod/photos.php:1241 -#: ../../mod/photos.php:1272 ../../include/conversation.php:433 -msgid "Comment" -msgstr "Commenter" - -#: ../../boot.php:662 -msgid "Create a New Account" -msgstr "Créer un nouveau compte" - -#: ../../boot.php:663 ../../mod/register.php:530 ../../include/nav.php:77 -msgid "Register" -msgstr "S'inscrire" - -#: ../../boot.php:679 ../../include/nav.php:44 -msgid "Logout" -msgstr "Se déconnecter" - -#: ../../boot.php:680 ../../addon/communityhome/communityhome.php:28 -#: ../../addon/communityhome/communityhome.php:34 ../../include/nav.php:62 -msgid "Login" -msgstr "Connexion" - -#: ../../boot.php:682 -msgid "Nickname or Email address: " -msgstr "Pseudo ou courriel: " - -#: ../../boot.php:683 -msgid "Password: " -msgstr "Mot de passe: " - -#: ../../boot.php:686 -msgid "OpenID: " -msgstr "OpenID: " - -#: ../../boot.php:692 -msgid "Forgot your password?" -msgstr "Mot de passe oublié?" - -#: ../../boot.php:693 ../../mod/lostpass.php:82 -msgid "Password Reset" -msgstr "Réinitialiser le mot de passe" - -#: ../../boot.php:815 ../../mod/profile.php:10 ../../mod/hcard.php:10 -msgid "No profile" -msgstr "Aucun profil" - -#: ../../boot.php:839 -msgid "Edit profile" -msgstr "Editer le profil" - -#: ../../boot.php:890 ../../include/contact_widgets.php:9 -msgid "Connect" -msgstr "Relier" - -#: ../../boot.php:900 ../../include/nav.php:129 -msgid "Profiles" -msgstr "Profils" - -#: ../../boot.php:900 ../../include/nav.php:129 -msgid "Manage/edit profiles" -msgstr "Gérer/éditer les profils" - -#: ../../boot.php:906 ../../mod/profiles.php:462 -msgid "Change profile photo" -msgstr "Changer de photo de profil" - -#: ../../boot.php:907 ../../mod/profiles.php:463 -msgid "Create New Profile" -msgstr "Créer un nouveau profil" - -#: ../../boot.php:917 ../../mod/profiles.php:473 -msgid "Profile Image" -msgstr "Image du profil" - -#: ../../boot.php:920 ../../mod/profiles.php:475 -msgid "visible to everybody" -msgstr "visible par tous" - -#: ../../boot.php:921 ../../mod/profiles.php:476 -msgid "Edit visibility" -msgstr "Changer la visibilité" - -#: ../../boot.php:940 ../../mod/events.php:325 ../../include/event.php:37 -#: ../../include/bb2diaspora.php:249 -msgid "Location:" -msgstr "Localisation:" - -#: ../../boot.php:942 ../../include/profile_advanced.php:17 -msgid "Gender:" -msgstr "Genre:" - -#: ../../boot.php:945 ../../include/profile_advanced.php:37 -msgid "Status:" -msgstr "Statut:" - -#: ../../boot.php:947 ../../include/profile_advanced.php:45 -msgid "Homepage:" -msgstr "Page personnelle:" - -#: ../../boot.php:1006 ../../boot.php:1068 -msgid "g A l F d" -msgstr "g A | F d" - -#: ../../boot.php:1007 ../../boot.php:1069 -msgid "F d" -msgstr "F d" - -#: ../../boot.php:1030 -msgid "Birthday Reminders" -msgstr "Rappels d'anniversaires" - -#: ../../boot.php:1031 -msgid "Birthdays this week:" -msgstr "Anniversaires cette semaine:" - -#: ../../boot.php:1047 ../../boot.php:1111 -msgid "[today]" -msgstr "[aujourd'hui]" - -#: ../../boot.php:1092 -msgid "Event Reminders" -msgstr "Rappels d'événements" - -#: ../../boot.php:1093 -msgid "Events this week:" -msgstr "Evénements cette semaine:" - -#: ../../boot.php:1105 -msgid "[No description]" -msgstr "[Sans description]" - -#: ../../boot.php:1282 ../../include/nav.php:47 -msgid "Status" -msgstr "Statut" - -#: ../../boot.php:1287 ../../mod/profperm.php:103 -#: ../../include/profile_advanced.php:7 ../../include/profile_advanced.php:74 -#: ../../include/nav.php:48 -msgid "Profile" -msgstr "Profil" - -#: ../../boot.php:1292 ../../include/nav.php:49 -msgid "Photos" -msgstr "Photos" - -#: ../../boot.php:1300 ../../mod/events.php:117 ../../include/nav.php:50 -msgid "Events" -msgstr "Evènements" - -#: ../../boot.php:1305 ../../mod/notes.php:44 -msgid "Personal Notes" -msgstr "Notes personnelles" - -#: ../../mod/manage.php:37 -#, php-format -msgid "Welcome back %s" -msgstr "Bienvenue à nouveau, %s" - -#: ../../mod/manage.php:87 -msgid "Manage Identities and/or Pages" -msgstr "Gérer les identités et/ou les pages" - -#: ../../mod/manage.php:90 -msgid "" -"(Toggle between different identities or community/group pages which share " -"your account details.)" -msgstr "" -"(Bascule entre les différentes identités ou pages qui se partagent votre " -"compte.)" - -#: ../../mod/manage.php:92 -msgid "Select an identity to manage: " -msgstr "Choisir une identité à gérer: " - -#: ../../mod/manage.php:106 ../../mod/profiles.php:375 -#: ../../mod/settings.php:420 ../../mod/settings.php:559 -#: ../../mod/settings.php:707 ../../mod/photos.php:886 -#: ../../mod/photos.php:944 ../../mod/photos.php:1163 -#: ../../mod/photos.php:1203 ../../mod/photos.php:1242 -#: ../../mod/photos.php:1273 ../../mod/localtime.php:45 -#: ../../mod/invite.php:106 ../../mod/contacts.php:306 -#: ../../mod/install.php:137 ../../mod/events.php:330 -#: ../../mod/crepair.php:162 ../../mod/fsuggest.php:107 -#: ../../mod/admin.php:296 ../../mod/admin.php:461 ../../mod/admin.php:587 -#: ../../mod/admin.php:652 ../../mod/group.php:84 ../../mod/group.php:167 -#: ../../addon/tumblr/tumblr.php:89 ../../addon/twitter/twitter.php:179 -#: ../../addon/twitter/twitter.php:202 ../../addon/twitter/twitter.php:299 -#: ../../addon/statusnet/statusnet.php:282 -#: ../../addon/statusnet/statusnet.php:296 -#: ../../addon/statusnet/statusnet.php:322 -#: ../../addon/statusnet/statusnet.php:329 -#: ../../addon/statusnet/statusnet.php:351 -#: ../../addon/statusnet/statusnet.php:486 ../../addon/oembed/oembed.php:41 -#: ../../addon/uhremotestorage/uhremotestorage.php:58 -#: ../../addon/impressum/impressum.php:69 -#: ../../addon/facebook/facebook.php:404 ../../addon/nsfw/nsfw.php:53 -#: ../../addon/randplace/randplace.php:178 ../../addon/piwik/piwik.php:81 -#: ../../addon/wppost/wppost.php:101 ../../include/conversation.php:434 -msgid "Submit" -msgstr "Envoyer" - -#: ../../mod/dirfind.php:23 -msgid "People Search" -msgstr "Recherche de personnes" - -#: ../../mod/dirfind.php:57 ../../mod/match.php:57 -msgid "No matches" -msgstr "Aucune correspondance" - -#: ../../mod/wall_upload.php:56 ../../mod/profile_photo.php:113 -#, php-format -msgid "Image exceeds size limit of %d" -msgstr "L'image dépasse la taille limite de %d" - -#: ../../mod/wall_upload.php:65 ../../mod/profile_photo.php:122 -#: ../../mod/photos.php:647 -msgid "Unable to process image." -msgstr "Impossible de traiter l'image." - -#: ../../mod/wall_upload.php:81 ../../mod/wall_upload.php:90 -#: ../../mod/wall_upload.php:97 ../../mod/item.php:299 -#: ../../include/message.php:82 -msgid "Wall Photos" -msgstr "Photos du mur" - -#: ../../mod/wall_upload.php:84 ../../mod/profile_photo.php:251 -#: ../../mod/photos.php:667 -msgid "Image upload failed." -msgstr "Le téléversement de l'image a échoué." - -#: ../../mod/profile.php:105 ../../mod/display.php:66 -msgid "Access to this profile has been restricted." -msgstr "L'accès au profil a été restreint." - -#: ../../mod/profile.php:127 -msgid "Tips for New Members" -msgstr "Conseils aux nouveaux" - -#: ../../mod/follow.php:20 ../../mod/dfrn_request.php:340 -msgid "Disallowed profile URL." -msgstr "URL de profil interdite." - -#: ../../mod/follow.php:39 -msgid "" -"This site is not configured to allow communications with other networks." -msgstr "Ce site n'est pas configuré pour dialoguer avec d'autres réseaux." - -#: ../../mod/follow.php:40 ../../mod/follow.php:50 -msgid "No compatible communication protocols or feeds were discovered." -msgstr "Aucun protocole de communication ni aucun flux n'a pu être découvert." - -#: ../../mod/follow.php:48 -msgid "The profile address specified does not provide adequate information." -msgstr "" -"L'adresse de profil indiquée ne fournit par les informations adéquates." - -#: ../../mod/follow.php:52 -msgid "An author or name was not found." -msgstr "Aucun auteur ou nom d'auteur n'a pu être trouvé." - -#: ../../mod/follow.php:54 -msgid "No browser URL could be matched to this address." -msgstr "Aucune URL de navigation ne correspond à cette adresse." - -#: ../../mod/follow.php:61 -msgid "" -"The profile address specified belongs to a network which has been disabled " -"on this site." -msgstr "" -"L'adresse de profil spécifiée correspond à un réseau qui a été désactivé sur" -" ce site." - -#: ../../mod/follow.php:66 -msgid "" -"Limited profile. This person will be unable to receive direct/personal " -"notifications from you." -msgstr "" -"Profil limité. Cette personne ne sera pas capable de recevoir des " -"notifications directes/personnelles de votre part." - -#: ../../mod/follow.php:133 -msgid "Unable to retrieve contact information." -msgstr "Impossible de récupérer les informations du contact." - -#: ../../mod/follow.php:179 -msgid "following" -msgstr "following" - -#: ../../mod/profile_photo.php:28 -msgid "Image uploaded but image cropping failed." -msgstr "Image envoyée, mais impossible de la retailler." - -#: ../../mod/profile_photo.php:58 ../../mod/profile_photo.php:65 -#: ../../mod/profile_photo.php:72 ../../mod/profile_photo.php:170 -#: ../../mod/profile_photo.php:246 ../../mod/profile_photo.php:255 -#: ../../mod/photos.php:144 ../../mod/photos.php:591 ../../mod/photos.php:936 -#: ../../mod/photos.php:951 ../../mod/register.php:318 -#: ../../mod/register.php:325 ../../mod/register.php:332 -#: ../../addon/communityhome/communityhome.php:111 -msgid "Profile Photos" -msgstr "Photos du profil" - -#: ../../mod/profile_photo.php:61 ../../mod/profile_photo.php:68 -#: ../../mod/profile_photo.php:75 ../../mod/profile_photo.php:258 -#, php-format -msgid "Image size reduction [%s] failed." -msgstr "Réduction de la taille de l'image [%s] échouée." - -#: ../../mod/profile_photo.php:89 -msgid "" -"Shift-reload the page or clear browser cache if the new photo does not " -"display immediately." -msgstr "" -"Rechargez la page avec la touche Maj pressée, ou bien effacez le cache du " -"navigateur, si d'aventure la nouvelle photo n'apparaissait pas " -"immédiatement." - -#: ../../mod/profile_photo.php:99 -msgid "Unable to process image" -msgstr "Impossible de traiter l'image" - -#: ../../mod/profile_photo.php:203 -msgid "Upload File:" -msgstr "Fichier à téléverser:" - -#: ../../mod/profile_photo.php:204 -msgid "Upload Profile Photo" -msgstr "Téléverser une photo de profil" - -#: ../../mod/profile_photo.php:205 -msgid "Upload" -msgstr "Téléverser" - -#: ../../mod/profile_photo.php:206 ../../mod/settings.php:686 -msgid "or" -msgstr "ou" - -#: ../../mod/profile_photo.php:206 -msgid "skip this step" -msgstr "ignorer cette étape" - -#: ../../mod/profile_photo.php:206 -msgid "select a photo from your photo albums" -msgstr "choisissez une photo depuis vos albums" - -#: ../../mod/profile_photo.php:219 -msgid "Crop Image" -msgstr "(Re)cadrer l'image" - -#: ../../mod/profile_photo.php:220 -msgid "Please adjust the image cropping for optimum viewing." -msgstr "Ajustez le cadre de l'image pour une visualisation optimale." - -#: ../../mod/profile_photo.php:221 -msgid "Done Editing" -msgstr "Édition terminée" - -#: ../../mod/profile_photo.php:249 -msgid "Image uploaded successfully." -msgstr "Image téléversée avec succès." - -#: ../../mod/home.php:23 ../../addon/communityhome/communityhome.php:179 -#, php-format -msgid "Welcome to %s" -msgstr "Bienvenue sur %s" - -#: ../../mod/update_community.php:18 ../../mod/update_network.php:22 -#: ../../mod/update_profile.php:41 ../../mod/update_notes.php:41 +#: ../../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 "[contenu incorporé - rechargez la page pour le voir]" -#: ../../mod/wall_attach.php:57 +#: ../../mod/crepair.php:102 +msgid "Contact settings applied." +msgstr "Réglages du contact appliqués." + +#: ../../mod/crepair.php:104 +msgid "Contact update failed." +msgstr "Impossible d'appliquer les réglages." + +#: ../../mod/crepair.php:115 ../../mod/wall_attach.php:55 +#: ../../mod/fsuggest.php:78 ../../mod/events.php:140 ../../mod/api.php:26 +#: ../../mod/api.php:31 ../../mod/photos.php:128 ../../mod/photos.php:972 +#: ../../mod/editpost.php:10 ../../mod/install.php:151 ../../mod/poke.php:135 +#: ../../mod/notifications.php:66 ../../mod/contacts.php:146 +#: ../../mod/settings.php:86 ../../mod/settings.php:525 +#: ../../mod/settings.php:530 ../../mod/manage.php:87 ../../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:126 +#: ../../mod/item.php:142 ../../mod/mood.php:114 +#: ../../mod/profile_photo.php:19 ../../mod/profile_photo.php:169 +#: ../../mod/profile_photo.php:180 ../../mod/profile_photo.php:193 +#: ../../mod/message.php:38 ../../mod/message.php:168 +#: ../../mod/allfriends.php:9 ../../mod/nogroup.php:25 +#: ../../mod/wall_upload.php:64 ../../mod/follow.php:9 +#: ../../mod/display.php:141 ../../mod/profiles.php:7 +#: ../../mod/profiles.php:413 ../../mod/delegate.php:6 +#: ../../mod/suggest.php:28 ../../mod/invite.php:13 ../../mod/invite.php:81 +#: ../../mod/dfrn_confirm.php:53 ../../addon/facebook/facebook.php:510 +#: ../../addon/facebook/facebook.php:516 ../../addon/fbpost/fbpost.php:159 +#: ../../addon/fbpost/fbpost.php:165 +#: ../../addon/dav/friendica/layout.fnk.php:354 ../../include/items.php:3908 +#: ../../index.php:317 +msgid "Permission denied." +msgstr "Permission refusée." + +#: ../../mod/crepair.php:129 ../../mod/fsuggest.php:20 +#: ../../mod/fsuggest.php:92 ../../mod/dfrn_confirm.php:118 +msgid "Contact not found." +msgstr "Contact introuvable." + +#: ../../mod/crepair.php:135 +msgid "Repair Contact Settings" +msgstr "Réglages du réparateur de contacts" + +#: ../../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 "ATTENTION: Manipulation réservée aux experts, toute information incorrecte pourrait empêcher la communication avec ce contact." + +#: ../../mod/crepair.php:138 +msgid "" +"Please use your browser 'Back' button now if you are " +"uncertain what to do on this page." +msgstr "une photo" + +#: ../../mod/crepair.php:144 +msgid "Return to contact editor" +msgstr "Retour à l'éditeur de contact" + +#: ../../mod/crepair.php:148 ../../mod/settings.php:545 +#: ../../mod/settings.php:571 ../../mod/admin.php:692 ../../mod/admin.php:702 +msgid "Name" +msgstr "Nom" + +#: ../../mod/crepair.php:149 +msgid "Account Nickname" +msgstr "Pseudo du compte" + +#: ../../mod/crepair.php:150 +msgid "@Tagname - overrides Name/Nickname" +msgstr "@NomDuTag - prend le pas sur Nom/Pseudo" + +#: ../../mod/crepair.php:151 +msgid "Account URL" +msgstr "URL du compte" + +#: ../../mod/crepair.php:152 +msgid "Friend Request URL" +msgstr "Echec du téléversement de l'image." + +#: ../../mod/crepair.php:153 +msgid "Friend Confirm URL" +msgstr "Accès public refusé." + +#: ../../mod/crepair.php:154 +msgid "Notification Endpoint URL" +msgstr "Aucune photo sélectionnée" + +#: ../../mod/crepair.php:155 +msgid "Poll/Feed URL" +msgstr "Téléverser des photos" + +#: ../../mod/crepair.php:156 +msgid "New photo from this URL" +msgstr "Nouvelle photo depuis cette URL" + +#: ../../mod/crepair.php:166 ../../mod/fsuggest.php:107 +#: ../../mod/events.php:455 ../../mod/photos.php:1005 +#: ../../mod/photos.php:1081 ../../mod/photos.php:1338 +#: ../../mod/photos.php:1378 ../../mod/photos.php:1419 +#: ../../mod/photos.php:1451 ../../mod/install.php:246 +#: ../../mod/install.php:284 ../../mod/localtime.php:45 ../../mod/poke.php:199 +#: ../../mod/content.php:693 ../../mod/contacts.php:348 +#: ../../mod/settings.php:543 ../../mod/settings.php:697 +#: ../../mod/settings.php:769 ../../mod/settings.php:976 +#: ../../mod/group.php:85 ../../mod/mood.php:137 ../../mod/message.php:294 +#: ../../mod/message.php:480 ../../mod/admin.php:443 ../../mod/admin.php:689 +#: ../../mod/admin.php:826 ../../mod/admin.php:1025 ../../mod/admin.php:1112 +#: ../../mod/profiles.php:583 ../../mod/invite.php:119 +#: ../../addon/fromgplus/fromgplus.php:40 +#: ../../addon/facebook/facebook.php:619 +#: ../../addon/snautofollow/snautofollow.php:64 ../../addon/bg/bg.php:90 +#: ../../addon/fbpost/fbpost.php:226 ../../addon/yourls/yourls.php:76 +#: ../../addon/ljpost/ljpost.php:93 ../../addon/nsfw/nsfw.php:88 +#: ../../addon/page/page.php:210 ../../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/startpage/startpage.php:92 +#: ../../addon/geonames/geonames.php:187 ../../addon/oembed.old/oembed.php:41 +#: ../../addon/forumlist/forumlist.php:169 +#: ../../addon/impressum/impressum.php:83 +#: ../../addon/notimeline/notimeline.php:64 ../../addon/blockem/blockem.php:57 +#: ../../addon/qcomment/qcomment.php:61 +#: ../../addon/openstreetmap/openstreetmap.php:70 +#: ../../addon/group_text/group_text.php:84 +#: ../../addon/libravatar/libravatar.php:99 +#: ../../addon/libertree/libertree.php:90 ../../addon/altpager/altpager.php:87 +#: ../../addon/mathjax/mathjax.php:42 ../../addon/editplain/editplain.php:84 +#: ../../addon/blackout/blackout.php:98 ../../addon/gravatar/gravatar.php:95 +#: ../../addon/pageheader/pageheader.php:55 ../../addon/ijpost/ijpost.php:93 +#: ../../addon/jappixmini/jappixmini.php:307 +#: ../../addon/statusnet/statusnet.php:278 +#: ../../addon/statusnet/statusnet.php:292 +#: ../../addon/statusnet/statusnet.php:318 +#: ../../addon/statusnet/statusnet.php:325 +#: ../../addon/statusnet/statusnet.php:353 +#: ../../addon/statusnet/statusnet.php:576 ../../addon/tumblr/tumblr.php:90 +#: ../../addon/numfriends/numfriends.php:85 ../../addon/gnot/gnot.php:88 +#: ../../addon/wppost/wppost.php:110 ../../addon/showmore/showmore.php:48 +#: ../../addon/piwik/piwik.php:89 ../../addon/twitter/twitter.php:180 +#: ../../addon/twitter/twitter.php:209 ../../addon/twitter/twitter.php:394 +#: ../../addon/irc/irc.php:55 ../../addon/fromapp/fromapp.php:77 +#: ../../addon/blogger/blogger.php:102 ../../addon/posterous/posterous.php:103 +#: ../../view/theme/cleanzero/config.php:80 +#: ../../view/theme/diabook/theme.php:757 +#: ../../view/theme/diabook/config.php:190 +#: ../../view/theme/quattro/config.php:53 ../../view/theme/dispy/config.php:70 +#: ../../object/Item.php:560 +msgid "Submit" +msgstr "Envoyer" + +#: ../../mod/help.php:30 +msgid "Help:" +msgstr "Aide:" + +#: ../../mod/help.php:34 ../../addon/dav/friendica/layout.fnk.php:225 +#: ../../include/nav.php:86 +msgid "Help" +msgstr "Aide" + +#: ../../mod/help.php:38 ../../index.php:226 +msgid "Not Found" +msgstr "Non trouvé" + +#: ../../mod/help.php:41 ../../index.php:229 +msgid "Page not found." +msgstr "Page introuvable." + +#: ../../mod/wall_attach.php:69 #, php-format msgid "File exceeds size limit of %d" msgstr "La taille du fichier dépasse la limite de %d" -#: ../../mod/wall_attach.php:87 ../../mod/wall_attach.php:98 +#: ../../mod/wall_attach.php:110 ../../mod/wall_attach.php:121 msgid "File upload failed." msgstr "Le téléversement a échoué." -#: ../../mod/suggest.php:36 ../../include/contact_widgets.php:35 -msgid "Friend Suggestions" -msgstr "Suggestions d'amitiés/contacts" +#: ../../mod/fsuggest.php:63 +msgid "Friend suggestion sent." +msgstr "Suggestion d'amitié/contact envoyée." -#: ../../mod/suggest.php:42 -msgid "" -"No suggestions. This works best when you have more than one contact/friend." -msgstr "" -"Pas de suggestion. Ceci fonctionne mieux quand vous avez plus d'un " -"ami/contact." +#: ../../mod/fsuggest.php:97 +msgid "Suggest Friends" +msgstr "Suggérer des amis/contacts" -#: ../../mod/suggest.php:55 -msgid "Ignore/Hide" -msgstr "Ignorer/cacher" - -#: ../../mod/regmod.php:52 ../../mod/register.php:369 +#: ../../mod/fsuggest.php:99 #, php-format -msgid "Registration details for %s" -msgstr "Détails d'inscription pour %s" +msgid "Suggest a friend for %s" +msgstr "Suggérer un ami/contact pour %s" -#: ../../mod/regmod.php:54 ../../mod/register.php:371 -#: ../../mod/register.php:425 ../../mod/dfrn_request.php:553 -#: ../../mod/lostpass.php:44 ../../mod/lostpass.php:106 -#: ../../mod/dfrn_confirm.php:703 ../../include/items.php:1767 -#: ../../include/items.php:2114 ../../include/items.php:2440 -msgid "Administrator" -msgstr "Administrateur" +#: ../../mod/events.php:66 +msgid "Event title and start time are required." +msgstr "Vous devez donner un nom et un horaire de début à l'événement." -#: ../../mod/regmod.php:61 -msgid "Account approved." -msgstr "Inscription validée." +#: ../../mod/events.php:279 +msgid "l, F j" +msgstr "l, F j" -#: ../../mod/regmod.php:93 +#: ../../mod/events.php:301 +msgid "Edit event" +msgstr "Editer l'événement" + +#: ../../mod/events.php:323 ../../include/text.php:1187 +msgid "link to source" +msgstr "lien original" + +#: ../../mod/events.php:347 ../../view/theme/diabook/theme.php:131 +#: ../../include/nav.php:52 ../../boot.php:1689 +msgid "Events" +msgstr "Événements" + +#: ../../mod/events.php:348 +msgid "Create New Event" +msgstr "Créer un nouvel événement" + +#: ../../mod/events.php:349 ../../addon/dav/friendica/layout.fnk.php:263 +msgid "Previous" +msgstr "Précédent" + +#: ../../mod/events.php:350 ../../mod/install.php:205 +#: ../../addon/dav/friendica/layout.fnk.php:266 +msgid "Next" +msgstr "Suivant" + +#: ../../mod/events.php:423 +msgid "hour:minute" +msgstr "heures:minutes" + +#: ../../mod/events.php:433 +msgid "Event details" +msgstr "Détails de l'événement" + +#: ../../mod/events.php:434 #, php-format -msgid "Registration revoked for %s" -msgstr "Inscription révoquée pour %s" - -#: ../../mod/regmod.php:105 -msgid "Please login." -msgstr "Merci de vous connecter." - -#: ../../mod/profiles.php:21 ../../mod/profiles.php:239 -#: ../../mod/profiles.php:344 ../../mod/dfrn_confirm.php:62 -msgid "Profile not found." -msgstr "Profil introuvable." - -#: ../../mod/profiles.php:28 -msgid "Profile Name is required." -msgstr "Le nom du profil est requis." - -#: ../../mod/profiles.php:198 -msgid "Profile updated." -msgstr "Profil mis à jour." - -#: ../../mod/profiles.php:256 -msgid "Profile deleted." -msgstr "Profil supprimé." - -#: ../../mod/profiles.php:272 ../../mod/profiles.php:303 -msgid "Profile-" -msgstr "Profil-" - -#: ../../mod/profiles.php:291 ../../mod/profiles.php:330 -msgid "New profile created." -msgstr "Nouveau profil créé." - -#: ../../mod/profiles.php:309 -msgid "Profile unavailable to clone." -msgstr "Ce profil ne peut être cloné." - -#: ../../mod/profiles.php:356 -msgid "Hide your contact/friend list from viewers of this profile?" -msgstr "Cacher ma liste d'amis/contacts des visiteurs de ce profil?" - -#: ../../mod/profiles.php:357 ../../mod/settings.php:629 -#: ../../mod/settings.php:635 ../../mod/settings.php:643 -#: ../../mod/settings.php:647 ../../mod/settings.php:652 -#: ../../mod/settings.php:658 ../../mod/register.php:500 -#: ../../mod/dfrn_request.php:645 ../../mod/api.php:105 -msgid "Yes" -msgstr "Oui" - -#: ../../mod/profiles.php:358 ../../mod/settings.php:629 -#: ../../mod/settings.php:635 ../../mod/settings.php:643 -#: ../../mod/settings.php:647 ../../mod/settings.php:652 -#: ../../mod/settings.php:658 ../../mod/register.php:501 -#: ../../mod/dfrn_request.php:646 ../../mod/api.php:106 -msgid "No" -msgstr "Non" - -#: ../../mod/profiles.php:374 -msgid "Edit Profile Details" -msgstr "Éditer les détails du profil" - -#: ../../mod/profiles.php:376 -msgid "View this profile" -msgstr "Voir ce profil" - -#: ../../mod/profiles.php:377 -msgid "Create a new profile using these settings" -msgstr "Créer un nouveau profil en utilisant ces réglages" - -#: ../../mod/profiles.php:378 -msgid "Clone this profile" -msgstr "Cloner ce profil" - -#: ../../mod/profiles.php:379 -msgid "Delete this profile" -msgstr "Supprimer ce profil" - -#: ../../mod/profiles.php:380 -msgid "Profile Name:" -msgstr "Nom du profil:" - -#: ../../mod/profiles.php:381 -msgid "Your Full Name:" -msgstr "Votre nom complet:" - -#: ../../mod/profiles.php:382 -msgid "Title/Description:" -msgstr "Titre/Description:" - -#: ../../mod/profiles.php:383 -msgid "Your Gender:" -msgstr "Votre genre:" - -#: ../../mod/profiles.php:384 -#, php-format -msgid "Birthday (%s):" -msgstr "Anniversaire (%s):" - -#: ../../mod/profiles.php:385 -msgid "Street Address:" -msgstr "Adresse postale:" - -#: ../../mod/profiles.php:386 -msgid "Locality/City:" -msgstr "Ville/Localité:" - -#: ../../mod/profiles.php:387 -msgid "Postal/Zip Code:" -msgstr "Code postal:" - -#: ../../mod/profiles.php:388 -msgid "Country:" -msgstr "Pays:" - -#: ../../mod/profiles.php:389 -msgid "Region/State:" -msgstr "Région/État:" - -#: ../../mod/profiles.php:390 -msgid " Marital Status:" -msgstr " Statut marital:" - -#: ../../mod/profiles.php:391 -msgid "Who: (if applicable)" -msgstr "Qui: (si pertinent)" - -#: ../../mod/profiles.php:392 -msgid "Examples: cathy123, Cathy Williams, cathy@example.com" -msgstr "Exemples: cathy123, Cathy Williams, cathy@example.com" - -#: ../../mod/profiles.php:393 ../../include/profile_advanced.php:43 -msgid "Sexual Preference:" -msgstr "Préférence sexuelle:" - -#: ../../mod/profiles.php:394 -msgid "Homepage URL:" -msgstr "Page personnelle:" - -#: ../../mod/profiles.php:395 ../../include/profile_advanced.php:47 -msgid "Political Views:" -msgstr "Opinions politiques:" - -#: ../../mod/profiles.php:396 -msgid "Religious Views:" -msgstr "Opinions religieuses:" - -#: ../../mod/profiles.php:397 -msgid "Public Keywords:" -msgstr "Mots-clés publics:" - -#: ../../mod/profiles.php:398 -msgid "Private Keywords:" -msgstr "Mots-clés privés:" - -#: ../../mod/profiles.php:399 -msgid "Example: fishing photography software" -msgstr "Exemple: football dessin programmation" - -#: ../../mod/profiles.php:400 -msgid "(Used for suggesting potential friends, can be seen by others)" -msgstr "" -"(Utilisés pour vous suggérer des amis potentiels, peuvent être vus par " -"autrui)" - -#: ../../mod/profiles.php:401 -msgid "(Used for searching profiles, never shown to others)" -msgstr "" -"(Utilisés pour rechercher dans les profils, ne seront jamais montrés à " -"autrui)" - -#: ../../mod/profiles.php:402 -msgid "Tell us about yourself..." -msgstr "Parlez-nous de vous..." - -#: ../../mod/profiles.php:403 -msgid "Hobbies/Interests" -msgstr "Passe-temps/Centres d'intérêt" - -#: ../../mod/profiles.php:404 -msgid "Contact information and Social Networks" -msgstr "Coordonées/Réseaux sociaux" - -#: ../../mod/profiles.php:405 -msgid "Musical interests" -msgstr "Goûts musicaux" - -#: ../../mod/profiles.php:406 -msgid "Books, literature" -msgstr "Lectures" - -#: ../../mod/profiles.php:407 -msgid "Television" -msgstr "Télévision" - -#: ../../mod/profiles.php:408 -msgid "Film/dance/culture/entertainment" -msgstr "Cinéma/Danse/Culture/Divertissement" - -#: ../../mod/profiles.php:409 -msgid "Love/romance" -msgstr "Amour/Romance" - -#: ../../mod/profiles.php:410 -msgid "Work/employment" -msgstr "Activité professionnelle/Occupation" - -#: ../../mod/profiles.php:411 -msgid "School/education" -msgstr "Études/Formation" - -#: ../../mod/profiles.php:416 -msgid "" -"This is your public profile.
    It may " -"be visible to anybody using the internet." -msgstr "" -"Ceci est votre profil public.
    Il peut" -" être visible par n'importe quel utilisateur d'Internet." - -#: ../../mod/profiles.php:426 ../../mod/directory.php:122 -msgid "Age: " -msgstr "Age: " - -#: ../../mod/profiles.php:461 -msgid "Edit/Manage Profiles" -msgstr "Editer/gérer les profils" - -#: ../../mod/notice.php:15 ../../mod/display.php:28 ../../mod/display.php:115 -#: ../../mod/viewsrc.php:15 ../../mod/admin.php:111 ../../mod/admin.php:502 -#: ../../include/items.php:2786 -msgid "Item not found." -msgstr "Élément introuvable." - -#: ../../mod/settings.php:9 ../../mod/photos.php:62 -msgid "everybody" -msgstr "tout le monde" - -#: ../../mod/settings.php:67 -msgid "Missing some important data!" -msgstr "Il manque certaines informations importantes!" - -#: ../../mod/settings.php:70 ../../mod/settings.php:446 ../../mod/admin.php:62 -msgid "Update" -msgstr "Mises-à-jour" - -#: ../../mod/settings.php:165 -msgid "Failed to connect with email account using the settings provided." -msgstr "Impossible de se connecter au compte courriel configuré." - -#: ../../mod/settings.php:170 -msgid "Email settings updated." -msgstr "Réglages de courriel mis-à-jour." - -#: ../../mod/settings.php:188 -msgid "Passwords do not match. Password unchanged." -msgstr "Les mots de passe ne correspondent pas. Aucun changement appliqué." - -#: ../../mod/settings.php:193 -msgid "Empty passwords are not allowed. Password unchanged." -msgstr "Les mots de passe vides sont interdits. Aucun changement appliqué." - -#: ../../mod/settings.php:204 -msgid "Password changed." -msgstr "Mots de passe changés." - -#: ../../mod/settings.php:206 -msgid "Password update failed. Please try again." -msgstr "Le changement de mot de passe a échoué. Merci de recommencer." - -#: ../../mod/settings.php:253 -msgid " Please use a shorter name." -msgstr " Merci d'utiliser un nom plus court." - -#: ../../mod/settings.php:255 -msgid " Name too short." -msgstr " Nom trop court." - -#: ../../mod/settings.php:261 -msgid " Not valid email." -msgstr " Email invalide." - -#: ../../mod/settings.php:263 -msgid " Cannot change to that email." -msgstr " Impossible de changer pour cet email." - -#: ../../mod/settings.php:323 ../../addon/twitter/twitter.php:294 -#: ../../addon/impressum/impressum.php:64 -#: ../../addon/facebook/facebook.php:320 ../../addon/piwik/piwik.php:94 -msgid "Settings updated." -msgstr "Réglages mis à jour." - -#: ../../mod/settings.php:382 ../../include/nav.php:128 -msgid "Account settings" -msgstr "Réglages du compte" - -#: ../../mod/settings.php:387 -msgid "Connector settings" -msgstr "Réglages des connecteurs" - -#: ../../mod/settings.php:392 -msgid "Plugin settings" -msgstr "Réglages des extensions" - -#: ../../mod/settings.php:397 -msgid "Connections" -msgstr "Connexions" - -#: ../../mod/settings.php:402 -msgid "Export personal data" -msgstr "Exporter les données personnelles" - -#: ../../mod/settings.php:419 ../../mod/settings.php:445 -#: ../../mod/settings.php:478 -msgid "Add application" -msgstr "Ajouter une application" - -#: ../../mod/settings.php:421 ../../mod/settings.php:447 -#: ../../mod/dfrn_request.php:655 ../../mod/tagrm.php:11 -#: ../../mod/tagrm.php:94 ../../addon/js_upload/js_upload.php:45 +msgid "Format is %s %s. Starting date and Title are required." +msgstr "Le format est %s %s. La date de début et le nom sont nécessaires." + +#: ../../mod/events.php:436 +msgid "Event Starts:" +msgstr "Début de l'événement:" + +#: ../../mod/events.php:436 ../../mod/events.php:450 +msgid "Required" +msgstr "Requis" + +#: ../../mod/events.php:439 +msgid "Finish date/time is not known or not relevant" +msgstr "Date/heure de fin inconnue ou sans objet" + +#: ../../mod/events.php:441 +msgid "Event Finishes:" +msgstr "Fin de l'événement:" + +#: ../../mod/events.php:444 +msgid "Adjust for viewer timezone" +msgstr "Ajuster à la zone horaire du visiteur" + +#: ../../mod/events.php:446 +msgid "Description:" +msgstr "Description:" + +#: ../../mod/events.php:448 ../../mod/directory.php:134 +#: ../../include/event.php:40 ../../include/bb2diaspora.php:412 +#: ../../boot.php:1226 +msgid "Location:" +msgstr "Localisation:" + +#: ../../mod/events.php:450 +msgid "Title:" +msgstr "Titre :" + +#: ../../mod/events.php:452 +msgid "Share this event" +msgstr "Partager cet événement" + +#: ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 ../../mod/editpost.php:136 +#: ../../mod/dfrn_request.php:847 ../../mod/settings.php:544 +#: ../../mod/settings.php:570 ../../addon/js_upload/js_upload.php:45 +#: ../../include/conversation.php:935 msgid "Cancel" msgstr "Annuler" -#: ../../mod/settings.php:422 ../../mod/settings.php:448 -#: ../../mod/crepair.php:144 ../../mod/admin.php:464 ../../mod/admin.php:473 -msgid "Name" -msgstr "Nom" +#: ../../mod/tagrm.php:41 +msgid "Tag removed" +msgstr "Étiquette enlevée" -#: ../../mod/settings.php:423 ../../mod/settings.php:449 -#: ../../addon/statusnet/statusnet.php:480 -msgid "Consumer Key" -msgstr "Clé utilisateur" +#: ../../mod/tagrm.php:79 +msgid "Remove Item Tag" +msgstr "Enlever l'étiquette de l'élément" -#: ../../mod/settings.php:424 ../../mod/settings.php:450 -#: ../../addon/statusnet/statusnet.php:479 -msgid "Consumer Secret" -msgstr "Secret utilisateur" +#: ../../mod/tagrm.php:81 +msgid "Select a tag to remove: " +msgstr "Choisir une étiquette à enlever: " -#: ../../mod/settings.php:425 ../../mod/settings.php:451 -msgid "Redirect" -msgstr "Rediriger" +#: ../../mod/tagrm.php:93 ../../mod/delegate.php:130 +#: ../../addon/dav/common/wdcal_edit.inc.php:468 +msgid "Remove" +msgstr "Utiliser comme photo de profil" -#: ../../mod/settings.php:426 ../../mod/settings.php:452 -msgid "Icon url" -msgstr "URL de l'icône" - -#: ../../mod/settings.php:437 -msgid "You can't edit this application." -msgstr "Vous ne pouvez pas éditer cette application." - -#: ../../mod/settings.php:477 -msgid "Connected Apps" -msgstr "Applications connectées" - -#: ../../mod/settings.php:479 ../../mod/editpost.php:90 -#: ../../include/conversation.php:441 ../../include/group.php:190 -msgid "Edit" -msgstr "Éditer" - -#: ../../mod/settings.php:480 ../../mod/photos.php:1300 -#: ../../mod/admin.php:468 ../../mod/group.php:154 -#: ../../include/conversation.php:211 ../../include/conversation.php:454 -msgid "Delete" -msgstr "Supprimer" - -#: ../../mod/settings.php:481 -msgid "Client key starts with" -msgstr "La clé cliente commence par" - -#: ../../mod/settings.php:482 -msgid "No name" -msgstr "Sans nom" - -#: ../../mod/settings.php:483 -msgid "Remove authorization" -msgstr "Révoquer l'autorisation" - -#: ../../mod/settings.php:495 -msgid "No Plugin settings configured" -msgstr "Pas de réglages d'extensions configurés" - -#: ../../mod/settings.php:502 ../../addon/widgets/widgets.php:122 -msgid "Plugin Settings" -msgstr "Réglages des extensions" - -#: ../../mod/settings.php:515 ../../mod/settings.php:516 +#: ../../mod/dfrn_poll.php:99 ../../mod/dfrn_poll.php:530 #, php-format -msgid "Built-in support for %s connectivity is %s" -msgstr "Le support natif pour la connectivité %s est %s" +msgid "%s welcomes %s" +msgstr "%s accueille %s" -#: ../../mod/settings.php:515 ../../mod/dfrn_request.php:651 -#: ../../include/contact_selectors.php:78 -msgid "Diaspora" -msgstr "Diaspora" +#: ../../mod/api.php:76 ../../mod/api.php:102 +msgid "Authorize application connection" +msgstr "Autoriser l'application à se connecter" -#: ../../mod/settings.php:515 ../../mod/settings.php:516 -msgid "enabled" -msgstr "activé" +#: ../../mod/api.php:77 +msgid "Return to your app and insert this Securty Code:" +msgstr "Retournez à votre application et saisissez ce Code de Sécurité : " -#: ../../mod/settings.php:515 ../../mod/settings.php:516 -msgid "disabled" -msgstr "désactivé" +#: ../../mod/api.php:89 +msgid "Please login to continue." +msgstr "Merci de vous connecter pour continuer." -#: ../../mod/settings.php:516 -msgid "StatusNet" -msgstr "StatusNet" - -#: ../../mod/settings.php:542 -msgid "Connector Settings" -msgstr "Réglages des connecteurs" - -#: ../../mod/settings.php:548 -msgid "Email/Mailbox Setup" -msgstr "Réglages de courriel/boîte à lettre" - -#: ../../mod/settings.php:549 +#: ../../mod/api.php:104 msgid "" -"If you wish to communicate with email contacts using this service " -"(optional), please specify how to connect to your mailbox." -msgstr "" -"Si vous souhaitez communiquer avec vos contacts \"courriel\" (facultatif), " -"merci de nous indiquer comment vous connecter à votre boîte." +"Do you want to authorize this application to access your posts and contacts," +" and/or create new posts for you?" +msgstr "Voulez-vous autoriser cette application à accéder à vos notices et contacts, et/ou à créer des notices à votre place?" -#: ../../mod/settings.php:550 -msgid "Last successful email check:" -msgstr "Dernière vérification réussie des courriels:" +#: ../../mod/api.php:105 ../../mod/dfrn_request.php:835 +#: ../../mod/settings.php:892 ../../mod/settings.php:898 +#: ../../mod/settings.php:906 ../../mod/settings.php:910 +#: ../../mod/settings.php:915 ../../mod/settings.php:921 +#: ../../mod/settings.php:927 ../../mod/settings.php:933 +#: ../../mod/settings.php:963 ../../mod/settings.php:964 +#: ../../mod/settings.php:965 ../../mod/settings.php:966 +#: ../../mod/settings.php:967 ../../mod/register.php:236 +#: ../../mod/profiles.php:563 +msgid "Yes" +msgstr "Oui" -#: ../../mod/settings.php:551 -msgid "Email access is disabled on this site." -msgstr "L'accès courriel est désactivé sur ce site." +#: ../../mod/api.php:106 ../../mod/dfrn_request.php:836 +#: ../../mod/settings.php:892 ../../mod/settings.php:898 +#: ../../mod/settings.php:906 ../../mod/settings.php:910 +#: ../../mod/settings.php:915 ../../mod/settings.php:921 +#: ../../mod/settings.php:927 ../../mod/settings.php:933 +#: ../../mod/settings.php:963 ../../mod/settings.php:964 +#: ../../mod/settings.php:965 ../../mod/settings.php:966 +#: ../../mod/settings.php:967 ../../mod/register.php:237 +#: ../../mod/profiles.php:564 +msgid "No" +msgstr "Non" -#: ../../mod/settings.php:552 -msgid "IMAP server name:" -msgstr "Nom du serveur IMAP:" - -#: ../../mod/settings.php:553 -msgid "IMAP port:" -msgstr "Port IMAP:" - -#: ../../mod/settings.php:554 -msgid "Security:" -msgstr "Sécurité:" - -#: ../../mod/settings.php:554 -msgid "None" -msgstr "Aucun(e)" - -#: ../../mod/settings.php:555 -msgid "Email login name:" -msgstr "Nom de connexion:" - -#: ../../mod/settings.php:556 -msgid "Email password:" -msgstr "Mot de passe:" - -#: ../../mod/settings.php:557 -msgid "Reply-to address:" -msgstr "Adresse de réponse:" - -#: ../../mod/settings.php:558 -msgid "Send public posts to all email contacts:" -msgstr "Les notices publiques vont à tous les contacts courriel:" - -#: ../../mod/settings.php:596 ../../mod/admin.php:126 ../../mod/admin.php:443 -msgid "Normal Account" -msgstr "Compte normal" - -#: ../../mod/settings.php:597 -msgid "This account is a normal personal profile" -msgstr "" -"Ce compte correspond à un profil normal, pour une seule personne (physique, " -"généralement)" - -#: ../../mod/settings.php:600 ../../mod/admin.php:127 ../../mod/admin.php:444 -msgid "Soapbox Account" -msgstr "Compte \"boîte à savon\"" - -#: ../../mod/settings.php:601 -msgid "Automatically approve all connection/friend requests as read-only fans" -msgstr "" -"Accepter automatiquement toutes les demandes d'amitié/connexion comme étant " -"des fans 'en lecture seule'" - -#: ../../mod/settings.php:604 ../../mod/admin.php:128 ../../mod/admin.php:445 -msgid "Community/Celebrity Account" -msgstr "Compte de communauté/célébrité" - -#: ../../mod/settings.php:605 -msgid "" -"Automatically approve all connection/friend requests as read-write fans" -msgstr "" -"Accepter automatiquement toutes les demandes d'amitié/connexion comme étant " -"des fans en 'lecture/écriture'" - -#: ../../mod/settings.php:608 ../../mod/admin.php:129 ../../mod/admin.php:446 -msgid "Automatic Friend Account" -msgstr "Compte auto-amical" - -#: ../../mod/settings.php:609 -msgid "Automatically approve all connection/friend requests as friends" -msgstr "" -"Accepter automatiquement toutes les demandes d'amitié/connexion comme étant " -"des amis" - -#: ../../mod/settings.php:619 -msgid "OpenID:" -msgstr "OpenID:" - -#: ../../mod/settings.php:619 -msgid "(Optional) Allow this OpenID to login to this account." -msgstr "" -"&nbsp;(Facultatif) Autoriser cet OpenID à se connecter à ce compte." - -#: ../../mod/settings.php:629 -msgid "Publish your default profile in your local site directory?" -msgstr "Publier votre profil par défaut sur l'annuaire local de ce site?" - -#: ../../mod/settings.php:635 -msgid "Publish your default profile in the global social directory?" -msgstr "Publier votre profil par défaut sur l'annuaire social global?" - -#: ../../mod/settings.php:643 -msgid "Hide your contact/friend list from viewers of your default profile?" -msgstr "" -"Cacher votre liste de contacts/amis des visiteurs de votre profil par " -"défaut?" - -#: ../../mod/settings.php:647 -msgid "Hide profile details and all your messages from unknown viewers?" -msgstr "" -"Masquer les détails du profil ainsi que tous vos messages aux visiteurs " -"inconnus?" - -#: ../../mod/settings.php:652 -msgid "Allow friends to post to your profile page?" -msgstr "Autoriser vos amis à publier sur votre profil?" - -#: ../../mod/settings.php:658 -msgid "Allow friends to tag your posts?" -msgstr "Autoriser vos amis à tagguer vos notices?" - -#: ../../mod/settings.php:667 -msgid "Profile is not published." -msgstr "Ce profil n'est pas publié." - -#: ../../mod/settings.php:691 -msgid "Your Identity Address is" -msgstr "L'adresse de votre identité est" - -#: ../../mod/settings.php:705 -msgid "Account Settings" -msgstr "Réglages du compte" - -#: ../../mod/settings.php:713 -msgid "Password Settings" -msgstr "Réglages de mot de passe" - -#: ../../mod/settings.php:714 -msgid "New Password:" -msgstr "Nouveau mot de passe:" - -#: ../../mod/settings.php:715 -msgid "Confirm:" -msgstr "Confirmer:" - -#: ../../mod/settings.php:715 -msgid "Leave password fields blank unless changing" -msgstr "" -"Laissez les champs de mot de passe vierges, sauf si vous désirez les changer" - -#: ../../mod/settings.php:719 -msgid "Basic Settings" -msgstr "Réglages basiques" - -#: ../../mod/settings.php:720 ../../include/profile_advanced.php:15 -msgid "Full Name:" -msgstr "Nom complet:" - -#: ../../mod/settings.php:721 -msgid "Email Address:" -msgstr "Adresse courriel:" - -#: ../../mod/settings.php:722 -msgid "Your Timezone:" -msgstr "Votre fuseau horaire:" - -#: ../../mod/settings.php:723 -msgid "Default Post Location:" -msgstr "Publication par défaut depuis :" - -#: ../../mod/settings.php:724 -msgid "Use Browser Location:" -msgstr "Utiliser la localisation géographique du navigateur:" - -#: ../../mod/settings.php:725 -msgid "Display Theme:" -msgstr "Thème d'affichage:" - -#: ../../mod/settings.php:729 -msgid "Security and Privacy Settings" -msgstr "Réglages de sécurité et vie privée" - -#: ../../mod/settings.php:731 -msgid "Maximum Friend Requests/Day:" -msgstr "Nombre maximal de requêtes d'amitié/jour:" - -#: ../../mod/settings.php:731 -msgid "(to prevent spam abuse)" -msgstr "(pour limiter l'impact du spam)" - -#: ../../mod/settings.php:732 -msgid "Default Post Permissions" -msgstr "Permissions par défaut sur les articles" - -#: ../../mod/settings.php:733 -msgid "(click to open/close)" -msgstr "(cliquer pour ouvrir/fermer)" - -#: ../../mod/settings.php:739 -msgid "Automatically expire posts after days:" -msgstr "Les notices expirent automatiquement au bout de (en jours):" - -#: ../../mod/settings.php:739 -msgid "If empty, posts will not expire. Expired posts will be deleted" -msgstr "" -"Si elles sont vides, les notices n'expireront pas. Les notices expirées " -"seront supprimées" - -#: ../../mod/settings.php:748 -msgid "Notification Settings" -msgstr "Réglages de notification" - -#: ../../mod/settings.php:749 -msgid "Send a notification email when:" -msgstr "Envoyer un courriel de notification quand:" - -#: ../../mod/settings.php:750 -msgid "You receive an introduction" -msgstr "Vous recevez une introduction" - -#: ../../mod/settings.php:751 -msgid "Your introductions are confirmed" -msgstr "Vos introductions sont confirmées" - -#: ../../mod/settings.php:752 -msgid "Someone writes on your profile wall" -msgstr "Quelqu'un écrit sur votre mur" - -#: ../../mod/settings.php:753 -msgid "Someone writes a followup comment" -msgstr "Quelqu'un vous commente" - -#: ../../mod/settings.php:754 -msgid "You receive a private message" -msgstr "Vous recevez un message privé" - -#: ../../mod/settings.php:758 -msgid "Advanced Page Settings" -msgstr "Réglages avancés" - -#: ../../mod/search.php:13 ../../mod/network.php:75 -msgid "Saved Searches" -msgstr "Recherches sauvées" - -#: ../../mod/search.php:16 ../../mod/network.php:81 -msgid "Remove term" -msgstr "Retirer le terme" - -#: ../../mod/search.php:71 ../../mod/photos.php:752 ../../mod/display.php:7 -#: ../../mod/dfrn_request.php:594 ../../mod/directory.php:31 -#: ../../mod/viewcontacts.php:16 ../../mod/community.php:16 -msgid "Public access denied." -msgstr "Accès public refusé." - -#: ../../mod/search.php:83 -msgid "Search This Site" -msgstr "Rechercher sur ce site" - -#: ../../mod/search.php:125 ../../mod/community.php:60 -msgid "No results." -msgstr "Aucun résultat." - -#: ../../mod/photos.php:42 +#: ../../mod/photos.php:46 ../../boot.php:1682 msgid "Photo Albums" msgstr "Albums photo" -#: ../../mod/photos.php:50 ../../mod/photos.php:144 ../../mod/photos.php:866 -#: ../../mod/photos.php:936 ../../mod/photos.php:951 ../../mod/photos.php:1351 -#: ../../mod/photos.php:1363 ../../addon/communityhome/communityhome.php:110 +#: ../../mod/photos.php:54 ../../mod/photos.php:149 ../../mod/photos.php:986 +#: ../../mod/photos.php:1073 ../../mod/photos.php:1088 +#: ../../mod/photos.php:1530 ../../mod/photos.php:1542 +#: ../../addon/communityhome/communityhome.php:110 +#: ../../view/theme/diabook/theme.php:598 msgid "Contact Photos" msgstr "Photos du contact" -#: ../../mod/photos.php:133 -msgid "Contact information unavailable" -msgstr "Informations de contact indisponibles" - -#: ../../mod/photos.php:154 -msgid "Album not found." -msgstr "Album introuvable." - -#: ../../mod/photos.php:172 ../../mod/photos.php:945 -msgid "Delete Album" -msgstr "Effacer l'album" - -#: ../../mod/photos.php:235 ../../mod/photos.php:1164 -msgid "Delete Photo" -msgstr "Effacer la photo" - -#: ../../mod/photos.php:522 -msgid "was tagged in a" -msgstr "a été identifié dans" - -#: ../../mod/photos.php:522 ../../mod/tagger.php:70 ../../mod/like.php:127 -#: ../../addon/communityhome/communityhome.php:163 -#: ../../include/conversation.php:31 ../../include/diaspora.php:1211 -msgid "photo" -msgstr "photo" - -#: ../../mod/photos.php:522 -msgid "by" -msgstr "par" - -#: ../../mod/photos.php:625 ../../addon/js_upload/js_upload.php:312 -msgid "Image exceeds size limit of " -msgstr "L'image dépasse la taille maximale de " - -#: ../../mod/photos.php:633 -msgid "Image file is empty." -msgstr "Fichier image vide." - -#: ../../mod/photos.php:762 -msgid "No photos selected" -msgstr "Aucune photo sélectionnée" - -#: ../../mod/photos.php:839 -msgid "Access to this item is restricted." -msgstr "Accès restreint à cet élément." - -#: ../../mod/photos.php:893 -msgid "Upload Photos" -msgstr "Téléverser des photos" - -#: ../../mod/photos.php:896 ../../mod/photos.php:940 -msgid "New album name: " -msgstr "Nom du nouvel album: " - -#: ../../mod/photos.php:897 -msgid "or existing album name: " -msgstr "ou nom d'un album existant: " - -#: ../../mod/photos.php:898 -msgid "Do not show a status post for this upload" -msgstr "Ne pas publier de notice pour cet envoi" - -#: ../../mod/photos.php:900 ../../mod/photos.php:1159 -msgid "Permissions" -msgstr "Permissions" - -#: ../../mod/photos.php:955 -msgid "Edit Album" -msgstr "Éditer l'album" - -#: ../../mod/photos.php:965 ../../mod/photos.php:1381 -msgid "View Photo" -msgstr "Voir la photo" - -#: ../../mod/photos.php:1000 -msgid "Permission denied. Access to this item may be restricted." -msgstr "Interdit. L'accès à cet élément peut avoir été restreint." - -#: ../../mod/photos.php:1002 -msgid "Photo not available" -msgstr "Photo indisponible" - -#: ../../mod/photos.php:1052 -msgid "View photo" -msgstr "Voir photo" - -#: ../../mod/photos.php:1052 -msgid "Edit photo" -msgstr "Éditer la photo" - -#: ../../mod/photos.php:1053 -msgid "Use as profile photo" -msgstr "Utiliser comme photo de profil" - -#: ../../mod/photos.php:1059 ../../include/conversation.php:369 -msgid "Private Message" -msgstr "Message privé" - -#: ../../mod/photos.php:1070 -msgid "View Full Size" -msgstr "Voir en taille réelle" - -#: ../../mod/photos.php:1138 -msgid "Tags: " -msgstr "Étiquettes: " - -#: ../../mod/photos.php:1141 -msgid "[Remove any tag]" -msgstr "[Retirer toutes les étiquettes]" - -#: ../../mod/photos.php:1152 -msgid "New album name" -msgstr "Nom du nouvel album" - -#: ../../mod/photos.php:1155 -msgid "Caption" -msgstr "Titre" - -#: ../../mod/photos.php:1157 -msgid "Add a Tag" -msgstr "Ajouter une étiquette" - -#: ../../mod/photos.php:1161 -msgid "" -"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" -msgstr "" -"Exemples: @bob, @Barbara_Jensen, @jim@example.com, #Californie, #vacances" - -#: ../../mod/photos.php:1181 ../../include/conversation.php:416 -msgid "I like this (toggle)" -msgstr "I like this (bascule)" - -#: ../../mod/photos.php:1182 ../../include/conversation.php:417 -msgid "I don't like this (toggle)" -msgstr "I don't like this (bascule)" - -#: ../../mod/photos.php:1183 ../../include/conversation.php:814 -msgid "Share" -msgstr "Partager" - -#: ../../mod/photos.php:1184 ../../mod/editpost.php:99 -#: ../../mod/message.php:137 ../../mod/message.php:270 -#: ../../include/conversation.php:251 ../../include/conversation.php:578 -#: ../../include/conversation.php:823 -msgid "Please wait" -msgstr "Patientez" - -#: ../../mod/photos.php:1200 ../../mod/photos.php:1239 -#: ../../mod/photos.php:1270 ../../include/conversation.php:431 -msgid "This is you" -msgstr "C'est vous" - -#: ../../mod/photos.php:1368 -msgid "Recent Photos" -msgstr "Photos récentes" - -#: ../../mod/photos.php:1372 +#: ../../mod/photos.php:61 ../../mod/photos.php:1104 ../../mod/photos.php:1580 msgid "Upload New Photos" msgstr "Téléverser de nouvelles photos" -#: ../../mod/photos.php:1385 +#: ../../mod/photos.php:74 ../../mod/settings.php:23 +msgid "everybody" +msgstr "tout le monde" + +#: ../../mod/photos.php:138 +msgid "Contact information unavailable" +msgstr "Informations de contact indisponibles" + +#: ../../mod/photos.php:149 ../../mod/photos.php:653 ../../mod/photos.php:1073 +#: ../../mod/photos.php:1088 ../../mod/profile_photo.php:74 +#: ../../mod/profile_photo.php:81 ../../mod/profile_photo.php:88 +#: ../../mod/profile_photo.php:204 ../../mod/profile_photo.php:296 +#: ../../mod/profile_photo.php:305 +#: ../../addon/communityhome/communityhome.php:111 +#: ../../view/theme/diabook/theme.php:599 ../../include/user.php:324 +#: ../../include/user.php:331 ../../include/user.php:338 +msgid "Profile Photos" +msgstr "Photos du profil" + +#: ../../mod/photos.php:159 +msgid "Album not found." +msgstr "Album introuvable." + +#: ../../mod/photos.php:177 ../../mod/photos.php:1082 +msgid "Delete Album" +msgstr "Effacer l'album" + +#: ../../mod/photos.php:240 ../../mod/photos.php:1339 +msgid "Delete Photo" +msgstr "Effacer la photo" + +#: ../../mod/photos.php:584 +msgid "was tagged in a" +msgstr "a été identifié dans" + +#: ../../mod/photos.php:584 ../../mod/like.php:145 ../../mod/tagger.php:62 +#: ../../addon/communityhome/communityhome.php:163 +#: ../../view/theme/diabook/theme.php:570 ../../include/text.php:1439 +#: ../../include/diaspora.php:1824 ../../include/conversation.php:125 +#: ../../include/conversation.php:253 +msgid "photo" +msgstr "photo" + +#: ../../mod/photos.php:584 +msgid "by" +msgstr "par" + +#: ../../mod/photos.php:689 ../../addon/js_upload/js_upload.php:315 +msgid "Image exceeds size limit of " +msgstr "L'image dépasse la taille maximale de " + +#: ../../mod/photos.php:697 +msgid "Image file is empty." +msgstr "Fichier image vide." + +#: ../../mod/photos.php:729 ../../mod/profile_photo.php:153 +#: ../../mod/wall_upload.php:110 +msgid "Unable to process image." +msgstr "Impossible de traiter l'image." + +#: ../../mod/photos.php:756 ../../mod/profile_photo.php:301 +#: ../../mod/wall_upload.php:136 +msgid "Image upload failed." +msgstr "Le téléversement de l'image a échoué." + +#: ../../mod/photos.php:842 ../../mod/community.php:18 +#: ../../mod/dfrn_request.php:760 ../../mod/viewcontacts.php:17 +#: ../../mod/display.php:7 ../../mod/search.php:73 ../../mod/directory.php:31 +msgid "Public access denied." +msgstr "Accès public refusé." + +#: ../../mod/photos.php:852 +msgid "No photos selected" +msgstr "Aucune photo sélectionnée" + +#: ../../mod/photos.php:953 +msgid "Access to this item is restricted." +msgstr "Accès restreint à cet élément." + +#: ../../mod/photos.php:1015 +#, php-format +msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage." +msgstr "Vous avez utilisé %1$.2f Mo sur %2$.2f d'espace de stockage pour les photos." + +#: ../../mod/photos.php:1018 +#, php-format +msgid "You have used %1$.2f Mbytes of photo storage." +msgstr "Vous avez utilisé %1$.2f Mo d'espace de stockage pour les photos." + +#: ../../mod/photos.php:1024 +msgid "Upload Photos" +msgstr "Téléverser des photos" + +#: ../../mod/photos.php:1028 ../../mod/photos.php:1077 +msgid "New album name: " +msgstr "Nom du nouvel album: " + +#: ../../mod/photos.php:1029 +msgid "or existing album name: " +msgstr "ou nom d'un album existant: " + +#: ../../mod/photos.php:1030 +msgid "Do not show a status post for this upload" +msgstr "Ne pas publier de notice pour cet envoi" + +#: ../../mod/photos.php:1032 ../../mod/photos.php:1334 +msgid "Permissions" +msgstr "Permissions" + +#: ../../mod/photos.php:1092 +msgid "Edit Album" +msgstr "Éditer l'album" + +#: ../../mod/photos.php:1098 +msgid "Show Newest First" +msgstr "Plus récent d'abord" + +#: ../../mod/photos.php:1100 +msgid "Show Oldest First" +msgstr "Plus ancien d'abord" + +#: ../../mod/photos.php:1124 ../../mod/photos.php:1563 +msgid "View Photo" +msgstr "Voir la photo" + +#: ../../mod/photos.php:1159 +msgid "Permission denied. Access to this item may be restricted." +msgstr "Interdit. L'accès à cet élément peut avoir été restreint." + +#: ../../mod/photos.php:1161 +msgid "Photo not available" +msgstr "Photo indisponible" + +#: ../../mod/photos.php:1217 +msgid "View photo" +msgstr "Voir photo" + +#: ../../mod/photos.php:1217 +msgid "Edit photo" +msgstr "Éditer la photo" + +#: ../../mod/photos.php:1218 +msgid "Use as profile photo" +msgstr "Utiliser comme photo de profil" + +#: ../../mod/photos.php:1224 ../../mod/content.php:603 +#: ../../object/Item.php:103 +msgid "Private Message" +msgstr "Message privé" + +#: ../../mod/photos.php:1243 +msgid "View Full Size" +msgstr "Voir en taille réelle" + +#: ../../mod/photos.php:1311 +msgid "Tags: " +msgstr "Étiquettes: " + +#: ../../mod/photos.php:1314 +msgid "[Remove any tag]" +msgstr "[Retirer toutes les étiquettes]" + +#: ../../mod/photos.php:1324 +msgid "Rotate CW (right)" +msgstr "Tourner dans le sens des aiguilles d'une montre (vers la droite)" + +#: ../../mod/photos.php:1325 +msgid "Rotate CCW (left)" +msgstr "Tourner dans le sens contraire des aiguilles d'une montre (vers la gauche)" + +#: ../../mod/photos.php:1327 +msgid "New album name" +msgstr "Nom du nouvel album" + +#: ../../mod/photos.php:1330 +msgid "Caption" +msgstr "Titre" + +#: ../../mod/photos.php:1332 +msgid "Add a Tag" +msgstr "Ajouter une étiquette" + +#: ../../mod/photos.php:1336 +msgid "" +"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" +msgstr "Exemples: @bob, @Barbara_Jensen, @jim@example.com, #Californie, #vacances" + +#: ../../mod/photos.php:1356 ../../mod/content.php:667 +#: ../../object/Item.php:196 +msgid "I like this (toggle)" +msgstr "J'aime (bascule)" + +#: ../../mod/photos.php:1357 ../../mod/content.php:668 +#: ../../object/Item.php:197 +msgid "I don't like this (toggle)" +msgstr "Je n'aime pas (bascule)" + +#: ../../mod/photos.php:1358 ../../include/conversation.php:896 +msgid "Share" +msgstr "Partager" + +#: ../../mod/photos.php:1359 ../../mod/editpost.php:112 +#: ../../mod/content.php:482 ../../mod/content.php:845 +#: ../../mod/wallmessage.php:152 ../../mod/message.php:293 +#: ../../mod/message.php:481 ../../include/conversation.php:570 +#: ../../include/conversation.php:915 ../../object/Item.php:258 +msgid "Please wait" +msgstr "Patientez" + +#: ../../mod/photos.php:1375 ../../mod/photos.php:1416 +#: ../../mod/photos.php:1448 ../../mod/content.php:690 +#: ../../object/Item.php:557 +msgid "This is you" +msgstr "C'est vous" + +#: ../../mod/photos.php:1377 ../../mod/photos.php:1418 +#: ../../mod/photos.php:1450 ../../mod/content.php:692 ../../boot.php:574 +#: ../../object/Item.php:559 +msgid "Comment" +msgstr "Commenter" + +#: ../../mod/photos.php:1379 ../../mod/editpost.php:133 +#: ../../mod/content.php:702 ../../include/conversation.php:933 +#: ../../object/Item.php:569 +msgid "Preview" +msgstr "Aperçu" + +#: ../../mod/photos.php:1479 ../../mod/content.php:439 +#: ../../mod/content.php:723 ../../mod/settings.php:606 +#: ../../mod/settings.php:695 ../../mod/group.php:168 ../../mod/admin.php:696 +#: ../../include/conversation.php:515 ../../object/Item.php:117 +msgid "Delete" +msgstr "Supprimer" + +#: ../../mod/photos.php:1569 msgid "View Album" msgstr "Voir l'album" -#: ../../mod/newmember.php:6 -msgid "Welcome to Friendika" -msgstr "Bienvenue sur Friendica" +#: ../../mod/photos.php:1578 +msgid "Recent Photos" +msgstr "Photos récentes" -#: ../../mod/newmember.php:8 -msgid "New Member Checklist" -msgstr "Checklist du nouvel utilisateur" +#: ../../mod/community.php:23 +msgid "Not available." +msgstr "Indisponible." -#: ../../mod/newmember.php:12 +#: ../../mod/community.php:32 ../../view/theme/diabook/theme.php:133 +#: ../../include/nav.php:101 +msgid "Community" +msgstr "Communauté" + +#: ../../mod/community.php:63 ../../mod/community.php:88 +#: ../../mod/search.php:148 ../../mod/search.php:174 +msgid "No results." +msgstr "Aucun résultat." + +#: ../../mod/friendica.php:55 +msgid "This is Friendica, version" +msgstr "Motorisé par Friendica version" + +#: ../../mod/friendica.php:56 +msgid "running at web location" +msgstr "hébergé sur" + +#: ../../mod/friendica.php:58 msgid "" -"We would like to offer some tips and links to help make your experience " -"enjoyable. Click any item to visit the relevant page." -msgstr "" -"Nous souhaiterions vous donner quelques astuces et pointeurs pour rendre " -"votre expérience la plus plaisante possible. Cliquez sur n'importe quel " -"élément pour visiter la page correspondante." +"Please visit Friendica.com to learn " +"more about the Friendica project." +msgstr "Merci de vous rendre sur Friendica.com si vous souhaitez en savoir plus sur le projet Friendica." -#: ../../mod/newmember.php:16 -msgid "" -"On your Settings page - change your initial password. Also make a " -"note of your Identity Address. This will be useful in making friends." -msgstr "" -"Sur votre page Réglages - changez votre mot de passe originel. " -"Profitez-en pour prendre note de votre Adresse d'Identité. Elle vous sera " -"utile pour vous faire de nouveaux amis." +#: ../../mod/friendica.php:60 +msgid "Bug reports and issues: please visit" +msgstr "Pour les rapports de bugs: rendez vous sur" -#: ../../mod/newmember.php:18 +#: ../../mod/friendica.php:61 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 "" -"Vérifiez les autres réglages, tout particulièrement ceux liés à la vie " -"privée. Un profil non listé, c'est un peu comme un numéro sur liste rouge. " -"En général, vous devriez probablement publier votre profil - à moins que " -"tous vos amis (potentiels) sachent déjà comment vous trouver." +"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - " +"dot com" +msgstr "Suggestions, remerciements, donations, etc. - écrivez à \"Info\" arob. Friendica - point com" -#: ../../mod/newmember.php:20 -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 "" -"Téléversez (envoyez) une photo de profil si vous n'en avez pas déjà une. Les" -" études montrent que les gens qui affichent de vraies photos d'eux sont dix " -"fois plus susceptibles de se faire des amis." +#: ../../mod/friendica.php:75 +msgid "Installed plugins/addons/apps:" +msgstr "Extensions/applications installées:" -#: ../../mod/newmember.php:23 -msgid "" -"Authorise the Facebook Connector if you currently have a Facebook account " -"and we will (optionally) import all your Facebook friends and conversations." -msgstr "" -"Activez et paramétrez le connecteur Facebook si vous avez un compte Facebook" -" et nous pourrons (de manière facultative) importer tous vos amis et " -"conversations Facebook." +#: ../../mod/friendica.php:88 +msgid "No installed plugins/addons/apps" +msgstr "Aucune extension/greffon/application installée" -#: ../../mod/newmember.php:28 -msgid "" -"Enter your email access information on your Settings page if you wish to " -"import and interact with friends or mailing lists from your email INBOX" -msgstr "" -"Entrez les paramètres de votre adresse de courriel sur la page des Réglages " -"si vous souhaitez importer et interagir avec vos contacts conventionnels." +#: ../../mod/editpost.php:17 ../../mod/editpost.php:27 +msgid "Item not found" +msgstr "Élément introuvable" -#: ../../mod/newmember.php:30 -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 "" -"Éditez votre profil par défaut à votre convenance. Vérifiez" -" les réglages concernant la visibilité de votre liste d'amis par les " -"visiteurs inconnus." +#: ../../mod/editpost.php:36 +msgid "Edit post" +msgstr "Éditer la publication" -#: ../../mod/newmember.php:32 -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 "" -"Choisissez quelques mots-clé publics pour votre profil par défaut. Ils " -"pourront ainsi décrire vos centres d'intérêt, et nous pourrons vous proposer" -" des contacts qui les partagent." +#: ../../mod/editpost.php:88 ../../include/conversation.php:882 +msgid "Post to Email" +msgstr "Publier aussi par courriel" -#: ../../mod/newmember.php:34 -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 Connect dialog." -msgstr "" -"Votre page Contacts est l'endroit rêvé pour gérer vos relations et contacts," -" et vous relier à des amis issus d'autres réseaux. En général, il suffit " -"d'entrer leur adresse d'identité ou l'URL de leur site dans le champ " -"Relier" +#: ../../mod/editpost.php:103 ../../mod/content.php:710 +#: ../../mod/settings.php:605 ../../object/Item.php:107 +msgid "Edit" +msgstr "Éditer" -#: ../../mod/newmember.php:36 -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 "" -"La page Annuaire vous permet de trouver d'autres personnes au sein de ce " -"réseaux ou parmi d'autres sites fédérés. Cherchez un lien Relier ou" -" Suivre sur leur profil. Vous pourrez avoir besoin d'indiquer votre" -" adresse d'identité." +#: ../../mod/editpost.php:104 ../../mod/wallmessage.php:150 +#: ../../mod/message.php:291 ../../mod/message.php:478 +#: ../../include/conversation.php:897 +msgid "Upload photo" +msgstr "Joindre photo" -#: ../../mod/newmember.php:38 -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 "" -"Une fois que vous avez trouvé quelques amis, organisez-les en groupes de " -"conversation privés depuis le panneau latéral de la page Contacts. Vous " -"pourrez ensuite interagir avec chaque groupe de manière privée depuis la " -"page Réseau." +#: ../../mod/editpost.php:105 ../../include/conversation.php:899 +msgid "Attach file" +msgstr "Joindre fichier" -#: ../../mod/newmember.php:40 +#: ../../mod/editpost.php:106 ../../mod/wallmessage.php:151 +#: ../../mod/message.php:292 ../../mod/message.php:479 +#: ../../include/conversation.php:901 +msgid "Insert web link" +msgstr "Insérer lien web" + +#: ../../mod/editpost.php:107 +msgid "Insert YouTube video" +msgstr "Insérer une vidéo Youtube" + +#: ../../mod/editpost.php:108 +msgid "Insert Vorbis [.ogg] video" +msgstr "Insérer un lien vidéo Vorbis [.ogg]" + +#: ../../mod/editpost.php:109 +msgid "Insert Vorbis [.ogg] audio" +msgstr "Insérer un lien audio Vorbis [.ogg]" + +#: ../../mod/editpost.php:110 ../../include/conversation.php:907 +msgid "Set your location" +msgstr "Définir votre localisation" + +#: ../../mod/editpost.php:111 ../../include/conversation.php:909 +msgid "Clear browser location" +msgstr "Effacer la localisation du navigateur" + +#: ../../mod/editpost.php:113 ../../include/conversation.php:916 +msgid "Permission settings" +msgstr "Réglages des permissions" + +#: ../../mod/editpost.php:121 ../../include/conversation.php:925 +msgid "CC: email addresses" +msgstr "CC: adresses de courriel" + +#: ../../mod/editpost.php:122 ../../include/conversation.php:926 +msgid "Public post" +msgstr "Notice publique" + +#: ../../mod/editpost.php:125 ../../include/conversation.php:912 +msgid "Set title" +msgstr "Définir un titre" + +#: ../../mod/editpost.php:127 ../../include/conversation.php:914 +msgid "Categories (comma-separated list)" +msgstr "Catégories (séparées par des virgules)" + +#: ../../mod/editpost.php:128 ../../include/conversation.php:928 +msgid "Example: bob@example.com, mary@example.com" +msgstr "Exemple: bob@exemple.com, mary@exemple.com" + +#: ../../mod/dfrn_request.php:93 +msgid "This introduction has already been accepted." +msgstr "Cette introduction a déjà été acceptée." + +#: ../../mod/dfrn_request.php:118 ../../mod/dfrn_request.php:512 +msgid "Profile location is not valid or does not contain profile information." +msgstr "L'emplacement du profil est invalide ou ne contient pas de profil valide." + +#: ../../mod/dfrn_request.php:123 ../../mod/dfrn_request.php:517 +msgid "Warning: profile location has no identifiable owner name." +msgstr "Attention: l'emplacement du profil n'a pas de nom identifiable." + +#: ../../mod/dfrn_request.php:125 ../../mod/dfrn_request.php:519 +msgid "Warning: profile location has no profile photo." +msgstr "Attention: l'emplacement du profil n'a pas de photo de profil." + +#: ../../mod/dfrn_request.php:128 ../../mod/dfrn_request.php:522 +#, php-format +msgid "%d required parameter was not found at the given location" +msgid_plural "%d required parameters were not found at the given location" +msgstr[0] "%d paramètre requis n'a pas été trouvé à l'endroit indiqué" +msgstr[1] "%d paramètres requis n'ont pas été trouvés à l'endroit indiqué" + +#: ../../mod/dfrn_request.php:170 +msgid "Introduction complete." +msgstr "Phase d'introduction achevée." + +#: ../../mod/dfrn_request.php:209 +msgid "Unrecoverable protocol error." +msgstr "Erreur de protocole non-récupérable." + +#: ../../mod/dfrn_request.php:237 +msgid "Profile unavailable." +msgstr "Profil indisponible." + +#: ../../mod/dfrn_request.php:262 +#, php-format +msgid "%s has received too many connection requests today." +msgstr "%s a reçu trop de demandes d'introduction aujourd'hui." + +#: ../../mod/dfrn_request.php:263 +msgid "Spam protection measures have been invoked." +msgstr "Des mesures de protection contre le spam ont été déclenchées." + +#: ../../mod/dfrn_request.php:264 +msgid "Friends are advised to please try again in 24 hours." +msgstr "Les relations sont encouragées à attendre 24 heures pour recommencer." + +#: ../../mod/dfrn_request.php:326 +msgid "Invalid locator" +msgstr "Localisateur invalide" + +#: ../../mod/dfrn_request.php:335 +msgid "Invalid email address." +msgstr "Adresse courriel invalide." + +#: ../../mod/dfrn_request.php:361 +msgid "This account has not been configured for email. Request failed." +msgstr "Ce compte n'a pas été configuré pour les échanges de courriel. Requête avortée." + +#: ../../mod/dfrn_request.php:457 +msgid "Unable to resolve your name at the provided location." +msgstr "Impossible de résoudre votre nom à l'emplacement fourni." + +#: ../../mod/dfrn_request.php:470 +msgid "You have already introduced yourself here." +msgstr "Vous vous êtes déjà présenté ici." + +#: ../../mod/dfrn_request.php:474 +#, php-format +msgid "Apparently you are already friends with %s." +msgstr "Il semblerait que vous soyez déjà ami avec %s." + +#: ../../mod/dfrn_request.php:495 +msgid "Invalid profile URL." +msgstr "URL de profil invalide." + +#: ../../mod/dfrn_request.php:501 ../../include/follow.php:27 +msgid "Disallowed profile URL." +msgstr "URL de profil interdite." + +#: ../../mod/dfrn_request.php:570 ../../mod/contacts.php:123 +msgid "Failed to update contact record." +msgstr "Échec de mise-à-jour du contact." + +#: ../../mod/dfrn_request.php:591 +msgid "Your introduction has been sent." +msgstr "Votre introduction a été envoyée." + +#: ../../mod/dfrn_request.php:644 +msgid "Please login to confirm introduction." +msgstr "Connectez-vous pour confirmer l'introduction." + +#: ../../mod/dfrn_request.php:658 msgid "" -"Our help pages may be consulted for detail on other program" -" features and resources." -msgstr "" -"Nos pages d'aide peuvent être consultées pour davantage de " -"détails sur les fonctionnalités ou les ressources." +"Incorrect identity currently logged in. Please login to " +"this profile." +msgstr "Identité incorrecte actuellement connectée. Merci de vous connecter à ce profil." + +#: ../../mod/dfrn_request.php:669 +msgid "Hide this contact" +msgstr "Cacher ce contact" + +#: ../../mod/dfrn_request.php:672 +#, php-format +msgid "Welcome home %s." +msgstr "Bienvenue chez vous, %s." + +#: ../../mod/dfrn_request.php:673 +#, php-format +msgid "Please confirm your introduction/connection request to %s." +msgstr "Merci de confirmer votre demande d'introduction auprès de %s." + +#: ../../mod/dfrn_request.php:674 +msgid "Confirm" +msgstr "Confirmer" + +#: ../../mod/dfrn_request.php:715 ../../include/items.php:3287 +msgid "[Name Withheld]" +msgstr "[Nom non-publié]" + +#: ../../mod/dfrn_request.php:810 +msgid "" +"Please enter your 'Identity Address' from one of the following supported " +"communications networks:" +msgstr "Merci d'entrer votre \"adresse d'identité\" de l'un des réseaux de communication suivant:" + +#: ../../mod/dfrn_request.php:826 +msgid "Connect as an email follower (Coming soon)" +msgstr "Connecter un utilisateur de courriel (bientôt)" + +#: ../../mod/dfrn_request.php:828 +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 "Si vous n'êtes pas encore membre du web social libre, suivez ce lien pour trouver un site Friendica ouvert au public et nous rejoindre dès aujourd'hui." + +#: ../../mod/dfrn_request.php:831 +msgid "Friend/Connection Request" +msgstr "Requête de relation/amitié" + +#: ../../mod/dfrn_request.php:832 +msgid "" +"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, " +"testuser@identi.ca" +msgstr "Exemples : jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca" + +#: ../../mod/dfrn_request.php:833 +msgid "Please answer the following:" +msgstr "Merci de répondre à ce qui suit:" + +#: ../../mod/dfrn_request.php:834 +#, php-format +msgid "Does %s know you?" +msgstr "Est-ce que %s vous connaît?" + +#: ../../mod/dfrn_request.php:837 +msgid "Add a personal note:" +msgstr "Ajouter une note personnelle:" + +#: ../../mod/dfrn_request.php:839 ../../include/contact_selectors.php:76 +msgid "Friendica" +msgstr "Friendica" + +#: ../../mod/dfrn_request.php:840 +msgid "StatusNet/Federated Social Web" +msgstr "StatusNet/Federated Social Web" + +#: ../../mod/dfrn_request.php:841 ../../mod/settings.php:640 +#: ../../include/contact_selectors.php:80 +msgid "Diaspora" +msgstr "Diaspora" + +#: ../../mod/dfrn_request.php:842 +#, php-format +msgid "" +" - please do not use this form. Instead, enter %s into your Diaspora search" +" bar." +msgstr " - merci de ne pas utiliser ce formulaire. Entrez plutôt %s dans votre barre de rechercher Diaspora." + +#: ../../mod/dfrn_request.php:843 +msgid "Your Identity Address:" +msgstr "Votre adresse d'identité:" + +#: ../../mod/dfrn_request.php:846 +msgid "Submit Request" +msgstr "Envoyer la requête" + +#: ../../mod/install.php:117 +msgid "Friendica Social Communications Server - Setup" +msgstr "Serveur de communications sociales Friendica - Installation" + +#: ../../mod/install.php:123 +msgid "Could not connect to database." +msgstr "Impossible de se connecter à la base." + +#: ../../mod/install.php:127 +msgid "Could not create table." +msgstr "Impossible de créer une table." + +#: ../../mod/install.php:133 +msgid "Your Friendica site database has been installed." +msgstr "La base de données de votre site Friendica a bien été installée." + +#: ../../mod/install.php:138 +msgid "" +"You may need to import the file \"database.sql\" manually using phpmyadmin " +"or mysql." +msgstr "Vous pourriez avoir besoin d'importer le fichier \"database.sql\" manuellement au moyen de phpmyadmin ou de la commande mysql." + +#: ../../mod/install.php:139 ../../mod/install.php:204 +#: ../../mod/install.php:488 +msgid "Please see the file \"INSTALL.txt\"." +msgstr "Référez-vous au fichier \"INSTALL.txt\"." + +#: ../../mod/install.php:201 +msgid "System check" +msgstr "Vérifications système" + +#: ../../mod/install.php:206 +msgid "Check again" +msgstr "Vérifier à nouveau" + +#: ../../mod/install.php:225 +msgid "Database connection" +msgstr "Connexion à la base de données" + +#: ../../mod/install.php:226 +msgid "" +"In order to install Friendica we need to know how to connect to your " +"database." +msgstr "Pour installer Friendica, nous avons besoin de savoir comment contacter votre base de données." + +#: ../../mod/install.php:227 +msgid "" +"Please contact your hosting provider or site administrator if you have " +"questions about these settings." +msgstr "Merci de vous tourner vers votre hébergeur et/ou administrateur pour toute question concernant ces réglages." + +#: ../../mod/install.php:228 +msgid "" +"The database you specify below should already exist. If it does not, please " +"create it before continuing." +msgstr "La base de données que vous spécifierez doit exister. Si ce n'est pas encore le cas, merci de la créer avant de continuer." + +#: ../../mod/install.php:232 +msgid "Database Server Name" +msgstr "Serveur de base de données" + +#: ../../mod/install.php:233 +msgid "Database Login Name" +msgstr "Nom d'utilisateur de la base" + +#: ../../mod/install.php:234 +msgid "Database Login Password" +msgstr "Mot de passe de la base" + +#: ../../mod/install.php:235 +msgid "Database Name" +msgstr "Nom de la base" + +#: ../../mod/install.php:236 ../../mod/install.php:275 +msgid "Site administrator email address" +msgstr "Adresse électronique de l'administrateur du site" + +#: ../../mod/install.php:236 ../../mod/install.php:275 +msgid "" +"Your account email address must match this in order to use the web admin " +"panel." +msgstr "Votre adresse électronique doit correspondre à celle-ci pour pouvoir utiliser l'interface d'administration." + +#: ../../mod/install.php:240 ../../mod/install.php:278 +msgid "Please select a default timezone for your website" +msgstr "Sélectionner un fuseau horaire par défaut pour votre site" + +#: ../../mod/install.php:265 +msgid "Site settings" +msgstr "Réglages du site" + +#: ../../mod/install.php:318 +msgid "Could not find a command line version of PHP in the web server PATH." +msgstr "Impossible de trouver la version \"ligne de commande\" de PHP dans le PATH du serveur web." + +#: ../../mod/install.php:319 +msgid "" +"If you don't have a command line version of PHP installed on server, you " +"will not be able to run background polling via cron. See 'Activating scheduled tasks'" +msgstr "Si vous n'avez pas de version \"ligne de commande\" de PHP sur votre serveur, vous ne pourrez pas utiliser le 'poller' en tâche de fond via cron. Voir 'Activating scheduled tasks'" + +#: ../../mod/install.php:323 +msgid "PHP executable path" +msgstr "Chemin vers l'exécutable de PHP" + +#: ../../mod/install.php:323 +msgid "" +"Enter full path to php executable. You can leave this blank to continue the " +"installation." +msgstr "Entrez le chemin (absolu) vers l'exécutable 'php'. Vous pouvez laisser cette ligne vide pour continuer l'installation." + +#: ../../mod/install.php:328 +msgid "Command line PHP" +msgstr "Version \"ligne de commande\" de PHP" + +#: ../../mod/install.php:337 +msgid "" +"The command line version of PHP on your system does not have " +"\"register_argc_argv\" enabled." +msgstr "La version \"ligne de commande\" de PHP de votre système n'a pas \"register_argc_argv\" d'activé." + +#: ../../mod/install.php:338 +msgid "This is required for message delivery to work." +msgstr "Ceci est requis pour que la livraison des messages fonctionne." + +#: ../../mod/install.php:340 +msgid "PHP register_argc_argv" +msgstr "PHP register_argc_argv" + +#: ../../mod/install.php:361 +msgid "" +"Error: the \"openssl_pkey_new\" function on this system is not able to " +"generate encryption keys" +msgstr "Erreur: la fonction \"openssl_pkey_new\" de ce système ne permet pas de générer des clés de chiffrement" + +#: ../../mod/install.php:362 +msgid "" +"If running under Windows, please see " +"\"http://www.php.net/manual/en/openssl.installation.php\"." +msgstr "Si vous utilisez Windows, merci de vous réferer à \"http://www.php.net/manual/en/openssl.installation.php\"." + +#: ../../mod/install.php:364 +msgid "Generate encryption keys" +msgstr "Générer les clés de chiffrement" + +#: ../../mod/install.php:371 +msgid "libCurl PHP module" +msgstr "Module libCurl de PHP" + +#: ../../mod/install.php:372 +msgid "GD graphics PHP module" +msgstr "Module GD (graphiques) de PHP" + +#: ../../mod/install.php:373 +msgid "OpenSSL PHP module" +msgstr "Module OpenSSL de PHP" + +#: ../../mod/install.php:374 +msgid "mysqli PHP module" +msgstr "Module Mysqli de PHP" + +#: ../../mod/install.php:375 +msgid "mb_string PHP module" +msgstr "Module mb_string de PHP" + +#: ../../mod/install.php:380 ../../mod/install.php:382 +msgid "Apache mod_rewrite module" +msgstr "Module mod_rewrite Apache" + +#: ../../mod/install.php:380 +msgid "" +"Error: Apache webserver mod-rewrite module is required but not installed." +msgstr "Erreur: Le module \"rewrite\" du serveur web Apache est requis mais pas installé." + +#: ../../mod/install.php:388 +msgid "Error: libCURL PHP module required but not installed." +msgstr "Erreur: Le module PHP \"libCURL\" est requis mais pas installé." + +#: ../../mod/install.php:392 +msgid "" +"Error: GD graphics PHP module with JPEG support required but not installed." +msgstr "Erreur: Le module PHP \"GD\" disposant du support JPEG est requis mais pas installé." + +#: ../../mod/install.php:396 +msgid "Error: openssl PHP module required but not installed." +msgstr "Erreur: Le module PHP \"openssl\" est requis mais pas installé." + +#: ../../mod/install.php:400 +msgid "Error: mysqli PHP module required but not installed." +msgstr "Erreur: Le module PHP \"mysqli\" est requis mais pas installé." + +#: ../../mod/install.php:404 +msgid "Error: mb_string PHP module required but not installed." +msgstr "Erreur: le module PHP mb_string est requis mais pas installé." + +#: ../../mod/install.php:421 +msgid "" +"The web installer needs to be able to create a file called \".htconfig.php\"" +" in the top folder of your web server and it is unable to do so." +msgstr "L'installeur web doit être en mesure de créer un fichier \".htconfig.php\" à la racine de votre serveur web, mais il en est incapable." + +#: ../../mod/install.php:422 +msgid "" +"This is most often a permission setting, as the web server may not be able " +"to write files in your folder - even if you can." +msgstr "Le plus souvent, il s'agit d'un problème de permission. Le serveur web peut ne pas être capable d'écrire dans votre répertoire - alors que vous-même le pouvez." + +#: ../../mod/install.php:423 +msgid "" +"At the end of this procedure, we will give you a text to save in a file " +"named .htconfig.php in your Friendica top folder." +msgstr "A la fin de cette étape, nous vous fournirons un texte à sauvegarder dans un fichier nommé .htconfig.php à la racine de votre répertoire Friendica." + +#: ../../mod/install.php:424 +msgid "" +"You can alternatively skip this procedure and perform a manual installation." +" Please see the file \"INSTALL.txt\" for instructions." +msgstr "Vous pouvez également sauter cette étape et procéder à une installation manuelle. Pour cela, merci de lire le fichier \"INSTALL.txt\"." + +#: ../../mod/install.php:427 +msgid ".htconfig.php is writable" +msgstr "Fichier .htconfig.php accessible en écriture" + +#: ../../mod/install.php:439 +msgid "" +"Url rewrite in .htaccess is not working. Check your server configuration." +msgstr "La réécriture d'URL dans le fichier .htaccess ne fonctionne pas. Vérifiez la configuration de votre serveur." + +#: ../../mod/install.php:441 +msgid "Url rewrite is working" +msgstr "La réécriture d'URL fonctionne." + +#: ../../mod/install.php:451 +msgid "" +"The database configuration file \".htconfig.php\" could not be written. " +"Please use the enclosed text to create a configuration file in your web " +"server root." +msgstr "Le fichier de configuration de la base (\".htconfig.php\") ne peut être créé. Merci d'utiliser le texte ci-joint pour créer ce fichier à la racine de votre hébergement." + +#: ../../mod/install.php:475 +msgid "Errors encountered creating database tables." +msgstr "Des erreurs ont été signalées lors de la création des tables." + +#: ../../mod/install.php:486 +msgid "

    What next

    " +msgstr "

    Ensuite

    " + +#: ../../mod/install.php:487 +msgid "" +"IMPORTANT: You will need to [manually] setup a scheduled task for the " +"poller." +msgstr "IMPORTANT: Vous devez configurer [manuellement] une tâche programmée pour le 'poller'." #: ../../mod/localtime.php:12 ../../include/event.php:11 -#: ../../include/bb2diaspora.php:227 +#: ../../include/bb2diaspora.php:390 msgid "l F d, Y \\@ g:i A" msgstr "l F d, Y \\@ g:i A" @@ -1461,9 +1214,7 @@ msgstr "Conversion temporelle" msgid "" "Friendika provides this service for sharing events with other networks and " "friends in unknown timezones." -msgstr "" -"Friendica fournit ce service pour partager des événements avec d'autres " -"réseaux et amis indépendament de leur fuseau horaire." +msgstr "Friendica fournit ce service pour partager des événements avec d'autres réseaux et amis indépendament de leur fuseau horaire." #: ../../mod/localtime.php:30 #, php-format @@ -1484,71 +1235,3313 @@ msgstr "Temps local converti : %s" msgid "Please select your timezone:" msgstr "Sélectionner votre zone :" -#: ../../mod/display.php:108 +#: ../../mod/poke.php:192 +msgid "Poke/Prod" +msgstr "Solliciter" + +#: ../../mod/poke.php:193 +msgid "poke, prod or do other things to somebody" +msgstr "solliciter (poke/...) quelqu'un" + +#: ../../mod/poke.php:194 +msgid "Recipient" +msgstr "Destinataire" + +#: ../../mod/poke.php:195 +msgid "Choose what you wish to do to recipient" +msgstr "Choisissez ce que vous voulez faire au destinataire" + +#: ../../mod/poke.php:198 +msgid "Make this post private" +msgstr "Rendez ce message privé" + +#: ../../mod/match.php:12 +msgid "Profile Match" +msgstr "Correpondance de profils" + +#: ../../mod/match.php:20 +msgid "No keywords to match. Please add keywords to your default profile." +msgstr "Aucun mot-clé en correspondance. Merci d'ajouter des mots-clés à votre profil par défaut." + +#: ../../mod/match.php:57 +msgid "is interested in:" +msgstr "s'intéresse à:" + +#: ../../mod/match.php:58 ../../mod/suggest.php:59 +#: ../../include/contact_widgets.php:9 ../../boot.php:1164 +msgid "Connect" +msgstr "Relier" + +#: ../../mod/match.php:65 ../../mod/dirfind.php:60 +msgid "No matches" +msgstr "Aucune correspondance" + +#: ../../mod/lockview.php:39 +msgid "Remote privacy information not available." +msgstr "Informations de confidentialité indisponibles." + +#: ../../mod/lockview.php:43 +msgid "Visible to:" +msgstr "Visible par:" + +#: ../../mod/content.php:119 ../../mod/network.php:436 +msgid "No such group" +msgstr "Groupe inexistant" + +#: ../../mod/content.php:130 ../../mod/network.php:447 +msgid "Group is empty" +msgstr "Groupe vide" + +#: ../../mod/content.php:134 ../../mod/network.php:451 +msgid "Group: " +msgstr "Groupe: " + +#: ../../mod/content.php:438 ../../mod/content.php:722 +#: ../../include/conversation.php:514 ../../object/Item.php:116 +msgid "Select" +msgstr "Sélectionner" + +#: ../../mod/content.php:455 ../../mod/content.php:815 +#: ../../mod/content.php:816 ../../include/conversation.php:533 +#: ../../object/Item.php:227 ../../object/Item.php:228 +#, php-format +msgid "View %s's profile @ %s" +msgstr "Voir le profil de %s @ %s" + +#: ../../mod/content.php:465 ../../mod/content.php:827 +#: ../../include/conversation.php:553 ../../object/Item.php:240 +#, php-format +msgid "%s from %s" +msgstr "%s de %s" + +#: ../../mod/content.php:480 ../../include/conversation.php:568 +msgid "View in context" +msgstr "Voir dans le contexte" + +#: ../../mod/content.php:586 ../../object/Item.php:277 +#, php-format +msgid "%d comment" +msgid_plural "%d comments" +msgstr[0] "%d commentaire" +msgstr[1] "%d commentaires" + +#: ../../mod/content.php:588 ../../include/text.php:1443 +#: ../../object/Item.php:279 ../../object/Item.php:292 +msgid "comment" +msgid_plural "comments" +msgstr[0] "" +msgstr[1] "commentaire" + +#: ../../mod/content.php:589 ../../addon/page/page.php:76 +#: ../../addon/page/page.php:110 ../../addon/showmore/showmore.php:119 +#: ../../include/contact_widgets.php:195 ../../boot.php:575 +#: ../../object/Item.php:280 +msgid "show more" +msgstr "montrer plus" + +#: ../../mod/content.php:667 ../../object/Item.php:196 +msgid "like" +msgstr "aime" + +#: ../../mod/content.php:668 ../../object/Item.php:197 +msgid "dislike" +msgstr "n'aime pas" + +#: ../../mod/content.php:670 ../../object/Item.php:199 +msgid "Share this" +msgstr "Partager" + +#: ../../mod/content.php:670 ../../object/Item.php:199 +msgid "share" +msgstr "partager" + +#: ../../mod/content.php:694 ../../object/Item.php:561 +msgid "Bold" +msgstr "Gras" + +#: ../../mod/content.php:695 ../../object/Item.php:562 +msgid "Italic" +msgstr "Italique" + +#: ../../mod/content.php:696 ../../object/Item.php:563 +msgid "Underline" +msgstr "Souligné" + +#: ../../mod/content.php:697 ../../object/Item.php:564 +msgid "Quote" +msgstr "Citation" + +#: ../../mod/content.php:698 ../../object/Item.php:565 +msgid "Code" +msgstr "Code" + +#: ../../mod/content.php:699 ../../object/Item.php:566 +msgid "Image" +msgstr "Image" + +#: ../../mod/content.php:700 ../../object/Item.php:567 +msgid "Link" +msgstr "Lien" + +#: ../../mod/content.php:701 ../../object/Item.php:568 +msgid "Video" +msgstr "Vidéo" + +#: ../../mod/content.php:735 ../../object/Item.php:180 +msgid "add star" +msgstr "mett en avant" + +#: ../../mod/content.php:736 ../../object/Item.php:181 +msgid "remove star" +msgstr "ne plus mettre en avant" + +#: ../../mod/content.php:737 ../../object/Item.php:182 +msgid "toggle star status" +msgstr "mettre en avant" + +#: ../../mod/content.php:740 ../../object/Item.php:185 +msgid "starred" +msgstr "mis en avant" + +#: ../../mod/content.php:741 ../../object/Item.php:186 +msgid "add tag" +msgstr "ajouter un tag" + +#: ../../mod/content.php:745 ../../object/Item.php:120 +msgid "save to folder" +msgstr "sauver vers dossier" + +#: ../../mod/content.php:817 ../../object/Item.php:229 +msgid "to" +msgstr "à" + +#: ../../mod/content.php:818 ../../object/Item.php:230 +msgid "Wall-to-Wall" +msgstr "Inter-mur" + +#: ../../mod/content.php:819 ../../object/Item.php:231 +msgid "via Wall-To-Wall:" +msgstr "en Inter-mur:" + +#: ../../mod/home.php:28 ../../addon/communityhome/communityhome.php:179 +#, php-format +msgid "Welcome to %s" +msgstr "Bienvenue sur %s" + +#: ../../mod/notifications.php:26 +msgid "Invalid request identifier." +msgstr "Identifiant de demande invalide." + +#: ../../mod/notifications.php:35 ../../mod/notifications.php:161 +#: ../../mod/notifications.php:207 +msgid "Discard" +msgstr "Rejeter" + +#: ../../mod/notifications.php:51 ../../mod/notifications.php:160 +#: ../../mod/notifications.php:206 ../../mod/contacts.php:321 +#: ../../mod/contacts.php:375 +msgid "Ignore" +msgstr "Ignorer" + +#: ../../mod/notifications.php:75 +msgid "System" +msgstr "Système" + +#: ../../mod/notifications.php:80 ../../include/nav.php:113 +msgid "Network" +msgstr "Réseau" + +#: ../../mod/notifications.php:85 ../../mod/network.php:300 +msgid "Personal" +msgstr "Personnel" + +#: ../../mod/notifications.php:90 ../../view/theme/diabook/theme.php:127 +#: ../../include/nav.php:77 ../../include/nav.php:115 +msgid "Home" +msgstr "Accueil" + +#: ../../mod/notifications.php:95 ../../include/nav.php:121 +msgid "Introductions" +msgstr "Introductions" + +#: ../../mod/notifications.php:100 ../../mod/message.php:176 +#: ../../include/nav.php:128 +msgid "Messages" +msgstr "Messages" + +#: ../../mod/notifications.php:119 +msgid "Show Ignored Requests" +msgstr "Voir les demandes ignorées" + +#: ../../mod/notifications.php:119 +msgid "Hide Ignored Requests" +msgstr "Cacher les demandes ignorées" + +#: ../../mod/notifications.php:145 ../../mod/notifications.php:191 +msgid "Notification type: " +msgstr "Type de notification: " + +#: ../../mod/notifications.php:146 +msgid "Friend Suggestion" +msgstr "Suggestion d'amitié/contact" + +#: ../../mod/notifications.php:148 +#, php-format +msgid "suggested by %s" +msgstr "suggéré(e) par %s" + +#: ../../mod/notifications.php:153 ../../mod/notifications.php:200 +#: ../../mod/contacts.php:381 +msgid "Hide this contact from others" +msgstr "Cacher ce contact aux autres" + +#: ../../mod/notifications.php:154 ../../mod/notifications.php:201 +msgid "Post a new friend activity" +msgstr "Poster concernant les nouvelles amitiés" + +#: ../../mod/notifications.php:154 ../../mod/notifications.php:201 +msgid "if applicable" +msgstr "si possible" + +#: ../../mod/notifications.php:157 ../../mod/notifications.php:204 +#: ../../mod/admin.php:694 +msgid "Approve" +msgstr "Approuver" + +#: ../../mod/notifications.php:177 +msgid "Claims to be known to you: " +msgstr "Prétend que vous le connaissez: " + +#: ../../mod/notifications.php:177 +msgid "yes" +msgstr "oui" + +#: ../../mod/notifications.php:177 +msgid "no" +msgstr "non" + +#: ../../mod/notifications.php:184 +msgid "Approve as: " +msgstr "Approuver en tant que: " + +#: ../../mod/notifications.php:185 +msgid "Friend" +msgstr "Ami" + +#: ../../mod/notifications.php:186 +msgid "Sharer" +msgstr "Initiateur du partage" + +#: ../../mod/notifications.php:186 +msgid "Fan/Admirer" +msgstr "Fan/Admirateur" + +#: ../../mod/notifications.php:192 +msgid "Friend/Connect Request" +msgstr "Demande de connexion/relation" + +#: ../../mod/notifications.php:192 +msgid "New Follower" +msgstr "Nouvel abonné" + +#: ../../mod/notifications.php:213 +msgid "No introductions." +msgstr "Aucune demande d'introduction." + +#: ../../mod/notifications.php:216 ../../include/nav.php:122 +msgid "Notifications" +msgstr "Notifications" + +#: ../../mod/notifications.php:253 ../../mod/notifications.php:378 +#: ../../mod/notifications.php:465 +#, php-format +msgid "%s liked %s's post" +msgstr "%s a aimé la notice de %s" + +#: ../../mod/notifications.php:262 ../../mod/notifications.php:387 +#: ../../mod/notifications.php:474 +#, php-format +msgid "%s disliked %s's post" +msgstr "%s n'a pas aimé la notice 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 est désormais ami(e) avec %s" + +#: ../../mod/notifications.php:283 ../../mod/notifications.php:408 +#, php-format +msgid "%s created a new post" +msgstr "%s a publié une notice" + +#: ../../mod/notifications.php:284 ../../mod/notifications.php:409 +#: ../../mod/notifications.php:497 +#, php-format +msgid "%s commented on %s's post" +msgstr "%s a commenté une notice de %s" + +#: ../../mod/notifications.php:298 +msgid "No more network notifications." +msgstr "Aucune notification du réseau." + +#: ../../mod/notifications.php:302 +msgid "Network Notifications" +msgstr "Notifications du réseau" + +#: ../../mod/notifications.php:328 ../../mod/notify.php:61 +msgid "No more system notifications." +msgstr "Pas plus de notifications système." + +#: ../../mod/notifications.php:332 ../../mod/notify.php:65 +msgid "System Notifications" +msgstr "Notifications du système" + +#: ../../mod/notifications.php:423 +msgid "No more personal notifications." +msgstr "Aucun notification personnelle." + +#: ../../mod/notifications.php:427 +msgid "Personal Notifications" +msgstr "Notifications personnelles" + +#: ../../mod/notifications.php:504 +msgid "No more home notifications." +msgstr "Aucune notification de la page d'accueil." + +#: ../../mod/notifications.php:508 +msgid "Home Notifications" +msgstr "Notifications de page d'accueil" + +#: ../../mod/contacts.php:84 ../../mod/contacts.php:164 +msgid "Could not access contact record." +msgstr "Impossible d'accéder à l'enregistrement du contact." + +#: ../../mod/contacts.php:98 +msgid "Could not locate selected profile." +msgstr "Impossible de localiser le profil séléctionné." + +#: ../../mod/contacts.php:121 +msgid "Contact updated." +msgstr "Contact mis-à-jour." + +#: ../../mod/contacts.php:186 +msgid "Contact has been blocked" +msgstr "Le contact a été bloqué" + +#: ../../mod/contacts.php:186 +msgid "Contact has been unblocked" +msgstr "Le contact n'est plus bloqué" + +#: ../../mod/contacts.php:200 +msgid "Contact has been ignored" +msgstr "Le contact a été ignoré" + +#: ../../mod/contacts.php:200 +msgid "Contact has been unignored" +msgstr "Le contact n'est plus ignoré" + +#: ../../mod/contacts.php:216 +msgid "Contact has been archived" +msgstr "Contact archivé" + +#: ../../mod/contacts.php:216 +msgid "Contact has been unarchived" +msgstr "Contact désarchivé" + +#: ../../mod/contacts.php:229 +msgid "Contact has been removed." +msgstr "Ce contact a été retiré." + +#: ../../mod/contacts.php:263 +#, php-format +msgid "You are mutual friends with %s" +msgstr "Vous êtes ami (et réciproquement) avec %s" + +#: ../../mod/contacts.php:267 +#, php-format +msgid "You are sharing with %s" +msgstr "Vous partagez avec %s" + +#: ../../mod/contacts.php:272 +#, php-format +msgid "%s is sharing with you" +msgstr "%s partage avec vous" + +#: ../../mod/contacts.php:289 +msgid "Private communications are not available for this contact." +msgstr "Les communications privées ne sont pas disponibles pour ce contact." + +#: ../../mod/contacts.php:292 +msgid "Never" +msgstr "Jamais" + +#: ../../mod/contacts.php:296 +msgid "(Update was successful)" +msgstr "(Mise à jour effectuée avec succès)" + +#: ../../mod/contacts.php:296 +msgid "(Update was not successful)" +msgstr "(Mise à jour échouée)" + +#: ../../mod/contacts.php:298 +msgid "Suggest friends" +msgstr "Suggérer amitié/contact" + +#: ../../mod/contacts.php:302 +#, php-format +msgid "Network type: %s" +msgstr "Type de réseau %s" + +#: ../../mod/contacts.php:305 ../../include/contact_widgets.php:190 +#, php-format +msgid "%d contact in common" +msgid_plural "%d contacts in common" +msgstr[0] "%d contact en commun" +msgstr[1] "%d contacts en commun" + +#: ../../mod/contacts.php:310 +msgid "View all contacts" +msgstr "Voir tous les contacts" + +#: ../../mod/contacts.php:315 ../../mod/contacts.php:374 +#: ../../mod/admin.php:698 +msgid "Unblock" +msgstr "Débloquer" + +#: ../../mod/contacts.php:315 ../../mod/contacts.php:374 +#: ../../mod/admin.php:697 +msgid "Block" +msgstr "Bloquer" + +#: ../../mod/contacts.php:318 +msgid "Toggle Blocked status" +msgstr "(dés)activer l'état \"bloqué\"" + +#: ../../mod/contacts.php:321 ../../mod/contacts.php:375 +msgid "Unignore" +msgstr "Ne plus ignorer" + +#: ../../mod/contacts.php:324 +msgid "Toggle Ignored status" +msgstr "(dés)activer l'état \"ignoré\"" + +#: ../../mod/contacts.php:328 +msgid "Unarchive" +msgstr "Désarchiver" + +#: ../../mod/contacts.php:328 +msgid "Archive" +msgstr "Archiver" + +#: ../../mod/contacts.php:331 +msgid "Toggle Archive status" +msgstr "(dés)activer l'état \"archivé\"" + +#: ../../mod/contacts.php:334 +msgid "Repair" +msgstr "Réparer" + +#: ../../mod/contacts.php:337 +msgid "Advanced Contact Settings" +msgstr "Réglages avancés du contact" + +#: ../../mod/contacts.php:343 +msgid "Communications lost with this contact!" +msgstr "Communications perdues avec ce contact !" + +#: ../../mod/contacts.php:346 +msgid "Contact Editor" +msgstr "Éditeur de contact" + +#: ../../mod/contacts.php:349 +msgid "Profile Visibility" +msgstr "Visibilité du profil" + +#: ../../mod/contacts.php:350 +#, php-format +msgid "" +"Please choose the profile you would like to display to %s when viewing your " +"profile securely." +msgstr "Merci de choisir le profil que vous souhaitez montrer à %s lorsqu'il vous rend visite de manière sécurisée." + +#: ../../mod/contacts.php:351 +msgid "Contact Information / Notes" +msgstr "Informations de contact / Notes" + +#: ../../mod/contacts.php:352 +msgid "Edit contact notes" +msgstr "Éditer les notes des contacts" + +#: ../../mod/contacts.php:357 ../../mod/contacts.php:549 +#: ../../mod/viewcontacts.php:62 ../../mod/nogroup.php:40 +#, php-format +msgid "Visit %s's profile [%s]" +msgstr "Visiter le profil de %s [%s]" + +#: ../../mod/contacts.php:358 +msgid "Block/Unblock contact" +msgstr "Bloquer/débloquer ce contact" + +#: ../../mod/contacts.php:359 +msgid "Ignore contact" +msgstr "Ignorer ce contact" + +#: ../../mod/contacts.php:360 +msgid "Repair URL settings" +msgstr "Réparer les réglages d'URL" + +#: ../../mod/contacts.php:361 +msgid "View conversations" +msgstr "Voir les conversations" + +#: ../../mod/contacts.php:363 +msgid "Delete contact" +msgstr "Effacer ce contact" + +#: ../../mod/contacts.php:367 +msgid "Last update:" +msgstr "Dernière mise-à-jour :" + +#: ../../mod/contacts.php:369 +msgid "Update public posts" +msgstr "Met ses entrées publiques à jour: " + +#: ../../mod/contacts.php:371 ../../mod/admin.php:1170 +msgid "Update now" +msgstr "Mettre à jour" + +#: ../../mod/contacts.php:378 +msgid "Currently blocked" +msgstr "Actuellement bloqué" + +#: ../../mod/contacts.php:379 +msgid "Currently ignored" +msgstr "Actuellement ignoré" + +#: ../../mod/contacts.php:380 +msgid "Currently archived" +msgstr "Actuellement archivé" + +#: ../../mod/contacts.php:381 +msgid "" +"Replies/likes to your public posts may still be visible" +msgstr "Les réponses et \"j'aime\" à vos contenus publics peuvent être toujours visibles" + +#: ../../mod/contacts.php:434 +msgid "Suggestions" +msgstr "Suggestions" + +#: ../../mod/contacts.php:437 +msgid "Suggest potential friends" +msgstr "Suggérer des amis potentiels" + +#: ../../mod/contacts.php:440 ../../mod/group.php:191 +msgid "All Contacts" +msgstr "Tous les contacts" + +#: ../../mod/contacts.php:443 +msgid "Show all contacts" +msgstr "Montrer tous les contacts" + +#: ../../mod/contacts.php:446 +msgid "Unblocked" +msgstr "Non-bloqués" + +#: ../../mod/contacts.php:449 +msgid "Only show unblocked contacts" +msgstr "Ne montrer que les contacts non-bloqués" + +#: ../../mod/contacts.php:453 +msgid "Blocked" +msgstr "Bloqués" + +#: ../../mod/contacts.php:456 +msgid "Only show blocked contacts" +msgstr "Ne montrer que les contacts bloqués" + +#: ../../mod/contacts.php:460 +msgid "Ignored" +msgstr "Ignorés" + +#: ../../mod/contacts.php:463 +msgid "Only show ignored contacts" +msgstr "Ne montrer que les contacts ignorés" + +#: ../../mod/contacts.php:467 +msgid "Archived" +msgstr "Archivés" + +#: ../../mod/contacts.php:470 +msgid "Only show archived contacts" +msgstr "Ne montrer que les contacts archivés" + +#: ../../mod/contacts.php:474 +msgid "Hidden" +msgstr "Cachés" + +#: ../../mod/contacts.php:477 +msgid "Only show hidden contacts" +msgstr "Ne montrer que les contacts masqués" + +#: ../../mod/contacts.php:525 +msgid "Mutual Friendship" +msgstr "Relation réciproque" + +#: ../../mod/contacts.php:529 +msgid "is a fan of yours" +msgstr "Vous suit" + +#: ../../mod/contacts.php:533 +msgid "you are a fan of" +msgstr "Vous le/la suivez" + +#: ../../mod/contacts.php:550 ../../mod/nogroup.php:41 +msgid "Edit contact" +msgstr "Éditer le contact" + +#: ../../mod/contacts.php:571 ../../view/theme/diabook/theme.php:129 +#: ../../include/nav.php:139 +msgid "Contacts" +msgstr "Contacts" + +#: ../../mod/contacts.php:575 +msgid "Search your contacts" +msgstr "Rechercher dans vos contacts" + +#: ../../mod/contacts.php:576 ../../mod/directory.php:59 +msgid "Finding: " +msgstr "Trouvé: " + +#: ../../mod/contacts.php:577 ../../mod/directory.php:61 +#: ../../include/contact_widgets.php:33 +msgid "Find" +msgstr "Trouver" + +#: ../../mod/lostpass.php:16 +msgid "No valid account found." +msgstr "Impossible de trouver un compte valide." + +#: ../../mod/lostpass.php:32 +msgid "Password reset request issued. Check your email." +msgstr "Réinitialisation du mot de passe en cours. Vérifiez votre courriel." + +#: ../../mod/lostpass.php:43 +#, php-format +msgid "Password reset requested at %s" +msgstr "Requête de réinitialisation de mot de passe à %s" + +#: ../../mod/lostpass.php:45 ../../mod/lostpass.php:107 +#: ../../mod/register.php:90 ../../mod/register.php:144 +#: ../../mod/regmod.php:54 ../../mod/dfrn_confirm.php:752 +#: ../../addon/facebook/facebook.php:702 +#: ../../addon/facebook/facebook.php:1200 ../../addon/fbpost/fbpost.php:661 +#: ../../addon/public_server/public_server.php:62 +#: ../../addon/testdrive/testdrive.php:67 ../../include/items.php:3296 +#: ../../boot.php:788 +msgid "Administrator" +msgstr "Administrateur" + +#: ../../mod/lostpass.php:65 +msgid "" +"Request could not be verified. (You may have previously submitted it.) " +"Password reset failed." +msgstr "Impossible d'honorer cette demande. (Vous l'avez peut-être déjà utilisée par le passé.) La réinitialisation a échoué." + +#: ../../mod/lostpass.php:83 ../../boot.php:925 +msgid "Password Reset" +msgstr "Réinitialiser le mot de passe" + +#: ../../mod/lostpass.php:84 +msgid "Your password has been reset as requested." +msgstr "Votre mot de passe a bien été réinitialisé." + +#: ../../mod/lostpass.php:85 +msgid "Your new password is" +msgstr "Votre nouveau mot de passe est " + +#: ../../mod/lostpass.php:86 +msgid "Save or copy your new password - and then" +msgstr "Sauvez ou copiez ce nouveau mot de passe - puis" + +#: ../../mod/lostpass.php:87 +msgid "click here to login" +msgstr "cliquez ici pour vous connecter" + +#: ../../mod/lostpass.php:88 +msgid "" +"Your password may be changed from the Settings page after " +"successful login." +msgstr "Votre mot de passe peut être changé depuis la page <em>Réglages</em>, une fois que vous serez connecté." + +#: ../../mod/lostpass.php:119 +msgid "Forgot your Password?" +msgstr "Mot de passe oublié?" + +#: ../../mod/lostpass.php:120 +msgid "" +"Enter your email address and submit to have your password reset. Then check " +"your email for further instructions." +msgstr "Entrez votre adresse de courriel et validez pour réinitialiser votre mot de passe. Vous recevrez la suite des instructions par courriel." + +#: ../../mod/lostpass.php:121 +msgid "Nickname or Email: " +msgstr "Pseudo ou Courriel: " + +#: ../../mod/lostpass.php:122 +msgid "Reset" +msgstr "Réinitialiser" + +#: ../../mod/settings.php:30 ../../include/nav.php:137 +msgid "Account settings" +msgstr "Compte" + +#: ../../mod/settings.php:35 +msgid "Display settings" +msgstr "Affichage" + +#: ../../mod/settings.php:41 +msgid "Connector settings" +msgstr "Connecteurs" + +#: ../../mod/settings.php:46 +msgid "Plugin settings" +msgstr "Extensions" + +#: ../../mod/settings.php:51 +msgid "Connected apps" +msgstr "Applications connectées" + +#: ../../mod/settings.php:56 +msgid "Export personal data" +msgstr "Exporter" + +#: ../../mod/settings.php:61 +msgid "Remove account" +msgstr "Supprimer le compte" + +#: ../../mod/settings.php:69 ../../mod/newmember.php:22 +#: ../../mod/admin.php:785 ../../mod/admin.php:990 +#: ../../addon/dav/friendica/layout.fnk.php:225 +#: ../../addon/mathjax/mathjax.php:36 ../../view/theme/diabook/theme.php:643 +#: ../../view/theme/diabook/theme.php:773 ../../include/nav.php:137 +msgid "Settings" +msgstr "Réglages" + +#: ../../mod/settings.php:113 +msgid "Missing some important data!" +msgstr "Il manque certaines informations importantes!" + +#: ../../mod/settings.php:116 ../../mod/settings.php:569 +msgid "Update" +msgstr "Mises-à-jour" + +#: ../../mod/settings.php:221 +msgid "Failed to connect with email account using the settings provided." +msgstr "Impossible de se connecter au compte courriel configuré." + +#: ../../mod/settings.php:226 +msgid "Email settings updated." +msgstr "Réglages de courriel mis-à-jour." + +#: ../../mod/settings.php:290 +msgid "Passwords do not match. Password unchanged." +msgstr "Les mots de passe ne correspondent pas. Aucun changement appliqué." + +#: ../../mod/settings.php:295 +msgid "Empty passwords are not allowed. Password unchanged." +msgstr "Les mots de passe vides sont interdits. Aucun changement appliqué." + +#: ../../mod/settings.php:306 +msgid "Password changed." +msgstr "Mots de passe changés." + +#: ../../mod/settings.php:308 +msgid "Password update failed. Please try again." +msgstr "Le changement de mot de passe a échoué. Merci de recommencer." + +#: ../../mod/settings.php:373 +msgid " Please use a shorter name." +msgstr " Merci d'utiliser un nom plus court." + +#: ../../mod/settings.php:375 +msgid " Name too short." +msgstr " Nom trop court." + +#: ../../mod/settings.php:381 +msgid " Not valid email." +msgstr " Email invalide." + +#: ../../mod/settings.php:383 +msgid " Cannot change to that email." +msgstr " Impossible de changer pour cet email." + +#: ../../mod/settings.php:437 +msgid "Private forum has no privacy permissions. Using default privacy group." +msgstr "Ce forum privé n'a pas de paramètres de vie privée. Utilisation des paramètres de confidentialité par défaut." + +#: ../../mod/settings.php:441 +msgid "Private forum has no privacy permissions and no default privacy group." +msgstr "Ce forum privé n'a pas de paramètres de vie privée ni de paramètres de confidentialité par défaut." + +#: ../../mod/settings.php:471 ../../addon/facebook/facebook.php:495 +#: ../../addon/fbpost/fbpost.php:144 ../../addon/impressum/impressum.php:78 +#: ../../addon/openstreetmap/openstreetmap.php:80 +#: ../../addon/mathjax/mathjax.php:66 ../../addon/piwik/piwik.php:105 +#: ../../addon/twitter/twitter.php:389 +msgid "Settings updated." +msgstr "Réglages mis à jour." + +#: ../../mod/settings.php:542 ../../mod/settings.php:568 +#: ../../mod/settings.php:604 +msgid "Add application" +msgstr "Ajouter une application" + +#: ../../mod/settings.php:546 ../../mod/settings.php:572 +#: ../../addon/statusnet/statusnet.php:570 +msgid "Consumer Key" +msgstr "Clé utilisateur" + +#: ../../mod/settings.php:547 ../../mod/settings.php:573 +#: ../../addon/statusnet/statusnet.php:569 +msgid "Consumer Secret" +msgstr "Secret utilisateur" + +#: ../../mod/settings.php:548 ../../mod/settings.php:574 +msgid "Redirect" +msgstr "Rediriger" + +#: ../../mod/settings.php:549 ../../mod/settings.php:575 +msgid "Icon url" +msgstr "URL de l'icône" + +#: ../../mod/settings.php:560 +msgid "You can't edit this application." +msgstr "Vous ne pouvez pas éditer cette application." + +#: ../../mod/settings.php:603 +msgid "Connected Apps" +msgstr "Applications connectées" + +#: ../../mod/settings.php:607 +msgid "Client key starts with" +msgstr "La clé cliente commence par" + +#: ../../mod/settings.php:608 +msgid "No name" +msgstr "Sans nom" + +#: ../../mod/settings.php:609 +msgid "Remove authorization" +msgstr "Révoquer l'autorisation" + +#: ../../mod/settings.php:620 +msgid "No Plugin settings configured" +msgstr "Pas de réglages d'extensions configurés" + +#: ../../mod/settings.php:628 ../../addon/widgets/widgets.php:123 +msgid "Plugin Settings" +msgstr "Extensions" + +#: ../../mod/settings.php:640 ../../mod/settings.php:641 +#, php-format +msgid "Built-in support for %s connectivity is %s" +msgstr "Le support natif pour la connectivité %s est %s" + +#: ../../mod/settings.php:640 ../../mod/settings.php:641 +msgid "enabled" +msgstr "activé" + +#: ../../mod/settings.php:640 ../../mod/settings.php:641 +msgid "disabled" +msgstr "désactivé" + +#: ../../mod/settings.php:641 +msgid "StatusNet" +msgstr "StatusNet" + +#: ../../mod/settings.php:673 +msgid "Email access is disabled on this site." +msgstr "L'accès courriel est désactivé sur ce site." + +#: ../../mod/settings.php:679 +msgid "Connector Settings" +msgstr "Connecteurs" + +#: ../../mod/settings.php:684 +msgid "Email/Mailbox Setup" +msgstr "Réglages de courriel/boîte à lettre" + +#: ../../mod/settings.php:685 +msgid "" +"If you wish to communicate with email contacts using this service " +"(optional), please specify how to connect to your mailbox." +msgstr "Si vous souhaitez communiquer avec vos contacts \"courriel\" (facultatif), merci de nous indiquer comment vous connecter à votre boîte." + +#: ../../mod/settings.php:686 +msgid "Last successful email check:" +msgstr "Dernière vérification réussie des courriels:" + +#: ../../mod/settings.php:688 +msgid "IMAP server name:" +msgstr "Nom du serveur IMAP:" + +#: ../../mod/settings.php:689 +msgid "IMAP port:" +msgstr "Port IMAP:" + +#: ../../mod/settings.php:690 +msgid "Security:" +msgstr "Sécurité:" + +#: ../../mod/settings.php:690 ../../mod/settings.php:695 +#: ../../addon/dav/common/wdcal_edit.inc.php:191 +msgid "None" +msgstr "Aucun(e)" + +#: ../../mod/settings.php:691 +msgid "Email login name:" +msgstr "Nom de connexion:" + +#: ../../mod/settings.php:692 +msgid "Email password:" +msgstr "Mot de passe:" + +#: ../../mod/settings.php:693 +msgid "Reply-to address:" +msgstr "Adresse de réponse:" + +#: ../../mod/settings.php:694 +msgid "Send public posts to all email contacts:" +msgstr "Les notices publiques vont à tous les contacts courriel:" + +#: ../../mod/settings.php:695 +msgid "Action after import:" +msgstr "Action après import:" + +#: ../../mod/settings.php:695 +msgid "Mark as seen" +msgstr "Marquer comme vu" + +#: ../../mod/settings.php:695 +msgid "Move to folder" +msgstr "Déplacer vers" + +#: ../../mod/settings.php:696 +msgid "Move to folder:" +msgstr "Déplacer vers:" + +#: ../../mod/settings.php:727 ../../mod/admin.php:402 +msgid "No special theme for mobile devices" +msgstr "Pas de thème particulier pour les terminaux mobiles" + +#: ../../mod/settings.php:767 +msgid "Display Settings" +msgstr "Affichage" + +#: ../../mod/settings.php:773 ../../mod/settings.php:784 +msgid "Display Theme:" +msgstr "Thème d'affichage:" + +#: ../../mod/settings.php:774 +msgid "Mobile Theme:" +msgstr "Thème mobile:" + +#: ../../mod/settings.php:775 +msgid "Update browser every xx seconds" +msgstr "Mettre-à-jour l'affichage toutes les xx secondes" + +#: ../../mod/settings.php:775 +msgid "Minimum of 10 seconds, no maximum" +msgstr "Délai minimum de 10 secondes, pas de maximum" + +#: ../../mod/settings.php:776 +msgid "Number of items to display per page:" +msgstr "Nombre d’éléments par page:" + +#: ../../mod/settings.php:776 +msgid "Maximum of 100 items" +msgstr "Maximum de 100 éléments" + +#: ../../mod/settings.php:777 +msgid "Don't show emoticons" +msgstr "Ne pas afficher les émoticônes (smileys grahiques)" + +#: ../../mod/settings.php:853 +msgid "Normal Account Page" +msgstr "Compte normal" + +#: ../../mod/settings.php:854 +msgid "This account is a normal personal profile" +msgstr "Ce compte correspond à un profil normal, pour une seule personne (physique, généralement)" + +#: ../../mod/settings.php:857 +msgid "Soapbox Page" +msgstr "Compte \"boîte à savon\"" + +#: ../../mod/settings.php:858 +msgid "Automatically approve all connection/friend requests as read-only fans" +msgstr "Accepter automatiquement toutes les demandes d'amitié/connexion comme étant des fans 'en lecture seule'" + +#: ../../mod/settings.php:861 +msgid "Community Forum/Celebrity Account" +msgstr "Compte de communauté/célébrité" + +#: ../../mod/settings.php:862 +msgid "" +"Automatically approve all connection/friend requests as read-write fans" +msgstr "Accepter automatiquement toutes les demandes d'amitié/connexion comme étant des fans en 'lecture/écriture'" + +#: ../../mod/settings.php:865 +msgid "Automatic Friend Page" +msgstr "Compte d'\"amitié automatique\"" + +#: ../../mod/settings.php:866 +msgid "Automatically approve all connection/friend requests as friends" +msgstr "Accepter automatiquement toutes les demandes d'amitié/connexion comme étant des amis" + +#: ../../mod/settings.php:869 +msgid "Private Forum [Experimental]" +msgstr "Forum privé [expérimental]" + +#: ../../mod/settings.php:870 +msgid "Private forum - approved members only" +msgstr "Forum privé - modéré en inscription" + +#: ../../mod/settings.php:882 +msgid "OpenID:" +msgstr "OpenID:" + +#: ../../mod/settings.php:882 +msgid "(Optional) Allow this OpenID to login to this account." +msgstr "&nbsp;(Facultatif) Autoriser cet OpenID à se connecter à ce compte." + +#: ../../mod/settings.php:892 +msgid "Publish your default profile in your local site directory?" +msgstr "Publier votre profil par défaut sur l'annuaire local de ce site?" + +#: ../../mod/settings.php:898 +msgid "Publish your default profile in the global social directory?" +msgstr "Publier votre profil par défaut sur l'annuaire social global?" + +#: ../../mod/settings.php:906 +msgid "Hide your contact/friend list from viewers of your default profile?" +msgstr "Cacher votre liste de contacts/amis des visiteurs de votre profil par défaut?" + +#: ../../mod/settings.php:910 +msgid "Hide your profile details from unknown viewers?" +msgstr "Cacher les détails du profil aux visiteurs inconnus?" + +#: ../../mod/settings.php:915 +msgid "Allow friends to post to your profile page?" +msgstr "Autoriser vos amis à publier sur votre profil?" + +#: ../../mod/settings.php:921 +msgid "Allow friends to tag your posts?" +msgstr "Autoriser vos amis à tagguer vos notices?" + +#: ../../mod/settings.php:927 +msgid "Allow us to suggest you as a potential friend to new members?" +msgstr "Autoriser les suggestions d'amis potentiels aux nouveaux arrivants?" + +#: ../../mod/settings.php:933 +msgid "Permit unknown people to send you private mail?" +msgstr "Autoriser les messages privés d'inconnus?" + +#: ../../mod/settings.php:941 +msgid "Profile is not published." +msgstr "Ce profil n'est pas publié." + +#: ../../mod/settings.php:944 ../../mod/profile_photo.php:248 +msgid "or" +msgstr "ou" + +#: ../../mod/settings.php:949 +msgid "Your Identity Address is" +msgstr "L'adresse de votre identité est" + +#: ../../mod/settings.php:960 +msgid "Automatically expire posts after this many days:" +msgstr "Les publications expirent automatiquement après (en jours) :" + +#: ../../mod/settings.php:960 +msgid "If empty, posts will not expire. Expired posts will be deleted" +msgstr "Si ce champ est vide, les notices n'expireront pas. Les notices expirées seront supprimées" + +#: ../../mod/settings.php:961 +msgid "Advanced expiration settings" +msgstr "Réglages avancés de l'expiration" + +#: ../../mod/settings.php:962 +msgid "Advanced Expiration" +msgstr "Expiration (avancé)" + +#: ../../mod/settings.php:963 +msgid "Expire posts:" +msgstr "Faire expirer les contenus:" + +#: ../../mod/settings.php:964 +msgid "Expire personal notes:" +msgstr "Faire expirer les notes personnelles:" + +#: ../../mod/settings.php:965 +msgid "Expire starred posts:" +msgstr "Faire expirer les contenus marqués:" + +#: ../../mod/settings.php:966 +msgid "Expire photos:" +msgstr "Faire expirer les photos:" + +#: ../../mod/settings.php:967 +msgid "Only expire posts by others:" +msgstr "Faire expirer seulement les messages des autres :" + +#: ../../mod/settings.php:974 +msgid "Account Settings" +msgstr "Compte" + +#: ../../mod/settings.php:982 +msgid "Password Settings" +msgstr "Réglages de mot de passe" + +#: ../../mod/settings.php:983 +msgid "New Password:" +msgstr "Nouveau mot de passe:" + +#: ../../mod/settings.php:984 +msgid "Confirm:" +msgstr "Confirmer:" + +#: ../../mod/settings.php:984 +msgid "Leave password fields blank unless changing" +msgstr "Laissez les champs de mot de passe vierges, sauf si vous désirez les changer" + +#: ../../mod/settings.php:988 +msgid "Basic Settings" +msgstr "Réglages basiques" + +#: ../../mod/settings.php:989 ../../include/profile_advanced.php:15 +msgid "Full Name:" +msgstr "Nom complet:" + +#: ../../mod/settings.php:990 +msgid "Email Address:" +msgstr "Adresse courriel:" + +#: ../../mod/settings.php:991 +msgid "Your Timezone:" +msgstr "Votre fuseau horaire:" + +#: ../../mod/settings.php:992 +msgid "Default Post Location:" +msgstr "Publication par défaut depuis :" + +#: ../../mod/settings.php:993 +msgid "Use Browser Location:" +msgstr "Utiliser la localisation géographique du navigateur:" + +#: ../../mod/settings.php:996 +msgid "Security and Privacy Settings" +msgstr "Réglages de sécurité et vie privée" + +#: ../../mod/settings.php:998 +msgid "Maximum Friend Requests/Day:" +msgstr "Nombre maximal de requêtes d'amitié/jour:" + +#: ../../mod/settings.php:998 ../../mod/settings.php:1017 +msgid "(to prevent spam abuse)" +msgstr "(pour limiter l'impact du spam)" + +#: ../../mod/settings.php:999 +msgid "Default Post Permissions" +msgstr "Permissions par défaut sur les articles" + +#: ../../mod/settings.php:1000 +msgid "(click to open/close)" +msgstr "(cliquer pour ouvrir/fermer)" + +#: ../../mod/settings.php:1017 +msgid "Maximum private messages per day from unknown people:" +msgstr "Maximum de messages privés d'inconnus par jour:" + +#: ../../mod/settings.php:1020 +msgid "Notification Settings" +msgstr "Réglages de notification" + +#: ../../mod/settings.php:1021 +msgid "By default post a status message when:" +msgstr "Par défaut, poster un statut quand:" + +#: ../../mod/settings.php:1022 +msgid "accepting a friend request" +msgstr "j'accepte un ami" + +#: ../../mod/settings.php:1023 +msgid "joining a forum/community" +msgstr "joignant un forum/une communauté" + +#: ../../mod/settings.php:1024 +msgid "making an interesting profile change" +msgstr "je fais une modification intéressante de mon profil" + +#: ../../mod/settings.php:1025 +msgid "Send a notification email when:" +msgstr "Envoyer un courriel de notification quand:" + +#: ../../mod/settings.php:1026 +msgid "You receive an introduction" +msgstr "Vous recevez une introduction" + +#: ../../mod/settings.php:1027 +msgid "Your introductions are confirmed" +msgstr "Vos introductions sont confirmées" + +#: ../../mod/settings.php:1028 +msgid "Someone writes on your profile wall" +msgstr "Quelqu'un écrit sur votre mur" + +#: ../../mod/settings.php:1029 +msgid "Someone writes a followup comment" +msgstr "Quelqu'un vous commente" + +#: ../../mod/settings.php:1030 +msgid "You receive a private message" +msgstr "Vous recevez un message privé" + +#: ../../mod/settings.php:1031 +msgid "You receive a friend suggestion" +msgstr "Vous avez reçu une suggestion d'ami" + +#: ../../mod/settings.php:1032 +msgid "You are tagged in a post" +msgstr "Vous avez été repéré dans une publication" + +#: ../../mod/settings.php:1033 +msgid "You are poked/prodded/etc. in a post" +msgstr "Vous avez été sollicité dans une publication" + +#: ../../mod/settings.php:1036 +msgid "Advanced Account/Page Type Settings" +msgstr "Paramètres avancés de compte/page" + +#: ../../mod/settings.php:1037 +msgid "Change the behaviour of this account for special situations" +msgstr "Modifier le comportement de ce compte dans certaines situations" + +#: ../../mod/manage.php:91 +msgid "Manage Identities and/or Pages" +msgstr "Gérer les identités et/ou les pages" + +#: ../../mod/manage.php:94 +msgid "" +"Toggle between different identities or community/group pages which share " +"your account details or which you have been granted \"manage\" permissions" +msgstr "Basculez entre les différentes identités ou pages (groupes/communautés) qui se partagent votre compte ou que vous avez été autorisé à gérer." + +#: ../../mod/manage.php:96 +msgid "Select an identity to manage: " +msgstr "Choisir une identité à gérer: " + +#: ../../mod/network.php:97 +msgid "Search Results For:" +msgstr "Résultats pour:" + +#: ../../mod/network.php:137 ../../mod/search.php:16 +msgid "Remove term" +msgstr "Retirer le terme" + +#: ../../mod/network.php:146 ../../mod/search.php:13 +msgid "Saved Searches" +msgstr "Recherches sauvées" + +#: ../../mod/network.php:147 ../../include/group.php:244 +msgid "add" +msgstr "ajouter" + +#: ../../mod/network.php:287 +msgid "Commented Order" +msgstr "Dans l'ordre des commentaires" + +#: ../../mod/network.php:290 +msgid "Sort by Comment Date" +msgstr "Trier par date de commentaire" + +#: ../../mod/network.php:293 +msgid "Posted Order" +msgstr "Dans l'ordre des notices" + +#: ../../mod/network.php:296 +msgid "Sort by Post Date" +msgstr "Trier par date de publication" + +#: ../../mod/network.php:303 +msgid "Posts that mention or involve you" +msgstr "Publications qui vous concernent" + +#: ../../mod/network.php:306 +msgid "New" +msgstr "Nouveau" + +#: ../../mod/network.php:309 +msgid "Activity Stream - by date" +msgstr "Flux d'activités - par date" + +#: ../../mod/network.php:312 +msgid "Starred" +msgstr "Mis en avant" + +#: ../../mod/network.php:315 +msgid "Favourite Posts" +msgstr "Publications favorites" + +#: ../../mod/network.php:318 +msgid "Shared Links" +msgstr "Liens partagés" + +#: ../../mod/network.php:321 +msgid "Interesting Links" +msgstr "Liens intéressants" + +#: ../../mod/network.php:388 +#, 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] "Attention: Ce groupe contient %s membre d'un réseau non-sûr." +msgstr[1] "Attention: Ce groupe contient %s membres d'un réseau non-sûr." + +#: ../../mod/network.php:391 +msgid "Private messages to this group are at risk of public disclosure." +msgstr "Les messages privés envoyés à ce groupe s'exposent à une diffusion incontrôlée." + +#: ../../mod/network.php:461 +msgid "Contact: " +msgstr "Contact: " + +#: ../../mod/network.php:463 +msgid "Private messages to this person are at risk of public disclosure." +msgstr "Les messages privés envoyés à ce contact s'exposent à une diffusion incontrôlée." + +#: ../../mod/network.php:468 +msgid "Invalid contact." +msgstr "Contact invalide." + +#: ../../mod/notes.php:44 ../../boot.php:1696 +msgid "Personal Notes" +msgstr "Notes personnelles" + +#: ../../mod/notes.php:63 ../../mod/filer.php:30 +#: ../../addon/facebook/facebook.php:770 +#: ../../addon/privacy_image_cache/privacy_image_cache.php:263 +#: ../../addon/fbpost/fbpost.php:267 +#: ../../addon/dav/friendica/layout.fnk.php:441 +#: ../../addon/dav/friendica/layout.fnk.php:488 ../../include/text.php:681 +msgid "Save" +msgstr "Sauver" + +#: ../../mod/wallmessage.php:42 ../../mod/wallmessage.php:112 +#, php-format +msgid "Number of daily wall messages for %s exceeded. Message failed." +msgstr "Nombre de messages de mur quotidiens pour %s dépassé. Échec du message." + +#: ../../mod/wallmessage.php:56 ../../mod/message.php:59 +msgid "No recipient selected." +msgstr "Pas de destinataire sélectionné." + +#: ../../mod/wallmessage.php:59 +msgid "Unable to check your home location." +msgstr "Impossible de vérifier votre localisation." + +#: ../../mod/wallmessage.php:62 ../../mod/message.php:66 +msgid "Message could not be sent." +msgstr "Impossible d'envoyer le message." + +#: ../../mod/wallmessage.php:65 ../../mod/message.php:69 +msgid "Message collection failure." +msgstr "Récupération des messages infructueuse." + +#: ../../mod/wallmessage.php:68 ../../mod/message.php:72 +msgid "Message sent." +msgstr "Message envoyé." + +#: ../../mod/wallmessage.php:86 ../../mod/wallmessage.php:95 +msgid "No recipient." +msgstr "Pas de destinataire." + +#: ../../mod/wallmessage.php:123 ../../mod/wallmessage.php:131 +#: ../../mod/message.php:242 ../../mod/message.php:250 +#: ../../include/conversation.php:833 ../../include/conversation.php:850 +msgid "Please enter a link URL:" +msgstr "Entrez un lien web:" + +#: ../../mod/wallmessage.php:138 ../../mod/message.php:278 +msgid "Send Private Message" +msgstr "Envoyer un message privé" + +#: ../../mod/wallmessage.php:139 +#, php-format +msgid "" +"If you wish for %s to respond, please check that the privacy settings on " +"your site allow private mail from unknown senders." +msgstr "Si vous souhaitez que %s réponde, merci de vérifier vos réglages pour autoriser les messages privés venant d'inconnus." + +#: ../../mod/wallmessage.php:140 ../../mod/message.php:279 +#: ../../mod/message.php:469 +msgid "To:" +msgstr "À:" + +#: ../../mod/wallmessage.php:141 ../../mod/message.php:284 +#: ../../mod/message.php:471 +msgid "Subject:" +msgstr "Sujet:" + +#: ../../mod/wallmessage.php:147 ../../mod/message.php:288 +#: ../../mod/message.php:474 ../../mod/invite.php:113 +msgid "Your message:" +msgstr "Votre message:" + +#: ../../mod/newmember.php:6 +msgid "Welcome to Friendica" +msgstr "Bienvenue sur Friendica" + +#: ../../mod/newmember.php:8 +msgid "New Member Checklist" +msgstr "Checklist du nouvel utilisateur" + +#: ../../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 "Nous souhaiterions vous donner quelques astuces et ressources pour rendre votre expérience la plus agréable possible. Cliquez sur n'importe lequel de ces éléments pour visiter la page correspondante. Un lien vers cette page restera visible sur votre page d'accueil pendant les deux semaines qui suivent votre inscription initiale, puis disparaîtra silencieusement." + +#: ../../mod/newmember.php:14 +msgid "Getting Started" +msgstr "Bien démarrer" + +#: ../../mod/newmember.php:18 +msgid "Friendica Walk-Through" +msgstr "Friendica pas-à-pas" + +#: ../../mod/newmember.php:18 +msgid "" +"On your Quick Start page - find a brief introduction to your " +"profile and network tabs, make some new connections, and find some groups to" +" join." +msgstr "" + +#: ../../mod/newmember.php:26 +msgid "Go to Your Settings" +msgstr "Éditer vos Réglages" + +#: ../../mod/newmember.php:26 +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 "Sur la page des Réglages - changez votre mot de passe initial. Notez bien votre Identité. Elle ressemble à une adresse de courriel - et vous sera utile pour vous faire des amis dans le web social libre." + +#: ../../mod/newmember.php:28 +msgid "" +"Review the other settings, particularly the privacy settings. An unpublished" +" directory listing is like having an unlisted phone number. In general, you " +"should probably publish your listing - unless all of your friends and " +"potential friends know exactly how to find you." +msgstr "Vérifiez les autres réglages, tout particulièrement ceux liés à la vie privée. Un profil non listé, c'est un peu comme un numéro sur liste rouge. En général, vous devriez probablement publier votre profil - à moins que tous vos amis (potentiels) sachent déjà comment vous trouver." + +#: ../../mod/newmember.php:32 ../../mod/profperm.php:103 +#: ../../view/theme/diabook/theme.php:128 ../../include/profile_advanced.php:7 +#: ../../include/profile_advanced.php:84 ../../include/nav.php:50 +#: ../../boot.php:1672 +msgid "Profile" +msgstr "Profil" + +#: ../../mod/newmember.php:36 ../../mod/profile_photo.php:244 +msgid "Upload Profile Photo" +msgstr "Téléverser une photo de profil" + +#: ../../mod/newmember.php:36 +msgid "" +"Upload a profile photo if you have not done so already. Studies have shown " +"that people with real photos of themselves are ten times more likely to make" +" friends than people who do not." +msgstr "Téléversez (envoyez) une photo de profil si vous n'en avez pas déjà une. Les études montrent que les gens qui affichent de vraies photos d'eux sont dix fois plus susceptibles de se faire des amis." + +#: ../../mod/newmember.php:38 +msgid "Edit Your Profile" +msgstr "Éditer votre Profil" + +#: ../../mod/newmember.php:38 +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 "Éditez votre profil par défaut à votre convenance. Vérifiez les réglages concernant la visibilité de votre liste d'amis par les visiteurs inconnus." + +#: ../../mod/newmember.php:40 +msgid "Profile Keywords" +msgstr "Mots-clés du profil" + +#: ../../mod/newmember.php:40 +msgid "" +"Set some public keywords for your default profile which describe your " +"interests. We may be able to find other people with similar interests and " +"suggest friendships." +msgstr "Choisissez quelques mots-clé publics pour votre profil par défaut. Ils pourront ainsi décrire vos centres d'intérêt, et nous pourrons vous proposer des contacts qui les partagent." + +#: ../../mod/newmember.php:44 +msgid "Connecting" +msgstr "" + +#: ../../mod/newmember.php:49 ../../mod/newmember.php:51 +#: ../../addon/facebook/facebook.php:728 ../../addon/fbpost/fbpost.php:239 +#: ../../include/contact_selectors.php:81 +msgid "Facebook" +msgstr "Facebook" + +#: ../../mod/newmember.php:49 +msgid "" +"Authorise the Facebook Connector if you currently have a Facebook account " +"and we will (optionally) import all your Facebook friends and conversations." +msgstr "Activez et paramétrez le connecteur Facebook si vous avez un compte Facebook et nous pourrons (de manière facultative) importer tous vos amis et conversations Facebook." + +#: ../../mod/newmember.php:51 +msgid "" +"If this is your own personal server, installing the Facebook addon " +"may ease your transition to the free social web." +msgstr "Si ceci est votre propre serveur, installer le connecteur Facebook peut adoucir votre transition vers le web social libre." + +#: ../../mod/newmember.php:56 +msgid "Importing Emails" +msgstr "" + +#: ../../mod/newmember.php:56 +msgid "" +"Enter your email access information on your Connector Settings page if you " +"wish to import and interact with friends or mailing lists from your email " +"INBOX" +msgstr "Entrez vos paramètres de courriel dans les Réglages des connecteurs si vous souhaitez importer et interagir avec des amis ou des listes venant de votre Boîte de Réception." + +#: ../../mod/newmember.php:58 +msgid "Go to Your Contacts Page" +msgstr "Consulter vos Contacts" + +#: ../../mod/newmember.php:58 +msgid "" +"Your Contacts page is your gateway to managing friendships and connecting " +"with friends on other networks. Typically you enter their address or site " +"URL in the Add New Contact dialog." +msgstr "Votre page Contacts est le point d'entrée vers la gestion de vos amitiés/relations et la connexion à des amis venant d'autres réseaux. Typiquement, vous pourrez y rentrer leur adresse d'Identité ou l'URL de leur site dans le formulaire Ajouter un nouveau contact." + +#: ../../mod/newmember.php:60 +msgid "Go to Your Site's Directory" +msgstr "Consulter l'Annuaire de votre Site" + +#: ../../mod/newmember.php:60 +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 "La page Annuaire vous permet de trouver d'autres personnes au sein de ce réseaux ou parmi d'autres sites fédérés. Cherchez un lien Relier ou Suivre sur leur profil. Vous pourrez avoir besoin d'indiquer votre adresse d'identité." + +#: ../../mod/newmember.php:62 +msgid "Finding New People" +msgstr "Trouver de nouvelles personnes" + +#: ../../mod/newmember.php:62 +msgid "" +"On the side panel of the Contacts page are several tools to find new " +"friends. We can match people by interest, look up people by name or " +"interest, and provide suggestions based on network relationships. On a brand" +" new site, friend suggestions will usually begin to be populated within 24 " +"hours." +msgstr "Sur le panneau latéral de la page Contacts, il y a plusieurs moyens de trouver de nouveaux amis. Nous pouvons mettre les gens en relation selon leurs intérêts, rechercher des amis par nom ou intérêt, et fournir des suggestions en fonction de la topologie du réseau. Sur un site tout neuf, les suggestions d'amitié devraient commencer à apparaître au bout de 24 heures." + +#: ../../mod/newmember.php:66 ../../include/group.php:239 +msgid "Groups" +msgstr "Groupes" + +#: ../../mod/newmember.php:70 +msgid "Group Your Contacts" +msgstr "Grouper vos contacts" + +#: ../../mod/newmember.php:70 +msgid "" +"Once you have made some friends, organize them into private conversation " +"groups from the sidebar of your Contacts page and then you can interact with" +" each group privately on your Network page." +msgstr "Une fois que vous avez trouvé quelques amis, organisez-les en groupes de conversation privés depuis le panneau latéral de la page Contacts. Vous pourrez ensuite interagir avec chaque groupe de manière privée depuis la page Réseau." + +#: ../../mod/newmember.php:73 +msgid "Why Aren't My Posts Public?" +msgstr "Pourquoi mes éléments ne sont pas publics?" + +#: ../../mod/newmember.php:73 +msgid "" +"Friendica respects your privacy. By default, your posts will only show up to" +" people you've added as friends. For more information, see the help section " +"from the link above." +msgstr "Friendica respecte votre vie privée. Par défaut, tous vos éléments seront seulement montrés à vos amis. Pour plus d'information, consultez la section \"aide\" du lien ci-dessus." + +#: ../../mod/newmember.php:78 +msgid "Getting Help" +msgstr "Obtenir de l'aide" + +#: ../../mod/newmember.php:82 +msgid "Go to the Help Section" +msgstr "Aller à la section Aide" + +#: ../../mod/newmember.php:82 +msgid "" +"Our help pages may be consulted for detail on other program" +" features and resources." +msgstr "Nos pages d'aide peuvent être consultées pour davantage de détails sur les fonctionnalités ou les ressources." + +#: ../../mod/attach.php:8 +msgid "Item not available." +msgstr "Elément non disponible." + +#: ../../mod/attach.php:20 +msgid "Item was not found." +msgstr "Element introuvable." + +#: ../../mod/group.php:29 +msgid "Group created." +msgstr "Groupe créé." + +#: ../../mod/group.php:35 +msgid "Could not create group." +msgstr "Impossible de créer le groupe." + +#: ../../mod/group.php:47 ../../mod/group.php:137 +msgid "Group not found." +msgstr "Groupe introuvable." + +#: ../../mod/group.php:60 +msgid "Group name changed." +msgstr "Groupe renommé." + +#: ../../mod/group.php:72 ../../mod/profperm.php:19 ../../index.php:316 +msgid "Permission denied" +msgstr "Permission refusée" + +#: ../../mod/group.php:90 +msgid "Create a group of contacts/friends." +msgstr "Créez un groupe de contacts/amis." + +#: ../../mod/group.php:91 ../../mod/group.php:177 +msgid "Group Name: " +msgstr "Nom du groupe: " + +#: ../../mod/group.php:110 +msgid "Group removed." +msgstr "Groupe enlevé." + +#: ../../mod/group.php:112 +msgid "Unable to remove group." +msgstr "Impossible d'enlever le groupe." + +#: ../../mod/group.php:176 +msgid "Group Editor" +msgstr "Éditeur de groupe" + +#: ../../mod/group.php:189 +msgid "Members" +msgstr "Membres" + +#: ../../mod/group.php:221 ../../mod/profperm.php:105 +msgid "Click on a contact to add or remove." +msgstr "Cliquez sur un contact pour l'ajouter ou le supprimer." + +#: ../../mod/profperm.php:25 ../../mod/profperm.php:55 +msgid "Invalid profile identifier." +msgstr "Identifiant de profil invalide." + +#: ../../mod/profperm.php:101 +msgid "Profile Visibility Editor" +msgstr "Éditer la visibilité du profil" + +#: ../../mod/profperm.php:114 +msgid "Visible To" +msgstr "Visible par" + +#: ../../mod/profperm.php:130 +msgid "All Contacts (with secure profile access)" +msgstr "Tous les contacts (ayant un accès sécurisé)" + +#: ../../mod/viewcontacts.php:39 +msgid "No contacts." +msgstr "Aucun contact." + +#: ../../mod/viewcontacts.php:76 ../../include/text.php:618 +msgid "View Contacts" +msgstr "Voir les contacts" + +#: ../../mod/register.php:88 ../../mod/regmod.php:52 +#, php-format +msgid "Registration details for %s" +msgstr "Détails d'inscription pour %s" + +#: ../../mod/register.php:96 +msgid "" +"Registration successful. Please check your email for further instructions." +msgstr "Inscription réussie. Vérifiez vos emails pour la suite des instructions." + +#: ../../mod/register.php:100 +msgid "Failed to send email message. Here is the message that failed." +msgstr "Impossible d'envoyer un email. Voici le message qui a échoué." + +#: ../../mod/register.php:105 +msgid "Your registration can not be processed." +msgstr "Votre inscription ne peut être traitée." + +#: ../../mod/register.php:142 +#, php-format +msgid "Registration request at %s" +msgstr "Demande d'inscription à %s" + +#: ../../mod/register.php:151 +msgid "Your registration is pending approval by the site owner." +msgstr "Votre inscription attend une validation du propriétaire du site." + +#: ../../mod/register.php:189 +msgid "" +"This site has exceeded the number of allowed daily account registrations. " +"Please try again tomorrow." +msgstr "Le nombre d'inscriptions quotidiennes pour ce site a été dépassé. Merci de réessayer demain." + +#: ../../mod/register.php:217 +msgid "" +"You may (optionally) fill in this form via OpenID by supplying your OpenID " +"and clicking 'Register'." +msgstr "Vous pouvez (si vous le souhaitez) remplir ce formulaire via OpenID. Fournissez votre OpenID et cliquez \"S'inscrire\"." + +#: ../../mod/register.php:218 +msgid "" +"If you are not familiar with OpenID, please leave that field blank and fill " +"in the rest of the items." +msgstr "Si vous n'êtes pas familier avec OpenID, laissez ce champ vide et remplissez le reste." + +#: ../../mod/register.php:219 +msgid "Your OpenID (optional): " +msgstr "Votre OpenID (facultatif): " + +#: ../../mod/register.php:233 +msgid "Include your profile in member directory?" +msgstr "Inclure votre profil dans l'annuaire des membres?" + +#: ../../mod/register.php:255 +msgid "Membership on this site is by invitation only." +msgstr "L'inscription à ce site se fait uniquement sur invitation." + +#: ../../mod/register.php:256 +msgid "Your invitation ID: " +msgstr "Votre ID d'invitation: " + +#: ../../mod/register.php:259 ../../mod/admin.php:444 +msgid "Registration" +msgstr "Inscription" + +#: ../../mod/register.php:267 +msgid "Your Full Name (e.g. Joe Smith): " +msgstr "Votre nom complet (p.ex. Michel Dupont): " + +#: ../../mod/register.php:268 +msgid "Your Email Address: " +msgstr "Votre adresse courriel: " + +#: ../../mod/register.php:269 +msgid "" +"Choose a profile nickname. This must begin with a text character. Your " +"profile address on this site will then be " +"'nickname@$sitename'." +msgstr "Choisissez un pseudo. Celui devra commencer par une lettre. L'adresse de votre profil en découlera sous la forme '<strong>pseudo@$sitename</strong>'." + +#: ../../mod/register.php:270 +msgid "Choose a nickname: " +msgstr "Choisir un pseudo: " + +#: ../../mod/register.php:273 ../../include/nav.php:81 ../../boot.php:887 +msgid "Register" +msgstr "S'inscrire" + +#: ../../mod/dirfind.php:26 +msgid "People Search" +msgstr "Recherche de personnes" + +#: ../../mod/like.php:145 ../../mod/like.php:298 ../../mod/tagger.php:62 +#: ../../addon/facebook/facebook.php:1598 +#: ../../addon/communityhome/communityhome.php:158 +#: ../../addon/communityhome/communityhome.php:167 +#: ../../view/theme/diabook/theme.php:565 +#: ../../view/theme/diabook/theme.php:574 ../../include/diaspora.php:1824 +#: ../../include/conversation.php:120 ../../include/conversation.php:129 +#: ../../include/conversation.php:248 ../../include/conversation.php:257 +msgid "status" +msgstr "le statut" + +#: ../../mod/like.php:162 ../../addon/facebook/facebook.php:1602 +#: ../../addon/communityhome/communityhome.php:172 +#: ../../view/theme/diabook/theme.php:579 ../../include/diaspora.php:1840 +#: ../../include/conversation.php:136 +#, php-format +msgid "%1$s likes %2$s's %3$s" +msgstr "%1$s aime %3$s de %2$s" + +#: ../../mod/like.php:164 ../../include/conversation.php:139 +#, php-format +msgid "%1$s doesn't like %2$s's %3$s" +msgstr "%1$s n'aime pas %3$s de %2$s" + +#: ../../mod/notice.php:15 ../../mod/viewsrc.php:15 ../../mod/admin.php:159 +#: ../../mod/admin.php:734 ../../mod/admin.php:933 ../../mod/display.php:29 +#: ../../mod/display.php:145 ../../include/items.php:3774 +msgid "Item not found." +msgstr "Élément introuvable." + +#: ../../mod/viewsrc.php:7 +msgid "Access denied." +msgstr "Accès refusé." + +#: ../../mod/fbrowser.php:25 ../../view/theme/diabook/theme.php:130 +#: ../../include/nav.php:51 ../../boot.php:1679 +msgid "Photos" +msgstr "Photos" + +#: ../../mod/fbrowser.php:96 +msgid "Files" +msgstr "Fichiers" + +#: ../../mod/regmod.php:61 +msgid "Account approved." +msgstr "Inscription validée." + +#: ../../mod/regmod.php:98 +#, php-format +msgid "Registration revoked for %s" +msgstr "Inscription révoquée pour %s" + +#: ../../mod/regmod.php:110 +msgid "Please login." +msgstr "Merci de vous connecter." + +#: ../../mod/item.php:91 +msgid "Unable to locate original post." +msgstr "Impossible de localiser l'article original." + +#: ../../mod/item.php:275 +msgid "Empty post discarded." +msgstr "Article vide défaussé." + +#: ../../mod/item.php:407 ../../mod/wall_upload.php:133 +#: ../../mod/wall_upload.php:142 ../../mod/wall_upload.php:149 +#: ../../include/message.php:144 +msgid "Wall Photos" +msgstr "Photos du mur" + +#: ../../mod/item.php:820 +msgid "System error. Post not saved." +msgstr "Erreur système. Publication non sauvée." + +#: ../../mod/item.php:845 +#, php-format +msgid "" +"This message was sent to you by %s, a member of the Friendica social " +"network." +msgstr "Ce message vous a été envoyé par %s, membre du réseau social Friendica." + +#: ../../mod/item.php:847 +#, php-format +msgid "You may visit them online at %s" +msgstr "Vous pouvez leur rendre visite sur %s" + +#: ../../mod/item.php:848 +msgid "" +"Please contact the sender by replying to this post if you do not wish to " +"receive these messages." +msgstr "Merci de contacter l’émetteur en répondant à cette publication si vous ne souhaitez pas recevoir ces messages." + +#: ../../mod/item.php:850 +#, php-format +msgid "%s posted an update." +msgstr "%s a publié une mise à jour." + +#: ../../mod/mood.php:62 ../../include/conversation.php:226 +#, php-format +msgid "%1$s is currently %2$s" +msgstr "%1$s est d'humeur %2$s" + +#: ../../mod/mood.php:133 +msgid "Mood" +msgstr "Humeur" + +#: ../../mod/mood.php:134 +msgid "Set your current mood and tell your friends" +msgstr "Spécifiez votre humeur du moment, et informez vos amis" + +#: ../../mod/profile_photo.php:44 +msgid "Image uploaded but image cropping failed." +msgstr "Image envoyée, mais impossible de la retailler." + +#: ../../mod/profile_photo.php:77 ../../mod/profile_photo.php:84 +#: ../../mod/profile_photo.php:91 ../../mod/profile_photo.php:308 +#, php-format +msgid "Image size reduction [%s] failed." +msgstr "Réduction de la taille de l'image [%s] échouée." + +#: ../../mod/profile_photo.php:118 +msgid "" +"Shift-reload the page or clear browser cache if the new photo does not " +"display immediately." +msgstr "Rechargez la page avec la touche Maj pressée, ou bien effacez le cache du navigateur, si d'aventure la nouvelle photo n'apparaissait pas immédiatement." + +#: ../../mod/profile_photo.php:128 +msgid "Unable to process image" +msgstr "Impossible de traiter l'image" + +#: ../../mod/profile_photo.php:144 ../../mod/wall_upload.php:88 +#, php-format +msgid "Image exceeds size limit of %d" +msgstr "L'image dépasse la taille limite de %d" + +#: ../../mod/profile_photo.php:242 +msgid "Upload File:" +msgstr "Fichier à téléverser:" + +#: ../../mod/profile_photo.php:243 +msgid "Select a profile:" +msgstr "Choisir un profil:" + +#: ../../mod/profile_photo.php:245 +#: ../../addon/dav/friendica/layout.fnk.php:152 +msgid "Upload" +msgstr "Téléverser" + +#: ../../mod/profile_photo.php:248 +msgid "skip this step" +msgstr "ignorer cette étape" + +#: ../../mod/profile_photo.php:248 +msgid "select a photo from your photo albums" +msgstr "choisissez une photo depuis vos albums" + +#: ../../mod/profile_photo.php:262 +msgid "Crop Image" +msgstr "(Re)cadrer l'image" + +#: ../../mod/profile_photo.php:263 +msgid "Please adjust the image cropping for optimum viewing." +msgstr "Ajustez le cadre de l'image pour une visualisation optimale." + +#: ../../mod/profile_photo.php:265 +msgid "Done Editing" +msgstr "Édition terminée" + +#: ../../mod/profile_photo.php:299 +msgid "Image uploaded successfully." +msgstr "Image téléversée avec succès." + +#: ../../mod/hcard.php:10 +msgid "No profile" +msgstr "Aucun profil" + +#: ../../mod/removeme.php:45 ../../mod/removeme.php:48 +msgid "Remove My Account" +msgstr "Supprimer mon compte" + +#: ../../mod/removeme.php:46 +msgid "" +"This will completely remove your account. Once this has been done it is not " +"recoverable." +msgstr "Ceci supprimera totalement votre compte. Cette opération est irréversible." + +#: ../../mod/removeme.php:47 +msgid "Please enter your password for verification:" +msgstr "Merci de saisir votre mot de passe pour vérification:" + +#: ../../mod/message.php:9 ../../include/nav.php:131 +msgid "New Message" +msgstr "Nouveau message" + +#: ../../mod/message.php:63 +msgid "Unable to locate contact information." +msgstr "Impossible de localiser les informations du contact." + +#: ../../mod/message.php:191 +msgid "Message deleted." +msgstr "Message supprimé." + +#: ../../mod/message.php:221 +msgid "Conversation removed." +msgstr "Conversation supprimée." + +#: ../../mod/message.php:327 +msgid "No messages." +msgstr "Aucun message." + +#: ../../mod/message.php:334 +#, php-format +msgid "Unknown sender - %s" +msgstr "Émetteur inconnu - %s" + +#: ../../mod/message.php:337 +#, php-format +msgid "You and %s" +msgstr "Vous et %s" + +#: ../../mod/message.php:340 +#, php-format +msgid "%s and You" +msgstr "%s et vous" + +#: ../../mod/message.php:350 ../../mod/message.php:462 +msgid "Delete conversation" +msgstr "Effacer conversation" + +#: ../../mod/message.php:353 +msgid "D, d M Y - g:i A" +msgstr "D, d M Y - g:i A" + +#: ../../mod/message.php:356 +#, php-format +msgid "%d message" +msgid_plural "%d messages" +msgstr[0] "%d message" +msgstr[1] "%d messages" + +#: ../../mod/message.php:391 +msgid "Message not available." +msgstr "Message indisponible." + +#: ../../mod/message.php:444 +msgid "Delete message" +msgstr "Effacer message" + +#: ../../mod/message.php:464 +msgid "" +"No secure communications available. You may be able to " +"respond from the sender's profile page." +msgstr "Pas de communications sécurisées possibles. Vous serez peut-être en mesure de répondre depuis la page de profil de l'émetteur." + +#: ../../mod/message.php:468 +msgid "Send Reply" +msgstr "Répondre" + +#: ../../mod/allfriends.php:34 +#, php-format +msgid "Friends of %s" +msgstr "Amis de %s" + +#: ../../mod/allfriends.php:40 +msgid "No friends to display." +msgstr "Pas d'amis à afficher." + +#: ../../mod/admin.php:55 +msgid "Theme settings updated." +msgstr "Réglages du thème sauvés." + +#: ../../mod/admin.php:96 ../../mod/admin.php:442 +msgid "Site" +msgstr "Site" + +#: ../../mod/admin.php:97 ../../mod/admin.php:688 ../../mod/admin.php:701 +msgid "Users" +msgstr "Utilisateurs" + +#: ../../mod/admin.php:98 ../../mod/admin.php:783 ../../mod/admin.php:825 +msgid "Plugins" +msgstr "Extensions" + +#: ../../mod/admin.php:99 ../../mod/admin.php:988 ../../mod/admin.php:1024 +msgid "Themes" +msgstr "Thèmes" + +#: ../../mod/admin.php:100 +msgid "DB updates" +msgstr "Mise-à-jour de la base" + +#: ../../mod/admin.php:115 ../../mod/admin.php:122 ../../mod/admin.php:1111 +msgid "Logs" +msgstr "Journaux" + +#: ../../mod/admin.php:120 ../../include/nav.php:146 +msgid "Admin" +msgstr "Admin" + +#: ../../mod/admin.php:121 +msgid "Plugin Features" +msgstr "Propriétés des extensions" + +#: ../../mod/admin.php:123 +msgid "User registrations waiting for confirmation" +msgstr "Inscriptions en attente de confirmation" + +#: ../../mod/admin.php:183 ../../mod/admin.php:669 +msgid "Normal Account" +msgstr "Compte normal" + +#: ../../mod/admin.php:184 ../../mod/admin.php:670 +msgid "Soapbox Account" +msgstr "Compte \"boîte à savon\"" + +#: ../../mod/admin.php:185 ../../mod/admin.php:671 +msgid "Community/Celebrity Account" +msgstr "Compte de communauté/célébrité" + +#: ../../mod/admin.php:186 ../../mod/admin.php:672 +msgid "Automatic Friend Account" +msgstr "Compte auto-amical" + +#: ../../mod/admin.php:187 +msgid "Blog Account" +msgstr "Compte de blog" + +#: ../../mod/admin.php:188 +msgid "Private Forum" +msgstr "Forum privé" + +#: ../../mod/admin.php:207 +msgid "Message queues" +msgstr "Files d'attente des messages" + +#: ../../mod/admin.php:212 ../../mod/admin.php:441 ../../mod/admin.php:687 +#: ../../mod/admin.php:782 ../../mod/admin.php:824 ../../mod/admin.php:987 +#: ../../mod/admin.php:1023 ../../mod/admin.php:1110 +msgid "Administration" +msgstr "Administration" + +#: ../../mod/admin.php:213 +msgid "Summary" +msgstr "Résumé" + +#: ../../mod/admin.php:215 +msgid "Registered users" +msgstr "Utilisateurs inscrits" + +#: ../../mod/admin.php:217 +msgid "Pending registrations" +msgstr "Inscriptions en attente" + +#: ../../mod/admin.php:218 +msgid "Version" +msgstr "Versio" + +#: ../../mod/admin.php:220 +msgid "Active plugins" +msgstr "Extensions activés" + +#: ../../mod/admin.php:373 +msgid "Site settings updated." +msgstr "Réglages du site mis-à-jour." + +#: ../../mod/admin.php:428 +msgid "Closed" +msgstr "Fermé" + +#: ../../mod/admin.php:429 +msgid "Requires approval" +msgstr "Demande une apptrobation" + +#: ../../mod/admin.php:430 +msgid "Open" +msgstr "Ouvert" + +#: ../../mod/admin.php:434 +msgid "No SSL policy, links will track page SSL state" +msgstr "Pas de politique SSL, le liens conserveront l'état SSL de la page" + +#: ../../mod/admin.php:435 +msgid "Force all links to use SSL" +msgstr "Forcer tous les liens à utiliser SSL" + +#: ../../mod/admin.php:436 +msgid "Self-signed certificate, use SSL for local links only (discouraged)" +msgstr "Certificat auto-signé, n'utiliser SSL que pour les liens locaux (non recommandé)" + +#: ../../mod/admin.php:445 +msgid "File upload" +msgstr "Téléversement de fichier" + +#: ../../mod/admin.php:446 +msgid "Policies" +msgstr "Politiques" + +#: ../../mod/admin.php:447 +msgid "Advanced" +msgstr "Avancé" + +#: ../../mod/admin.php:451 ../../addon/statusnet/statusnet.php:567 +msgid "Site name" +msgstr "Nom du site" + +#: ../../mod/admin.php:452 +msgid "Banner/Logo" +msgstr "Bannière/Logo" + +#: ../../mod/admin.php:453 +msgid "System language" +msgstr "Langue du système" + +#: ../../mod/admin.php:454 +msgid "System theme" +msgstr "Thème du système" + +#: ../../mod/admin.php:454 +msgid "" +"Default system theme - may be over-ridden by user profiles - change theme settings" +msgstr "Thème par défaut sur ce site - peut être changé en fonction des profils - changer les réglages du thème" + +#: ../../mod/admin.php:455 +msgid "Mobile system theme" +msgstr "Thème mobile" + +#: ../../mod/admin.php:455 +msgid "Theme for mobile devices" +msgstr "Thème pour les terminaux mobiles" + +#: ../../mod/admin.php:456 +msgid "SSL link policy" +msgstr "Politique SSL pour les liens" + +#: ../../mod/admin.php:456 +msgid "Determines whether generated links should be forced to use SSL" +msgstr "Détermine si les liens générés doivent forcer l'usage de SSL" + +#: ../../mod/admin.php:457 +msgid "Maximum image size" +msgstr "Taille maximale des images" + +#: ../../mod/admin.php:457 +msgid "" +"Maximum size in bytes of uploaded images. Default is 0, which means no " +"limits." +msgstr "Taille maximale des images envoyées (en octets). 0 par défaut, c'est à dire \"aucune limite\"." + +#: ../../mod/admin.php:458 +msgid "Maximum image length" +msgstr "Longueur maximale des images" + +#: ../../mod/admin.php:458 +msgid "" +"Maximum length in pixels of the longest side of uploaded images. Default is " +"-1, which means no limits." +msgstr "Longueur maximale (en pixels) du plus long côté des images téléversées. La valeur par défaut est -1, soit une absence de limite." + +#: ../../mod/admin.php:459 +msgid "JPEG image quality" +msgstr "Qualité JPEG des images" + +#: ../../mod/admin.php:459 +msgid "" +"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " +"100, which is full quality." +msgstr "Les JPEGs téléversés seront sauvegardés avec ce niveau de qualité [0-100]. La valeur par défaut est 100, soit la qualité maximale." + +#: ../../mod/admin.php:461 +msgid "Register policy" +msgstr "Politique d'inscription" + +#: ../../mod/admin.php:462 +msgid "Register text" +msgstr "Texte d'inscription" + +#: ../../mod/admin.php:462 +msgid "Will be displayed prominently on the registration page." +msgstr "Sera affiché de manière bien visible sur la page d'accueil." + +#: ../../mod/admin.php:463 +msgid "Accounts abandoned after x days" +msgstr "Les comptes sont abandonnés après x jours" + +#: ../../mod/admin.php:463 +msgid "" +"Will not waste system resources polling external sites for abandonded " +"accounts. Enter 0 for no time limit." +msgstr "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." + +#: ../../mod/admin.php:464 +msgid "Allowed friend domains" +msgstr "Domaines autorisés" + +#: ../../mod/admin.php:464 +msgid "" +"Comma separated list of domains which are allowed to establish friendships " +"with this site. Wildcards are accepted. Empty to allow any domains" +msgstr "Une liste de domaines, séparés par des virgules, autorisés à établir des relations avec les utilisateurs de ce site. Les '*' sont acceptés. Laissez vide pour autoriser tous les domaines" + +#: ../../mod/admin.php:465 +msgid "Allowed email domains" +msgstr "Domaines courriel autorisés" + +#: ../../mod/admin.php:465 +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 de domaines - séparés par des virgules - dont les adresses e-mail sont autorisées à s'inscrire sur ce site. Les '*' sont acceptées. Laissez vide pour autoriser tous les domaines" + +#: ../../mod/admin.php:466 +msgid "Block public" +msgstr "Interdire la publication globale" + +#: ../../mod/admin.php:466 +msgid "" +"Check to block public access to all otherwise public personal pages on this " +"site unless you are currently logged in." +msgstr "Cocher pour bloquer les accès anonymes (non-connectés) à tout sauf aux pages personnelles publiques." + +#: ../../mod/admin.php:467 +msgid "Force publish" +msgstr "Forcer la publication globale" + +#: ../../mod/admin.php:467 +msgid "" +"Check to force all profiles on this site to be listed in the site directory." +msgstr "Cocher pour publier obligatoirement tous les profils locaux dans l'annuaire du site." + +#: ../../mod/admin.php:468 +msgid "Global directory update URL" +msgstr "URL de mise-à-jour de l'annuaire global" + +#: ../../mod/admin.php:468 +msgid "" +"URL to update the global directory. If this is not set, the global directory" +" is completely unavailable to the application." +msgstr "URL de mise-à-jour de l'annuaire global. Si vide, l'annuaire global sera complètement indisponible." + +#: ../../mod/admin.php:469 +msgid "Allow threaded items" +msgstr "Activer les commentaires imbriqués" + +#: ../../mod/admin.php:469 +msgid "Allow infinite level threading for items on this site." +msgstr "Permettre une imbrication infinie des commentaires." + +#: ../../mod/admin.php:470 +msgid "Private posts by default for new users" +msgstr "" + +#: ../../mod/admin.php:470 +msgid "" +"Set default post permissions for all new members to the default privacy " +"group rather than public." +msgstr "" + +#: ../../mod/admin.php:472 +msgid "Block multiple registrations" +msgstr "Interdire les inscriptions multiples" + +#: ../../mod/admin.php:472 +msgid "Disallow users to register additional accounts for use as pages." +msgstr "Ne pas permettre l'inscription de comptes multiples comme des pages." + +#: ../../mod/admin.php:473 +msgid "OpenID support" +msgstr "Support OpenID" + +#: ../../mod/admin.php:473 +msgid "OpenID support for registration and logins." +msgstr "Supporter OpenID pour les inscriptions et connexions." + +#: ../../mod/admin.php:474 +msgid "Fullname check" +msgstr "Vérification du \"Prénom Nom\"" + +#: ../../mod/admin.php:474 +msgid "" +"Force users to register with a space between firstname and lastname in Full " +"name, as an antispam measure" +msgstr "Imposer l'utilisation d'un espace entre le prénom et le nom (dans le Nom complet), pour limiter les abus" + +#: ../../mod/admin.php:475 +msgid "UTF-8 Regular expressions" +msgstr "Regex UTF-8" + +#: ../../mod/admin.php:475 +msgid "Use PHP UTF8 regular expressions" +msgstr "Utiliser les expressions rationnelles de PHP en UTF8" + +#: ../../mod/admin.php:476 +msgid "Show Community Page" +msgstr "Montrer la \"Place publique\"" + +#: ../../mod/admin.php:476 +msgid "" +"Display a Community page showing all recent public postings on this site." +msgstr "Afficher une page Communauté avec toutes les publications publiques récentes du site." + +#: ../../mod/admin.php:477 +msgid "Enable OStatus support" +msgstr "Activer le support d'OStatus" + +#: ../../mod/admin.php:477 +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 "Fournir une compatibilité OStatus (identi.ca, status.net, etc.). Toutes les communications d'OStatus sont publiques, des avertissements liés à la vie privée seront affichés si utile." + +#: ../../mod/admin.php:478 +msgid "Enable Diaspora support" +msgstr "Activer le support de Diaspora" + +#: ../../mod/admin.php:478 +msgid "Provide built-in Diaspora network compatibility." +msgstr "Fournir une compatibilité Diaspora intégrée." + +#: ../../mod/admin.php:479 +msgid "Only allow Friendica contacts" +msgstr "N'autoriser que les contacts Friendica" + +#: ../../mod/admin.php:479 +msgid "" +"All contacts must use Friendica protocols. All other built-in communication " +"protocols disabled." +msgstr "Tous les contacts doivent utiliser les protocoles de Friendica. Tous les autres protocoles de communication intégrés sont désactivés." + +#: ../../mod/admin.php:480 +msgid "Verify SSL" +msgstr "Vérifier SSL" + +#: ../../mod/admin.php:480 +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 "Si vous le souhaitez, vous pouvez activier la vérification stricte des certificats. Cela signifie que vous ne pourrez pas vous connecter (du tout) aux sites SSL munis d'un certificat auto-signé." + +#: ../../mod/admin.php:481 +msgid "Proxy user" +msgstr "Utilisateur du proxy" + +#: ../../mod/admin.php:482 +msgid "Proxy URL" +msgstr "URL du proxy" + +#: ../../mod/admin.php:483 +msgid "Network timeout" +msgstr "Dépassement du délai d'attente du réseau" + +#: ../../mod/admin.php:483 +msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." +msgstr "Valeur en secondes. Mettre à 0 pour 'illimité' (pas recommandé)." + +#: ../../mod/admin.php:484 +msgid "Delivery interval" +msgstr "Intervalle de transmission" + +#: ../../mod/admin.php:484 +msgid "" +"Delay background delivery processes by this many seconds to reduce system " +"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " +"for large dedicated servers." +msgstr "Rallonge le processus de transmissions pour réduire la charge système (en secondes). Valeurs recommandées : 4-5 pour les serveurs mutualisés, 2-3 pour les VPS, 0-1 pour les gros servers dédiés." + +#: ../../mod/admin.php:485 +msgid "Poll interval" +msgstr "Intervalle de réception" + +#: ../../mod/admin.php:485 +msgid "" +"Delay background polling processes by this many seconds to reduce system " +"load. If 0, use delivery interval." +msgstr "Rajouter un délai - en secondes - au processus de 'polling', afin de réduire la charge système. Mettre à 0 pour utiliser l'intervalle d'émission." + +#: ../../mod/admin.php:486 +msgid "Maximum Load Average" +msgstr "Plafond de la charge moyenne" + +#: ../../mod/admin.php:486 +msgid "" +"Maximum system load before delivery and poll processes are deferred - " +"default 50." +msgstr "Charge système maximale à partir de laquelle l'émission et la réception seront soumises à un délai supplémentaire. Par défaut, 50." + +#: ../../mod/admin.php:503 +msgid "Update has been marked successful" +msgstr "Mise-à-jour validée comme 'réussie'" + +#: ../../mod/admin.php:513 +#, php-format +msgid "Executing %s failed. Check system logs." +msgstr "L'éxecution de %s a échoué. Vérifiez les journaux du système." + +#: ../../mod/admin.php:516 +#, php-format +msgid "Update %s was successfully applied." +msgstr "Mise-à-jour %s appliquée avec succès." + +#: ../../mod/admin.php:520 +#, php-format +msgid "Update %s did not return a status. Unknown if it succeeded." +msgstr "La mise-à-jour %s n'a pas retourné de détails. Impossible de savoir si elle a réussi." + +#: ../../mod/admin.php:523 +#, php-format +msgid "Update function %s could not be found." +msgstr "La fonction %s de la mise-à-jour n'a pu être trouvée." + +#: ../../mod/admin.php:538 +msgid "No failed updates." +msgstr "Pas de mises-à-jour échouées." + +#: ../../mod/admin.php:542 +msgid "Failed Updates" +msgstr "Mises-à-jour échouées" + +#: ../../mod/admin.php:543 +msgid "" +"This does not include updates prior to 1139, which did not return a status." +msgstr "Ceci n'inclut pas les versions antérieures à la 1139, qui ne retournaient jamais de détails." + +#: ../../mod/admin.php:544 +msgid "Mark success (if update was manually applied)" +msgstr "Marquer comme 'réussie' (dans le cas d'une mise-à-jour manuelle)" + +#: ../../mod/admin.php:545 +msgid "Attempt to execute this update step automatically" +msgstr "Tenter d'éxecuter cette étape automatiquement" + +#: ../../mod/admin.php:570 +#, php-format +msgid "%s user blocked/unblocked" +msgid_plural "%s users blocked/unblocked" +msgstr[0] "%s utilisateur a (dé)bloqué" +msgstr[1] "%s utilisateurs ont (dé)bloqué" + +#: ../../mod/admin.php:577 +#, php-format +msgid "%s user deleted" +msgid_plural "%s users deleted" +msgstr[0] "%s utilisateur supprimé" +msgstr[1] "%s utilisateurs supprimés" + +#: ../../mod/admin.php:616 +#, php-format +msgid "User '%s' deleted" +msgstr "Utilisateur '%s' supprimé" + +#: ../../mod/admin.php:624 +#, php-format +msgid "User '%s' unblocked" +msgstr "Utilisateur '%s' débloqué" + +#: ../../mod/admin.php:624 +#, php-format +msgid "User '%s' blocked" +msgstr "Utilisateur '%s' bloqué" + +#: ../../mod/admin.php:690 +msgid "select all" +msgstr "tout sélectionner" + +#: ../../mod/admin.php:691 +msgid "User registrations waiting for confirm" +msgstr "Inscriptions d'utilisateurs en attente de confirmation" + +#: ../../mod/admin.php:692 +msgid "Request date" +msgstr "Date de la demande" + +#: ../../mod/admin.php:692 ../../mod/admin.php:702 +#: ../../include/contact_selectors.php:79 +msgid "Email" +msgstr "Courriel" + +#: ../../mod/admin.php:693 +msgid "No registrations." +msgstr "Pas d'inscriptions." + +#: ../../mod/admin.php:695 +msgid "Deny" +msgstr "Rejetter" + +#: ../../mod/admin.php:699 +msgid "Site admin" +msgstr "" + +#: ../../mod/admin.php:702 +msgid "Register date" +msgstr "Date d'inscription" + +#: ../../mod/admin.php:702 +msgid "Last login" +msgstr "Dernière connexion" + +#: ../../mod/admin.php:702 +msgid "Last item" +msgstr "Dernier élément" + +#: ../../mod/admin.php:702 +msgid "Account" +msgstr "Compte" + +#: ../../mod/admin.php:704 +msgid "" +"Selected users will be deleted!\\n\\nEverything these users had posted on " +"this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Les utilisateurs sélectionnés vont être supprimés!\\n\\nTout ce qu'ils ont posté sur ce site sera définitivement perdu!\\n\\nÊtes-vous certain?" + +#: ../../mod/admin.php:705 +msgid "" +"The user {0} will be deleted!\\n\\nEverything this user has posted on this " +"site will be permanently deleted!\\n\\nAre you sure?" +msgstr "L'utilisateur {0} va être supprimé!\\n\\nTout ce qu'il a posté sur ce site sera définitivement perdu!\\n\\nÊtes-vous certain?" + +#: ../../mod/admin.php:746 +#, php-format +msgid "Plugin %s disabled." +msgstr "Extension %s désactivée." + +#: ../../mod/admin.php:750 +#, php-format +msgid "Plugin %s enabled." +msgstr "Extension %s activée." + +#: ../../mod/admin.php:760 ../../mod/admin.php:958 +msgid "Disable" +msgstr "Désactiver" + +#: ../../mod/admin.php:762 ../../mod/admin.php:960 +msgid "Enable" +msgstr "Activer" + +#: ../../mod/admin.php:784 ../../mod/admin.php:989 +msgid "Toggle" +msgstr "Activer/Désactiver" + +#: ../../mod/admin.php:792 ../../mod/admin.php:999 +msgid "Author: " +msgstr "Auteur: " + +#: ../../mod/admin.php:793 ../../mod/admin.php:1000 +msgid "Maintainer: " +msgstr "Mainteneur: " + +#: ../../mod/admin.php:922 +msgid "No themes found." +msgstr "Aucun thème trouvé." + +#: ../../mod/admin.php:981 +msgid "Screenshot" +msgstr "Capture d'écran" + +#: ../../mod/admin.php:1029 +msgid "[Experimental]" +msgstr "[Expérimental]" + +#: ../../mod/admin.php:1030 +msgid "[Unsupported]" +msgstr "[Non supporté]" + +#: ../../mod/admin.php:1057 +msgid "Log settings updated." +msgstr "Réglages des journaux mis-à-jour." + +#: ../../mod/admin.php:1113 +msgid "Clear" +msgstr "Effacer" + +#: ../../mod/admin.php:1119 +msgid "Debugging" +msgstr "Déboguage" + +#: ../../mod/admin.php:1120 +msgid "Log file" +msgstr "Fichier de journaux" + +#: ../../mod/admin.php:1120 +msgid "" +"Must be writable by web server. Relative to your Friendica top-level " +"directory." +msgstr "Accès en écriture par le serveur web requis. Relatif à la racine de votre installation de Friendica." + +#: ../../mod/admin.php:1121 +msgid "Log level" +msgstr "Niveau de journalisaton" + +#: ../../mod/admin.php:1171 +msgid "Close" +msgstr "Fermer" + +#: ../../mod/admin.php:1177 +msgid "FTP Host" +msgstr "Hôte FTP" + +#: ../../mod/admin.php:1178 +msgid "FTP Path" +msgstr "Chemin FTP" + +#: ../../mod/admin.php:1179 +msgid "FTP User" +msgstr "Utilisateur FTP" + +#: ../../mod/admin.php:1180 +msgid "FTP Password" +msgstr "Mot de passe FTP" + +#: ../../mod/profile.php:22 ../../boot.php:1074 +msgid "Requested profile is not available." +msgstr "Le profil demandé n'est pas disponible." + +#: ../../mod/profile.php:152 ../../mod/display.php:77 +msgid "Access to this profile has been restricted." +msgstr "L'accès au profil a été restreint." + +#: ../../mod/profile.php:177 +msgid "Tips for New Members" +msgstr "Conseils aux nouveaux venus" + +#: ../../mod/ping.php:238 +msgid "{0} wants to be your friend" +msgstr "{0} souhaite être votre ami(e)" + +#: ../../mod/ping.php:243 +msgid "{0} sent you a message" +msgstr "{0} vous a envoyé un message" + +#: ../../mod/ping.php:248 +msgid "{0} requested registration" +msgstr "{0} a demandé à s'inscrire" + +#: ../../mod/ping.php:254 +#, php-format +msgid "{0} commented %s's post" +msgstr "{0} a commenté une notice de %s" + +#: ../../mod/ping.php:259 +#, php-format +msgid "{0} liked %s's post" +msgstr "{0} a aimé une notice de %s" + +#: ../../mod/ping.php:264 +#, php-format +msgid "{0} disliked %s's post" +msgstr "{0} n'a pas aimé une notice de %s" + +#: ../../mod/ping.php:269 +#, php-format +msgid "{0} is now friends with %s" +msgstr "{0} est désormais ami(e) avec %s" + +#: ../../mod/ping.php:274 +msgid "{0} posted" +msgstr "{0} a posté" + +#: ../../mod/ping.php:279 +#, php-format +msgid "{0} tagged %s's post with #%s" +msgstr "{0} a taggué la notice de %s avec #%s" + +#: ../../mod/ping.php:285 +msgid "{0} mentioned you in a post" +msgstr "{0} vous a mentionné dans une publication" + +#: ../../mod/nogroup.php:58 +msgid "Contacts who are not members of a group" +msgstr "Contacts qui n’appartiennent à aucun groupe" + +#: ../../mod/openid.php:24 +msgid "OpenID protocol error. No ID returned." +msgstr "Erreur de protocole OpenID. Pas d'ID en retour." + +#: ../../mod/openid.php:53 +msgid "" +"Account not found and OpenID registration is not permitted on this site." +msgstr "Compte introuvable, et l'inscription OpenID n'est pas autorisée sur ce site." + +#: ../../mod/openid.php:93 ../../include/auth.php:98 +#: ../../include/auth.php:161 +msgid "Login failed." +msgstr "Échec de connexion." + +#: ../../mod/follow.php:27 +msgid "Contact added" +msgstr "Contact ajouté" + +#: ../../mod/common.php:42 +msgid "Common Friends" +msgstr "Amis communs" + +#: ../../mod/common.php:78 +msgid "No contacts in common." +msgstr "Pas de contacts en commun." + +#: ../../mod/share.php:28 +msgid "link" +msgstr "lien" + +#: ../../mod/display.php:138 msgid "Item has been removed." msgstr "Cet élément a été enlevé." -#: ../../mod/editpost.php:17 ../../mod/editpost.php:27 -msgid "Item not found" -msgstr "Élément introuvable" +#: ../../mod/apps.php:4 +msgid "Applications" +msgstr "Applications" -#: ../../mod/editpost.php:32 -msgid "Edit post" -msgstr "Éditer la publication" +#: ../../mod/apps.php:7 +msgid "No installed applications." +msgstr "Pas d'application installée." -#: ../../mod/editpost.php:75 ../../include/conversation.php:800 -msgid "Post to Email" -msgstr "Publier aussi par courriel" +#: ../../mod/search.php:85 ../../include/text.php:678 +#: ../../include/text.php:679 ../../include/nav.php:91 +msgid "Search" +msgstr "Recherche" -#: ../../mod/editpost.php:91 ../../mod/message.php:135 -#: ../../mod/message.php:268 ../../include/conversation.php:815 -msgid "Upload photo" -msgstr "Joindre photo" +#: ../../mod/profiles.php:21 ../../mod/profiles.php:423 +#: ../../mod/profiles.php:537 ../../mod/dfrn_confirm.php:62 +msgid "Profile not found." +msgstr "Profil introuvable." -#: ../../mod/editpost.php:92 ../../include/conversation.php:816 -msgid "Attach file" -msgstr "Joindre fichier" +#: ../../mod/profiles.php:31 +msgid "Profile Name is required." +msgstr "Le nom du profil est requis." -#: ../../mod/editpost.php:93 ../../mod/message.php:136 -#: ../../mod/message.php:269 ../../include/conversation.php:817 -msgid "Insert web link" -msgstr "Insérer lien web" +#: ../../mod/profiles.php:160 +msgid "Marital Status" +msgstr "Statut marital" -#: ../../mod/editpost.php:94 -msgid "Insert YouTube video" -msgstr "Insérer une vidéo Youtube" +#: ../../mod/profiles.php:164 +msgid "Romantic Partner" +msgstr "Partenaire/conjoint" -#: ../../mod/editpost.php:95 -msgid "Insert Vorbis [.ogg] video" -msgstr "Insérer un lien vidéo Vorbis [.ogg]" +#: ../../mod/profiles.php:168 +msgid "Likes" +msgstr "Derniers \"J'aime\"" -#: ../../mod/editpost.php:96 -msgid "Insert Vorbis [.ogg] audio" -msgstr "Insérer un lien audio Vorbis [.ogg]" +#: ../../mod/profiles.php:172 +msgid "Dislikes" +msgstr "Derniers \"Je n'aime pas\"" -#: ../../mod/editpost.php:97 ../../include/conversation.php:820 -msgid "Set your location" -msgstr "Définir votre localisation" +#: ../../mod/profiles.php:176 +msgid "Work/Employment" +msgstr "Travail/Occupation" -#: ../../mod/editpost.php:98 ../../include/conversation.php:821 -msgid "Clear browser location" -msgstr "Effacer la localisation du navigateur" +#: ../../mod/profiles.php:179 +msgid "Religion" +msgstr "Religion" -#: ../../mod/editpost.php:100 ../../include/conversation.php:824 -msgid "Permission settings" -msgstr "Réglages des permissions" +#: ../../mod/profiles.php:183 +msgid "Political Views" +msgstr "Tendance politique" -#: ../../mod/editpost.php:108 ../../include/conversation.php:832 -msgid "CC: email addresses" -msgstr "CC: adresses de courriel" +#: ../../mod/profiles.php:187 +msgid "Gender" +msgstr "Sexe" -#: ../../mod/editpost.php:109 ../../include/conversation.php:833 -msgid "Public post" -msgstr "Notice publique" +#: ../../mod/profiles.php:191 +msgid "Sexual Preference" +msgstr "Préférence sexuelle" -#: ../../mod/editpost.php:111 ../../include/conversation.php:835 -msgid "Example: bob@example.com, mary@example.com" -msgstr "Exemple: bob@exemple.com, mary@exemple.com" +#: ../../mod/profiles.php:195 +msgid "Homepage" +msgstr "Site internet" + +#: ../../mod/profiles.php:199 +msgid "Interests" +msgstr "Centres d'intérêt" + +#: ../../mod/profiles.php:203 +msgid "Address" +msgstr "Adresse" + +#: ../../mod/profiles.php:210 ../../addon/dav/common/wdcal_edit.inc.php:183 +msgid "Location" +msgstr "Localisation" + +#: ../../mod/profiles.php:293 +msgid "Profile updated." +msgstr "Profil mis à jour." + +#: ../../mod/profiles.php:360 +msgid " and " +msgstr " et " + +#: ../../mod/profiles.php:368 +msgid "public profile" +msgstr "profil public" + +#: ../../mod/profiles.php:371 +#, php-format +msgid "%1$s changed %2$s to “%3$s”" +msgstr "%1$s a changé %2$s en “%3$s”" + +#: ../../mod/profiles.php:372 +#, php-format +msgid " - Visit %1$s's %2$s" +msgstr "Visiter le %2$s de %1$s" + +#: ../../mod/profiles.php:375 +#, php-format +msgid "%1$s has an updated %2$s, changing %3$s." +msgstr "%1$s a mis à jour son %2$s, en modifiant %3$s." + +#: ../../mod/profiles.php:442 +msgid "Profile deleted." +msgstr "Profil supprimé." + +#: ../../mod/profiles.php:460 ../../mod/profiles.php:494 +msgid "Profile-" +msgstr "Profil-" + +#: ../../mod/profiles.php:479 ../../mod/profiles.php:521 +msgid "New profile created." +msgstr "Nouveau profil créé." + +#: ../../mod/profiles.php:500 +msgid "Profile unavailable to clone." +msgstr "Ce profil ne peut être cloné." + +#: ../../mod/profiles.php:562 +msgid "Hide your contact/friend list from viewers of this profile?" +msgstr "Cacher ma liste d'amis/contacts des visiteurs de ce profil?" + +#: ../../mod/profiles.php:582 +msgid "Edit Profile Details" +msgstr "Éditer les détails du profil" + +#: ../../mod/profiles.php:584 +msgid "View this profile" +msgstr "Voir ce profil" + +#: ../../mod/profiles.php:585 +msgid "Create a new profile using these settings" +msgstr "Créer un nouveau profil en utilisant ces réglages" + +#: ../../mod/profiles.php:586 +msgid "Clone this profile" +msgstr "Cloner ce profil" + +#: ../../mod/profiles.php:587 +msgid "Delete this profile" +msgstr "Supprimer ce profil" + +#: ../../mod/profiles.php:588 +msgid "Profile Name:" +msgstr "Nom du profil:" + +#: ../../mod/profiles.php:589 +msgid "Your Full Name:" +msgstr "Votre nom complet:" + +#: ../../mod/profiles.php:590 +msgid "Title/Description:" +msgstr "Titre/Description:" + +#: ../../mod/profiles.php:591 +msgid "Your Gender:" +msgstr "Votre genre:" + +#: ../../mod/profiles.php:592 +#, php-format +msgid "Birthday (%s):" +msgstr "Anniversaire (%s):" + +#: ../../mod/profiles.php:593 +msgid "Street Address:" +msgstr "Adresse postale:" + +#: ../../mod/profiles.php:594 +msgid "Locality/City:" +msgstr "Ville/Localité:" + +#: ../../mod/profiles.php:595 +msgid "Postal/Zip Code:" +msgstr "Code postal:" + +#: ../../mod/profiles.php:596 +msgid "Country:" +msgstr "Pays:" + +#: ../../mod/profiles.php:597 +msgid "Region/State:" +msgstr "Région/État:" + +#: ../../mod/profiles.php:598 +msgid " Marital Status:" +msgstr " Statut marital:" + +#: ../../mod/profiles.php:599 +msgid "Who: (if applicable)" +msgstr "Qui: (si pertinent)" + +#: ../../mod/profiles.php:600 +msgid "Examples: cathy123, Cathy Williams, cathy@example.com" +msgstr "Exemples: cathy123, Cathy Williams, cathy@example.com" + +#: ../../mod/profiles.php:601 +msgid "Since [date]:" +msgstr "Depuis [date] :" + +#: ../../mod/profiles.php:602 ../../include/profile_advanced.php:46 +msgid "Sexual Preference:" +msgstr "Préférence sexuelle:" + +#: ../../mod/profiles.php:603 +msgid "Homepage URL:" +msgstr "Page personnelle:" + +#: ../../mod/profiles.php:604 ../../include/profile_advanced.php:50 +msgid "Hometown:" +msgstr " Ville d'origine:" + +#: ../../mod/profiles.php:605 ../../include/profile_advanced.php:54 +msgid "Political Views:" +msgstr "Opinions politiques:" + +#: ../../mod/profiles.php:606 +msgid "Religious Views:" +msgstr "Opinions religieuses:" + +#: ../../mod/profiles.php:607 +msgid "Public Keywords:" +msgstr "Mots-clés publics:" + +#: ../../mod/profiles.php:608 +msgid "Private Keywords:" +msgstr "Mots-clés privés:" + +#: ../../mod/profiles.php:609 ../../include/profile_advanced.php:62 +msgid "Likes:" +msgstr "J'aime :" + +#: ../../mod/profiles.php:610 ../../include/profile_advanced.php:64 +msgid "Dislikes:" +msgstr "Je n'aime pas :" + +#: ../../mod/profiles.php:611 +msgid "Example: fishing photography software" +msgstr "Exemple: football dessin programmation" + +#: ../../mod/profiles.php:612 +msgid "(Used for suggesting potential friends, can be seen by others)" +msgstr "(Utilisés pour vous suggérer des amis potentiels, peuvent être vus par autrui)" + +#: ../../mod/profiles.php:613 +msgid "(Used for searching profiles, never shown to others)" +msgstr "(Utilisés pour rechercher dans les profils, ne seront jamais montrés à autrui)" + +#: ../../mod/profiles.php:614 +msgid "Tell us about yourself..." +msgstr "Parlez-nous de vous..." + +#: ../../mod/profiles.php:615 +msgid "Hobbies/Interests" +msgstr "Passe-temps/Centres d'intérêt" + +#: ../../mod/profiles.php:616 +msgid "Contact information and Social Networks" +msgstr "Coordonnées/Réseaux sociaux" + +#: ../../mod/profiles.php:617 +msgid "Musical interests" +msgstr "Goûts musicaux" + +#: ../../mod/profiles.php:618 +msgid "Books, literature" +msgstr "Lectures" + +#: ../../mod/profiles.php:619 +msgid "Television" +msgstr "Télévision" + +#: ../../mod/profiles.php:620 +msgid "Film/dance/culture/entertainment" +msgstr "Cinéma/Danse/Culture/Divertissement" + +#: ../../mod/profiles.php:621 +msgid "Love/romance" +msgstr "Amour/Romance" + +#: ../../mod/profiles.php:622 +msgid "Work/employment" +msgstr "Activité professionnelle/Occupation" + +#: ../../mod/profiles.php:623 +msgid "School/education" +msgstr "Études/Formation" + +#: ../../mod/profiles.php:628 +msgid "" +"This is your public profile.
    It may " +"be visible to anybody using the internet." +msgstr "Ceci est votre profil public.
    Il peut être visible par n'importe quel utilisateur d'Internet." + +#: ../../mod/profiles.php:638 ../../mod/directory.php:111 +msgid "Age: " +msgstr "Age: " + +#: ../../mod/profiles.php:677 +msgid "Edit/Manage Profiles" +msgstr "Editer/gérer les profils" + +#: ../../mod/profiles.php:678 ../../boot.php:1192 +msgid "Change profile photo" +msgstr "Changer de photo de profil" + +#: ../../mod/profiles.php:679 ../../boot.php:1193 +msgid "Create New Profile" +msgstr "Créer un nouveau profil" + +#: ../../mod/profiles.php:690 ../../boot.php:1203 +msgid "Profile Image" +msgstr "Image du profil" + +#: ../../mod/profiles.php:692 ../../boot.php:1206 +msgid "visible to everybody" +msgstr "visible par tous" + +#: ../../mod/profiles.php:693 ../../boot.php:1207 +msgid "Edit visibility" +msgstr "Changer la visibilité" + +#: ../../mod/filer.php:29 ../../include/conversation.php:837 +#: ../../include/conversation.php:854 +msgid "Save to Folder:" +msgstr "Sauver dans le Dossier:" + +#: ../../mod/filer.php:29 +msgid "- select -" +msgstr "- choisir -" + +#: ../../mod/tagger.php:95 ../../include/conversation.php:265 +#, php-format +msgid "%1$s tagged %2$s's %3$s with %4$s" +msgstr "%1$s a taggué %3$s de %2$s avec %4$s" + +#: ../../mod/delegate.php:95 +msgid "No potential page delegates located." +msgstr "Pas de délégataire potentiel." + +#: ../../mod/delegate.php:121 +msgid "Delegate Page Management" +msgstr "Déléguer la gestion de la page" + +#: ../../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 "Les délégataires seront capables de gérer tous les aspects de ce compte ou de cette page, à l'exception des réglages de compte. Merci de ne pas déléguer votre compte principal à quelqu'un en qui vous n'avez pas une confiance absolue." + +#: ../../mod/delegate.php:124 +msgid "Existing Page Managers" +msgstr "Gestionnaires existants" + +#: ../../mod/delegate.php:126 +msgid "Existing Page Delegates" +msgstr "Délégataires existants" + +#: ../../mod/delegate.php:128 +msgid "Potential Delegates" +msgstr "Délégataires potentiels" + +#: ../../mod/delegate.php:131 +msgid "Add" +msgstr "Ajouter" + +#: ../../mod/delegate.php:132 +msgid "No entries." +msgstr "Aucune entrée." + +#: ../../mod/babel.php:17 +msgid "Source (bbcode) text:" +msgstr "Texte source (bbcode) :" + +#: ../../mod/babel.php:23 +msgid "Source (Diaspora) text to convert to BBcode:" +msgstr "Texte source (Diaspora) à convertir en BBcode :" + +#: ../../mod/babel.php:31 +msgid "Source input: " +msgstr "Source input: " + +#: ../../mod/babel.php:35 +msgid "bb2html: " +msgstr "bb2html: " + +#: ../../mod/babel.php:39 +msgid "bb2html2bb: " +msgstr "bb2html2bb: " + +#: ../../mod/babel.php:43 +msgid "bb2md: " +msgstr "bb2md: " + +#: ../../mod/babel.php:47 +msgid "bb2md2html: " +msgstr "bb2md2html: " + +#: ../../mod/babel.php:51 +msgid "bb2dia2bb: " +msgstr "bb2dia2bb: " + +#: ../../mod/babel.php:55 +msgid "bb2md2html2bb: " +msgstr "bb2md2html2bb: " + +#: ../../mod/babel.php:65 +msgid "Source input (Diaspora format): " +msgstr "Texte source (format Diaspora) :" + +#: ../../mod/babel.php:70 +msgid "diaspora2bb: " +msgstr "diaspora2bb :" + +#: ../../mod/suggest.php:38 ../../view/theme/diabook/theme.php:626 +#: ../../include/contact_widgets.php:34 +msgid "Friend Suggestions" +msgstr "Suggestions d'amitiés/contacts" + +#: ../../mod/suggest.php:44 +msgid "" +"No suggestions available. If this is a new site, please try again in 24 " +"hours." +msgstr "Aucune suggestion. Si ce site est récent, merci de recommencer dans 24h." + +#: ../../mod/suggest.php:61 +msgid "Ignore/Hide" +msgstr "Ignorer/cacher" + +#: ../../mod/directory.php:49 ../../view/theme/diabook/theme.php:624 +msgid "Global Directory" +msgstr "Annuaire global" + +#: ../../mod/directory.php:57 +msgid "Find on this site" +msgstr "Trouver sur ce site" + +#: ../../mod/directory.php:60 +msgid "Site Directory" +msgstr "Annuaire local" + +#: ../../mod/directory.php:114 +msgid "Gender: " +msgstr "Genre: " + +#: ../../mod/directory.php:136 ../../include/profile_advanced.php:17 +#: ../../boot.php:1228 +msgid "Gender:" +msgstr "Genre:" + +#: ../../mod/directory.php:138 ../../include/profile_advanced.php:37 +#: ../../boot.php:1231 +msgid "Status:" +msgstr "Statut:" + +#: ../../mod/directory.php:140 ../../include/profile_advanced.php:48 +#: ../../boot.php:1233 +msgid "Homepage:" +msgstr "Page personnelle:" + +#: ../../mod/directory.php:142 ../../include/profile_advanced.php:58 +msgid "About:" +msgstr "À propos:" + +#: ../../mod/directory.php:180 +msgid "No entries (some entries may be hidden)." +msgstr "Aucune entrée (certaines peuvent être cachées)." #: ../../mod/invite.php:35 #, php-format @@ -1556,9 +4549,8 @@ msgid "%s : Not a valid email address." msgstr "%s : Adresse de courriel invalide." #: ../../mod/invite.php:59 -#, php-format -msgid "Please join my network on %s" -msgstr "Vous pouvez rejoindre mon réseau sur %s" +msgid "Please join us on Friendica" +msgstr "Rejoignez-nous sur Friendica" #: ../../mod/invite.php:69 #, php-format @@ -1576,2369 +4568,1337 @@ msgstr[1] "%d messages envoyés." msgid "You have no more invitations available" msgstr "Vous n'avez plus d'invitations disponibles" -#: ../../mod/invite.php:99 -msgid "Send invitations" -msgstr "Envoyer des invitations" - #: ../../mod/invite.php:100 -msgid "Enter email addresses, one per line:" -msgstr "Entrez les adresses email, une par ligne:" - -#: ../../mod/invite.php:101 ../../mod/message.php:132 -#: ../../mod/message.php:265 -msgid "Your message:" -msgstr "Votre message:" +#, 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 "Visitez %s pour une liste des sites publics que vous pouvez rejoindre. Les membres de Friendica appartenant à d'autres sites peuvent s'interconnecter, ainsi qu'avec les membres de plusieurs autres réseaux sociaux." #: ../../mod/invite.php:102 #, php-format -msgid "Please join my social network on %s" -msgstr "Vous pouvez rejoindre mon réseau social sur %s" +msgid "" +"To accept this invitation, please visit and register at %s or any other " +"public Friendica website." +msgstr "Pour accepter cette invitation, merci d'aller vous inscrire sur %s, ou n'importe quel autre site Friendica public." #: ../../mod/invite.php:103 -msgid "To accept this invitation, please visit:" -msgstr "Pour accepter cette invitation, rendez vous sur:" +#, 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 "Les sites Friendica sont tous interconnectés pour créer un immense réseau social respectueux de la vie privée, possédé et contrôllé par ses membres. Ils peuvent également interagir avec plusieurs réseaux sociaux traditionnels. Voir %s pour une liste d'autres sites Friendica que vous pourriez rejoindre." -#: ../../mod/invite.php:104 +#: ../../mod/invite.php:106 +msgid "" +"Our apologies. This system is not currently configured to connect with other" +" public sites or invite members." +msgstr "Toutes nos excuses. Ce système n'est pas configuré pour se connecter à d'autres sites publics ou inviter de nouveaux membres." + +#: ../../mod/invite.php:111 +msgid "Send invitations" +msgstr "Envoyer des invitations" + +#: ../../mod/invite.php:112 +msgid "Enter email addresses, one per line:" +msgstr "Entrez les adresses email, une par ligne:" + +#: ../../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 "Vous êtes cordialement invité à me rejoindre sur Friendica, et nous aider ainsi à créer un meilleur web social." + +#: ../../mod/invite.php:116 msgid "You will need to supply this invitation code: $invite_code" msgstr "Vous devrez fournir ce code d'invitation: $invite_code" -#: ../../mod/invite.php:104 +#: ../../mod/invite.php:116 msgid "" "Once you have registered, please connect with me via my profile page at:" msgstr "Une fois inscrit, connectez-vous à la page de mon profil sur:" -#: ../../mod/ping.php:146 -msgid "{0} wants to be your friend" -msgstr "{0} souhaite être votre ami(e)" - -#: ../../mod/ping.php:151 -msgid "{0} sent you a message" -msgstr "{0} vous a envoyé un message" - -#: ../../mod/ping.php:156 -msgid "{0} requested registration" -msgstr "{0} a demandé à s'inscrire" - -#: ../../mod/ping.php:162 -#, php-format -msgid "{0} commented %s's post" -msgstr "{0} a commenté une notice de %s" - -#: ../../mod/ping.php:167 -#, php-format -msgid "{0} liked %s's post" -msgstr "{0} a aimé une notice de %s" - -#: ../../mod/ping.php:172 -#, php-format -msgid "{0} disliked %s's post" -msgstr "{0} n'a pas aimé une notice de %s" - -#: ../../mod/ping.php:177 -#, php-format -msgid "{0} is now friends with %s" -msgstr "{0} est désormais ami(e) avec %s" - -#: ../../mod/ping.php:182 -msgid "{0} posted" -msgstr "{0} a posté" - -#: ../../mod/ping.php:187 -#, php-format -msgid "{0} tagged %s's post with #%s" -msgstr "{0} a taggué la notice de %s avec #%s" - -#: ../../mod/contacts.php:62 ../../mod/contacts.php:133 -msgid "Could not access contact record." -msgstr "Impossible d'accéder à l'enregistrement du contact." - -#: ../../mod/contacts.php:76 -msgid "Could not locate selected profile." -msgstr "Impossible de localiser le profil séléctionné." - -#: ../../mod/contacts.php:97 -msgid "Contact updated." -msgstr "Contact mis-à-jour." - -#: ../../mod/contacts.php:99 ../../mod/dfrn_request.php:409 -msgid "Failed to update contact record." -msgstr "Échec de mise-à-jour du contact." - -#: ../../mod/contacts.php:155 -msgid "Contact has been blocked" -msgstr "Le contact a été bloqué" - -#: ../../mod/contacts.php:155 -msgid "Contact has been unblocked" -msgstr "Le contact n'est plus bloqué" - -#: ../../mod/contacts.php:169 -msgid "Contact has been ignored" -msgstr "Le contact a été ignoré" - -#: ../../mod/contacts.php:169 -msgid "Contact has been unignored" -msgstr "Le contact n'est plus ignoré" - -#: ../../mod/contacts.php:190 -msgid "stopped following" -msgstr "retiré de la liste de suivi" - -#: ../../mod/contacts.php:211 -msgid "Contact has been removed." -msgstr "Ce contact a été retiré." - -#: ../../mod/contacts.php:232 -#, php-format -msgid "You are mutual friends with %s" -msgstr "Vous êtes ami (et réciproquement) avec %s" - -#: ../../mod/contacts.php:236 -#, php-format -msgid "You are sharing with %s" -msgstr "Vous partagez avec %s" - -#: ../../mod/contacts.php:241 -#, php-format -msgid "%s is sharing with you" -msgstr "%s partage avec vous" - -#: ../../mod/contacts.php:258 -msgid "Private communications are not available for this contact." -msgstr "Les communications privées ne sont pas disponibles pour ce contact." - -#: ../../mod/contacts.php:261 -msgid "Never" -msgstr "Jamais" - -#: ../../mod/contacts.php:265 -msgid "(Update was successful)" -msgstr "(Mise à jour effectuée avec succès)" - -#: ../../mod/contacts.php:265 -msgid "(Update was not successful)" -msgstr "(Mise à jour échouée)" - -#: ../../mod/contacts.php:267 -msgid "Suggest friends" -msgstr "Suggérer amitié/contact" - -#: ../../mod/contacts.php:271 -#, php-format -msgid "Network type: %s" -msgstr "Type de réseau %s" - -#: ../../mod/contacts.php:274 -#, php-format -msgid "%d contact in common" -msgid_plural "%d contacts in common" -msgstr[0] "%d contact en commun" -msgstr[1] "%d contacts en commun" - -#: ../../mod/contacts.php:279 -msgid "View all contacts" -msgstr "Voir tous les contacts" - -#: ../../mod/contacts.php:284 ../../mod/contacts.php:331 -#: ../../mod/admin.php:470 -msgid "Unblock" -msgstr "Débloquer" - -#: ../../mod/contacts.php:284 ../../mod/contacts.php:331 -#: ../../mod/admin.php:469 -msgid "Block" -msgstr "Bloquer" - -#: ../../mod/contacts.php:289 ../../mod/contacts.php:332 -msgid "Unignore" -msgstr "Ne plus ignorer" - -#: ../../mod/contacts.php:289 ../../mod/contacts.php:332 -#: ../../mod/notifications.php:47 ../../mod/notifications.php:143 -#: ../../mod/notifications.php:187 -msgid "Ignore" -msgstr "Ignorer" - -#: ../../mod/contacts.php:294 -msgid "Repair" -msgstr "Réparer" - -#: ../../mod/contacts.php:304 -msgid "Contact Editor" -msgstr "Éditeur de contact" - -#: ../../mod/contacts.php:307 -msgid "Profile Visibility" -msgstr "Visibilité du profil" - -#: ../../mod/contacts.php:308 -#, php-format +#: ../../mod/invite.php:118 msgid "" -"Please choose the profile you would like to display to %s when viewing your " -"profile securely." -msgstr "" -"Merci de choisir le profil que vous souhaitez montrer à %s lorsqu'il vous " -"rend visite de manière sécurisée." +"For more information about the Friendica project and why we feel it is " +"important, please visit http://friendica.com" +msgstr "Pour plus d'information sur le projet Friendica, et pourquoi nous croyons qu'il est important, merci de visiter http://friendica.com" -#: ../../mod/contacts.php:309 -msgid "Contact Information / Notes" -msgstr "Informations de contact / Notes" - -#: ../../mod/contacts.php:310 -msgid "Edit contact notes" -msgstr "Editer les notes des contacts" - -#: ../../mod/contacts.php:315 ../../mod/contacts.php:430 -#: ../../mod/viewcontacts.php:61 -#, php-format -msgid "Visit %s's profile [%s]" -msgstr "Visiter le profil de %s [%s]" - -#: ../../mod/contacts.php:316 -msgid "Block/Unblock contact" -msgstr "Bloquer/débloquer ce contact" - -#: ../../mod/contacts.php:317 -msgid "Ignore contact" -msgstr "Ignorer ce contact" - -#: ../../mod/contacts.php:318 -msgid "Repair URL settings" -msgstr "Réparer les réglages d'URL" - -#: ../../mod/contacts.php:319 -msgid "View conversations" -msgstr "Voir les conversations" - -#: ../../mod/contacts.php:321 -msgid "Delete contact" -msgstr "Effacer ce contact" - -#: ../../mod/contacts.php:325 -msgid "Last update:" -msgstr "Dernière mise-à-jour :" - -#: ../../mod/contacts.php:326 -msgid "Update public posts" -msgstr "Met ses entrées publiques à jour: " - -#: ../../mod/contacts.php:328 ../../mod/admin.php:701 -msgid "Update now" -msgstr "Mettre à jour" - -#: ../../mod/contacts.php:335 -msgid "Currently blocked" -msgstr "Actuellement bloqué" - -#: ../../mod/contacts.php:336 -msgid "Currently ignored" -msgstr "Actuellement ignoré" - -#: ../../mod/contacts.php:364 ../../include/nav.php:130 -msgid "Contacts" -msgstr "Contacts" - -#: ../../mod/contacts.php:366 -msgid "Show Blocked Connections" -msgstr "Montrer les connexions bloquées" - -#: ../../mod/contacts.php:366 -msgid "Hide Blocked Connections" -msgstr "Cacher les connexion bloquées" - -#: ../../mod/contacts.php:368 -msgid "Search your contacts" -msgstr "Rechercher dans vos contacts" - -#: ../../mod/contacts.php:369 ../../mod/directory.php:65 -msgid "Finding: " -msgstr "Trouvé: " - -#: ../../mod/contacts.php:370 ../../mod/directory.php:67 -#: ../../include/contact_widgets.php:34 -msgid "Find" -msgstr "Trouver" - -#: ../../mod/contacts.php:406 -msgid "Mutual Friendship" -msgstr "Relation réciproque" - -#: ../../mod/contacts.php:410 -msgid "is a fan of yours" -msgstr "est un fan de vous" - -#: ../../mod/contacts.php:414 -msgid "you are a fan of" -msgstr "vous êtes un fan de" - -#: ../../mod/contacts.php:431 ../../include/Contact.php:129 -#: ../../include/conversation.php:679 -msgid "Edit contact" -msgstr "Éditer le contact" - -#: ../../mod/lockview.php:39 -msgid "Remote privacy information not available." -msgstr "Informations de confidentialité indisponibles." - -#: ../../mod/lockview.php:43 -msgid "Visible to:" -msgstr "Visible par:" - -#: ../../mod/register.php:53 -msgid "An invitation is required." -msgstr "Une invitation est requise." - -#: ../../mod/register.php:58 -msgid "Invitation could not be verified." -msgstr "L'invitation fournie n'a pu être validée." - -#: ../../mod/register.php:66 -msgid "Invalid OpenID url" -msgstr "Adresse OpenID invalide" - -#: ../../mod/register.php:81 -msgid "Please enter the required information." -msgstr "Entrez les informations requises." - -#: ../../mod/register.php:95 -msgid "Please use a shorter name." -msgstr "Utilisez un nom plus court." - -#: ../../mod/register.php:97 -msgid "Name too short." -msgstr "Nom trop court." - -#: ../../mod/register.php:112 -msgid "That doesn't appear to be your full (First Last) name." -msgstr "Ceci ne semble pas être votre nom complet (Prénom Nom)." - -#: ../../mod/register.php:117 -msgid "Your email domain is not among those allowed on this site." -msgstr "Votre domaine de courriel n'est pas autorisé sur ce site." - -#: ../../mod/register.php:120 -msgid "Not a valid email address." -msgstr "Ceci n'est pas une adresse courriel valide." - -#: ../../mod/register.php:130 -msgid "Cannot use that email." -msgstr "Impossible d'utiliser ce courriel." - -#: ../../mod/register.php:136 +#: ../../mod/dfrn_confirm.php:119 msgid "" -"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and " -"must also begin with a letter." -msgstr "" -"Votre \"pseudo\" peut seulement contenir les caractères \"a-z\", \"0-9\", " -"\"-\", and \"_\", et doit commencer par une lettre." +"This may occasionally happen if contact was requested by both persons and it" +" has already been approved." +msgstr "Ceci peut se produire lorsque le contact a été requis par les deux personnes et a déjà été approuvé." -#: ../../mod/register.php:142 ../../mod/register.php:243 -msgid "Nickname is already registered. Please choose another." -msgstr "Pseudo déjà utilisé. Merci d'en choisir un autre." - -#: ../../mod/register.php:161 -msgid "SERIOUS ERROR: Generation of security keys failed." -msgstr "ERREUR SÉRIEUSE: La génération des clés de sécurité a échoué." - -#: ../../mod/register.php:229 -msgid "An error occurred during registration. Please try again." -msgstr "Une erreur est survenue lors de l'inscription. Merci de recommencer." - -#: ../../mod/register.php:265 -msgid "An error occurred creating your default profile. Please try again." -msgstr "" -"Une erreur est survenue lors de la création de votre profil par défaut. " -"Merci de recommencer." - -#: ../../mod/register.php:377 -msgid "" -"Registration successful. Please check your email for further instructions." -msgstr "" -"Inscription réussie. Vérifiez vos emails pour la suite des instructions." - -#: ../../mod/register.php:381 -msgid "Failed to send email message. Here is the message that failed." -msgstr "Impossible d'envoyer un email. Voici le message qui a échoué." - -#: ../../mod/register.php:386 -msgid "Your registration can not be processed." -msgstr "Votre inscription ne peut être traitée." - -#: ../../mod/register.php:423 -#, php-format -msgid "Registration request at %s" -msgstr "Demande d'inscription à %s" - -#: ../../mod/register.php:432 -msgid "Your registration is pending approval by the site owner." -msgstr "Votre inscription attend une validation du propriétaire du site." - -#: ../../mod/register.php:481 -msgid "" -"You may (optionally) fill in this form via OpenID by supplying your OpenID " -"and clicking 'Register'." -msgstr "" -"Vous pouvez (si vous le souhaitez) remplir ce formulaire via OpenID. " -"Fournissez votre OpenID et cliquez \"S'inscrire\"." - -#: ../../mod/register.php:482 -msgid "" -"If you are not familiar with OpenID, please leave that field blank and fill " -"in the rest of the items." -msgstr "" -"Si vous n'êtes pas familier avec OpenID, laissez ce champ vide et remplissez" -" le reste." - -#: ../../mod/register.php:483 -msgid "Your OpenID (optional): " -msgstr "Votre OpenID (facultatif): " - -#: ../../mod/register.php:497 -msgid "Include your profile in member directory?" -msgstr "Inclure votre profil dans l'annuaire des membres?" - -#: ../../mod/register.php:512 -msgid "Membership on this site is by invitation only." -msgstr "L'inscription à ce site se fait uniquement sur invitation." - -#: ../../mod/register.php:513 -msgid "Your invitation ID: " -msgstr "Votre ID d'invitation: " - -#: ../../mod/register.php:516 ../../mod/admin.php:297 -msgid "Registration" -msgstr "Inscription" - -#: ../../mod/register.php:524 -msgid "Your Full Name (e.g. Joe Smith): " -msgstr "Votre nom complet (p.ex. Michel Dupont): " - -#: ../../mod/register.php:525 -msgid "Your Email Address: " -msgstr "Votre adresse courriel: " - -#: ../../mod/register.php:526 -msgid "" -"Choose a profile nickname. This must begin with a text character. Your " -"profile address on this site will then be " -"'nickname@$sitename'." -msgstr "" -"Choisissez un pseudo. Celui devra commencer par une lettre. L'adresse de " -"votre profil en découlera sous la forme " -"'<strong>pseudo@$sitename</strong>'." - -#: ../../mod/register.php:527 -msgid "Choose a nickname: " -msgstr "Choisir un pseudo: " - -#: ../../mod/oexchange.php:27 -msgid "Post successful." -msgstr "Publication réussie." - -#: ../../mod/allfriends.php:34 -#, php-format -msgid "Friends of %s" -msgstr "Amis de %s" - -#: ../../mod/allfriends.php:40 -msgid "No friends to display." -msgstr "Pas d'amis à afficher." - -#: ../../mod/help.php:30 -msgid "Help:" -msgstr "Aide:" - -#: ../../mod/help.php:34 ../../include/nav.php:82 -msgid "Help" -msgstr "Aide" - -#: ../../mod/install.php:34 -msgid "Could not create/connect to database." -msgstr "Impossible de créer/atteindre la base de données." - -#: ../../mod/install.php:39 -msgid "Connected to database." -msgstr "Connecté à la base de données." - -#: ../../mod/install.php:75 -msgid "Proceed with Installation" -msgstr "Commencer l'installation" - -#: ../../mod/install.php:77 -msgid "Your Friendika site database has been installed." -msgstr "La base de données de votre site Friendika a été installée." - -#: ../../mod/install.php:78 -msgid "" -"IMPORTANT: You will need to [manually] setup a scheduled task for the " -"poller." -msgstr "" -"IMPORTANT: Vous devez configurer [manuellement] une tâche programmée pour le" -" 'poller'." - -#: ../../mod/install.php:79 ../../mod/install.php:89 ../../mod/install.php:207 -msgid "Please see the file \"INSTALL.txt\"." -msgstr "Référez-vous au fichier \"INSTALL.txt\"." - -#: ../../mod/install.php:81 -msgid "Proceed to registration" -msgstr "Commencer l'inscription" - -#: ../../mod/install.php:87 -msgid "Database import failed." -msgstr "Import de base échoué." - -#: ../../mod/install.php:88 -msgid "" -"You may need to import the file \"database.sql\" manually using phpmyadmin " -"or mysql." -msgstr "" -"Vous pourriez avoir besoin d'importer le fichier \"database.sql\" " -"manuellement au moyen de phpmyadmin ou de la commande mysql." - -#: ../../mod/install.php:101 -msgid "Welcome to Friendika." -msgstr "Bienvenue sur Friendika." - -#: ../../mod/install.php:124 -msgid "Friendika Social Network" -msgstr "Réseau social Friendika" - -#: ../../mod/install.php:125 -msgid "Installation" -msgstr "Installation" - -#: ../../mod/install.php:126 -msgid "" -"In order to install Friendika we need to know how to connect to your " -"database." -msgstr "" -"Pour installer Friendika, nous avons besoin de contacter votre base de " -"données." - -#: ../../mod/install.php:127 -msgid "" -"Please contact your hosting provider or site administrator if you have " -"questions about these settings." -msgstr "" -"Merci de vous tourner vers votre hébergeur et/ou administrateur pour toute " -"question concernant ces réglages." - -#: ../../mod/install.php:128 -msgid "" -"The database you specify below should already exist. If it does not, please " -"create it before continuing." -msgstr "" -"La base de données que vous spécifierez doit exister. Si ce n'est pas encore" -" le cas, merci de la créer avant de continuer." - -#: ../../mod/install.php:129 -msgid "Database Server Name" -msgstr "Serveur de base de données" - -#: ../../mod/install.php:130 -msgid "Database Login Name" -msgstr "Nom d'utilisateur de la base" - -#: ../../mod/install.php:131 -msgid "Database Login Password" -msgstr "Mot de passe de la base" - -#: ../../mod/install.php:132 -msgid "Database Name" -msgstr "Nom de la base" - -#: ../../mod/install.php:133 -msgid "Please select a default timezone for your website" -msgstr "Sélectionner un fuseau horaire par défaut pour votre site" - -#: ../../mod/install.php:134 -msgid "" -"Site administrator email address. Your account email address must match this" -" in order to use the web admin panel." -msgstr "" -"Adresse courriel de l'administrateur du site. L'adresse courriel de votre " -"compte doit correspondre si vous voulez utiliser l'administration web." - -#: ../../mod/install.php:153 -msgid "Could not find a command line version of PHP in the web server PATH." -msgstr "" -"Impossible de trouver la version \"ligne de commande\" de PHP dans le PATH " -"du serveur web." - -#: ../../mod/install.php:154 -msgid "" -"This is required. Please adjust the configuration file .htconfig.php " -"accordingly." -msgstr "" -"Ceci est requis. Merci d'ajuster la configuration dans le fichier " -".htconfig.php en conséquence." - -#: ../../mod/install.php:161 -msgid "" -"The command line version of PHP on your system does not have " -"\"register_argc_argv\" enabled." -msgstr "" -"La version \"ligne de commande\" de PHP de votre système n'a pas " -"\"register_argc_argv\" d'activé." - -#: ../../mod/install.php:162 -msgid "This is required for message delivery to work." -msgstr "Ceci est requis pour que la livraison des messages fonctionne." - -#: ../../mod/install.php:184 -msgid "" -"Error: the \"openssl_pkey_new\" function on this system is not able to " -"generate encryption keys" -msgstr "" -"Erreur: la fonction \"openssl_pkey_new\" de ce système ne permet pas de " -"générer des clés de chiffrement" - -#: ../../mod/install.php:185 -msgid "" -"If running under Windows, please see " -"\"http://www.php.net/manual/en/openssl.installation.php\"." -msgstr "" -"Si vous utilisez Windows, merci de vous réferer à " -"\"http://www.php.net/manual/en/openssl.installation.php\"." - -#: ../../mod/install.php:194 -msgid "" -"Error: Apache webserver mod-rewrite module is required but not installed." -msgstr "" -"Erreur: Le module \"rewrite\" du serveur web Apache est requis mais pas " -"installé." - -#: ../../mod/install.php:196 -msgid "Error: libCURL PHP module required but not installed." -msgstr "Erreur: Le module PHP \"libCURL\" est requis mais pas installé." - -#: ../../mod/install.php:198 -msgid "" -"Error: GD graphics PHP module with JPEG support required but not installed." -msgstr "" -"Erreur: Le module PHP \"GD\" disposant du support JPEG est requis mais pas " -"installé." - -#: ../../mod/install.php:200 -msgid "Error: openssl PHP module required but not installed." -msgstr "Erreur: Le module PHP \"openssl\" est requis mais pas installé." - -#: ../../mod/install.php:202 -msgid "Error: mysqli PHP module required but not installed." -msgstr "Erreur: Le module PHP \"mysqli\" est requis mais pas installé." - -#: ../../mod/install.php:204 -msgid "Error: mb_string PHP module required but not installed." -msgstr "Erreur: le module PHP mb_string est requis mais pas installé." - -#: ../../mod/install.php:216 -msgid "" -"The web installer needs to be able to create a file called \".htconfig.php\"" -" in the top folder of your web server and it is unable to do so." -msgstr "" -"L'installeur web doit être en mesure de créer un fichier \".htconfig.php\" à" -" la racine de votre serveur web, mais il en est incapable." - -#: ../../mod/install.php:217 -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 "" -"Le plus souvent, il s'agit d'un problème de permission. Le serveur web peut " -"ne pas être capable d'écrire dans votre répertoire - alors que vous-même le " -"pouvez." - -#: ../../mod/install.php:218 -msgid "" -"Please check with your site documentation or support people to see if this " -"situation can be corrected." -msgstr "" -"Merci de vérifier - avec la documentation ou le support de votre hébergement" -" - que la situation peut être corrigée." - -#: ../../mod/install.php:219 -msgid "" -"If not, you may be required to perform a manual installation. Please see the" -" file \"INSTALL.txt\" for instructions." -msgstr "" -"Dans le cas contraire, vous pouvez pratiquer une installation manuelle. " -"Référez-vous au fichier \"INSTALL.txt\" pour les instructions." - -#: ../../mod/install.php:228 -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 "" -"Le fichier de configuration de la base (\".htconfig.php\") ne peut être " -"créé. Merci d'utiliser le texte ci-joint pour créer ce fichier à la racine " -"de votre hébergement." - -#: ../../mod/install.php:243 -msgid "Errors encountered creating database tables." -msgstr "Des erreurs ont été signalées lors de la création des tables." - -#: ../../mod/network.php:148 -msgid "Commented Order" -msgstr "Dans l'ordre des commentaires" - -#: ../../mod/network.php:153 -msgid "Posted Order" -msgstr "Dans l'ordre des notices" - -#: ../../mod/network.php:159 -msgid "New" -msgstr "Nouveau" - -#: ../../mod/network.php:164 -msgid "Starred" -msgstr "Mis en avant" - -#: ../../mod/network.php:169 -msgid "Bookmarks" -msgstr "Marqué" - -#: ../../mod/network.php:216 -#, 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] "Attention: Ce groupe contient %s membre d'un réseau non-sûr." -msgstr[1] "Attention: Ce groupe contient %s membres d'un réseau non-sûr." - -#: ../../mod/network.php:219 -msgid "Private messages to this group are at risk of public disclosure." -msgstr "" -"Les messages privés envoyés à ce groupe s'exposent à une diffusion " -"incontrôlée." - -#: ../../mod/network.php:292 -msgid "No such group" -msgstr "Groupe inexistant" - -#: ../../mod/network.php:303 -msgid "Group is empty" -msgstr "Groupe vide" - -#: ../../mod/network.php:308 -msgid "Group: " -msgstr "Groupe: " - -#: ../../mod/network.php:318 -msgid "Contact: " -msgstr "Contact: " - -#: ../../mod/network.php:320 -msgid "Private messages to this person are at risk of public disclosure." -msgstr "" -"Les messages privés envoyés à ce contact s'exposent à une diffusion " -"incontrôlée." - -#: ../../mod/network.php:325 -msgid "Invalid contact." -msgstr "Contact invalide." - -#: ../../mod/profperm.php:25 ../../mod/profperm.php:55 -msgid "Invalid profile identifier." -msgstr "Identifiant de profil invalide." - -#: ../../mod/profperm.php:101 -msgid "Profile Visibility Editor" -msgstr "Éditer la visibilité du profil" - -#: ../../mod/profperm.php:105 ../../mod/group.php:164 -msgid "Click on a contact to add or remove." -msgstr "Cliquez sur un contact pour l'ajouter ou le supprimer." - -#: ../../mod/profperm.php:114 -msgid "Visible To" -msgstr "Visible par" - -#: ../../mod/profperm.php:130 -msgid "All Contacts (with secure profile access)" -msgstr "Tous les contacts (ayant un accès sécurisé)" - -#: ../../mod/events.php:61 -msgid "Event description and start time are required." -msgstr "Une description et une heure de début sont requises." - -#: ../../mod/events.php:207 -msgid "Create New Event" -msgstr "Créer un nouvel événement" - -#: ../../mod/events.php:210 -msgid "Previous" -msgstr "Précédent" - -#: ../../mod/events.php:213 -msgid "Next" -msgstr "Suivant" - -#: ../../mod/events.php:220 -msgid "l, F j" -msgstr "l, F j" - -#: ../../mod/events.php:232 -msgid "Edit event" -msgstr "Editer l'événement" - -#: ../../mod/events.php:234 ../../include/text.php:857 -msgid "link to source" -msgstr "lien original" - -#: ../../mod/events.php:302 -msgid "hour:minute" -msgstr "heures:minutes" - -#: ../../mod/events.php:311 -msgid "Event details" -msgstr "Détails de l'événement" - -#: ../../mod/events.php:312 -#, php-format -msgid "Format is %s %s. Starting date and Description are required." -msgstr "" -"Le format est %s %s. Une date de début et une description sont requises." - -#: ../../mod/events.php:313 -msgid "Event Starts:" -msgstr "Début de l'événement:" - -#: ../../mod/events.php:316 -msgid "Finish date/time is not known or not relevant" -msgstr "Date/heure de fin inconnue ou sans objet" - -#: ../../mod/events.php:318 -msgid "Event Finishes:" -msgstr "Fin de l'événement:" - -#: ../../mod/events.php:321 -msgid "Adjust for viewer timezone" -msgstr "Ajuster à la zone horaire du visiteur" - -#: ../../mod/events.php:323 -msgid "Description:" -msgstr "Description:" - -#: ../../mod/events.php:327 -msgid "Share this event" -msgstr "Partager cet événement" - -#: ../../mod/notifications.php:26 -msgid "Invalid request identifier." -msgstr "Identifiant de demande invalide." - -#: ../../mod/notifications.php:35 ../../mod/notifications.php:144 -#: ../../mod/notifications.php:188 -msgid "Discard" -msgstr "Défausser" - -#: ../../mod/notifications.php:71 ../../include/nav.php:109 -msgid "Network" -msgstr "Réseau" - -#: ../../mod/notifications.php:76 ../../include/nav.php:73 -#: ../../include/nav.php:111 -msgid "Home" -msgstr "Accueil" - -#: ../../mod/notifications.php:81 ../../include/nav.php:117 -msgid "Introductions" -msgstr "Introductions" - -#: ../../mod/notifications.php:86 ../../mod/message.php:72 -#: ../../include/nav.php:122 -msgid "Messages" -msgstr "Messages" - -#: ../../mod/notifications.php:105 -msgid "Show Ignored Requests" -msgstr "Voir les demandes ignorées" - -#: ../../mod/notifications.php:105 -msgid "Hide Ignored Requests" -msgstr "Cacher les demandes ignorées" - -#: ../../mod/notifications.php:131 ../../mod/notifications.php:174 -msgid "Notification type: " -msgstr "Type de notification: " - -#: ../../mod/notifications.php:132 -msgid "Friend Suggestion" -msgstr "Suggestion d'amitié/contact" - -#: ../../mod/notifications.php:134 -#, php-format -msgid "suggested by %s" -msgstr "suggéré(e) par %s" - -#: ../../mod/notifications.php:140 ../../mod/notifications.php:185 -#: ../../mod/admin.php:466 -msgid "Approve" -msgstr "Approuver" - -#: ../../mod/notifications.php:160 -msgid "Claims to be known to you: " -msgstr "Prétend que vous le connaissez: " - -#: ../../mod/notifications.php:160 -msgid "yes" -msgstr "oui" - -#: ../../mod/notifications.php:160 -msgid "no" -msgstr "non" - -#: ../../mod/notifications.php:167 -msgid "Approve as: " -msgstr "Approuver en tant que: " - -#: ../../mod/notifications.php:168 -msgid "Friend" -msgstr "Ami" - -#: ../../mod/notifications.php:169 -msgid "Sharer" -msgstr "Initiateur du partage" - -#: ../../mod/notifications.php:169 -msgid "Fan/Admirer" -msgstr "Fan/Admirateur" - -#: ../../mod/notifications.php:175 -msgid "Friend/Connect Request" -msgstr "Demande de connexion/relation" - -#: ../../mod/notifications.php:175 -msgid "New Follower" -msgstr "Nouvel abonné" - -#: ../../mod/notifications.php:194 -msgid "No notifications." -msgstr "Pas de notification." - -#: ../../mod/notifications.php:197 ../../mod/notifications.php:283 -#: ../../mod/notifications.php:359 ../../include/nav.php:118 -msgid "Notifications" -msgstr "Notifications" - -#: ../../mod/notifications.php:234 ../../mod/notifications.php:316 -#, php-format -msgid "%s liked %s's post" -msgstr "%s a aimé la notice de %s" - -#: ../../mod/notifications.php:243 ../../mod/notifications.php:325 -#, php-format -msgid "%s disliked %s's post" -msgstr "%s n'a pas aimé la notice de %s" - -#: ../../mod/notifications.php:257 ../../mod/notifications.php:339 -#, php-format -msgid "%s is now friends with %s" -msgstr "%s est désormais ami(e) avec %s" - -#: ../../mod/notifications.php:264 -#, php-format -msgid "%s created a new post" -msgstr "%s a publié une notice" - -#: ../../mod/notifications.php:265 ../../mod/notifications.php:348 -#, php-format -msgid "%s commented on %s's post" -msgstr "%s a commenté une notice de %s" - -#: ../../mod/notifications.php:279 ../../mod/notifications.php:355 -msgid "Nothing new!" -msgstr "Rien de neuf!" - -#: ../../mod/crepair.php:100 -msgid "Contact settings applied." -msgstr "Réglages du contact appliqués." - -#: ../../mod/crepair.php:102 -msgid "Contact update failed." -msgstr "Impossible d'appliquer les réglages." - -#: ../../mod/crepair.php:127 ../../mod/fsuggest.php:20 -#: ../../mod/fsuggest.php:92 ../../mod/dfrn_confirm.php:114 -msgid "Contact not found." -msgstr "Contact introuvable." - -#: ../../mod/crepair.php:133 -msgid "Repair Contact Settings" -msgstr "Réglages du réparateur de contacts" - -#: ../../mod/crepair.php:135 -msgid "" -"WARNING: This is highly advanced and if you enter incorrect" -" information your communications with this contact may stop working." -msgstr "" -"ATTENTION: Manipulation réservée aux experts, toute " -"information incorrecte pourrait empêcher la communication avec ce contact." - -#: ../../mod/crepair.php:136 -msgid "" -"Please use your browser 'Back' button now if you are " -"uncertain what to do on this page." -msgstr "une photo" - -#: ../../mod/crepair.php:145 -msgid "Account Nickname" -msgstr "Pseudo du compte" - -#: ../../mod/crepair.php:146 -msgid "@Tagname - overrides Name/Nickname" -msgstr "@NomDuTag - prend le pas sur Nom/Pseudo" - -#: ../../mod/crepair.php:147 -msgid "Account URL" -msgstr "URL du compte" - -#: ../../mod/crepair.php:148 -msgid "Friend Request URL" -msgstr "Echec du téléversement de l'image." - -#: ../../mod/crepair.php:149 -msgid "Friend Confirm URL" -msgstr "Accès public refusé." - -#: ../../mod/crepair.php:150 -msgid "Notification Endpoint URL" -msgstr "Aucune photo sélectionnée" - -#: ../../mod/crepair.php:151 -msgid "Poll/Feed URL" -msgstr "Téléverser des photos" - -#: ../../mod/crepair.php:152 -msgid "New photo from this URL" -msgstr "Nouvelle photo depuis cette URL" - -#: ../../mod/dfrn_request.php:92 -msgid "This introduction has already been accepted." -msgstr "Cette introduction a déjà été acceptée." - -#: ../../mod/dfrn_request.php:116 ../../mod/dfrn_request.php:351 -msgid "Profile location is not valid or does not contain profile information." -msgstr "" -"L'emplacement du profil est invalide ou ne contient pas de profil valide." - -#: ../../mod/dfrn_request.php:121 ../../mod/dfrn_request.php:356 -msgid "Warning: profile location has no identifiable owner name." -msgstr "Attention: l'emplacement du profil n'a pas de nom identifiable." - -#: ../../mod/dfrn_request.php:123 ../../mod/dfrn_request.php:358 -msgid "Warning: profile location has no profile photo." -msgstr "Attention: l'emplacement du profil n'a pas de photo de profil." - -#: ../../mod/dfrn_request.php:126 ../../mod/dfrn_request.php:361 -#, 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 paramètre requis n'a pas été trouvé à l'endroit indiqué" -msgstr[1] "%d paramètres requis n'ont pas été trouvés à l'endroit indiqué" - -#: ../../mod/dfrn_request.php:167 -msgid "Introduction complete." -msgstr "Phase de présentation achevée." - -#: ../../mod/dfrn_request.php:191 -msgid "Unrecoverable protocol error." -msgstr "Erreur de protocole non-récupérable." - -#: ../../mod/dfrn_request.php:219 -msgid "Profile unavailable." -msgstr "Profil indisponible." - -#: ../../mod/dfrn_request.php:244 -#, php-format -msgid "%s has received too many connection requests today." -msgstr "%s a reçu trop de demande d'introduction aujourd'hui." - -#: ../../mod/dfrn_request.php:245 -msgid "Spam protection measures have been invoked." -msgstr "Des mesures de protection contre le spam ont été déclenchées." - -#: ../../mod/dfrn_request.php:246 -msgid "Friends are advised to please try again in 24 hours." -msgstr "Les relations sont encouragées à attendre 24 heures pour recommencer." - -#: ../../mod/dfrn_request.php:276 -msgid "Invalid locator" -msgstr "Localisateur invalide" - -#: ../../mod/dfrn_request.php:296 -msgid "Unable to resolve your name at the provided location." -msgstr "Impossible de résoudre votre nom à l'emplacement fourni." - -#: ../../mod/dfrn_request.php:309 -msgid "You have already introduced yourself here." -msgstr "Vous vous êtes déjà présenté ici." - -#: ../../mod/dfrn_request.php:313 -#, php-format -msgid "Apparently you are already friends with %s." -msgstr "Il semblerait que vous soyez déjà ami avec %s." - -#: ../../mod/dfrn_request.php:334 -msgid "Invalid profile URL." -msgstr "URL de profil invalide." - -#: ../../mod/dfrn_request.php:430 -msgid "Your introduction has been sent." -msgstr "Votre présentation a été envoyée." - -#: ../../mod/dfrn_request.php:483 -msgid "Please login to confirm introduction." -msgstr "Connectez-vous pour confirmer l'introduction." - -#: ../../mod/dfrn_request.php:497 -msgid "" -"Incorrect identity currently logged in. Please login to " -"this profile." -msgstr "" -"Identité incorrecte actuellement connectée. Merci de vous connecter à " -"ce profil." - -#: ../../mod/dfrn_request.php:509 -#, php-format -msgid "Welcome home %s." -msgstr "Bienvenue chez vous, %s." - -#: ../../mod/dfrn_request.php:510 -#, php-format -msgid "Please confirm your introduction/connection request to %s." -msgstr "Merci de confirmer votre demande d'introduction auprès de %s." - -#: ../../mod/dfrn_request.php:511 -msgid "Confirm" -msgstr "Confirmer" - -#: ../../mod/dfrn_request.php:544 ../../include/items.php:2431 -msgid "[Name Withheld]" -msgstr "[Nom non-publié]" - -#: ../../mod/dfrn_request.php:551 -msgid "Introduction received at " -msgstr "Introduction reçue sur " - -#: ../../mod/dfrn_request.php:635 -#, php-format -msgid "" -"Diaspora members: Please do not use this form. Instead, enter \"%s\" into " -"your Diaspora search bar." -msgstr "" -"Membres de Diaspora : N'utilisez pas ce formulaire. Entrez plutôt \"%s\" " -"dans votre barre de recherche Diaspora." - -#: ../../mod/dfrn_request.php:638 -msgid "" -"Please enter your 'Identity Address' from one of the following supported " -"social networks:" -msgstr "" -"Saisissez votre \"Adresse d'identité\" de l'un des réseaux sociaux suivants:" - -#: ../../mod/dfrn_request.php:641 -msgid "Friend/Connection Request" -msgstr "Requête de relation/amitié" - -#: ../../mod/dfrn_request.php:642 -msgid "" -"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, " -"testuser@identi.ca" -msgstr "" -"Exemples : jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, " -"testuser@identi.ca" - -#: ../../mod/dfrn_request.php:643 -msgid "Please answer the following:" -msgstr "Merci de répondre à ce qui suit:" - -#: ../../mod/dfrn_request.php:644 -#, php-format -msgid "Does %s know you?" -msgstr "Est-ce que %s vous connaît?" - -#: ../../mod/dfrn_request.php:647 -msgid "Add a personal note:" -msgstr "Ajouter une note personnelle:" - -#: ../../mod/dfrn_request.php:649 ../../include/contact_selectors.php:78 -msgid "Friendica" -msgstr "Friendica" - -#: ../../mod/dfrn_request.php:650 -msgid "StatusNet/Federated Social Web" -msgstr "StatusNet/Federated Social Web" - -#: ../../mod/dfrn_request.php:652 -msgid "- please share from your own site as noted above" -msgstr "- partagez depuis votre propre site comme indiqué ci-dessus" - -#: ../../mod/dfrn_request.php:653 -msgid "Your Identity Address:" -msgstr "Votre adresse d'identité:" - -#: ../../mod/dfrn_request.php:654 -msgid "Submit Request" -msgstr "Envoyer la requête" - -#: ../../mod/api.php:76 ../../mod/api.php:102 -msgid "Authorize application connection" -msgstr "Autoriser l'application à se connecter" - -#: ../../mod/api.php:77 -msgid "Return to your app and insert this Securty Code:" -msgstr "Retournez à votre application et saisissez ce Code de Sécurité : " - -#: ../../mod/api.php:89 -msgid "Please login to continue." -msgstr "Merci de vous connecter pour continuer." - -#: ../../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 "" -"Voulez-vous autoriser cette application à accéder à vos notices et contacts," -" et/ou à créer des notices à votre place?" - -#: ../../mod/tagger.php:70 ../../mod/like.php:127 -#: ../../addon/facebook/facebook.php:1024 -#: ../../addon/communityhome/communityhome.php:158 -#: ../../addon/communityhome/communityhome.php:167 -#: ../../include/conversation.php:26 ../../include/conversation.php:35 -#: ../../include/diaspora.php:1211 -msgid "status" -msgstr "le statut" - -#: ../../mod/tagger.php:103 -#, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" -msgstr "%1$s a taggué %3$s de %2$s avec %4$s" - -#: ../../mod/like.php:144 ../../addon/facebook/facebook.php:1028 -#: ../../addon/communityhome/communityhome.php:172 -#: ../../include/conversation.php:43 ../../include/diaspora.php:1227 -#, php-format -msgid "%1$s likes %2$s's %3$s" -msgstr "%1$s aime %3$s de %2$s" - -#: ../../mod/like.php:146 ../../include/conversation.php:46 -#, php-format -msgid "%1$s doesn't like %2$s's %3$s" -msgstr "%1$s n'aime pas %3$s de %2$s" - -#: ../../mod/lostpass.php:16 -msgid "No valid account found." -msgstr "Impossible de trouver un compte valide." - -#: ../../mod/lostpass.php:31 -msgid "Password reset request issued. Check your email." -msgstr "Réinitialisation du mot de passe en cours. Vérifiez votre courriel." - -#: ../../mod/lostpass.php:42 -#, php-format -msgid "Password reset requested at %s" -msgstr "Requête de réinitialisation de mot de passe à %s" - -#: ../../mod/lostpass.php:64 -msgid "" -"Request could not be verified. (You may have previously submitted it.) " -"Password reset failed." -msgstr "" -"Impossible d'honorer cette demande. (Vous l'avez peut-être déjà utilisée par" -" le passé.) La réinitialisation a échoué." - -#: ../../mod/lostpass.php:83 -msgid "Your password has been reset as requested." -msgstr "Votre mot de passe a bien été réinitialisé." - -#: ../../mod/lostpass.php:84 -msgid "Your new password is" -msgstr "Votre nouveau mot de passe est " - -#: ../../mod/lostpass.php:85 -msgid "Save or copy your new password - and then" -msgstr "Sauvez ou copiez ce nouveau mot de passe - puis" - -#: ../../mod/lostpass.php:86 -msgid "click here to login" -msgstr "cliquez ici pour vous connecter" - -#: ../../mod/lostpass.php:87 -msgid "" -"Your password may be changed from the Settings page after " -"successful login." -msgstr "" -"Votre mot de passe peut être changé depuis la page " -"<em>Réglages</em>, une fois que vous serez connecté." - -#: ../../mod/lostpass.php:118 -msgid "Forgot your Password?" -msgstr "Mot de passe oublié?" - -#: ../../mod/lostpass.php:119 -msgid "" -"Enter your email address and submit to have your password reset. Then check " -"your email for further instructions." -msgstr "" -"Entrez votre adresse de courriel et validez pour réinitialiser votre mot de " -"passe. Vous recevrez la suite des instructions par courriel." - -#: ../../mod/lostpass.php:120 -msgid "Nickname or Email: " -msgstr "Pseudo ou Courriel: " - -#: ../../mod/lostpass.php:121 -msgid "Reset" -msgstr "Réinitialiser" - -#: ../../mod/friendica.php:43 -msgid "This is Friendica, version" -msgstr "Motorisé par Friendica version" - -#: ../../mod/friendica.php:44 -msgid "running at web location" -msgstr "hébergé sur" - -#: ../../mod/friendica.php:46 -msgid "" -"Please visit Project.Friendika.com to learn " -"more about the Friendica project." -msgstr "" -"Pour en savoir plus, vous pouvez nous rendre visite sur <a " -"href=\"http://project.friendica.com\">Project.Friendica.com</a>" - -#: ../../mod/friendica.php:48 -msgid "Bug reports and issues: please visit" -msgstr "Pour les rapports de bugs: rendez vous sur" - -#: ../../mod/friendica.php:49 -msgid "" -"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - " -"dot com" -msgstr "" -"Suggestions, remerciements, donations, etc. - écrivez à \"Info\" arob. " -"Friendica - point com" - -#: ../../mod/friendica.php:54 -msgid "Installed plugins/addons/apps" -msgstr "Extensions/greffons/applications installées" - -#: ../../mod/friendica.php:62 -msgid "No installed plugins/addons/apps" -msgstr "Aucune extension/greffon/application installée" - -#: ../../mod/removeme.php:42 ../../mod/removeme.php:45 -msgid "Remove My Account" -msgstr "Supprimer mon compte" - -#: ../../mod/removeme.php:43 -msgid "" -"This will completely remove your account. Once this has been done it is not " -"recoverable." -msgstr "" -"Ceci supprimera totalement votre compte. Cette opération est irréversible." - -#: ../../mod/removeme.php:44 -msgid "Please enter your password for verification:" -msgstr "Merci de saisir votre mot de passe pour vérification:" - -#: ../../mod/apps.php:4 -msgid "Applications" -msgstr "Applications" - -#: ../../mod/apps.php:7 -msgid "No installed applications." -msgstr "Pas d'application installée." - -#: ../../mod/notes.php:63 ../../include/text.php:628 -msgid "Save" -msgstr "Sauver" - -#: ../../mod/fsuggest.php:63 -msgid "Friend suggestion sent." -msgstr "Suggestion d'amitié/contact envoyée." - -#: ../../mod/fsuggest.php:97 -msgid "Suggest Friends" -msgstr "Suggérer des amis/contacts" - -#: ../../mod/fsuggest.php:99 -#, php-format -msgid "Suggest a friend for %s" -msgstr "Suggérer un ami/contact pour %s" - -#: ../../mod/viewsrc.php:7 -msgid "Access denied." -msgstr "Accès refusé." - -#: ../../mod/directory.php:49 -msgid "Global Directory" -msgstr "Annuaire global" - -#: ../../mod/directory.php:55 -msgid "Normal site view" -msgstr "Vue normale" - -#: ../../mod/directory.php:57 -msgid "Admin - View all site entries" -msgstr "Admin - voir toutes les entrées" - -#: ../../mod/directory.php:63 -msgid "Find on this site" -msgstr "Trouver sur ce site" - -#: ../../mod/directory.php:66 -msgid "Site Directory" -msgstr "Annuaire local" - -#: ../../mod/directory.php:125 -msgid "Gender: " -msgstr "Genre: " - -#: ../../mod/directory.php:151 -msgid "No entries (some entries may be hidden)." -msgstr "Aucune entrée (certaines peuvent être cachées)." - -#: ../../mod/admin.php:59 ../../mod/admin.php:295 -msgid "Site" -msgstr "Site" - -#: ../../mod/admin.php:60 ../../mod/admin.php:460 ../../mod/admin.php:472 -msgid "Users" -msgstr "Utilisateurs" - -#: ../../mod/admin.php:61 ../../mod/admin.php:549 ../../mod/admin.php:586 -msgid "Plugins" -msgstr "Extensions" - -#: ../../mod/admin.php:76 ../../mod/admin.php:651 -msgid "Logs" -msgstr "Journaux" - -#: ../../mod/admin.php:81 -msgid "User registrations waiting for confirmation" -msgstr "Inscriptions en attente de confirmation" - -#: ../../mod/admin.php:144 ../../mod/admin.php:294 ../../mod/admin.php:459 -#: ../../mod/admin.php:548 ../../mod/admin.php:585 ../../mod/admin.php:650 -msgid "Administration" -msgstr "Administration" - -#: ../../mod/admin.php:145 -msgid "Summary" -msgstr "Résumé" - -#: ../../mod/admin.php:146 -msgid "Registered users" -msgstr "Utilisateurs inscrits" - -#: ../../mod/admin.php:148 -msgid "Pending registrations" -msgstr "Inscriptions en attente" - -#: ../../mod/admin.php:149 -msgid "Version" -msgstr "Versio" - -#: ../../mod/admin.php:151 -msgid "Active plugins" -msgstr "Extensions activés" - -#: ../../mod/admin.php:243 -msgid "Site settings updated." -msgstr "Réglages du site mis-à-jour." - -#: ../../mod/admin.php:287 -msgid "Closed" -msgstr "Fermé" - -#: ../../mod/admin.php:288 -msgid "Requires approval" -msgstr "Demande une apptrobation" - -#: ../../mod/admin.php:289 -msgid "Open" -msgstr "Ouvert" - -#: ../../mod/admin.php:298 -msgid "File upload" -msgstr "Téléversement de fichier" - -#: ../../mod/admin.php:299 -msgid "Policies" -msgstr "Politiques" - -#: ../../mod/admin.php:300 -msgid "Advanced" -msgstr "Avancé" - -#: ../../mod/admin.php:304 ../../addon/statusnet/statusnet.php:477 -msgid "Site name" -msgstr "Nom du site" - -#: ../../mod/admin.php:305 -msgid "Banner/Logo" -msgstr "Bannière/Logo" - -#: ../../mod/admin.php:306 -msgid "System language" -msgstr "Langue du système" - -#: ../../mod/admin.php:307 -msgid "System theme" -msgstr "Thème du système" - -#: ../../mod/admin.php:309 -msgid "Maximum image size" -msgstr "Taille maximale des images" - -#: ../../mod/admin.php:311 -msgid "Register policy" -msgstr "Politique d'inscription" - -#: ../../mod/admin.php:312 -msgid "Register text" -msgstr "Texte d'inscription" - -#: ../../mod/admin.php:313 -msgid "Accounts abandoned after x days" -msgstr "Les comptes sont abandonnés après x jours" - -#: ../../mod/admin.php:313 -msgid "" -"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 " -"sites distants pour les comptes abandonnés. Mettre 0 pour désactiver cette " -"fonction." - -#: ../../mod/admin.php:314 -msgid "Allowed friend domains" -msgstr "Domaines autorisés" - -#: ../../mod/admin.php:315 -msgid "Allowed email domains" -msgstr "Domaines courriel autorisés" - -#: ../../mod/admin.php:316 -msgid "Block public" -msgstr "Interdire la publication globale" - -#: ../../mod/admin.php:317 -msgid "Force publish" -msgstr "Forcer la publication globale" - -#: ../../mod/admin.php:318 -msgid "Global directory update URL" -msgstr "URL de mise-à-jour de l'annuaire global" - -#: ../../mod/admin.php:320 -msgid "Block multiple registrations" -msgstr "Interdire les inscriptions multiples" - -#: ../../mod/admin.php:321 -msgid "OpenID support" -msgstr "Support OpenID" - -#: ../../mod/admin.php:322 -msgid "Gravatar support" -msgstr "Support Gravatar" - -#: ../../mod/admin.php:323 -msgid "Fullname check" -msgstr "Vérification du \"Prénom Nom\"" - -#: ../../mod/admin.php:324 -msgid "UTF-8 Regular expressions" -msgstr "Regex UTF-8" - -#: ../../mod/admin.php:325 -msgid "Show Community Page" -msgstr "Montrer la \"Place publique\"" - -#: ../../mod/admin.php:326 -msgid "Enable OStatus support" -msgstr "Activer le support d'OStatus" - -#: ../../mod/admin.php:327 -msgid "Enable Diaspora support" -msgstr "Activer le support de Diaspora" - -#: ../../mod/admin.php:328 -msgid "Only allow Friendika contacts" -msgstr "N'autoriser que les contacts Friendica" - -#: ../../mod/admin.php:329 -msgid "Verify SSL" -msgstr "Vérifier SSL" - -#: ../../mod/admin.php:330 -msgid "Proxy user" -msgstr "Utilisateur du proxy" - -#: ../../mod/admin.php:331 -msgid "Proxy URL" -msgstr "URL du proxy" - -#: ../../mod/admin.php:332 -msgid "Network timeout" -msgstr "Dépassement du délai d'attente du réseau" - -#: ../../mod/admin.php:353 -#, php-format -msgid "%s user blocked" -msgid_plural "%s users blocked/unblocked" -msgstr[0] "%s utilisateur bloqué" -msgstr[1] "%s utilisateurs (dé)bloqués" - -#: ../../mod/admin.php:360 -#, php-format -msgid "%s user deleted" -msgid_plural "%s users deleted" -msgstr[0] "%s utilisateur supprimé" -msgstr[1] "%s utilisateurs supprimés" - -#: ../../mod/admin.php:394 -#, php-format -msgid "User '%s' deleted" -msgstr "Utilisateur '%s' supprimé" - -#: ../../mod/admin.php:401 -#, php-format -msgid "User '%s' unblocked" -msgstr "Utilisateur '%s' débloqué" - -#: ../../mod/admin.php:401 -#, php-format -msgid "User '%s' blocked" -msgstr "Utilisateur '%s' bloqué" - -#: ../../mod/admin.php:462 -msgid "select all" -msgstr "tout sélectionner" - -#: ../../mod/admin.php:463 -msgid "User registrations waiting for confirm" -msgstr "Inscriptions d'utilisateurs en attente de confirmation" - -#: ../../mod/admin.php:464 -msgid "Request date" -msgstr "Date de la demande" - -#: ../../mod/admin.php:464 ../../mod/admin.php:473 -#: ../../include/contact_selectors.php:78 -msgid "Email" -msgstr "Courriel" - -#: ../../mod/admin.php:465 -msgid "No registrations." -msgstr "Pas d'inscriptions." - -#: ../../mod/admin.php:467 -msgid "Deny" -msgstr "Rejetter" - -#: ../../mod/admin.php:473 -msgid "Register date" -msgstr "Date d'inscription" - -#: ../../mod/admin.php:473 -msgid "Last login" -msgstr "Dernière connexion" - -#: ../../mod/admin.php:473 -msgid "Last item" -msgstr "Dernier élément" - -#: ../../mod/admin.php:473 -msgid "Account" -msgstr "Compte" - -#: ../../mod/admin.php:475 -msgid "" -"Selected users will be deleted!\\n\\nEverything these users had posted on " -"this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "" -"Les utilisateurs sélectionnés vont être supprimés!\\n\\nTout ce qu'ils ont " -"posté sur ce site sera définitivement perdu!\\n\\nÊtes-vous certain?" - -#: ../../mod/admin.php:476 -msgid "" -"The user {0} will be deleted!\\n\\nEverything this user has posted on this " -"site will be permanently deleted!\\n\\nAre you sure?" -msgstr "" -"L'utilisateur {0} va être supprimé!\\n\\nTout ce qu'il a posté sur ce site " -"sera définitivement perdu!\\n\\nÊtes-vous certain?" - -#: ../../mod/admin.php:512 -#, php-format -msgid "Plugin %s disabled." -msgstr "Extension %s désactivée." - -#: ../../mod/admin.php:516 -#, php-format -msgid "Plugin %s enabled." -msgstr "Extension %s activée." - -#: ../../mod/admin.php:526 -msgid "Disable" -msgstr "Désactiver" - -#: ../../mod/admin.php:528 -msgid "Enable" -msgstr "Activer" - -#: ../../mod/admin.php:550 -msgid "Toggle" -msgstr "Activer/Désactiver" - -#: ../../mod/admin.php:551 ../../include/nav.php:128 -msgid "Settings" -msgstr "Réglages" - -#: ../../mod/admin.php:613 -msgid "Log settings updated." -msgstr "Réglages des journaux mis-à-jour." - -#: ../../mod/admin.php:653 -msgid "Clear" -msgstr "Effacer" - -#: ../../mod/admin.php:659 -msgid "Debugging" -msgstr "Déboguage" - -#: ../../mod/admin.php:660 -msgid "Log file" -msgstr "Fichier de journaux" - -#: ../../mod/admin.php:660 -msgid "Must be writable by web server. Relative to your Friendika index.php." -msgstr "" -"Doit être accessible en écriture pour le serveur web. Le chemin est relative" -" à l'index.php de Friendica." - -#: ../../mod/admin.php:661 -msgid "Log level" -msgstr "Niveau de journalisaton" - -#: ../../mod/admin.php:702 -msgid "Close" -msgstr "Fermer" - -#: ../../mod/admin.php:708 -msgid "FTP Host" -msgstr "Hôte FTP" - -#: ../../mod/admin.php:709 -msgid "FTP Path" -msgstr "Chemin FTP" - -#: ../../mod/admin.php:710 -msgid "FTP User" -msgstr "Utilisateur FTP" - -#: ../../mod/admin.php:711 -msgid "FTP Password" -msgstr "Mot de passe FTP" - -#: ../../mod/item.php:84 -msgid "Unable to locate original post." -msgstr "Impossible de localiser l'article original." - -#: ../../mod/item.php:199 -msgid "Empty post discarded." -msgstr "Article vide défaussé." - -#: ../../mod/item.php:675 ../../mod/item.php:720 ../../mod/item.php:764 -#: ../../mod/item.php:807 ../../include/items.php:1769 -#: ../../include/items.php:2068 ../../include/items.php:2115 -#: ../../include/items.php:2227 ../../include/items.php:2273 -msgid "noreply" -msgstr "noreply" - -#: ../../mod/item.php:719 ../../mod/item.php:806 ../../include/items.php:2272 -msgid "Administrator@" -msgstr "Administrator@" - -#: ../../mod/item.php:722 ../../include/items.php:2117 -#: ../../include/items.php:2275 -#, php-format -msgid "%s commented on an item at %s" -msgstr "%s a commenté un élément à %s" - -#: ../../mod/item.php:809 -#, php-format -msgid "%s posted to your profile wall at %s" -msgstr "%s a posté sur votre mur à %s" - -#: ../../mod/item.php:843 -msgid "System error. Post not saved." -msgstr "Erreur système. Publication non sauvée." - -#: ../../mod/item.php:868 -#, php-format -msgid "" -"This message was sent to you by %s, a member of the Friendika social " -"network." -msgstr "" -"Ce message vous a été envoyé par %s, un membre du réseau social Friendica." - -#: ../../mod/item.php:870 -#, php-format -msgid "You may visit them online at %s" -msgstr "Vous pouvez leur rendre visite sur %s" - -#: ../../mod/item.php:871 -msgid "" -"Please contact the sender by replying to this post if you do not wish to " -"receive these messages." -msgstr "" -"Merci de contacter l'émeteur en répondant à cette publication si vous ne " -"souhaitez pas recevoir ces messages." - -#: ../../mod/item.php:873 -#, php-format -msgid "%s posted an update." -msgstr "%s a publié une mise à jour." - -#: ../../mod/tagrm.php:41 -msgid "Tag removed" -msgstr "Étiquette enlevée" - -#: ../../mod/tagrm.php:79 -msgid "Remove Item Tag" -msgstr "Enlever l'étiquette de l'élément" - -#: ../../mod/tagrm.php:81 -msgid "Select a tag to remove: " -msgstr "Choisir une étiquette à enlever: " - -#: ../../mod/tagrm.php:93 -msgid "Remove" -msgstr "Utiliser comme photo de profil" - -#: ../../mod/message.php:23 -msgid "No recipient selected." -msgstr "Pas de destinataire sélectionné." - -#: ../../mod/message.php:26 -msgid "Unable to locate contact information." -msgstr "Impossible de localiser les informations du contact." - -#: ../../mod/message.php:29 -msgid "Message could not be sent." -msgstr "Impossible d'envoyer le message." - -#: ../../mod/message.php:31 -msgid "Message sent." -msgstr "Message envoyé." - -#: ../../mod/message.php:51 -msgid "Inbox" -msgstr "Messages entrants" - -#: ../../mod/message.php:56 -msgid "Outbox" -msgstr "Messages sortants" - -#: ../../mod/message.php:61 -msgid "New Message" -msgstr "Nouveau message" - -#: ../../mod/message.php:87 -msgid "Message deleted." -msgstr "Message supprimé." - -#: ../../mod/message.php:103 -msgid "Conversation removed." -msgstr "Conversation supprimée." - -#: ../../mod/message.php:119 ../../include/conversation.php:767 -msgid "Please enter a link URL:" -msgstr "Entrez un lien web:" - -#: ../../mod/message.php:127 -msgid "Send Private Message" -msgstr "Envoyer un message privé" - -#: ../../mod/message.php:128 ../../mod/message.php:261 -msgid "To:" -msgstr "À:" - -#: ../../mod/message.php:129 ../../mod/message.php:262 -msgid "Subject:" -msgstr "Sujet:" - -#: ../../mod/message.php:170 -msgid "No messages." -msgstr "Aucun message." - -#: ../../mod/message.php:183 -msgid "Delete conversation" -msgstr "Effacer conversation" - -#: ../../mod/message.php:186 -msgid "D, d M Y - g:i A" -msgstr "D, d M Y - g:i A" - -#: ../../mod/message.php:213 -msgid "Message not available." -msgstr "Message indisponible." - -#: ../../mod/message.php:250 -msgid "Delete message" -msgstr "Effacer message" - -#: ../../mod/message.php:260 -msgid "Send Reply" -msgstr "Répondre" - -#: ../../mod/dfrn_confirm.php:234 +#: ../../mod/dfrn_confirm.php:237 msgid "Response from remote site was not understood." msgstr "Réponse du site distant incomprise." -#: ../../mod/dfrn_confirm.php:243 +#: ../../mod/dfrn_confirm.php:246 msgid "Unexpected response from remote site: " msgstr "Réponse inattendue du site distant: " -#: ../../mod/dfrn_confirm.php:251 +#: ../../mod/dfrn_confirm.php:254 msgid "Confirmation completed successfully." msgstr "Confirmation achevée avec succès." -#: ../../mod/dfrn_confirm.php:253 ../../mod/dfrn_confirm.php:267 -#: ../../mod/dfrn_confirm.php:274 +#: ../../mod/dfrn_confirm.php:256 ../../mod/dfrn_confirm.php:270 +#: ../../mod/dfrn_confirm.php:277 msgid "Remote site reported: " msgstr "Alerte du site distant: " -#: ../../mod/dfrn_confirm.php:265 +#: ../../mod/dfrn_confirm.php:268 msgid "Temporary failure. Please wait and try again." msgstr "Échec temporaire. Merci de recommencer ultérieurement." -#: ../../mod/dfrn_confirm.php:272 +#: ../../mod/dfrn_confirm.php:275 msgid "Introduction failed or was revoked." msgstr "Introduction échouée ou annulée." -#: ../../mod/dfrn_confirm.php:409 +#: ../../mod/dfrn_confirm.php:420 msgid "Unable to set contact photo." msgstr "Impossible de définir la photo du contact." -#: ../../mod/dfrn_confirm.php:459 ../../include/conversation.php:79 -#: ../../include/diaspora.php:477 +#: ../../mod/dfrn_confirm.php:477 ../../include/diaspora.php:608 +#: ../../include/conversation.php:171 #, php-format msgid "%1$s is now friends with %2$s" msgstr "%1$s est désormais lié à %2$s" -#: ../../mod/dfrn_confirm.php:530 +#: ../../mod/dfrn_confirm.php:562 #, php-format msgid "No user record found for '%s' " msgstr "Pas d'utilisateur trouvé pour '%s' " -#: ../../mod/dfrn_confirm.php:540 +#: ../../mod/dfrn_confirm.php:572 msgid "Our site encryption key is apparently messed up." msgstr "Notre clé de chiffrement de site est apparemment corrompue." -#: ../../mod/dfrn_confirm.php:551 +#: ../../mod/dfrn_confirm.php:583 msgid "Empty site URL was provided or URL could not be decrypted by us." msgstr "URL de site absente ou indéchiffrable." -#: ../../mod/dfrn_confirm.php:572 +#: ../../mod/dfrn_confirm.php:604 msgid "Contact record was not found for you on our site." msgstr "Pas d'entrée pour ce contact sur notre site." -#: ../../mod/dfrn_confirm.php:586 +#: ../../mod/dfrn_confirm.php:618 #, php-format msgid "Site public key not available in contact record for URL %s." -msgstr "" -"La clé publique du site ne se trouve pas dans l'enregistrement du contact " -"pour l'URL %s." +msgstr "La clé publique du site ne se trouve pas dans l'enregistrement du contact pour l'URL %s." -#: ../../mod/dfrn_confirm.php:606 +#: ../../mod/dfrn_confirm.php:638 msgid "" "The ID provided by your system is a duplicate on our system. It should work " "if you try again." -msgstr "" -"L'identifiant fourni par votre système fait doublon sur le notre. Cela peut " -"fonctionner si vous réessayez." +msgstr "L'identifiant fourni par votre système fait doublon sur le notre. Cela peut fonctionner si vous réessayez." -#: ../../mod/dfrn_confirm.php:617 +#: ../../mod/dfrn_confirm.php:649 msgid "Unable to set your contact credentials on our system." msgstr "Impossible de vous définir des permissions sur notre système." -#: ../../mod/dfrn_confirm.php:671 +#: ../../mod/dfrn_confirm.php:716 msgid "Unable to update your contact profile details on our system" -msgstr "" -"Impossible de mettre les détails de votre profil à jour sur notre système" +msgstr "Impossible de mettre les détails de votre profil à jour sur notre système" -#: ../../mod/dfrn_confirm.php:701 +#: ../../mod/dfrn_confirm.php:750 #, php-format msgid "Connection accepted at %s" -msgstr "Connexion acceptée avec %s" +msgstr "Connexion acceptée chez %s" -#: ../../mod/openid.php:63 ../../mod/openid.php:123 ../../include/auth.php:122 -#: ../../include/auth.php:147 ../../include/auth.php:201 -msgid "Login failed." -msgstr "Échec de connexion." - -#: ../../mod/openid.php:79 ../../include/auth.php:217 -msgid "Welcome " -msgstr "Bienvenue " - -#: ../../mod/openid.php:80 ../../include/auth.php:218 -msgid "Please upload a profile photo." -msgstr "Merci d'illustrer votre profil d'une image." - -#: ../../mod/openid.php:83 ../../include/auth.php:221 -msgid "Welcome back " -msgstr "Bienvenue à nouveau, " - -#: ../../mod/dfrn_poll.php:90 ../../mod/dfrn_poll.php:516 +#: ../../mod/dfrn_confirm.php:799 #, php-format -msgid "%s welcomes %s" -msgstr "%s accueille %s" +msgid "%1$s has joined %2$s" +msgstr "%1$s a rejoint %2$s" -#: ../../mod/viewcontacts.php:25 ../../include/text.php:567 -msgid "View Contacts" -msgstr "Voir les contacts" +#: ../../addon/fromgplus/fromgplus.php:29 +msgid "Google+ Import Settings" +msgstr "Réglages G+" -#: ../../mod/viewcontacts.php:40 -msgid "No contacts." -msgstr "Aucun contact." +#: ../../addon/fromgplus/fromgplus.php:32 +msgid "Enable Google+ Import" +msgstr "Activer l'import G+" -#: ../../mod/group.php:27 -msgid "Group created." -msgstr "Groupe créé." +#: ../../addon/fromgplus/fromgplus.php:35 +msgid "Google Account ID" +msgstr "ID du compte Google" -#: ../../mod/group.php:33 -msgid "Could not create group." -msgstr "Impossible de créer le groupe." +#: ../../addon/fromgplus/fromgplus.php:55 +msgid "Google+ Import Settings saved." +msgstr "Réglages G+ sauvés." -#: ../../mod/group.php:43 ../../mod/group.php:123 -msgid "Group not found." -msgstr "Groupe introuvable." +#: ../../addon/facebook/facebook.php:523 +msgid "Facebook disabled" +msgstr "Connecteur Facebook désactivé" -#: ../../mod/group.php:56 -msgid "Group name changed." -msgstr "Groupe renommé." +#: ../../addon/facebook/facebook.php:528 +msgid "Updating contacts" +msgstr "Mise-à-jour des contacts" -#: ../../mod/group.php:82 -msgid "Create a group of contacts/friends." -msgstr "Créez un groupe de contacts/amis." +#: ../../addon/facebook/facebook.php:551 ../../addon/fbpost/fbpost.php:192 +msgid "Facebook API key is missing." +msgstr "Clé d'API Facebook manquante." -#: ../../mod/group.php:83 ../../mod/group.php:166 -msgid "Group Name: " -msgstr "Nom du groupe: " +#: ../../addon/facebook/facebook.php:558 +msgid "Facebook Connect" +msgstr "Connecteur Facebook" -#: ../../mod/group.php:98 -msgid "Group removed." -msgstr "Groupe enlevé." +#: ../../addon/facebook/facebook.php:564 +msgid "Install Facebook connector for this account." +msgstr "Installer le connecteur Facebook sur ce compte." -#: ../../mod/group.php:100 -msgid "Unable to remove group." -msgstr "Impossible d'enlever le groupe." +#: ../../addon/facebook/facebook.php:571 +msgid "Remove Facebook connector" +msgstr "Désinstaller le connecteur Facebook" -#: ../../mod/group.php:165 -msgid "Group Editor" -msgstr "Éditeur de groupe" - -#: ../../mod/group.php:179 -msgid "Members" -msgstr "Membres" - -#: ../../mod/group.php:194 -msgid "All Contacts" -msgstr "Tout les contacts" - -#: ../../mod/attach.php:8 -msgid "Item not available." -msgstr "Elément non disponible." - -#: ../../mod/attach.php:20 -msgid "Item was not found." -msgstr "Element introuvable." - -#: ../../mod/common.php:34 -msgid "Common Friends" -msgstr "Amis communs" - -#: ../../mod/common.php:42 -msgid "No friends in common." -msgstr "Pas d'amis communs" - -#: ../../mod/match.php:10 -msgid "Profile Match" -msgstr "Correpondance de profils" - -#: ../../mod/match.php:18 -msgid "No keywords to match. Please add keywords to your default profile." -msgstr "" -"Aucun mot-clé en correspondance. Merci d'ajouter des mots-clés à votre " -"profil par défaut." - -#: ../../mod/community.php:21 -msgid "Not available." -msgstr "Indisponible." - -#: ../../mod/community.php:30 ../../include/nav.php:97 -msgid "Community" -msgstr "Communauté" - -#: ../../mod/community.php:87 +#: ../../addon/facebook/facebook.php:576 ../../addon/fbpost/fbpost.php:217 msgid "" -"Shared content is covered by the Creative Commons " -"Attribution 3.0 license." -msgstr "" -"Le contenu est partagé suivant les termes de la licence Creative Commons " -"Attribution 3.0." +"Re-authenticate [This is necessary whenever your Facebook password is " +"changed.]" +msgstr "Se ré-authentifier [nécessaire chaque fois que vous changez votre mot de passe Facebook.]" -#: ../../addon/tumblr/tumblr.php:35 -msgid "Post to Tumblr" -msgstr "Publier sur Tumblr" +#: ../../addon/facebook/facebook.php:583 ../../addon/fbpost/fbpost.php:224 +msgid "Post to Facebook by default" +msgstr "Poster sur Facebook par défaut" -#: ../../addon/tumblr/tumblr.php:66 -msgid "Tumblr Post Settings" -msgstr "Réglages de Tumblr" - -#: ../../addon/tumblr/tumblr.php:68 -msgid "Enable Tumblr Post Plugin" -msgstr "Activer l'extension Tumblr" - -#: ../../addon/tumblr/tumblr.php:73 -msgid "Tumblr login" -msgstr "Login Tumblr" - -#: ../../addon/tumblr/tumblr.php:78 -msgid "Tumblr password" -msgstr "Mot de passe Tumblr" - -#: ../../addon/tumblr/tumblr.php:83 -msgid "Post to Tumblr by default" -msgstr "Publier sur Tumblr par défaut" - -#: ../../addon/tumblr/tumblr.php:174 ../../addon/wppost/wppost.php:171 -msgid "Post from Friendica" -msgstr "Publier depuis Friendica" - -#: ../../addon/twitter/twitter.php:78 -msgid "Post to Twitter" -msgstr "Poster sur Twitter" - -#: ../../addon/twitter/twitter.php:123 -msgid "Twitter settings updated." -msgstr "Réglages de Twitter mis-à-jour." - -#: ../../addon/twitter/twitter.php:145 -msgid "Twitter Posting Settings" -msgstr "Réglages du connecteur Twitter" - -#: ../../addon/twitter/twitter.php:152 +#: ../../addon/facebook/facebook.php:589 msgid "" -"No consumer key pair for Twitter found. Please contact your site " -"administrator." -msgstr "" -"Pas de paire de clés pour Twitter. Merci de contacter l'administrateur du " -"site." +"Facebook friend linking has been disabled on this site. The following " +"settings will have no effect." +msgstr "L'ajout d'amis Facebook a été désactivé sur ce site. Les réglages suivants seront sans effet." -#: ../../addon/twitter/twitter.php:171 +#: ../../addon/facebook/facebook.php:593 msgid "" -"At this Friendika 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 "" -"Sur cette instance de Friendika, le connecteur Twitter a été activé, mais " -"vous n'avez pas encore connecté votre compte à Twitter. Pour ce faire, " -"cliquez sur le bouton ci-dessous pour obtenir un PIN de Twitter, que vous " -"aurez à coller dans la boîte ci-dessous. Ensuite, validez le formulaire. " -"Seuls vos articles <strong>publics</strong> seront postés sur " -"Twitter." +"Facebook friend linking has been disabled on this site. If you disable it, " +"you will be unable to re-enable it." +msgstr "L'ajout d'amis Facebook a été désactivé sur ce site. Si vous désactivez ce réglage, vous ne pourrez le ré-activer." -#: ../../addon/twitter/twitter.php:172 -msgid "Log in with Twitter" -msgstr "Se connecter à Twitter" +#: ../../addon/facebook/facebook.php:596 +msgid "Link all your Facebook friends and conversations on this website" +msgstr "Lier tous vos amis et conversations Facebook sur ce site" -#: ../../addon/twitter/twitter.php:174 -msgid "Copy the PIN from Twitter here" -msgstr "Copier le PIN de Twitter ici" - -#: ../../addon/twitter/twitter.php:188 ../../addon/statusnet/statusnet.php:337 -msgid "Currently connected to: " -msgstr "Actuellement connecté à: " - -#: ../../addon/twitter/twitter.php:189 +#: ../../addon/facebook/facebook.php:598 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 "" -"En cas d'activation, toutes vos notices publiques seront " -"transmises au compte Twitter associé. Vous pourrez choisir de le faire par " -"défaut (ici), ou bien pour chaque notice séparément lors de sa rédaction." +"Facebook conversations consist of your profile wall and your friend" +" stream." +msgstr "Les conversations Facebook se composent du mur du profil et des flux de vos amis." -#: ../../addon/twitter/twitter.php:191 -msgid "Allow posting to Twitter" -msgstr "Autoriser la publication sur Twitter" +#: ../../addon/facebook/facebook.php:599 +msgid "On this website, your Facebook friend stream is only visible to you." +msgstr "Sur ce site, les flux de vos amis Facebook ne sont visibles que par vous." -#: ../../addon/twitter/twitter.php:194 -msgid "Send public postings to Twitter by default" -msgstr "Envoyer les éléments publics sur Twitter par défaut" - -#: ../../addon/twitter/twitter.php:199 ../../addon/statusnet/statusnet.php:348 -msgid "Clear OAuth configuration" -msgstr "Effacer la configuration OAuth" - -#: ../../addon/twitter/twitter.php:301 -msgid "Consumer key" -msgstr "Clé utilisateur" - -#: ../../addon/twitter/twitter.php:302 -msgid "Consumer secret" -msgstr "Secret utilisateur" - -#: ../../addon/statusnet/statusnet.php:141 -msgid "Post to StatusNet" -msgstr "Poster sur StatusNet" - -#: ../../addon/statusnet/statusnet.php:183 +#: ../../addon/facebook/facebook.php:600 msgid "" -"Please contact your site administrator.
    The provided API URL is not " -"valid." -msgstr "" -"Merci de contacter l'administrateur du site.
    L'URL d'API fournie est " -"invalide." +"The following settings determine the privacy of your Facebook profile wall " +"on this website." +msgstr "Les réglages suivants déterminent le niveau de vie privée de votre mur Facebook depuis ce site." -#: ../../addon/statusnet/statusnet.php:211 -msgid "We could not contact the StatusNet API with the Path you entered." -msgstr "Nous n'avons pas pu contacter l'API StatusNet avec le chemin saisi." - -#: ../../addon/statusnet/statusnet.php:238 -msgid "StatusNet settings updated." -msgstr "Réglages StatusNet mis-à-jour." - -#: ../../addon/statusnet/statusnet.php:261 -msgid "StatusNet Posting Settings" -msgstr "Réglages du connecteur StatusNet" - -#: ../../addon/statusnet/statusnet.php:275 -msgid "Globally Available StatusNet OAuthKeys" -msgstr "Clés OAuth StatusNet universelles" - -#: ../../addon/statusnet/statusnet.php:276 +#: ../../addon/facebook/facebook.php:604 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 "" -"Ce sont des paires de clés OAuth préconfigurées pour certains serveurs " -"StatusNet courants. Si vous utilisez l'un d'entre eux, merci de vous servir " -"de ces clés. Autrement, vous pouvez vous connecter à n'importer quelle autre" -" instance de StatusNet (voir ci-dessous)." +"On this website your Facebook profile wall conversations will only be " +"visible to you" +msgstr "Sur ce site, les conversations de votre mur Facebook ne sont visibles que par vous." -#: ../../addon/statusnet/statusnet.php:284 -msgid "Provide your own OAuth Credentials" -msgstr "Fournissez vos propres paramètres OAuth" +#: ../../addon/facebook/facebook.php:609 +msgid "Do not import your Facebook profile wall conversations" +msgstr "Ne pas importer les conversations de votre mur Facebook." -#: ../../addon/statusnet/statusnet.php:285 +#: ../../addon/facebook/facebook.php:611 msgid "" -"No consumer key pair for StatusNet found. Register your Friendika 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 " -"Friendika installation at your favorited StatusNet installation." -msgstr "" -"Aucune paire de clé n'a été trouvée pour StatusNet. Inscrivez votre compte " -"Friendika comme client bureautique sur votre compte StatusNet, puis copiez " -"la paire de clés d'utilisateur ici et renseignez le chemin de base de " -"l'API.<br />Avant d'enregistrer votre propre paire de clés OAuth, " -"merci de vérifier auprès de l'administrateur qu'il en existe pas déjà une " -"pour votre fournisseur StatusNet." +"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 "Si vous choisissez de lier les conversations et de laisser ces deux cases non-cochées, votre mur Facebook sera fusionné avec votre mur de profil (sur ce site). Vos réglages (locaux) de vie privée serviront à en déterminer la visibilité." -#: ../../addon/statusnet/statusnet.php:287 -msgid "OAuth Consumer Key" -msgstr "Clé de consommateur OAuth" +#: ../../addon/facebook/facebook.php:616 +msgid "Comma separated applications to ignore" +msgstr "Liste (séparée par des virgules) des applications à ignorer" -#: ../../addon/statusnet/statusnet.php:290 -msgid "OAuth Consumer Secret" -msgstr "Secret d'utilisateur OAuth" +#: ../../addon/facebook/facebook.php:700 +msgid "Problems with Facebook Real-Time Updates" +msgstr "Problème avec les mises-à-jour en temps réel de Facebook" -#: ../../addon/statusnet/statusnet.php:293 -msgid "Base API Path (remember the trailing /)" -msgstr "Chemin de base de l'API (n'oubliez pas le / final)" +#: ../../addon/facebook/facebook.php:729 +msgid "Facebook Connector Settings" +msgstr "Réglages du connecteur Facebook" -#: ../../addon/statusnet/statusnet.php:314 +#: ../../addon/facebook/facebook.php:744 ../../addon/fbpost/fbpost.php:255 +msgid "Facebook API Key" +msgstr "Clé d'API Facebook" + +#: ../../addon/facebook/facebook.php:754 ../../addon/fbpost/fbpost.php:262 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 "" -"Pour vous connecter à votre compte StatusNet, cliquez sur le bouton ci-" -"dessous pour obtenir un code de sécurité de StatusNet, que vous aurez à " -"coller dans la boîte ci-dessous. Ensuite, validez le formulaire. Seuls vos " -"articles <strong>publics</strong> seront postés sur StatusNet." +"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 "Erreur: il semble que vous ayez spécifié un App-ID et un Secret dans votre fichier .htconfig.php. Tant qu'ils y seront, vous ne pourrez les configurer avec ce formulaire.

    " -#: ../../addon/statusnet/statusnet.php:315 -msgid "Log in with StatusNet" -msgstr "Se connecter à StatusNet" - -#: ../../addon/statusnet/statusnet.php:317 -msgid "Copy the security code from StatusNet here" -msgstr "Coller le code de sécurité de StatusNet ici" - -#: ../../addon/statusnet/statusnet.php:323 -msgid "Cancel Connection Process" -msgstr "Annuler le processus de connexion" - -#: ../../addon/statusnet/statusnet.php:325 -msgid "Current StatusNet API is" -msgstr "L'API StatusNet courante est" - -#: ../../addon/statusnet/statusnet.php:326 -msgid "Cancel StatusNet Connection" -msgstr "Annuler la connexion à StatusNet" - -#: ../../addon/statusnet/statusnet.php:338 +#: ../../addon/facebook/facebook.php:759 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." +"Error: the given API Key seems to be incorrect (the application access token" +" could not be retrieved)." +msgstr "Erreur: la clé d'API semble incorrecte (le jeton d'accès d'application n'a pu être recupéré)" + +#: ../../addon/facebook/facebook.php:761 +msgid "The given API Key seems to work correctly." +msgstr "La clé d'API semble fonctionner correctement." + +#: ../../addon/facebook/facebook.php:763 +msgid "" +"The correctness of the API Key could not be detected. Something strange's " +"going on." +msgstr "La validité de la clé d'API ne peut être vérifiée. Quelque-chose d'étrange se passe." + +#: ../../addon/facebook/facebook.php:766 ../../addon/fbpost/fbpost.php:264 +msgid "App-ID / API-Key" +msgstr "App-ID / Clé d'API" + +#: ../../addon/facebook/facebook.php:767 ../../addon/fbpost/fbpost.php:265 +msgid "Application secret" +msgstr "Secret de l'application" + +#: ../../addon/facebook/facebook.php:768 +#, php-format +msgid "Polling Interval in minutes (minimum %1$s minutes)" +msgstr "Intervalle de 'polling' en minutes (minimum %1$s minutes)" + +#: ../../addon/facebook/facebook.php:769 +msgid "" +"Synchronize comments (no comments on Facebook are missed, at the cost of " +"increased system load)" +msgstr "Synchroniser les commentaires (aucun commentaire de Facebook ne devrait être oublié, au prix d'une charge système accrue)" + +#: ../../addon/facebook/facebook.php:773 +msgid "Real-Time Updates" +msgstr "Mises-à-jour en temps réel" + +#: ../../addon/facebook/facebook.php:777 +msgid "Real-Time Updates are activated." +msgstr "Mises-à-jour en temps réel activées." + +#: ../../addon/facebook/facebook.php:778 +msgid "Deactivate Real-Time Updates" +msgstr "Désactiver les mises-à-jour en temps réel" + +#: ../../addon/facebook/facebook.php:780 +msgid "Real-Time Updates not activated." +msgstr "Mises-à-jour en temps réel désactivées." + +#: ../../addon/facebook/facebook.php:780 +msgid "Activate Real-Time Updates" +msgstr "Activer les mises-à-jour en temps réel" + +#: ../../addon/facebook/facebook.php:799 ../../addon/fbpost/fbpost.php:282 +#: ../../addon/dav/friendica/layout.fnk.php:361 +msgid "The new values have been saved." +msgstr "Les nouvelles valeurs ont été sauvées." + +#: ../../addon/facebook/facebook.php:823 ../../addon/fbpost/fbpost.php:301 +msgid "Post to Facebook" +msgstr "Poster sur Facebook" + +#: ../../addon/facebook/facebook.php:921 ../../addon/fbpost/fbpost.php:399 +msgid "" +"Post to Facebook cancelled because of multi-network access permission " +"conflict." +msgstr "Publication sur Facebook annulée pour cause de conflit de permissions inter-réseaux." + +#: ../../addon/facebook/facebook.php:1149 ../../addon/fbpost/fbpost.php:610 +msgid "View on Friendica" +msgstr "Voir sur Friendica" + +#: ../../addon/facebook/facebook.php:1182 ../../addon/fbpost/fbpost.php:643 +msgid "Facebook post failed. Queued for retry." +msgstr "Publication sur Facebook échouée. En attente pour re-tentative." + +#: ../../addon/facebook/facebook.php:1222 ../../addon/fbpost/fbpost.php:683 +msgid "Your Facebook connection became invalid. Please Re-authenticate." +msgstr "Votre connexion à Facebook est devenue invalide. Merci de vous ré-authentifier." + +#: ../../addon/facebook/facebook.php:1223 ../../addon/fbpost/fbpost.php:684 +msgid "Facebook connection became invalid" +msgstr "La connexion Facebook est devenue invalide" + +#: ../../addon/facebook/facebook.php:1224 ../../addon/fbpost/fbpost.php:685 +#, php-format +msgid "" +"Hi %1$s,\n" +"\n" +"The connection between your accounts on %2$s and Facebook became invalid. This usually happens after you change your Facebook-password. To enable the connection again, you have to %3$sre-authenticate the Facebook-connector%4$s." +msgstr "Bonjour %1$s,\n\nLa connexion entre vos comptes sur %2$s et Facebook est devenue invalide. Ceci arrive généralement lorsque vous changez de mot de passe Facebook. Pour réactiver cette connexion, vous devrez %3$sré-authentifier le connecteur Facebook%4$s." + +#: ../../addon/snautofollow/snautofollow.php:32 +msgid "StatusNet AutoFollow settings updated." +msgstr "Réglages de suivi automatique sur StatusNet mis à jour." + +#: ../../addon/snautofollow/snautofollow.php:56 +msgid "StatusNet AutoFollow Settings" +msgstr "Réglages de suivi automatique sur StatusNet" + +#: ../../addon/snautofollow/snautofollow.php:58 +msgid "Automatically follow any StatusNet followers/mentioners" +msgstr "Suivre automatiquement les personnes qui vous suivent ou vous mentionnent sur Statusnet" + +#: ../../addon/bg/bg.php:51 +msgid "Bg settings updated." +msgstr "Réglages d'arrière-plan mis à jour." + +#: ../../addon/bg/bg.php:82 +msgid "Bg Settings" +msgstr "Réglages d'arrière-plan" + +#: ../../addon/bg/bg.php:84 ../../addon/numfriends/numfriends.php:79 +msgid "How many contacts to display on profile sidebar" +msgstr "Nombre de contacts à montrer sur le panneau latéral du profil" + +#: ../../addon/privacy_image_cache/privacy_image_cache.php:260 +msgid "Lifetime of the cache (in hours)" +msgstr "Durée de vie du cache (en heures)" + +#: ../../addon/privacy_image_cache/privacy_image_cache.php:265 +msgid "Cache Statistics" +msgstr "Statistiques du cache" + +#: ../../addon/privacy_image_cache/privacy_image_cache.php:268 +msgid "Number of items" +msgstr "Nombre d'éléments" + +#: ../../addon/privacy_image_cache/privacy_image_cache.php:270 +msgid "Size of the cache" +msgstr "Taille du cache" + +#: ../../addon/privacy_image_cache/privacy_image_cache.php:272 +msgid "Delete the whole cache" +msgstr "Vider le cache" + +#: ../../addon/fbpost/fbpost.php:172 +msgid "Facebook Post disabled" msgstr "" -"En cas d'activation, toutes vos notices publiques seront " -"transmises au compte StatusNet associé. Vous pourrez choisir de le faire par" -" défaut (ici), ou bien pour chaque notice séparément lors de sa rédaction." -#: ../../addon/statusnet/statusnet.php:340 -msgid "Allow posting to StatusNet" -msgstr "Autoriser la publication sur StatusNet" +#: ../../addon/fbpost/fbpost.php:199 +msgid "Facebook Post" +msgstr "" -#: ../../addon/statusnet/statusnet.php:343 -msgid "Send public postings to StatusNet by default" -msgstr "Par défaut, envoyer les notices publiques à StatusNet" +#: ../../addon/fbpost/fbpost.php:205 +msgid "Install Facebook Post connector for this account." +msgstr "" -#: ../../addon/statusnet/statusnet.php:478 -msgid "API URL" -msgstr "URL de l'API" +#: ../../addon/fbpost/fbpost.php:212 +msgid "Remove Facebook Post connector" +msgstr "" -#: ../../addon/oembed/oembed.php:30 -msgid "OEmbed settings updated" -msgstr "Réglage OEmbed mis-à-jour" +#: ../../addon/fbpost/fbpost.php:240 +msgid "Facebook Post Settings" +msgstr "" -#: ../../addon/oembed/oembed.php:43 -msgid "Use OEmbed for YouTube videos" -msgstr "Utiliser OEmbed pour les vidéos Youtube" +#: ../../addon/widgets/widget_like.php:58 +#, php-format +msgid "%d person likes this" +msgid_plural "%d people like this" +msgstr[0] "%d personne aime ça" +msgstr[1] "%d personnes aiment ça" -#: ../../addon/oembed/oembed.php:71 -msgid "URL to embed:" -msgstr "URL à incorporer:" +#: ../../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 personne n'aime pas ça" +msgstr[1] "%d personnes n'aiment pas ça" + +#: ../../addon/widgets/widget_friendheader.php:40 +msgid "Get added to this list!" +msgstr "Ajoutez-vous à cette liste!" + +#: ../../addon/widgets/widgets.php:56 +msgid "Generate new key" +msgstr "Générer une nouvelle clé" + +#: ../../addon/widgets/widgets.php:59 +msgid "Widgets key" +msgstr "Clé des widgets" + +#: ../../addon/widgets/widgets.php:61 +msgid "Widgets available" +msgstr "Widgets disponibles" + +#: ../../addon/widgets/widget_friends.php:40 +msgid "Connect on Friendica!" +msgstr "Se connecter sur Friendica!" + +#: ../../addon/morepokes/morepokes.php:19 +msgid "bitchslap" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:19 +msgid "bitchslapped" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:20 +msgid "shag" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:20 +msgid "shagged" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:21 +msgid "do something obscenely biological to" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:21 +msgid "did something obscenely biological to" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:22 +msgid "point out the poke feature to" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:22 +msgid "pointed out the poke feature to" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:23 +msgid "declare undying love for" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:23 +msgid "declared undying love for" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:24 +msgid "patent" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:24 +msgid "patented" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:25 +msgid "stroke beard" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:25 +msgid "stroked their beard at" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:26 +msgid "" +"bemoan the declining standards of modern secondary and tertiary education to" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:26 +msgid "" +"bemoans the declining standards of modern secondary and tertiary education " +"to" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:27 +msgid "hug" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:27 +msgid "hugged" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:28 +msgid "kiss" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:28 +msgid "kissed" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:29 +msgid "raise eyebrows at" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:29 +msgid "raised their eyebrows at" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:30 +msgid "insult" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:30 +msgid "insulted" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:31 +msgid "praise" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:31 +msgid "praised" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:32 +msgid "be dubious of" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:32 +msgid "was dubious of" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:33 +msgid "eat" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:33 +msgid "ate" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:34 +msgid "giggle and fawn at" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:34 +msgid "giggled and fawned at" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:35 +msgid "doubt" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:35 +msgid "doubted" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:36 +msgid "glare" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:36 +msgid "glared at" +msgstr "" + +#: ../../addon/yourls/yourls.php:55 +msgid "YourLS Settings" +msgstr "Réglages de YourLS" + +#: ../../addon/yourls/yourls.php:57 +msgid "URL: http://" +msgstr "URL: http://" + +#: ../../addon/yourls/yourls.php:62 +msgid "Username:" +msgstr "Nom d'utilisateur" + +#: ../../addon/yourls/yourls.php:67 +msgid "Password:" +msgstr "Mot de passe :" + +#: ../../addon/yourls/yourls.php:72 +msgid "Use SSL " +msgstr "Utiliser SSL " + +#: ../../addon/yourls/yourls.php:92 +msgid "yourls Settings saved." +msgstr "Réglages yourls sauvés." + +#: ../../addon/ljpost/ljpost.php:39 +msgid "Post to LiveJournal" +msgstr "Poster vers LiveJournal" + +#: ../../addon/ljpost/ljpost.php:70 +msgid "LiveJournal Post Settings" +msgstr "Réglages LiveJournal" + +#: ../../addon/ljpost/ljpost.php:72 +msgid "Enable LiveJournal Post Plugin" +msgstr "Activer \"Poster vers LiveJournal\"" + +#: ../../addon/ljpost/ljpost.php:77 +msgid "LiveJournal username" +msgstr "Nom d'utilisateur LiveJournal" + +#: ../../addon/ljpost/ljpost.php:82 +msgid "LiveJournal password" +msgstr "Mot de passe" + +#: ../../addon/ljpost/ljpost.php:87 +msgid "Post to LiveJournal by default" +msgstr "Poster vers LiveJournal par défaut" + +#: ../../addon/nsfw/nsfw.php:78 +msgid "Not Safe For Work (General Purpose Content Filter) settings" +msgstr "Réglages de \"NSFW\" (filtrage de contenu)" + +#: ../../addon/nsfw/nsfw.php:80 +msgid "" +"This plugin looks in posts for the words/text you specify below, and " +"collapses any content containing those keywords so it is not displayed at " +"inappropriate times, such as sexual innuendo that may be improper in a work " +"setting. It is polite and recommended to tag any content containing nudity " +"with #NSFW. This filter can also match any other word/text you specify, and" +" can thereby be used as a general purpose content filter." +msgstr "Cette extension va parcourir les publications à la recherche des mots (ou phrases) que vous spécifierez ci-dessous, et repliera automatiquement tout contenu qui les contiendrait, afin de ne pas risquer de les afficher à un moment inopportun. Comme par exemple des messages à caractère sexuel dans un contexte professionnel. Il est globalement considéré comme correct et poli de \"tagguer\" toute publication contenant de la nudité avec #NSFW (Not Safe For Work - pas pour le boulot). Ce filtre peut également fonctionner pour tout autre texte que vous spécifierez, et pourra ainsi être utilisé comme filtre de contenu générique." + +#: ../../addon/nsfw/nsfw.php:81 +msgid "Enable Content filter" +msgstr "Activer le filtrage de contenu" + +#: ../../addon/nsfw/nsfw.php:84 +msgid "Comma separated list of keywords to hide" +msgstr "Liste de mots-clés - séparés par des virgules - à cacher" + +#: ../../addon/nsfw/nsfw.php:89 +msgid "Use /expression/ to provide regular expressions" +msgstr "Utilisez /expression/ pour les expressions rationnelles" + +#: ../../addon/nsfw/nsfw.php:105 +msgid "NSFW Settings saved." +msgstr "Réglages NSFW sauvegardés." + +#: ../../addon/nsfw/nsfw.php:157 +#, php-format +msgid "%s - Click to open/close" +msgstr "%s - cliquer pour ouvrir/fermer" + +#: ../../addon/page/page.php:61 ../../addon/page/page.php:91 +#: ../../addon/forumlist/forumlist.php:54 +msgid "Forums" +msgstr "Forums" + +#: ../../addon/page/page.php:129 ../../addon/forumlist/forumlist.php:88 +msgid "Forums:" +msgstr "Forums:" + +#: ../../addon/page/page.php:165 +msgid "Page settings updated." +msgstr "Paramètres des pages mis à jour." + +#: ../../addon/page/page.php:194 +msgid "Page Settings" +msgstr "Paramètres des pages" + +#: ../../addon/page/page.php:196 ../../addon/forumlist/forumlist.php:155 +msgid "How many forums to display on sidebar without paging" +msgstr "Nombre de forums à afficher sur la barre de côté sans changer de page" + +#: ../../addon/page/page.php:199 +msgid "Randomise Page/Forum list" +msgstr "Rendre aléatoire la liste des pages/forums" + +#: ../../addon/page/page.php:202 +msgid "Show pages/forums on profile page" +msgstr "Montrer les forums sur le profil" + +#: ../../addon/planets/planets.php:150 +msgid "Planets Settings" +msgstr "Réglages des Planets" + +#: ../../addon/planets/planets.php:152 +msgid "Enable Planets Plugin" +msgstr "Activer Planets" + +#: ../../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:912 +msgid "Login" +msgstr "Connexion" + +#: ../../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 "Derniers utilisateurs" + +#: ../../addon/communityhome/communityhome.php:81 +#: ../../addon/communityhome/twillingham/communityhome.php:81 +msgid "Most active users" +msgstr "Utilisateurs les plus actifs" + +#: ../../addon/communityhome/communityhome.php:98 +msgid "Latest photos" +msgstr "Dernières photos" + +#: ../../addon/communityhome/communityhome.php:133 +msgid "Latest likes" +msgstr "Dernières approbations" + +#: ../../addon/communityhome/communityhome.php:155 +#: ../../view/theme/diabook/theme.php:562 ../../include/text.php:1437 +#: ../../include/conversation.php:117 ../../include/conversation.php:245 +msgid "event" +msgstr "évènement" + +#: ../../addon/dav/common/wdcal_backend.inc.php:92 +#: ../../addon/dav/common/wdcal_backend.inc.php:166 +#: ../../addon/dav/common/wdcal_backend.inc.php:178 +#: ../../addon/dav/common/wdcal_backend.inc.php:206 +#: ../../addon/dav/common/wdcal_backend.inc.php:214 +#: ../../addon/dav/common/wdcal_backend.inc.php:229 +msgid "No access" +msgstr "Pas d'accès" + +#: ../../addon/dav/common/wdcal_edit.inc.php:30 +#: ../../addon/dav/common/wdcal_edit.inc.php:738 +msgid "Could not open component for editing" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:140 +#: ../../addon/dav/friendica/layout.fnk.php:143 +#: ../../addon/dav/friendica/layout.fnk.php:422 +msgid "Go back to the calendar" +msgstr "Revenir au calendrier" + +#: ../../addon/dav/common/wdcal_edit.inc.php:144 +msgid "Event data" +msgstr "Données de l'évènement" + +#: ../../addon/dav/common/wdcal_edit.inc.php:146 +#: ../../addon/dav/friendica/main.php:239 +msgid "Calendar" +msgstr "Calendrier" + +#: ../../addon/dav/common/wdcal_edit.inc.php:163 +msgid "Special color" +msgstr "Couleur spéciale" + +#: ../../addon/dav/common/wdcal_edit.inc.php:169 +msgid "Subject" +msgstr "Sujet" + +#: ../../addon/dav/common/wdcal_edit.inc.php:173 +msgid "Starts" +msgstr "Début" + +#: ../../addon/dav/common/wdcal_edit.inc.php:178 +msgid "Ends" +msgstr "Fin" + +#: ../../addon/dav/common/wdcal_edit.inc.php:185 +msgid "Description" +msgstr "Description" + +#: ../../addon/dav/common/wdcal_edit.inc.php:188 +msgid "Recurrence" +msgstr "Récurrence" + +#: ../../addon/dav/common/wdcal_edit.inc.php:190 +msgid "Frequency" +msgstr "Fréquence" + +#: ../../addon/dav/common/wdcal_edit.inc.php:194 +#: ../../include/contact_selectors.php:59 +msgid "Daily" +msgstr "Chaque jour" + +#: ../../addon/dav/common/wdcal_edit.inc.php:197 +#: ../../include/contact_selectors.php:60 +msgid "Weekly" +msgstr "Chaque semaine" + +#: ../../addon/dav/common/wdcal_edit.inc.php:200 +#: ../../include/contact_selectors.php:61 +msgid "Monthly" +msgstr "Chaque mois" + +#: ../../addon/dav/common/wdcal_edit.inc.php:203 +msgid "Yearly" +msgstr "Par an" + +#: ../../addon/dav/common/wdcal_edit.inc.php:214 +#: ../../include/datetime.php:288 +msgid "days" +msgstr "jours" + +#: ../../addon/dav/common/wdcal_edit.inc.php:215 +#: ../../include/datetime.php:287 +msgid "weeks" +msgstr "semaines" + +#: ../../addon/dav/common/wdcal_edit.inc.php:216 +#: ../../include/datetime.php:286 +msgid "months" +msgstr "mois" + +#: ../../addon/dav/common/wdcal_edit.inc.php:217 +#: ../../include/datetime.php:285 +msgid "years" +msgstr "ans" + +#: ../../addon/dav/common/wdcal_edit.inc.php:218 +msgid "Interval" +msgstr "Intervalle" + +#: ../../addon/dav/common/wdcal_edit.inc.php:218 +msgid "All %select% %time%" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:222 +#: ../../addon/dav/common/wdcal_edit.inc.php:260 +#: ../../addon/dav/common/wdcal_edit.inc.php:481 +msgid "Days" +msgstr "Jours" + +#: ../../addon/dav/common/wdcal_edit.inc.php:231 +#: ../../addon/dav/common/wdcal_edit.inc.php:254 +#: ../../addon/dav/common/wdcal_edit.inc.php:270 +#: ../../addon/dav/common/wdcal_edit.inc.php:293 +#: ../../addon/dav/common/wdcal_edit.inc.php:305 ../../include/text.php:917 +msgid "Sunday" +msgstr "Dimanche" + +#: ../../addon/dav/common/wdcal_edit.inc.php:235 +#: ../../addon/dav/common/wdcal_edit.inc.php:274 +#: ../../addon/dav/common/wdcal_edit.inc.php:308 ../../include/text.php:917 +msgid "Monday" +msgstr "Lundi" + +#: ../../addon/dav/common/wdcal_edit.inc.php:238 +#: ../../addon/dav/common/wdcal_edit.inc.php:277 ../../include/text.php:917 +msgid "Tuesday" +msgstr "Mardi" + +#: ../../addon/dav/common/wdcal_edit.inc.php:241 +#: ../../addon/dav/common/wdcal_edit.inc.php:280 ../../include/text.php:917 +msgid "Wednesday" +msgstr "Mercredi" + +#: ../../addon/dav/common/wdcal_edit.inc.php:244 +#: ../../addon/dav/common/wdcal_edit.inc.php:283 ../../include/text.php:917 +msgid "Thursday" +msgstr "Jeudi" + +#: ../../addon/dav/common/wdcal_edit.inc.php:247 +#: ../../addon/dav/common/wdcal_edit.inc.php:286 ../../include/text.php:917 +msgid "Friday" +msgstr "Vendredi" + +#: ../../addon/dav/common/wdcal_edit.inc.php:250 +#: ../../addon/dav/common/wdcal_edit.inc.php:289 ../../include/text.php:917 +msgid "Saturday" +msgstr "Samedi" + +#: ../../addon/dav/common/wdcal_edit.inc.php:297 +msgid "First day of week:" +msgstr "Premier jour de la semaine :" + +#: ../../addon/dav/common/wdcal_edit.inc.php:350 +#: ../../addon/dav/common/wdcal_edit.inc.php:373 +msgid "Day of month" +msgstr "Jour du mois" + +#: ../../addon/dav/common/wdcal_edit.inc.php:354 +msgid "#num#th of each month" +msgstr "Le #num# de chaque mois" + +#: ../../addon/dav/common/wdcal_edit.inc.php:357 +msgid "#num#th-last of each month" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:360 +msgid "#num#th #wkday# of each month" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:363 +msgid "#num#th-last #wkday# of each month" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:372 +#: ../../addon/dav/friendica/layout.fnk.php:255 +msgid "Month" +msgstr "Mois" + +#: ../../addon/dav/common/wdcal_edit.inc.php:377 +msgid "#num#th of the given month" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:380 +msgid "#num#th-last of the given month" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:383 +msgid "#num#th #wkday# of the given month" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:386 +msgid "#num#th-last #wkday# of the given month" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:413 +msgid "Repeat until" +msgstr "Répéter jusqu'à" + +#: ../../addon/dav/common/wdcal_edit.inc.php:417 +msgid "Infinite" +msgstr "Infini" + +#: ../../addon/dav/common/wdcal_edit.inc.php:420 +msgid "Until the following date" +msgstr "Jusqu'à cette date" + +#: ../../addon/dav/common/wdcal_edit.inc.php:423 +msgid "Number of times" +msgstr "Nombre de fois" + +#: ../../addon/dav/common/wdcal_edit.inc.php:429 +msgid "Exceptions" +msgstr "Exceptions" + +#: ../../addon/dav/common/wdcal_edit.inc.php:432 +msgid "none" +msgstr "aucun" + +#: ../../addon/dav/common/wdcal_edit.inc.php:449 +msgid "Notification" +msgstr "Notification" + +#: ../../addon/dav/common/wdcal_edit.inc.php:466 +msgid "Notify by" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:469 +msgid "E-Mail" +msgstr "Courriel" + +#: ../../addon/dav/common/wdcal_edit.inc.php:470 +msgid "On Friendica / Display" +msgstr "Sur Friendica / Afficher" + +#: ../../addon/dav/common/wdcal_edit.inc.php:474 +msgid "Time" +msgstr "Heure" + +#: ../../addon/dav/common/wdcal_edit.inc.php:478 +msgid "Hours" +msgstr "Heures" + +#: ../../addon/dav/common/wdcal_edit.inc.php:479 +msgid "Minutes" +msgstr "Minutes" + +#: ../../addon/dav/common/wdcal_edit.inc.php:480 +msgid "Seconds" +msgstr "Secondes" + +#: ../../addon/dav/common/wdcal_edit.inc.php:482 +msgid "Weeks" +msgstr "Semaines" + +#: ../../addon/dav/common/wdcal_edit.inc.php:485 +msgid "before the" +msgstr "avant le" + +#: ../../addon/dav/common/wdcal_edit.inc.php:486 +msgid "start of the event" +msgstr "début de l'événement" + +#: ../../addon/dav/common/wdcal_edit.inc.php:487 +msgid "end of the event" +msgstr "fin de l'événement" + +#: ../../addon/dav/common/wdcal_edit.inc.php:492 +msgid "Add a notification" +msgstr "Ajouter une notification" + +#: ../../addon/dav/common/wdcal_edit.inc.php:687 +msgid "The event #name# will start at #date" +msgstr "L'événement #name# commencera le #date#" + +#: ../../addon/dav/common/wdcal_edit.inc.php:696 +msgid "#name# is about to begin." +msgstr "#name# va commencer" + +#: ../../addon/dav/common/wdcal_edit.inc.php:769 +msgid "Saved" +msgstr "Sauvegardé" + +#: ../../addon/dav/common/wdcal_configuration.php:148 +msgid "U.S. Time Format (mm/dd/YYYY)" +msgstr "Date au format américain (mm/jj/AAAA)" + +#: ../../addon/dav/common/wdcal_configuration.php:243 +msgid "German Time Format (dd.mm.YYYY)" +msgstr "Date au format européen (jj.mm.AAAA)" + +#: ../../addon/dav/common/dav_caldav_backend_private.inc.php:39 +msgid "Private Events" +msgstr "Événements privés." + +#: ../../addon/dav/common/dav_carddav_backend_private.inc.php:46 +msgid "Private Addressbooks" +msgstr "Carnets d'adresses privés" + +#: ../../addon/dav/friendica/dav_caldav_backend_virtual_friendica.inc.php:36 +msgid "Friendica-Native events" +msgstr "Événements natifs de Friendica" + +#: ../../addon/dav/friendica/dav_carddav_backend_virtual_friendica.inc.php:36 +#: ../../addon/dav/friendica/dav_carddav_backend_virtual_friendica.inc.php:59 +msgid "Friendica-Contacts" +msgstr "Contacts Friendica" + +#: ../../addon/dav/friendica/dav_carddav_backend_virtual_friendica.inc.php:60 +msgid "Your Friendica-Contacts" +msgstr "Vos contacts Friendica" + +#: ../../addon/dav/friendica/layout.fnk.php:99 +#: ../../addon/dav/friendica/layout.fnk.php:136 +msgid "" +"Something went wrong when trying to import the file. Sorry. Maybe some " +"events were imported anyway." +msgstr "Désolé, l'importation du fichier s'est mal passée. Toutefois, il se peut que certains événements aient tout de même été importés." + +#: ../../addon/dav/friendica/layout.fnk.php:131 +msgid "Something went wrong when trying to import the file. Sorry." +msgstr "Désolé, l'importation du fichier s'est mal passée." + +#: ../../addon/dav/friendica/layout.fnk.php:134 +msgid "The ICS-File has been imported." +msgstr "Le fichier ICS a été importé." + +#: ../../addon/dav/friendica/layout.fnk.php:138 +msgid "No file was uploaded." +msgstr "Aucun fichier n'a été téléchargé." + +#: ../../addon/dav/friendica/layout.fnk.php:147 +msgid "Import a ICS-file" +msgstr "Importer un fichier ICS" + +#: ../../addon/dav/friendica/layout.fnk.php:150 +msgid "ICS-File" +msgstr "Fichier ICS" + +#: ../../addon/dav/friendica/layout.fnk.php:151 +msgid "Overwrite all #num# existing events" +msgstr "Écraser les #num# événements existants" + +#: ../../addon/dav/friendica/layout.fnk.php:228 +msgid "New event" +msgstr "Nouvel événement" + +#: ../../addon/dav/friendica/layout.fnk.php:232 +msgid "Today" +msgstr "Aujourd'hui" + +#: ../../addon/dav/friendica/layout.fnk.php:241 +msgid "Day" +msgstr "Jour" + +#: ../../addon/dav/friendica/layout.fnk.php:248 +msgid "Week" +msgstr "Semaine" + +#: ../../addon/dav/friendica/layout.fnk.php:260 +msgid "Reload" +msgstr "Recharger" + +#: ../../addon/dav/friendica/layout.fnk.php:271 +msgid "Date" +msgstr "Date" + +#: ../../addon/dav/friendica/layout.fnk.php:313 +msgid "Error" +msgstr "Erreur" + +#: ../../addon/dav/friendica/layout.fnk.php:380 +msgid "The calendar has been updated." +msgstr "Le calendrier a été mis à jour." + +#: ../../addon/dav/friendica/layout.fnk.php:393 +msgid "The new calendar has been created." +msgstr "Le nouveau calendrier a été créé." + +#: ../../addon/dav/friendica/layout.fnk.php:417 +msgid "The calendar has been deleted." +msgstr "Le calendrier a été détruit." + +#: ../../addon/dav/friendica/layout.fnk.php:424 +msgid "Calendar Settings" +msgstr "Paramètres du calendrier" + +#: ../../addon/dav/friendica/layout.fnk.php:430 +msgid "Date format" +msgstr "Format de la date" + +#: ../../addon/dav/friendica/layout.fnk.php:439 +msgid "Time zone" +msgstr "Fuseau horaire" + +#: ../../addon/dav/friendica/layout.fnk.php:445 +msgid "Calendars" +msgstr "Calendriers." + +#: ../../addon/dav/friendica/layout.fnk.php:487 +msgid "Create a new calendar" +msgstr "Créer un nouveau calendrier." + +#: ../../addon/dav/friendica/layout.fnk.php:496 +msgid "Limitations" +msgstr "Limitations" + +#: ../../addon/dav/friendica/layout.fnk.php:500 +#: ../../addon/libravatar/libravatar.php:82 +msgid "Warning" +msgstr "Avertissement" + +#: ../../addon/dav/friendica/layout.fnk.php:504 +msgid "Synchronization (iPhone, Thunderbird Lightning, Android, ...)" +msgstr "Synchronisation (Iphone, Thunderbird Lightning, Android, ...)" + +#: ../../addon/dav/friendica/layout.fnk.php:511 +msgid "Synchronizing this calendar with the iPhone" +msgstr "Synchronisation avec l'Iphone en cours" + +#: ../../addon/dav/friendica/layout.fnk.php:522 +msgid "Synchronizing your Friendica-Contacts with the iPhone" +msgstr "Synchronisation de vos contacts Friendica avec l'Iphone en cours" + +#: ../../addon/dav/friendica/main.php:202 +msgid "" +"The current version of this plugin has not been set up correctly. Please " +"contact the system administrator of your installation of friendica to fix " +"this." +msgstr "La version actuelle de cette extension n'a pas été configurée correctement. Merci de contacter votre administrateur Friendica pour régler ce problème. " + +#: ../../addon/dav/friendica/main.php:242 +msgid "Extended calendar with CalDAV-support" +msgstr "Calendrier étendu avec support CalDAV" + +#: ../../addon/dav/friendica/main.php:279 +#: ../../addon/dav/friendica/main.php:280 ../../include/delivery.php:464 +#: ../../include/enotify.php:28 ../../include/notifier.php:710 +msgid "noreply" +msgstr "noreply" + +#: ../../addon/dav/friendica/main.php:282 +msgid "Notification: " +msgstr "Notification :" + +#: ../../addon/dav/friendica/main.php:309 +msgid "The database tables have been installed." +msgstr "Les tables de la base de données ont été installées." + +#: ../../addon/dav/friendica/main.php:310 +msgid "An error occurred during the installation." +msgstr "Une erreur est survenue lors de l'installation." + +#: ../../addon/dav/friendica/main.php:316 +msgid "The database tables have been updated." +msgstr "Les tables de la base de données ont été mises à jour." + +#: ../../addon/dav/friendica/main.php:317 +msgid "An error occurred during the update." +msgstr "Une erreur est survenue lors de la mise à jour." + +#: ../../addon/dav/friendica/main.php:333 +msgid "No system-wide settings yet." +msgstr "Pas de paramètres globaux pour l'instant." + +#: ../../addon/dav/friendica/main.php:336 +msgid "Database status" +msgstr "Etat de la base de données" + +#: ../../addon/dav/friendica/main.php:339 +msgid "Installed" +msgstr "Installé" + +#: ../../addon/dav/friendica/main.php:343 +msgid "Upgrade needed" +msgstr "Mise à jour nécessaire" + +#: ../../addon/dav/friendica/main.php:343 +msgid "" +"Please back up all calendar data (the tables beginning with dav_*) before " +"proceeding. While all calendar events should be converted to the new " +"database structure, it's always safe to have a backup. Below, you can have a" +" look at the database-queries that will be made when pressing the " +"'update'-button." +msgstr "Merci de sauvegarder toutes les données calendaires (les tables commençant par dav_*) avant de continuer. Bien que les évènements du calendrier doivent tous être convertis à la nouvelle structure, ça ne fait pas de mal d'avoir une sauvegarder. Ci-dessous, vous pouvez voir les requêtes qui seront faites lorsque vous lancerez la mise-à-jour." + +#: ../../addon/dav/friendica/main.php:343 +msgid "Upgrade" +msgstr "Mettre à jour" + +#: ../../addon/dav/friendica/main.php:346 +msgid "Not installed" +msgstr "Non installé" + +#: ../../addon/dav/friendica/main.php:346 +msgid "Install" +msgstr "Installer" + +#: ../../addon/dav/friendica/main.php:350 +msgid "Unknown" +msgstr "Inconnu" + +#: ../../addon/dav/friendica/main.php:350 +msgid "" +"Something really went wrong. I cannot recover from this state automatically," +" sorry. Please go to the database backend, back up the data, and delete all " +"tables beginning with 'dav_' manually. Afterwards, this installation routine" +" should be able to reinitialize the tables automatically." +msgstr "Quelque-chose a vraiment déconné. Je ne vais pas pouvoir me rétablir automatiquement, désolé. Merci de contacter directement votre base de données, de sauvegarder les données, et de supprimer toutes les tables qui commencent par 'dav_' à l main. Puis, la routine d'installation devrait être en mesure de réinitialiser ces tables automatiquement." + +#: ../../addon/dav/friendica/main.php:355 +msgid "Troubleshooting" +msgstr "Dépannage" + +#: ../../addon/dav/friendica/main.php:356 +msgid "Manual creation of the database tables:" +msgstr "Création manuelle des tables de la base de données :" + +#: ../../addon/dav/friendica/main.php:357 +msgid "Show SQL-statements" +msgstr "Montrer les requêtes SQL" + +#: ../../addon/dav/friendica/calendar.friendica.fnk.php:206 +msgid "Private Calendar" +msgstr "Calendrier privé" + +#: ../../addon/dav/friendica/calendar.friendica.fnk.php:207 +msgid "Friendica Events: Mine" +msgstr "Evénements Friendica : Personnels" + +#: ../../addon/dav/friendica/calendar.friendica.fnk.php:208 +msgid "Friendica Events: Contacts" +msgstr "Evénements Friendica : Contacts" + +#: ../../addon/dav/friendica/calendar.friendica.fnk.php:248 +msgid "Private Addresses" +msgstr "Adresses privées" + +#: ../../addon/dav/friendica/calendar.friendica.fnk.php:249 +msgid "Friendica Contacts" +msgstr "Contacts Friendica" + +#: ../../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 "Permet l'utilisation de votre ID Friendica (%s) pour vous connecter à des sites compatibles \"unhosted\" (comme ownCloud). Voyez RemoteStorage WebFinger" + +#: ../../addon/uhremotestorage/uhremotestorage.php:85 +msgid "Template URL (with {category})" +msgstr "Modèle d'URL (avec {catégorie})" + +#: ../../addon/uhremotestorage/uhremotestorage.php:86 +msgid "OAuth end-point" +msgstr "URL OAuth" + +#: ../../addon/uhremotestorage/uhremotestorage.php:87 +msgid "Api" +msgstr "Type d'API" + +#: ../../addon/membersince/membersince.php:18 +msgid "Member since:" +msgstr "Membre depuis:" #: ../../addon/tictac/tictac.php:20 msgid "Three Dimensional Tic-Tac-Toe" @@ -3960,26 +5920,19 @@ msgstr "Nouvelle partie avec handicap" msgid "" "Three dimensional tic-tac-toe is just like the traditional game except that " "it is played on multiple levels simultaneously. " -msgstr "" -"Le morpion 3D, c'est comme la version traditionnelle. Sauf qu'on joue sur " -"plusieurs étages en même temps." +msgstr "Le morpion 3D, c'est comme la version traditionnelle. Sauf qu'on joue sur plusieurs étages en même temps." #: ../../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 "" -"Dans le cas qui nous concerne, il y a trois étages. Vous gagnez en alignant " -"trois coups dans n'importe quel étage, ainsi que verticalement ou en " -"diagonale entre les étages." +msgstr "Dans le cas qui nous concerne, il y a trois étages. Vous gagnez en alignant trois coups dans n'importe quel étage, ainsi que verticalement ou en diagonale entre les étages." #: ../../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 "" -"Le handicap interdit la position centrale de l'étage du milieu, parce que le" -" joueur qui prend cette case obtient souvent un avantage." +msgstr "Le handicap interdit la position centrale de l'étage du milieu, parce que le joueur qui prend cette case obtient souvent un avantage." #: ../../addon/tictac/tictac.php:182 msgid "You go first..." @@ -4001,295 +5954,120 @@ msgstr "Match nul!" msgid "I won!" msgstr "J'ai gagné!" -#: ../../addon/uhremotestorage/uhremotestorage.php:56 -#, php-format -msgid "" -"Allow to use your friendika id (%s) to connecto to external unhosted-enabled" -" storage (like ownCloud)" -msgstr "" -"Autoriser votre identifiant friendica (%s) à se connecter à un stockage " -"compatible unhosted (ownCloud, par exemple)" - -#: ../../addon/uhremotestorage/uhremotestorage.php:57 -msgid "Unhosted DAV storage url" -msgstr "URL de stockage DAV d'Unhosted" - -#: ../../addon/impressum/impressum.php:25 -msgid "Impressum" -msgstr "Impressum" - -#: ../../addon/impressum/impressum.php:38 -#: ../../addon/impressum/impressum.php:40 -#: ../../addon/impressum/impressum.php:70 -msgid "Site Owner" -msgstr "Propriétaire du site" - -#: ../../addon/impressum/impressum.php:38 -#: ../../addon/impressum/impressum.php:74 -msgid "Email Address" -msgstr "Adresse courriel" - -#: ../../addon/impressum/impressum.php:43 -#: ../../addon/impressum/impressum.php:72 -msgid "Postal Address" -msgstr "Adresse postale" - -#: ../../addon/impressum/impressum.php:49 -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 "" -"L'extension \"Impressum\" (ou ours) n'est pas configuré!
    Merci" -" d'ajouter au moins la variable owner à votre fichier de " -"configuration. Pour les autres variables, reportez-vous au fichier README " -"accompagnant l'extension." - -#: ../../addon/impressum/impressum.php:71 -msgid "Site Owners Profile" -msgstr "Profil des propriétaires du site" - -#: ../../addon/impressum/impressum.php:73 -msgid "Notes" -msgstr "Notes" - -#: ../../addon/facebook/facebook.php:337 -msgid "Facebook disabled" -msgstr "Connecteur Facebook désactivé" - -#: ../../addon/facebook/facebook.php:342 -msgid "Updating contacts" -msgstr "Mise-à-jour des contacts" - -#: ../../addon/facebook/facebook.php:351 -msgid "Facebook API key is missing." -msgstr "Clé d'API Facebook manquante." - -#: ../../addon/facebook/facebook.php:358 -msgid "Facebook Connect" -msgstr "Connecteur Facebook" - -#: ../../addon/facebook/facebook.php:364 -msgid "Install Facebook connector for this account." -msgstr "Installer le connecteur Facebook sur ce compte." - -#: ../../addon/facebook/facebook.php:371 -msgid "Remove Facebook connector" -msgstr "Désinstaller le connecteur Facebook" - -#: ../../addon/facebook/facebook.php:376 -msgid "" -"Re-authenticate [This is necessary whenever your Facebook password is " -"changed.]" -msgstr "" -"Se ré-authentifier [nécessaire chaque fois que vous changez votre mot de " -"passe Facebook.]" - -#: ../../addon/facebook/facebook.php:383 -msgid "Post to Facebook by default" -msgstr "Poster sur Facebook par défaut" - -#: ../../addon/facebook/facebook.php:387 -msgid "Link all your Facebook friends and conversations on this website" -msgstr "Lier tous vos amis et conversations Facebook sur ce site" - -#: ../../addon/facebook/facebook.php:389 -msgid "" -"Facebook conversations consist of your profile wall and your friend" -" stream." -msgstr "" -"Les conversations Facebook se composent du mur du profil et des " -"flux de vos amis." - -#: ../../addon/facebook/facebook.php:390 -msgid "On this website, your Facebook friend stream is only visible to you." -msgstr "" -"Sur ce site, les flux de vos amis Facebook ne sont visibles que par vous." - -#: ../../addon/facebook/facebook.php:391 -msgid "" -"The following settings determine the privacy of your Facebook profile wall " -"on this website." -msgstr "" -"Les réglages suivants déterminent le niveau de vie privée de votre mur " -"Facebook depuis ce site." - -#: ../../addon/facebook/facebook.php:395 -msgid "" -"On this website your Facebook profile wall conversations will only be " -"visible to you" -msgstr "" -"Sur ce site, les conversations de votre mur Facebook ne sont visibles que " -"par vous." - -#: ../../addon/facebook/facebook.php:400 -msgid "Do not import your Facebook profile wall conversations" -msgstr "Ne pas importer les conversations de votre mur Facebook." - -#: ../../addon/facebook/facebook.php:402 -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 "" -"Si vous choisissez de lier les conversations et de laisser ces deux cases " -"non-cochées, votre mur Facebook sera fusionné avec votre mur de profil (sur " -"ce site). Vos réglages (locaux) de vie privée serviront à en déterminer la " -"visibilité." - -#: ../../addon/facebook/facebook.php:469 -#: ../../include/contact_selectors.php:78 -msgid "Facebook" -msgstr "Facebook" - -#: ../../addon/facebook/facebook.php:470 -msgid "Facebook Connector Settings" -msgstr "Réglages du connecteur Facebook" - -#: ../../addon/facebook/facebook.php:484 -msgid "Post to Facebook" -msgstr "Poster sur Facebook" - -#: ../../addon/facebook/facebook.php:561 -msgid "" -"Post to Facebook cancelled because of multi-network access permission " -"conflict." -msgstr "" -"Publication sur Facebook annulée pour cause de conflit de permissions inter-" -"réseaux." - -#: ../../addon/facebook/facebook.php:624 -msgid "Image: " -msgstr "Image: " - -#: ../../addon/facebook/facebook.php:700 -msgid "View on Friendika" -msgstr "Voir sur Friendica" - -#: ../../addon/facebook/facebook.php:724 -msgid "Facebook post failed. Queued for retry." -msgstr "Publication sur Facebook échouée. En attente pour re-tentative." - -#: ../../addon/widgets/widgets.php:55 -msgid "Generate new key" -msgstr "Générer une nouvelle clé" - -#: ../../addon/widgets/widgets.php:58 -msgid "Widgets key" -msgstr "Clé des widgets" - -#: ../../addon/widgets/widgets.php:60 -msgid "Widgets available" -msgstr "Widgets disponibles" - -#: ../../addon/widgets/widget_friends.php:40 -msgid "Connect on Friendika!" -msgstr "Se connecter à Friendica!" - -#: ../../addon/widgets/widget_like.php:58 -#, php-format -msgid "%d person likes this" -msgid_plural "%d people like this" -msgstr[0] "%d personne aime ça" -msgstr[1] "%d personnes aiment ça" - -#: ../../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 personne n'aime pas ça" -msgstr[1] "%d personnes n'aiment pas ça" - -#: ../../addon/buglink/buglink.php:15 -msgid "Report Bug" -msgstr "Signaler un bug" - -#: ../../addon/nsfw/nsfw.php:47 -msgid "\"Not Safe For Work\" Settings" -msgstr "Réglages de \"Not Safe For Work\"" - -#: ../../addon/nsfw/nsfw.php:49 -msgid "Comma separated words to treat as NSFW" -msgstr "Liste de mots à considérer comme NSFW. Séparés par des virgules." - -#: ../../addon/nsfw/nsfw.php:66 -msgid "NSFW Settings saved." -msgstr "Réglages NSFW sauvegardés." - -#: ../../addon/nsfw/nsfw.php:102 -#, php-format -msgid "%s - Click to open/close" -msgstr "%s - cliquer pour ouvrir/fermer" - -#: ../../addon/communityhome/communityhome.php:29 -msgid "OpenID" -msgstr "OpenID" - -#: ../../addon/communityhome/communityhome.php:38 -msgid "Last users" -msgstr "Derniers utilisateurs" - -#: ../../addon/communityhome/communityhome.php:81 -msgid "Most active users" -msgstr "Utilisateurs les plus actifs" - -#: ../../addon/communityhome/communityhome.php:98 -msgid "Last photos" -msgstr "Dernières photos" - -#: ../../addon/communityhome/communityhome.php:133 -msgid "Last likes" -msgstr "Dernièrement aimé" - -#: ../../addon/communityhome/communityhome.php:155 -#: ../../include/conversation.php:23 -msgid "event" -msgstr "évènement" - -#: ../../addon/membersince/membersince.php:17 -#, php-format -msgid " - Member since: %s" -msgstr " - Membre depuis: %s" - -#: ../../addon/randplace/randplace.php:170 +#: ../../addon/randplace/randplace.php:169 msgid "Randplace Settings" msgstr "Réglages de Randplace" -#: ../../addon/randplace/randplace.php:172 +#: ../../addon/randplace/randplace.php:171 msgid "Enable Randplace Plugin" msgstr "Activer l'extension Randplace" -#: ../../addon/piwik/piwik.php:70 -msgid "" -"This website is tracked using the Piwik " -"analytics tool." -msgstr "" -"Ce site collecte ses statistiques grâce à Piwik." +#: ../../addon/dwpost/dwpost.php:39 +msgid "Post to Dreamwidth" +msgstr "Poster vers Dreamwidth" -#: ../../addon/piwik/piwik.php:73 +#: ../../addon/dwpost/dwpost.php:70 +msgid "Dreamwidth Post Settings" +msgstr "Réglages Dreamwidth" + +#: ../../addon/dwpost/dwpost.php:72 +msgid "Enable dreamwidth Post Plugin" +msgstr "Activer \"Poster vers Dreamwidth\"" + +#: ../../addon/dwpost/dwpost.php:77 +msgid "dreamwidth username" +msgstr "Nom d'utilisateur Dreamwidth" + +#: ../../addon/dwpost/dwpost.php:82 +msgid "dreamwidth password" +msgstr "Mot de passe" + +#: ../../addon/dwpost/dwpost.php:87 +msgid "Post to dreamwidth by default" +msgstr "Poster vers Dreamwidth par défaut" + +#: ../../addon/drpost/drpost.php:35 +msgid "Post to Drupal" +msgstr "Poster vers Drupal" + +#: ../../addon/drpost/drpost.php:72 +msgid "Drupal Post Settings" +msgstr "Réglages Drupal" + +#: ../../addon/drpost/drpost.php:74 +msgid "Enable Drupal Post Plugin" +msgstr "Activer \"Poster vers Drupal\"" + +#: ../../addon/drpost/drpost.php:79 +msgid "Drupal username" +msgstr "Nom d'utilisateur Drupal" + +#: ../../addon/drpost/drpost.php:84 +msgid "Drupal password" +msgstr "Mot de passe Drupal" + +#: ../../addon/drpost/drpost.php:89 +msgid "Post Type - article,page,or blog" +msgstr "Type de publication - article, page ou blog" + +#: ../../addon/drpost/drpost.php:94 +msgid "Drupal site URL" +msgstr "URL du site Drupal" + +#: ../../addon/drpost/drpost.php:99 +msgid "Drupal site uses clean URLS" +msgstr "Ce site utilise des URLs propres" + +#: ../../addon/drpost/drpost.php:104 +msgid "Post to Drupal by default" +msgstr "Poster vers Drupal par défaut" + +#: ../../addon/drpost/drpost.php:184 ../../addon/wppost/wppost.php:201 +#: ../../addon/blogger/blogger.php:172 ../../addon/posterous/posterous.php:189 +msgid "Post from Friendica" +msgstr "Publier depuis Friendica" + +#: ../../addon/startpage/startpage.php:83 +msgid "Startpage Settings" +msgstr "Paramètres de la page d'accueil" + +#: ../../addon/startpage/startpage.php:85 +msgid "Home page to load after login - leave blank for profile wall" +msgstr "Page d'accueil à charger après authentification - laisser ce champ vide pour charger votre mur" + +#: ../../addon/startpage/startpage.php:88 +msgid "Examples: "network" or "notifications/system"" +msgstr "Exemples : "network" ou "notifications/system"" + +#: ../../addon/geonames/geonames.php:143 +msgid "Geonames settings updated." +msgstr "Réglages Geonames sauvés." + +#: ../../addon/geonames/geonames.php:179 +msgid "Geonames Settings" +msgstr "Réglages Geonames" + +#: ../../addon/geonames/geonames.php:181 +msgid "Enable Geonames Plugin" +msgstr "Activer Geonames" + +#: ../../addon/public_server/public_server.php:126 +#: ../../addon/testdrive/testdrive.php:94 +#, php-format +msgid "Your account on %s will expire in a few days." +msgstr "Votre compte chez %s va expirer dans quelques jours." + +#: ../../addon/public_server/public_server.php:127 +msgid "Your Friendica account is about to expire." +msgstr "Votre compte sur Friendica est sur le point d'expirer." + +#: ../../addon/public_server/public_server.php:128 #, 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 "" -"Si vous ne voulez pas que vos visites soient collectées par ce biais, vous " -"pouvez activer un cookie qui empêchera Piwik de tenir compte de" -" vos visites ultérieures (opt-out)." - -#: ../../addon/piwik/piwik.php:82 -msgid "Piwik Base URL" -msgstr "URL de base de Piwik" - -#: ../../addon/piwik/piwik.php:83 -msgid "Site ID" -msgstr "ID du site" - -#: ../../addon/piwik/piwik.php:84 -msgid "Show opt-out cookie link?" -msgstr "Montrer le lien d'opt-out?" +"Hi %1$s,\n" +"\n" +"Your account on %2$s will expire in less than five days. You may keep your account by logging in at least once every 30 days" +msgstr "Bonjour %1$s,\n\nVotre compte sur %2$s expirera dans moins de cinq jours. Vous pouvez conserver ce compte en vous y connectant au moins une fois par mois." #: ../../addon/js_upload/js_upload.php:43 msgid "Upload a file" @@ -4303,53 +6081,1200 @@ msgstr "Déposer des fichiers ici pour les téléverser" msgid "Failed" msgstr "Échec" -#: ../../addon/js_upload/js_upload.php:294 +#: ../../addon/js_upload/js_upload.php:297 msgid "No files were uploaded." msgstr "Aucun fichier n'a été téléversé." -#: ../../addon/js_upload/js_upload.php:300 +#: ../../addon/js_upload/js_upload.php:303 msgid "Uploaded file is empty" msgstr "Le fichier téléversé est vide" -#: ../../addon/js_upload/js_upload.php:323 +#: ../../addon/js_upload/js_upload.php:326 msgid "File has an invalid extension, it should be one of " msgstr "Le fichier a une extension invalide, elle devrait être parmi " -#: ../../addon/js_upload/js_upload.php:334 +#: ../../addon/js_upload/js_upload.php:337 msgid "Upload was cancelled, or server error encountered" msgstr "Téléversement annulé, ou erreur de serveur" -#: ../../addon/wppost/wppost.php:41 +#: ../../addon/oembed.old/oembed.php:30 +msgid "OEmbed settings updated" +msgstr "Réglage OEmbed mis-à-jour" + +#: ../../addon/oembed.old/oembed.php:43 +msgid "Use OEmbed for YouTube videos" +msgstr "Utiliser OEmbed pour les vidéos Youtube" + +#: ../../addon/oembed.old/oembed.php:71 +msgid "URL to embed:" +msgstr "URL à incorporer:" + +#: ../../addon/forumlist/forumlist.php:57 +msgid "show/hide" +msgstr "Montrer/cacher" + +#: ../../addon/forumlist/forumlist.php:72 +msgid "No forum subscriptions" +msgstr "Pas d'abonnement au forum" + +#: ../../addon/forumlist/forumlist.php:124 +msgid "Forumlist settings updated." +msgstr "Paramètres de la liste des forums mis à jour." + +#: ../../addon/forumlist/forumlist.php:153 +msgid "Forumlist Settings" +msgstr "Paramètres de la liste des forums" + +#: ../../addon/forumlist/forumlist.php:158 +msgid "Randomise Forumlist/Forum list" +msgstr "" + +#: ../../addon/forumlist/forumlist.php:161 +msgid "Show forumlists/forums on profile forumlist" +msgstr "" + +#: ../../addon/impressum/impressum.php:37 +msgid "Impressum" +msgstr "Impressum" + +#: ../../addon/impressum/impressum.php:50 +#: ../../addon/impressum/impressum.php:52 +#: ../../addon/impressum/impressum.php:84 +msgid "Site Owner" +msgstr "Propriétaire du site" + +#: ../../addon/impressum/impressum.php:50 +#: ../../addon/impressum/impressum.php:88 +msgid "Email Address" +msgstr "Adresse courriel" + +#: ../../addon/impressum/impressum.php:55 +#: ../../addon/impressum/impressum.php:86 +msgid "Postal Address" +msgstr "Adresse postale" + +#: ../../addon/impressum/impressum.php:61 +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 "L'extension \"Impressum\" (ou ours) n'est pas configuré!
    Merci d'ajouter au moins la variable owner à votre fichier de configuration. Pour les autres variables, reportez-vous au fichier README accompagnant l'extension." + +#: ../../addon/impressum/impressum.php:84 +msgid "The page operators name." +msgstr "Le nom de l'administrateur de la page." + +#: ../../addon/impressum/impressum.php:85 +msgid "Site Owners Profile" +msgstr "Profil des propriétaires du site" + +#: ../../addon/impressum/impressum.php:85 +msgid "Profile address of the operator." +msgstr "L'adresse de profil de l'administrateur." + +#: ../../addon/impressum/impressum.php:86 +msgid "How to contact the operator via snail mail. You can use BBCode here." +msgstr "Comment contacter l'administrateur par courrier postal. Vous pouvez utiliser du BBCode." + +#: ../../addon/impressum/impressum.php:87 +msgid "Notes" +msgstr "Notes" + +#: ../../addon/impressum/impressum.php:87 +msgid "" +"Additional notes that are displayed beneath the contact information. You can" +" use BBCode here." +msgstr "Notes additionnelles à afficher sous les informations de contact. Vous pouvez utiliser du BBCode." + +#: ../../addon/impressum/impressum.php:88 +msgid "How to contact the operator via email. (will be displayed obfuscated)" +msgstr "Comment contacter l'administrateur par courriel. (sera camouflée)" + +#: ../../addon/impressum/impressum.php:89 +msgid "Footer note" +msgstr "Note de bas de page" + +#: ../../addon/impressum/impressum.php:89 +msgid "Text for the footer. You can use BBCode here." +msgstr "Texte du pied de page. Vous pouvez utiliser du BBCode." + +#: ../../addon/buglink/buglink.php:15 +msgid "Report Bug" +msgstr "Signaler un bug" + +#: ../../addon/notimeline/notimeline.php:32 +msgid "No Timeline settings updated." +msgstr "Pas de mise à jour de paramètres du calendrier." + +#: ../../addon/notimeline/notimeline.php:56 +msgid "No Timeline Settings" +msgstr "Pas de paramètres de calendrier" + +#: ../../addon/notimeline/notimeline.php:58 +msgid "Disable Archive selector on profile wall" +msgstr "Désactiver le sélecteur d'archives sur le mur" + +#: ../../addon/blockem/blockem.php:51 +msgid "\"Blockem\" Settings" +msgstr "Réglages de Blockem" + +#: ../../addon/blockem/blockem.php:53 +msgid "Comma separated profile URLS to block" +msgstr "Liste d'URLS de profils à bloquer, séparés par des virgules" + +#: ../../addon/blockem/blockem.php:70 +msgid "BLOCKEM Settings saved." +msgstr "Réglages Blockem sauvés." + +#: ../../addon/blockem/blockem.php:105 +#, php-format +msgid "Blocked %s - Click to open/close" +msgstr "Bloqué %s - Cliquez pour ouvrir/fermer" + +#: ../../addon/blockem/blockem.php:160 +msgid "Unblock Author" +msgstr "Débloquer l'auteur" + +#: ../../addon/blockem/blockem.php:162 +msgid "Block Author" +msgstr "Bloquer l'auteur" + +#: ../../addon/blockem/blockem.php:194 +msgid "blockem settings updated" +msgstr "Réglages blockem sauvés" + +#: ../../addon/qcomment/qcomment.php:51 +msgid ":-)" +msgstr ":-)" + +#: ../../addon/qcomment/qcomment.php:51 +msgid ":-(" +msgstr ":-(" + +#: ../../addon/qcomment/qcomment.php:51 +msgid "lol" +msgstr "mdr" + +#: ../../addon/qcomment/qcomment.php:54 +msgid "Quick Comment Settings" +msgstr "Réglages de Quick Comment" + +#: ../../addon/qcomment/qcomment.php:56 +msgid "" +"Quick comments are found near comment boxes, sometimes hidden. Click them to" +" provide simple replies." +msgstr "Les commentaires rapides peuvent être trouvés à proximité des boîtes de commentaire, parfois cachés. Cliquez dessus pour fournir des réponses simples et lapidaires." + +#: ../../addon/qcomment/qcomment.php:57 +msgid "Enter quick comments, one per line" +msgstr "Entrez les réponses rapides, une par ligne" + +#: ../../addon/qcomment/qcomment.php:75 +msgid "Quick Comment settings saved." +msgstr "Réglages de Quick Comment sauvés." + +#: ../../addon/openstreetmap/openstreetmap.php:71 +msgid "Tile Server URL" +msgstr "URL du serveur de tuiles" + +#: ../../addon/openstreetmap/openstreetmap.php:71 +msgid "" +"A list of public tile servers" +msgstr "Une liste de serveurs de tuiles publics" + +#: ../../addon/openstreetmap/openstreetmap.php:72 +msgid "Default zoom" +msgstr "Zoom par défaut" + +#: ../../addon/openstreetmap/openstreetmap.php:72 +msgid "The default zoom level. (1:world, 18:highest)" +msgstr "Le niveau de zoom affiché par défaut. (1: monde entier, 18: détail maximum)" + +#: ../../addon/group_text/group_text.php:46 +#: ../../addon/editplain/editplain.php:46 +msgid "Editplain settings updated." +msgstr "Réglages editplain sauvés." + +#: ../../addon/group_text/group_text.php:76 +msgid "Group Text" +msgstr "" + +#: ../../addon/group_text/group_text.php:78 +msgid "Use a text only (non-image) group selector in the \"group edit\" menu" +msgstr "" + +#: ../../addon/libravatar/libravatar.php:14 +msgid "Could NOT install Libravatar successfully.
    It requires PHP >= 5.3" +msgstr "Libravatar n'a PAS pu être installé.
    Il nécessite PHP >= 5.3" + +#: ../../addon/libravatar/libravatar.php:73 +#: ../../addon/gravatar/gravatar.php:71 +msgid "generic profile image" +msgstr "image de profil générique" + +#: ../../addon/libravatar/libravatar.php:74 +#: ../../addon/gravatar/gravatar.php:72 +msgid "random geometric pattern" +msgstr "motif géométrique aléatoire" + +#: ../../addon/libravatar/libravatar.php:75 +#: ../../addon/gravatar/gravatar.php:73 +msgid "monster face" +msgstr "monstre" + +#: ../../addon/libravatar/libravatar.php:76 +#: ../../addon/gravatar/gravatar.php:74 +msgid "computer generated face" +msgstr "généré par ordinateur" + +#: ../../addon/libravatar/libravatar.php:77 +#: ../../addon/gravatar/gravatar.php:75 +msgid "retro arcade style face" +msgstr "vieux jeu d'arcade" + +#: ../../addon/libravatar/libravatar.php:83 +#, php-format +msgid "Your PHP version %s is lower than the required PHP >= 5.3." +msgstr "La version de PHP doit être >= 5.3 ; la votre, %s, est antérieure. " + +#: ../../addon/libravatar/libravatar.php:84 +msgid "This addon is not functional on your server." +msgstr "Cette extension ne fonctionne pas sur votre serveur." + +#: ../../addon/libravatar/libravatar.php:93 +#: ../../addon/gravatar/gravatar.php:89 +msgid "Information" +msgstr "Information" + +#: ../../addon/libravatar/libravatar.php:93 +msgid "" +"Gravatar addon is installed. Please disable the Gravatar addon.
    The " +"Libravatar addon will fall back to Gravatar if nothing was found at " +"Libravatar." +msgstr "L'extension Gravatar est installée ; veuillez la désactiver.
    L'extension Libravatar sera remplacée par Gravatar si rien n'a été trouvé." + +#: ../../addon/libravatar/libravatar.php:100 +#: ../../addon/gravatar/gravatar.php:96 +msgid "Default avatar image" +msgstr "Avatar par défaut" + +#: ../../addon/libravatar/libravatar.php:100 +msgid "Select default avatar image if none was found. See README" +msgstr "Sélectionner une image d'avatar par défaut si aucune n'a été trouvée. Voir le fichier README" + +#: ../../addon/libravatar/libravatar.php:112 +msgid "Libravatar settings updated." +msgstr "Paramètres de Libravatar mis à jour." + +#: ../../addon/libertree/libertree.php:36 +msgid "Post to libertree" +msgstr "Publier sur libertree" + +#: ../../addon/libertree/libertree.php:67 +msgid "libertree Post Settings" +msgstr "Réglages des messages sur libertree" + +#: ../../addon/libertree/libertree.php:69 +msgid "Enable Libertree Post Plugin" +msgstr "Activer le plugin de publication sur libertree" + +#: ../../addon/libertree/libertree.php:74 +msgid "Libertree API token" +msgstr "Clé de l'API libertree" + +#: ../../addon/libertree/libertree.php:79 +msgid "Libertree site URL" +msgstr "URL du site libertree" + +#: ../../addon/libertree/libertree.php:84 +msgid "Post to Libertree by default" +msgstr "Publier sur libertree par défaut" + +#: ../../addon/altpager/altpager.php:46 +msgid "Altpager settings updated." +msgstr "Paramètres d'Altpager mis à jour." + +#: ../../addon/altpager/altpager.php:79 +msgid "Alternate Pagination Setting" +msgstr "Paramètres de numérotation des pages" + +#: ../../addon/altpager/altpager.php:81 +msgid "Use links to \"newer\" and \"older\" pages in place of page numbers?" +msgstr "Utiliser des liens vers \"plus récents\" et \"plus anciens\" au lieu de numéros de pages ?" + +#: ../../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 "L'extension MathJax affiche les formules mathématiques écrites suivant la syntaxe LaTeX lorsqu'elles sont encadrés par les $$ habituels, ou dans un un bloc eqnarray. Ceci sur le mur, le Réseau et dans les messages privés." + +#: ../../addon/mathjax/mathjax.php:38 +msgid "Use the MathJax renderer" +msgstr "Utiliser le rendu MathJax" + +#: ../../addon/mathjax/mathjax.php:74 +msgid "MathJax Base URL" +msgstr "URL de base de MathJax" + +#: ../../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 "L'URL du fichier Javascript qui doit être inclus pour utiliser MathJax. Ce peut être celle du CDN MathJax, ou bien de toute autre installation de MathJax." + +#: ../../addon/editplain/editplain.php:76 +msgid "Editplain Settings" +msgstr "Réglages de editplain" + +#: ../../addon/editplain/editplain.php:78 +msgid "Disable richtext status editor" +msgstr "Désactiver l'édition \"riche\"" + +#: ../../addon/gravatar/gravatar.php:89 +msgid "" +"Libravatar addon is installed, too. Please disable Libravatar addon or this " +"Gravatar addon.
    The Libravatar addon will fall back to Gravatar if " +"nothing was found at Libravatar." +msgstr "L'extension Libravatar est également installée. Veuillez désactiver celle-ci ou l'extension Gravatar.
    L'extension Libravatar sera remplacée par Gravatar si rien n'a été trouvé." + +#: ../../addon/gravatar/gravatar.php:96 +msgid "Select default avatar image if none was found at Gravatar. See README" +msgstr "Choisissez l'image de l'avatar par défaut si aucun n'est trouvé via Gravatar. Voir README" + +#: ../../addon/gravatar/gravatar.php:97 +msgid "Rating of images" +msgstr "Classe des avatars" + +#: ../../addon/gravatar/gravatar.php:97 +msgid "Select the appropriate avatar rating for your site. See README" +msgstr "Choisissez la classe des avatars appropriée pour votre site. Voir README" + +#: ../../addon/gravatar/gravatar.php:111 +msgid "Gravatar settings updated." +msgstr "Réglages Gravatar sauvés." + +#: ../../addon/testdrive/testdrive.php:95 +msgid "Your Friendica test account is about to expire." +msgstr "Votre compte de test Friendica est sur le point d'expirer." + +#: ../../addon/testdrive/testdrive.php:96 +#, php-format +msgid "" +"Hi %1$s,\n" +"\n" +"Your test account on %2$s will expire in less than five days. We hope you enjoyed this test drive and use this opportunity to find a permanent Friendica website for your integrated social communications. A list of public sites is available at http://dir.friendica.com/siteinfo - and for more information on setting up your own Friendica server please see the Friendica project website at http://friendica.com." +msgstr "Bonjour %1$s,\n\nVotre compte de test sur %2$s va expirer dans moins de cinq jours. Nous espérons que vous avez apprécié cette période d'essais, et que vous profiterez de l'occasion pour vous créer un compte permanent sur un serveur Friendica de votre choix. Une liste des serveurs Friendica ouverts au public peut être consultée sur http://dir.friendica.com/siteinfo - et pour plus d'information sur la meilleure manière de monter votre propre service Friendica, vous pouvez aller directement sur le site du projet http://friendica.com." + +#: ../../addon/pageheader/pageheader.php:50 +msgid "\"pageheader\" Settings" +msgstr "Réglages de pageheader" + +#: ../../addon/pageheader/pageheader.php:68 +msgid "pageheader Settings saved." +msgstr "Réglages pageheader sauvés." + +#: ../../addon/ijpost/ijpost.php:39 +msgid "Post to Insanejournal" +msgstr "Publier vers InsaneJournal" + +#: ../../addon/ijpost/ijpost.php:70 +msgid "InsaneJournal Post Settings" +msgstr "Réglages InsaneJournal" + +#: ../../addon/ijpost/ijpost.php:72 +msgid "Enable InsaneJournal Post Plugin" +msgstr "Activer le connecteur InsaneJournal" + +#: ../../addon/ijpost/ijpost.php:77 +msgid "InsaneJournal username" +msgstr "Utilisateur InsaneJournal" + +#: ../../addon/ijpost/ijpost.php:82 +msgid "InsaneJournal password" +msgstr "Mot de passe InsaneJournal" + +#: ../../addon/ijpost/ijpost.php:87 +msgid "Post to InsaneJournal by default" +msgstr "Publier sur InsaneJournal par défaut" + +#: ../../addon/jappixmini/jappixmini.php:266 +msgid "Jappix Mini addon settings" +msgstr "Jappix Mini" + +#: ../../addon/jappixmini/jappixmini.php:268 +msgid "Activate addon" +msgstr "Activer" + +#: ../../addon/jappixmini/jappixmini.php:271 +msgid "" +"Do not insert the Jappixmini Chat-Widget into the webinterface" +msgstr "Ne pas insérer le widget JappixMini dans l'interface web" + +#: ../../addon/jappixmini/jappixmini.php:274 +msgid "Jabber username" +msgstr "Utilisateur Jabber" + +#: ../../addon/jappixmini/jappixmini.php:277 +msgid "Jabber server" +msgstr "Serveur Jabber" + +#: ../../addon/jappixmini/jappixmini.php:281 +msgid "Jabber BOSH host" +msgstr "Hôte BOSH (proxy) Jabber" + +#: ../../addon/jappixmini/jappixmini.php:285 +msgid "Jabber password" +msgstr "Mot de passe Jabber" + +#: ../../addon/jappixmini/jappixmini.php:290 +msgid "Encrypt Jabber password with Friendica password (recommended)" +msgstr "Chiffrer le mot de passe Jabber avec le mot de passe Friendica (recommandé)" + +#: ../../addon/jappixmini/jappixmini.php:293 +msgid "Friendica password" +msgstr "Mot de passe Friendica" + +#: ../../addon/jappixmini/jappixmini.php:296 +msgid "Approve subscription requests from Friendica contacts automatically" +msgstr "Approuver les contacts Friendica automatiquement" + +#: ../../addon/jappixmini/jappixmini.php:299 +msgid "Subscribe to Friendica contacts automatically" +msgstr "S'inscrire aux contacts Friendica automatiquement" + +#: ../../addon/jappixmini/jappixmini.php:302 +msgid "Purge internal list of jabber addresses of contacts" +msgstr "Purger la liste interne d'adresses Jabber" + +#: ../../addon/jappixmini/jappixmini.php:308 +msgid "Add contact" +msgstr "Ajouter un contact" + +#: ../../addon/viewsrc/viewsrc.php:37 +msgid "View Source" +msgstr "Voir la source" + +#: ../../addon/statusnet/statusnet.php:134 +msgid "Post to StatusNet" +msgstr "Poster sur StatusNet" + +#: ../../addon/statusnet/statusnet.php:176 +msgid "" +"Please contact your site administrator.
    The provided API URL is not " +"valid." +msgstr "Merci de contacter l'administrateur du site.
    L'URL d'API fournie est invalide." + +#: ../../addon/statusnet/statusnet.php:204 +msgid "We could not contact the StatusNet API with the Path you entered." +msgstr "Nous n'avons pas pu contacter l'API StatusNet avec le chemin saisi." + +#: ../../addon/statusnet/statusnet.php:232 +msgid "StatusNet settings updated." +msgstr "Réglages StatusNet mis-à-jour." + +#: ../../addon/statusnet/statusnet.php:257 +msgid "StatusNet Posting Settings" +msgstr "Réglages du connecteur StatusNet" + +#: ../../addon/statusnet/statusnet.php:271 +msgid "Globally Available StatusNet OAuthKeys" +msgstr "Clés OAuth StatusNet universelles" + +#: ../../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 "Ce sont des paires de clés OAuth préconfigurées pour certains serveurs StatusNet courants. Si vous utilisez l'un d'entre eux, merci de vous servir de ces clés. Autrement, vous pouvez vous connecter à n'importer quelle autre instance de StatusNet (voir ci-dessous)." + +#: ../../addon/statusnet/statusnet.php:280 +msgid "Provide your own OAuth Credentials" +msgstr "Fournissez vos propres paramètres OAuth" + +#: ../../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 "Pas de paire de clé trouvée pour StatusNet. Enregistrez votre compte Friendica comme un client \"desktop\" sur votre compte StatusNet, copiez la paire de clé ici et entrez la racine de l'API.
    Avant d'enregistrer votre propre paire de clé, assurez-vous auprès de l'administrateur qu'il n'y a pas déjà une paire de clé pour cette instance de Friendica chez votre fournisseur StatusNet préféré." + +#: ../../addon/statusnet/statusnet.php:283 +msgid "OAuth Consumer Key" +msgstr "Clé de consommateur OAuth" + +#: ../../addon/statusnet/statusnet.php:286 +msgid "OAuth Consumer Secret" +msgstr "Secret d'utilisateur OAuth" + +#: ../../addon/statusnet/statusnet.php:289 +msgid "Base API Path (remember the trailing /)" +msgstr "Chemin de base de l'API (n'oubliez pas le / final)" + +#: ../../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 "Pour vous connecter à votre compte StatusNet, cliquez sur le bouton ci-dessous pour obtenir un code de sécurité de StatusNet, que vous aurez à coller dans la boîte ci-dessous. Ensuite, validez le formulaire. Seuls vos articles <strong>publics</strong> seront postés sur StatusNet." + +#: ../../addon/statusnet/statusnet.php:311 +msgid "Log in with StatusNet" +msgstr "Se connecter à StatusNet" + +#: ../../addon/statusnet/statusnet.php:313 +msgid "Copy the security code from StatusNet here" +msgstr "Coller le code de sécurité de StatusNet ici" + +#: ../../addon/statusnet/statusnet.php:319 +msgid "Cancel Connection Process" +msgstr "Annuler le processus de connexion" + +#: ../../addon/statusnet/statusnet.php:321 +msgid "Current StatusNet API is" +msgstr "L'API StatusNet courante est" + +#: ../../addon/statusnet/statusnet.php:322 +msgid "Cancel StatusNet Connection" +msgstr "Annuler la connexion à StatusNet" + +#: ../../addon/statusnet/statusnet.php:333 ../../addon/twitter/twitter.php:189 +msgid "Currently connected to: " +msgstr "Actuellement connecté à: " + +#: ../../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 "En cas d'activation, toutes vos notices publiques seront transmises au compte StatusNet associé. Vous pourrez choisir de le faire par défaut (ici), ou bien pour chaque notice séparément lors de sa rédaction." + +#: ../../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 "Note: Du fait de vos réglages de vie privée (Cacher les détails de votre profil des visiteurs inconnus?), le lien potentiellement inclus dans les messages publics relayés vers StatusNet conduira les visiteurs vers une page blanche les informant que leur accès à votre profil a été restreint." + +#: ../../addon/statusnet/statusnet.php:339 +msgid "Allow posting to StatusNet" +msgstr "Autoriser la publication sur StatusNet" + +#: ../../addon/statusnet/statusnet.php:342 +msgid "Send public postings to StatusNet by default" +msgstr "Par défaut, envoyer les notices publiques à StatusNet" + +#: ../../addon/statusnet/statusnet.php:345 +msgid "Send linked #-tags and @-names to StatusNet" +msgstr "Envoyer les liens vers les #-tags et les @-noms sur StatusNet" + +#: ../../addon/statusnet/statusnet.php:350 ../../addon/twitter/twitter.php:206 +msgid "Clear OAuth configuration" +msgstr "Effacer la configuration OAuth" + +#: ../../addon/statusnet/statusnet.php:568 +msgid "API URL" +msgstr "URL de l'API" + +#: ../../addon/infiniteimprobabilitydrive/infiniteimprobabilitydrive.php:19 +msgid "Infinite Improbability Drive" +msgstr "Générateur d'improbabilté infinie" + +#: ../../addon/tumblr/tumblr.php:36 +msgid "Post to Tumblr" +msgstr "Publier sur Tumblr" + +#: ../../addon/tumblr/tumblr.php:67 +msgid "Tumblr Post Settings" +msgstr "Réglages de Tumblr" + +#: ../../addon/tumblr/tumblr.php:69 +msgid "Enable Tumblr Post Plugin" +msgstr "Activer l'extension Tumblr" + +#: ../../addon/tumblr/tumblr.php:74 +msgid "Tumblr login" +msgstr "Login Tumblr" + +#: ../../addon/tumblr/tumblr.php:79 +msgid "Tumblr password" +msgstr "Mot de passe Tumblr" + +#: ../../addon/tumblr/tumblr.php:84 +msgid "Post to Tumblr by default" +msgstr "Publier sur Tumblr par défaut" + +#: ../../addon/numfriends/numfriends.php:46 +msgid "Numfriends settings updated." +msgstr "Réglages numfriends sauvés." + +#: ../../addon/numfriends/numfriends.php:77 +msgid "Numfriends Settings" +msgstr "Réglages de numfriends" + +#: ../../addon/gnot/gnot.php:48 +msgid "Gnot settings updated." +msgstr "Réglages Gnot sauvés." + +#: ../../addon/gnot/gnot.php:79 +msgid "Gnot Settings" +msgstr "Réglages Gnot" + +#: ../../addon/gnot/gnot.php:81 +msgid "" +"Allows threading of email comment notifications on Gmail and anonymising the" +" subject line." +msgstr "Autorise l'arborescence des notifications de commentaires sur GMail, et rend la ligne 'Sujet' anonyme." + +#: ../../addon/gnot/gnot.php:82 +msgid "Enable this plugin/addon?" +msgstr "Activer cette extension?" + +#: ../../addon/gnot/gnot.php:97 +#, php-format +msgid "[Friendica:Notify] Comment to conversation #%d" +msgstr "[Friendica:Notification] Commentaire sur la conversation #%d" + +#: ../../addon/wppost/wppost.php:42 msgid "Post to Wordpress" msgstr "Poster sur WordPress" -#: ../../addon/wppost/wppost.php:73 +#: ../../addon/wppost/wppost.php:76 msgid "WordPress Post Settings" msgstr "Réglages WordPress" -#: ../../addon/wppost/wppost.php:75 +#: ../../addon/wppost/wppost.php:78 msgid "Enable WordPress Post Plugin" msgstr "Activer l'extension WordPress" -#: ../../addon/wppost/wppost.php:80 +#: ../../addon/wppost/wppost.php:83 msgid "WordPress username" msgstr "Utilisateur WordPress" -#: ../../addon/wppost/wppost.php:85 +#: ../../addon/wppost/wppost.php:88 msgid "WordPress password" msgstr "Mot de passe WordPress" -#: ../../addon/wppost/wppost.php:90 +#: ../../addon/wppost/wppost.php:93 msgid "WordPress API URL" msgstr "URL de l'API WordPress" -#: ../../addon/wppost/wppost.php:95 +#: ../../addon/wppost/wppost.php:98 msgid "Post to WordPress by default" msgstr "Publier sur WordPress par défaut" -#: ../../include/notifier.php:616 ../../include/delivery.php:415 -msgid "(no subject)" -msgstr "(sans titre)" +#: ../../addon/wppost/wppost.php:103 +msgid "Provide a backlink to the Friendica post" +msgstr "Fournir un rétrolien vers le message sur Friendica" + +#: ../../addon/wppost/wppost.php:207 +msgid "Read the original post and comment stream on Friendica" +msgstr "Lire le message d'origine et le flux des commentaires sur Friendica" + +#: ../../addon/showmore/showmore.php:38 +msgid "\"Show more\" Settings" +msgstr "Réglages de \"Show more\"" + +#: ../../addon/showmore/showmore.php:41 +msgid "Enable Show More" +msgstr "Activer \"Show more\"" + +#: ../../addon/showmore/showmore.php:44 +msgid "Cutting posts after how much characters" +msgstr "Coupure après combien de caractères" + +#: ../../addon/showmore/showmore.php:65 +msgid "Show More Settings saved." +msgstr "Réglages \"Show more\" sauvés." + +#: ../../addon/piwik/piwik.php:79 +msgid "" +"This website is tracked using the Piwik " +"analytics tool." +msgstr "Ce site collecte ses statistiques grâce à Piwik." + +#: ../../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 "Si vous ne voulez pas que vos visites soient collectées par ce biais, vous pouvez activer un cookie qui empêchera Piwik de tenir compte de vos visites ultérieures (opt-out)." + +#: ../../addon/piwik/piwik.php:90 +msgid "Piwik Base URL" +msgstr "URL de base de Piwik" + +#: ../../addon/piwik/piwik.php:90 +msgid "" +"Absolute path to your Piwik installation. (without protocol (http/s), with " +"trailing slash)" +msgstr "Chemin absolu vers votre installation Piwik. (sans protocole (http/s), avec un / terminal)" + +#: ../../addon/piwik/piwik.php:91 +msgid "Site ID" +msgstr "ID du site" + +#: ../../addon/piwik/piwik.php:92 +msgid "Show opt-out cookie link?" +msgstr "Montrer le lien d'opt-out?" + +#: ../../addon/piwik/piwik.php:93 +msgid "Asynchronous tracking" +msgstr "Suivi asynchrone" + +#: ../../addon/twitter/twitter.php:73 +msgid "Post to Twitter" +msgstr "Poster sur Twitter" + +#: ../../addon/twitter/twitter.php:122 +msgid "Twitter settings updated." +msgstr "Réglages de Twitter mis-à-jour." + +#: ../../addon/twitter/twitter.php:146 +msgid "Twitter Posting Settings" +msgstr "Réglages du connecteur Twitter" + +#: ../../addon/twitter/twitter.php:153 +msgid "" +"No consumer key pair for Twitter found. Please contact your site " +"administrator." +msgstr "Pas de paire de clés pour Twitter. Merci de contacter l'administrateur du site." + +#: ../../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 "Sur cette instance de Friendica, le connecteur Twitter a été activé, mais vous n'avez pas encore connecté votre compte local à votre compte Twitter. Pour ce faire, cliquer sur le bouton ci-dessous. Vous obtiendrez alors un 'PIN' de Twitter, que vous devrez copier dans le champ ci-dessous, puis soumettre le formulaire. Seuls vos messages publics seront transmis à Twitter." + +#: ../../addon/twitter/twitter.php:173 +msgid "Log in with Twitter" +msgstr "Se connecter à Twitter" + +#: ../../addon/twitter/twitter.php:175 +msgid "Copy the PIN from Twitter here" +msgstr "Copier le PIN de Twitter ici" + +#: ../../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 "En cas d'activation, toutes vos notices publiques seront transmises au compte Twitter associé. Vous pourrez choisir de le faire par défaut (ici), ou bien pour chaque notice séparément lors de sa rédaction." + +#: ../../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 "Note: Du fait de vos réglages de vie privée (Cacher les détails de votre profil des visiteurs inconnus?), le lien potentiellement inclus dans les messages publics relayés vers Twitter conduira les visiteurs vers une page blanche les informant que leur accès à votre profil a été restreint." + +#: ../../addon/twitter/twitter.php:195 +msgid "Allow posting to Twitter" +msgstr "Autoriser la publication sur Twitter" + +#: ../../addon/twitter/twitter.php:198 +msgid "Send public postings to Twitter by default" +msgstr "Envoyer les éléments publics sur Twitter par défaut" + +#: ../../addon/twitter/twitter.php:201 +msgid "Send linked #-tags and @-names to Twitter" +msgstr "Envoyer les liens vers les #-tags et les @-noms sur Twitter" + +#: ../../addon/twitter/twitter.php:396 +msgid "Consumer key" +msgstr "Clé utilisateur" + +#: ../../addon/twitter/twitter.php:397 +msgid "Consumer secret" +msgstr "Secret utilisateur" + +#: ../../addon/irc/irc.php:44 +msgid "IRC Settings" +msgstr "Réglages IRC" + +#: ../../addon/irc/irc.php:46 +msgid "Channel(s) to auto connect (comma separated)" +msgstr "Canaux à rejoindre automatiquement (séparés par des virgules)" + +#: ../../addon/irc/irc.php:51 +msgid "Popular Channels (comma separated)" +msgstr "Canaux populaires (séparés par des virgules)" + +#: ../../addon/irc/irc.php:69 +msgid "IRC settings saved." +msgstr "Réglages IRC sauvés." + +#: ../../addon/irc/irc.php:74 +msgid "IRC Chatroom" +msgstr "Salon IRC" + +#: ../../addon/irc/irc.php:96 +msgid "Popular Channels" +msgstr "Canaux populaires" + +#: ../../addon/fromapp/fromapp.php:38 +msgid "Fromapp settings updated." +msgstr "Réglages FromApp mis-à-jour" + +#: ../../addon/fromapp/fromapp.php:64 +msgid "FromApp Settings" +msgstr "FromApp" + +#: ../../addon/fromapp/fromapp.php:66 +msgid "" +"The application name you would like to show your posts originating from." +msgstr "Le nom d'application que vous souhaiteriez que vos publications affichent comme source." + +#: ../../addon/fromapp/fromapp.php:70 +msgid "Use this application name even if another application was used." +msgstr "Afficher ce nom d'application même si une autre a été utilisée." + +#: ../../addon/blogger/blogger.php:42 +msgid "Post to blogger" +msgstr "Poster vers Blogger" + +#: ../../addon/blogger/blogger.php:74 +msgid "Blogger Post Settings" +msgstr "Réglages Blogger" + +#: ../../addon/blogger/blogger.php:76 +msgid "Enable Blogger Post Plugin" +msgstr "Activer le connecteur Blogger" + +#: ../../addon/blogger/blogger.php:81 +msgid "Blogger username" +msgstr "Utilisateur Blogger" + +#: ../../addon/blogger/blogger.php:86 +msgid "Blogger password" +msgstr "Mot de passe Blogger" + +#: ../../addon/blogger/blogger.php:91 +msgid "Blogger API URL" +msgstr "URL de l'API Blogger" + +#: ../../addon/blogger/blogger.php:96 +msgid "Post to Blogger by default" +msgstr "Poster vers Blogger par défaut" + +#: ../../addon/posterous/posterous.php:37 +msgid "Post to Posterous" +msgstr "Envoyer à Posterous" + +#: ../../addon/posterous/posterous.php:70 +msgid "Posterous Post Settings" +msgstr "Réglages de l'envoi à Posterous" + +#: ../../addon/posterous/posterous.php:72 +msgid "Enable Posterous Post Plugin" +msgstr "Activer l'envoi à Posterous" + +#: ../../addon/posterous/posterous.php:77 +msgid "Posterous login" +msgstr "Login Posterous" + +#: ../../addon/posterous/posterous.php:82 +msgid "Posterous password" +msgstr "Mot de passe" + +#: ../../addon/posterous/posterous.php:87 +msgid "Posterous site ID" +msgstr "ID du site Posterous" + +#: ../../addon/posterous/posterous.php:92 +msgid "Posterous API token" +msgstr "Clé d'API Posterous" + +#: ../../addon/posterous/posterous.php:97 +msgid "Post to Posterous by default" +msgstr "Envoyer à Posterous par défaut" + +#: ../../view/theme/cleanzero/config.php:82 +#: ../../view/theme/diabook/config.php:192 +#: ../../view/theme/quattro/config.php:55 ../../view/theme/dispy/config.php:72 +msgid "Theme settings" +msgstr "Réglages du thème graphique" + +#: ../../view/theme/cleanzero/config.php:83 +msgid "Set resize level for images in posts and comments (width and height)" +msgstr "Choisir une taille pour les images dans les publications et commentaires (largeur et hauteur)" + +#: ../../view/theme/cleanzero/config.php:84 +#: ../../view/theme/diabook/config.php:193 +#: ../../view/theme/dispy/config.php:73 +msgid "Set font-size for posts and comments" +msgstr "Réglez 'font-size' (taille de police) pour publications et commentaires" + +#: ../../view/theme/cleanzero/config.php:85 +msgid "Set theme width" +msgstr "Largeur du thème" + +#: ../../view/theme/cleanzero/config.php:86 +#: ../../view/theme/quattro/config.php:57 +msgid "Color scheme" +msgstr "Palette de couleurs" + +#: ../../view/theme/diabook/theme.php:127 ../../include/nav.php:49 +#: ../../include/nav.php:115 +msgid "Your posts and conversations" +msgstr "Vos notices et conversations" + +#: ../../view/theme/diabook/theme.php:128 ../../include/nav.php:50 +msgid "Your profile page" +msgstr "Votre page de profil" + +#: ../../view/theme/diabook/theme.php:129 +msgid "Your contacts" +msgstr "Vos contacts" + +#: ../../view/theme/diabook/theme.php:130 ../../include/nav.php:51 +msgid "Your photos" +msgstr "Vos photos" + +#: ../../view/theme/diabook/theme.php:131 ../../include/nav.php:52 +msgid "Your events" +msgstr "Vos événements" + +#: ../../view/theme/diabook/theme.php:132 ../../include/nav.php:53 +msgid "Personal notes" +msgstr "Notes personnelles" + +#: ../../view/theme/diabook/theme.php:132 ../../include/nav.php:53 +msgid "Your personal photos" +msgstr "Vos photos personnelles" + +#: ../../view/theme/diabook/theme.php:134 +#: ../../view/theme/diabook/theme.php:643 +#: ../../view/theme/diabook/theme.php:747 +#: ../../view/theme/diabook/config.php:201 +msgid "Community Pages" +msgstr "Pages de Communauté" + +#: ../../view/theme/diabook/theme.php:490 +#: ../../view/theme/diabook/theme.php:749 +#: ../../view/theme/diabook/config.php:203 +msgid "Community Profiles" +msgstr "Profils communautaires" + +#: ../../view/theme/diabook/theme.php:511 +#: ../../view/theme/diabook/theme.php:754 +#: ../../view/theme/diabook/config.php:208 +msgid "Last users" +msgstr "Derniers utilisateurs" + +#: ../../view/theme/diabook/theme.php:540 +#: ../../view/theme/diabook/theme.php:756 +#: ../../view/theme/diabook/config.php:210 +msgid "Last likes" +msgstr "Dernièrement aimé" + +#: ../../view/theme/diabook/theme.php:585 +#: ../../view/theme/diabook/theme.php:755 +#: ../../view/theme/diabook/config.php:209 +msgid "Last photos" +msgstr "Dernières photos" + +#: ../../view/theme/diabook/theme.php:622 +#: ../../view/theme/diabook/theme.php:752 +#: ../../view/theme/diabook/config.php:206 +msgid "Find Friends" +msgstr "Trouver des amis" + +#: ../../view/theme/diabook/theme.php:623 +msgid "Local Directory" +msgstr "Annuaire local" + +#: ../../view/theme/diabook/theme.php:625 ../../include/contact_widgets.php:35 +msgid "Similar Interests" +msgstr "Intérêts similaires" + +#: ../../view/theme/diabook/theme.php:627 ../../include/contact_widgets.php:37 +msgid "Invite Friends" +msgstr "Inviter des amis" + +#: ../../view/theme/diabook/theme.php:678 +#: ../../view/theme/diabook/theme.php:748 +#: ../../view/theme/diabook/config.php:202 +msgid "Earth Layers" +msgstr "Géolocalisation" + +#: ../../view/theme/diabook/theme.php:683 +msgid "Set zoomfactor for Earth Layers" +msgstr "Régler le niveau de zoom pour la géolocalisation" + +#: ../../view/theme/diabook/theme.php:684 +#: ../../view/theme/diabook/config.php:199 +msgid "Set longitude (X) for Earth Layers" +msgstr "Régler la longitude (X) pour la géolocalisation" + +#: ../../view/theme/diabook/theme.php:685 +#: ../../view/theme/diabook/config.php:200 +msgid "Set latitude (Y) for Earth Layers" +msgstr "Régler la latitude (Y) pour la géolocalisation" + +#: ../../view/theme/diabook/theme.php:698 +#: ../../view/theme/diabook/theme.php:750 +#: ../../view/theme/diabook/config.php:204 +msgid "Help or @NewHere ?" +msgstr "Aide ou @NewHere?" + +#: ../../view/theme/diabook/theme.php:705 +#: ../../view/theme/diabook/theme.php:751 +#: ../../view/theme/diabook/config.php:205 +msgid "Connect Services" +msgstr "Connecter des services" + +#: ../../view/theme/diabook/theme.php:712 +#: ../../view/theme/diabook/theme.php:753 +msgid "Last Tweets" +msgstr "Derniers tweets" + +#: ../../view/theme/diabook/theme.php:715 +#: ../../view/theme/diabook/config.php:197 +msgid "Set twitter search term" +msgstr "Rechercher un terme twitter" + +#: ../../view/theme/diabook/theme.php:735 +#: ../../view/theme/diabook/theme.php:736 +#: ../../view/theme/diabook/theme.php:737 +#: ../../view/theme/diabook/theme.php:738 +#: ../../view/theme/diabook/theme.php:739 +#: ../../view/theme/diabook/theme.php:740 +#: ../../view/theme/diabook/theme.php:741 +#: ../../view/theme/diabook/theme.php:742 +#: ../../view/theme/diabook/theme.php:743 +#: ../../view/theme/diabook/theme.php:744 ../../include/acl_selectors.php:288 +msgid "don't show" +msgstr "cacher" + +#: ../../view/theme/diabook/theme.php:735 +#: ../../view/theme/diabook/theme.php:736 +#: ../../view/theme/diabook/theme.php:737 +#: ../../view/theme/diabook/theme.php:738 +#: ../../view/theme/diabook/theme.php:739 +#: ../../view/theme/diabook/theme.php:740 +#: ../../view/theme/diabook/theme.php:741 +#: ../../view/theme/diabook/theme.php:742 +#: ../../view/theme/diabook/theme.php:743 +#: ../../view/theme/diabook/theme.php:744 ../../include/acl_selectors.php:287 +msgid "show" +msgstr "montrer" + +#: ../../view/theme/diabook/theme.php:745 +msgid "Show/hide boxes at right-hand column:" +msgstr "Montrer/cacher les boîtes dans la colonne de droite :" + +#: ../../view/theme/diabook/config.php:194 +#: ../../view/theme/dispy/config.php:74 +msgid "Set line-height for posts and comments" +msgstr "Réglez 'line-height' (hauteur de police) pour publications et commentaires" + +#: ../../view/theme/diabook/config.php:195 +msgid "Set resolution for middle column" +msgstr "Réglez la résolution de la colonne centrale" + +#: ../../view/theme/diabook/config.php:196 +msgid "Set color scheme" +msgstr "Choisir le schéma de couleurs" + +#: ../../view/theme/diabook/config.php:198 +msgid "Set zoomfactor for Earth Layer" +msgstr "Niveau de zoom" + +#: ../../view/theme/diabook/config.php:207 +msgid "Last tweets" +msgstr "Derniers tweets" + +#: ../../view/theme/quattro/config.php:56 +msgid "Alignment" +msgstr "Alignement" + +#: ../../view/theme/quattro/config.php:56 +msgid "Left" +msgstr "Gauche" + +#: ../../view/theme/quattro/config.php:56 +msgid "Center" +msgstr "Centre" + +#: ../../view/theme/dispy/config.php:75 +msgid "Set colour scheme" +msgstr "Choisir le schéma de couleurs" + +#: ../../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 +msgid "Birthday:" +msgstr "Anniversaire:" + +#: ../../include/profile_advanced.php:34 +msgid "Age:" +msgstr "Age:" + +#: ../../include/profile_advanced.php:43 +#, php-format +msgid "for %1$d %2$s" +msgstr "depuis %1$d %2$s" + +#: ../../include/profile_advanced.php:52 +msgid "Tags:" +msgstr "Tags :" + +#: ../../include/profile_advanced.php:56 +msgid "Religion:" +msgstr "Religion:" + +#: ../../include/profile_advanced.php:60 +msgid "Hobbies/Interests:" +msgstr "Passe-temps/Centres d'intérêt:" + +#: ../../include/profile_advanced.php:67 +msgid "Contact information and Social Networks:" +msgstr "Coordonnées/Réseaux sociaux:" + +#: ../../include/profile_advanced.php:69 +msgid "Musical interests:" +msgstr "Goûts musicaux:" + +#: ../../include/profile_advanced.php:71 +msgid "Books, literature:" +msgstr "Lectures:" + +#: ../../include/profile_advanced.php:73 +msgid "Television:" +msgstr "Télévision:" + +#: ../../include/profile_advanced.php:75 +msgid "Film/dance/culture/entertainment:" +msgstr "Cinéma/Danse/Culture/Divertissement:" + +#: ../../include/profile_advanced.php:77 +msgid "Love/Romance:" +msgstr "Amour/Romance:" + +#: ../../include/profile_advanced.php:79 +msgid "Work/employment:" +msgstr "Activité professionnelle/Occupation:" + +#: ../../include/profile_advanced.php:81 +msgid "School/education:" +msgstr "Études/Formation:" #: ../../include/contact_selectors.php:32 msgid "Unknown | Not categorised" @@ -4387,19 +7312,7 @@ msgstr "Toutes les heures" msgid "Twice daily" msgstr "Deux fois par jour" -#: ../../include/contact_selectors.php:59 -msgid "Daily" -msgstr "Chaque jour" - -#: ../../include/contact_selectors.php:60 -msgid "Weekly" -msgstr "Chaque semaine" - -#: ../../include/contact_selectors.php:61 -msgid "Monthly" -msgstr "Chaque mois" - -#: ../../include/contact_selectors.php:78 +#: ../../include/contact_selectors.php:77 msgid "OStatus" msgstr "OStatus" @@ -4407,10 +7320,22 @@ msgstr "OStatus" msgid "RSS/Atom" msgstr "RSS/Atom" -#: ../../include/contact_selectors.php:78 +#: ../../include/contact_selectors.php:82 msgid "Zot!" msgstr "Zot!" +#: ../../include/contact_selectors.php:83 +msgid "LinkedIn" +msgstr "LinkedIn" + +#: ../../include/contact_selectors.php:84 +msgid "XMPP/IM" +msgstr "XMPP/IM" + +#: ../../include/contact_selectors.php:85 +msgid "MySpace" +msgstr "MySpace" + #: ../../include/profile_selectors.php:6 msgid "Male" msgstr "Masculin" @@ -4467,737 +7392,596 @@ msgstr "Autre" msgid "Undecided" msgstr "Indécis" -#: ../../include/profile_selectors.php:19 +#: ../../include/profile_selectors.php:23 msgid "Males" msgstr "Hommes" -#: ../../include/profile_selectors.php:19 +#: ../../include/profile_selectors.php:23 msgid "Females" msgstr "Femmes" -#: ../../include/profile_selectors.php:19 +#: ../../include/profile_selectors.php:23 msgid "Gay" msgstr "Gay" -#: ../../include/profile_selectors.php:19 +#: ../../include/profile_selectors.php:23 msgid "Lesbian" msgstr "Lesbienne" -#: ../../include/profile_selectors.php:19 +#: ../../include/profile_selectors.php:23 msgid "No Preference" msgstr "Sans préférence" -#: ../../include/profile_selectors.php:19 +#: ../../include/profile_selectors.php:23 msgid "Bisexual" msgstr "Bisexuel" -#: ../../include/profile_selectors.php:19 +#: ../../include/profile_selectors.php:23 msgid "Autosexual" msgstr "Auto-sexuel" -#: ../../include/profile_selectors.php:19 +#: ../../include/profile_selectors.php:23 msgid "Abstinent" msgstr "Abstinent" -#: ../../include/profile_selectors.php:19 +#: ../../include/profile_selectors.php:23 msgid "Virgin" msgstr "Vierge" -#: ../../include/profile_selectors.php:19 +#: ../../include/profile_selectors.php:23 msgid "Deviant" msgstr "Déviant" -#: ../../include/profile_selectors.php:19 +#: ../../include/profile_selectors.php:23 msgid "Fetish" msgstr "Fétichiste" -#: ../../include/profile_selectors.php:19 +#: ../../include/profile_selectors.php:23 msgid "Oodles" msgstr "Oodles" -#: ../../include/profile_selectors.php:19 +#: ../../include/profile_selectors.php:23 msgid "Nonsexual" msgstr "Non-sexuel" -#: ../../include/profile_selectors.php:33 +#: ../../include/profile_selectors.php:42 msgid "Single" msgstr "Célibataire" -#: ../../include/profile_selectors.php:33 +#: ../../include/profile_selectors.php:42 msgid "Lonely" msgstr "Esseulé" -#: ../../include/profile_selectors.php:33 +#: ../../include/profile_selectors.php:42 msgid "Available" msgstr "Disponible" -#: ../../include/profile_selectors.php:33 +#: ../../include/profile_selectors.php:42 msgid "Unavailable" msgstr "Indisponible" -#: ../../include/profile_selectors.php:33 +#: ../../include/profile_selectors.php:42 +msgid "Has crush" +msgstr "Attiré par quelqu'un" + +#: ../../include/profile_selectors.php:42 +msgid "Infatuated" +msgstr "Entiché" + +#: ../../include/profile_selectors.php:42 msgid "Dating" msgstr "Dans une relation" -#: ../../include/profile_selectors.php:33 +#: ../../include/profile_selectors.php:42 msgid "Unfaithful" msgstr "Infidèle" -#: ../../include/profile_selectors.php:33 +#: ../../include/profile_selectors.php:42 msgid "Sex Addict" msgstr "Accro au sexe" -#: ../../include/profile_selectors.php:33 +#: ../../include/profile_selectors.php:42 ../../include/user.php:278 +#: ../../include/user.php:282 msgid "Friends" msgstr "Amis" -#: ../../include/profile_selectors.php:33 +#: ../../include/profile_selectors.php:42 msgid "Friends/Benefits" msgstr "Amis par intérêt" -#: ../../include/profile_selectors.php:33 +#: ../../include/profile_selectors.php:42 msgid "Casual" msgstr "Casual" -#: ../../include/profile_selectors.php:33 +#: ../../include/profile_selectors.php:42 msgid "Engaged" msgstr "Fiancé" -#: ../../include/profile_selectors.php:33 +#: ../../include/profile_selectors.php:42 msgid "Married" msgstr "Marié" -#: ../../include/profile_selectors.php:33 +#: ../../include/profile_selectors.php:42 +msgid "Imaginarily married" +msgstr "Se croit marié" + +#: ../../include/profile_selectors.php:42 msgid "Partners" msgstr "Partenaire" -#: ../../include/profile_selectors.php:33 +#: ../../include/profile_selectors.php:42 msgid "Cohabiting" msgstr "En cohabitation" -#: ../../include/profile_selectors.php:33 +#: ../../include/profile_selectors.php:42 +msgid "Common law" +msgstr "Marié \"de fait\"/\"sui juris\" (concubin)" + +#: ../../include/profile_selectors.php:42 msgid "Happy" msgstr "Heureux" -#: ../../include/profile_selectors.php:33 -msgid "Not Looking" -msgstr "Sans recherche" +#: ../../include/profile_selectors.php:42 +msgid "Not looking" +msgstr "Pas intéressé" -#: ../../include/profile_selectors.php:33 +#: ../../include/profile_selectors.php:42 msgid "Swinger" msgstr "Échangiste" -#: ../../include/profile_selectors.php:33 +#: ../../include/profile_selectors.php:42 msgid "Betrayed" msgstr "Trahi(e)" -#: ../../include/profile_selectors.php:33 +#: ../../include/profile_selectors.php:42 msgid "Separated" msgstr "Séparé" -#: ../../include/profile_selectors.php:33 +#: ../../include/profile_selectors.php:42 msgid "Unstable" msgstr "Instable" -#: ../../include/profile_selectors.php:33 +#: ../../include/profile_selectors.php:42 msgid "Divorced" msgstr "Divorcé" -#: ../../include/profile_selectors.php:33 +#: ../../include/profile_selectors.php:42 +msgid "Imaginarily divorced" +msgstr "Se croit divorcé" + +#: ../../include/profile_selectors.php:42 msgid "Widowed" msgstr "Veuf/Veuve" -#: ../../include/profile_selectors.php:33 +#: ../../include/profile_selectors.php:42 msgid "Uncertain" msgstr "Incertain" -#: ../../include/profile_selectors.php:33 -msgid "Complicated" -msgstr "Compliqué" +#: ../../include/profile_selectors.php:42 +msgid "It's complicated" +msgstr "C'est compliqué" -#: ../../include/profile_selectors.php:33 +#: ../../include/profile_selectors.php:42 msgid "Don't care" msgstr "S'en désintéresse" -#: ../../include/profile_selectors.php:33 +#: ../../include/profile_selectors.php:42 msgid "Ask me" msgstr "Me demander" -#: ../../include/event.php:17 ../../include/bb2diaspora.php:233 +#: ../../include/event.php:20 ../../include/bb2diaspora.php:396 msgid "Starts:" msgstr "Débute:" -#: ../../include/event.php:27 ../../include/bb2diaspora.php:241 +#: ../../include/event.php:30 ../../include/bb2diaspora.php:404 msgid "Finishes:" msgstr "Finit:" -#: ../../include/acl_selectors.php:279 -msgid "Visible to everybody" -msgstr "Visible par tout le monde" +#: ../../include/delivery.php:457 ../../include/notifier.php:703 +msgid "(no subject)" +msgstr "(sans titre)" -#: ../../include/acl_selectors.php:280 -msgid "show" -msgstr "montrer" +#: ../../include/Scrape.php:576 +msgid " on Last.fm" +msgstr "sur Last.fm" -#: ../../include/acl_selectors.php:281 -msgid "don't show" -msgstr "ne pas montrer" - -#: ../../include/auth.php:27 -msgid "Logged out." -msgstr "Déconnecté." - -#: ../../include/bbcode.php:147 -msgid "Image/photo" -msgstr "Image/photo" - -#: ../../include/poller.php:457 -msgid "From: " -msgstr "De: " - -#: ../../include/Contact.php:125 ../../include/conversation.php:675 -msgid "View status" -msgstr "Voir le statut" - -#: ../../include/Contact.php:126 ../../include/conversation.php:676 -msgid "View profile" -msgstr "Voir le profil" - -#: ../../include/Contact.php:127 ../../include/conversation.php:677 -msgid "View photos" -msgstr "Voir les photos" - -#: ../../include/Contact.php:128 ../../include/Contact.php:141 -#: ../../include/conversation.php:678 -msgid "View recent" -msgstr "Voir nouveautés" - -#: ../../include/Contact.php:130 ../../include/Contact.php:141 -#: ../../include/conversation.php:680 -msgid "Send PM" -msgstr "Envoyer message privé" - -#: ../../include/datetime.php:44 ../../include/datetime.php:46 -msgid "Miscellaneous" -msgstr "Divers" - -#: ../../include/datetime.php:105 ../../include/datetime.php:237 -msgid "year" -msgstr "an" - -#: ../../include/datetime.php:110 ../../include/datetime.php:238 -msgid "month" -msgstr "mois" - -#: ../../include/datetime.php:115 ../../include/datetime.php:240 -msgid "day" -msgstr "jour" - -#: ../../include/datetime.php:228 -msgid "never" -msgstr "jamais" - -#: ../../include/datetime.php:234 -msgid "less than a second ago" -msgstr "il y a moins d'une seconde" - -#: ../../include/datetime.php:237 -msgid "years" -msgstr "ans" - -#: ../../include/datetime.php:238 -msgid "months" -msgstr "mois" - -#: ../../include/datetime.php:239 -msgid "week" -msgstr "semaine" - -#: ../../include/datetime.php:239 -msgid "weeks" -msgstr "semaines" - -#: ../../include/datetime.php:240 -msgid "days" -msgstr "jours" - -#: ../../include/datetime.php:241 -msgid "hour" -msgstr "heure" - -#: ../../include/datetime.php:241 -msgid "hours" -msgstr "heures" - -#: ../../include/datetime.php:242 -msgid "minute" -msgstr "minute" - -#: ../../include/datetime.php:242 -msgid "minutes" -msgstr "minutes" - -#: ../../include/datetime.php:243 -msgid "second" -msgstr "seconde" - -#: ../../include/datetime.php:243 -msgid "seconds" -msgstr "secondes" - -#: ../../include/datetime.php:250 -msgid " ago" -msgstr " auparavant" - -#: ../../include/datetime.php:421 ../../include/profile_advanced.php:30 -#: ../../include/items.php:1215 -msgid "Birthday:" -msgstr "Anniversaire:" - -#: ../../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:34 -msgid "Age:" -msgstr "Age:" - -#: ../../include/profile_advanced.php:49 -msgid "Religion:" -msgstr "Religion:" - -#: ../../include/profile_advanced.php:51 -msgid "About:" -msgstr "À propos:" - -#: ../../include/profile_advanced.php:53 -msgid "Hobbies/Interests:" -msgstr "Passe-temps/Centres d'intérêt:" - -#: ../../include/profile_advanced.php:55 -msgid "Contact information and Social Networks:" -msgstr "Coordonées/Réseaux sociaux:" - -#: ../../include/profile_advanced.php:57 -msgid "Musical interests:" -msgstr "Goûts musicaux:" - -#: ../../include/profile_advanced.php:59 -msgid "Books, literature:" -msgstr "Lectures:" - -#: ../../include/profile_advanced.php:61 -msgid "Television:" -msgstr "Télévision:" - -#: ../../include/profile_advanced.php:63 -msgid "Film/dance/culture/entertainment:" -msgstr "Cinéma/Danse/Culture/Divertissement:" - -#: ../../include/profile_advanced.php:65 -msgid "Love/Romance:" -msgstr "Amour/Romance:" - -#: ../../include/profile_advanced.php:67 -msgid "Work/employment:" -msgstr "Activité professionnelle/Occupation:" - -#: ../../include/profile_advanced.php:69 -msgid "School/education:" -msgstr "Études/Formation:" - -#: ../../include/text.php:232 +#: ../../include/text.php:243 msgid "prev" msgstr "précédent" -#: ../../include/text.php:234 +#: ../../include/text.php:245 msgid "first" msgstr "premier" -#: ../../include/text.php:263 +#: ../../include/text.php:274 msgid "last" msgstr "dernier" -#: ../../include/text.php:266 +#: ../../include/text.php:277 msgid "next" msgstr "suivant" -#: ../../include/text.php:546 +#: ../../include/text.php:295 +msgid "newer" +msgstr "Plus récent" + +#: ../../include/text.php:299 +msgid "older" +msgstr "Plus ancient" + +#: ../../include/text.php:597 msgid "No contacts" msgstr "Aucun contact" -#: ../../include/text.php:555 +#: ../../include/text.php:606 #, php-format msgid "%d Contact" msgid_plural "%d Contacts" msgstr[0] "%d contact" msgstr[1] "%d contacts" -#: ../../include/text.php:626 ../../include/nav.php:87 -msgid "Search" -msgstr "Recherche" +#: ../../include/text.php:719 +msgid "poke" +msgstr "" -#: ../../include/text.php:709 -msgid "Monday" -msgstr "Lundi" +#: ../../include/text.php:719 ../../include/conversation.php:210 +msgid "poked" +msgstr "" -#: ../../include/text.php:709 -msgid "Tuesday" -msgstr "Mardi" +#: ../../include/text.php:720 +msgid "ping" +msgstr "" -#: ../../include/text.php:709 -msgid "Wednesday" -msgstr "Mercredi" +#: ../../include/text.php:720 +msgid "pinged" +msgstr "" -#: ../../include/text.php:709 -msgid "Thursday" -msgstr "Jeudi" +#: ../../include/text.php:721 +msgid "prod" +msgstr "" -#: ../../include/text.php:709 -msgid "Friday" -msgstr "Vendredi" +#: ../../include/text.php:721 +msgid "prodded" +msgstr "" -#: ../../include/text.php:709 -msgid "Saturday" -msgstr "Samedi" +#: ../../include/text.php:722 +msgid "slap" +msgstr "" -#: ../../include/text.php:709 -msgid "Sunday" -msgstr "Dimanche" +#: ../../include/text.php:722 +msgid "slapped" +msgstr "" -#: ../../include/text.php:713 +#: ../../include/text.php:723 +msgid "finger" +msgstr "" + +#: ../../include/text.php:723 +msgid "fingered" +msgstr "" + +#: ../../include/text.php:724 +msgid "rebuff" +msgstr "" + +#: ../../include/text.php:724 +msgid "rebuffed" +msgstr "" + +#: ../../include/text.php:736 +msgid "happy" +msgstr "heureuse" + +#: ../../include/text.php:737 +msgid "sad" +msgstr "triste" + +#: ../../include/text.php:738 +msgid "mellow" +msgstr "suave" + +#: ../../include/text.php:739 +msgid "tired" +msgstr "fatiguée" + +#: ../../include/text.php:740 +msgid "perky" +msgstr "guillerette" + +#: ../../include/text.php:741 +msgid "angry" +msgstr "colérique" + +#: ../../include/text.php:742 +msgid "stupified" +msgstr "stupéfaite" + +#: ../../include/text.php:743 +msgid "puzzled" +msgstr "perplexe" + +#: ../../include/text.php:744 +msgid "interested" +msgstr "intéressée" + +#: ../../include/text.php:745 +msgid "bitter" +msgstr "amère" + +#: ../../include/text.php:746 +msgid "cheerful" +msgstr "entraînante" + +#: ../../include/text.php:747 +msgid "alive" +msgstr "vivante" + +#: ../../include/text.php:748 +msgid "annoyed" +msgstr "ennuyée" + +#: ../../include/text.php:749 +msgid "anxious" +msgstr "anxieuse" + +#: ../../include/text.php:750 +msgid "cranky" +msgstr "excentrique" + +#: ../../include/text.php:751 +msgid "disturbed" +msgstr "dérangée" + +#: ../../include/text.php:752 +msgid "frustrated" +msgstr "frustrée" + +#: ../../include/text.php:753 +msgid "motivated" +msgstr "motivée" + +#: ../../include/text.php:754 +msgid "relaxed" +msgstr "détendue" + +#: ../../include/text.php:755 +msgid "surprised" +msgstr "surprise" + +#: ../../include/text.php:921 msgid "January" msgstr "Janvier" -#: ../../include/text.php:713 +#: ../../include/text.php:921 msgid "February" msgstr "Février" -#: ../../include/text.php:713 +#: ../../include/text.php:921 msgid "March" msgstr "Mars" -#: ../../include/text.php:713 +#: ../../include/text.php:921 msgid "April" msgstr "Avril" -#: ../../include/text.php:713 +#: ../../include/text.php:921 msgid "May" msgstr "Mai" -#: ../../include/text.php:713 +#: ../../include/text.php:921 msgid "June" msgstr "Juin" -#: ../../include/text.php:713 +#: ../../include/text.php:921 msgid "July" msgstr "Juillet" -#: ../../include/text.php:713 +#: ../../include/text.php:921 msgid "August" msgstr "Août" -#: ../../include/text.php:713 +#: ../../include/text.php:921 msgid "September" msgstr "Septembre" -#: ../../include/text.php:713 +#: ../../include/text.php:921 msgid "October" msgstr "Octobre" -#: ../../include/text.php:713 +#: ../../include/text.php:921 msgid "November" msgstr "Novembre" -#: ../../include/text.php:713 +#: ../../include/text.php:921 msgid "December" msgstr "Décembre" -#: ../../include/text.php:783 +#: ../../include/text.php:1007 msgid "bytes" msgstr "octets" -#: ../../include/text.php:875 -msgid "Select an alternate language" -msgstr "Choisir une langue alternative" +#: ../../include/text.php:1034 ../../include/text.php:1046 +msgid "Click to open/close" +msgstr "Cliquer pour ouvrir/fermer" -#: ../../include/text.php:887 +#: ../../include/text.php:1219 ../../include/user.php:236 msgid "default" msgstr "défaut" -#: ../../include/nav.php:44 -msgid "End this session" -msgstr "Mettre fin à cette session" +#: ../../include/text.php:1231 +msgid "Select an alternate language" +msgstr "Choisir une langue alternative" -#: ../../include/nav.php:47 ../../include/nav.php:111 -msgid "Your posts and conversations" -msgstr "Vos notices et conversations" +#: ../../include/text.php:1441 +msgid "activity" +msgstr "activité" -#: ../../include/nav.php:48 -msgid "Your profile page" -msgstr "Votre page de profil" +#: ../../include/text.php:1444 +msgid "post" +msgstr "publication" -#: ../../include/nav.php:49 -msgid "Your photos" -msgstr "Vos photos" +#: ../../include/text.php:1599 +msgid "Item filed" +msgstr "Élément classé" -#: ../../include/nav.php:50 -msgid "Your events" -msgstr "Vos événements" +#: ../../include/diaspora.php:691 +msgid "Sharing notification from Diaspora network" +msgstr "Notification de partage du réseau Diaspora" -#: ../../include/nav.php:51 -msgid "Personal notes" -msgstr "Notes personnelles" +#: ../../include/diaspora.php:2211 +msgid "Attachments:" +msgstr "Pièces jointes : " -#: ../../include/nav.php:51 -msgid "Your personal photos" -msgstr "Vos photos personnelles" - -#: ../../include/nav.php:62 -msgid "Sign in" -msgstr "Se connecter" - -#: ../../include/nav.php:73 -msgid "Home Page" -msgstr "Page d'accueil" - -#: ../../include/nav.php:77 -msgid "Create an account" -msgstr "Créer un compte" - -#: ../../include/nav.php:82 -msgid "Help and documentation" -msgstr "Aide et documentation" - -#: ../../include/nav.php:85 -msgid "Apps" -msgstr "Applications" - -#: ../../include/nav.php:85 -msgid "Addon applications, utilities, games" -msgstr "Applications supplémentaires, utilitaires, jeux" - -#: ../../include/nav.php:87 -msgid "Search site content" -msgstr "Rechercher dans le contenu du site" - -#: ../../include/nav.php:97 -msgid "Conversations on this site" -msgstr "Conversations ayant cours sur ce site" - -#: ../../include/nav.php:99 -msgid "Directory" -msgstr "Annuaire" - -#: ../../include/nav.php:99 -msgid "People directory" -msgstr "Annuaire des utilisateurs" - -#: ../../include/nav.php:109 -msgid "Conversations from your friends" -msgstr "Conversations de vos amis" - -#: ../../include/nav.php:117 -msgid "Friend Requests" -msgstr "Demande d'amitié" - -#: ../../include/nav.php:122 -msgid "Private mail" -msgstr "Messages privés" - -#: ../../include/nav.php:125 -msgid "Manage" -msgstr "Gérer" - -#: ../../include/nav.php:125 -msgid "Manage other pages" -msgstr "Gérer les autres pages" - -#: ../../include/nav.php:130 -msgid "Manage/edit friends and contacts" -msgstr "Gérer/éditer les amitiés et contacts" - -#: ../../include/nav.php:137 -msgid "Admin" -msgstr "Admin" - -#: ../../include/nav.php:137 -msgid "Site setup and configuration" -msgstr "Démarrage et configuration du site" - -#: ../../include/nav.php:160 -msgid "Nothing new here" -msgstr "Rien de neuf ici" - -#: ../../include/conversation.php:210 ../../include/conversation.php:453 -msgid "Select" -msgstr "Sélectionner" - -#: ../../include/conversation.php:225 ../../include/conversation.php:550 -#: ../../include/conversation.php:551 -#, php-format -msgid "View %s's profile @ %s" -msgstr "Voir le profil de %s @ %s" - -#: ../../include/conversation.php:234 ../../include/conversation.php:562 -#, php-format -msgid "%s from %s" -msgstr "%s de %s" - -#: ../../include/conversation.php:250 -msgid "View in context" -msgstr "Voir dans le contexte" - -#: ../../include/conversation.php:356 -#, php-format -msgid "See all %d comments" -msgstr "Voir les %d commentaires" - -#: ../../include/conversation.php:416 -msgid "like" -msgstr "aime" - -#: ../../include/conversation.php:417 -msgid "dislike" -msgstr "n'aime pas" - -#: ../../include/conversation.php:419 -msgid "Share this" -msgstr "Partager ça" - -#: ../../include/conversation.php:419 -msgid "share" -msgstr "partager" - -#: ../../include/conversation.php:463 -msgid "add star" -msgstr "mett en avant" - -#: ../../include/conversation.php:464 -msgid "remove star" -msgstr "ne plus mettre en avant" - -#: ../../include/conversation.php:465 -msgid "toggle star status" -msgstr "mettre en avant" - -#: ../../include/conversation.php:468 -msgid "starred" -msgstr "mis en avant" - -#: ../../include/conversation.php:469 -msgid "add tag" -msgstr "ajouter un tag" - -#: ../../include/conversation.php:552 -msgid "to" -msgstr "à" - -#: ../../include/conversation.php:553 -msgid "Wall-to-Wall" -msgstr "Inter-mur" - -#: ../../include/conversation.php:554 -msgid "via Wall-To-Wall:" -msgstr "en Inter-mur:" - -#: ../../include/conversation.php:600 -msgid "Delete Selected Items" -msgstr "Supprimer les éléments sélectionnés" - -#: ../../include/conversation.php:730 -#, php-format -msgid "%s likes this." -msgstr "%s aime ça." - -#: ../../include/conversation.php:730 -#, php-format -msgid "%s doesn't like this." -msgstr "%s n'aime pas ça." - -#: ../../include/conversation.php:734 -#, php-format -msgid "%2$d people like this." -msgstr "%2$d personnes aiment ça." - -#: ../../include/conversation.php:736 -#, php-format -msgid "%2$d people don't like this." -msgstr "%2$d personnes n'aiment pas ça." - -#: ../../include/conversation.php:742 -msgid "and" -msgstr "et" - -#: ../../include/conversation.php:745 -#, php-format -msgid ", and %d other people" -msgstr ", et %d autres personnes" - -#: ../../include/conversation.php:746 -#, php-format -msgid "%s like this." -msgstr "%s aiment ça." - -#: ../../include/conversation.php:746 -#, php-format -msgid "%s don't like this." -msgstr "%s n'aiment pas ça." - -#: ../../include/conversation.php:766 -msgid "Visible to everybody" -msgstr "Visible par tout le monde" - -#: ../../include/conversation.php:768 -msgid "Please enter a video link/URL:" -msgstr "Entrez un lien/URL video :" - -#: ../../include/conversation.php:769 -msgid "Please enter an audio link/URL:" -msgstr "Entrez un lien/URL audio :" - -#: ../../include/conversation.php:770 -msgid "Tag term:" -msgstr "Tag : " - -#: ../../include/conversation.php:771 -msgid "Where are you right now?" -msgstr "Où êtes-vous présentemment?" - -#: ../../include/conversation.php:772 -msgid "Enter a title for this item" -msgstr "Saisissez un titre pour cet élément" - -#: ../../include/conversation.php:818 -msgid "Insert video link" -msgstr "Insérer un lien video" - -#: ../../include/conversation.php:819 -msgid "Insert audio link" -msgstr "Insérer un lien audio" - -#: ../../include/conversation.php:822 -msgid "Set title" -msgstr "Définir un titre" - -#: ../../include/bb2diaspora.php:51 +#: ../../include/network.php:849 msgid "view full size" msgstr "voir en pleine taille" -#: ../../include/bb2diaspora.php:102 -msgid "image/photo" -msgstr "image/photo" +#: ../../include/oembed.php:137 +msgid "Embedded content" +msgstr "Contenu incorporé" -#: ../../include/dba.php:31 -#, php-format -msgid "Cannot locate DNS info for database server '%s'" -msgstr "" -"Impossible de localiser les informations DNS pour le serveur de base de " -"données '%s'" +#: ../../include/oembed.php:146 +msgid "Embedding disabled" +msgstr "Incorporation désactivée" + +#: ../../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 "Un groupe supprimé a été recréé. Les permissions existantes pourraient s'appliquer à ce groupe et aux futurs membres. Si ce n'est pas le comportement attendu, merci de re-créer un autre groupe sous un autre nom." + +#: ../../include/group.php:176 +msgid "Default privacy group for new contacts" +msgstr "Paramètres de confidentialité par défaut pour les nouveaux contacts" + +#: ../../include/group.php:195 +msgid "Everybody" +msgstr "Tout le monde" + +#: ../../include/group.php:218 +msgid "edit" +msgstr "éditer" + +#: ../../include/group.php:240 +msgid "Edit group" +msgstr "Editer groupe" + +#: ../../include/group.php:241 +msgid "Create a new group" +msgstr "Créer un nouveau groupe" + +#: ../../include/group.php:242 +msgid "Contacts not in any group" +msgstr "Contacts n'appartenant à aucun groupe" + +#: ../../include/nav.php:46 ../../boot.php:911 +msgid "Logout" +msgstr "Se déconnecter" + +#: ../../include/nav.php:46 +msgid "End this session" +msgstr "Mettre fin à cette session" + +#: ../../include/nav.php:49 ../../boot.php:1665 +msgid "Status" +msgstr "Statut" + +#: ../../include/nav.php:64 +msgid "Sign in" +msgstr "Se connecter" + +#: ../../include/nav.php:77 +msgid "Home Page" +msgstr "Page d'accueil" + +#: ../../include/nav.php:81 +msgid "Create an account" +msgstr "Créer un compte" + +#: ../../include/nav.php:86 +msgid "Help and documentation" +msgstr "Aide et documentation" + +#: ../../include/nav.php:89 +msgid "Apps" +msgstr "Applications" + +#: ../../include/nav.php:89 +msgid "Addon applications, utilities, games" +msgstr "Applications supplémentaires, utilitaires, jeux" + +#: ../../include/nav.php:91 +msgid "Search site content" +msgstr "Rechercher dans le contenu du site" + +#: ../../include/nav.php:101 +msgid "Conversations on this site" +msgstr "Conversations ayant cours sur ce site" + +#: ../../include/nav.php:103 +msgid "Directory" +msgstr "Annuaire" + +#: ../../include/nav.php:103 +msgid "People directory" +msgstr "Annuaire des utilisateurs" + +#: ../../include/nav.php:113 +msgid "Conversations from your friends" +msgstr "Conversations de vos amis" + +#: ../../include/nav.php:121 +msgid "Friend Requests" +msgstr "Demande d'amitié" + +#: ../../include/nav.php:123 +msgid "See all notifications" +msgstr "Voir toute notification" + +#: ../../include/nav.php:124 +msgid "Mark all system notifications seen" +msgstr "Marquer toutes les notifications système comme 'vues'" + +#: ../../include/nav.php:128 +msgid "Private mail" +msgstr "Messages privés" + +#: ../../include/nav.php:129 +msgid "Inbox" +msgstr "Messages entrants" + +#: ../../include/nav.php:130 +msgid "Outbox" +msgstr "Messages sortants" + +#: ../../include/nav.php:134 +msgid "Manage" +msgstr "Gérer" + +#: ../../include/nav.php:134 +msgid "Manage other pages" +msgstr "Gérer les autres pages" + +#: ../../include/nav.php:138 ../../boot.php:1186 +msgid "Profiles" +msgstr "Profils" + +#: ../../include/nav.php:138 ../../boot.php:1186 +msgid "Manage/edit profiles" +msgstr "Gérer/éditer les profils" + +#: ../../include/nav.php:139 +msgid "Manage/edit friends and contacts" +msgstr "Gérer/éditer les amitiés et contacts" + +#: ../../include/nav.php:146 +msgid "Site setup and configuration" +msgstr "Démarrage et configuration du site" + +#: ../../include/nav.php:170 +msgid "Nothing new here" +msgstr "Rien de neuf ici" #: ../../include/contact_widgets.php:6 msgid "Add New Contact" @@ -5211,91 +7995,772 @@ msgstr "Entrez son adresse ou sa localisation web" msgid "Example: bob@example.com, http://example.com/barbara" msgstr "Exemple: bob@example.com, http://example.com/barbara" -#: ../../include/contact_widgets.php:18 -msgid "Invite Friends" -msgstr "Inviter des amis" - -#: ../../include/contact_widgets.php:24 +#: ../../include/contact_widgets.php:23 #, php-format msgid "%d invitation available" msgid_plural "%d invitations available" msgstr[0] "%d invitation disponible" msgstr[1] "%d invitations disponibles" -#: ../../include/contact_widgets.php:30 +#: ../../include/contact_widgets.php:29 msgid "Find People" msgstr "Trouver des personnes" -#: ../../include/contact_widgets.php:31 +#: ../../include/contact_widgets.php:30 msgid "Enter name or interest" msgstr "Entrez un nom ou un centre d'intérêt" -#: ../../include/contact_widgets.php:32 +#: ../../include/contact_widgets.php:31 msgid "Connect/Follow" msgstr "Connecter/Suivre" -#: ../../include/contact_widgets.php:33 +#: ../../include/contact_widgets.php:32 msgid "Examples: Robert Morgenstein, Fishing" msgstr "Exemples: Robert Morgenstein, Pêche" #: ../../include/contact_widgets.php:36 -msgid "Similar Interests" -msgstr "Intérêts similaires" +msgid "Random Profile" +msgstr "Profil au hasard" -#: ../../include/items.php:1829 -msgid "New mail received at " -msgstr "Nouvel email reçu à " +#: ../../include/contact_widgets.php:68 +msgid "Networks" +msgstr "Réseaux" -#: ../../include/items.php:2438 -msgid "A new person is sharing with you at " -msgstr "Une nouvelle personne partage avec vous à " +#: ../../include/contact_widgets.php:71 +msgid "All Networks" +msgstr "Tous réseaux" -#: ../../include/items.php:2438 -msgid "You have a new follower at " -msgstr "Vous avez un nouvel abonné à " +#: ../../include/contact_widgets.php:98 +msgid "Saved Folders" +msgstr "Dossiers sauvegardés" -#: ../../include/message.php:13 +#: ../../include/contact_widgets.php:101 ../../include/contact_widgets.php:129 +msgid "Everything" +msgstr "Tout" + +#: ../../include/contact_widgets.php:126 +msgid "Categories" +msgstr "Catégories" + +#: ../../include/auth.php:35 +msgid "Logged out." +msgstr "Déconnecté." + +#: ../../include/auth.php:114 +msgid "" +"We encountered a problem while logging in with the OpenID you provided. " +"Please check the correct spelling of the ID." +msgstr "Nous avons eu un souci avec l'OpenID que vous avez fourni. merci de vérifier l'orthographe correcte de ce dernier." + +#: ../../include/auth.php:114 +msgid "The error message was:" +msgstr "Le message d'erreur était :" + +#: ../../include/datetime.php:43 ../../include/datetime.php:45 +msgid "Miscellaneous" +msgstr "Divers" + +#: ../../include/datetime.php:153 ../../include/datetime.php:285 +msgid "year" +msgstr "an" + +#: ../../include/datetime.php:158 ../../include/datetime.php:286 +msgid "month" +msgstr "mois" + +#: ../../include/datetime.php:163 ../../include/datetime.php:288 +msgid "day" +msgstr "jour" + +#: ../../include/datetime.php:276 +msgid "never" +msgstr "jamais" + +#: ../../include/datetime.php:282 +msgid "less than a second ago" +msgstr "il y a moins d'une seconde" + +#: ../../include/datetime.php:287 +msgid "week" +msgstr "semaine" + +#: ../../include/datetime.php:289 +msgid "hour" +msgstr "heure" + +#: ../../include/datetime.php:289 +msgid "hours" +msgstr "heures" + +#: ../../include/datetime.php:290 +msgid "minute" +msgstr "minute" + +#: ../../include/datetime.php:290 +msgid "minutes" +msgstr "minutes" + +#: ../../include/datetime.php:291 +msgid "second" +msgstr "seconde" + +#: ../../include/datetime.php:291 +msgid "seconds" +msgstr "secondes" + +#: ../../include/datetime.php:300 +#, php-format +msgid "%1$d %2$s ago" +msgstr "%1$d %2$s auparavant" + +#: ../../include/datetime.php:472 ../../include/items.php:1683 +#, php-format +msgid "%s's birthday" +msgstr "Anniversaire de %s's" + +#: ../../include/datetime.php:473 ../../include/items.php:1684 +#, php-format +msgid "Happy Birthday %s" +msgstr "Joyeux anniversaire, %s !" + +#: ../../include/onepoll.php:399 +msgid "From: " +msgstr "De: " + +#: ../../include/bbcode.php:185 ../../include/bbcode.php:406 +msgid "Image/photo" +msgstr "Image/photo" + +#: ../../include/bbcode.php:371 ../../include/bbcode.php:391 +msgid "$1 wrote:" +msgstr "$1 a écrit:" + +#: ../../include/bbcode.php:410 ../../include/bbcode.php:411 +msgid "Encrypted content" +msgstr "Contenu chiffré" + +#: ../../include/dba.php:41 +#, php-format +msgid "Cannot locate DNS info for database server '%s'" +msgstr "Impossible de localiser les informations DNS pour le serveur de base de données '%s'" + +#: ../../include/message.php:15 ../../include/message.php:171 msgid "[no subject]" msgstr "[pas de sujet]" -#: ../../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 "" -"Un groupe supprimé a été recréé. Les permissions existantes " -"pourraient s'appliquer à ce groupe et aux futurs membres. " -"Si ce n'est pas le comportement attendu, merci de re-créer un autre groupe " -"sous un autre nom." +#: ../../include/acl_selectors.php:286 +msgid "Visible to everybody" +msgstr "Visible par tout le monde" -#: ../../include/group.php:165 -msgid "Create a new group" -msgstr "Créer un nouveau groupe" +#: ../../include/enotify.php:16 +msgid "Friendica Notification" +msgstr "Notification Friendica" -#: ../../include/group.php:166 -msgid "Everybody" -msgstr "Tout le monde" +#: ../../include/enotify.php:19 +msgid "Thank You," +msgstr "Merci, " -#: ../../include/diaspora.php:544 -msgid "Sharing notification from Diaspora network" -msgstr "Notification de partage du réseau Diaspora" - -#: ../../include/diaspora.php:1527 -msgid "Attachments:" -msgstr "Pièces jointes : " - -#: ../../include/diaspora.php:1710 +#: ../../include/enotify.php:21 #, php-format -msgid "[Relayed] Comment authored by %s from network %s" -msgstr "[Relayé] Commentaire de %s sur le réseau %s" +msgid "%s Administrator" +msgstr "L'administrateur de %s" -#: ../../include/oembed.php:122 -msgid "Embedded content" -msgstr "Contenu incorporé" +#: ../../include/enotify.php:40 +#, php-format +msgid "%s " +msgstr "%s " -#: ../../include/oembed.php:131 -msgid "Embedding disabled" -msgstr "Incorporation désactivée" +#: ../../include/enotify.php:44 +#, php-format +msgid "[Friendica:Notify] New mail received at %s" +msgstr "[Friendica:Notification] Nouveau courriel reçu sur %s" +#: ../../include/enotify.php:46 +#, php-format +msgid "%1$s sent you a new private message at %2$s." +msgstr "%1$s vous a envoyé un nouveau message privé sur %2$s." +#: ../../include/enotify.php:47 +#, php-format +msgid "%1$s sent you %2$s." +msgstr "%1$s vous a envoyé %2$s." + +#: ../../include/enotify.php:47 +msgid "a private message" +msgstr "un message privé" + +#: ../../include/enotify.php:48 +#, php-format +msgid "Please visit %s to view and/or reply to your private messages." +msgstr "Merci de visiter %s pour voir vos messages privés et/ou y répondre." + +#: ../../include/enotify.php:89 +#, php-format +msgid "%1$s commented on [url=%2$s]a %3$s[/url]" +msgstr "%1$s a commenté sur [url=%2$s]un %3$s[/url]" + +#: ../../include/enotify.php:96 +#, php-format +msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]" +msgstr "%1$s a commenté sur [url=%2$s]le %4$s de %3$s[/url]" + +#: ../../include/enotify.php:104 +#, php-format +msgid "%1$s commented on [url=%2$s]your %3$s[/url]" +msgstr "%1$s commented on [url=%2$s]your %3$s[/url]" + +#: ../../include/enotify.php:114 +#, php-format +msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s" +msgstr "[Friendica:Notification] Commentaire de %2$s sur la conversation #%1$d" + +#: ../../include/enotify.php:115 +#, php-format +msgid "%s commented on an item/conversation you have been following." +msgstr "%s a commenté un élément que vous suivez." + +#: ../../include/enotify.php:118 ../../include/enotify.php:133 +#: ../../include/enotify.php:146 ../../include/enotify.php:164 +#: ../../include/enotify.php:177 +#, php-format +msgid "Please visit %s to view and/or reply to the conversation." +msgstr "Merci de visiter %s pour voir la conversation et/ou y répondre." + +#: ../../include/enotify.php:125 +#, php-format +msgid "[Friendica:Notify] %s posted to your profile wall" +msgstr "[Friendica:Notification] %s a posté sur votre mur de profil" + +#: ../../include/enotify.php:127 +#, php-format +msgid "%1$s posted to your profile wall at %2$s" +msgstr "%1$s a publié sur votre mur à %2$s" + +#: ../../include/enotify.php:129 +#, php-format +msgid "%1$s posted to [url=%2$s]your wall[/url]" +msgstr "%1$s a posté sur [url=%2$s]votre mur[/url]" + +#: ../../include/enotify.php:140 +#, php-format +msgid "[Friendica:Notify] %s tagged you" +msgstr "[Friendica:Notification] %s vous a repéré" + +#: ../../include/enotify.php:141 +#, php-format +msgid "%1$s tagged you at %2$s" +msgstr "%1$s vous parle sur %2$s" + +#: ../../include/enotify.php:142 +#, php-format +msgid "%1$s [url=%2$s]tagged you[/url]." +msgstr "%1$s [url=%2$s]vous a taggé[/url]." + +#: ../../include/enotify.php:154 +#, php-format +msgid "[Friendica:Notify] %1$s poked you" +msgstr "" + +#: ../../include/enotify.php:155 +#, php-format +msgid "%1$s poked you at %2$s" +msgstr "" + +#: ../../include/enotify.php:156 +#, php-format +msgid "%1$s [url=%2$s]poked you[/url]." +msgstr "" + +#: ../../include/enotify.php:171 +#, php-format +msgid "[Friendica:Notify] %s tagged your post" +msgstr "[Friendica:Notification] %s a repéré votre publication" + +#: ../../include/enotify.php:172 +#, php-format +msgid "%1$s tagged your post at %2$s" +msgstr "%1$s a tagué votre contenu sur %2$s" + +#: ../../include/enotify.php:173 +#, php-format +msgid "%1$s tagged [url=%2$s]your post[/url]" +msgstr "%1$s a tagué [url=%2$s]votre contenu[/url]" + +#: ../../include/enotify.php:184 +msgid "[Friendica:Notify] Introduction received" +msgstr "[Friendica:Notification] Introduction reçue" + +#: ../../include/enotify.php:185 +#, php-format +msgid "You've received an introduction from '%1$s' at %2$s" +msgstr "Vous avez reçu une introduction de '%1$s' sur %2$s" + +#: ../../include/enotify.php:186 +#, php-format +msgid "You've received [url=%1$s]an introduction[/url] from %2$s." +msgstr "Vous avez reçu [url=%1$s]une introduction[/url] de %2$s." + +#: ../../include/enotify.php:189 ../../include/enotify.php:207 +#, php-format +msgid "You may visit their profile at %s" +msgstr "Vous pouvez visiter son profil sur %s" + +#: ../../include/enotify.php:191 +#, php-format +msgid "Please visit %s to approve or reject the introduction." +msgstr "Merci de visiter %s pour approuver ou rejeter l'introduction." + +#: ../../include/enotify.php:198 +msgid "[Friendica:Notify] Friend suggestion received" +msgstr "[Friendica:Notification] Nouvelle suggestion d'amitié" + +#: ../../include/enotify.php:199 +#, php-format +msgid "You've received a friend suggestion from '%1$s' at %2$s" +msgstr "Vous avez reçu une suggestion de '%1$s' sur %2$s" + +#: ../../include/enotify.php:200 +#, php-format +msgid "" +"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." +msgstr "Vous avez reçu [url=%1$s]une suggestion[/url] de %3$s pour %2$s." + +#: ../../include/enotify.php:205 +msgid "Name:" +msgstr "Nom :" + +#: ../../include/enotify.php:206 +msgid "Photo:" +msgstr "Photo :" + +#: ../../include/enotify.php:209 +#, php-format +msgid "Please visit %s to approve or reject the suggestion." +msgstr "Merci de visiter %s pour approuver ou rejeter la suggestion." + +#: ../../include/follow.php:32 +msgid "Connect URL missing." +msgstr "URL de connexion manquante." + +#: ../../include/follow.php:59 +msgid "" +"This site is not configured to allow communications with other networks." +msgstr "Ce site n'est pas configuré pour dialoguer avec d'autres réseaux." + +#: ../../include/follow.php:60 ../../include/follow.php:80 +msgid "No compatible communication protocols or feeds were discovered." +msgstr "Aucun protocole de communication ni aucun flux n'a pu être découvert." + +#: ../../include/follow.php:78 +msgid "The profile address specified does not provide adequate information." +msgstr "L'adresse de profil indiquée ne fournit par les informations adéquates." + +#: ../../include/follow.php:82 +msgid "An author or name was not found." +msgstr "Aucun auteur ou nom d'auteur n'a pu être trouvé." + +#: ../../include/follow.php:84 +msgid "No browser URL could be matched to this address." +msgstr "Aucune URL de navigation ne correspond à cette adresse." + +#: ../../include/follow.php:86 +msgid "" +"Unable to match @-style Identity Address with a known protocol or email " +"contact." +msgstr "Impossible de faire correspondre l'adresse d'identité en \"@\" avec un protocole connu ou un contact courriel." + +#: ../../include/follow.php:87 +msgid "Use mailto: in front of address to force email check." +msgstr "Utilisez mailto: en face d'une adresse pour l'obliger à être reconnue comme courriel." + +#: ../../include/follow.php:93 +msgid "" +"The profile address specified belongs to a network which has been disabled " +"on this site." +msgstr "L'adresse de profil spécifiée correspond à un réseau qui a été désactivé sur ce site." + +#: ../../include/follow.php:103 +msgid "" +"Limited profile. This person will be unable to receive direct/personal " +"notifications from you." +msgstr "Profil limité. Cette personne ne sera pas capable de recevoir des notifications directes/personnelles de votre part." + +#: ../../include/follow.php:205 +msgid "Unable to retrieve contact information." +msgstr "Impossible de récupérer les informations du contact." + +#: ../../include/follow.php:259 +msgid "following" +msgstr "following" + +#: ../../include/items.php:3294 +msgid "A new person is sharing with you at " +msgstr "Une nouvelle personne partage avec vous à " + +#: ../../include/items.php:3294 +msgid "You have a new follower at " +msgstr "Vous avez un nouvel abonné à " + +#: ../../include/items.php:3975 +msgid "Archives" +msgstr "Archives" + +#: ../../include/user.php:38 +msgid "An invitation is required." +msgstr "Une invitation est requise." + +#: ../../include/user.php:43 +msgid "Invitation could not be verified." +msgstr "L'invitation fournie n'a pu être validée." + +#: ../../include/user.php:51 +msgid "Invalid OpenID url" +msgstr "Adresse OpenID invalide" + +#: ../../include/user.php:66 +msgid "Please enter the required information." +msgstr "Entrez les informations requises." + +#: ../../include/user.php:80 +msgid "Please use a shorter name." +msgstr "Utilisez un nom plus court." + +#: ../../include/user.php:82 +msgid "Name too short." +msgstr "Nom trop court." + +#: ../../include/user.php:97 +msgid "That doesn't appear to be your full (First Last) name." +msgstr "Ceci ne semble pas être votre nom complet (Prénom Nom)." + +#: ../../include/user.php:102 +msgid "Your email domain is not among those allowed on this site." +msgstr "Votre domaine de courriel n'est pas autorisé sur ce site." + +#: ../../include/user.php:105 +msgid "Not a valid email address." +msgstr "Ceci n'est pas une adresse courriel valide." + +#: ../../include/user.php:115 +msgid "Cannot use that email." +msgstr "Impossible d'utiliser ce courriel." + +#: ../../include/user.php:121 +msgid "" +"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and " +"must also begin with a letter." +msgstr "Votre \"pseudo\" peut seulement contenir les caractères \"a-z\", \"0-9\", \"-\", and \"_\", et doit commencer par une lettre." + +#: ../../include/user.php:127 ../../include/user.php:225 +msgid "Nickname is already registered. Please choose another." +msgstr "Pseudo déjà utilisé. Merci d'en choisir un autre." + +#: ../../include/user.php:137 +msgid "" +"Nickname was once registered here and may not be re-used. Please choose " +"another." +msgstr "Ce surnom a déjà été utilisé ici, et ne peut re-servir. Merci d'en choisir un autre." + +#: ../../include/user.php:153 +msgid "SERIOUS ERROR: Generation of security keys failed." +msgstr "ERREUR SÉRIEUSE: La génération des clés de sécurité a échoué." + +#: ../../include/user.php:211 +msgid "An error occurred during registration. Please try again." +msgstr "Une erreur est survenue lors de l'inscription. Merci de recommencer." + +#: ../../include/user.php:246 +msgid "An error occurred creating your default profile. Please try again." +msgstr "Une erreur est survenue lors de la création de votre profil par défaut. Merci de recommencer." + +#: ../../include/security.php:22 +msgid "Welcome " +msgstr "Bienvenue " + +#: ../../include/security.php:23 +msgid "Please upload a profile photo." +msgstr "Merci d'illustrer votre profil d'une image." + +#: ../../include/security.php:26 +msgid "Welcome back " +msgstr "Bienvenue à nouveau, " + +#: ../../include/security.php:344 +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 "Le jeton de sécurité du formulaire n'est pas correct. Ceci veut probablement dire que le formulaire est resté ouvert trop longtemps (plus de 3 heures) avant d'être validé." + +#: ../../include/Contact.php:111 +msgid "stopped following" +msgstr "retiré de la liste de suivi" + +#: ../../include/Contact.php:220 ../../include/conversation.php:734 +msgid "Poke" +msgstr "" + +#: ../../include/Contact.php:221 ../../include/conversation.php:728 +msgid "View Status" +msgstr "Voir les statuts" + +#: ../../include/Contact.php:222 ../../include/conversation.php:729 +msgid "View Profile" +msgstr "Voir le profil" + +#: ../../include/Contact.php:223 ../../include/conversation.php:730 +msgid "View Photos" +msgstr "Voir les photos" + +#: ../../include/Contact.php:224 ../../include/Contact.php:237 +#: ../../include/conversation.php:731 +msgid "Network Posts" +msgstr "Posts du Réseau" + +#: ../../include/Contact.php:225 ../../include/Contact.php:237 +#: ../../include/conversation.php:732 +msgid "Edit Contact" +msgstr "Éditer le contact" + +#: ../../include/Contact.php:226 ../../include/Contact.php:237 +#: ../../include/conversation.php:733 +msgid "Send PM" +msgstr "Message privé" + +#: ../../include/conversation.php:206 +#, php-format +msgid "%1$s poked %2$s" +msgstr "" + +#: ../../include/conversation.php:290 +msgid "post/item" +msgstr "publication/élément" + +#: ../../include/conversation.php:291 +#, php-format +msgid "%1$s marked %2$s's %3$s as favorite" +msgstr "%1$s a marqué le %3$s de %2$s comme favori" + +#: ../../include/conversation.php:545 ../../object/Item.php:218 +msgid "Categories:" +msgstr "Catégories:" + +#: ../../include/conversation.php:546 ../../object/Item.php:219 +msgid "Filed under:" +msgstr "Rangé sous:" + +#: ../../include/conversation.php:630 +msgid "remove" +msgstr "enlever" + +#: ../../include/conversation.php:634 +msgid "Delete Selected Items" +msgstr "Supprimer les éléments sélectionnés" + +#: ../../include/conversation.php:792 +#, php-format +msgid "%s likes this." +msgstr "%s aime ça." + +#: ../../include/conversation.php:792 +#, php-format +msgid "%s doesn't like this." +msgstr "%s n'aime pas ça." + +#: ../../include/conversation.php:796 +#, php-format +msgid "%2$d people like this." +msgstr "%2$d personnes aiment ça." + +#: ../../include/conversation.php:798 +#, php-format +msgid "%2$d people don't like this." +msgstr "%2$d personnes n'aiment pas ça." + +#: ../../include/conversation.php:804 +msgid "and" +msgstr "et" + +#: ../../include/conversation.php:807 +#, php-format +msgid ", and %d other people" +msgstr ", et %d autres personnes" + +#: ../../include/conversation.php:808 +#, php-format +msgid "%s like this." +msgstr "%s aiment ça." + +#: ../../include/conversation.php:808 +#, php-format +msgid "%s don't like this." +msgstr "%s n'aiment pas ça." + +#: ../../include/conversation.php:832 ../../include/conversation.php:849 +msgid "Visible to everybody" +msgstr "Visible par tout le monde" + +#: ../../include/conversation.php:834 ../../include/conversation.php:851 +msgid "Please enter a video link/URL:" +msgstr "Entrez un lien/URL video :" + +#: ../../include/conversation.php:835 ../../include/conversation.php:852 +msgid "Please enter an audio link/URL:" +msgstr "Entrez un lien/URL audio :" + +#: ../../include/conversation.php:836 ../../include/conversation.php:853 +msgid "Tag term:" +msgstr "Tag : " + +#: ../../include/conversation.php:838 ../../include/conversation.php:855 +msgid "Where are you right now?" +msgstr "Où êtes-vous présentemment?" + +#: ../../include/conversation.php:898 +msgid "upload photo" +msgstr "envoi image" + +#: ../../include/conversation.php:900 +msgid "attach file" +msgstr "ajout fichier" + +#: ../../include/conversation.php:902 +msgid "web link" +msgstr "lien web" + +#: ../../include/conversation.php:903 +msgid "Insert video link" +msgstr "Insérer un lien video" + +#: ../../include/conversation.php:904 +msgid "video link" +msgstr "lien vidéo" + +#: ../../include/conversation.php:905 +msgid "Insert audio link" +msgstr "Insérer un lien audio" + +#: ../../include/conversation.php:906 +msgid "audio link" +msgstr "lien audio" + +#: ../../include/conversation.php:908 +msgid "set location" +msgstr "spéc. localisation" + +#: ../../include/conversation.php:910 +msgid "clear location" +msgstr "supp. localisation" + +#: ../../include/conversation.php:917 +msgid "permissions" +msgstr "permissions" + +#: ../../include/plugin.php:389 ../../include/plugin.php:391 +msgid "Click here to upgrade." +msgstr "Cliquez ici pour mettre à jour." + +#: ../../include/plugin.php:397 +msgid "This action exceeds the limits set by your subscription plan." +msgstr "Cette action dépasse les limites définies par votre abonnement." + +#: ../../include/plugin.php:402 +msgid "This action is not available under your subscription plan." +msgstr "Cette action n'est pas disponible avec votre abonnement." + +#: ../../boot.php:573 +msgid "Delete this item?" +msgstr "Effacer cet élément?" + +#: ../../boot.php:576 +msgid "show fewer" +msgstr "montrer moins" + +#: ../../boot.php:783 +#, php-format +msgid "Update %s failed. See error logs." +msgstr "Mise-à-jour %s échouée. Voir les journaux d'erreur." + +#: ../../boot.php:785 +#, php-format +msgid "Update Error at %s" +msgstr "Erreur de mise-à-jour à %s" + +#: ../../boot.php:886 +msgid "Create a New Account" +msgstr "Créer un nouveau compte" + +#: ../../boot.php:914 +msgid "Nickname or Email address: " +msgstr "Pseudo ou courriel: " + +#: ../../boot.php:915 +msgid "Password: " +msgstr "Mot de passe: " + +#: ../../boot.php:918 +msgid "Or login using OpenID: " +msgstr "Ou connectez-vous via OpenID: " + +#: ../../boot.php:924 +msgid "Forgot your password?" +msgstr "Mot de passe oublié?" + +#: ../../boot.php:1035 +msgid "Requested account is not available." +msgstr "Le compte demandé n'est pas disponible." + +#: ../../boot.php:1112 +msgid "Edit profile" +msgstr "Editer le profil" + +#: ../../boot.php:1178 +msgid "Message" +msgstr "Message" + +#: ../../boot.php:1300 ../../boot.php:1386 +msgid "g A l F d" +msgstr "g A | F d" + +#: ../../boot.php:1301 ../../boot.php:1387 +msgid "F d" +msgstr "F d" + +#: ../../boot.php:1346 ../../boot.php:1427 +msgid "[today]" +msgstr "[aujourd'hui]" + +#: ../../boot.php:1358 +msgid "Birthday Reminders" +msgstr "Rappels d'anniversaires" + +#: ../../boot.php:1359 +msgid "Birthdays this week:" +msgstr "Anniversaires cette semaine:" + +#: ../../boot.php:1420 +msgid "[No description]" +msgstr "[Sans description]" + +#: ../../boot.php:1438 +msgid "Event Reminders" +msgstr "Rappels d'événements" + +#: ../../boot.php:1439 +msgid "Events this week:" +msgstr "Evénements cette semaine:" + +#: ../../boot.php:1668 +msgid "Status Messages and Posts" +msgstr "Messages d'état et publications" + +#: ../../boot.php:1675 +msgid "Profile Details" +msgstr "Détails du profil" + +#: ../../boot.php:1692 +msgid "Events and Calendar" +msgstr "Événements et agenda" + +#: ../../boot.php:1699 +msgid "Only You Can See This" +msgstr "Vous seul pouvez voir ça" diff --git a/view/fr/strings.php b/view/fr/strings.php index e24070ab99..c2652dea56 100644 --- a/view/fr/strings.php +++ b/view/fr/strings.php @@ -1,111 +1,949 @@ 1); + return ($n > 1);; } ; +$a->strings["Post successful."] = "Publication réussie."; +$a->strings["[Embedded content - reload page to view]"] = "[contenu incorporé - rechargez la page pour le voir]"; +$a->strings["Contact settings applied."] = "Réglages du contact appliqués."; +$a->strings["Contact update failed."] = "Impossible d'appliquer les réglages."; +$a->strings["Permission denied."] = "Permission refusée."; +$a->strings["Contact not found."] = "Contact introuvable."; +$a->strings["Repair Contact Settings"] = "Réglages du réparateur de contacts"; +$a->strings["WARNING: This is highly advanced and if you enter incorrect information your communications with this contact may stop working."] = "ATTENTION: Manipulation réservée aux experts, toute information incorrecte pourrait empêcher la communication avec ce contact."; +$a->strings["Please use your browser 'Back' button now if you are uncertain what to do on this page."] = "une photo"; +$a->strings["Return to contact editor"] = "Retour à l'éditeur de contact"; +$a->strings["Name"] = "Nom"; +$a->strings["Account Nickname"] = "Pseudo du compte"; +$a->strings["@Tagname - overrides Name/Nickname"] = "@NomDuTag - prend le pas sur Nom/Pseudo"; +$a->strings["Account URL"] = "URL du compte"; +$a->strings["Friend Request URL"] = "Echec du téléversement de l'image."; +$a->strings["Friend Confirm URL"] = "Accès public refusé."; +$a->strings["Notification Endpoint URL"] = "Aucune photo sélectionnée"; +$a->strings["Poll/Feed URL"] = "Téléverser des photos"; +$a->strings["New photo from this URL"] = "Nouvelle photo depuis cette URL"; +$a->strings["Submit"] = "Envoyer"; +$a->strings["Help:"] = "Aide:"; +$a->strings["Help"] = "Aide"; $a->strings["Not Found"] = "Non trouvé"; $a->strings["Page not found."] = "Page introuvable."; -$a->strings["Permission denied"] = "Permission refusée"; -$a->strings["Permission denied."] = "Permission refusée."; -$a->strings["Delete this item?"] = "Effacer cet élément?"; -$a->strings["Comment"] = "Commenter"; -$a->strings["Create a New Account"] = "Créer un nouveau compte"; -$a->strings["Register"] = "S'inscrire"; -$a->strings["Logout"] = "Se déconnecter"; -$a->strings["Login"] = "Connexion"; -$a->strings["Nickname or Email address: "] = "Pseudo ou courriel: "; -$a->strings["Password: "] = "Mot de passe: "; -$a->strings["OpenID: "] = "OpenID: "; -$a->strings["Forgot your password?"] = "Mot de passe oublié?"; -$a->strings["Password Reset"] = "Réinitialiser le mot de passe"; -$a->strings["No profile"] = "Aucun profil"; -$a->strings["Edit profile"] = "Editer le profil"; -$a->strings["Connect"] = "Relier"; -$a->strings["Profiles"] = "Profils"; -$a->strings["Manage/edit profiles"] = "Gérer/éditer les profils"; -$a->strings["Change profile photo"] = "Changer de photo de profil"; -$a->strings["Create New Profile"] = "Créer un nouveau profil"; -$a->strings["Profile Image"] = "Image du profil"; -$a->strings["visible to everybody"] = "visible par tous"; -$a->strings["Edit visibility"] = "Changer la visibilité"; +$a->strings["File exceeds size limit of %d"] = "La taille du fichier dépasse la limite de %d"; +$a->strings["File upload failed."] = "Le téléversement a échoué."; +$a->strings["Friend suggestion sent."] = "Suggestion d'amitié/contact envoyée."; +$a->strings["Suggest Friends"] = "Suggérer des amis/contacts"; +$a->strings["Suggest a friend for %s"] = "Suggérer un ami/contact pour %s"; +$a->strings["Event title and start time are required."] = "Vous devez donner un nom et un horaire de début à l'événement."; +$a->strings["l, F j"] = "l, F j"; +$a->strings["Edit event"] = "Editer l'événement"; +$a->strings["link to source"] = "lien original"; +$a->strings["Events"] = "Événements"; +$a->strings["Create New Event"] = "Créer un nouvel événement"; +$a->strings["Previous"] = "Précédent"; +$a->strings["Next"] = "Suivant"; +$a->strings["hour:minute"] = "heures:minutes"; +$a->strings["Event details"] = "Détails de l'événement"; +$a->strings["Format is %s %s. Starting date and Title are required."] = "Le format est %s %s. La date de début et le nom sont nécessaires."; +$a->strings["Event Starts:"] = "Début de l'événement:"; +$a->strings["Required"] = "Requis"; +$a->strings["Finish date/time is not known or not relevant"] = "Date/heure de fin inconnue ou sans objet"; +$a->strings["Event Finishes:"] = "Fin de l'événement:"; +$a->strings["Adjust for viewer timezone"] = "Ajuster à la zone horaire du visiteur"; +$a->strings["Description:"] = "Description:"; $a->strings["Location:"] = "Localisation:"; -$a->strings["Gender:"] = "Genre:"; -$a->strings["Status:"] = "Statut:"; -$a->strings["Homepage:"] = "Page personnelle:"; -$a->strings["g A l F d"] = "g A | F d"; -$a->strings["F d"] = "F d"; -$a->strings["Birthday Reminders"] = "Rappels d'anniversaires"; -$a->strings["Birthdays this week:"] = "Anniversaires cette semaine:"; -$a->strings["[today]"] = "[aujourd'hui]"; -$a->strings["Event Reminders"] = "Rappels d'événements"; -$a->strings["Events this week:"] = "Evénements cette semaine:"; -$a->strings["[No description]"] = "[Sans description]"; -$a->strings["Status"] = "Statut"; -$a->strings["Profile"] = "Profil"; -$a->strings["Photos"] = "Photos"; -$a->strings["Events"] = "Evènements"; -$a->strings["Personal Notes"] = "Notes personnelles"; -$a->strings["Welcome back %s"] = "Bienvenue à nouveau, %s"; -$a->strings["Manage Identities and/or Pages"] = "Gérer les identités et/ou les pages"; -$a->strings["(Toggle between different identities or community/group pages which share your account details.)"] = "(Bascule entre les différentes identités ou pages qui se partagent votre compte.)"; -$a->strings["Select an identity to manage: "] = "Choisir une identité à gérer: "; -$a->strings["Submit"] = "Envoyer"; -$a->strings["People Search"] = "Recherche de personnes"; -$a->strings["No matches"] = "Aucune correspondance"; -$a->strings["Image exceeds size limit of %d"] = "L'image dépasse la taille limite de %d"; -$a->strings["Unable to process image."] = "Impossible de traiter l'image."; -$a->strings["Wall Photos"] = "Photos du mur"; -$a->strings["Image upload failed."] = "Le téléversement de l'image a échoué."; -$a->strings["Access to this profile has been restricted."] = "L'accès au profil a été restreint."; -$a->strings["Tips for New Members"] = "Conseils aux nouveaux"; -$a->strings["Disallowed profile URL."] = "URL de profil interdite."; -$a->strings["This site is not configured to allow communications with other networks."] = "Ce site n'est pas configuré pour dialoguer avec d'autres réseaux."; -$a->strings["No compatible communication protocols or feeds were discovered."] = "Aucun protocole de communication ni aucun flux n'a pu être découvert."; -$a->strings["The profile address specified does not provide adequate information."] = "L'adresse de profil indiquée ne fournit par les informations adéquates."; -$a->strings["An author or name was not found."] = "Aucun auteur ou nom d'auteur n'a pu être trouvé."; -$a->strings["No browser URL could be matched to this address."] = "Aucune URL de navigation ne correspond à cette adresse."; -$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "L'adresse de profil spécifiée correspond à un réseau qui a été désactivé sur ce site."; -$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Profil limité. Cette personne ne sera pas capable de recevoir des notifications directes/personnelles de votre part."; -$a->strings["Unable to retrieve contact information."] = "Impossible de récupérer les informations du contact."; -$a->strings["following"] = "following"; -$a->strings["Image uploaded but image cropping failed."] = "Image envoyée, mais impossible de la retailler."; +$a->strings["Title:"] = "Titre :"; +$a->strings["Share this event"] = "Partager cet événement"; +$a->strings["Cancel"] = "Annuler"; +$a->strings["Tag removed"] = "Étiquette enlevée"; +$a->strings["Remove Item Tag"] = "Enlever l'étiquette de l'élément"; +$a->strings["Select a tag to remove: "] = "Choisir une étiquette à enlever: "; +$a->strings["Remove"] = "Utiliser comme photo de profil"; +$a->strings["%s welcomes %s"] = "%s accueille %s"; +$a->strings["Authorize application connection"] = "Autoriser l'application à se connecter"; +$a->strings["Return to your app and insert this Securty Code:"] = "Retournez à votre application et saisissez ce Code de Sécurité : "; +$a->strings["Please login to continue."] = "Merci de vous connecter pour continuer."; +$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Voulez-vous autoriser cette application à accéder à vos notices et contacts, et/ou à créer des notices à votre place?"; +$a->strings["Yes"] = "Oui"; +$a->strings["No"] = "Non"; +$a->strings["Photo Albums"] = "Albums photo"; +$a->strings["Contact Photos"] = "Photos du contact"; +$a->strings["Upload New Photos"] = "Téléverser de nouvelles photos"; +$a->strings["everybody"] = "tout le monde"; +$a->strings["Contact information unavailable"] = "Informations de contact indisponibles"; $a->strings["Profile Photos"] = "Photos du profil"; +$a->strings["Album not found."] = "Album introuvable."; +$a->strings["Delete Album"] = "Effacer l'album"; +$a->strings["Delete Photo"] = "Effacer la photo"; +$a->strings["was tagged in a"] = "a été identifié dans"; +$a->strings["photo"] = "photo"; +$a->strings["by"] = "par"; +$a->strings["Image exceeds size limit of "] = "L'image dépasse la taille maximale de "; +$a->strings["Image file is empty."] = "Fichier image vide."; +$a->strings["Unable to process image."] = "Impossible de traiter l'image."; +$a->strings["Image upload failed."] = "Le téléversement de l'image a échoué."; +$a->strings["Public access denied."] = "Accès public refusé."; +$a->strings["No photos selected"] = "Aucune photo sélectionnée"; +$a->strings["Access to this item is restricted."] = "Accès restreint à cet élément."; +$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "Vous avez utilisé %1$.2f Mo sur %2$.2f d'espace de stockage pour les photos."; +$a->strings["You have used %1$.2f Mbytes of photo storage."] = "Vous avez utilisé %1$.2f Mo d'espace de stockage pour les photos."; +$a->strings["Upload Photos"] = "Téléverser des photos"; +$a->strings["New album name: "] = "Nom du nouvel album: "; +$a->strings["or existing album name: "] = "ou nom d'un album existant: "; +$a->strings["Do not show a status post for this upload"] = "Ne pas publier de notice pour cet envoi"; +$a->strings["Permissions"] = "Permissions"; +$a->strings["Edit Album"] = "Éditer l'album"; +$a->strings["Show Newest First"] = "Plus récent d'abord"; +$a->strings["Show Oldest First"] = "Plus ancien d'abord"; +$a->strings["View Photo"] = "Voir la photo"; +$a->strings["Permission denied. Access to this item may be restricted."] = "Interdit. L'accès à cet élément peut avoir été restreint."; +$a->strings["Photo not available"] = "Photo indisponible"; +$a->strings["View photo"] = "Voir photo"; +$a->strings["Edit photo"] = "Éditer la photo"; +$a->strings["Use as profile photo"] = "Utiliser comme photo de profil"; +$a->strings["Private Message"] = "Message privé"; +$a->strings["View Full Size"] = "Voir en taille réelle"; +$a->strings["Tags: "] = "Étiquettes: "; +$a->strings["[Remove any tag]"] = "[Retirer toutes les étiquettes]"; +$a->strings["Rotate CW (right)"] = "Tourner dans le sens des aiguilles d'une montre (vers la droite)"; +$a->strings["Rotate CCW (left)"] = "Tourner dans le sens contraire des aiguilles d'une montre (vers la gauche)"; +$a->strings["New album name"] = "Nom du nouvel album"; +$a->strings["Caption"] = "Titre"; +$a->strings["Add a Tag"] = "Ajouter une étiquette"; +$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Exemples: @bob, @Barbara_Jensen, @jim@example.com, #Californie, #vacances"; +$a->strings["I like this (toggle)"] = "J'aime (bascule)"; +$a->strings["I don't like this (toggle)"] = "Je n'aime pas (bascule)"; +$a->strings["Share"] = "Partager"; +$a->strings["Please wait"] = "Patientez"; +$a->strings["This is you"] = "C'est vous"; +$a->strings["Comment"] = "Commenter"; +$a->strings["Preview"] = "Aperçu"; +$a->strings["Delete"] = "Supprimer"; +$a->strings["View Album"] = "Voir l'album"; +$a->strings["Recent Photos"] = "Photos récentes"; +$a->strings["Not available."] = "Indisponible."; +$a->strings["Community"] = "Communauté"; +$a->strings["No results."] = "Aucun résultat."; +$a->strings["This is Friendica, version"] = "Motorisé par Friendica version"; +$a->strings["running at web location"] = "hébergé sur"; +$a->strings["Please visit Friendica.com to learn more about the Friendica project."] = "Merci de vous rendre sur Friendica.com si vous souhaitez en savoir plus sur le projet Friendica."; +$a->strings["Bug reports and issues: please visit"] = "Pour les rapports de bugs: rendez vous sur"; +$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Suggestions, remerciements, donations, etc. - écrivez à \"Info\" arob. Friendica - point com"; +$a->strings["Installed plugins/addons/apps:"] = "Extensions/applications installées:"; +$a->strings["No installed plugins/addons/apps"] = "Aucune extension/greffon/application installée"; +$a->strings["Item not found"] = "Élément introuvable"; +$a->strings["Edit post"] = "Éditer la publication"; +$a->strings["Post to Email"] = "Publier aussi par courriel"; +$a->strings["Edit"] = "Éditer"; +$a->strings["Upload photo"] = "Joindre photo"; +$a->strings["Attach file"] = "Joindre fichier"; +$a->strings["Insert web link"] = "Insérer lien web"; +$a->strings["Insert YouTube video"] = "Insérer une vidéo Youtube"; +$a->strings["Insert Vorbis [.ogg] video"] = "Insérer un lien vidéo Vorbis [.ogg]"; +$a->strings["Insert Vorbis [.ogg] audio"] = "Insérer un lien audio Vorbis [.ogg]"; +$a->strings["Set your location"] = "Définir votre localisation"; +$a->strings["Clear browser location"] = "Effacer la localisation du navigateur"; +$a->strings["Permission settings"] = "Réglages des permissions"; +$a->strings["CC: email addresses"] = "CC: adresses de courriel"; +$a->strings["Public post"] = "Notice publique"; +$a->strings["Set title"] = "Définir un titre"; +$a->strings["Categories (comma-separated list)"] = "Catégories (séparées par des virgules)"; +$a->strings["Example: bob@example.com, mary@example.com"] = "Exemple: bob@exemple.com, mary@exemple.com"; +$a->strings["This introduction has already been accepted."] = "Cette introduction a déjà été acceptée."; +$a->strings["Profile location is not valid or does not contain profile information."] = "L'emplacement du profil est invalide ou ne contient pas de profil valide."; +$a->strings["Warning: profile location has no identifiable owner name."] = "Attention: l'emplacement du profil n'a pas de nom identifiable."; +$a->strings["Warning: profile location has no profile photo."] = "Attention: l'emplacement du profil n'a pas de photo de profil."; +$a->strings["%d required parameter was not found at the given location"] = array( + 0 => "%d paramètre requis n'a pas été trouvé à l'endroit indiqué", + 1 => "%d paramètres requis n'ont pas été trouvés à l'endroit indiqué", +); +$a->strings["Introduction complete."] = "Phase d'introduction achevée."; +$a->strings["Unrecoverable protocol error."] = "Erreur de protocole non-récupérable."; +$a->strings["Profile unavailable."] = "Profil indisponible."; +$a->strings["%s has received too many connection requests today."] = "%s a reçu trop de demandes d'introduction aujourd'hui."; +$a->strings["Spam protection measures have been invoked."] = "Des mesures de protection contre le spam ont été déclenchées."; +$a->strings["Friends are advised to please try again in 24 hours."] = "Les relations sont encouragées à attendre 24 heures pour recommencer."; +$a->strings["Invalid locator"] = "Localisateur invalide"; +$a->strings["Invalid email address."] = "Adresse courriel invalide."; +$a->strings["This account has not been configured for email. Request failed."] = "Ce compte n'a pas été configuré pour les échanges de courriel. Requête avortée."; +$a->strings["Unable to resolve your name at the provided location."] = "Impossible de résoudre votre nom à l'emplacement fourni."; +$a->strings["You have already introduced yourself here."] = "Vous vous êtes déjà présenté ici."; +$a->strings["Apparently you are already friends with %s."] = "Il semblerait que vous soyez déjà ami avec %s."; +$a->strings["Invalid profile URL."] = "URL de profil invalide."; +$a->strings["Disallowed profile URL."] = "URL de profil interdite."; +$a->strings["Failed to update contact record."] = "Échec de mise-à-jour du contact."; +$a->strings["Your introduction has been sent."] = "Votre introduction a été envoyée."; +$a->strings["Please login to confirm introduction."] = "Connectez-vous pour confirmer l'introduction."; +$a->strings["Incorrect identity currently logged in. Please login to this profile."] = "Identité incorrecte actuellement connectée. Merci de vous connecter à ce profil."; +$a->strings["Hide this contact"] = "Cacher ce contact"; +$a->strings["Welcome home %s."] = "Bienvenue chez vous, %s."; +$a->strings["Please confirm your introduction/connection request to %s."] = "Merci de confirmer votre demande d'introduction auprès de %s."; +$a->strings["Confirm"] = "Confirmer"; +$a->strings["[Name Withheld]"] = "[Nom non-publié]"; +$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Merci d'entrer votre \"adresse d'identité\" de l'un des réseaux de communication suivant:"; +$a->strings["Connect as an email follower (Coming soon)"] = "Connecter un utilisateur de courriel (bientôt)"; +$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."] = "Si vous n'êtes pas encore membre du web social libre, suivez ce lien pour trouver un site Friendica ouvert au public et nous rejoindre dès aujourd'hui."; +$a->strings["Friend/Connection Request"] = "Requête de relation/amitié"; +$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Exemples : jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"; +$a->strings["Please answer the following:"] = "Merci de répondre à ce qui suit:"; +$a->strings["Does %s know you?"] = "Est-ce que %s vous connaît?"; +$a->strings["Add a personal note:"] = "Ajouter une note personnelle:"; +$a->strings["Friendica"] = "Friendica"; +$a->strings["StatusNet/Federated Social Web"] = "StatusNet/Federated Social Web"; +$a->strings["Diaspora"] = "Diaspora"; +$a->strings[" - please do not use this form. Instead, enter %s into your Diaspora search bar."] = " - merci de ne pas utiliser ce formulaire. Entrez plutôt %s dans votre barre de rechercher Diaspora."; +$a->strings["Your Identity Address:"] = "Votre adresse d'identité:"; +$a->strings["Submit Request"] = "Envoyer la requête"; +$a->strings["Friendica Social Communications Server - Setup"] = "Serveur de communications sociales Friendica - Installation"; +$a->strings["Could not connect to database."] = "Impossible de se connecter à la base."; +$a->strings["Could not create table."] = "Impossible de créer une table."; +$a->strings["Your Friendica site database has been installed."] = "La base de données de votre site Friendica a bien été installée."; +$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Vous pourriez avoir besoin d'importer le fichier \"database.sql\" manuellement au moyen de phpmyadmin ou de la commande mysql."; +$a->strings["Please see the file \"INSTALL.txt\"."] = "Référez-vous au fichier \"INSTALL.txt\"."; +$a->strings["System check"] = "Vérifications système"; +$a->strings["Check again"] = "Vérifier à nouveau"; +$a->strings["Database connection"] = "Connexion à la base de données"; +$a->strings["In order to install Friendica we need to know how to connect to your database."] = "Pour installer Friendica, nous avons besoin de savoir comment contacter votre base de données."; +$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Merci de vous tourner vers votre hébergeur et/ou administrateur pour toute question concernant ces réglages."; +$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "La base de données que vous spécifierez doit exister. Si ce n'est pas encore le cas, merci de la créer avant de continuer."; +$a->strings["Database Server Name"] = "Serveur de base de données"; +$a->strings["Database Login Name"] = "Nom d'utilisateur de la base"; +$a->strings["Database Login Password"] = "Mot de passe de la base"; +$a->strings["Database Name"] = "Nom de la base"; +$a->strings["Site administrator email address"] = "Adresse électronique de l'administrateur du site"; +$a->strings["Your account email address must match this in order to use the web admin panel."] = "Votre adresse électronique doit correspondre à celle-ci pour pouvoir utiliser l'interface d'administration."; +$a->strings["Please select a default timezone for your website"] = "Sélectionner un fuseau horaire par défaut pour votre site"; +$a->strings["Site settings"] = "Réglages du site"; +$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Impossible de trouver la version \"ligne de commande\" de PHP dans le PATH du serveur web."; +$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron. See 'Activating scheduled tasks'"] = "Si vous n'avez pas de version \"ligne de commande\" de PHP sur votre serveur, vous ne pourrez pas utiliser le 'poller' en tâche de fond via cron. Voir 'Activating scheduled tasks'"; +$a->strings["PHP executable path"] = "Chemin vers l'exécutable de PHP"; +$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Entrez le chemin (absolu) vers l'exécutable 'php'. Vous pouvez laisser cette ligne vide pour continuer l'installation."; +$a->strings["Command line PHP"] = "Version \"ligne de commande\" de PHP"; +$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "La version \"ligne de commande\" de PHP de votre système n'a pas \"register_argc_argv\" d'activé."; +$a->strings["This is required for message delivery to work."] = "Ceci est requis pour que la livraison des messages fonctionne."; +$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"] = "Erreur: la fonction \"openssl_pkey_new\" de ce système ne permet pas de générer des clés de chiffrement"; +$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Si vous utilisez Windows, merci de vous réferer à \"http://www.php.net/manual/en/openssl.installation.php\"."; +$a->strings["Generate encryption keys"] = "Générer les clés de chiffrement"; +$a->strings["libCurl PHP module"] = "Module libCurl de PHP"; +$a->strings["GD graphics PHP module"] = "Module GD (graphiques) de PHP"; +$a->strings["OpenSSL PHP module"] = "Module OpenSSL de PHP"; +$a->strings["mysqli PHP module"] = "Module Mysqli de PHP"; +$a->strings["mb_string PHP module"] = "Module mb_string de PHP"; +$a->strings["Apache mod_rewrite module"] = "Module mod_rewrite Apache"; +$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Erreur: Le module \"rewrite\" du serveur web Apache est requis mais pas installé."; +$a->strings["Error: libCURL PHP module required but not installed."] = "Erreur: Le module PHP \"libCURL\" est requis mais pas installé."; +$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Erreur: Le module PHP \"GD\" disposant du support JPEG est requis mais pas installé."; +$a->strings["Error: openssl PHP module required but not installed."] = "Erreur: Le module PHP \"openssl\" est requis mais pas installé."; +$a->strings["Error: mysqli PHP module required but not installed."] = "Erreur: Le module PHP \"mysqli\" est requis mais pas installé."; +$a->strings["Error: mb_string PHP module required but not installed."] = "Erreur: le module PHP mb_string est requis mais pas installé."; +$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."] = "L'installeur web doit être en mesure de créer un fichier \".htconfig.php\" à la racine de votre serveur web, mais il en est incapable."; +$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."] = "Le plus souvent, il s'agit d'un problème de permission. Le serveur web peut ne pas être capable d'écrire dans votre répertoire - alors que vous-même le pouvez."; +$a->strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Friendica top folder."] = "A la fin de cette étape, nous vous fournirons un texte à sauvegarder dans un fichier nommé .htconfig.php à la racine de votre répertoire Friendica."; +$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "Vous pouvez également sauter cette étape et procéder à une installation manuelle. Pour cela, merci de lire le fichier \"INSTALL.txt\"."; +$a->strings[".htconfig.php is writable"] = "Fichier .htconfig.php accessible en écriture"; +$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "La réécriture d'URL dans le fichier .htaccess ne fonctionne pas. Vérifiez la configuration de votre serveur."; +$a->strings["Url rewrite is working"] = "La réécriture d'URL fonctionne."; +$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."] = "Le fichier de configuration de la base (\".htconfig.php\") ne peut être créé. Merci d'utiliser le texte ci-joint pour créer ce fichier à la racine de votre hébergement."; +$a->strings["Errors encountered creating database tables."] = "Des erreurs ont été signalées lors de la création des tables."; +$a->strings["

    What next

    "] = "

    Ensuite

    "; +$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "IMPORTANT: Vous devez configurer [manuellement] une tâche programmée pour le 'poller'."; +$a->strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ g:i A"; +$a->strings["Time Conversion"] = "Conversion temporelle"; +$a->strings["Friendika provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica fournit ce service pour partager des événements avec d'autres réseaux et amis indépendament de leur fuseau horaire."; +$a->strings["UTC time: %s"] = "Temps UTC : %s"; +$a->strings["Current timezone: %s"] = "Zone de temps courante : %s"; +$a->strings["Converted localtime: %s"] = "Temps local converti : %s"; +$a->strings["Please select your timezone:"] = "Sélectionner votre zone :"; +$a->strings["Poke/Prod"] = "Solliciter"; +$a->strings["poke, prod or do other things to somebody"] = "solliciter (poke/...) quelqu'un"; +$a->strings["Recipient"] = "Destinataire"; +$a->strings["Choose what you wish to do to recipient"] = "Choisissez ce que vous voulez faire au destinataire"; +$a->strings["Make this post private"] = "Rendez ce message privé"; +$a->strings["Profile Match"] = "Correpondance de profils"; +$a->strings["No keywords to match. Please add keywords to your default profile."] = "Aucun mot-clé en correspondance. Merci d'ajouter des mots-clés à votre profil par défaut."; +$a->strings["is interested in:"] = "s'intéresse à:"; +$a->strings["Connect"] = "Relier"; +$a->strings["No matches"] = "Aucune correspondance"; +$a->strings["Remote privacy information not available."] = "Informations de confidentialité indisponibles."; +$a->strings["Visible to:"] = "Visible par:"; +$a->strings["No such group"] = "Groupe inexistant"; +$a->strings["Group is empty"] = "Groupe vide"; +$a->strings["Group: "] = "Groupe: "; +$a->strings["Select"] = "Sélectionner"; +$a->strings["View %s's profile @ %s"] = "Voir le profil de %s @ %s"; +$a->strings["%s from %s"] = "%s de %s"; +$a->strings["View in context"] = "Voir dans le contexte"; +$a->strings["%d comment"] = array( + 0 => "%d commentaire", + 1 => "%d commentaires", +); +$a->strings["comment"] = array( + 0 => "", + 1 => "commentaire", +); +$a->strings["show more"] = "montrer plus"; +$a->strings["like"] = "aime"; +$a->strings["dislike"] = "n'aime pas"; +$a->strings["Share this"] = "Partager"; +$a->strings["share"] = "partager"; +$a->strings["Bold"] = "Gras"; +$a->strings["Italic"] = "Italique"; +$a->strings["Underline"] = "Souligné"; +$a->strings["Quote"] = "Citation"; +$a->strings["Code"] = "Code"; +$a->strings["Image"] = "Image"; +$a->strings["Link"] = "Lien"; +$a->strings["Video"] = "Vidéo"; +$a->strings["add star"] = "mett en avant"; +$a->strings["remove star"] = "ne plus mettre en avant"; +$a->strings["toggle star status"] = "mettre en avant"; +$a->strings["starred"] = "mis en avant"; +$a->strings["add tag"] = "ajouter un tag"; +$a->strings["save to folder"] = "sauver vers dossier"; +$a->strings["to"] = "à"; +$a->strings["Wall-to-Wall"] = "Inter-mur"; +$a->strings["via Wall-To-Wall:"] = "en Inter-mur:"; +$a->strings["Welcome to %s"] = "Bienvenue sur %s"; +$a->strings["Invalid request identifier."] = "Identifiant de demande invalide."; +$a->strings["Discard"] = "Rejeter"; +$a->strings["Ignore"] = "Ignorer"; +$a->strings["System"] = "Système"; +$a->strings["Network"] = "Réseau"; +$a->strings["Personal"] = "Personnel"; +$a->strings["Home"] = "Accueil"; +$a->strings["Introductions"] = "Introductions"; +$a->strings["Messages"] = "Messages"; +$a->strings["Show Ignored Requests"] = "Voir les demandes ignorées"; +$a->strings["Hide Ignored Requests"] = "Cacher les demandes ignorées"; +$a->strings["Notification type: "] = "Type de notification: "; +$a->strings["Friend Suggestion"] = "Suggestion d'amitié/contact"; +$a->strings["suggested by %s"] = "suggéré(e) par %s"; +$a->strings["Hide this contact from others"] = "Cacher ce contact aux autres"; +$a->strings["Post a new friend activity"] = "Poster concernant les nouvelles amitiés"; +$a->strings["if applicable"] = "si possible"; +$a->strings["Approve"] = "Approuver"; +$a->strings["Claims to be known to you: "] = "Prétend que vous le connaissez: "; +$a->strings["yes"] = "oui"; +$a->strings["no"] = "non"; +$a->strings["Approve as: "] = "Approuver en tant que: "; +$a->strings["Friend"] = "Ami"; +$a->strings["Sharer"] = "Initiateur du partage"; +$a->strings["Fan/Admirer"] = "Fan/Admirateur"; +$a->strings["Friend/Connect Request"] = "Demande de connexion/relation"; +$a->strings["New Follower"] = "Nouvel abonné"; +$a->strings["No introductions."] = "Aucune demande d'introduction."; +$a->strings["Notifications"] = "Notifications"; +$a->strings["%s liked %s's post"] = "%s a aimé la notice de %s"; +$a->strings["%s disliked %s's post"] = "%s n'a pas aimé la notice de %s"; +$a->strings["%s is now friends with %s"] = "%s est désormais ami(e) avec %s"; +$a->strings["%s created a new post"] = "%s a publié une notice"; +$a->strings["%s commented on %s's post"] = "%s a commenté une notice de %s"; +$a->strings["No more network notifications."] = "Aucune notification du réseau."; +$a->strings["Network Notifications"] = "Notifications du réseau"; +$a->strings["No more system notifications."] = "Pas plus de notifications système."; +$a->strings["System Notifications"] = "Notifications du système"; +$a->strings["No more personal notifications."] = "Aucun notification personnelle."; +$a->strings["Personal Notifications"] = "Notifications personnelles"; +$a->strings["No more home notifications."] = "Aucune notification de la page d'accueil."; +$a->strings["Home Notifications"] = "Notifications de page d'accueil"; +$a->strings["Could not access contact record."] = "Impossible d'accéder à l'enregistrement du contact."; +$a->strings["Could not locate selected profile."] = "Impossible de localiser le profil séléctionné."; +$a->strings["Contact updated."] = "Contact mis-à-jour."; +$a->strings["Contact has been blocked"] = "Le contact a été bloqué"; +$a->strings["Contact has been unblocked"] = "Le contact n'est plus bloqué"; +$a->strings["Contact has been ignored"] = "Le contact a été ignoré"; +$a->strings["Contact has been unignored"] = "Le contact n'est plus ignoré"; +$a->strings["Contact has been archived"] = "Contact archivé"; +$a->strings["Contact has been unarchived"] = "Contact désarchivé"; +$a->strings["Contact has been removed."] = "Ce contact a été retiré."; +$a->strings["You are mutual friends with %s"] = "Vous êtes ami (et réciproquement) avec %s"; +$a->strings["You are sharing with %s"] = "Vous partagez avec %s"; +$a->strings["%s is sharing with you"] = "%s partage avec vous"; +$a->strings["Private communications are not available for this contact."] = "Les communications privées ne sont pas disponibles pour ce contact."; +$a->strings["Never"] = "Jamais"; +$a->strings["(Update was successful)"] = "(Mise à jour effectuée avec succès)"; +$a->strings["(Update was not successful)"] = "(Mise à jour échouée)"; +$a->strings["Suggest friends"] = "Suggérer amitié/contact"; +$a->strings["Network type: %s"] = "Type de réseau %s"; +$a->strings["%d contact in common"] = array( + 0 => "%d contact en commun", + 1 => "%d contacts en commun", +); +$a->strings["View all contacts"] = "Voir tous les contacts"; +$a->strings["Unblock"] = "Débloquer"; +$a->strings["Block"] = "Bloquer"; +$a->strings["Toggle Blocked status"] = "(dés)activer l'état \"bloqué\""; +$a->strings["Unignore"] = "Ne plus ignorer"; +$a->strings["Toggle Ignored status"] = "(dés)activer l'état \"ignoré\""; +$a->strings["Unarchive"] = "Désarchiver"; +$a->strings["Archive"] = "Archiver"; +$a->strings["Toggle Archive status"] = "(dés)activer l'état \"archivé\""; +$a->strings["Repair"] = "Réparer"; +$a->strings["Advanced Contact Settings"] = "Réglages avancés du contact"; +$a->strings["Communications lost with this contact!"] = "Communications perdues avec ce contact !"; +$a->strings["Contact Editor"] = "Éditeur de contact"; +$a->strings["Profile Visibility"] = "Visibilité du profil"; +$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Merci de choisir le profil que vous souhaitez montrer à %s lorsqu'il vous rend visite de manière sécurisée."; +$a->strings["Contact Information / Notes"] = "Informations de contact / Notes"; +$a->strings["Edit contact notes"] = "Éditer les notes des contacts"; +$a->strings["Visit %s's profile [%s]"] = "Visiter le profil de %s [%s]"; +$a->strings["Block/Unblock contact"] = "Bloquer/débloquer ce contact"; +$a->strings["Ignore contact"] = "Ignorer ce contact"; +$a->strings["Repair URL settings"] = "Réparer les réglages d'URL"; +$a->strings["View conversations"] = "Voir les conversations"; +$a->strings["Delete contact"] = "Effacer ce contact"; +$a->strings["Last update:"] = "Dernière mise-à-jour :"; +$a->strings["Update public posts"] = "Met ses entrées publiques à jour: "; +$a->strings["Update now"] = "Mettre à jour"; +$a->strings["Currently blocked"] = "Actuellement bloqué"; +$a->strings["Currently ignored"] = "Actuellement ignoré"; +$a->strings["Currently archived"] = "Actuellement archivé"; +$a->strings["Replies/likes to your public posts may still be visible"] = "Les réponses et \"j'aime\" à vos contenus publics peuvent être toujours visibles"; +$a->strings["Suggestions"] = "Suggestions"; +$a->strings["Suggest potential friends"] = "Suggérer des amis potentiels"; +$a->strings["All Contacts"] = "Tous les contacts"; +$a->strings["Show all contacts"] = "Montrer tous les contacts"; +$a->strings["Unblocked"] = "Non-bloqués"; +$a->strings["Only show unblocked contacts"] = "Ne montrer que les contacts non-bloqués"; +$a->strings["Blocked"] = "Bloqués"; +$a->strings["Only show blocked contacts"] = "Ne montrer que les contacts bloqués"; +$a->strings["Ignored"] = "Ignorés"; +$a->strings["Only show ignored contacts"] = "Ne montrer que les contacts ignorés"; +$a->strings["Archived"] = "Archivés"; +$a->strings["Only show archived contacts"] = "Ne montrer que les contacts archivés"; +$a->strings["Hidden"] = "Cachés"; +$a->strings["Only show hidden contacts"] = "Ne montrer que les contacts masqués"; +$a->strings["Mutual Friendship"] = "Relation réciproque"; +$a->strings["is a fan of yours"] = "Vous suit"; +$a->strings["you are a fan of"] = "Vous le/la suivez"; +$a->strings["Edit contact"] = "Éditer le contact"; +$a->strings["Contacts"] = "Contacts"; +$a->strings["Search your contacts"] = "Rechercher dans vos contacts"; +$a->strings["Finding: "] = "Trouvé: "; +$a->strings["Find"] = "Trouver"; +$a->strings["No valid account found."] = "Impossible de trouver un compte valide."; +$a->strings["Password reset request issued. Check your email."] = "Réinitialisation du mot de passe en cours. Vérifiez votre courriel."; +$a->strings["Password reset requested at %s"] = "Requête de réinitialisation de mot de passe à %s"; +$a->strings["Administrator"] = "Administrateur"; +$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Impossible d'honorer cette demande. (Vous l'avez peut-être déjà utilisée par le passé.) La réinitialisation a échoué."; +$a->strings["Password Reset"] = "Réinitialiser le mot de passe"; +$a->strings["Your password has been reset as requested."] = "Votre mot de passe a bien été réinitialisé."; +$a->strings["Your new password is"] = "Votre nouveau mot de passe est "; +$a->strings["Save or copy your new password - and then"] = "Sauvez ou copiez ce nouveau mot de passe - puis"; +$a->strings["click here to login"] = "cliquez ici pour vous connecter"; +$a->strings["Your password may be changed from the Settings page after successful login."] = "Votre mot de passe peut être changé depuis la page <em>Réglages</em>, une fois que vous serez connecté."; +$a->strings["Forgot your Password?"] = "Mot de passe oublié?"; +$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Entrez votre adresse de courriel et validez pour réinitialiser votre mot de passe. Vous recevrez la suite des instructions par courriel."; +$a->strings["Nickname or Email: "] = "Pseudo ou Courriel: "; +$a->strings["Reset"] = "Réinitialiser"; +$a->strings["Account settings"] = "Compte"; +$a->strings["Display settings"] = "Affichage"; +$a->strings["Connector settings"] = "Connecteurs"; +$a->strings["Plugin settings"] = "Extensions"; +$a->strings["Connected apps"] = "Applications connectées"; +$a->strings["Export personal data"] = "Exporter"; +$a->strings["Remove account"] = "Supprimer le compte"; +$a->strings["Settings"] = "Réglages"; +$a->strings["Missing some important data!"] = "Il manque certaines informations importantes!"; +$a->strings["Update"] = "Mises-à-jour"; +$a->strings["Failed to connect with email account using the settings provided."] = "Impossible de se connecter au compte courriel configuré."; +$a->strings["Email settings updated."] = "Réglages de courriel mis-à-jour."; +$a->strings["Passwords do not match. Password unchanged."] = "Les mots de passe ne correspondent pas. Aucun changement appliqué."; +$a->strings["Empty passwords are not allowed. Password unchanged."] = "Les mots de passe vides sont interdits. Aucun changement appliqué."; +$a->strings["Password changed."] = "Mots de passe changés."; +$a->strings["Password update failed. Please try again."] = "Le changement de mot de passe a échoué. Merci de recommencer."; +$a->strings[" Please use a shorter name."] = " Merci d'utiliser un nom plus court."; +$a->strings[" Name too short."] = " Nom trop court."; +$a->strings[" Not valid email."] = " Email invalide."; +$a->strings[" Cannot change to that email."] = " Impossible de changer pour cet email."; +$a->strings["Private forum has no privacy permissions. Using default privacy group."] = "Ce forum privé n'a pas de paramètres de vie privée. Utilisation des paramètres de confidentialité par défaut."; +$a->strings["Private forum has no privacy permissions and no default privacy group."] = "Ce forum privé n'a pas de paramètres de vie privée ni de paramètres de confidentialité par défaut."; +$a->strings["Settings updated."] = "Réglages mis à jour."; +$a->strings["Add application"] = "Ajouter une application"; +$a->strings["Consumer Key"] = "Clé utilisateur"; +$a->strings["Consumer Secret"] = "Secret utilisateur"; +$a->strings["Redirect"] = "Rediriger"; +$a->strings["Icon url"] = "URL de l'icône"; +$a->strings["You can't edit this application."] = "Vous ne pouvez pas éditer cette application."; +$a->strings["Connected Apps"] = "Applications connectées"; +$a->strings["Client key starts with"] = "La clé cliente commence par"; +$a->strings["No name"] = "Sans nom"; +$a->strings["Remove authorization"] = "Révoquer l'autorisation"; +$a->strings["No Plugin settings configured"] = "Pas de réglages d'extensions configurés"; +$a->strings["Plugin Settings"] = "Extensions"; +$a->strings["Built-in support for %s connectivity is %s"] = "Le support natif pour la connectivité %s est %s"; +$a->strings["enabled"] = "activé"; +$a->strings["disabled"] = "désactivé"; +$a->strings["StatusNet"] = "StatusNet"; +$a->strings["Email access is disabled on this site."] = "L'accès courriel est désactivé sur ce site."; +$a->strings["Connector Settings"] = "Connecteurs"; +$a->strings["Email/Mailbox Setup"] = "Réglages de courriel/boîte à lettre"; +$a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "Si vous souhaitez communiquer avec vos contacts \"courriel\" (facultatif), merci de nous indiquer comment vous connecter à votre boîte."; +$a->strings["Last successful email check:"] = "Dernière vérification réussie des courriels:"; +$a->strings["IMAP server name:"] = "Nom du serveur IMAP:"; +$a->strings["IMAP port:"] = "Port IMAP:"; +$a->strings["Security:"] = "Sécurité:"; +$a->strings["None"] = "Aucun(e)"; +$a->strings["Email login name:"] = "Nom de connexion:"; +$a->strings["Email password:"] = "Mot de passe:"; +$a->strings["Reply-to address:"] = "Adresse de réponse:"; +$a->strings["Send public posts to all email contacts:"] = "Les notices publiques vont à tous les contacts courriel:"; +$a->strings["Action after import:"] = "Action après import:"; +$a->strings["Mark as seen"] = "Marquer comme vu"; +$a->strings["Move to folder"] = "Déplacer vers"; +$a->strings["Move to folder:"] = "Déplacer vers:"; +$a->strings["No special theme for mobile devices"] = "Pas de thème particulier pour les terminaux mobiles"; +$a->strings["Display Settings"] = "Affichage"; +$a->strings["Display Theme:"] = "Thème d'affichage:"; +$a->strings["Mobile Theme:"] = "Thème mobile:"; +$a->strings["Update browser every xx seconds"] = "Mettre-à-jour l'affichage toutes les xx secondes"; +$a->strings["Minimum of 10 seconds, no maximum"] = "Délai minimum de 10 secondes, pas de maximum"; +$a->strings["Number of items to display per page:"] = "Nombre d’éléments par page:"; +$a->strings["Maximum of 100 items"] = "Maximum de 100 éléments"; +$a->strings["Don't show emoticons"] = "Ne pas afficher les émoticônes (smileys grahiques)"; +$a->strings["Normal Account Page"] = "Compte normal"; +$a->strings["This account is a normal personal profile"] = "Ce compte correspond à un profil normal, pour une seule personne (physique, généralement)"; +$a->strings["Soapbox Page"] = "Compte \"boîte à savon\""; +$a->strings["Automatically approve all connection/friend requests as read-only fans"] = "Accepter automatiquement toutes les demandes d'amitié/connexion comme étant des fans 'en lecture seule'"; +$a->strings["Community Forum/Celebrity Account"] = "Compte de communauté/célébrité"; +$a->strings["Automatically approve all connection/friend requests as read-write fans"] = "Accepter automatiquement toutes les demandes d'amitié/connexion comme étant des fans en 'lecture/écriture'"; +$a->strings["Automatic Friend Page"] = "Compte d'\"amitié automatique\""; +$a->strings["Automatically approve all connection/friend requests as friends"] = "Accepter automatiquement toutes les demandes d'amitié/connexion comme étant des amis"; +$a->strings["Private Forum [Experimental]"] = "Forum privé [expérimental]"; +$a->strings["Private forum - approved members only"] = "Forum privé - modéré en inscription"; +$a->strings["OpenID:"] = "OpenID:"; +$a->strings["(Optional) Allow this OpenID to login to this account."] = "&nbsp;(Facultatif) Autoriser cet OpenID à se connecter à ce compte."; +$a->strings["Publish your default profile in your local site directory?"] = "Publier votre profil par défaut sur l'annuaire local de ce site?"; +$a->strings["Publish your default profile in the global social directory?"] = "Publier votre profil par défaut sur l'annuaire social global?"; +$a->strings["Hide your contact/friend list from viewers of your default profile?"] = "Cacher votre liste de contacts/amis des visiteurs de votre profil par défaut?"; +$a->strings["Hide your profile details from unknown viewers?"] = "Cacher les détails du profil aux visiteurs inconnus?"; +$a->strings["Allow friends to post to your profile page?"] = "Autoriser vos amis à publier sur votre profil?"; +$a->strings["Allow friends to tag your posts?"] = "Autoriser vos amis à tagguer vos notices?"; +$a->strings["Allow us to suggest you as a potential friend to new members?"] = "Autoriser les suggestions d'amis potentiels aux nouveaux arrivants?"; +$a->strings["Permit unknown people to send you private mail?"] = "Autoriser les messages privés d'inconnus?"; +$a->strings["Profile is not published."] = "Ce profil n'est pas publié."; +$a->strings["or"] = "ou"; +$a->strings["Your Identity Address is"] = "L'adresse de votre identité est"; +$a->strings["Automatically expire posts after this many days:"] = "Les publications expirent automatiquement après (en jours) :"; +$a->strings["If empty, posts will not expire. Expired posts will be deleted"] = "Si ce champ est vide, les notices n'expireront pas. Les notices expirées seront supprimées"; +$a->strings["Advanced expiration settings"] = "Réglages avancés de l'expiration"; +$a->strings["Advanced Expiration"] = "Expiration (avancé)"; +$a->strings["Expire posts:"] = "Faire expirer les contenus:"; +$a->strings["Expire personal notes:"] = "Faire expirer les notes personnelles:"; +$a->strings["Expire starred posts:"] = "Faire expirer les contenus marqués:"; +$a->strings["Expire photos:"] = "Faire expirer les photos:"; +$a->strings["Only expire posts by others:"] = "Faire expirer seulement les messages des autres :"; +$a->strings["Account Settings"] = "Compte"; +$a->strings["Password Settings"] = "Réglages de mot de passe"; +$a->strings["New Password:"] = "Nouveau mot de passe:"; +$a->strings["Confirm:"] = "Confirmer:"; +$a->strings["Leave password fields blank unless changing"] = "Laissez les champs de mot de passe vierges, sauf si vous désirez les changer"; +$a->strings["Basic Settings"] = "Réglages basiques"; +$a->strings["Full Name:"] = "Nom complet:"; +$a->strings["Email Address:"] = "Adresse courriel:"; +$a->strings["Your Timezone:"] = "Votre fuseau horaire:"; +$a->strings["Default Post Location:"] = "Publication par défaut depuis :"; +$a->strings["Use Browser Location:"] = "Utiliser la localisation géographique du navigateur:"; +$a->strings["Security and Privacy Settings"] = "Réglages de sécurité et vie privée"; +$a->strings["Maximum Friend Requests/Day:"] = "Nombre maximal de requêtes d'amitié/jour:"; +$a->strings["(to prevent spam abuse)"] = "(pour limiter l'impact du spam)"; +$a->strings["Default Post Permissions"] = "Permissions par défaut sur les articles"; +$a->strings["(click to open/close)"] = "(cliquer pour ouvrir/fermer)"; +$a->strings["Maximum private messages per day from unknown people:"] = "Maximum de messages privés d'inconnus par jour:"; +$a->strings["Notification Settings"] = "Réglages de notification"; +$a->strings["By default post a status message when:"] = "Par défaut, poster un statut quand:"; +$a->strings["accepting a friend request"] = "j'accepte un ami"; +$a->strings["joining a forum/community"] = "joignant un forum/une communauté"; +$a->strings["making an interesting profile change"] = "je fais une modification intéressante de mon profil"; +$a->strings["Send a notification email when:"] = "Envoyer un courriel de notification quand:"; +$a->strings["You receive an introduction"] = "Vous recevez une introduction"; +$a->strings["Your introductions are confirmed"] = "Vos introductions sont confirmées"; +$a->strings["Someone writes on your profile wall"] = "Quelqu'un écrit sur votre mur"; +$a->strings["Someone writes a followup comment"] = "Quelqu'un vous commente"; +$a->strings["You receive a private message"] = "Vous recevez un message privé"; +$a->strings["You receive a friend suggestion"] = "Vous avez reçu une suggestion d'ami"; +$a->strings["You are tagged in a post"] = "Vous avez été repéré dans une publication"; +$a->strings["You are poked/prodded/etc. in a post"] = "Vous avez été sollicité dans une publication"; +$a->strings["Advanced Account/Page Type Settings"] = "Paramètres avancés de compte/page"; +$a->strings["Change the behaviour of this account for special situations"] = "Modifier le comportement de ce compte dans certaines situations"; +$a->strings["Manage Identities and/or Pages"] = "Gérer les identités et/ou les pages"; +$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Basculez entre les différentes identités ou pages (groupes/communautés) qui se partagent votre compte ou que vous avez été autorisé à gérer."; +$a->strings["Select an identity to manage: "] = "Choisir une identité à gérer: "; +$a->strings["Search Results For:"] = "Résultats pour:"; +$a->strings["Remove term"] = "Retirer le terme"; +$a->strings["Saved Searches"] = "Recherches sauvées"; +$a->strings["add"] = "ajouter"; +$a->strings["Commented Order"] = "Dans l'ordre des commentaires"; +$a->strings["Sort by Comment Date"] = "Trier par date de commentaire"; +$a->strings["Posted Order"] = "Dans l'ordre des notices"; +$a->strings["Sort by Post Date"] = "Trier par date de publication"; +$a->strings["Posts that mention or involve you"] = "Publications qui vous concernent"; +$a->strings["New"] = "Nouveau"; +$a->strings["Activity Stream - by date"] = "Flux d'activités - par date"; +$a->strings["Starred"] = "Mis en avant"; +$a->strings["Favourite Posts"] = "Publications favorites"; +$a->strings["Shared Links"] = "Liens partagés"; +$a->strings["Interesting Links"] = "Liens intéressants"; +$a->strings["Warning: This group contains %s member from an insecure network."] = array( + 0 => "Attention: Ce groupe contient %s membre d'un réseau non-sûr.", + 1 => "Attention: Ce groupe contient %s membres d'un réseau non-sûr.", +); +$a->strings["Private messages to this group are at risk of public disclosure."] = "Les messages privés envoyés à ce groupe s'exposent à une diffusion incontrôlée."; +$a->strings["Contact: "] = "Contact: "; +$a->strings["Private messages to this person are at risk of public disclosure."] = "Les messages privés envoyés à ce contact s'exposent à une diffusion incontrôlée."; +$a->strings["Invalid contact."] = "Contact invalide."; +$a->strings["Personal Notes"] = "Notes personnelles"; +$a->strings["Save"] = "Sauver"; +$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "Nombre de messages de mur quotidiens pour %s dépassé. Échec du message."; +$a->strings["No recipient selected."] = "Pas de destinataire sélectionné."; +$a->strings["Unable to check your home location."] = "Impossible de vérifier votre localisation."; +$a->strings["Message could not be sent."] = "Impossible d'envoyer le message."; +$a->strings["Message collection failure."] = "Récupération des messages infructueuse."; +$a->strings["Message sent."] = "Message envoyé."; +$a->strings["No recipient."] = "Pas de destinataire."; +$a->strings["Please enter a link URL:"] = "Entrez un lien web:"; +$a->strings["Send Private Message"] = "Envoyer un message privé"; +$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "Si vous souhaitez que %s réponde, merci de vérifier vos réglages pour autoriser les messages privés venant d'inconnus."; +$a->strings["To:"] = "À:"; +$a->strings["Subject:"] = "Sujet:"; +$a->strings["Your message:"] = "Votre message:"; +$a->strings["Welcome to Friendica"] = "Bienvenue sur Friendica"; +$a->strings["New Member Checklist"] = "Checklist du nouvel utilisateur"; +$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."] = "Nous souhaiterions vous donner quelques astuces et ressources pour rendre votre expérience la plus agréable possible. Cliquez sur n'importe lequel de ces éléments pour visiter la page correspondante. Un lien vers cette page restera visible sur votre page d'accueil pendant les deux semaines qui suivent votre inscription initiale, puis disparaîtra silencieusement."; +$a->strings["Getting Started"] = "Bien démarrer"; +$a->strings["Friendica Walk-Through"] = "Friendica pas-à-pas"; +$a->strings["On your Quick Start page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."] = ""; +$a->strings["Go to Your Settings"] = "Éditer vos Réglages"; +$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."] = "Sur la page des Réglages - changez votre mot de passe initial. Notez bien votre Identité. Elle ressemble à une adresse de courriel - et vous sera utile pour vous faire des amis dans le web social libre."; +$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."] = "Vérifiez les autres réglages, tout particulièrement ceux liés à la vie privée. Un profil non listé, c'est un peu comme un numéro sur liste rouge. En général, vous devriez probablement publier votre profil - à moins que tous vos amis (potentiels) sachent déjà comment vous trouver."; +$a->strings["Profile"] = "Profil"; +$a->strings["Upload Profile Photo"] = "Téléverser une photo de profil"; +$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."] = "Téléversez (envoyez) une photo de profil si vous n'en avez pas déjà une. Les études montrent que les gens qui affichent de vraies photos d'eux sont dix fois plus susceptibles de se faire des amis."; +$a->strings["Edit Your Profile"] = "Éditer votre Profil"; +$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."] = "Éditez votre profil par défaut à votre convenance. Vérifiez les réglages concernant la visibilité de votre liste d'amis par les visiteurs inconnus."; +$a->strings["Profile Keywords"] = "Mots-clés du profil"; +$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."] = "Choisissez quelques mots-clé publics pour votre profil par défaut. Ils pourront ainsi décrire vos centres d'intérêt, et nous pourrons vous proposer des contacts qui les partagent."; +$a->strings["Connecting"] = ""; +$a->strings["Facebook"] = "Facebook"; +$a->strings["Authorise the Facebook Connector if you currently have a Facebook account and we will (optionally) import all your Facebook friends and conversations."] = "Activez et paramétrez le connecteur Facebook si vous avez un compte Facebook et nous pourrons (de manière facultative) importer tous vos amis et conversations Facebook."; +$a->strings["If this is your own personal server, installing the Facebook addon may ease your transition to the free social web."] = "Si ceci est votre propre serveur, installer le connecteur Facebook peut adoucir votre transition vers le web social libre."; +$a->strings["Importing Emails"] = ""; +$a->strings["Enter your email access information on your Connector Settings page if you wish to import and interact with friends or mailing lists from your email INBOX"] = "Entrez vos paramètres de courriel dans les Réglages des connecteurs si vous souhaitez importer et interagir avec des amis ou des listes venant de votre Boîte de Réception."; +$a->strings["Go to Your Contacts Page"] = "Consulter vos Contacts"; +$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."] = "Votre page Contacts est le point d'entrée vers la gestion de vos amitiés/relations et la connexion à des amis venant d'autres réseaux. Typiquement, vous pourrez y rentrer leur adresse d'Identité ou l'URL de leur site dans le formulaire Ajouter un nouveau contact."; +$a->strings["Go to Your Site's Directory"] = "Consulter l'Annuaire de votre Site"; +$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."] = "La page Annuaire vous permet de trouver d'autres personnes au sein de ce réseaux ou parmi d'autres sites fédérés. Cherchez un lien Relier ou Suivre sur leur profil. Vous pourrez avoir besoin d'indiquer votre adresse d'identité."; +$a->strings["Finding New People"] = "Trouver de nouvelles personnes"; +$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."] = "Sur le panneau latéral de la page Contacts, il y a plusieurs moyens de trouver de nouveaux amis. Nous pouvons mettre les gens en relation selon leurs intérêts, rechercher des amis par nom ou intérêt, et fournir des suggestions en fonction de la topologie du réseau. Sur un site tout neuf, les suggestions d'amitié devraient commencer à apparaître au bout de 24 heures."; +$a->strings["Groups"] = "Groupes"; +$a->strings["Group Your Contacts"] = "Grouper vos contacts"; +$a->strings["Once you have made some friends, organize them into private conversation groups from the sidebar of your Contacts page and then you can interact with each group privately on your Network page."] = "Une fois que vous avez trouvé quelques amis, organisez-les en groupes de conversation privés depuis le panneau latéral de la page Contacts. Vous pourrez ensuite interagir avec chaque groupe de manière privée depuis la page Réseau."; +$a->strings["Why Aren't My Posts Public?"] = "Pourquoi mes éléments ne sont pas publics?"; +$a->strings["Friendica respects your privacy. By default, your posts will only show up to people you've added as friends. For more information, see the help section from the link above."] = "Friendica respecte votre vie privée. Par défaut, tous vos éléments seront seulement montrés à vos amis. Pour plus d'information, consultez la section \"aide\" du lien ci-dessus."; +$a->strings["Getting Help"] = "Obtenir de l'aide"; +$a->strings["Go to the Help Section"] = "Aller à la section Aide"; +$a->strings["Our help pages may be consulted for detail on other program features and resources."] = "Nos pages d'aide peuvent être consultées pour davantage de détails sur les fonctionnalités ou les ressources."; +$a->strings["Item not available."] = "Elément non disponible."; +$a->strings["Item was not found."] = "Element introuvable."; +$a->strings["Group created."] = "Groupe créé."; +$a->strings["Could not create group."] = "Impossible de créer le groupe."; +$a->strings["Group not found."] = "Groupe introuvable."; +$a->strings["Group name changed."] = "Groupe renommé."; +$a->strings["Permission denied"] = "Permission refusée"; +$a->strings["Create a group of contacts/friends."] = "Créez un groupe de contacts/amis."; +$a->strings["Group Name: "] = "Nom du groupe: "; +$a->strings["Group removed."] = "Groupe enlevé."; +$a->strings["Unable to remove group."] = "Impossible d'enlever le groupe."; +$a->strings["Group Editor"] = "Éditeur de groupe"; +$a->strings["Members"] = "Membres"; +$a->strings["Click on a contact to add or remove."] = "Cliquez sur un contact pour l'ajouter ou le supprimer."; +$a->strings["Invalid profile identifier."] = "Identifiant de profil invalide."; +$a->strings["Profile Visibility Editor"] = "Éditer la visibilité du profil"; +$a->strings["Visible To"] = "Visible par"; +$a->strings["All Contacts (with secure profile access)"] = "Tous les contacts (ayant un accès sécurisé)"; +$a->strings["No contacts."] = "Aucun contact."; +$a->strings["View Contacts"] = "Voir les contacts"; +$a->strings["Registration details for %s"] = "Détails d'inscription pour %s"; +$a->strings["Registration successful. Please check your email for further instructions."] = "Inscription réussie. Vérifiez vos emails pour la suite des instructions."; +$a->strings["Failed to send email message. Here is the message that failed."] = "Impossible d'envoyer un email. Voici le message qui a échoué."; +$a->strings["Your registration can not be processed."] = "Votre inscription ne peut être traitée."; +$a->strings["Registration request at %s"] = "Demande d'inscription à %s"; +$a->strings["Your registration is pending approval by the site owner."] = "Votre inscription attend une validation du propriétaire du site."; +$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Le nombre d'inscriptions quotidiennes pour ce site a été dépassé. Merci de réessayer demain."; +$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Vous pouvez (si vous le souhaitez) remplir ce formulaire via OpenID. Fournissez votre OpenID et cliquez \"S'inscrire\"."; +$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Si vous n'êtes pas familier avec OpenID, laissez ce champ vide et remplissez le reste."; +$a->strings["Your OpenID (optional): "] = "Votre OpenID (facultatif): "; +$a->strings["Include your profile in member directory?"] = "Inclure votre profil dans l'annuaire des membres?"; +$a->strings["Membership on this site is by invitation only."] = "L'inscription à ce site se fait uniquement sur invitation."; +$a->strings["Your invitation ID: "] = "Votre ID d'invitation: "; +$a->strings["Registration"] = "Inscription"; +$a->strings["Your Full Name (e.g. Joe Smith): "] = "Votre nom complet (p.ex. Michel Dupont): "; +$a->strings["Your Email Address: "] = "Votre adresse courriel: "; +$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be 'nickname@\$sitename'."] = "Choisissez un pseudo. Celui devra commencer par une lettre. L'adresse de votre profil en découlera sous la forme '<strong>pseudo@\$sitename</strong>'."; +$a->strings["Choose a nickname: "] = "Choisir un pseudo: "; +$a->strings["Register"] = "S'inscrire"; +$a->strings["People Search"] = "Recherche de personnes"; +$a->strings["status"] = "le statut"; +$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s aime %3\$s de %2\$s"; +$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s n'aime pas %3\$s de %2\$s"; +$a->strings["Item not found."] = "Élément introuvable."; +$a->strings["Access denied."] = "Accès refusé."; +$a->strings["Photos"] = "Photos"; +$a->strings["Files"] = "Fichiers"; +$a->strings["Account approved."] = "Inscription validée."; +$a->strings["Registration revoked for %s"] = "Inscription révoquée pour %s"; +$a->strings["Please login."] = "Merci de vous connecter."; +$a->strings["Unable to locate original post."] = "Impossible de localiser l'article original."; +$a->strings["Empty post discarded."] = "Article vide défaussé."; +$a->strings["Wall Photos"] = "Photos du mur"; +$a->strings["System error. Post not saved."] = "Erreur système. Publication non sauvée."; +$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "Ce message vous a été envoyé par %s, membre du réseau social Friendica."; +$a->strings["You may visit them online at %s"] = "Vous pouvez leur rendre visite sur %s"; +$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Merci de contacter l’émetteur en répondant à cette publication si vous ne souhaitez pas recevoir ces messages."; +$a->strings["%s posted an update."] = "%s a publié une mise à jour."; +$a->strings["%1\$s is currently %2\$s"] = "%1\$s est d'humeur %2\$s"; +$a->strings["Mood"] = "Humeur"; +$a->strings["Set your current mood and tell your friends"] = "Spécifiez votre humeur du moment, et informez vos amis"; +$a->strings["Image uploaded but image cropping failed."] = "Image envoyée, mais impossible de la retailler."; $a->strings["Image size reduction [%s] failed."] = "Réduction de la taille de l'image [%s] échouée."; $a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Rechargez la page avec la touche Maj pressée, ou bien effacez le cache du navigateur, si d'aventure la nouvelle photo n'apparaissait pas immédiatement."; $a->strings["Unable to process image"] = "Impossible de traiter l'image"; +$a->strings["Image exceeds size limit of %d"] = "L'image dépasse la taille limite de %d"; $a->strings["Upload File:"] = "Fichier à téléverser:"; -$a->strings["Upload Profile Photo"] = "Téléverser une photo de profil"; +$a->strings["Select a profile:"] = "Choisir un profil:"; $a->strings["Upload"] = "Téléverser"; -$a->strings["or"] = "ou"; $a->strings["skip this step"] = "ignorer cette étape"; $a->strings["select a photo from your photo albums"] = "choisissez une photo depuis vos albums"; $a->strings["Crop Image"] = "(Re)cadrer l'image"; $a->strings["Please adjust the image cropping for optimum viewing."] = "Ajustez le cadre de l'image pour une visualisation optimale."; $a->strings["Done Editing"] = "Édition terminée"; $a->strings["Image uploaded successfully."] = "Image téléversée avec succès."; -$a->strings["Welcome to %s"] = "Bienvenue sur %s"; -$a->strings["[Embedded content - reload page to view]"] = "[contenu incorporé - rechargez la page pour le voir]"; -$a->strings["File exceeds size limit of %d"] = "La taille du fichier dépasse la limite de %d"; -$a->strings["File upload failed."] = "Le téléversement a échoué."; -$a->strings["Friend Suggestions"] = "Suggestions d'amitiés/contacts"; -$a->strings["No suggestions. This works best when you have more than one contact/friend."] = "Pas de suggestion. Ceci fonctionne mieux quand vous avez plus d'un ami/contact."; -$a->strings["Ignore/Hide"] = "Ignorer/cacher"; -$a->strings["Registration details for %s"] = "Détails d'inscription pour %s"; -$a->strings["Administrator"] = "Administrateur"; -$a->strings["Account approved."] = "Inscription validée."; -$a->strings["Registration revoked for %s"] = "Inscription révoquée pour %s"; -$a->strings["Please login."] = "Merci de vous connecter."; +$a->strings["No profile"] = "Aucun profil"; +$a->strings["Remove My Account"] = "Supprimer mon compte"; +$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Ceci supprimera totalement votre compte. Cette opération est irréversible."; +$a->strings["Please enter your password for verification:"] = "Merci de saisir votre mot de passe pour vérification:"; +$a->strings["New Message"] = "Nouveau message"; +$a->strings["Unable to locate contact information."] = "Impossible de localiser les informations du contact."; +$a->strings["Message deleted."] = "Message supprimé."; +$a->strings["Conversation removed."] = "Conversation supprimée."; +$a->strings["No messages."] = "Aucun message."; +$a->strings["Unknown sender - %s"] = "Émetteur inconnu - %s"; +$a->strings["You and %s"] = "Vous et %s"; +$a->strings["%s and You"] = "%s et vous"; +$a->strings["Delete conversation"] = "Effacer conversation"; +$a->strings["D, d M Y - g:i A"] = "D, d M Y - g:i A"; +$a->strings["%d message"] = array( + 0 => "%d message", + 1 => "%d messages", +); +$a->strings["Message not available."] = "Message indisponible."; +$a->strings["Delete message"] = "Effacer message"; +$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Pas de communications sécurisées possibles. Vous serez peut-être en mesure de répondre depuis la page de profil de l'émetteur."; +$a->strings["Send Reply"] = "Répondre"; +$a->strings["Friends of %s"] = "Amis de %s"; +$a->strings["No friends to display."] = "Pas d'amis à afficher."; +$a->strings["Theme settings updated."] = "Réglages du thème sauvés."; +$a->strings["Site"] = "Site"; +$a->strings["Users"] = "Utilisateurs"; +$a->strings["Plugins"] = "Extensions"; +$a->strings["Themes"] = "Thèmes"; +$a->strings["DB updates"] = "Mise-à-jour de la base"; +$a->strings["Logs"] = "Journaux"; +$a->strings["Admin"] = "Admin"; +$a->strings["Plugin Features"] = "Propriétés des extensions"; +$a->strings["User registrations waiting for confirmation"] = "Inscriptions en attente de confirmation"; +$a->strings["Normal Account"] = "Compte normal"; +$a->strings["Soapbox Account"] = "Compte \"boîte à savon\""; +$a->strings["Community/Celebrity Account"] = "Compte de communauté/célébrité"; +$a->strings["Automatic Friend Account"] = "Compte auto-amical"; +$a->strings["Blog Account"] = "Compte de blog"; +$a->strings["Private Forum"] = "Forum privé"; +$a->strings["Message queues"] = "Files d'attente des messages"; +$a->strings["Administration"] = "Administration"; +$a->strings["Summary"] = "Résumé"; +$a->strings["Registered users"] = "Utilisateurs inscrits"; +$a->strings["Pending registrations"] = "Inscriptions en attente"; +$a->strings["Version"] = "Versio"; +$a->strings["Active plugins"] = "Extensions activés"; +$a->strings["Site settings updated."] = "Réglages du site mis-à-jour."; +$a->strings["Closed"] = "Fermé"; +$a->strings["Requires approval"] = "Demande une apptrobation"; +$a->strings["Open"] = "Ouvert"; +$a->strings["No SSL policy, links will track page SSL state"] = "Pas de politique SSL, le liens conserveront l'état SSL de la page"; +$a->strings["Force all links to use SSL"] = "Forcer tous les liens à utiliser SSL"; +$a->strings["Self-signed certificate, use SSL for local links only (discouraged)"] = "Certificat auto-signé, n'utiliser SSL que pour les liens locaux (non recommandé)"; +$a->strings["File upload"] = "Téléversement de fichier"; +$a->strings["Policies"] = "Politiques"; +$a->strings["Advanced"] = "Avancé"; +$a->strings["Site name"] = "Nom du site"; +$a->strings["Banner/Logo"] = "Bannière/Logo"; +$a->strings["System language"] = "Langue du système"; +$a->strings["System theme"] = "Thème du système"; +$a->strings["Default system theme - may be over-ridden by user profiles - change theme settings"] = "Thème par défaut sur ce site - peut être changé en fonction des profils - changer les réglages du thème"; +$a->strings["Mobile system theme"] = "Thème mobile"; +$a->strings["Theme for mobile devices"] = "Thème pour les terminaux mobiles"; +$a->strings["SSL link policy"] = "Politique SSL pour les liens"; +$a->strings["Determines whether generated links should be forced to use SSL"] = "Détermine si les liens générés doivent forcer l'usage de SSL"; +$a->strings["Maximum image size"] = "Taille maximale des images"; +$a->strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Taille maximale des images envoyées (en octets). 0 par défaut, c'est à dire \"aucune limite\"."; +$a->strings["Maximum image length"] = "Longueur maximale des images"; +$a->strings["Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits."] = "Longueur maximale (en pixels) du plus long côté des images téléversées. La valeur par défaut est -1, soit une absence de limite."; +$a->strings["JPEG image quality"] = "Qualité JPEG des images"; +$a->strings["Uploaded JPEGS will be saved at this quality setting [0-100]. Default is 100, which is full quality."] = "Les JPEGs téléversés seront sauvegardés avec ce niveau de qualité [0-100]. La valeur par défaut est 100, soit la qualité maximale."; +$a->strings["Register policy"] = "Politique d'inscription"; +$a->strings["Register text"] = "Texte d'inscription"; +$a->strings["Will be displayed prominently on the registration page."] = "Sera affiché de manière bien visible sur la page d'accueil."; +$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["Allowed friend domains"] = "Domaines autorisés"; +$a->strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "Une liste de domaines, séparés par des virgules, autorisés à établir des relations avec les utilisateurs de ce site. Les '*' sont acceptés. Laissez vide pour autoriser tous les domaines"; +$a->strings["Allowed email domains"] = "Domaines courriel autorisés"; +$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"] = "Liste de domaines - séparés par des virgules - dont les adresses e-mail sont autorisées à s'inscrire sur ce site. Les '*' sont acceptées. Laissez vide pour autoriser tous les domaines"; +$a->strings["Block public"] = "Interdire la publication globale"; +$a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = "Cocher pour bloquer les accès anonymes (non-connectés) à tout sauf aux pages personnelles publiques."; +$a->strings["Force publish"] = "Forcer la publication globale"; +$a->strings["Check to force all profiles on this site to be listed in the site directory."] = "Cocher pour publier obligatoirement tous les profils locaux dans l'annuaire du site."; +$a->strings["Global directory update URL"] = "URL de mise-à-jour de l'annuaire global"; +$a->strings["URL to update the global directory. If this is not set, the global directory is completely unavailable to the application."] = "URL de mise-à-jour de l'annuaire global. Si vide, l'annuaire global sera complètement indisponible."; +$a->strings["Allow threaded items"] = "Activer les commentaires imbriqués"; +$a->strings["Allow infinite level threading for items on this site."] = "Permettre une imbrication infinie des commentaires."; +$a->strings["Private posts by default for new users"] = ""; +$a->strings["Set default post permissions for all new members to the default privacy group rather than public."] = ""; +$a->strings["Block multiple registrations"] = "Interdire les inscriptions multiples"; +$a->strings["Disallow users to register additional accounts for use as pages."] = "Ne pas permettre l'inscription de comptes multiples comme des pages."; +$a->strings["OpenID support"] = "Support OpenID"; +$a->strings["OpenID support for registration and logins."] = "Supporter OpenID pour les inscriptions et connexions."; +$a->strings["Fullname check"] = "Vérification du \"Prénom Nom\""; +$a->strings["Force users to register with a space between firstname and lastname in Full name, as an antispam measure"] = "Imposer l'utilisation d'un espace entre le prénom et le nom (dans le Nom complet), pour limiter les abus"; +$a->strings["UTF-8 Regular expressions"] = "Regex UTF-8"; +$a->strings["Use PHP UTF8 regular expressions"] = "Utiliser les expressions rationnelles de PHP en UTF8"; +$a->strings["Show Community Page"] = "Montrer la \"Place publique\""; +$a->strings["Display a Community page showing all recent public postings on this site."] = "Afficher une page Communauté avec toutes les publications publiques récentes du site."; +$a->strings["Enable OStatus support"] = "Activer le support d'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."] = "Fournir une compatibilité OStatus (identi.ca, status.net, etc.). Toutes les communications d'OStatus sont publiques, des avertissements liés à la vie privée seront affichés si utile."; +$a->strings["Enable Diaspora support"] = "Activer le support de Diaspora"; +$a->strings["Provide built-in Diaspora network compatibility."] = "Fournir une compatibilité Diaspora intégrée."; +$a->strings["Only allow Friendica contacts"] = "N'autoriser que les contacts Friendica"; +$a->strings["All contacts must use Friendica protocols. All other built-in communication protocols disabled."] = "Tous les contacts doivent utiliser les protocoles de Friendica. Tous les autres protocoles de communication intégrés sont désactivés."; +$a->strings["Verify SSL"] = "Vérifier 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."] = "Si vous le souhaitez, vous pouvez activier la vérification stricte des certificats. Cela signifie que vous ne pourrez pas vous connecter (du tout) aux sites SSL munis d'un certificat auto-signé."; +$a->strings["Proxy user"] = "Utilisateur du proxy"; +$a->strings["Proxy URL"] = "URL du proxy"; +$a->strings["Network timeout"] = "Dépassement du délai d'attente du réseau"; +$a->strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "Valeur en secondes. Mettre à 0 pour 'illimité' (pas recommandé)."; +$a->strings["Delivery interval"] = "Intervalle de transmission"; +$a->strings["Delay background delivery processes by this many seconds to reduce system load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 for large dedicated servers."] = "Rallonge le processus de transmissions pour réduire la charge système (en secondes). Valeurs recommandées : 4-5 pour les serveurs mutualisés, 2-3 pour les VPS, 0-1 pour les gros servers dédiés."; +$a->strings["Poll interval"] = "Intervalle de réception"; +$a->strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "Rajouter un délai - en secondes - au processus de 'polling', afin de réduire la charge système. Mettre à 0 pour utiliser l'intervalle d'émission."; +$a->strings["Maximum Load Average"] = "Plafond de la charge moyenne"; +$a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Charge système maximale à partir de laquelle l'émission et la réception seront soumises à un délai supplémentaire. Par défaut, 50."; +$a->strings["Update has been marked successful"] = "Mise-à-jour validée comme 'réussie'"; +$a->strings["Executing %s failed. Check system logs."] = "L'éxecution de %s a échoué. Vérifiez les journaux du système."; +$a->strings["Update %s was successfully applied."] = "Mise-à-jour %s appliquée avec succès."; +$a->strings["Update %s did not return a status. Unknown if it succeeded."] = "La mise-à-jour %s n'a pas retourné de détails. Impossible de savoir si elle a réussi."; +$a->strings["Update function %s could not be found."] = "La fonction %s de la mise-à-jour n'a pu être trouvée."; +$a->strings["No failed updates."] = "Pas de mises-à-jour échouées."; +$a->strings["Failed Updates"] = "Mises-à-jour échouées"; +$a->strings["This does not include updates prior to 1139, which did not return a status."] = "Ceci n'inclut pas les versions antérieures à la 1139, qui ne retournaient jamais de détails."; +$a->strings["Mark success (if update was manually applied)"] = "Marquer comme 'réussie' (dans le cas d'une mise-à-jour manuelle)"; +$a->strings["Attempt to execute this update step automatically"] = "Tenter d'éxecuter cette étape automatiquement"; +$a->strings["%s user blocked/unblocked"] = array( + 0 => "%s utilisateur a (dé)bloqué", + 1 => "%s utilisateurs ont (dé)bloqué", +); +$a->strings["%s user deleted"] = array( + 0 => "%s utilisateur supprimé", + 1 => "%s utilisateurs supprimés", +); +$a->strings["User '%s' deleted"] = "Utilisateur '%s' supprimé"; +$a->strings["User '%s' unblocked"] = "Utilisateur '%s' débloqué"; +$a->strings["User '%s' blocked"] = "Utilisateur '%s' bloqué"; +$a->strings["select all"] = "tout sélectionner"; +$a->strings["User registrations waiting for confirm"] = "Inscriptions d'utilisateurs en attente de confirmation"; +$a->strings["Request date"] = "Date de la demande"; +$a->strings["Email"] = "Courriel"; +$a->strings["No registrations."] = "Pas d'inscriptions."; +$a->strings["Deny"] = "Rejetter"; +$a->strings["Site admin"] = ""; +$a->strings["Register date"] = "Date d'inscription"; +$a->strings["Last login"] = "Dernière connexion"; +$a->strings["Last item"] = "Dernier élément"; +$a->strings["Account"] = "Compte"; +$a->strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Les utilisateurs sélectionnés vont être supprimés!\\n\\nTout ce qu'ils ont posté sur ce site sera définitivement perdu!\\n\\nÊtes-vous certain?"; +$a->strings["The user {0} will be deleted!\\n\\nEverything this user has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "L'utilisateur {0} va être supprimé!\\n\\nTout ce qu'il a posté sur ce site sera définitivement perdu!\\n\\nÊtes-vous certain?"; +$a->strings["Plugin %s disabled."] = "Extension %s désactivée."; +$a->strings["Plugin %s enabled."] = "Extension %s activée."; +$a->strings["Disable"] = "Désactiver"; +$a->strings["Enable"] = "Activer"; +$a->strings["Toggle"] = "Activer/Désactiver"; +$a->strings["Author: "] = "Auteur: "; +$a->strings["Maintainer: "] = "Mainteneur: "; +$a->strings["No themes found."] = "Aucun thème trouvé."; +$a->strings["Screenshot"] = "Capture d'écran"; +$a->strings["[Experimental]"] = "[Expérimental]"; +$a->strings["[Unsupported]"] = "[Non supporté]"; +$a->strings["Log settings updated."] = "Réglages des journaux mis-à-jour."; +$a->strings["Clear"] = "Effacer"; +$a->strings["Debugging"] = "Déboguage"; +$a->strings["Log file"] = "Fichier de journaux"; +$a->strings["Must be writable by web server. Relative to your Friendica top-level directory."] = "Accès en écriture par le serveur web requis. Relatif à la racine de votre installation de Friendica."; +$a->strings["Log level"] = "Niveau de journalisaton"; +$a->strings["Close"] = "Fermer"; +$a->strings["FTP Host"] = "Hôte FTP"; +$a->strings["FTP Path"] = "Chemin FTP"; +$a->strings["FTP User"] = "Utilisateur FTP"; +$a->strings["FTP Password"] = "Mot de passe FTP"; +$a->strings["Requested profile is not available."] = "Le profil demandé n'est pas disponible."; +$a->strings["Access to this profile has been restricted."] = "L'accès au profil a été restreint."; +$a->strings["Tips for New Members"] = "Conseils aux nouveaux venus"; +$a->strings["{0} wants to be your friend"] = "{0} souhaite être votre ami(e)"; +$a->strings["{0} sent you a message"] = "{0} vous a envoyé un message"; +$a->strings["{0} requested registration"] = "{0} a demandé à s'inscrire"; +$a->strings["{0} commented %s's post"] = "{0} a commenté une notice de %s"; +$a->strings["{0} liked %s's post"] = "{0} a aimé une notice de %s"; +$a->strings["{0} disliked %s's post"] = "{0} n'a pas aimé une notice de %s"; +$a->strings["{0} is now friends with %s"] = "{0} est désormais ami(e) avec %s"; +$a->strings["{0} posted"] = "{0} a posté"; +$a->strings["{0} tagged %s's post with #%s"] = "{0} a taggué la notice de %s avec #%s"; +$a->strings["{0} mentioned you in a post"] = "{0} vous a mentionné dans une publication"; +$a->strings["Contacts who are not members of a group"] = "Contacts qui n’appartiennent à aucun groupe"; +$a->strings["OpenID protocol error. No ID returned."] = "Erreur de protocole OpenID. Pas d'ID en retour."; +$a->strings["Account not found and OpenID registration is not permitted on this site."] = "Compte introuvable, et l'inscription OpenID n'est pas autorisée sur ce site."; +$a->strings["Login failed."] = "Échec de connexion."; +$a->strings["Contact added"] = "Contact ajouté"; +$a->strings["Common Friends"] = "Amis communs"; +$a->strings["No contacts in common."] = "Pas de contacts en commun."; +$a->strings["link"] = "lien"; +$a->strings["Item has been removed."] = "Cet élément a été enlevé."; +$a->strings["Applications"] = "Applications"; +$a->strings["No installed applications."] = "Pas d'application installée."; +$a->strings["Search"] = "Recherche"; $a->strings["Profile not found."] = "Profil introuvable."; $a->strings["Profile Name is required."] = "Le nom du profil est requis."; +$a->strings["Marital Status"] = "Statut marital"; +$a->strings["Romantic Partner"] = "Partenaire/conjoint"; +$a->strings["Likes"] = "Derniers \"J'aime\""; +$a->strings["Dislikes"] = "Derniers \"Je n'aime pas\""; +$a->strings["Work/Employment"] = "Travail/Occupation"; +$a->strings["Religion"] = "Religion"; +$a->strings["Political Views"] = "Tendance politique"; +$a->strings["Gender"] = "Sexe"; +$a->strings["Sexual Preference"] = "Préférence sexuelle"; +$a->strings["Homepage"] = "Site internet"; +$a->strings["Interests"] = "Centres d'intérêt"; +$a->strings["Address"] = "Adresse"; +$a->strings["Location"] = "Localisation"; $a->strings["Profile updated."] = "Profil mis à jour."; +$a->strings[" and "] = " et "; +$a->strings["public profile"] = "profil public"; +$a->strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s a changé %2\$s en “%3\$s”"; +$a->strings[" - Visit %1\$s's %2\$s"] = "Visiter le %2\$s de %1\$s"; +$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s a mis à jour son %2\$s, en modifiant %3\$s."; $a->strings["Profile deleted."] = "Profil supprimé."; $a->strings["Profile-"] = "Profil-"; $a->strings["New profile created."] = "Nouveau profil créé."; $a->strings["Profile unavailable to clone."] = "Ce profil ne peut être cloné."; $a->strings["Hide your contact/friend list from viewers of this profile?"] = "Cacher ma liste d'amis/contacts des visiteurs de ce profil?"; -$a->strings["Yes"] = "Oui"; -$a->strings["No"] = "Non"; $a->strings["Edit Profile Details"] = "Éditer les détails du profil"; $a->strings["View this profile"] = "Voir ce profil"; $a->strings["Create a new profile using these settings"] = "Créer un nouveau profil en utilisant ces réglages"; @@ -124,18 +962,22 @@ $a->strings["Region/State:"] = "Région/État:"; $a->strings[" Marital Status:"] = " Statut marital:"; $a->strings["Who: (if applicable)"] = "Qui: (si pertinent)"; $a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Exemples: cathy123, Cathy Williams, cathy@example.com"; +$a->strings["Since [date]:"] = "Depuis [date] :"; $a->strings["Sexual Preference:"] = "Préférence sexuelle:"; $a->strings["Homepage URL:"] = "Page personnelle:"; +$a->strings["Hometown:"] = " Ville d'origine:"; $a->strings["Political Views:"] = "Opinions politiques:"; $a->strings["Religious Views:"] = "Opinions religieuses:"; $a->strings["Public Keywords:"] = "Mots-clés publics:"; $a->strings["Private Keywords:"] = "Mots-clés privés:"; +$a->strings["Likes:"] = "J'aime :"; +$a->strings["Dislikes:"] = "Je n'aime pas :"; $a->strings["Example: fishing photography software"] = "Exemple: football dessin programmation"; $a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(Utilisés pour vous suggérer des amis potentiels, peuvent être vus par autrui)"; $a->strings["(Used for searching profiles, never shown to others)"] = "(Utilisés pour rechercher dans les profils, ne seront jamais montrés à autrui)"; $a->strings["Tell us about yourself..."] = "Parlez-nous de vous..."; $a->strings["Hobbies/Interests"] = "Passe-temps/Centres d'intérêt"; -$a->strings["Contact information and Social Networks"] = "Coordonées/Réseaux sociaux"; +$a->strings["Contact information and Social Networks"] = "Coordonnées/Réseaux sociaux"; $a->strings["Musical interests"] = "Goûts musicaux"; $a->strings["Books, literature"] = "Lectures"; $a->strings["Television"] = "Télévision"; @@ -146,627 +988,64 @@ $a->strings["School/education"] = "Études/Formation"; $a->strings["This is your public profile.
    It may be visible to anybody using the internet."] = "Ceci est votre profil public.
    Il peut être visible par n'importe quel utilisateur d'Internet."; $a->strings["Age: "] = "Age: "; $a->strings["Edit/Manage Profiles"] = "Editer/gérer les profils"; -$a->strings["Item not found."] = "Élément introuvable."; -$a->strings["everybody"] = "tout le monde"; -$a->strings["Missing some important data!"] = "Il manque certaines informations importantes!"; -$a->strings["Update"] = "Mises-à-jour"; -$a->strings["Failed to connect with email account using the settings provided."] = "Impossible de se connecter au compte courriel configuré."; -$a->strings["Email settings updated."] = "Réglages de courriel mis-à-jour."; -$a->strings["Passwords do not match. Password unchanged."] = "Les mots de passe ne correspondent pas. Aucun changement appliqué."; -$a->strings["Empty passwords are not allowed. Password unchanged."] = "Les mots de passe vides sont interdits. Aucun changement appliqué."; -$a->strings["Password changed."] = "Mots de passe changés."; -$a->strings["Password update failed. Please try again."] = "Le changement de mot de passe a échoué. Merci de recommencer."; -$a->strings[" Please use a shorter name."] = " Merci d'utiliser un nom plus court."; -$a->strings[" Name too short."] = " Nom trop court."; -$a->strings[" Not valid email."] = " Email invalide."; -$a->strings[" Cannot change to that email."] = " Impossible de changer pour cet email."; -$a->strings["Settings updated."] = "Réglages mis à jour."; -$a->strings["Account settings"] = "Réglages du compte"; -$a->strings["Connector settings"] = "Réglages des connecteurs"; -$a->strings["Plugin settings"] = "Réglages des extensions"; -$a->strings["Connections"] = "Connexions"; -$a->strings["Export personal data"] = "Exporter les données personnelles"; -$a->strings["Add application"] = "Ajouter une application"; -$a->strings["Cancel"] = "Annuler"; -$a->strings["Name"] = "Nom"; -$a->strings["Consumer Key"] = "Clé utilisateur"; -$a->strings["Consumer Secret"] = "Secret utilisateur"; -$a->strings["Redirect"] = "Rediriger"; -$a->strings["Icon url"] = "URL de l'icône"; -$a->strings["You can't edit this application."] = "Vous ne pouvez pas éditer cette application."; -$a->strings["Connected Apps"] = "Applications connectées"; -$a->strings["Edit"] = "Éditer"; -$a->strings["Delete"] = "Supprimer"; -$a->strings["Client key starts with"] = "La clé cliente commence par"; -$a->strings["No name"] = "Sans nom"; -$a->strings["Remove authorization"] = "Révoquer l'autorisation"; -$a->strings["No Plugin settings configured"] = "Pas de réglages d'extensions configurés"; -$a->strings["Plugin Settings"] = "Réglages des extensions"; -$a->strings["Built-in support for %s connectivity is %s"] = "Le support natif pour la connectivité %s est %s"; -$a->strings["Diaspora"] = "Diaspora"; -$a->strings["enabled"] = "activé"; -$a->strings["disabled"] = "désactivé"; -$a->strings["StatusNet"] = "StatusNet"; -$a->strings["Connector Settings"] = "Réglages des connecteurs"; -$a->strings["Email/Mailbox Setup"] = "Réglages de courriel/boîte à lettre"; -$a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "Si vous souhaitez communiquer avec vos contacts \"courriel\" (facultatif), merci de nous indiquer comment vous connecter à votre boîte."; -$a->strings["Last successful email check:"] = "Dernière vérification réussie des courriels:"; -$a->strings["Email access is disabled on this site."] = "L'accès courriel est désactivé sur ce site."; -$a->strings["IMAP server name:"] = "Nom du serveur IMAP:"; -$a->strings["IMAP port:"] = "Port IMAP:"; -$a->strings["Security:"] = "Sécurité:"; -$a->strings["None"] = "Aucun(e)"; -$a->strings["Email login name:"] = "Nom de connexion:"; -$a->strings["Email password:"] = "Mot de passe:"; -$a->strings["Reply-to address:"] = "Adresse de réponse:"; -$a->strings["Send public posts to all email contacts:"] = "Les notices publiques vont à tous les contacts courriel:"; -$a->strings["Normal Account"] = "Compte normal"; -$a->strings["This account is a normal personal profile"] = "Ce compte correspond à un profil normal, pour une seule personne (physique, généralement)"; -$a->strings["Soapbox Account"] = "Compte \"boîte à savon\""; -$a->strings["Automatically approve all connection/friend requests as read-only fans"] = "Accepter automatiquement toutes les demandes d'amitié/connexion comme étant des fans 'en lecture seule'"; -$a->strings["Community/Celebrity Account"] = "Compte de communauté/célébrité"; -$a->strings["Automatically approve all connection/friend requests as read-write fans"] = "Accepter automatiquement toutes les demandes d'amitié/connexion comme étant des fans en 'lecture/écriture'"; -$a->strings["Automatic Friend Account"] = "Compte auto-amical"; -$a->strings["Automatically approve all connection/friend requests as friends"] = "Accepter automatiquement toutes les demandes d'amitié/connexion comme étant des amis"; -$a->strings["OpenID:"] = "OpenID:"; -$a->strings["(Optional) Allow this OpenID to login to this account."] = "&nbsp;(Facultatif) Autoriser cet OpenID à se connecter à ce compte."; -$a->strings["Publish your default profile in your local site directory?"] = "Publier votre profil par défaut sur l'annuaire local de ce site?"; -$a->strings["Publish your default profile in the global social directory?"] = "Publier votre profil par défaut sur l'annuaire social global?"; -$a->strings["Hide your contact/friend list from viewers of your default profile?"] = "Cacher votre liste de contacts/amis des visiteurs de votre profil par défaut?"; -$a->strings["Hide profile details and all your messages from unknown viewers?"] = "Masquer les détails du profil ainsi que tous vos messages aux visiteurs inconnus?"; -$a->strings["Allow friends to post to your profile page?"] = "Autoriser vos amis à publier sur votre profil?"; -$a->strings["Allow friends to tag your posts?"] = "Autoriser vos amis à tagguer vos notices?"; -$a->strings["Profile is not published."] = "Ce profil n'est pas publié."; -$a->strings["Your Identity Address is"] = "L'adresse de votre identité est"; -$a->strings["Account Settings"] = "Réglages du compte"; -$a->strings["Password Settings"] = "Réglages de mot de passe"; -$a->strings["New Password:"] = "Nouveau mot de passe:"; -$a->strings["Confirm:"] = "Confirmer:"; -$a->strings["Leave password fields blank unless changing"] = "Laissez les champs de mot de passe vierges, sauf si vous désirez les changer"; -$a->strings["Basic Settings"] = "Réglages basiques"; -$a->strings["Full Name:"] = "Nom complet:"; -$a->strings["Email Address:"] = "Adresse courriel:"; -$a->strings["Your Timezone:"] = "Votre fuseau horaire:"; -$a->strings["Default Post Location:"] = "Publication par défaut depuis :"; -$a->strings["Use Browser Location:"] = "Utiliser la localisation géographique du navigateur:"; -$a->strings["Display Theme:"] = "Thème d'affichage:"; -$a->strings["Security and Privacy Settings"] = "Réglages de sécurité et vie privée"; -$a->strings["Maximum Friend Requests/Day:"] = "Nombre maximal de requêtes d'amitié/jour:"; -$a->strings["(to prevent spam abuse)"] = "(pour limiter l'impact du spam)"; -$a->strings["Default Post Permissions"] = "Permissions par défaut sur les articles"; -$a->strings["(click to open/close)"] = "(cliquer pour ouvrir/fermer)"; -$a->strings["Automatically expire posts after days:"] = "Les notices expirent automatiquement au bout de (en jours):"; -$a->strings["If empty, posts will not expire. Expired posts will be deleted"] = "Si elles sont vides, les notices n'expireront pas. Les notices expirées seront supprimées"; -$a->strings["Notification Settings"] = "Réglages de notification"; -$a->strings["Send a notification email when:"] = "Envoyer un courriel de notification quand:"; -$a->strings["You receive an introduction"] = "Vous recevez une introduction"; -$a->strings["Your introductions are confirmed"] = "Vos introductions sont confirmées"; -$a->strings["Someone writes on your profile wall"] = "Quelqu'un écrit sur votre mur"; -$a->strings["Someone writes a followup comment"] = "Quelqu'un vous commente"; -$a->strings["You receive a private message"] = "Vous recevez un message privé"; -$a->strings["Advanced Page Settings"] = "Réglages avancés"; -$a->strings["Saved Searches"] = "Recherches sauvées"; -$a->strings["Remove term"] = "Retirer le terme"; -$a->strings["Public access denied."] = "Accès public refusé."; -$a->strings["Search This Site"] = "Rechercher sur ce site"; -$a->strings["No results."] = "Aucun résultat."; -$a->strings["Photo Albums"] = "Albums photo"; -$a->strings["Contact Photos"] = "Photos du contact"; -$a->strings["Contact information unavailable"] = "Informations de contact indisponibles"; -$a->strings["Album not found."] = "Album introuvable."; -$a->strings["Delete Album"] = "Effacer l'album"; -$a->strings["Delete Photo"] = "Effacer la photo"; -$a->strings["was tagged in a"] = "a été identifié dans"; -$a->strings["photo"] = "photo"; -$a->strings["by"] = "par"; -$a->strings["Image exceeds size limit of "] = "L'image dépasse la taille maximale de "; -$a->strings["Image file is empty."] = "Fichier image vide."; -$a->strings["No photos selected"] = "Aucune photo sélectionnée"; -$a->strings["Access to this item is restricted."] = "Accès restreint à cet élément."; -$a->strings["Upload Photos"] = "Téléverser des photos"; -$a->strings["New album name: "] = "Nom du nouvel album: "; -$a->strings["or existing album name: "] = "ou nom d'un album existant: "; -$a->strings["Do not show a status post for this upload"] = "Ne pas publier de notice pour cet envoi"; -$a->strings["Permissions"] = "Permissions"; -$a->strings["Edit Album"] = "Éditer l'album"; -$a->strings["View Photo"] = "Voir la photo"; -$a->strings["Permission denied. Access to this item may be restricted."] = "Interdit. L'accès à cet élément peut avoir été restreint."; -$a->strings["Photo not available"] = "Photo indisponible"; -$a->strings["View photo"] = "Voir photo"; -$a->strings["Edit photo"] = "Éditer la photo"; -$a->strings["Use as profile photo"] = "Utiliser comme photo de profil"; -$a->strings["Private Message"] = "Message privé"; -$a->strings["View Full Size"] = "Voir en taille réelle"; -$a->strings["Tags: "] = "Étiquettes: "; -$a->strings["[Remove any tag]"] = "[Retirer toutes les étiquettes]"; -$a->strings["New album name"] = "Nom du nouvel album"; -$a->strings["Caption"] = "Titre"; -$a->strings["Add a Tag"] = "Ajouter une étiquette"; -$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Exemples: @bob, @Barbara_Jensen, @jim@example.com, #Californie, #vacances"; -$a->strings["I like this (toggle)"] = "I like this (bascule)"; -$a->strings["I don't like this (toggle)"] = "I don't like this (bascule)"; -$a->strings["Share"] = "Partager"; -$a->strings["Please wait"] = "Patientez"; -$a->strings["This is you"] = "C'est vous"; -$a->strings["Recent Photos"] = "Photos récentes"; -$a->strings["Upload New Photos"] = "Téléverser de nouvelles photos"; -$a->strings["View Album"] = "Voir l'album"; -$a->strings["Welcome to Friendika"] = "Bienvenue sur Friendica"; -$a->strings["New Member Checklist"] = "Checklist du nouvel utilisateur"; -$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."] = "Nous souhaiterions vous donner quelques astuces et pointeurs pour rendre votre expérience la plus plaisante possible. Cliquez sur n'importe quel élément pour visiter la page correspondante."; -$a->strings["On your Settings page - change your initial password. Also make a note of your Identity Address. This will be useful in making friends."] = "Sur votre page Réglages - changez votre mot de passe originel. Profitez-en pour prendre note de votre Adresse d'Identité. Elle vous sera utile pour vous faire de nouveaux amis."; -$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."] = "Vérifiez les autres réglages, tout particulièrement ceux liés à la vie privée. Un profil non listé, c'est un peu comme un numéro sur liste rouge. En général, vous devriez probablement publier votre profil - à moins que tous vos amis (potentiels) sachent déjà comment vous trouver."; -$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."] = "Téléversez (envoyez) une photo de profil si vous n'en avez pas déjà une. Les études montrent que les gens qui affichent de vraies photos d'eux sont dix fois plus susceptibles de se faire des amis."; -$a->strings["Authorise the Facebook Connector if you currently have a Facebook account and we will (optionally) import all your Facebook friends and conversations."] = "Activez et paramétrez le connecteur Facebook si vous avez un compte Facebook et nous pourrons (de manière facultative) importer tous vos amis et conversations Facebook."; -$a->strings["Enter your email access information on your Settings page if you wish to import and interact with friends or mailing lists from your email INBOX"] = "Entrez les paramètres de votre adresse de courriel sur la page des Réglages si vous souhaitez importer et interagir avec vos contacts conventionnels."; -$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."] = "Éditez votre profil par défaut à votre convenance. Vérifiez les réglages concernant la visibilité de votre liste d'amis par les visiteurs inconnus."; -$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."] = "Choisissez quelques mots-clé publics pour votre profil par défaut. Ils pourront ainsi décrire vos centres d'intérêt, et nous pourrons vous proposer des contacts qui les partagent."; -$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 Connect dialog."] = "Votre page Contacts est l'endroit rêvé pour gérer vos relations et contacts, et vous relier à des amis issus d'autres réseaux. En général, il suffit d'entrer leur adresse d'identité ou l'URL de leur site dans le champ Relier"; -$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."] = "La page Annuaire vous permet de trouver d'autres personnes au sein de ce réseaux ou parmi d'autres sites fédérés. Cherchez un lien Relier ou Suivre sur leur profil. Vous pourrez avoir besoin d'indiquer votre adresse d'identité."; -$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."] = "Une fois que vous avez trouvé quelques amis, organisez-les en groupes de conversation privés depuis le panneau latéral de la page Contacts. Vous pourrez ensuite interagir avec chaque groupe de manière privée depuis la page Réseau."; -$a->strings["Our help pages may be consulted for detail on other program features and resources."] = "Nos pages d'aide peuvent être consultées pour davantage de détails sur les fonctionnalités ou les ressources."; -$a->strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ g:i A"; -$a->strings["Time Conversion"] = "Conversion temporelle"; -$a->strings["Friendika provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica fournit ce service pour partager des événements avec d'autres réseaux et amis indépendament de leur fuseau horaire."; -$a->strings["UTC time: %s"] = "Temps UTC : %s"; -$a->strings["Current timezone: %s"] = "Zone de temps courante : %s"; -$a->strings["Converted localtime: %s"] = "Temps local converti : %s"; -$a->strings["Please select your timezone:"] = "Sélectionner votre zone :"; -$a->strings["Item has been removed."] = "Cet élément a été enlevé."; -$a->strings["Item not found"] = "Élément introuvable"; -$a->strings["Edit post"] = "Éditer la publication"; -$a->strings["Post to Email"] = "Publier aussi par courriel"; -$a->strings["Upload photo"] = "Joindre photo"; -$a->strings["Attach file"] = "Joindre fichier"; -$a->strings["Insert web link"] = "Insérer lien web"; -$a->strings["Insert YouTube video"] = "Insérer une vidéo Youtube"; -$a->strings["Insert Vorbis [.ogg] video"] = "Insérer un lien vidéo Vorbis [.ogg]"; -$a->strings["Insert Vorbis [.ogg] audio"] = "Insérer un lien audio Vorbis [.ogg]"; -$a->strings["Set your location"] = "Définir votre localisation"; -$a->strings["Clear browser location"] = "Effacer la localisation du navigateur"; -$a->strings["Permission settings"] = "Réglages des permissions"; -$a->strings["CC: email addresses"] = "CC: adresses de courriel"; -$a->strings["Public post"] = "Notice publique"; -$a->strings["Example: bob@example.com, mary@example.com"] = "Exemple: bob@exemple.com, mary@exemple.com"; +$a->strings["Change profile photo"] = "Changer de photo de profil"; +$a->strings["Create New Profile"] = "Créer un nouveau profil"; +$a->strings["Profile Image"] = "Image du profil"; +$a->strings["visible to everybody"] = "visible par tous"; +$a->strings["Edit visibility"] = "Changer la visibilité"; +$a->strings["Save to Folder:"] = "Sauver dans le Dossier:"; +$a->strings["- select -"] = "- choisir -"; +$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s a taggué %3\$s de %2\$s avec %4\$s"; +$a->strings["No potential page delegates located."] = "Pas de délégataire potentiel."; +$a->strings["Delegate Page Management"] = "Déléguer la gestion de la page"; +$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."] = "Les délégataires seront capables de gérer tous les aspects de ce compte ou de cette page, à l'exception des réglages de compte. Merci de ne pas déléguer votre compte principal à quelqu'un en qui vous n'avez pas une confiance absolue."; +$a->strings["Existing Page Managers"] = "Gestionnaires existants"; +$a->strings["Existing Page Delegates"] = "Délégataires existants"; +$a->strings["Potential Delegates"] = "Délégataires potentiels"; +$a->strings["Add"] = "Ajouter"; +$a->strings["No entries."] = "Aucune entrée."; +$a->strings["Source (bbcode) text:"] = "Texte source (bbcode) :"; +$a->strings["Source (Diaspora) text to convert to BBcode:"] = "Texte source (Diaspora) à convertir en BBcode :"; +$a->strings["Source input: "] = "Source input: "; +$a->strings["bb2html: "] = "bb2html: "; +$a->strings["bb2html2bb: "] = "bb2html2bb: "; +$a->strings["bb2md: "] = "bb2md: "; +$a->strings["bb2md2html: "] = "bb2md2html: "; +$a->strings["bb2dia2bb: "] = "bb2dia2bb: "; +$a->strings["bb2md2html2bb: "] = "bb2md2html2bb: "; +$a->strings["Source input (Diaspora format): "] = "Texte source (format Diaspora) :"; +$a->strings["diaspora2bb: "] = "diaspora2bb :"; +$a->strings["Friend Suggestions"] = "Suggestions d'amitiés/contacts"; +$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Aucune suggestion. Si ce site est récent, merci de recommencer dans 24h."; +$a->strings["Ignore/Hide"] = "Ignorer/cacher"; +$a->strings["Global Directory"] = "Annuaire global"; +$a->strings["Find on this site"] = "Trouver sur ce site"; +$a->strings["Site Directory"] = "Annuaire local"; +$a->strings["Gender: "] = "Genre: "; +$a->strings["Gender:"] = "Genre:"; +$a->strings["Status:"] = "Statut:"; +$a->strings["Homepage:"] = "Page personnelle:"; +$a->strings["About:"] = "À propos:"; +$a->strings["No entries (some entries may be hidden)."] = "Aucune entrée (certaines peuvent être cachées)."; $a->strings["%s : Not a valid email address."] = "%s : Adresse de courriel invalide."; -$a->strings["Please join my network on %s"] = "Vous pouvez rejoindre mon réseau sur %s"; +$a->strings["Please join us on Friendica"] = "Rejoignez-nous sur Friendica"; $a->strings["%s : Message delivery failed."] = "%s : L'envoi du message a échoué."; $a->strings["%d message sent."] = array( 0 => "%d message envoyé.", 1 => "%d messages envoyés.", ); $a->strings["You have no more invitations available"] = "Vous n'avez plus d'invitations disponibles"; +$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."] = "Visitez %s pour une liste des sites publics que vous pouvez rejoindre. Les membres de Friendica appartenant à d'autres sites peuvent s'interconnecter, ainsi qu'avec les membres de plusieurs autres réseaux sociaux."; +$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "Pour accepter cette invitation, merci d'aller vous inscrire sur %s, ou n'importe quel autre site Friendica public."; +$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."] = "Les sites Friendica sont tous interconnectés pour créer un immense réseau social respectueux de la vie privée, possédé et contrôllé par ses membres. Ils peuvent également interagir avec plusieurs réseaux sociaux traditionnels. Voir %s pour une liste d'autres sites Friendica que vous pourriez rejoindre."; +$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Toutes nos excuses. Ce système n'est pas configuré pour se connecter à d'autres sites publics ou inviter de nouveaux membres."; $a->strings["Send invitations"] = "Envoyer des invitations"; $a->strings["Enter email addresses, one per line:"] = "Entrez les adresses email, une par ligne:"; -$a->strings["Your message:"] = "Votre message:"; -$a->strings["Please join my social network on %s"] = "Vous pouvez rejoindre mon réseau social sur %s"; -$a->strings["To accept this invitation, please visit:"] = "Pour accepter cette invitation, rendez vous sur:"; +$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "Vous êtes cordialement invité à me rejoindre sur Friendica, et nous aider ainsi à créer un meilleur web social."; $a->strings["You will need to supply this invitation code: \$invite_code"] = "Vous devrez fournir ce code d'invitation: \$invite_code"; $a->strings["Once you have registered, please connect with me via my profile page at:"] = "Une fois inscrit, connectez-vous à la page de mon profil sur:"; -$a->strings["{0} wants to be your friend"] = "{0} souhaite être votre ami(e)"; -$a->strings["{0} sent you a message"] = "{0} vous a envoyé un message"; -$a->strings["{0} requested registration"] = "{0} a demandé à s'inscrire"; -$a->strings["{0} commented %s's post"] = "{0} a commenté une notice de %s"; -$a->strings["{0} liked %s's post"] = "{0} a aimé une notice de %s"; -$a->strings["{0} disliked %s's post"] = "{0} n'a pas aimé une notice de %s"; -$a->strings["{0} is now friends with %s"] = "{0} est désormais ami(e) avec %s"; -$a->strings["{0} posted"] = "{0} a posté"; -$a->strings["{0} tagged %s's post with #%s"] = "{0} a taggué la notice de %s avec #%s"; -$a->strings["Could not access contact record."] = "Impossible d'accéder à l'enregistrement du contact."; -$a->strings["Could not locate selected profile."] = "Impossible de localiser le profil séléctionné."; -$a->strings["Contact updated."] = "Contact mis-à-jour."; -$a->strings["Failed to update contact record."] = "Échec de mise-à-jour du contact."; -$a->strings["Contact has been blocked"] = "Le contact a été bloqué"; -$a->strings["Contact has been unblocked"] = "Le contact n'est plus bloqué"; -$a->strings["Contact has been ignored"] = "Le contact a été ignoré"; -$a->strings["Contact has been unignored"] = "Le contact n'est plus ignoré"; -$a->strings["stopped following"] = "retiré de la liste de suivi"; -$a->strings["Contact has been removed."] = "Ce contact a été retiré."; -$a->strings["You are mutual friends with %s"] = "Vous êtes ami (et réciproquement) avec %s"; -$a->strings["You are sharing with %s"] = "Vous partagez avec %s"; -$a->strings["%s is sharing with you"] = "%s partage avec vous"; -$a->strings["Private communications are not available for this contact."] = "Les communications privées ne sont pas disponibles pour ce contact."; -$a->strings["Never"] = "Jamais"; -$a->strings["(Update was successful)"] = "(Mise à jour effectuée avec succès)"; -$a->strings["(Update was not successful)"] = "(Mise à jour échouée)"; -$a->strings["Suggest friends"] = "Suggérer amitié/contact"; -$a->strings["Network type: %s"] = "Type de réseau %s"; -$a->strings["%d contact in common"] = array( - 0 => "%d contact en commun", - 1 => "%d contacts en commun", -); -$a->strings["View all contacts"] = "Voir tous les contacts"; -$a->strings["Unblock"] = "Débloquer"; -$a->strings["Block"] = "Bloquer"; -$a->strings["Unignore"] = "Ne plus ignorer"; -$a->strings["Ignore"] = "Ignorer"; -$a->strings["Repair"] = "Réparer"; -$a->strings["Contact Editor"] = "Éditeur de contact"; -$a->strings["Profile Visibility"] = "Visibilité du profil"; -$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Merci de choisir le profil que vous souhaitez montrer à %s lorsqu'il vous rend visite de manière sécurisée."; -$a->strings["Contact Information / Notes"] = "Informations de contact / Notes"; -$a->strings["Edit contact notes"] = "Editer les notes des contacts"; -$a->strings["Visit %s's profile [%s]"] = "Visiter le profil de %s [%s]"; -$a->strings["Block/Unblock contact"] = "Bloquer/débloquer ce contact"; -$a->strings["Ignore contact"] = "Ignorer ce contact"; -$a->strings["Repair URL settings"] = "Réparer les réglages d'URL"; -$a->strings["View conversations"] = "Voir les conversations"; -$a->strings["Delete contact"] = "Effacer ce contact"; -$a->strings["Last update:"] = "Dernière mise-à-jour :"; -$a->strings["Update public posts"] = "Met ses entrées publiques à jour: "; -$a->strings["Update now"] = "Mettre à jour"; -$a->strings["Currently blocked"] = "Actuellement bloqué"; -$a->strings["Currently ignored"] = "Actuellement ignoré"; -$a->strings["Contacts"] = "Contacts"; -$a->strings["Show Blocked Connections"] = "Montrer les connexions bloquées"; -$a->strings["Hide Blocked Connections"] = "Cacher les connexion bloquées"; -$a->strings["Search your contacts"] = "Rechercher dans vos contacts"; -$a->strings["Finding: "] = "Trouvé: "; -$a->strings["Find"] = "Trouver"; -$a->strings["Mutual Friendship"] = "Relation réciproque"; -$a->strings["is a fan of yours"] = "est un fan de vous"; -$a->strings["you are a fan of"] = "vous êtes un fan de"; -$a->strings["Edit contact"] = "Éditer le contact"; -$a->strings["Remote privacy information not available."] = "Informations de confidentialité indisponibles."; -$a->strings["Visible to:"] = "Visible par:"; -$a->strings["An invitation is required."] = "Une invitation est requise."; -$a->strings["Invitation could not be verified."] = "L'invitation fournie n'a pu être validée."; -$a->strings["Invalid OpenID url"] = "Adresse OpenID invalide"; -$a->strings["Please enter the required information."] = "Entrez les informations requises."; -$a->strings["Please use a shorter name."] = "Utilisez un nom plus court."; -$a->strings["Name too short."] = "Nom trop court."; -$a->strings["That doesn't appear to be your full (First Last) name."] = "Ceci ne semble pas être votre nom complet (Prénom Nom)."; -$a->strings["Your email domain is not among those allowed on this site."] = "Votre domaine de courriel n'est pas autorisé sur ce site."; -$a->strings["Not a valid email address."] = "Ceci n'est pas une adresse courriel valide."; -$a->strings["Cannot use that email."] = "Impossible d'utiliser ce courriel."; -$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and must also begin with a letter."] = "Votre \"pseudo\" peut seulement contenir les caractères \"a-z\", \"0-9\", \"-\", and \"_\", et doit commencer par une lettre."; -$a->strings["Nickname is already registered. Please choose another."] = "Pseudo déjà utilisé. Merci d'en choisir un autre."; -$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "ERREUR SÉRIEUSE: La génération des clés de sécurité a échoué."; -$a->strings["An error occurred during registration. Please try again."] = "Une erreur est survenue lors de l'inscription. Merci de recommencer."; -$a->strings["An error occurred creating your default profile. Please try again."] = "Une erreur est survenue lors de la création de votre profil par défaut. Merci de recommencer."; -$a->strings["Registration successful. Please check your email for further instructions."] = "Inscription réussie. Vérifiez vos emails pour la suite des instructions."; -$a->strings["Failed to send email message. Here is the message that failed."] = "Impossible d'envoyer un email. Voici le message qui a échoué."; -$a->strings["Your registration can not be processed."] = "Votre inscription ne peut être traitée."; -$a->strings["Registration request at %s"] = "Demande d'inscription à %s"; -$a->strings["Your registration is pending approval by the site owner."] = "Votre inscription attend une validation du propriétaire du site."; -$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Vous pouvez (si vous le souhaitez) remplir ce formulaire via OpenID. Fournissez votre OpenID et cliquez \"S'inscrire\"."; -$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Si vous n'êtes pas familier avec OpenID, laissez ce champ vide et remplissez le reste."; -$a->strings["Your OpenID (optional): "] = "Votre OpenID (facultatif): "; -$a->strings["Include your profile in member directory?"] = "Inclure votre profil dans l'annuaire des membres?"; -$a->strings["Membership on this site is by invitation only."] = "L'inscription à ce site se fait uniquement sur invitation."; -$a->strings["Your invitation ID: "] = "Votre ID d'invitation: "; -$a->strings["Registration"] = "Inscription"; -$a->strings["Your Full Name (e.g. Joe Smith): "] = "Votre nom complet (p.ex. Michel Dupont): "; -$a->strings["Your Email Address: "] = "Votre adresse courriel: "; -$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be 'nickname@\$sitename'."] = "Choisissez un pseudo. Celui devra commencer par une lettre. L'adresse de votre profil en découlera sous la forme '<strong>pseudo@\$sitename</strong>'."; -$a->strings["Choose a nickname: "] = "Choisir un pseudo: "; -$a->strings["Post successful."] = "Publication réussie."; -$a->strings["Friends of %s"] = "Amis de %s"; -$a->strings["No friends to display."] = "Pas d'amis à afficher."; -$a->strings["Help:"] = "Aide:"; -$a->strings["Help"] = "Aide"; -$a->strings["Could not create/connect to database."] = "Impossible de créer/atteindre la base de données."; -$a->strings["Connected to database."] = "Connecté à la base de données."; -$a->strings["Proceed with Installation"] = "Commencer l'installation"; -$a->strings["Your Friendika site database has been installed."] = "La base de données de votre site Friendika a été installée."; -$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "IMPORTANT: Vous devez configurer [manuellement] une tâche programmée pour le 'poller'."; -$a->strings["Please see the file \"INSTALL.txt\"."] = "Référez-vous au fichier \"INSTALL.txt\"."; -$a->strings["Proceed to registration"] = "Commencer l'inscription"; -$a->strings["Database import failed."] = "Import de base échoué."; -$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Vous pourriez avoir besoin d'importer le fichier \"database.sql\" manuellement au moyen de phpmyadmin ou de la commande mysql."; -$a->strings["Welcome to Friendika."] = "Bienvenue sur Friendika."; -$a->strings["Friendika Social Network"] = "Réseau social Friendika"; -$a->strings["Installation"] = "Installation"; -$a->strings["In order to install Friendika we need to know how to connect to your database."] = "Pour installer Friendika, nous avons besoin de contacter votre base de données."; -$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Merci de vous tourner vers votre hébergeur et/ou administrateur pour toute question concernant ces réglages."; -$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "La base de données que vous spécifierez doit exister. Si ce n'est pas encore le cas, merci de la créer avant de continuer."; -$a->strings["Database Server Name"] = "Serveur de base de données"; -$a->strings["Database Login Name"] = "Nom d'utilisateur de la base"; -$a->strings["Database Login Password"] = "Mot de passe de la base"; -$a->strings["Database Name"] = "Nom de la base"; -$a->strings["Please select a default timezone for your website"] = "Sélectionner un fuseau horaire par défaut pour votre site"; -$a->strings["Site administrator email address. Your account email address must match this in order to use the web admin panel."] = "Adresse courriel de l'administrateur du site. L'adresse courriel de votre compte doit correspondre si vous voulez utiliser l'administration web."; -$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Impossible de trouver la version \"ligne de commande\" de PHP dans le PATH du serveur web."; -$a->strings["This is required. Please adjust the configuration file .htconfig.php accordingly."] = "Ceci est requis. Merci d'ajuster la configuration dans le fichier .htconfig.php en conséquence."; -$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "La version \"ligne de commande\" de PHP de votre système n'a pas \"register_argc_argv\" d'activé."; -$a->strings["This is required for message delivery to work."] = "Ceci est requis pour que la livraison des messages fonctionne."; -$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Erreur: la fonction \"openssl_pkey_new\" de ce système ne permet pas de générer des clés de chiffrement"; -$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Si vous utilisez Windows, merci de vous réferer à \"http://www.php.net/manual/en/openssl.installation.php\"."; -$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Erreur: Le module \"rewrite\" du serveur web Apache est requis mais pas installé."; -$a->strings["Error: libCURL PHP module required but not installed."] = "Erreur: Le module PHP \"libCURL\" est requis mais pas installé."; -$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Erreur: Le module PHP \"GD\" disposant du support JPEG est requis mais pas installé."; -$a->strings["Error: openssl PHP module required but not installed."] = "Erreur: Le module PHP \"openssl\" est requis mais pas installé."; -$a->strings["Error: mysqli PHP module required but not installed."] = "Erreur: Le module PHP \"mysqli\" est requis mais pas installé."; -$a->strings["Error: mb_string PHP module required but not installed."] = "Erreur: le module PHP mb_string est requis mais pas installé."; -$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."] = "L'installeur web doit être en mesure de créer un fichier \".htconfig.php\" à la racine de votre serveur web, mais il en est incapable."; -$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."] = "Le plus souvent, il s'agit d'un problème de permission. Le serveur web peut ne pas être capable d'écrire dans votre répertoire - alors que vous-même le pouvez."; -$a->strings["Please check with your site documentation or support people to see if this situation can be corrected."] = "Merci de vérifier - avec la documentation ou le support de votre hébergement - que la situation peut être corrigée."; -$a->strings["If not, you may be required to perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "Dans le cas contraire, vous pouvez pratiquer une installation manuelle. Référez-vous au fichier \"INSTALL.txt\" pour les instructions."; -$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."] = "Le fichier de configuration de la base (\".htconfig.php\") ne peut être créé. Merci d'utiliser le texte ci-joint pour créer ce fichier à la racine de votre hébergement."; -$a->strings["Errors encountered creating database tables."] = "Des erreurs ont été signalées lors de la création des tables."; -$a->strings["Commented Order"] = "Dans l'ordre des commentaires"; -$a->strings["Posted Order"] = "Dans l'ordre des notices"; -$a->strings["New"] = "Nouveau"; -$a->strings["Starred"] = "Mis en avant"; -$a->strings["Bookmarks"] = "Marqué"; -$a->strings["Warning: This group contains %s member from an insecure network."] = array( - 0 => "Attention: Ce groupe contient %s membre d'un réseau non-sûr.", - 1 => "Attention: Ce groupe contient %s membres d'un réseau non-sûr.", -); -$a->strings["Private messages to this group are at risk of public disclosure."] = "Les messages privés envoyés à ce groupe s'exposent à une diffusion incontrôlée."; -$a->strings["No such group"] = "Groupe inexistant"; -$a->strings["Group is empty"] = "Groupe vide"; -$a->strings["Group: "] = "Groupe: "; -$a->strings["Contact: "] = "Contact: "; -$a->strings["Private messages to this person are at risk of public disclosure."] = "Les messages privés envoyés à ce contact s'exposent à une diffusion incontrôlée."; -$a->strings["Invalid contact."] = "Contact invalide."; -$a->strings["Invalid profile identifier."] = "Identifiant de profil invalide."; -$a->strings["Profile Visibility Editor"] = "Éditer la visibilité du profil"; -$a->strings["Click on a contact to add or remove."] = "Cliquez sur un contact pour l'ajouter ou le supprimer."; -$a->strings["Visible To"] = "Visible par"; -$a->strings["All Contacts (with secure profile access)"] = "Tous les contacts (ayant un accès sécurisé)"; -$a->strings["Event description and start time are required."] = "Une description et une heure de début sont requises."; -$a->strings["Create New Event"] = "Créer un nouvel événement"; -$a->strings["Previous"] = "Précédent"; -$a->strings["Next"] = "Suivant"; -$a->strings["l, F j"] = "l, F j"; -$a->strings["Edit event"] = "Editer l'événement"; -$a->strings["link to source"] = "lien original"; -$a->strings["hour:minute"] = "heures:minutes"; -$a->strings["Event details"] = "Détails de l'événement"; -$a->strings["Format is %s %s. Starting date and Description are required."] = "Le format est %s %s. Une date de début et une description sont requises."; -$a->strings["Event Starts:"] = "Début de l'événement:"; -$a->strings["Finish date/time is not known or not relevant"] = "Date/heure de fin inconnue ou sans objet"; -$a->strings["Event Finishes:"] = "Fin de l'événement:"; -$a->strings["Adjust for viewer timezone"] = "Ajuster à la zone horaire du visiteur"; -$a->strings["Description:"] = "Description:"; -$a->strings["Share this event"] = "Partager cet événement"; -$a->strings["Invalid request identifier."] = "Identifiant de demande invalide."; -$a->strings["Discard"] = "Défausser"; -$a->strings["Network"] = "Réseau"; -$a->strings["Home"] = "Accueil"; -$a->strings["Introductions"] = "Introductions"; -$a->strings["Messages"] = "Messages"; -$a->strings["Show Ignored Requests"] = "Voir les demandes ignorées"; -$a->strings["Hide Ignored Requests"] = "Cacher les demandes ignorées"; -$a->strings["Notification type: "] = "Type de notification: "; -$a->strings["Friend Suggestion"] = "Suggestion d'amitié/contact"; -$a->strings["suggested by %s"] = "suggéré(e) par %s"; -$a->strings["Approve"] = "Approuver"; -$a->strings["Claims to be known to you: "] = "Prétend que vous le connaissez: "; -$a->strings["yes"] = "oui"; -$a->strings["no"] = "non"; -$a->strings["Approve as: "] = "Approuver en tant que: "; -$a->strings["Friend"] = "Ami"; -$a->strings["Sharer"] = "Initiateur du partage"; -$a->strings["Fan/Admirer"] = "Fan/Admirateur"; -$a->strings["Friend/Connect Request"] = "Demande de connexion/relation"; -$a->strings["New Follower"] = "Nouvel abonné"; -$a->strings["No notifications."] = "Pas de notification."; -$a->strings["Notifications"] = "Notifications"; -$a->strings["%s liked %s's post"] = "%s a aimé la notice de %s"; -$a->strings["%s disliked %s's post"] = "%s n'a pas aimé la notice de %s"; -$a->strings["%s is now friends with %s"] = "%s est désormais ami(e) avec %s"; -$a->strings["%s created a new post"] = "%s a publié une notice"; -$a->strings["%s commented on %s's post"] = "%s a commenté une notice de %s"; -$a->strings["Nothing new!"] = "Rien de neuf!"; -$a->strings["Contact settings applied."] = "Réglages du contact appliqués."; -$a->strings["Contact update failed."] = "Impossible d'appliquer les réglages."; -$a->strings["Contact not found."] = "Contact introuvable."; -$a->strings["Repair Contact Settings"] = "Réglages du réparateur de contacts"; -$a->strings["WARNING: This is highly advanced and if you enter incorrect information your communications with this contact may stop working."] = "ATTENTION: Manipulation réservée aux experts, toute information incorrecte pourrait empêcher la communication avec ce contact."; -$a->strings["Please use your browser 'Back' button now if you are uncertain what to do on this page."] = "une photo"; -$a->strings["Account Nickname"] = "Pseudo du compte"; -$a->strings["@Tagname - overrides Name/Nickname"] = "@NomDuTag - prend le pas sur Nom/Pseudo"; -$a->strings["Account URL"] = "URL du compte"; -$a->strings["Friend Request URL"] = "Echec du téléversement de l'image."; -$a->strings["Friend Confirm URL"] = "Accès public refusé."; -$a->strings["Notification Endpoint URL"] = "Aucune photo sélectionnée"; -$a->strings["Poll/Feed URL"] = "Téléverser des photos"; -$a->strings["New photo from this URL"] = "Nouvelle photo depuis cette URL"; -$a->strings["This introduction has already been accepted."] = "Cette introduction a déjà été acceptée."; -$a->strings["Profile location is not valid or does not contain profile information."] = "L'emplacement du profil est invalide ou ne contient pas de profil valide."; -$a->strings["Warning: profile location has no identifiable owner name."] = "Attention: l'emplacement du profil n'a pas de nom identifiable."; -$a->strings["Warning: profile location has no profile photo."] = "Attention: l'emplacement du profil n'a pas de photo de profil."; -$a->strings["%d required parameter was not found at the given location"] = array( - 0 => "%d paramètre requis n'a pas été trouvé à l'endroit indiqué", - 1 => "%d paramètres requis n'ont pas été trouvés à l'endroit indiqué", -); -$a->strings["Introduction complete."] = "Phase de présentation achevée."; -$a->strings["Unrecoverable protocol error."] = "Erreur de protocole non-récupérable."; -$a->strings["Profile unavailable."] = "Profil indisponible."; -$a->strings["%s has received too many connection requests today."] = "%s a reçu trop de demande d'introduction aujourd'hui."; -$a->strings["Spam protection measures have been invoked."] = "Des mesures de protection contre le spam ont été déclenchées."; -$a->strings["Friends are advised to please try again in 24 hours."] = "Les relations sont encouragées à attendre 24 heures pour recommencer."; -$a->strings["Invalid locator"] = "Localisateur invalide"; -$a->strings["Unable to resolve your name at the provided location."] = "Impossible de résoudre votre nom à l'emplacement fourni."; -$a->strings["You have already introduced yourself here."] = "Vous vous êtes déjà présenté ici."; -$a->strings["Apparently you are already friends with %s."] = "Il semblerait que vous soyez déjà ami avec %s."; -$a->strings["Invalid profile URL."] = "URL de profil invalide."; -$a->strings["Your introduction has been sent."] = "Votre présentation a été envoyée."; -$a->strings["Please login to confirm introduction."] = "Connectez-vous pour confirmer l'introduction."; -$a->strings["Incorrect identity currently logged in. Please login to this profile."] = "Identité incorrecte actuellement connectée. Merci de vous connecter à ce profil."; -$a->strings["Welcome home %s."] = "Bienvenue chez vous, %s."; -$a->strings["Please confirm your introduction/connection request to %s."] = "Merci de confirmer votre demande d'introduction auprès de %s."; -$a->strings["Confirm"] = "Confirmer"; -$a->strings["[Name Withheld]"] = "[Nom non-publié]"; -$a->strings["Introduction received at "] = "Introduction reçue sur "; -$a->strings["Diaspora members: Please do not use this form. Instead, enter \"%s\" into your Diaspora search bar."] = "Membres de Diaspora : N'utilisez pas ce formulaire. Entrez plutôt \"%s\" dans votre barre de recherche Diaspora."; -$a->strings["Please enter your 'Identity Address' from one of the following supported social networks:"] = "Saisissez votre \"Adresse d'identité\" de l'un des réseaux sociaux suivants:"; -$a->strings["Friend/Connection Request"] = "Requête de relation/amitié"; -$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Exemples : jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"; -$a->strings["Please answer the following:"] = "Merci de répondre à ce qui suit:"; -$a->strings["Does %s know you?"] = "Est-ce que %s vous connaît?"; -$a->strings["Add a personal note:"] = "Ajouter une note personnelle:"; -$a->strings["Friendica"] = "Friendica"; -$a->strings["StatusNet/Federated Social Web"] = "StatusNet/Federated Social Web"; -$a->strings["- please share from your own site as noted above"] = "- partagez depuis votre propre site comme indiqué ci-dessus"; -$a->strings["Your Identity Address:"] = "Votre adresse d'identité:"; -$a->strings["Submit Request"] = "Envoyer la requête"; -$a->strings["Authorize application connection"] = "Autoriser l'application à se connecter"; -$a->strings["Return to your app and insert this Securty Code:"] = "Retournez à votre application et saisissez ce Code de Sécurité : "; -$a->strings["Please login to continue."] = "Merci de vous connecter pour continuer."; -$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Voulez-vous autoriser cette application à accéder à vos notices et contacts, et/ou à créer des notices à votre place?"; -$a->strings["status"] = "le statut"; -$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s a taggué %3\$s de %2\$s avec %4\$s"; -$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s aime %3\$s de %2\$s"; -$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s n'aime pas %3\$s de %2\$s"; -$a->strings["No valid account found."] = "Impossible de trouver un compte valide."; -$a->strings["Password reset request issued. Check your email."] = "Réinitialisation du mot de passe en cours. Vérifiez votre courriel."; -$a->strings["Password reset requested at %s"] = "Requête de réinitialisation de mot de passe à %s"; -$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Impossible d'honorer cette demande. (Vous l'avez peut-être déjà utilisée par le passé.) La réinitialisation a échoué."; -$a->strings["Your password has been reset as requested."] = "Votre mot de passe a bien été réinitialisé."; -$a->strings["Your new password is"] = "Votre nouveau mot de passe est "; -$a->strings["Save or copy your new password - and then"] = "Sauvez ou copiez ce nouveau mot de passe - puis"; -$a->strings["click here to login"] = "cliquez ici pour vous connecter"; -$a->strings["Your password may be changed from the Settings page after successful login."] = "Votre mot de passe peut être changé depuis la page <em>Réglages</em>, une fois que vous serez connecté."; -$a->strings["Forgot your Password?"] = "Mot de passe oublié?"; -$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Entrez votre adresse de courriel et validez pour réinitialiser votre mot de passe. Vous recevrez la suite des instructions par courriel."; -$a->strings["Nickname or Email: "] = "Pseudo ou Courriel: "; -$a->strings["Reset"] = "Réinitialiser"; -$a->strings["This is Friendica, version"] = "Motorisé par Friendica version"; -$a->strings["running at web location"] = "hébergé sur"; -$a->strings["Please visit Project.Friendika.com to learn more about the Friendica project."] = "Pour en savoir plus, vous pouvez nous rendre visite sur <a href=\"http://project.friendica.com\">Project.Friendica.com</a>"; -$a->strings["Bug reports and issues: please visit"] = "Pour les rapports de bugs: rendez vous sur"; -$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Suggestions, remerciements, donations, etc. - écrivez à \"Info\" arob. Friendica - point com"; -$a->strings["Installed plugins/addons/apps"] = "Extensions/greffons/applications installées"; -$a->strings["No installed plugins/addons/apps"] = "Aucune extension/greffon/application installée"; -$a->strings["Remove My Account"] = "Supprimer mon compte"; -$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Ceci supprimera totalement votre compte. Cette opération est irréversible."; -$a->strings["Please enter your password for verification:"] = "Merci de saisir votre mot de passe pour vérification:"; -$a->strings["Applications"] = "Applications"; -$a->strings["No installed applications."] = "Pas d'application installée."; -$a->strings["Save"] = "Sauver"; -$a->strings["Friend suggestion sent."] = "Suggestion d'amitié/contact envoyée."; -$a->strings["Suggest Friends"] = "Suggérer des amis/contacts"; -$a->strings["Suggest a friend for %s"] = "Suggérer un ami/contact pour %s"; -$a->strings["Access denied."] = "Accès refusé."; -$a->strings["Global Directory"] = "Annuaire global"; -$a->strings["Normal site view"] = "Vue normale"; -$a->strings["Admin - View all site entries"] = "Admin - voir toutes les entrées"; -$a->strings["Find on this site"] = "Trouver sur ce site"; -$a->strings["Site Directory"] = "Annuaire local"; -$a->strings["Gender: "] = "Genre: "; -$a->strings["No entries (some entries may be hidden)."] = "Aucune entrée (certaines peuvent être cachées)."; -$a->strings["Site"] = "Site"; -$a->strings["Users"] = "Utilisateurs"; -$a->strings["Plugins"] = "Extensions"; -$a->strings["Logs"] = "Journaux"; -$a->strings["User registrations waiting for confirmation"] = "Inscriptions en attente de confirmation"; -$a->strings["Administration"] = "Administration"; -$a->strings["Summary"] = "Résumé"; -$a->strings["Registered users"] = "Utilisateurs inscrits"; -$a->strings["Pending registrations"] = "Inscriptions en attente"; -$a->strings["Version"] = "Versio"; -$a->strings["Active plugins"] = "Extensions activés"; -$a->strings["Site settings updated."] = "Réglages du site mis-à-jour."; -$a->strings["Closed"] = "Fermé"; -$a->strings["Requires approval"] = "Demande une apptrobation"; -$a->strings["Open"] = "Ouvert"; -$a->strings["File upload"] = "Téléversement de fichier"; -$a->strings["Policies"] = "Politiques"; -$a->strings["Advanced"] = "Avancé"; -$a->strings["Site name"] = "Nom du site"; -$a->strings["Banner/Logo"] = "Bannière/Logo"; -$a->strings["System language"] = "Langue du système"; -$a->strings["System theme"] = "Thème du système"; -$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 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"; -$a->strings["Force publish"] = "Forcer la publication globale"; -$a->strings["Global directory update URL"] = "URL de mise-à-jour de l'annuaire global"; -$a->strings["Block multiple registrations"] = "Interdire les inscriptions multiples"; -$a->strings["OpenID support"] = "Support OpenID"; -$a->strings["Gravatar support"] = "Support Gravatar"; -$a->strings["Fullname check"] = "Vérification du \"Prénom Nom\""; -$a->strings["UTF-8 Regular expressions"] = "Regex UTF-8"; -$a->strings["Show Community Page"] = "Montrer la \"Place publique\""; -$a->strings["Enable OStatus support"] = "Activer le support d'OStatus"; -$a->strings["Enable Diaspora support"] = "Activer le support de Diaspora"; -$a->strings["Only allow Friendika contacts"] = "N'autoriser que les contacts Friendica"; -$a->strings["Verify SSL"] = "Vérifier SSL"; -$a->strings["Proxy user"] = "Utilisateur du proxy"; -$a->strings["Proxy URL"] = "URL du proxy"; -$a->strings["Network timeout"] = "Dépassement du délai d'attente du réseau"; -$a->strings["%s user blocked"] = array( - 0 => "%s utilisateur bloqué", - 1 => "%s utilisateurs (dé)bloqués", -); -$a->strings["%s user deleted"] = array( - 0 => "%s utilisateur supprimé", - 1 => "%s utilisateurs supprimés", -); -$a->strings["User '%s' deleted"] = "Utilisateur '%s' supprimé"; -$a->strings["User '%s' unblocked"] = "Utilisateur '%s' débloqué"; -$a->strings["User '%s' blocked"] = "Utilisateur '%s' bloqué"; -$a->strings["select all"] = "tout sélectionner"; -$a->strings["User registrations waiting for confirm"] = "Inscriptions d'utilisateurs en attente de confirmation"; -$a->strings["Request date"] = "Date de la demande"; -$a->strings["Email"] = "Courriel"; -$a->strings["No registrations."] = "Pas d'inscriptions."; -$a->strings["Deny"] = "Rejetter"; -$a->strings["Register date"] = "Date d'inscription"; -$a->strings["Last login"] = "Dernière connexion"; -$a->strings["Last item"] = "Dernier élément"; -$a->strings["Account"] = "Compte"; -$a->strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Les utilisateurs sélectionnés vont être supprimés!\\n\\nTout ce qu'ils ont posté sur ce site sera définitivement perdu!\\n\\nÊtes-vous certain?"; -$a->strings["The user {0} will be deleted!\\n\\nEverything this user has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "L'utilisateur {0} va être supprimé!\\n\\nTout ce qu'il a posté sur ce site sera définitivement perdu!\\n\\nÊtes-vous certain?"; -$a->strings["Plugin %s disabled."] = "Extension %s désactivée."; -$a->strings["Plugin %s enabled."] = "Extension %s activée."; -$a->strings["Disable"] = "Désactiver"; -$a->strings["Enable"] = "Activer"; -$a->strings["Toggle"] = "Activer/Désactiver"; -$a->strings["Settings"] = "Réglages"; -$a->strings["Log settings updated."] = "Réglages des journaux mis-à-jour."; -$a->strings["Clear"] = "Effacer"; -$a->strings["Debugging"] = "Déboguage"; -$a->strings["Log file"] = "Fichier de journaux"; -$a->strings["Must be writable by web server. Relative to your Friendika index.php."] = "Doit être accessible en écriture pour le serveur web. Le chemin est relative à l'index.php de Friendica."; -$a->strings["Log level"] = "Niveau de journalisaton"; -$a->strings["Close"] = "Fermer"; -$a->strings["FTP Host"] = "Hôte FTP"; -$a->strings["FTP Path"] = "Chemin FTP"; -$a->strings["FTP User"] = "Utilisateur FTP"; -$a->strings["FTP Password"] = "Mot de passe FTP"; -$a->strings["Unable to locate original post."] = "Impossible de localiser l'article original."; -$a->strings["Empty post discarded."] = "Article vide défaussé."; -$a->strings["noreply"] = "noreply"; -$a->strings["Administrator@"] = "Administrator@"; -$a->strings["%s commented on an item at %s"] = "%s a commenté un élément à %s"; -$a->strings["%s posted to your profile wall at %s"] = "%s a posté sur votre mur à %s"; -$a->strings["System error. Post not saved."] = "Erreur système. Publication non sauvée."; -$a->strings["This message was sent to you by %s, a member of the Friendika social network."] = "Ce message vous a été envoyé par %s, un membre du réseau social Friendica."; -$a->strings["You may visit them online at %s"] = "Vous pouvez leur rendre visite sur %s"; -$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Merci de contacter l'émeteur en répondant à cette publication si vous ne souhaitez pas recevoir ces messages."; -$a->strings["%s posted an update."] = "%s a publié une mise à jour."; -$a->strings["Tag removed"] = "Étiquette enlevée"; -$a->strings["Remove Item Tag"] = "Enlever l'étiquette de l'élément"; -$a->strings["Select a tag to remove: "] = "Choisir une étiquette à enlever: "; -$a->strings["Remove"] = "Utiliser comme photo de profil"; -$a->strings["No recipient selected."] = "Pas de destinataire sélectionné."; -$a->strings["Unable to locate contact information."] = "Impossible de localiser les informations du contact."; -$a->strings["Message could not be sent."] = "Impossible d'envoyer le message."; -$a->strings["Message sent."] = "Message envoyé."; -$a->strings["Inbox"] = "Messages entrants"; -$a->strings["Outbox"] = "Messages sortants"; -$a->strings["New Message"] = "Nouveau message"; -$a->strings["Message deleted."] = "Message supprimé."; -$a->strings["Conversation removed."] = "Conversation supprimée."; -$a->strings["Please enter a link URL:"] = "Entrez un lien web:"; -$a->strings["Send Private Message"] = "Envoyer un message privé"; -$a->strings["To:"] = "À:"; -$a->strings["Subject:"] = "Sujet:"; -$a->strings["No messages."] = "Aucun message."; -$a->strings["Delete conversation"] = "Effacer conversation"; -$a->strings["D, d M Y - g:i A"] = "D, d M Y - g:i A"; -$a->strings["Message not available."] = "Message indisponible."; -$a->strings["Delete message"] = "Effacer message"; -$a->strings["Send Reply"] = "Répondre"; +$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "Pour plus d'information sur le projet Friendica, et pourquoi nous croyons qu'il est important, merci de visiter http://friendica.com"; +$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "Ceci peut se produire lorsque le contact a été requis par les deux personnes et a déjà été approuvé."; $a->strings["Response from remote site was not understood."] = "Réponse du site distant incomprise."; $a->strings["Unexpected response from remote site: "] = "Réponse inattendue du site distant: "; $a->strings["Confirmation completed successfully."] = "Confirmation achevée avec succès."; @@ -783,80 +1062,282 @@ $a->strings["Site public key not available in contact record for URL %s."] = "La $a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "L'identifiant fourni par votre système fait doublon sur le notre. Cela peut fonctionner si vous réessayez."; $a->strings["Unable to set your contact credentials on our system."] = "Impossible de vous définir des permissions sur notre système."; $a->strings["Unable to update your contact profile details on our system"] = "Impossible de mettre les détails de votre profil à jour sur notre système"; -$a->strings["Connection accepted at %s"] = "Connexion acceptée avec %s"; -$a->strings["Login failed."] = "Échec de connexion."; -$a->strings["Welcome "] = "Bienvenue "; -$a->strings["Please upload a profile photo."] = "Merci d'illustrer votre profil d'une image."; -$a->strings["Welcome back "] = "Bienvenue à nouveau, "; -$a->strings["%s welcomes %s"] = "%s accueille %s"; -$a->strings["View Contacts"] = "Voir les contacts"; -$a->strings["No contacts."] = "Aucun contact."; -$a->strings["Group created."] = "Groupe créé."; -$a->strings["Could not create group."] = "Impossible de créer le groupe."; -$a->strings["Group not found."] = "Groupe introuvable."; -$a->strings["Group name changed."] = "Groupe renommé."; -$a->strings["Create a group of contacts/friends."] = "Créez un groupe de contacts/amis."; -$a->strings["Group Name: "] = "Nom du groupe: "; -$a->strings["Group removed."] = "Groupe enlevé."; -$a->strings["Unable to remove group."] = "Impossible d'enlever le groupe."; -$a->strings["Group Editor"] = "Éditeur de groupe"; -$a->strings["Members"] = "Membres"; -$a->strings["All Contacts"] = "Tout les contacts"; -$a->strings["Item not available."] = "Elément non disponible."; -$a->strings["Item was not found."] = "Element introuvable."; -$a->strings["Common Friends"] = "Amis communs"; -$a->strings["No friends in common."] = "Pas d'amis communs"; -$a->strings["Profile Match"] = "Correpondance de profils"; -$a->strings["No keywords to match. Please add keywords to your default profile."] = "Aucun mot-clé en correspondance. Merci d'ajouter des mots-clés à votre profil par défaut."; -$a->strings["Not available."] = "Indisponible."; -$a->strings["Community"] = "Communauté"; -$a->strings["Shared content is covered by the Creative Commons Attribution 3.0 license."] = "Le contenu est partagé suivant les termes de la licence Creative Commons Attribution 3.0."; -$a->strings["Post to Tumblr"] = "Publier sur Tumblr"; -$a->strings["Tumblr Post Settings"] = "Réglages de Tumblr"; -$a->strings["Enable Tumblr Post Plugin"] = "Activer l'extension Tumblr"; -$a->strings["Tumblr login"] = "Login Tumblr"; -$a->strings["Tumblr password"] = "Mot de passe Tumblr"; -$a->strings["Post to Tumblr by default"] = "Publier sur Tumblr par défaut"; -$a->strings["Post from Friendica"] = "Publier depuis Friendica"; -$a->strings["Post to Twitter"] = "Poster sur Twitter"; -$a->strings["Twitter settings updated."] = "Réglages de Twitter mis-à-jour."; -$a->strings["Twitter Posting Settings"] = "Réglages du connecteur Twitter"; -$a->strings["No consumer key pair for Twitter found. Please contact your site administrator."] = "Pas de paire de clés pour Twitter. Merci de contacter l'administrateur du site."; -$a->strings["At this Friendika 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."] = "Sur cette instance de Friendika, le connecteur Twitter a été activé, mais vous n'avez pas encore connecté votre compte à Twitter. Pour ce faire, cliquez sur le bouton ci-dessous pour obtenir un PIN de Twitter, que vous aurez à coller dans la boîte ci-dessous. Ensuite, validez le formulaire. Seuls vos articles <strong>publics</strong> seront postés sur Twitter."; -$a->strings["Log in with Twitter"] = "Se connecter à Twitter"; -$a->strings["Copy the PIN from Twitter here"] = "Copier le PIN de Twitter ici"; -$a->strings["Currently connected to: "] = "Actuellement connecté à: "; -$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."] = "En cas d'activation, toutes vos notices publiques seront transmises au compte Twitter associé. Vous pourrez choisir de le faire par défaut (ici), ou bien pour chaque notice séparément lors de sa rédaction."; -$a->strings["Allow posting to Twitter"] = "Autoriser la publication sur Twitter"; -$a->strings["Send public postings to Twitter by default"] = "Envoyer les éléments publics sur Twitter par défaut"; -$a->strings["Clear OAuth configuration"] = "Effacer la configuration OAuth"; -$a->strings["Consumer key"] = "Clé utilisateur"; -$a->strings["Consumer secret"] = "Secret utilisateur"; -$a->strings["Post to StatusNet"] = "Poster sur StatusNet"; -$a->strings["Please contact your site administrator.
    The provided API URL is not valid."] = "Merci de contacter l'administrateur du site.
    L'URL d'API fournie est invalide."; -$a->strings["We could not contact the StatusNet API with the Path you entered."] = "Nous n'avons pas pu contacter l'API StatusNet avec le chemin saisi."; -$a->strings["StatusNet settings updated."] = "Réglages StatusNet mis-à-jour."; -$a->strings["StatusNet Posting Settings"] = "Réglages du connecteur StatusNet"; -$a->strings["Globally Available StatusNet OAuthKeys"] = "Clés OAuth StatusNet universelles"; -$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)."] = "Ce sont des paires de clés OAuth préconfigurées pour certains serveurs StatusNet courants. Si vous utilisez l'un d'entre eux, merci de vous servir de ces clés. Autrement, vous pouvez vous connecter à n'importer quelle autre instance de StatusNet (voir ci-dessous)."; -$a->strings["Provide your own OAuth Credentials"] = "Fournissez vos propres paramètres OAuth"; -$a->strings["No consumer key pair for StatusNet found. Register your Friendika 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 Friendika installation at your favorited StatusNet installation."] = "Aucune paire de clé n'a été trouvée pour StatusNet. Inscrivez votre compte Friendika comme client bureautique sur votre compte StatusNet, puis copiez la paire de clés d'utilisateur ici et renseignez le chemin de base de l'API.<br />Avant d'enregistrer votre propre paire de clés OAuth, merci de vérifier auprès de l'administrateur qu'il en existe pas déjà une pour votre fournisseur StatusNet."; -$a->strings["OAuth Consumer Key"] = "Clé de consommateur OAuth"; -$a->strings["OAuth Consumer Secret"] = "Secret d'utilisateur OAuth"; -$a->strings["Base API Path (remember the trailing /)"] = "Chemin de base de l'API (n'oubliez pas le / final)"; -$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."] = "Pour vous connecter à votre compte StatusNet, cliquez sur le bouton ci-dessous pour obtenir un code de sécurité de StatusNet, que vous aurez à coller dans la boîte ci-dessous. Ensuite, validez le formulaire. Seuls vos articles <strong>publics</strong> seront postés sur StatusNet."; -$a->strings["Log in with StatusNet"] = "Se connecter à StatusNet"; -$a->strings["Copy the security code from StatusNet here"] = "Coller le code de sécurité de StatusNet ici"; -$a->strings["Cancel Connection Process"] = "Annuler le processus de connexion"; -$a->strings["Current StatusNet API is"] = "L'API StatusNet courante est"; -$a->strings["Cancel StatusNet Connection"] = "Annuler la connexion à StatusNet"; -$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."] = "En cas d'activation, toutes vos notices publiques seront transmises au compte StatusNet associé. Vous pourrez choisir de le faire par défaut (ici), ou bien pour chaque notice séparément lors de sa rédaction."; -$a->strings["Allow posting to StatusNet"] = "Autoriser la publication sur StatusNet"; -$a->strings["Send public postings to StatusNet by default"] = "Par défaut, envoyer les notices publiques à StatusNet"; -$a->strings["API URL"] = "URL de l'API"; -$a->strings["OEmbed settings updated"] = "Réglage OEmbed mis-à-jour"; -$a->strings["Use OEmbed for YouTube videos"] = "Utiliser OEmbed pour les vidéos Youtube"; -$a->strings["URL to embed:"] = "URL à incorporer:"; +$a->strings["Connection accepted at %s"] = "Connexion acceptée chez %s"; +$a->strings["%1\$s has joined %2\$s"] = "%1\$s a rejoint %2\$s"; +$a->strings["Google+ Import Settings"] = "Réglages G+"; +$a->strings["Enable Google+ Import"] = "Activer l'import G+"; +$a->strings["Google Account ID"] = "ID du compte Google"; +$a->strings["Google+ Import Settings saved."] = "Réglages G+ sauvés."; +$a->strings["Facebook disabled"] = "Connecteur Facebook désactivé"; +$a->strings["Updating contacts"] = "Mise-à-jour des contacts"; +$a->strings["Facebook API key is missing."] = "Clé d'API Facebook manquante."; +$a->strings["Facebook Connect"] = "Connecteur Facebook"; +$a->strings["Install Facebook connector for this account."] = "Installer le connecteur Facebook sur ce compte."; +$a->strings["Remove Facebook connector"] = "Désinstaller le connecteur Facebook"; +$a->strings["Re-authenticate [This is necessary whenever your Facebook password is changed.]"] = "Se ré-authentifier [nécessaire chaque fois que vous changez votre mot de passe Facebook.]"; +$a->strings["Post to Facebook by default"] = "Poster sur Facebook par défaut"; +$a->strings["Facebook friend linking has been disabled on this site. The following settings will have no effect."] = "L'ajout d'amis Facebook a été désactivé sur ce site. Les réglages suivants seront sans effet."; +$a->strings["Facebook friend linking has been disabled on this site. If you disable it, you will be unable to re-enable it."] = "L'ajout d'amis Facebook a été désactivé sur ce site. Si vous désactivez ce réglage, vous ne pourrez le ré-activer."; +$a->strings["Link all your Facebook friends and conversations on this website"] = "Lier tous vos amis et conversations Facebook sur ce site"; +$a->strings["Facebook conversations consist of your profile wall and your friend stream."] = "Les conversations Facebook se composent du mur du profil et des flux de vos amis."; +$a->strings["On this website, your Facebook friend stream is only visible to you."] = "Sur ce site, les flux de vos amis Facebook ne sont visibles que par vous."; +$a->strings["The following settings determine the privacy of your Facebook profile wall on this website."] = "Les réglages suivants déterminent le niveau de vie privée de votre mur Facebook depuis ce site."; +$a->strings["On this website your Facebook profile wall conversations will only be visible to you"] = "Sur ce site, les conversations de votre mur Facebook ne sont visibles que par vous."; +$a->strings["Do not import your Facebook profile wall conversations"] = "Ne pas importer les conversations de votre mur Facebook."; +$a->strings["If you choose to link conversations and leave both of these boxes unchecked, your Facebook profile wall will be merged with your profile wall on this website and your privacy settings on this website will be used to determine who may see the conversations."] = "Si vous choisissez de lier les conversations et de laisser ces deux cases non-cochées, votre mur Facebook sera fusionné avec votre mur de profil (sur ce site). Vos réglages (locaux) de vie privée serviront à en déterminer la visibilité."; +$a->strings["Comma separated applications to ignore"] = "Liste (séparée par des virgules) des applications à ignorer"; +$a->strings["Problems with Facebook Real-Time Updates"] = "Problème avec les mises-à-jour en temps réel de Facebook"; +$a->strings["Facebook Connector Settings"] = "Réglages du connecteur Facebook"; +$a->strings["Facebook API Key"] = "Clé d'API Facebook"; +$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.

    "] = "Erreur: il semble que vous ayez spécifié un App-ID et un Secret dans votre fichier .htconfig.php. Tant qu'ils y seront, vous ne pourrez les configurer avec ce formulaire.

    "; +$a->strings["Error: the given API Key seems to be incorrect (the application access token could not be retrieved)."] = "Erreur: la clé d'API semble incorrecte (le jeton d'accès d'application n'a pu être recupéré)"; +$a->strings["The given API Key seems to work correctly."] = "La clé d'API semble fonctionner correctement."; +$a->strings["The correctness of the API Key could not be detected. Something strange's going on."] = "La validité de la clé d'API ne peut être vérifiée. Quelque-chose d'étrange se passe."; +$a->strings["App-ID / API-Key"] = "App-ID / Clé d'API"; +$a->strings["Application secret"] = "Secret de l'application"; +$a->strings["Polling Interval in minutes (minimum %1\$s minutes)"] = "Intervalle de 'polling' en minutes (minimum %1\$s minutes)"; +$a->strings["Synchronize comments (no comments on Facebook are missed, at the cost of increased system load)"] = "Synchroniser les commentaires (aucun commentaire de Facebook ne devrait être oublié, au prix d'une charge système accrue)"; +$a->strings["Real-Time Updates"] = "Mises-à-jour en temps réel"; +$a->strings["Real-Time Updates are activated."] = "Mises-à-jour en temps réel activées."; +$a->strings["Deactivate Real-Time Updates"] = "Désactiver les mises-à-jour en temps réel"; +$a->strings["Real-Time Updates not activated."] = "Mises-à-jour en temps réel désactivées."; +$a->strings["Activate Real-Time Updates"] = "Activer les mises-à-jour en temps réel"; +$a->strings["The new values have been saved."] = "Les nouvelles valeurs ont été sauvées."; +$a->strings["Post to Facebook"] = "Poster sur Facebook"; +$a->strings["Post to Facebook cancelled because of multi-network access permission conflict."] = "Publication sur Facebook annulée pour cause de conflit de permissions inter-réseaux."; +$a->strings["View on Friendica"] = "Voir sur Friendica"; +$a->strings["Facebook post failed. Queued for retry."] = "Publication sur Facebook échouée. En attente pour re-tentative."; +$a->strings["Your Facebook connection became invalid. Please Re-authenticate."] = "Votre connexion à Facebook est devenue invalide. Merci de vous ré-authentifier."; +$a->strings["Facebook connection became invalid"] = "La connexion Facebook est devenue invalide"; +$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."] = "Bonjour %1\$s,\n\nLa connexion entre vos comptes sur %2\$s et Facebook est devenue invalide. Ceci arrive généralement lorsque vous changez de mot de passe Facebook. Pour réactiver cette connexion, vous devrez %3\$sré-authentifier le connecteur Facebook%4\$s."; +$a->strings["StatusNet AutoFollow settings updated."] = "Réglages de suivi automatique sur StatusNet mis à jour."; +$a->strings["StatusNet AutoFollow Settings"] = "Réglages de suivi automatique sur StatusNet"; +$a->strings["Automatically follow any StatusNet followers/mentioners"] = "Suivre automatiquement les personnes qui vous suivent ou vous mentionnent sur Statusnet"; +$a->strings["Bg settings updated."] = "Réglages d'arrière-plan mis à jour."; +$a->strings["Bg Settings"] = "Réglages d'arrière-plan"; +$a->strings["How many contacts to display on profile sidebar"] = "Nombre de contacts à montrer sur le panneau latéral du profil"; +$a->strings["Lifetime of the cache (in hours)"] = "Durée de vie du cache (en heures)"; +$a->strings["Cache Statistics"] = "Statistiques du cache"; +$a->strings["Number of items"] = "Nombre d'éléments"; +$a->strings["Size of the cache"] = "Taille du cache"; +$a->strings["Delete the whole cache"] = "Vider le cache"; +$a->strings["Facebook Post disabled"] = ""; +$a->strings["Facebook Post"] = ""; +$a->strings["Install Facebook Post connector for this account."] = ""; +$a->strings["Remove Facebook Post connector"] = ""; +$a->strings["Facebook Post Settings"] = ""; +$a->strings["%d person likes this"] = array( + 0 => "%d personne aime ça", + 1 => "%d personnes aiment ça", +); +$a->strings["%d person doesn't like this"] = array( + 0 => "%d personne n'aime pas ça", + 1 => "%d personnes n'aiment pas ça", +); +$a->strings["Get added to this list!"] = "Ajoutez-vous à cette liste!"; +$a->strings["Generate new key"] = "Générer une nouvelle clé"; +$a->strings["Widgets key"] = "Clé des widgets"; +$a->strings["Widgets available"] = "Widgets disponibles"; +$a->strings["Connect on Friendica!"] = "Se connecter sur Friendica!"; +$a->strings["bitchslap"] = ""; +$a->strings["bitchslapped"] = ""; +$a->strings["shag"] = ""; +$a->strings["shagged"] = ""; +$a->strings["do something obscenely biological to"] = ""; +$a->strings["did something obscenely biological to"] = ""; +$a->strings["point out the poke feature to"] = ""; +$a->strings["pointed out the poke feature to"] = ""; +$a->strings["declare undying love for"] = ""; +$a->strings["declared undying love for"] = ""; +$a->strings["patent"] = ""; +$a->strings["patented"] = ""; +$a->strings["stroke beard"] = ""; +$a->strings["stroked their beard at"] = ""; +$a->strings["bemoan the declining standards of modern secondary and tertiary education to"] = ""; +$a->strings["bemoans the declining standards of modern secondary and tertiary education to"] = ""; +$a->strings["hug"] = ""; +$a->strings["hugged"] = ""; +$a->strings["kiss"] = ""; +$a->strings["kissed"] = ""; +$a->strings["raise eyebrows at"] = ""; +$a->strings["raised their eyebrows at"] = ""; +$a->strings["insult"] = ""; +$a->strings["insulted"] = ""; +$a->strings["praise"] = ""; +$a->strings["praised"] = ""; +$a->strings["be dubious of"] = ""; +$a->strings["was dubious of"] = ""; +$a->strings["eat"] = ""; +$a->strings["ate"] = ""; +$a->strings["giggle and fawn at"] = ""; +$a->strings["giggled and fawned at"] = ""; +$a->strings["doubt"] = ""; +$a->strings["doubted"] = ""; +$a->strings["glare"] = ""; +$a->strings["glared at"] = ""; +$a->strings["YourLS Settings"] = "Réglages de YourLS"; +$a->strings["URL: http://"] = "URL: http://"; +$a->strings["Username:"] = "Nom d'utilisateur"; +$a->strings["Password:"] = "Mot de passe :"; +$a->strings["Use SSL "] = "Utiliser SSL "; +$a->strings["yourls Settings saved."] = "Réglages yourls sauvés."; +$a->strings["Post to LiveJournal"] = "Poster vers LiveJournal"; +$a->strings["LiveJournal Post Settings"] = "Réglages LiveJournal"; +$a->strings["Enable LiveJournal Post Plugin"] = "Activer \"Poster vers LiveJournal\""; +$a->strings["LiveJournal username"] = "Nom d'utilisateur LiveJournal"; +$a->strings["LiveJournal password"] = "Mot de passe"; +$a->strings["Post to LiveJournal by default"] = "Poster vers LiveJournal par défaut"; +$a->strings["Not Safe For Work (General Purpose Content Filter) settings"] = "Réglages de \"NSFW\" (filtrage de contenu)"; +$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."] = "Cette extension va parcourir les publications à la recherche des mots (ou phrases) que vous spécifierez ci-dessous, et repliera automatiquement tout contenu qui les contiendrait, afin de ne pas risquer de les afficher à un moment inopportun. Comme par exemple des messages à caractère sexuel dans un contexte professionnel. Il est globalement considéré comme correct et poli de \"tagguer\" toute publication contenant de la nudité avec #NSFW (Not Safe For Work - pas pour le boulot). Ce filtre peut également fonctionner pour tout autre texte que vous spécifierez, et pourra ainsi être utilisé comme filtre de contenu générique."; +$a->strings["Enable Content filter"] = "Activer le filtrage de contenu"; +$a->strings["Comma separated list of keywords to hide"] = "Liste de mots-clés - séparés par des virgules - à cacher"; +$a->strings["Use /expression/ to provide regular expressions"] = "Utilisez /expression/ pour les expressions rationnelles"; +$a->strings["NSFW Settings saved."] = "Réglages NSFW sauvegardés."; +$a->strings["%s - Click to open/close"] = "%s - cliquer pour ouvrir/fermer"; +$a->strings["Forums"] = "Forums"; +$a->strings["Forums:"] = "Forums:"; +$a->strings["Page settings updated."] = "Paramètres des pages mis à jour."; +$a->strings["Page Settings"] = "Paramètres des pages"; +$a->strings["How many forums to display on sidebar without paging"] = "Nombre de forums à afficher sur la barre de côté sans changer de page"; +$a->strings["Randomise Page/Forum list"] = "Rendre aléatoire la liste des pages/forums"; +$a->strings["Show pages/forums on profile page"] = "Montrer les forums sur le profil"; +$a->strings["Planets Settings"] = "Réglages des Planets"; +$a->strings["Enable Planets Plugin"] = "Activer Planets"; +$a->strings["Login"] = "Connexion"; +$a->strings["OpenID"] = "OpenID"; +$a->strings["Latest users"] = "Derniers utilisateurs"; +$a->strings["Most active users"] = "Utilisateurs les plus actifs"; +$a->strings["Latest photos"] = "Dernières photos"; +$a->strings["Latest likes"] = "Dernières approbations"; +$a->strings["event"] = "évènement"; +$a->strings["No access"] = "Pas d'accès"; +$a->strings["Could not open component for editing"] = ""; +$a->strings["Go back to the calendar"] = "Revenir au calendrier"; +$a->strings["Event data"] = "Données de l'évènement"; +$a->strings["Calendar"] = "Calendrier"; +$a->strings["Special color"] = "Couleur spéciale"; +$a->strings["Subject"] = "Sujet"; +$a->strings["Starts"] = "Début"; +$a->strings["Ends"] = "Fin"; +$a->strings["Description"] = "Description"; +$a->strings["Recurrence"] = "Récurrence"; +$a->strings["Frequency"] = "Fréquence"; +$a->strings["Daily"] = "Chaque jour"; +$a->strings["Weekly"] = "Chaque semaine"; +$a->strings["Monthly"] = "Chaque mois"; +$a->strings["Yearly"] = "Par an"; +$a->strings["days"] = "jours"; +$a->strings["weeks"] = "semaines"; +$a->strings["months"] = "mois"; +$a->strings["years"] = "ans"; +$a->strings["Interval"] = "Intervalle"; +$a->strings["All %select% %time%"] = ""; +$a->strings["Days"] = "Jours"; +$a->strings["Sunday"] = "Dimanche"; +$a->strings["Monday"] = "Lundi"; +$a->strings["Tuesday"] = "Mardi"; +$a->strings["Wednesday"] = "Mercredi"; +$a->strings["Thursday"] = "Jeudi"; +$a->strings["Friday"] = "Vendredi"; +$a->strings["Saturday"] = "Samedi"; +$a->strings["First day of week:"] = "Premier jour de la semaine :"; +$a->strings["Day of month"] = "Jour du mois"; +$a->strings["#num#th of each month"] = "Le #num# de chaque mois"; +$a->strings["#num#th-last of each month"] = ""; +$a->strings["#num#th #wkday# of each month"] = ""; +$a->strings["#num#th-last #wkday# of each month"] = ""; +$a->strings["Month"] = "Mois"; +$a->strings["#num#th of the given month"] = ""; +$a->strings["#num#th-last of the given month"] = ""; +$a->strings["#num#th #wkday# of the given month"] = ""; +$a->strings["#num#th-last #wkday# of the given month"] = ""; +$a->strings["Repeat until"] = "Répéter jusqu'à"; +$a->strings["Infinite"] = "Infini"; +$a->strings["Until the following date"] = "Jusqu'à cette date"; +$a->strings["Number of times"] = "Nombre de fois"; +$a->strings["Exceptions"] = "Exceptions"; +$a->strings["none"] = "aucun"; +$a->strings["Notification"] = "Notification"; +$a->strings["Notify by"] = ""; +$a->strings["E-Mail"] = "Courriel"; +$a->strings["On Friendica / Display"] = "Sur Friendica / Afficher"; +$a->strings["Time"] = "Heure"; +$a->strings["Hours"] = "Heures"; +$a->strings["Minutes"] = "Minutes"; +$a->strings["Seconds"] = "Secondes"; +$a->strings["Weeks"] = "Semaines"; +$a->strings["before the"] = "avant le"; +$a->strings["start of the event"] = "début de l'événement"; +$a->strings["end of the event"] = "fin de l'événement"; +$a->strings["Add a notification"] = "Ajouter une notification"; +$a->strings["The event #name# will start at #date"] = "L'événement #name# commencera le #date#"; +$a->strings["#name# is about to begin."] = "#name# va commencer"; +$a->strings["Saved"] = "Sauvegardé"; +$a->strings["U.S. Time Format (mm/dd/YYYY)"] = "Date au format américain (mm/jj/AAAA)"; +$a->strings["German Time Format (dd.mm.YYYY)"] = "Date au format européen (jj.mm.AAAA)"; +$a->strings["Private Events"] = "Événements privés."; +$a->strings["Private Addressbooks"] = "Carnets d'adresses privés"; +$a->strings["Friendica-Native events"] = "Événements natifs de Friendica"; +$a->strings["Friendica-Contacts"] = "Contacts Friendica"; +$a->strings["Your Friendica-Contacts"] = "Vos contacts Friendica"; +$a->strings["Something went wrong when trying to import the file. Sorry. Maybe some events were imported anyway."] = "Désolé, l'importation du fichier s'est mal passée. Toutefois, il se peut que certains événements aient tout de même été importés."; +$a->strings["Something went wrong when trying to import the file. Sorry."] = "Désolé, l'importation du fichier s'est mal passée."; +$a->strings["The ICS-File has been imported."] = "Le fichier ICS a été importé."; +$a->strings["No file was uploaded."] = "Aucun fichier n'a été téléchargé."; +$a->strings["Import a ICS-file"] = "Importer un fichier ICS"; +$a->strings["ICS-File"] = "Fichier ICS"; +$a->strings["Overwrite all #num# existing events"] = "Écraser les #num# événements existants"; +$a->strings["New event"] = "Nouvel événement"; +$a->strings["Today"] = "Aujourd'hui"; +$a->strings["Day"] = "Jour"; +$a->strings["Week"] = "Semaine"; +$a->strings["Reload"] = "Recharger"; +$a->strings["Date"] = "Date"; +$a->strings["Error"] = "Erreur"; +$a->strings["The calendar has been updated."] = "Le calendrier a été mis à jour."; +$a->strings["The new calendar has been created."] = "Le nouveau calendrier a été créé."; +$a->strings["The calendar has been deleted."] = "Le calendrier a été détruit."; +$a->strings["Calendar Settings"] = "Paramètres du calendrier"; +$a->strings["Date format"] = "Format de la date"; +$a->strings["Time zone"] = "Fuseau horaire"; +$a->strings["Calendars"] = "Calendriers."; +$a->strings["Create a new calendar"] = "Créer un nouveau calendrier."; +$a->strings["Limitations"] = "Limitations"; +$a->strings["Warning"] = "Avertissement"; +$a->strings["Synchronization (iPhone, Thunderbird Lightning, Android, ...)"] = "Synchronisation (Iphone, Thunderbird Lightning, Android, ...)"; +$a->strings["Synchronizing this calendar with the iPhone"] = "Synchronisation avec l'Iphone en cours"; +$a->strings["Synchronizing your Friendica-Contacts with the iPhone"] = "Synchronisation de vos contacts Friendica avec l'Iphone en cours"; +$a->strings["The current version of this plugin has not been set up correctly. Please contact the system administrator of your installation of friendica to fix this."] = "La version actuelle de cette extension n'a pas été configurée correctement. Merci de contacter votre administrateur Friendica pour régler ce problème. "; +$a->strings["Extended calendar with CalDAV-support"] = "Calendrier étendu avec support CalDAV"; +$a->strings["noreply"] = "noreply"; +$a->strings["Notification: "] = "Notification :"; +$a->strings["The database tables have been installed."] = "Les tables de la base de données ont été installées."; +$a->strings["An error occurred during the installation."] = "Une erreur est survenue lors de l'installation."; +$a->strings["The database tables have been updated."] = "Les tables de la base de données ont été mises à jour."; +$a->strings["An error occurred during the update."] = "Une erreur est survenue lors de la mise à jour."; +$a->strings["No system-wide settings yet."] = "Pas de paramètres globaux pour l'instant."; +$a->strings["Database status"] = "Etat de la base de données"; +$a->strings["Installed"] = "Installé"; +$a->strings["Upgrade needed"] = "Mise à jour nécessaire"; +$a->strings["Please back up all calendar data (the tables beginning with dav_*) before proceeding. While all calendar events should be converted to the new database structure, it's always safe to have a backup. Below, you can have a look at the database-queries that will be made when pressing the 'update'-button."] = "Merci de sauvegarder toutes les données calendaires (les tables commençant par dav_*) avant de continuer. Bien que les évènements du calendrier doivent tous être convertis à la nouvelle structure, ça ne fait pas de mal d'avoir une sauvegarder. Ci-dessous, vous pouvez voir les requêtes qui seront faites lorsque vous lancerez la mise-à-jour."; +$a->strings["Upgrade"] = "Mettre à jour"; +$a->strings["Not installed"] = "Non installé"; +$a->strings["Install"] = "Installer"; +$a->strings["Unknown"] = "Inconnu"; +$a->strings["Something really went wrong. I cannot recover from this state automatically, sorry. Please go to the database backend, back up the data, and delete all tables beginning with 'dav_' manually. Afterwards, this installation routine should be able to reinitialize the tables automatically."] = "Quelque-chose a vraiment déconné. Je ne vais pas pouvoir me rétablir automatiquement, désolé. Merci de contacter directement votre base de données, de sauvegarder les données, et de supprimer toutes les tables qui commencent par 'dav_' à l main. Puis, la routine d'installation devrait être en mesure de réinitialiser ces tables automatiquement."; +$a->strings["Troubleshooting"] = "Dépannage"; +$a->strings["Manual creation of the database tables:"] = "Création manuelle des tables de la base de données :"; +$a->strings["Show SQL-statements"] = "Montrer les requêtes SQL"; +$a->strings["Private Calendar"] = "Calendrier privé"; +$a->strings["Friendica Events: Mine"] = "Evénements Friendica : Personnels"; +$a->strings["Friendica Events: Contacts"] = "Evénements Friendica : Contacts"; +$a->strings["Private Addresses"] = "Adresses privées"; +$a->strings["Friendica Contacts"] = "Contacts Friendica"; +$a->strings["Allow to use your friendica id (%s) to connecto to external unhosted-enabled storage (like ownCloud). See RemoteStorage WebFinger"] = "Permet l'utilisation de votre ID Friendica (%s) pour vous connecter à des sites compatibles \"unhosted\" (comme ownCloud). Voyez RemoteStorage WebFinger"; +$a->strings["Template URL (with {category})"] = "Modèle d'URL (avec {catégorie})"; +$a->strings["OAuth end-point"] = "URL OAuth"; +$a->strings["Api"] = "Type d'API"; +$a->strings["Member since:"] = "Membre depuis:"; $a->strings["Three Dimensional Tic-Tac-Toe"] = "Morpion en trois dimensions"; $a->strings["3D Tic-Tac-Toe"] = "Morpion 3D"; $a->strings["New game"] = "Nouvelle partie"; @@ -869,68 +1350,33 @@ $a->strings["I'm going first this time..."] = "Je commence..."; $a->strings["You won!"] = "Vous avez gagné!"; $a->strings["\"Cat\" game!"] = "Match nul!"; $a->strings["I won!"] = "J'ai gagné!"; -$a->strings["Allow to use your friendika id (%s) to connecto to external unhosted-enabled storage (like ownCloud)"] = "Autoriser votre identifiant friendica (%s) à se connecter à un stockage compatible unhosted (ownCloud, par exemple)"; -$a->strings["Unhosted DAV storage url"] = "URL de stockage DAV d'Unhosted"; -$a->strings["Impressum"] = "Impressum"; -$a->strings["Site Owner"] = "Propriétaire du site"; -$a->strings["Email Address"] = "Adresse courriel"; -$a->strings["Postal Address"] = "Adresse postale"; -$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."] = "L'extension \"Impressum\" (ou ours) n'est pas configuré!
    Merci d'ajouter au moins la variable owner à votre fichier de configuration. Pour les autres variables, reportez-vous au fichier README accompagnant l'extension."; -$a->strings["Site Owners Profile"] = "Profil des propriétaires du site"; -$a->strings["Notes"] = "Notes"; -$a->strings["Facebook disabled"] = "Connecteur Facebook désactivé"; -$a->strings["Updating contacts"] = "Mise-à-jour des contacts"; -$a->strings["Facebook API key is missing."] = "Clé d'API Facebook manquante."; -$a->strings["Facebook Connect"] = "Connecteur Facebook"; -$a->strings["Install Facebook connector for this account."] = "Installer le connecteur Facebook sur ce compte."; -$a->strings["Remove Facebook connector"] = "Désinstaller le connecteur Facebook"; -$a->strings["Re-authenticate [This is necessary whenever your Facebook password is changed.]"] = "Se ré-authentifier [nécessaire chaque fois que vous changez votre mot de passe Facebook.]"; -$a->strings["Post to Facebook by default"] = "Poster sur Facebook par défaut"; -$a->strings["Link all your Facebook friends and conversations on this website"] = "Lier tous vos amis et conversations Facebook sur ce site"; -$a->strings["Facebook conversations consist of your profile wall and your friend stream."] = "Les conversations Facebook se composent du mur du profil et des flux de vos amis."; -$a->strings["On this website, your Facebook friend stream is only visible to you."] = "Sur ce site, les flux de vos amis Facebook ne sont visibles que par vous."; -$a->strings["The following settings determine the privacy of your Facebook profile wall on this website."] = "Les réglages suivants déterminent le niveau de vie privée de votre mur Facebook depuis ce site."; -$a->strings["On this website your Facebook profile wall conversations will only be visible to you"] = "Sur ce site, les conversations de votre mur Facebook ne sont visibles que par vous."; -$a->strings["Do not import your Facebook profile wall conversations"] = "Ne pas importer les conversations de votre mur Facebook."; -$a->strings["If you choose to link conversations and leave both of these boxes unchecked, your Facebook profile wall will be merged with your profile wall on this website and your privacy settings on this website will be used to determine who may see the conversations."] = "Si vous choisissez de lier les conversations et de laisser ces deux cases non-cochées, votre mur Facebook sera fusionné avec votre mur de profil (sur ce site). Vos réglages (locaux) de vie privée serviront à en déterminer la visibilité."; -$a->strings["Facebook"] = "Facebook"; -$a->strings["Facebook Connector Settings"] = "Réglages du connecteur Facebook"; -$a->strings["Post to Facebook"] = "Poster sur Facebook"; -$a->strings["Post to Facebook cancelled because of multi-network access permission conflict."] = "Publication sur Facebook annulée pour cause de conflit de permissions inter-réseaux."; -$a->strings["Image: "] = "Image: "; -$a->strings["View on Friendika"] = "Voir sur Friendica"; -$a->strings["Facebook post failed. Queued for retry."] = "Publication sur Facebook échouée. En attente pour re-tentative."; -$a->strings["Generate new key"] = "Générer une nouvelle clé"; -$a->strings["Widgets key"] = "Clé des widgets"; -$a->strings["Widgets available"] = "Widgets disponibles"; -$a->strings["Connect on Friendika!"] = "Se connecter à Friendica!"; -$a->strings["%d person likes this"] = array( - 0 => "%d personne aime ça", - 1 => "%d personnes aiment ça", -); -$a->strings["%d person doesn't like this"] = array( - 0 => "%d personne n'aime pas ça", - 1 => "%d personnes n'aiment pas ça", -); -$a->strings["Report Bug"] = "Signaler un bug"; -$a->strings["\"Not Safe For Work\" Settings"] = "Réglages de \"Not Safe For Work\""; -$a->strings["Comma separated words to treat as NSFW"] = "Liste de mots à considérer comme NSFW. Séparés par des virgules."; -$a->strings["NSFW Settings saved."] = "Réglages NSFW sauvegardés."; -$a->strings["%s - Click to open/close"] = "%s - cliquer pour ouvrir/fermer"; -$a->strings["OpenID"] = "OpenID"; -$a->strings["Last users"] = "Derniers utilisateurs"; -$a->strings["Most active users"] = "Utilisateurs les plus actifs"; -$a->strings["Last photos"] = "Dernières photos"; -$a->strings["Last likes"] = "Dernièrement aimé"; -$a->strings["event"] = "évènement"; -$a->strings[" - Member since: %s"] = " - Membre depuis: %s"; $a->strings["Randplace Settings"] = "Réglages de Randplace"; $a->strings["Enable Randplace Plugin"] = "Activer l'extension Randplace"; -$a->strings["This website is tracked using the Piwik analytics tool."] = "Ce site collecte ses statistiques grâce à Piwik."; -$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)."] = "Si vous ne voulez pas que vos visites soient collectées par ce biais, vous pouvez activer un cookie qui empêchera Piwik de tenir compte de vos visites ultérieures (opt-out)."; -$a->strings["Piwik Base URL"] = "URL de base de Piwik"; -$a->strings["Site ID"] = "ID du site"; -$a->strings["Show opt-out cookie link?"] = "Montrer le lien d'opt-out?"; +$a->strings["Post to Dreamwidth"] = "Poster vers Dreamwidth"; +$a->strings["Dreamwidth Post Settings"] = "Réglages Dreamwidth"; +$a->strings["Enable dreamwidth Post Plugin"] = "Activer \"Poster vers Dreamwidth\""; +$a->strings["dreamwidth username"] = "Nom d'utilisateur Dreamwidth"; +$a->strings["dreamwidth password"] = "Mot de passe"; +$a->strings["Post to dreamwidth by default"] = "Poster vers Dreamwidth par défaut"; +$a->strings["Post to Drupal"] = "Poster vers Drupal"; +$a->strings["Drupal Post Settings"] = "Réglages Drupal"; +$a->strings["Enable Drupal Post Plugin"] = "Activer \"Poster vers Drupal\""; +$a->strings["Drupal username"] = "Nom d'utilisateur Drupal"; +$a->strings["Drupal password"] = "Mot de passe Drupal"; +$a->strings["Post Type - article,page,or blog"] = "Type de publication - article, page ou blog"; +$a->strings["Drupal site URL"] = "URL du site Drupal"; +$a->strings["Drupal site uses clean URLS"] = "Ce site utilise des URLs propres"; +$a->strings["Post to Drupal by default"] = "Poster vers Drupal par défaut"; +$a->strings["Post from Friendica"] = "Publier depuis Friendica"; +$a->strings["Startpage Settings"] = "Paramètres de la page d'accueil"; +$a->strings["Home page to load after login - leave blank for profile wall"] = "Page d'accueil à charger après authentification - laisser ce champ vide pour charger votre mur"; +$a->strings["Examples: "network" or "notifications/system""] = "Exemples : "network" ou "notifications/system""; +$a->strings["Geonames settings updated."] = "Réglages Geonames sauvés."; +$a->strings["Geonames Settings"] = "Réglages Geonames"; +$a->strings["Enable Geonames Plugin"] = "Activer Geonames"; +$a->strings["Your account on %s will expire in a few days."] = "Votre compte chez %s va expirer dans quelques jours."; +$a->strings["Your Friendica account is about to expire."] = "Votre compte sur Friendica est sur le point d'expirer."; +$a->strings["Hi %1\$s,\n\nYour account on %2\$s will expire in less than five days. You may keep your account by logging in at least once every 30 days"] = "Bonjour %1\$s,\n\nVotre compte sur %2\$s expirera dans moins de cinq jours. Vous pouvez conserver ce compte en vous y connectant au moins une fois par mois."; $a->strings["Upload a file"] = "Téléverser un fichier"; $a->strings["Drop files here to upload"] = "Déposer des fichiers ici pour les téléverser"; $a->strings["Failed"] = "Échec"; @@ -938,6 +1384,151 @@ $a->strings["No files were uploaded."] = "Aucun fichier n'a été téléversé." $a->strings["Uploaded file is empty"] = "Le fichier téléversé est vide"; $a->strings["File has an invalid extension, it should be one of "] = "Le fichier a une extension invalide, elle devrait être parmi "; $a->strings["Upload was cancelled, or server error encountered"] = "Téléversement annulé, ou erreur de serveur"; +$a->strings["OEmbed settings updated"] = "Réglage OEmbed mis-à-jour"; +$a->strings["Use OEmbed for YouTube videos"] = "Utiliser OEmbed pour les vidéos Youtube"; +$a->strings["URL to embed:"] = "URL à incorporer:"; +$a->strings["show/hide"] = "Montrer/cacher"; +$a->strings["No forum subscriptions"] = "Pas d'abonnement au forum"; +$a->strings["Forumlist settings updated."] = "Paramètres de la liste des forums mis à jour."; +$a->strings["Forumlist Settings"] = "Paramètres de la liste des forums"; +$a->strings["Randomise Forumlist/Forum list"] = ""; +$a->strings["Show forumlists/forums on profile forumlist"] = ""; +$a->strings["Impressum"] = "Impressum"; +$a->strings["Site Owner"] = "Propriétaire du site"; +$a->strings["Email Address"] = "Adresse courriel"; +$a->strings["Postal Address"] = "Adresse postale"; +$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."] = "L'extension \"Impressum\" (ou ours) n'est pas configuré!
    Merci d'ajouter au moins la variable owner à votre fichier de configuration. Pour les autres variables, reportez-vous au fichier README accompagnant l'extension."; +$a->strings["The page operators name."] = "Le nom de l'administrateur de la page."; +$a->strings["Site Owners Profile"] = "Profil des propriétaires du site"; +$a->strings["Profile address of the operator."] = "L'adresse de profil de l'administrateur."; +$a->strings["How to contact the operator via snail mail. You can use BBCode here."] = "Comment contacter l'administrateur par courrier postal. Vous pouvez utiliser du BBCode."; +$a->strings["Notes"] = "Notes"; +$a->strings["Additional notes that are displayed beneath the contact information. You can use BBCode here."] = "Notes additionnelles à afficher sous les informations de contact. Vous pouvez utiliser du BBCode."; +$a->strings["How to contact the operator via email. (will be displayed obfuscated)"] = "Comment contacter l'administrateur par courriel. (sera camouflée)"; +$a->strings["Footer note"] = "Note de bas de page"; +$a->strings["Text for the footer. You can use BBCode here."] = "Texte du pied de page. Vous pouvez utiliser du BBCode."; +$a->strings["Report Bug"] = "Signaler un bug"; +$a->strings["No Timeline settings updated."] = "Pas de mise à jour de paramètres du calendrier."; +$a->strings["No Timeline Settings"] = "Pas de paramètres de calendrier"; +$a->strings["Disable Archive selector on profile wall"] = "Désactiver le sélecteur d'archives sur le mur"; +$a->strings["\"Blockem\" Settings"] = "Réglages de Blockem"; +$a->strings["Comma separated profile URLS to block"] = "Liste d'URLS de profils à bloquer, séparés par des virgules"; +$a->strings["BLOCKEM Settings saved."] = "Réglages Blockem sauvés."; +$a->strings["Blocked %s - Click to open/close"] = "Bloqué %s - Cliquez pour ouvrir/fermer"; +$a->strings["Unblock Author"] = "Débloquer l'auteur"; +$a->strings["Block Author"] = "Bloquer l'auteur"; +$a->strings["blockem settings updated"] = "Réglages blockem sauvés"; +$a->strings[":-)"] = ":-)"; +$a->strings[":-("] = ":-("; +$a->strings["lol"] = "mdr"; +$a->strings["Quick Comment Settings"] = "Réglages de Quick Comment"; +$a->strings["Quick comments are found near comment boxes, sometimes hidden. Click them to provide simple replies."] = "Les commentaires rapides peuvent être trouvés à proximité des boîtes de commentaire, parfois cachés. Cliquez dessus pour fournir des réponses simples et lapidaires."; +$a->strings["Enter quick comments, one per line"] = "Entrez les réponses rapides, une par ligne"; +$a->strings["Quick Comment settings saved."] = "Réglages de Quick Comment sauvés."; +$a->strings["Tile Server URL"] = "URL du serveur de tuiles"; +$a->strings["A list of public tile servers"] = "Une liste de serveurs de tuiles publics"; +$a->strings["Default zoom"] = "Zoom par défaut"; +$a->strings["The default zoom level. (1:world, 18:highest)"] = "Le niveau de zoom affiché par défaut. (1: monde entier, 18: détail maximum)"; +$a->strings["Editplain settings updated."] = "Réglages editplain sauvés."; +$a->strings["Group Text"] = ""; +$a->strings["Use a text only (non-image) group selector in the \"group edit\" menu"] = ""; +$a->strings["Could NOT install Libravatar successfully.
    It requires PHP >= 5.3"] = "Libravatar n'a PAS pu être installé.
    Il nécessite PHP >= 5.3"; +$a->strings["generic profile image"] = "image de profil générique"; +$a->strings["random geometric pattern"] = "motif géométrique aléatoire"; +$a->strings["monster face"] = "monstre"; +$a->strings["computer generated face"] = "généré par ordinateur"; +$a->strings["retro arcade style face"] = "vieux jeu d'arcade"; +$a->strings["Your PHP version %s is lower than the required PHP >= 5.3."] = "La version de PHP doit être >= 5.3 ; la votre, %s, est antérieure. "; +$a->strings["This addon is not functional on your server."] = "Cette extension ne fonctionne pas sur votre serveur."; +$a->strings["Information"] = "Information"; +$a->strings["Gravatar addon is installed. Please disable the Gravatar addon.
    The Libravatar addon will fall back to Gravatar if nothing was found at Libravatar."] = "L'extension Gravatar est installée ; veuillez la désactiver.
    L'extension Libravatar sera remplacée par Gravatar si rien n'a été trouvé."; +$a->strings["Default avatar image"] = "Avatar par défaut"; +$a->strings["Select default avatar image if none was found. See README"] = "Sélectionner une image d'avatar par défaut si aucune n'a été trouvée. Voir le fichier README"; +$a->strings["Libravatar settings updated."] = "Paramètres de Libravatar mis à jour."; +$a->strings["Post to libertree"] = "Publier sur libertree"; +$a->strings["libertree Post Settings"] = "Réglages des messages sur libertree"; +$a->strings["Enable Libertree Post Plugin"] = "Activer le plugin de publication sur libertree"; +$a->strings["Libertree API token"] = "Clé de l'API libertree"; +$a->strings["Libertree site URL"] = "URL du site libertree"; +$a->strings["Post to Libertree by default"] = "Publier sur libertree par défaut"; +$a->strings["Altpager settings updated."] = "Paramètres d'Altpager mis à jour."; +$a->strings["Alternate Pagination Setting"] = "Paramètres de numérotation des pages"; +$a->strings["Use links to \"newer\" and \"older\" pages in place of page numbers?"] = "Utiliser des liens vers \"plus récents\" et \"plus anciens\" au lieu de numéros de pages ?"; +$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."] = "L'extension MathJax affiche les formules mathématiques écrites suivant la syntaxe LaTeX lorsqu'elles sont encadrés par les $$ habituels, ou dans un un bloc eqnarray. Ceci sur le mur, le Réseau et dans les messages privés."; +$a->strings["Use the MathJax renderer"] = "Utiliser le rendu MathJax"; +$a->strings["MathJax Base URL"] = "URL de base de MathJax"; +$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."] = "L'URL du fichier Javascript qui doit être inclus pour utiliser MathJax. Ce peut être celle du CDN MathJax, ou bien de toute autre installation de MathJax."; +$a->strings["Editplain Settings"] = "Réglages de editplain"; +$a->strings["Disable richtext status editor"] = "Désactiver l'édition \"riche\""; +$a->strings["Libravatar addon is installed, too. Please disable Libravatar addon or this Gravatar addon.
    The Libravatar addon will fall back to Gravatar if nothing was found at Libravatar."] = "L'extension Libravatar est également installée. Veuillez désactiver celle-ci ou l'extension Gravatar.
    L'extension Libravatar sera remplacée par Gravatar si rien n'a été trouvé."; +$a->strings["Select default avatar image if none was found at Gravatar. See README"] = "Choisissez l'image de l'avatar par défaut si aucun n'est trouvé via Gravatar. Voir README"; +$a->strings["Rating of images"] = "Classe des avatars"; +$a->strings["Select the appropriate avatar rating for your site. See README"] = "Choisissez la classe des avatars appropriée pour votre site. Voir README"; +$a->strings["Gravatar settings updated."] = "Réglages Gravatar sauvés."; +$a->strings["Your Friendica test account is about to expire."] = "Votre compte de test Friendica est sur le point d'expirer."; +$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."] = "Bonjour %1\$s,\n\nVotre compte de test sur %2\$s va expirer dans moins de cinq jours. Nous espérons que vous avez apprécié cette période d'essais, et que vous profiterez de l'occasion pour vous créer un compte permanent sur un serveur Friendica de votre choix. Une liste des serveurs Friendica ouverts au public peut être consultée sur http://dir.friendica.com/siteinfo - et pour plus d'information sur la meilleure manière de monter votre propre service Friendica, vous pouvez aller directement sur le site du projet http://friendica.com."; +$a->strings["\"pageheader\" Settings"] = "Réglages de pageheader"; +$a->strings["pageheader Settings saved."] = "Réglages pageheader sauvés."; +$a->strings["Post to Insanejournal"] = "Publier vers InsaneJournal"; +$a->strings["InsaneJournal Post Settings"] = "Réglages InsaneJournal"; +$a->strings["Enable InsaneJournal Post Plugin"] = "Activer le connecteur InsaneJournal"; +$a->strings["InsaneJournal username"] = "Utilisateur InsaneJournal"; +$a->strings["InsaneJournal password"] = "Mot de passe InsaneJournal"; +$a->strings["Post to InsaneJournal by default"] = "Publier sur InsaneJournal par défaut"; +$a->strings["Jappix Mini addon settings"] = "Jappix Mini"; +$a->strings["Activate addon"] = "Activer"; +$a->strings["Do not insert the Jappixmini Chat-Widget into the webinterface"] = "Ne pas insérer le widget JappixMini dans l'interface web"; +$a->strings["Jabber username"] = "Utilisateur Jabber"; +$a->strings["Jabber server"] = "Serveur Jabber"; +$a->strings["Jabber BOSH host"] = "Hôte BOSH (proxy) Jabber"; +$a->strings["Jabber password"] = "Mot de passe Jabber"; +$a->strings["Encrypt Jabber password with Friendica password (recommended)"] = "Chiffrer le mot de passe Jabber avec le mot de passe Friendica (recommandé)"; +$a->strings["Friendica password"] = "Mot de passe Friendica"; +$a->strings["Approve subscription requests from Friendica contacts automatically"] = "Approuver les contacts Friendica automatiquement"; +$a->strings["Subscribe to Friendica contacts automatically"] = "S'inscrire aux contacts Friendica automatiquement"; +$a->strings["Purge internal list of jabber addresses of contacts"] = "Purger la liste interne d'adresses Jabber"; +$a->strings["Add contact"] = "Ajouter un contact"; +$a->strings["View Source"] = "Voir la source"; +$a->strings["Post to StatusNet"] = "Poster sur StatusNet"; +$a->strings["Please contact your site administrator.
    The provided API URL is not valid."] = "Merci de contacter l'administrateur du site.
    L'URL d'API fournie est invalide."; +$a->strings["We could not contact the StatusNet API with the Path you entered."] = "Nous n'avons pas pu contacter l'API StatusNet avec le chemin saisi."; +$a->strings["StatusNet settings updated."] = "Réglages StatusNet mis-à-jour."; +$a->strings["StatusNet Posting Settings"] = "Réglages du connecteur StatusNet"; +$a->strings["Globally Available StatusNet OAuthKeys"] = "Clés OAuth StatusNet universelles"; +$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)."] = "Ce sont des paires de clés OAuth préconfigurées pour certains serveurs StatusNet courants. Si vous utilisez l'un d'entre eux, merci de vous servir de ces clés. Autrement, vous pouvez vous connecter à n'importer quelle autre instance de StatusNet (voir ci-dessous)."; +$a->strings["Provide your own OAuth Credentials"] = "Fournissez vos propres paramètres OAuth"; +$a->strings["No consumer key pair for StatusNet found. Register your Friendica Account as an desktop client on your StatusNet account, copy the consumer key pair here and enter the API base root.
    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."] = "Pas de paire de clé trouvée pour StatusNet. Enregistrez votre compte Friendica comme un client \"desktop\" sur votre compte StatusNet, copiez la paire de clé ici et entrez la racine de l'API.
    Avant d'enregistrer votre propre paire de clé, assurez-vous auprès de l'administrateur qu'il n'y a pas déjà une paire de clé pour cette instance de Friendica chez votre fournisseur StatusNet préféré."; +$a->strings["OAuth Consumer Key"] = "Clé de consommateur OAuth"; +$a->strings["OAuth Consumer Secret"] = "Secret d'utilisateur OAuth"; +$a->strings["Base API Path (remember the trailing /)"] = "Chemin de base de l'API (n'oubliez pas le / final)"; +$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."] = "Pour vous connecter à votre compte StatusNet, cliquez sur le bouton ci-dessous pour obtenir un code de sécurité de StatusNet, que vous aurez à coller dans la boîte ci-dessous. Ensuite, validez le formulaire. Seuls vos articles <strong>publics</strong> seront postés sur StatusNet."; +$a->strings["Log in with StatusNet"] = "Se connecter à StatusNet"; +$a->strings["Copy the security code from StatusNet here"] = "Coller le code de sécurité de StatusNet ici"; +$a->strings["Cancel Connection Process"] = "Annuler le processus de connexion"; +$a->strings["Current StatusNet API is"] = "L'API StatusNet courante est"; +$a->strings["Cancel StatusNet Connection"] = "Annuler la connexion à StatusNet"; +$a->strings["Currently connected to: "] = "Actuellement connecté à: "; +$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."] = "En cas d'activation, toutes vos notices publiques seront transmises au compte StatusNet associé. Vous pourrez choisir de le faire par défaut (ici), ou bien pour chaque notice séparément lors de sa rédaction."; +$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."] = "Note: Du fait de vos réglages de vie privée (Cacher les détails de votre profil des visiteurs inconnus?), le lien potentiellement inclus dans les messages publics relayés vers StatusNet conduira les visiteurs vers une page blanche les informant que leur accès à votre profil a été restreint."; +$a->strings["Allow posting to StatusNet"] = "Autoriser la publication sur StatusNet"; +$a->strings["Send public postings to StatusNet by default"] = "Par défaut, envoyer les notices publiques à StatusNet"; +$a->strings["Send linked #-tags and @-names to StatusNet"] = "Envoyer les liens vers les #-tags et les @-noms sur StatusNet"; +$a->strings["Clear OAuth configuration"] = "Effacer la configuration OAuth"; +$a->strings["API URL"] = "URL de l'API"; +$a->strings["Infinite Improbability Drive"] = "Générateur d'improbabilté infinie"; +$a->strings["Post to Tumblr"] = "Publier sur Tumblr"; +$a->strings["Tumblr Post Settings"] = "Réglages de Tumblr"; +$a->strings["Enable Tumblr Post Plugin"] = "Activer l'extension Tumblr"; +$a->strings["Tumblr login"] = "Login Tumblr"; +$a->strings["Tumblr password"] = "Mot de passe Tumblr"; +$a->strings["Post to Tumblr by default"] = "Publier sur Tumblr par défaut"; +$a->strings["Numfriends settings updated."] = "Réglages numfriends sauvés."; +$a->strings["Numfriends Settings"] = "Réglages de numfriends"; +$a->strings["Gnot settings updated."] = "Réglages Gnot sauvés."; +$a->strings["Gnot Settings"] = "Réglages Gnot"; +$a->strings["Allows threading of email comment notifications on Gmail and anonymising the subject line."] = "Autorise l'arborescence des notifications de commentaires sur GMail, et rend la ligne 'Sujet' anonyme."; +$a->strings["Enable this plugin/addon?"] = "Activer cette extension?"; +$a->strings["[Friendica:Notify] Comment to conversation #%d"] = "[Friendica:Notification] Commentaire sur la conversation #%d"; $a->strings["Post to Wordpress"] = "Poster sur WordPress"; $a->strings["WordPress Post Settings"] = "Réglages WordPress"; $a->strings["Enable WordPress Post Plugin"] = "Activer l'extension WordPress"; @@ -945,7 +1536,115 @@ $a->strings["WordPress username"] = "Utilisateur WordPress"; $a->strings["WordPress password"] = "Mot de passe WordPress"; $a->strings["WordPress API URL"] = "URL de l'API WordPress"; $a->strings["Post to WordPress by default"] = "Publier sur WordPress par défaut"; -$a->strings["(no subject)"] = "(sans titre)"; +$a->strings["Provide a backlink to the Friendica post"] = "Fournir un rétrolien vers le message sur Friendica"; +$a->strings["Read the original post and comment stream on Friendica"] = "Lire le message d'origine et le flux des commentaires sur Friendica"; +$a->strings["\"Show more\" Settings"] = "Réglages de \"Show more\""; +$a->strings["Enable Show More"] = "Activer \"Show more\""; +$a->strings["Cutting posts after how much characters"] = "Coupure après combien de caractères"; +$a->strings["Show More Settings saved."] = "Réglages \"Show more\" sauvés."; +$a->strings["This website is tracked using the Piwik analytics tool."] = "Ce site collecte ses statistiques grâce à Piwik."; +$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)."] = "Si vous ne voulez pas que vos visites soient collectées par ce biais, vous pouvez activer un cookie qui empêchera Piwik de tenir compte de vos visites ultérieures (opt-out)."; +$a->strings["Piwik Base URL"] = "URL de base de Piwik"; +$a->strings["Absolute path to your Piwik installation. (without protocol (http/s), with trailing slash)"] = "Chemin absolu vers votre installation Piwik. (sans protocole (http/s), avec un / terminal)"; +$a->strings["Site ID"] = "ID du site"; +$a->strings["Show opt-out cookie link?"] = "Montrer le lien d'opt-out?"; +$a->strings["Asynchronous tracking"] = "Suivi asynchrone"; +$a->strings["Post to Twitter"] = "Poster sur Twitter"; +$a->strings["Twitter settings updated."] = "Réglages de Twitter mis-à-jour."; +$a->strings["Twitter Posting Settings"] = "Réglages du connecteur Twitter"; +$a->strings["No consumer key pair for Twitter found. Please contact your site administrator."] = "Pas de paire de clés pour Twitter. Merci de contacter l'administrateur du site."; +$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."] = "Sur cette instance de Friendica, le connecteur Twitter a été activé, mais vous n'avez pas encore connecté votre compte local à votre compte Twitter. Pour ce faire, cliquer sur le bouton ci-dessous. Vous obtiendrez alors un 'PIN' de Twitter, que vous devrez copier dans le champ ci-dessous, puis soumettre le formulaire. Seuls vos messages publics seront transmis à Twitter."; +$a->strings["Log in with Twitter"] = "Se connecter à Twitter"; +$a->strings["Copy the PIN from Twitter here"] = "Copier le PIN de Twitter ici"; +$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."] = "En cas d'activation, toutes vos notices publiques seront transmises au compte Twitter associé. Vous pourrez choisir de le faire par défaut (ici), ou bien pour chaque notice séparément lors de sa rédaction."; +$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."] = "Note: Du fait de vos réglages de vie privée (Cacher les détails de votre profil des visiteurs inconnus?), le lien potentiellement inclus dans les messages publics relayés vers Twitter conduira les visiteurs vers une page blanche les informant que leur accès à votre profil a été restreint."; +$a->strings["Allow posting to Twitter"] = "Autoriser la publication sur Twitter"; +$a->strings["Send public postings to Twitter by default"] = "Envoyer les éléments publics sur Twitter par défaut"; +$a->strings["Send linked #-tags and @-names to Twitter"] = "Envoyer les liens vers les #-tags et les @-noms sur Twitter"; +$a->strings["Consumer key"] = "Clé utilisateur"; +$a->strings["Consumer secret"] = "Secret utilisateur"; +$a->strings["IRC Settings"] = "Réglages IRC"; +$a->strings["Channel(s) to auto connect (comma separated)"] = "Canaux à rejoindre automatiquement (séparés par des virgules)"; +$a->strings["Popular Channels (comma separated)"] = "Canaux populaires (séparés par des virgules)"; +$a->strings["IRC settings saved."] = "Réglages IRC sauvés."; +$a->strings["IRC Chatroom"] = "Salon IRC"; +$a->strings["Popular Channels"] = "Canaux populaires"; +$a->strings["Fromapp settings updated."] = "Réglages FromApp mis-à-jour"; +$a->strings["FromApp Settings"] = "FromApp"; +$a->strings["The application name you would like to show your posts originating from."] = "Le nom d'application que vous souhaiteriez que vos publications affichent comme source."; +$a->strings["Use this application name even if another application was used."] = "Afficher ce nom d'application même si une autre a été utilisée."; +$a->strings["Post to blogger"] = "Poster vers Blogger"; +$a->strings["Blogger Post Settings"] = "Réglages Blogger"; +$a->strings["Enable Blogger Post Plugin"] = "Activer le connecteur Blogger"; +$a->strings["Blogger username"] = "Utilisateur Blogger"; +$a->strings["Blogger password"] = "Mot de passe Blogger"; +$a->strings["Blogger API URL"] = "URL de l'API Blogger"; +$a->strings["Post to Blogger by default"] = "Poster vers Blogger par défaut"; +$a->strings["Post to Posterous"] = "Envoyer à Posterous"; +$a->strings["Posterous Post Settings"] = "Réglages de l'envoi à Posterous"; +$a->strings["Enable Posterous Post Plugin"] = "Activer l'envoi à Posterous"; +$a->strings["Posterous login"] = "Login Posterous"; +$a->strings["Posterous password"] = "Mot de passe"; +$a->strings["Posterous site ID"] = "ID du site Posterous"; +$a->strings["Posterous API token"] = "Clé d'API Posterous"; +$a->strings["Post to Posterous by default"] = "Envoyer à Posterous par défaut"; +$a->strings["Theme settings"] = "Réglages du thème graphique"; +$a->strings["Set resize level for images in posts and comments (width and height)"] = "Choisir une taille pour les images dans les publications et commentaires (largeur et hauteur)"; +$a->strings["Set font-size for posts and comments"] = "Réglez 'font-size' (taille de police) pour publications et commentaires"; +$a->strings["Set theme width"] = "Largeur du thème"; +$a->strings["Color scheme"] = "Palette de couleurs"; +$a->strings["Your posts and conversations"] = "Vos notices et conversations"; +$a->strings["Your profile page"] = "Votre page de profil"; +$a->strings["Your contacts"] = "Vos contacts"; +$a->strings["Your photos"] = "Vos photos"; +$a->strings["Your events"] = "Vos événements"; +$a->strings["Personal notes"] = "Notes personnelles"; +$a->strings["Your personal photos"] = "Vos photos personnelles"; +$a->strings["Community Pages"] = "Pages de Communauté"; +$a->strings["Community Profiles"] = "Profils communautaires"; +$a->strings["Last users"] = "Derniers utilisateurs"; +$a->strings["Last likes"] = "Dernièrement aimé"; +$a->strings["Last photos"] = "Dernières photos"; +$a->strings["Find Friends"] = "Trouver des amis"; +$a->strings["Local Directory"] = "Annuaire local"; +$a->strings["Similar Interests"] = "Intérêts similaires"; +$a->strings["Invite Friends"] = "Inviter des amis"; +$a->strings["Earth Layers"] = "Géolocalisation"; +$a->strings["Set zoomfactor for Earth Layers"] = "Régler le niveau de zoom pour la géolocalisation"; +$a->strings["Set longitude (X) for Earth Layers"] = "Régler la longitude (X) pour la géolocalisation"; +$a->strings["Set latitude (Y) for Earth Layers"] = "Régler la latitude (Y) pour la géolocalisation"; +$a->strings["Help or @NewHere ?"] = "Aide ou @NewHere?"; +$a->strings["Connect Services"] = "Connecter des services"; +$a->strings["Last Tweets"] = "Derniers tweets"; +$a->strings["Set twitter search term"] = "Rechercher un terme twitter"; +$a->strings["don't show"] = "cacher"; +$a->strings["show"] = "montrer"; +$a->strings["Show/hide boxes at right-hand column:"] = "Montrer/cacher les boîtes dans la colonne de droite :"; +$a->strings["Set line-height for posts and comments"] = "Réglez 'line-height' (hauteur de police) pour publications et commentaires"; +$a->strings["Set resolution for middle column"] = "Réglez la résolution de la colonne centrale"; +$a->strings["Set color scheme"] = "Choisir le schéma de couleurs"; +$a->strings["Set zoomfactor for Earth Layer"] = "Niveau de zoom"; +$a->strings["Last tweets"] = "Derniers tweets"; +$a->strings["Alignment"] = "Alignement"; +$a->strings["Left"] = "Gauche"; +$a->strings["Center"] = "Centre"; +$a->strings["Set colour scheme"] = "Choisir le schéma de couleurs"; +$a->strings["j F, Y"] = "j F, Y"; +$a->strings["j F"] = "j F"; +$a->strings["Birthday:"] = "Anniversaire:"; +$a->strings["Age:"] = "Age:"; +$a->strings["for %1\$d %2\$s"] = "depuis %1\$d %2\$s"; +$a->strings["Tags:"] = "Tags :"; +$a->strings["Religion:"] = "Religion:"; +$a->strings["Hobbies/Interests:"] = "Passe-temps/Centres d'intérêt:"; +$a->strings["Contact information and Social Networks:"] = "Coordonnées/Réseaux sociaux:"; +$a->strings["Musical interests:"] = "Goûts musicaux:"; +$a->strings["Books, literature:"] = "Lectures:"; +$a->strings["Television:"] = "Télévision:"; +$a->strings["Film/dance/culture/entertainment:"] = "Cinéma/Danse/Culture/Divertissement:"; +$a->strings["Love/Romance:"] = "Amour/Romance:"; +$a->strings["Work/employment:"] = "Activité professionnelle/Occupation:"; +$a->strings["School/education:"] = "Études/Formation:"; $a->strings["Unknown | Not categorised"] = "Inconnu | Non-classé"; $a->strings["Block immediately"] = "Bloquer immédiatement"; $a->strings["Shady, spammer, self-marketer"] = "Douteux, spammeur, accro à l'auto-promotion"; @@ -955,12 +1654,12 @@ $a->strings["Reputable, has my trust"] = "Réputé, a toute ma confiance"; $a->strings["Frequently"] = "Fréquemment"; $a->strings["Hourly"] = "Toutes les heures"; $a->strings["Twice daily"] = "Deux fois par jour"; -$a->strings["Daily"] = "Chaque jour"; -$a->strings["Weekly"] = "Chaque semaine"; -$a->strings["Monthly"] = "Chaque mois"; $a->strings["OStatus"] = "OStatus"; $a->strings["RSS/Atom"] = "RSS/Atom"; $a->strings["Zot!"] = "Zot!"; +$a->strings["LinkedIn"] = "LinkedIn"; +$a->strings["XMPP/IM"] = "XMPP/IM"; +$a->strings["MySpace"] = "MySpace"; $a->strings["Male"] = "Masculin"; $a->strings["Female"] = "Féminin"; $a->strings["Currently Male"] = "Actuellement masculin"; @@ -992,6 +1691,8 @@ $a->strings["Single"] = "Célibataire"; $a->strings["Lonely"] = "Esseulé"; $a->strings["Available"] = "Disponible"; $a->strings["Unavailable"] = "Indisponible"; +$a->strings["Has crush"] = "Attiré par quelqu'un"; +$a->strings["Infatuated"] = "Entiché"; $a->strings["Dating"] = "Dans une relation"; $a->strings["Unfaithful"] = "Infidèle"; $a->strings["Sex Addict"] = "Accro au sexe"; @@ -1000,83 +1701,70 @@ $a->strings["Friends/Benefits"] = "Amis par intérêt"; $a->strings["Casual"] = "Casual"; $a->strings["Engaged"] = "Fiancé"; $a->strings["Married"] = "Marié"; +$a->strings["Imaginarily married"] = "Se croit marié"; $a->strings["Partners"] = "Partenaire"; $a->strings["Cohabiting"] = "En cohabitation"; +$a->strings["Common law"] = "Marié \"de fait\"/\"sui juris\" (concubin)"; $a->strings["Happy"] = "Heureux"; -$a->strings["Not Looking"] = "Sans recherche"; +$a->strings["Not looking"] = "Pas intéressé"; $a->strings["Swinger"] = "Échangiste"; $a->strings["Betrayed"] = "Trahi(e)"; $a->strings["Separated"] = "Séparé"; $a->strings["Unstable"] = "Instable"; $a->strings["Divorced"] = "Divorcé"; +$a->strings["Imaginarily divorced"] = "Se croit divorcé"; $a->strings["Widowed"] = "Veuf/Veuve"; $a->strings["Uncertain"] = "Incertain"; -$a->strings["Complicated"] = "Compliqué"; +$a->strings["It's complicated"] = "C'est compliqué"; $a->strings["Don't care"] = "S'en désintéresse"; $a->strings["Ask me"] = "Me demander"; $a->strings["Starts:"] = "Débute:"; $a->strings["Finishes:"] = "Finit:"; -$a->strings["Visible to everybody"] = "Visible par tout le monde"; -$a->strings["show"] = "montrer"; -$a->strings["don't show"] = "ne pas montrer"; -$a->strings["Logged out."] = "Déconnecté."; -$a->strings["Image/photo"] = "Image/photo"; -$a->strings["From: "] = "De: "; -$a->strings["View status"] = "Voir le statut"; -$a->strings["View profile"] = "Voir le profil"; -$a->strings["View photos"] = "Voir les photos"; -$a->strings["View recent"] = "Voir nouveautés"; -$a->strings["Send PM"] = "Envoyer message privé"; -$a->strings["Miscellaneous"] = "Divers"; -$a->strings["year"] = "an"; -$a->strings["month"] = "mois"; -$a->strings["day"] = "jour"; -$a->strings["never"] = "jamais"; -$a->strings["less than a second ago"] = "il y a moins d'une seconde"; -$a->strings["years"] = "ans"; -$a->strings["months"] = "mois"; -$a->strings["week"] = "semaine"; -$a->strings["weeks"] = "semaines"; -$a->strings["days"] = "jours"; -$a->strings["hour"] = "heure"; -$a->strings["hours"] = "heures"; -$a->strings["minute"] = "minute"; -$a->strings["minutes"] = "minutes"; -$a->strings["second"] = "seconde"; -$a->strings["seconds"] = "secondes"; -$a->strings[" ago"] = " auparavant"; -$a->strings["Birthday:"] = "Anniversaire:"; -$a->strings["j F, Y"] = "j F, Y"; -$a->strings["j F"] = "j F"; -$a->strings["Age:"] = "Age:"; -$a->strings["Religion:"] = "Religion:"; -$a->strings["About:"] = "À propos:"; -$a->strings["Hobbies/Interests:"] = "Passe-temps/Centres d'intérêt:"; -$a->strings["Contact information and Social Networks:"] = "Coordonées/Réseaux sociaux:"; -$a->strings["Musical interests:"] = "Goûts musicaux:"; -$a->strings["Books, literature:"] = "Lectures:"; -$a->strings["Television:"] = "Télévision:"; -$a->strings["Film/dance/culture/entertainment:"] = "Cinéma/Danse/Culture/Divertissement:"; -$a->strings["Love/Romance:"] = "Amour/Romance:"; -$a->strings["Work/employment:"] = "Activité professionnelle/Occupation:"; -$a->strings["School/education:"] = "Études/Formation:"; +$a->strings["(no subject)"] = "(sans titre)"; +$a->strings[" on Last.fm"] = "sur Last.fm"; $a->strings["prev"] = "précédent"; $a->strings["first"] = "premier"; $a->strings["last"] = "dernier"; $a->strings["next"] = "suivant"; +$a->strings["newer"] = "Plus récent"; +$a->strings["older"] = "Plus ancient"; $a->strings["No contacts"] = "Aucun contact"; $a->strings["%d Contact"] = array( 0 => "%d contact", 1 => "%d contacts", ); -$a->strings["Search"] = "Recherche"; -$a->strings["Monday"] = "Lundi"; -$a->strings["Tuesday"] = "Mardi"; -$a->strings["Wednesday"] = "Mercredi"; -$a->strings["Thursday"] = "Jeudi"; -$a->strings["Friday"] = "Vendredi"; -$a->strings["Saturday"] = "Samedi"; -$a->strings["Sunday"] = "Dimanche"; +$a->strings["poke"] = ""; +$a->strings["poked"] = ""; +$a->strings["ping"] = ""; +$a->strings["pinged"] = ""; +$a->strings["prod"] = ""; +$a->strings["prodded"] = ""; +$a->strings["slap"] = ""; +$a->strings["slapped"] = ""; +$a->strings["finger"] = ""; +$a->strings["fingered"] = ""; +$a->strings["rebuff"] = ""; +$a->strings["rebuffed"] = ""; +$a->strings["happy"] = "heureuse"; +$a->strings["sad"] = "triste"; +$a->strings["mellow"] = "suave"; +$a->strings["tired"] = "fatiguée"; +$a->strings["perky"] = "guillerette"; +$a->strings["angry"] = "colérique"; +$a->strings["stupified"] = "stupéfaite"; +$a->strings["puzzled"] = "perplexe"; +$a->strings["interested"] = "intéressée"; +$a->strings["bitter"] = "amère"; +$a->strings["cheerful"] = "entraînante"; +$a->strings["alive"] = "vivante"; +$a->strings["annoyed"] = "ennuyée"; +$a->strings["anxious"] = "anxieuse"; +$a->strings["cranky"] = "excentrique"; +$a->strings["disturbed"] = "dérangée"; +$a->strings["frustrated"] = "frustrée"; +$a->strings["motivated"] = "motivée"; +$a->strings["relaxed"] = "détendue"; +$a->strings["surprised"] = "surprise"; $a->strings["January"] = "Janvier"; $a->strings["February"] = "Février"; $a->strings["March"] = "Mars"; @@ -1090,15 +1778,27 @@ $a->strings["October"] = "Octobre"; $a->strings["November"] = "Novembre"; $a->strings["December"] = "Décembre"; $a->strings["bytes"] = "octets"; -$a->strings["Select an alternate language"] = "Choisir une langue alternative"; +$a->strings["Click to open/close"] = "Cliquer pour ouvrir/fermer"; $a->strings["default"] = "défaut"; +$a->strings["Select an alternate language"] = "Choisir une langue alternative"; +$a->strings["activity"] = "activité"; +$a->strings["post"] = "publication"; +$a->strings["Item filed"] = "Élément classé"; +$a->strings["Sharing notification from Diaspora network"] = "Notification de partage du réseau Diaspora"; +$a->strings["Attachments:"] = "Pièces jointes : "; +$a->strings["view full size"] = "voir en pleine taille"; +$a->strings["Embedded content"] = "Contenu incorporé"; +$a->strings["Embedding disabled"] = "Incorporation désactivée"; +$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."] = "Un groupe supprimé a été recréé. Les permissions existantes pourraient s'appliquer à ce groupe et aux futurs membres. Si ce n'est pas le comportement attendu, merci de re-créer un autre groupe sous un autre nom."; +$a->strings["Default privacy group for new contacts"] = "Paramètres de confidentialité par défaut pour les nouveaux contacts"; +$a->strings["Everybody"] = "Tout le monde"; +$a->strings["edit"] = "éditer"; +$a->strings["Edit group"] = "Editer groupe"; +$a->strings["Create a new group"] = "Créer un nouveau groupe"; +$a->strings["Contacts not in any group"] = "Contacts n'appartenant à aucun groupe"; +$a->strings["Logout"] = "Se déconnecter"; $a->strings["End this session"] = "Mettre fin à cette session"; -$a->strings["Your posts and conversations"] = "Vos notices et conversations"; -$a->strings["Your profile page"] = "Votre page de profil"; -$a->strings["Your photos"] = "Vos photos"; -$a->strings["Your events"] = "Vos événements"; -$a->strings["Personal notes"] = "Notes personnelles"; -$a->strings["Your personal photos"] = "Vos photos personnelles"; +$a->strings["Status"] = "Statut"; $a->strings["Sign in"] = "Se connecter"; $a->strings["Home Page"] = "Page d'accueil"; $a->strings["Create an account"] = "Créer un compte"; @@ -1111,30 +1811,148 @@ $a->strings["Directory"] = "Annuaire"; $a->strings["People directory"] = "Annuaire des utilisateurs"; $a->strings["Conversations from your friends"] = "Conversations de vos amis"; $a->strings["Friend Requests"] = "Demande d'amitié"; +$a->strings["See all notifications"] = "Voir toute notification"; +$a->strings["Mark all system notifications seen"] = "Marquer toutes les notifications système comme 'vues'"; $a->strings["Private mail"] = "Messages privés"; +$a->strings["Inbox"] = "Messages entrants"; +$a->strings["Outbox"] = "Messages sortants"; $a->strings["Manage"] = "Gérer"; $a->strings["Manage other pages"] = "Gérer les autres pages"; +$a->strings["Profiles"] = "Profils"; +$a->strings["Manage/edit profiles"] = "Gérer/éditer les profils"; $a->strings["Manage/edit friends and contacts"] = "Gérer/éditer les amitiés et contacts"; -$a->strings["Admin"] = "Admin"; $a->strings["Site setup and configuration"] = "Démarrage et configuration du site"; $a->strings["Nothing new here"] = "Rien de neuf ici"; -$a->strings["Select"] = "Sélectionner"; -$a->strings["View %s's profile @ %s"] = "Voir le profil de %s @ %s"; -$a->strings["%s from %s"] = "%s de %s"; -$a->strings["View in context"] = "Voir dans le contexte"; -$a->strings["See all %d comments"] = "Voir les %d commentaires"; -$a->strings["like"] = "aime"; -$a->strings["dislike"] = "n'aime pas"; -$a->strings["Share this"] = "Partager ça"; -$a->strings["share"] = "partager"; -$a->strings["add star"] = "mett en avant"; -$a->strings["remove star"] = "ne plus mettre en avant"; -$a->strings["toggle star status"] = "mettre en avant"; -$a->strings["starred"] = "mis en avant"; -$a->strings["add tag"] = "ajouter un tag"; -$a->strings["to"] = "à"; -$a->strings["Wall-to-Wall"] = "Inter-mur"; -$a->strings["via Wall-To-Wall:"] = "en Inter-mur:"; +$a->strings["Add New Contact"] = "Ajouter un nouveau contact"; +$a->strings["Enter address or web location"] = "Entrez son adresse ou sa localisation web"; +$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Exemple: bob@example.com, http://example.com/barbara"; +$a->strings["%d invitation available"] = array( + 0 => "%d invitation disponible", + 1 => "%d invitations disponibles", +); +$a->strings["Find People"] = "Trouver des personnes"; +$a->strings["Enter name or interest"] = "Entrez un nom ou un centre d'intérêt"; +$a->strings["Connect/Follow"] = "Connecter/Suivre"; +$a->strings["Examples: Robert Morgenstein, Fishing"] = "Exemples: Robert Morgenstein, Pêche"; +$a->strings["Random Profile"] = "Profil au hasard"; +$a->strings["Networks"] = "Réseaux"; +$a->strings["All Networks"] = "Tous réseaux"; +$a->strings["Saved Folders"] = "Dossiers sauvegardés"; +$a->strings["Everything"] = "Tout"; +$a->strings["Categories"] = "Catégories"; +$a->strings["Logged out."] = "Déconnecté."; +$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Nous avons eu un souci avec l'OpenID que vous avez fourni. merci de vérifier l'orthographe correcte de ce dernier."; +$a->strings["The error message was:"] = "Le message d'erreur était :"; +$a->strings["Miscellaneous"] = "Divers"; +$a->strings["year"] = "an"; +$a->strings["month"] = "mois"; +$a->strings["day"] = "jour"; +$a->strings["never"] = "jamais"; +$a->strings["less than a second ago"] = "il y a moins d'une seconde"; +$a->strings["week"] = "semaine"; +$a->strings["hour"] = "heure"; +$a->strings["hours"] = "heures"; +$a->strings["minute"] = "minute"; +$a->strings["minutes"] = "minutes"; +$a->strings["second"] = "seconde"; +$a->strings["seconds"] = "secondes"; +$a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s auparavant"; +$a->strings["%s's birthday"] = "Anniversaire de %s's"; +$a->strings["Happy Birthday %s"] = "Joyeux anniversaire, %s !"; +$a->strings["From: "] = "De: "; +$a->strings["Image/photo"] = "Image/photo"; +$a->strings["$1 wrote:"] = "$1 a écrit:"; +$a->strings["Encrypted content"] = "Contenu chiffré"; +$a->strings["Cannot locate DNS info for database server '%s'"] = "Impossible de localiser les informations DNS pour le serveur de base de données '%s'"; +$a->strings["[no subject]"] = "[pas de sujet]"; +$a->strings["Visible to everybody"] = "Visible par tout le monde"; +$a->strings["Friendica Notification"] = "Notification Friendica"; +$a->strings["Thank You,"] = "Merci, "; +$a->strings["%s Administrator"] = "L'administrateur de %s"; +$a->strings["%s "] = "%s "; +$a->strings["[Friendica:Notify] New mail received at %s"] = "[Friendica:Notification] Nouveau courriel reçu sur %s"; +$a->strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s vous a envoyé un nouveau message privé sur %2\$s."; +$a->strings["%1\$s sent you %2\$s."] = "%1\$s vous a envoyé %2\$s."; +$a->strings["a private message"] = "un message privé"; +$a->strings["Please visit %s to view and/or reply to your private messages."] = "Merci de visiter %s pour voir vos messages privés et/ou y répondre."; +$a->strings["%1\$s commented on [url=%2\$s]a %3\$s[/url]"] = "%1\$s a commenté sur [url=%2\$s]un %3\$s[/url]"; +$a->strings["%1\$s commented on [url=%2\$s]%3\$s's %4\$s[/url]"] = "%1\$s a commenté sur [url=%2\$s]le %4\$s de %3\$s[/url]"; +$a->strings["%1\$s commented on [url=%2\$s]your %3\$s[/url]"] = "%1\$s commented on [url=%2\$s]your %3\$s[/url]"; +$a->strings["[Friendica:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Friendica:Notification] Commentaire de %2\$s sur la conversation #%1\$d"; +$a->strings["%s commented on an item/conversation you have been following."] = "%s a commenté un élément que vous suivez."; +$a->strings["Please visit %s to view and/or reply to the conversation."] = "Merci de visiter %s pour voir la conversation et/ou y répondre."; +$a->strings["[Friendica:Notify] %s posted to your profile wall"] = "[Friendica:Notification] %s a posté sur votre mur de profil"; +$a->strings["%1\$s posted to your profile wall at %2\$s"] = "%1\$s a publié sur votre mur à %2\$s"; +$a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = "%1\$s a posté sur [url=%2\$s]votre mur[/url]"; +$a->strings["[Friendica:Notify] %s tagged you"] = "[Friendica:Notification] %s vous a repéré"; +$a->strings["%1\$s tagged you at %2\$s"] = "%1\$s vous parle sur %2\$s"; +$a->strings["%1\$s [url=%2\$s]tagged you[/url]."] = "%1\$s [url=%2\$s]vous a taggé[/url]."; +$a->strings["[Friendica:Notify] %1\$s poked you"] = ""; +$a->strings["%1\$s poked you at %2\$s"] = ""; +$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = ""; +$a->strings["[Friendica:Notify] %s tagged your post"] = "[Friendica:Notification] %s a repéré votre publication"; +$a->strings["%1\$s tagged your post at %2\$s"] = "%1\$s a tagué votre contenu sur %2\$s"; +$a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = "%1\$s a tagué [url=%2\$s]votre contenu[/url]"; +$a->strings["[Friendica:Notify] Introduction received"] = "[Friendica:Notification] Introduction reçue"; +$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = "Vous avez reçu une introduction de '%1\$s' sur %2\$s"; +$a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = "Vous avez reçu [url=%1\$s]une introduction[/url] de %2\$s."; +$a->strings["You may visit their profile at %s"] = "Vous pouvez visiter son profil sur %s"; +$a->strings["Please visit %s to approve or reject the introduction."] = "Merci de visiter %s pour approuver ou rejeter l'introduction."; +$a->strings["[Friendica:Notify] Friend suggestion received"] = "[Friendica:Notification] Nouvelle suggestion d'amitié"; +$a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "Vous avez reçu une suggestion de '%1\$s' sur %2\$s"; +$a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from %3\$s."] = "Vous avez reçu [url=%1\$s]une suggestion[/url] de %3\$s pour %2\$s."; +$a->strings["Name:"] = "Nom :"; +$a->strings["Photo:"] = "Photo :"; +$a->strings["Please visit %s to approve or reject the suggestion."] = "Merci de visiter %s pour approuver ou rejeter la suggestion."; +$a->strings["Connect URL missing."] = "URL de connexion manquante."; +$a->strings["This site is not configured to allow communications with other networks."] = "Ce site n'est pas configuré pour dialoguer avec d'autres réseaux."; +$a->strings["No compatible communication protocols or feeds were discovered."] = "Aucun protocole de communication ni aucun flux n'a pu être découvert."; +$a->strings["The profile address specified does not provide adequate information."] = "L'adresse de profil indiquée ne fournit par les informations adéquates."; +$a->strings["An author or name was not found."] = "Aucun auteur ou nom d'auteur n'a pu être trouvé."; +$a->strings["No browser URL could be matched to this address."] = "Aucune URL de navigation ne correspond à cette adresse."; +$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Impossible de faire correspondre l'adresse d'identité en \"@\" avec un protocole connu ou un contact courriel."; +$a->strings["Use mailto: in front of address to force email check."] = "Utilisez mailto: en face d'une adresse pour l'obliger à être reconnue comme courriel."; +$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "L'adresse de profil spécifiée correspond à un réseau qui a été désactivé sur ce site."; +$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Profil limité. Cette personne ne sera pas capable de recevoir des notifications directes/personnelles de votre part."; +$a->strings["Unable to retrieve contact information."] = "Impossible de récupérer les informations du contact."; +$a->strings["following"] = "following"; +$a->strings["A new person is sharing with you at "] = "Une nouvelle personne partage avec vous à "; +$a->strings["You have a new follower at "] = "Vous avez un nouvel abonné à "; +$a->strings["Archives"] = "Archives"; +$a->strings["An invitation is required."] = "Une invitation est requise."; +$a->strings["Invitation could not be verified."] = "L'invitation fournie n'a pu être validée."; +$a->strings["Invalid OpenID url"] = "Adresse OpenID invalide"; +$a->strings["Please enter the required information."] = "Entrez les informations requises."; +$a->strings["Please use a shorter name."] = "Utilisez un nom plus court."; +$a->strings["Name too short."] = "Nom trop court."; +$a->strings["That doesn't appear to be your full (First Last) name."] = "Ceci ne semble pas être votre nom complet (Prénom Nom)."; +$a->strings["Your email domain is not among those allowed on this site."] = "Votre domaine de courriel n'est pas autorisé sur ce site."; +$a->strings["Not a valid email address."] = "Ceci n'est pas une adresse courriel valide."; +$a->strings["Cannot use that email."] = "Impossible d'utiliser ce courriel."; +$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and must also begin with a letter."] = "Votre \"pseudo\" peut seulement contenir les caractères \"a-z\", \"0-9\", \"-\", and \"_\", et doit commencer par une lettre."; +$a->strings["Nickname is already registered. Please choose another."] = "Pseudo déjà utilisé. Merci d'en choisir un autre."; +$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "Ce surnom a déjà été utilisé ici, et ne peut re-servir. Merci d'en choisir un autre."; +$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "ERREUR SÉRIEUSE: La génération des clés de sécurité a échoué."; +$a->strings["An error occurred during registration. Please try again."] = "Une erreur est survenue lors de l'inscription. Merci de recommencer."; +$a->strings["An error occurred creating your default profile. Please try again."] = "Une erreur est survenue lors de la création de votre profil par défaut. Merci de recommencer."; +$a->strings["Welcome "] = "Bienvenue "; +$a->strings["Please upload a profile photo."] = "Merci d'illustrer votre profil d'une image."; +$a->strings["Welcome back "] = "Bienvenue à nouveau, "; +$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."] = "Le jeton de sécurité du formulaire n'est pas correct. Ceci veut probablement dire que le formulaire est resté ouvert trop longtemps (plus de 3 heures) avant d'être validé."; +$a->strings["stopped following"] = "retiré de la liste de suivi"; +$a->strings["Poke"] = ""; +$a->strings["View Status"] = "Voir les statuts"; +$a->strings["View Profile"] = "Voir le profil"; +$a->strings["View Photos"] = "Voir les photos"; +$a->strings["Network Posts"] = "Posts du Réseau"; +$a->strings["Edit Contact"] = "Éditer le contact"; +$a->strings["Send PM"] = "Message privé"; +$a->strings["%1\$s poked %2\$s"] = ""; +$a->strings["post/item"] = "publication/élément"; +$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "%1\$s a marqué le %3\$s de %2\$s comme favori"; +$a->strings["Categories:"] = "Catégories:"; +$a->strings["Filed under:"] = "Rangé sous:"; +$a->strings["remove"] = "enlever"; $a->strings["Delete Selected Items"] = "Supprimer les éléments sélectionnés"; $a->strings["%s likes this."] = "%s aime ça."; $a->strings["%s doesn't like this."] = "%s n'aime pas ça."; @@ -1149,35 +1967,40 @@ $a->strings["Please enter a video link/URL:"] = "Entrez un lien/URL video :"; $a->strings["Please enter an audio link/URL:"] = "Entrez un lien/URL audio :"; $a->strings["Tag term:"] = "Tag : "; $a->strings["Where are you right now?"] = "Où êtes-vous présentemment?"; -$a->strings["Enter a title for this item"] = "Saisissez un titre pour cet élément"; +$a->strings["upload photo"] = "envoi image"; +$a->strings["attach file"] = "ajout fichier"; +$a->strings["web link"] = "lien web"; $a->strings["Insert video link"] = "Insérer un lien video"; +$a->strings["video link"] = "lien vidéo"; $a->strings["Insert audio link"] = "Insérer un lien audio"; -$a->strings["Set title"] = "Définir un titre"; -$a->strings["view full size"] = "voir en pleine taille"; -$a->strings["image/photo"] = "image/photo"; -$a->strings["Cannot locate DNS info for database server '%s'"] = "Impossible de localiser les informations DNS pour le serveur de base de données '%s'"; -$a->strings["Add New Contact"] = "Ajouter un nouveau contact"; -$a->strings["Enter address or web location"] = "Entrez son adresse ou sa localisation web"; -$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Exemple: bob@example.com, http://example.com/barbara"; -$a->strings["Invite Friends"] = "Inviter des amis"; -$a->strings["%d invitation available"] = array( - 0 => "%d invitation disponible", - 1 => "%d invitations disponibles", -); -$a->strings["Find People"] = "Trouver des personnes"; -$a->strings["Enter name or interest"] = "Entrez un nom ou un centre d'intérêt"; -$a->strings["Connect/Follow"] = "Connecter/Suivre"; -$a->strings["Examples: Robert Morgenstein, Fishing"] = "Exemples: Robert Morgenstein, Pêche"; -$a->strings["Similar Interests"] = "Intérêts similaires"; -$a->strings["New mail received at "] = "Nouvel email reçu à "; -$a->strings["A new person is sharing with you at "] = "Une nouvelle personne partage avec vous à "; -$a->strings["You have a new follower at "] = "Vous avez un nouvel abonné à "; -$a->strings["[no subject]"] = "[pas de sujet]"; -$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."] = "Un groupe supprimé a été recréé. Les permissions existantes pourraient s'appliquer à ce groupe et aux futurs membres. Si ce n'est pas le comportement attendu, merci de re-créer un autre groupe sous un autre nom."; -$a->strings["Create a new group"] = "Créer un nouveau groupe"; -$a->strings["Everybody"] = "Tout le monde"; -$a->strings["Sharing notification from Diaspora network"] = "Notification de partage du réseau Diaspora"; -$a->strings["Attachments:"] = "Pièces jointes : "; -$a->strings["[Relayed] Comment authored by %s from network %s"] = "[Relayé] Commentaire de %s sur le réseau %s"; -$a->strings["Embedded content"] = "Contenu incorporé"; -$a->strings["Embedding disabled"] = "Incorporation désactivée"; +$a->strings["audio link"] = "lien audio"; +$a->strings["set location"] = "spéc. localisation"; +$a->strings["clear location"] = "supp. localisation"; +$a->strings["permissions"] = "permissions"; +$a->strings["Click here to upgrade."] = "Cliquez ici pour mettre à jour."; +$a->strings["This action exceeds the limits set by your subscription plan."] = "Cette action dépasse les limites définies par votre abonnement."; +$a->strings["This action is not available under your subscription plan."] = "Cette action n'est pas disponible avec votre abonnement."; +$a->strings["Delete this item?"] = "Effacer cet élément?"; +$a->strings["show fewer"] = "montrer moins"; +$a->strings["Update %s failed. See error logs."] = "Mise-à-jour %s échouée. Voir les journaux d'erreur."; +$a->strings["Update Error at %s"] = "Erreur de mise-à-jour à %s"; +$a->strings["Create a New Account"] = "Créer un nouveau compte"; +$a->strings["Nickname or Email address: "] = "Pseudo ou courriel: "; +$a->strings["Password: "] = "Mot de passe: "; +$a->strings["Or login using OpenID: "] = "Ou connectez-vous via OpenID: "; +$a->strings["Forgot your password?"] = "Mot de passe oublié?"; +$a->strings["Requested account is not available."] = "Le compte demandé n'est pas disponible."; +$a->strings["Edit profile"] = "Editer le profil"; +$a->strings["Message"] = "Message"; +$a->strings["g A l F d"] = "g A | F d"; +$a->strings["F d"] = "F d"; +$a->strings["[today]"] = "[aujourd'hui]"; +$a->strings["Birthday Reminders"] = "Rappels d'anniversaires"; +$a->strings["Birthdays this week:"] = "Anniversaires cette semaine:"; +$a->strings["[No description]"] = "[Sans description]"; +$a->strings["Event Reminders"] = "Rappels d'événements"; +$a->strings["Events this week:"] = "Evénements cette semaine:"; +$a->strings["Status Messages and Posts"] = "Messages d'état et publications"; +$a->strings["Profile Details"] = "Détails du profil"; +$a->strings["Events and Calendar"] = "Événements et agenda"; +$a->strings["Only You Can See This"] = "Vous seul pouvez voir ça"; diff --git a/view/is/follow_notify_eml.tpl b/view/is/follow_notify_eml.tpl new file mode 100644 index 0000000000..d31e37bcad --- /dev/null +++ b/view/is/follow_notify_eml.tpl @@ -0,0 +1,14 @@ + +Góðan daginn $[myname], + +Þú hefur nýjan aðdáanda frá $[sitename] - '$[requestor]'. + +Þú getur heimsótt þeirra heimasvæði á $[url]. + +Vinsamlegast innskráðu þig til að samþykkja eða hunsa/hætta við beiðni. + +$[siteurl] + +Bestu kveðjur, + + Kerfisstjóri $[sitename] \ No newline at end of file diff --git a/view/is/friend_complete_eml.tpl b/view/is/friend_complete_eml.tpl new file mode 100644 index 0000000000..945ff49226 --- /dev/null +++ b/view/is/friend_complete_eml.tpl @@ -0,0 +1,22 @@ + +Góðan daginn $[username], + + Frábærar fréttir... '$[fn]' hjá '$[dfrn_url]' hefur samþykkt +tengibeiðni þína hjá '$[sitename]'. + +Þið eruð nú sameiginlegir vinir og getið skipst á stöðu uppfærslum, myndum og tölvupósti +án hafta. + +Endilega fara á síðunna 'Tengiliðir' á þjóninum $[sitename] ef þú villt gera +einhverjar breytingar á þessu sambandi. + +$[siteurl] + +[Til dæmis þá getur þú búið til nýjar notenda upplýsingar um þig, með ítarlegri lýsingu, sem eiga ekki +að vera aðgengileg almenningi - og veitt aðgang til að sjá '$[fn]']. + +Bestu kveðjur, + + Kerfisstjóri $[sitename] + + \ No newline at end of file diff --git a/view/is/intro_complete_eml.tpl b/view/is/intro_complete_eml.tpl new file mode 100644 index 0000000000..dba296d4e6 --- /dev/null +++ b/view/is/intro_complete_eml.tpl @@ -0,0 +1,22 @@ + +Góðan daginn $[username], + + '$[fn]' hjá '$[dfrn_url]' hefur samþykkt +tengibeiðni þína á '$[sitename]'. + + '$[fn]' hefur ákveðið að hafa þig sem "aðdáanda", sem takmarkar +ákveðnar gerðir af samskipturm - til dæmis einkapóst og ákveðnar notenda +aðgerðir. Ef þetta er stjörnu- eða hópasíða, þá voru þessar stillingar +settar á sjálfkrafa. + + '$[fn]' getur ákveðið seinna að breyta þessu í gagnkvæma eða enn hafta minni +tengingu í framtíðinni. + + Þú munt byrja að fá opinberar stöðubreytingar frá '$[fn]', +þær munu birtast á 'Tengslanet' síðunni þinni á + +$[siteurl] + +Bestu kveðjur, + + Kerfisstjóri $[sitename] \ No newline at end of file diff --git a/view/is/lostpass_eml.tpl b/view/is/lostpass_eml.tpl new file mode 100644 index 0000000000..053612adb6 --- /dev/null +++ b/view/is/lostpass_eml.tpl @@ -0,0 +1,32 @@ + +Góðan dag $[username], + Beiðni barst á $[sitename] um að endursetja +aðgangsorðið. Til að staðfesta þessa beiði, veldu slóðina +hér fyrir neðan og settu í slóðastiku vafra. + +Ef þú samþykkir ekki þessa breytingu, EKKI fara á slóðina +sem upp er gefinn heldur hunsaðu og/eða eyddu þessum tölvupósti. + +Aðgangsorðið verður ekki breytt nama við getum staðfest að þú +baðst um þessa breytingu. + +Farðu á slóðina til að staðfesta: + +$[reset_link] + +Þú munnt fá annan tölvupóst með nýja aðgangsorðinu. + +Þú getur síðan breytt því aðgangsorði í stillingar síðunni eftir að þú innskráir þig. + +Innskráningar upplýsingarnar eru eftirfarandi: + +Vefþjónn: $[siteurl] +Notendanafn: $[email] + + + + +Bestu kveðjur, + Kerfisstjóri $[sitename] + + \ No newline at end of file diff --git a/view/is/messages.po b/view/is/messages.po new file mode 100644 index 0000000000..b020998b46 --- /dev/null +++ b/view/is/messages.po @@ -0,0 +1,8800 @@ +# FRIENDICA Distributed Social Network +# Copyright (C) 2010, 2011 the Friendica Project +# This file is distributed under the same license as the Friendica package. +# +# Translators: +# , 2012. +# , 2012. +# , 2012. +# , 2012. +msgid "" +msgstr "" +"Project-Id-Version: friendica\n" +"Report-Msgid-Bugs-To: http://bugs.friendica.com/\n" +"POT-Creation-Date: 2012-09-25 10:00-0700\n" +"PO-Revision-Date: 2012-09-26 08:16+0000\n" +"Last-Translator: axelt \n" +"Language-Team: Icelandic (http://www.transifex.com/projects/p/friendica/language/is/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: is\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ../../mod/oexchange.php:25 +msgid "Post successful." +msgstr "Melding tókst." + +#: ../../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 "[Innfelt efni - endurhlaða síðu til að sjá]" + +#: ../../mod/crepair.php:102 +msgid "Contact settings applied." +msgstr "Stillingar tengiliðs uppfærðar." + +#: ../../mod/crepair.php:104 +msgid "Contact update failed." +msgstr "Uppfærsla tengiliðs mistókst." + +#: ../../mod/crepair.php:115 ../../mod/wall_attach.php:55 +#: ../../mod/fsuggest.php:78 ../../mod/events.php:140 ../../mod/api.php:26 +#: ../../mod/api.php:31 ../../mod/photos.php:128 ../../mod/photos.php:972 +#: ../../mod/editpost.php:10 ../../mod/install.php:151 ../../mod/poke.php:135 +#: ../../mod/notifications.php:66 ../../mod/contacts.php:146 +#: ../../mod/settings.php:86 ../../mod/settings.php:525 +#: ../../mod/settings.php:530 ../../mod/manage.php:87 ../../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:126 +#: ../../mod/item.php:142 ../../mod/mood.php:114 +#: ../../mod/profile_photo.php:19 ../../mod/profile_photo.php:169 +#: ../../mod/profile_photo.php:180 ../../mod/profile_photo.php:193 +#: ../../mod/message.php:38 ../../mod/message.php:168 +#: ../../mod/allfriends.php:9 ../../mod/nogroup.php:25 +#: ../../mod/wall_upload.php:64 ../../mod/follow.php:9 +#: ../../mod/display.php:141 ../../mod/profiles.php:7 +#: ../../mod/profiles.php:413 ../../mod/delegate.php:6 +#: ../../mod/suggest.php:28 ../../mod/invite.php:13 ../../mod/invite.php:81 +#: ../../mod/dfrn_confirm.php:53 ../../addon/facebook/facebook.php:510 +#: ../../addon/facebook/facebook.php:516 ../../addon/fbpost/fbpost.php:159 +#: ../../addon/fbpost/fbpost.php:165 +#: ../../addon/dav/friendica/layout.fnk.php:354 ../../include/items.php:3908 +#: ../../index.php:317 +msgid "Permission denied." +msgstr "Heimild ekki veitt." + +#: ../../mod/crepair.php:129 ../../mod/fsuggest.php:20 +#: ../../mod/fsuggest.php:92 ../../mod/dfrn_confirm.php:118 +msgid "Contact not found." +msgstr "Tengiliður fannst ekki." + +#: ../../mod/crepair.php:135 +msgid "Repair Contact Settings" +msgstr "Gera við stillingar tengiliðs" + +#: ../../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 "AÐVÖRUN: Þetta er mjög flókið og ef þú setur inn vitlausar upplýsingar þá munu samskipti við þennan tengilið hætta að virka." + +#: ../../mod/crepair.php:138 +msgid "" +"Please use your browser 'Back' button now if you are " +"uncertain what to do on this page." +msgstr "Vinsamlegast veldu \"Afturábak\" takkan núna ef þú ert ekki viss um hvað þú eigir að gera á þessari síðu." + +#: ../../mod/crepair.php:144 +msgid "Return to contact editor" +msgstr "Fara tilbaka í tengiliða sýslun" + +#: ../../mod/crepair.php:148 ../../mod/settings.php:545 +#: ../../mod/settings.php:571 ../../mod/admin.php:692 ../../mod/admin.php:702 +msgid "Name" +msgstr "Nafn" + +#: ../../mod/crepair.php:149 +msgid "Account Nickname" +msgstr "Gælunafn notanda" + +#: ../../mod/crepair.php:150 +msgid "@Tagname - overrides Name/Nickname" +msgstr "@Merkjanafn - yfirskrifar Nafn/Gælunafn" + +#: ../../mod/crepair.php:151 +msgid "Account URL" +msgstr "Heimasíða notanda" + +#: ../../mod/crepair.php:152 +msgid "Friend Request URL" +msgstr "Slóð vina beiðnis" + +#: ../../mod/crepair.php:153 +msgid "Friend Confirm URL" +msgstr "Slóð vina staðfestingar " + +#: ../../mod/crepair.php:154 +msgid "Notification Endpoint URL" +msgstr "Slóð loka tilkynningar" + +#: ../../mod/crepair.php:155 +msgid "Poll/Feed URL" +msgstr "Slóð könnunar/þráðar" + +#: ../../mod/crepair.php:156 +msgid "New photo from this URL" +msgstr "Ný mynd frá slóð" + +#: ../../mod/crepair.php:166 ../../mod/fsuggest.php:107 +#: ../../mod/events.php:455 ../../mod/photos.php:1005 +#: ../../mod/photos.php:1081 ../../mod/photos.php:1338 +#: ../../mod/photos.php:1378 ../../mod/photos.php:1419 +#: ../../mod/photos.php:1451 ../../mod/install.php:246 +#: ../../mod/install.php:284 ../../mod/localtime.php:45 ../../mod/poke.php:199 +#: ../../mod/content.php:693 ../../mod/contacts.php:348 +#: ../../mod/settings.php:543 ../../mod/settings.php:697 +#: ../../mod/settings.php:769 ../../mod/settings.php:976 +#: ../../mod/group.php:85 ../../mod/mood.php:137 ../../mod/message.php:294 +#: ../../mod/message.php:480 ../../mod/admin.php:443 ../../mod/admin.php:689 +#: ../../mod/admin.php:826 ../../mod/admin.php:1025 ../../mod/admin.php:1112 +#: ../../mod/profiles.php:583 ../../mod/invite.php:119 +#: ../../addon/fromgplus/fromgplus.php:40 +#: ../../addon/facebook/facebook.php:619 +#: ../../addon/snautofollow/snautofollow.php:64 ../../addon/bg/bg.php:90 +#: ../../addon/fbpost/fbpost.php:226 ../../addon/yourls/yourls.php:76 +#: ../../addon/ljpost/ljpost.php:93 ../../addon/nsfw/nsfw.php:88 +#: ../../addon/page/page.php:210 ../../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/startpage/startpage.php:92 +#: ../../addon/geonames/geonames.php:187 ../../addon/oembed.old/oembed.php:41 +#: ../../addon/forumlist/forumlist.php:169 +#: ../../addon/impressum/impressum.php:83 +#: ../../addon/notimeline/notimeline.php:64 ../../addon/blockem/blockem.php:57 +#: ../../addon/qcomment/qcomment.php:61 +#: ../../addon/openstreetmap/openstreetmap.php:70 +#: ../../addon/group_text/group_text.php:84 +#: ../../addon/libravatar/libravatar.php:99 +#: ../../addon/libertree/libertree.php:90 ../../addon/altpager/altpager.php:87 +#: ../../addon/mathjax/mathjax.php:42 ../../addon/editplain/editplain.php:84 +#: ../../addon/blackout/blackout.php:98 ../../addon/gravatar/gravatar.php:95 +#: ../../addon/pageheader/pageheader.php:55 ../../addon/ijpost/ijpost.php:93 +#: ../../addon/jappixmini/jappixmini.php:307 +#: ../../addon/statusnet/statusnet.php:278 +#: ../../addon/statusnet/statusnet.php:292 +#: ../../addon/statusnet/statusnet.php:318 +#: ../../addon/statusnet/statusnet.php:325 +#: ../../addon/statusnet/statusnet.php:353 +#: ../../addon/statusnet/statusnet.php:576 ../../addon/tumblr/tumblr.php:90 +#: ../../addon/numfriends/numfriends.php:85 ../../addon/gnot/gnot.php:88 +#: ../../addon/wppost/wppost.php:110 ../../addon/showmore/showmore.php:48 +#: ../../addon/piwik/piwik.php:89 ../../addon/twitter/twitter.php:180 +#: ../../addon/twitter/twitter.php:209 ../../addon/twitter/twitter.php:394 +#: ../../addon/irc/irc.php:55 ../../addon/fromapp/fromapp.php:77 +#: ../../addon/blogger/blogger.php:102 ../../addon/posterous/posterous.php:103 +#: ../../view/theme/cleanzero/config.php:80 +#: ../../view/theme/diabook/theme.php:757 +#: ../../view/theme/diabook/config.php:190 +#: ../../view/theme/quattro/config.php:53 ../../view/theme/dispy/config.php:70 +#: ../../include/conversation.php:607 ../../object/Item.php:559 +msgid "Submit" +msgstr "Senda inn" + +#: ../../mod/help.php:30 +msgid "Help:" +msgstr "Hjálp:" + +#: ../../mod/help.php:34 ../../addon/dav/friendica/layout.fnk.php:225 +#: ../../include/nav.php:86 +msgid "Help" +msgstr "Hjálp" + +#: ../../mod/help.php:38 ../../index.php:226 +msgid "Not Found" +msgstr "Fannst ekki" + +#: ../../mod/help.php:41 ../../index.php:229 +msgid "Page not found." +msgstr "Síða fannst ekki." + +#: ../../mod/wall_attach.php:69 +#, php-format +msgid "File exceeds size limit of %d" +msgstr "Skrá stærri en takmarkið %d" + +#: ../../mod/wall_attach.php:110 ../../mod/wall_attach.php:121 +msgid "File upload failed." +msgstr "Skráar upphlöðun mistókst." + +#: ../../mod/fsuggest.php:63 +msgid "Friend suggestion sent." +msgstr "Vina tillaga send" + +#: ../../mod/fsuggest.php:97 +msgid "Suggest Friends" +msgstr "Stinga uppá vinum" + +#: ../../mod/fsuggest.php:99 +#, php-format +msgid "Suggest a friend for %s" +msgstr "Stinga uppá vin fyrir %s" + +#: ../../mod/events.php:66 +msgid "Event title and start time are required." +msgstr "" + +#: ../../mod/events.php:279 +msgid "l, F j" +msgstr "" + +#: ../../mod/events.php:301 +msgid "Edit event" +msgstr "Breyta atburð" + +#: ../../mod/events.php:323 ../../include/text.php:1187 +msgid "link to source" +msgstr "slóð í heimild" + +#: ../../mod/events.php:347 ../../view/theme/diabook/theme.php:131 +#: ../../include/nav.php:52 ../../boot.php:1689 +msgid "Events" +msgstr "Atburðir" + +#: ../../mod/events.php:348 +msgid "Create New Event" +msgstr "Stofna nýjan atburð" + +#: ../../mod/events.php:349 ../../addon/dav/friendica/layout.fnk.php:263 +msgid "Previous" +msgstr "Fyrra" + +#: ../../mod/events.php:350 ../../mod/install.php:205 +#: ../../addon/dav/friendica/layout.fnk.php:266 +msgid "Next" +msgstr "Næsta" + +#: ../../mod/events.php:423 +msgid "hour:minute" +msgstr "klukkustund:mínutur" + +#: ../../mod/events.php:433 +msgid "Event details" +msgstr "Atburða lýsing" + +#: ../../mod/events.php:434 +#, php-format +msgid "Format is %s %s. Starting date and Title are required." +msgstr "" + +#: ../../mod/events.php:436 +msgid "Event Starts:" +msgstr "Atburður hefst:" + +#: ../../mod/events.php:436 ../../mod/events.php:450 +msgid "Required" +msgstr "" + +#: ../../mod/events.php:439 +msgid "Finish date/time is not known or not relevant" +msgstr "Loka dagsetning/tímasetning ekki vituð eða skiptir ekki máli" + +#: ../../mod/events.php:441 +msgid "Event Finishes:" +msgstr "Atburður klárar:" + +#: ../../mod/events.php:444 +msgid "Adjust for viewer timezone" +msgstr "Heimfæra á tímabelti áhorfanda" + +#: ../../mod/events.php:446 +msgid "Description:" +msgstr "Lýsing:" + +#: ../../mod/events.php:448 ../../mod/directory.php:134 +#: ../../include/event.php:40 ../../include/bb2diaspora.php:412 +#: ../../boot.php:1226 +msgid "Location:" +msgstr "Staðsetning:" + +#: ../../mod/events.php:450 +msgid "Title:" +msgstr "" + +#: ../../mod/events.php:452 +msgid "Share this event" +msgstr "Deila þessum atburði" + +#: ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 ../../mod/editpost.php:136 +#: ../../mod/dfrn_request.php:847 ../../mod/settings.php:544 +#: ../../mod/settings.php:570 ../../addon/js_upload/js_upload.php:45 +#: ../../include/conversation.php:1307 +msgid "Cancel" +msgstr "Hætta við" + +#: ../../mod/tagrm.php:41 +msgid "Tag removed" +msgstr "Merki fjarlægt" + +#: ../../mod/tagrm.php:79 +msgid "Remove Item Tag" +msgstr "Fjarlægja merki " + +#: ../../mod/tagrm.php:81 +msgid "Select a tag to remove: " +msgstr "Veldu merki til að fjarlægja:" + +#: ../../mod/tagrm.php:93 ../../mod/delegate.php:130 +#: ../../addon/dav/common/wdcal_edit.inc.php:468 +msgid "Remove" +msgstr "Fjarlægja" + +#: ../../mod/dfrn_poll.php:99 ../../mod/dfrn_poll.php:530 +#, php-format +msgid "%s welcomes %s" +msgstr "%s bíður %s velkomin" + +#: ../../mod/api.php:76 ../../mod/api.php:102 +msgid "Authorize application connection" +msgstr "Leyfa forriti að tengjast" + +#: ../../mod/api.php:77 +msgid "Return to your app and insert this Securty Code:" +msgstr "Farðu aftur í forritið þitt og settu þennan öryggiskóða þar" + +#: ../../mod/api.php:89 +msgid "Please login to continue." +msgstr "Skráðu þig inn til að halda áfram." + +#: ../../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 "Vilt þú leyfa þessu forriti að hafa aðgang að færslum og tengiliðum, og/eða stofna nýjar færslur fyrir þig?" + +#: ../../mod/api.php:105 ../../mod/dfrn_request.php:835 +#: ../../mod/settings.php:892 ../../mod/settings.php:898 +#: ../../mod/settings.php:906 ../../mod/settings.php:910 +#: ../../mod/settings.php:915 ../../mod/settings.php:921 +#: ../../mod/settings.php:927 ../../mod/settings.php:933 +#: ../../mod/settings.php:963 ../../mod/settings.php:964 +#: ../../mod/settings.php:965 ../../mod/settings.php:966 +#: ../../mod/settings.php:967 ../../mod/register.php:236 +#: ../../mod/profiles.php:563 +msgid "Yes" +msgstr "Já" + +#: ../../mod/api.php:106 ../../mod/dfrn_request.php:836 +#: ../../mod/settings.php:892 ../../mod/settings.php:898 +#: ../../mod/settings.php:906 ../../mod/settings.php:910 +#: ../../mod/settings.php:915 ../../mod/settings.php:921 +#: ../../mod/settings.php:927 ../../mod/settings.php:933 +#: ../../mod/settings.php:963 ../../mod/settings.php:964 +#: ../../mod/settings.php:965 ../../mod/settings.php:966 +#: ../../mod/settings.php:967 ../../mod/register.php:237 +#: ../../mod/profiles.php:564 +msgid "No" +msgstr "Nei" + +#: ../../mod/photos.php:46 ../../boot.php:1682 +msgid "Photo Albums" +msgstr "Myndabækur" + +#: ../../mod/photos.php:54 ../../mod/photos.php:149 ../../mod/photos.php:986 +#: ../../mod/photos.php:1073 ../../mod/photos.php:1088 +#: ../../mod/photos.php:1530 ../../mod/photos.php:1542 +#: ../../addon/communityhome/communityhome.php:110 +#: ../../view/theme/diabook/theme.php:598 +msgid "Contact Photos" +msgstr "Myndir tengiliðs" + +#: ../../mod/photos.php:61 ../../mod/photos.php:1104 ../../mod/photos.php:1580 +msgid "Upload New Photos" +msgstr "Hlaða upp nýjum myndum" + +#: ../../mod/photos.php:74 ../../mod/settings.php:23 +msgid "everybody" +msgstr "allir" + +#: ../../mod/photos.php:138 +msgid "Contact information unavailable" +msgstr "Tengiliða upplýsingar ekki til" + +#: ../../mod/photos.php:149 ../../mod/photos.php:653 ../../mod/photos.php:1073 +#: ../../mod/photos.php:1088 ../../mod/profile_photo.php:74 +#: ../../mod/profile_photo.php:81 ../../mod/profile_photo.php:88 +#: ../../mod/profile_photo.php:204 ../../mod/profile_photo.php:296 +#: ../../mod/profile_photo.php:305 +#: ../../addon/communityhome/communityhome.php:111 +#: ../../view/theme/diabook/theme.php:599 ../../include/user.php:324 +#: ../../include/user.php:331 ../../include/user.php:338 +msgid "Profile Photos" +msgstr "Forsíðu myndir" + +#: ../../mod/photos.php:159 +msgid "Album not found." +msgstr "Myndabók finnst ekki." + +#: ../../mod/photos.php:177 ../../mod/photos.php:1082 +msgid "Delete Album" +msgstr "Fjarlægja myndabók" + +#: ../../mod/photos.php:240 ../../mod/photos.php:1339 +msgid "Delete Photo" +msgstr "Fjarlægja mynd" + +#: ../../mod/photos.php:584 +msgid "was tagged in a" +msgstr "var merktur í" + +#: ../../mod/photos.php:584 ../../mod/like.php:145 ../../mod/tagger.php:62 +#: ../../addon/communityhome/communityhome.php:163 +#: ../../view/theme/diabook/theme.php:570 ../../include/text.php:1439 +#: ../../include/diaspora.php:1824 ../../include/conversation.php:125 +#: ../../include/conversation.php:253 +msgid "photo" +msgstr "mynd" + +#: ../../mod/photos.php:584 +msgid "by" +msgstr "af" + +#: ../../mod/photos.php:689 ../../addon/js_upload/js_upload.php:315 +msgid "Image exceeds size limit of " +msgstr "Mynd er yfir stærðamörkum" + +#: ../../mod/photos.php:697 +msgid "Image file is empty." +msgstr "Mynda skrá er tóm." + +#: ../../mod/photos.php:729 ../../mod/profile_photo.php:153 +#: ../../mod/wall_upload.php:110 +msgid "Unable to process image." +msgstr "Ekki mögulegt afgreiða mynd" + +#: ../../mod/photos.php:756 ../../mod/profile_photo.php:301 +#: ../../mod/wall_upload.php:136 +msgid "Image upload failed." +msgstr "Ekki hægt að hlaða upp mynd." + +#: ../../mod/photos.php:842 ../../mod/community.php:18 +#: ../../mod/dfrn_request.php:760 ../../mod/viewcontacts.php:17 +#: ../../mod/display.php:7 ../../mod/search.php:73 ../../mod/directory.php:31 +msgid "Public access denied." +msgstr "Alemennings aðgangur ekki veittur." + +#: ../../mod/photos.php:852 +msgid "No photos selected" +msgstr "Engar myndir valdar" + +#: ../../mod/photos.php:953 +msgid "Access to this item is restricted." +msgstr "Aðgangur að þessum hlut hefur verið heftur" + +#: ../../mod/photos.php:1015 +#, php-format +msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage." +msgstr "" + +#: ../../mod/photos.php:1018 +#, php-format +msgid "You have used %1$.2f Mbytes of photo storage." +msgstr "" + +#: ../../mod/photos.php:1024 +msgid "Upload Photos" +msgstr "Hlaða upp myndum" + +#: ../../mod/photos.php:1028 ../../mod/photos.php:1077 +msgid "New album name: " +msgstr "Nýtt nafn myndbókar:" + +#: ../../mod/photos.php:1029 +msgid "or existing album name: " +msgstr "eða fyrra nafn myndbókar:" + +#: ../../mod/photos.php:1030 +msgid "Do not show a status post for this upload" +msgstr "Ekki sýna færslu fyrir þessari upphölun" + +#: ../../mod/photos.php:1032 ../../mod/photos.php:1334 +msgid "Permissions" +msgstr "Aðgangar" + +#: ../../mod/photos.php:1092 +msgid "Edit Album" +msgstr "Breyta myndbók" + +#: ../../mod/photos.php:1098 +msgid "Show Newest First" +msgstr "" + +#: ../../mod/photos.php:1100 +msgid "Show Oldest First" +msgstr "" + +#: ../../mod/photos.php:1124 ../../mod/photos.php:1563 +msgid "View Photo" +msgstr "Skoða mynd" + +#: ../../mod/photos.php:1159 +msgid "Permission denied. Access to this item may be restricted." +msgstr "Aðgangi hafnað. Aðgangur að þessum hlut kann að vera skertur." + +#: ../../mod/photos.php:1161 +msgid "Photo not available" +msgstr "Mynd ekki til" + +#: ../../mod/photos.php:1217 +msgid "View photo" +msgstr "Birta mynd" + +#: ../../mod/photos.php:1217 +msgid "Edit photo" +msgstr "Breyta mynd" + +#: ../../mod/photos.php:1218 +msgid "Use as profile photo" +msgstr "Nota sem forsíðu mynd" + +#: ../../mod/photos.php:1224 ../../mod/content.php:603 +#: ../../include/conversation.php:436 ../../object/Item.php:103 +msgid "Private Message" +msgstr "Einka skilaboð" + +#: ../../mod/photos.php:1243 +msgid "View Full Size" +msgstr "Skoða í fullri stærð" + +#: ../../mod/photos.php:1311 +msgid "Tags: " +msgstr "Merki:" + +#: ../../mod/photos.php:1314 +msgid "[Remove any tag]" +msgstr "[Fjarlægja öll merki]" + +#: ../../mod/photos.php:1324 +msgid "Rotate CW (right)" +msgstr "" + +#: ../../mod/photos.php:1325 +msgid "Rotate CCW (left)" +msgstr "" + +#: ../../mod/photos.php:1327 +msgid "New album name" +msgstr "Nýtt nafn myndbókar" + +#: ../../mod/photos.php:1330 +msgid "Caption" +msgstr "Yfirskrift" + +#: ../../mod/photos.php:1332 +msgid "Add a Tag" +msgstr "Bæta við merki" + +#: ../../mod/photos.php:1336 +msgid "" +"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" +msgstr "Til dæmis: @bob, @Barbara_Jensen, @jim@example.com, #Reykjavík #tjalda" + +#: ../../mod/photos.php:1356 ../../mod/content.php:667 +#: ../../include/conversation.php:581 ../../object/Item.php:195 +msgid "I like this (toggle)" +msgstr "Mér líkar þetta (kveikja/slökkva)" + +#: ../../mod/photos.php:1357 ../../mod/content.php:668 +#: ../../include/conversation.php:582 ../../object/Item.php:196 +msgid "I don't like this (toggle)" +msgstr "Mér líkar þetta ekki (kveikja/slökkva)" + +#: ../../mod/photos.php:1358 ../../include/conversation.php:1268 +msgid "Share" +msgstr "Deila" + +#: ../../mod/photos.php:1359 ../../mod/editpost.php:112 +#: ../../mod/content.php:482 ../../mod/content.php:845 +#: ../../mod/wallmessage.php:152 ../../mod/message.php:293 +#: ../../mod/message.php:481 ../../include/conversation.php:686 +#: ../../include/conversation.php:944 ../../include/conversation.php:1287 +#: ../../object/Item.php:257 +msgid "Please wait" +msgstr "Vinsamlegast bíðið" + +#: ../../mod/photos.php:1375 ../../mod/photos.php:1416 +#: ../../mod/photos.php:1448 ../../mod/content.php:690 +#: ../../include/conversation.php:604 ../../object/Item.php:556 +msgid "This is you" +msgstr "Þetta ert þú" + +#: ../../mod/photos.php:1377 ../../mod/photos.php:1418 +#: ../../mod/photos.php:1450 ../../mod/content.php:692 +#: ../../include/conversation.php:606 ../../boot.php:574 +#: ../../object/Item.php:558 +msgid "Comment" +msgstr "Athugasemd" + +#: ../../mod/photos.php:1379 ../../mod/editpost.php:133 +#: ../../mod/content.php:702 ../../include/conversation.php:616 +#: ../../include/conversation.php:1305 ../../object/Item.php:568 +msgid "Preview" +msgstr "Forskoða" + +#: ../../mod/photos.php:1479 ../../mod/content.php:439 +#: ../../mod/content.php:723 ../../mod/settings.php:606 +#: ../../mod/settings.php:695 ../../mod/group.php:168 ../../mod/admin.php:696 +#: ../../include/conversation.php:448 ../../include/conversation.php:889 +#: ../../object/Item.php:116 +msgid "Delete" +msgstr "Eyða" + +#: ../../mod/photos.php:1569 +msgid "View Album" +msgstr "Skoða myndabók" + +#: ../../mod/photos.php:1578 +msgid "Recent Photos" +msgstr "Nýlegar myndir" + +#: ../../mod/community.php:23 +msgid "Not available." +msgstr "Ekki í boði." + +#: ../../mod/community.php:32 ../../view/theme/diabook/theme.php:133 +#: ../../include/nav.php:101 +msgid "Community" +msgstr "Samfélag" + +#: ../../mod/community.php:63 ../../mod/community.php:88 +#: ../../mod/search.php:148 ../../mod/search.php:174 +msgid "No results." +msgstr "Engar leitarniðurstöður." + +#: ../../mod/friendica.php:55 +msgid "This is Friendica, version" +msgstr "Þetta er Friendica útgáfa" + +#: ../../mod/friendica.php:56 +msgid "running at web location" +msgstr "Keyrir á slóð" + +#: ../../mod/friendica.php:58 +msgid "" +"Please visit Friendica.com to learn " +"more about the Friendica project." +msgstr "Á Friendica.com er hægt að fræðast nánar um Friendica verkefnið." + +#: ../../mod/friendica.php:60 +msgid "Bug reports and issues: please visit" +msgstr "Villu tilkynningar og vandamál: endilega skoða" + +#: ../../mod/friendica.php:61 +msgid "" +"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - " +"dot com" +msgstr "Uppástungur, lof, framlög og svo framvegis - sendið tölvupóst á \"Info\" hjá Friendica - punktur com" + +#: ../../mod/friendica.php:75 +msgid "Installed plugins/addons/apps:" +msgstr "" + +#: ../../mod/friendica.php:88 +msgid "No installed plugins/addons/apps" +msgstr "Engin uppsett eining/viðbót/forr" + +#: ../../mod/editpost.php:17 ../../mod/editpost.php:27 +msgid "Item not found" +msgstr "Hlutur fannst ekki" + +#: ../../mod/editpost.php:36 +msgid "Edit post" +msgstr "Breyta skilaboðum" + +#: ../../mod/editpost.php:88 ../../include/conversation.php:1254 +msgid "Post to Email" +msgstr "Senda skilaboð á tölvupóst" + +#: ../../mod/editpost.php:103 ../../mod/content.php:710 +#: ../../mod/settings.php:605 ../../include/conversation.php:441 +#: ../../object/Item.php:107 +msgid "Edit" +msgstr "Breyta" + +#: ../../mod/editpost.php:104 ../../mod/wallmessage.php:150 +#: ../../mod/message.php:291 ../../mod/message.php:478 +#: ../../include/conversation.php:1269 +msgid "Upload photo" +msgstr "Hlaða upp mynd" + +#: ../../mod/editpost.php:105 ../../include/conversation.php:1271 +msgid "Attach file" +msgstr "Bæta við skrá" + +#: ../../mod/editpost.php:106 ../../mod/wallmessage.php:151 +#: ../../mod/message.php:292 ../../mod/message.php:479 +#: ../../include/conversation.php:1273 +msgid "Insert web link" +msgstr "Setja inn vefslóð" + +#: ../../mod/editpost.php:107 +msgid "Insert YouTube video" +msgstr "Setja inn YouTube myndband" + +#: ../../mod/editpost.php:108 +msgid "Insert Vorbis [.ogg] video" +msgstr "Setja inn Vorbis [.ogg] myndband" + +#: ../../mod/editpost.php:109 +msgid "Insert Vorbis [.ogg] audio" +msgstr "Setja inn Vorbis [.ogg] hljóðskrá" + +#: ../../mod/editpost.php:110 ../../include/conversation.php:1279 +msgid "Set your location" +msgstr "Veldu staðsetningu þína" + +#: ../../mod/editpost.php:111 ../../include/conversation.php:1281 +msgid "Clear browser location" +msgstr "Hreinsa staðsetningu í vafra" + +#: ../../mod/editpost.php:113 ../../include/conversation.php:1288 +msgid "Permission settings" +msgstr "Heimildar stillingar" + +#: ../../mod/editpost.php:121 ../../include/conversation.php:1297 +msgid "CC: email addresses" +msgstr "CC: tölvupóstfang" + +#: ../../mod/editpost.php:122 ../../include/conversation.php:1298 +msgid "Public post" +msgstr "Opinber færsla" + +#: ../../mod/editpost.php:125 ../../include/conversation.php:1284 +msgid "Set title" +msgstr "Setja titil" + +#: ../../mod/editpost.php:127 ../../include/conversation.php:1286 +msgid "Categories (comma-separated list)" +msgstr "" + +#: ../../mod/editpost.php:128 ../../include/conversation.php:1300 +msgid "Example: bob@example.com, mary@example.com" +msgstr "Dæmi: bob@example.com, mary@example.com" + +#: ../../mod/dfrn_request.php:93 +msgid "This introduction has already been accepted." +msgstr "Þessi kynning hefur þegar verið samþykkt." + +#: ../../mod/dfrn_request.php:118 ../../mod/dfrn_request.php:512 +msgid "Profile location is not valid or does not contain profile information." +msgstr "Forsíðu slóð er ekki í lagi eða inniheldur ekki forsíðu upplýsingum." + +#: ../../mod/dfrn_request.php:123 ../../mod/dfrn_request.php:517 +msgid "Warning: profile location has no identifiable owner name." +msgstr "Aðvörun: forsíðu staðsetning hefur ekki aðgreinanlegt eigendanafn." + +#: ../../mod/dfrn_request.php:125 ../../mod/dfrn_request.php:519 +msgid "Warning: profile location has no profile photo." +msgstr "Aðvörun: forsíðu slóð hefur ekki forsíðu mynd." + +#: ../../mod/dfrn_request.php:128 ../../mod/dfrn_request.php:522 +#, php-format +msgid "%d required parameter was not found at the given location" +msgid_plural "%d required parameters were not found at the given location" +msgstr[0] "%d skilyrt breyta fannst ekki á uppgefinni staðsetningu" +msgstr[1] "%d skilyrtar breytur fundust ekki á uppgefninni staðsetningu" + +#: ../../mod/dfrn_request.php:170 +msgid "Introduction complete." +msgstr "Kynning tilbúinn." + +#: ../../mod/dfrn_request.php:209 +msgid "Unrecoverable protocol error." +msgstr "Alvarleg samskipta villa." + +#: ../../mod/dfrn_request.php:237 +msgid "Profile unavailable." +msgstr "Ekki hægt að sækja forsíðu" + +#: ../../mod/dfrn_request.php:262 +#, php-format +msgid "%s has received too many connection requests today." +msgstr "%s hefur fengið of margar tengibeiðnir í dag." + +#: ../../mod/dfrn_request.php:263 +msgid "Spam protection measures have been invoked." +msgstr "Kveikt hefur verið á ruslsíu" + +#: ../../mod/dfrn_request.php:264 +msgid "Friends are advised to please try again in 24 hours." +msgstr "Vinir eru beðnir um að reyna aftur eftir 24 klukkustundir." + +#: ../../mod/dfrn_request.php:326 +msgid "Invalid locator" +msgstr "Ógild staðsetning" + +#: ../../mod/dfrn_request.php:335 +msgid "Invalid email address." +msgstr "" + +#: ../../mod/dfrn_request.php:361 +msgid "This account has not been configured for email. Request failed." +msgstr "" + +#: ../../mod/dfrn_request.php:457 +msgid "Unable to resolve your name at the provided location." +msgstr "Ekki tókst að fletta upp nafninu þínu á uppgefinni staðsetningu." + +#: ../../mod/dfrn_request.php:470 +msgid "You have already introduced yourself here." +msgstr "Kynning hefur þegar átt sér stað hér." + +#: ../../mod/dfrn_request.php:474 +#, php-format +msgid "Apparently you are already friends with %s." +msgstr "Þú ert þegar vinur %s." + +#: ../../mod/dfrn_request.php:495 +msgid "Invalid profile URL." +msgstr "Ógild forsíðu slóð." + +#: ../../mod/dfrn_request.php:501 ../../include/follow.php:27 +msgid "Disallowed profile URL." +msgstr "Óleyfileg forsíðu slóð." + +#: ../../mod/dfrn_request.php:570 ../../mod/contacts.php:123 +msgid "Failed to update contact record." +msgstr "Ekki tókst að uppfæra tengiliðs skrá." + +#: ../../mod/dfrn_request.php:591 +msgid "Your introduction has been sent." +msgstr "Kynningin þín hefur verið send." + +#: ../../mod/dfrn_request.php:644 +msgid "Please login to confirm introduction." +msgstr "Skráðu þig inn til að staðfesta kynningu." + +#: ../../mod/dfrn_request.php:658 +msgid "" +"Incorrect identity currently logged in. Please login to " +"this profile." +msgstr "Ekki réttur notandi skráður inn. Skráðu þig inn með þessum notanda." + +#: ../../mod/dfrn_request.php:669 +msgid "Hide this contact" +msgstr "" + +#: ../../mod/dfrn_request.php:672 +#, php-format +msgid "Welcome home %s." +msgstr "Velkomin(n) heim %s." + +#: ../../mod/dfrn_request.php:673 +#, php-format +msgid "Please confirm your introduction/connection request to %s." +msgstr "Vinsamlegas staðfestu kynninguna/tengibeiðnina við %s." + +#: ../../mod/dfrn_request.php:674 +msgid "Confirm" +msgstr "Staðfesta" + +#: ../../mod/dfrn_request.php:715 ../../include/items.php:3287 +msgid "[Name Withheld]" +msgstr "[Nafn ekki sýnt]" + +#: ../../mod/dfrn_request.php:810 +msgid "" +"Please enter your 'Identity Address' from one of the following supported " +"communications networks:" +msgstr "" + +#: ../../mod/dfrn_request.php:826 +msgid "Connect as an email follower (Coming soon)" +msgstr "" + +#: ../../mod/dfrn_request.php:828 +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 "" + +#: ../../mod/dfrn_request.php:831 +msgid "Friend/Connection Request" +msgstr "Vina/Tengi Beiðni" + +#: ../../mod/dfrn_request.php:832 +msgid "" +"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, " +"testuser@identi.ca" +msgstr "Dæmi: siggi@demo.friendica.com, http://demo.friendica.com/profile/siggi, prufunotandi@identi.ca" + +#: ../../mod/dfrn_request.php:833 +msgid "Please answer the following:" +msgstr "Vinnsamlegast svaraðu eftirfarandi:" + +#: ../../mod/dfrn_request.php:834 +#, php-format +msgid "Does %s know you?" +msgstr "Þekkir %s þig?" + +#: ../../mod/dfrn_request.php:837 +msgid "Add a personal note:" +msgstr "Bæta við persónulegri athugasemd" + +#: ../../mod/dfrn_request.php:839 ../../include/contact_selectors.php:76 +msgid "Friendica" +msgstr "Friendica" + +#: ../../mod/dfrn_request.php:840 +msgid "StatusNet/Federated Social Web" +msgstr "StatusNet/Federated Social Web" + +#: ../../mod/dfrn_request.php:841 ../../mod/settings.php:640 +#: ../../include/contact_selectors.php:80 +msgid "Diaspora" +msgstr "Diaspora" + +#: ../../mod/dfrn_request.php:842 +#, php-format +msgid "" +" - please do not use this form. Instead, enter %s into your Diaspora search" +" bar." +msgstr "" + +#: ../../mod/dfrn_request.php:843 +msgid "Your Identity Address:" +msgstr "Aðgangs slóðin þín:" + +#: ../../mod/dfrn_request.php:846 +msgid "Submit Request" +msgstr "Senda beiðni" + +#: ../../mod/install.php:117 +msgid "Friendica Social Communications Server - Setup" +msgstr "Samfélags þjónninn Friendica - Stillingar" + +#: ../../mod/install.php:123 +msgid "Could not connect to database." +msgstr "Gat ekki tengst gagnagrunn." + +#: ../../mod/install.php:127 +msgid "Could not create table." +msgstr "Gat ekki búið til töflu." + +#: ../../mod/install.php:133 +msgid "Your Friendica site database has been installed." +msgstr "Friendica gagnagrunnurinn þinn hefur verið uppsettur." + +#: ../../mod/install.php:138 +msgid "" +"You may need to import the file \"database.sql\" manually using phpmyadmin " +"or mysql." +msgstr "Þú þarft mögulega að keyra inn skránna \"database.sql\" handvirkt með phpmyadmin eða mysql." + +#: ../../mod/install.php:139 ../../mod/install.php:204 +#: ../../mod/install.php:488 +msgid "Please see the file \"INSTALL.txt\"." +msgstr "Vinsamlegast lestu skránna \"INSTALL.txt\"." + +#: ../../mod/install.php:201 +msgid "System check" +msgstr "Kerfis prófun" + +#: ../../mod/install.php:206 +msgid "Check again" +msgstr "Prófa aftur" + +#: ../../mod/install.php:225 +msgid "Database connection" +msgstr "Gangagrunns tenging" + +#: ../../mod/install.php:226 +msgid "" +"In order to install Friendica we need to know how to connect to your " +"database." +msgstr "Til að setja upp Friendica þurfum við að vita hvernig á að tengjast gagnagrunninum þínum." + +#: ../../mod/install.php:227 +msgid "" +"Please contact your hosting provider or site administrator if you have " +"questions about these settings." +msgstr "Vinsamlegast hafðu samband við hýsingaraðilann þinn eða kerfisstjóra ef þú hefur spurningar um þessar stillingar." + +#: ../../mod/install.php:228 +msgid "" +"The database you specify below should already exist. If it does not, please " +"create it before continuing." +msgstr "Gagnagrunnurinn sem þú bendir á þarf þegar að vera til. Ef ekki þá þarf að stofna hann áður en haldið er áfram." + +#: ../../mod/install.php:232 +msgid "Database Server Name" +msgstr "Vélanafn gagangrunns" + +#: ../../mod/install.php:233 +msgid "Database Login Name" +msgstr "Notendanafn í gagnagrunn" + +#: ../../mod/install.php:234 +msgid "Database Login Password" +msgstr "Aðgangsorð í gagnagrunns" + +#: ../../mod/install.php:235 +msgid "Database Name" +msgstr "Nafn gagnagrunns" + +#: ../../mod/install.php:236 ../../mod/install.php:275 +msgid "Site administrator email address" +msgstr "Póstfang kerfisstjóri vefs" + +#: ../../mod/install.php:236 ../../mod/install.php:275 +msgid "" +"Your account email address must match this in order to use the web admin " +"panel." +msgstr "Notanda póstfang þitt verður að passa við þetta til að hægt sé að nota umsýslu vefviðmót." + +#: ../../mod/install.php:240 ../../mod/install.php:278 +msgid "Please select a default timezone for your website" +msgstr "Vinsamlegast veldu sjálfgefið tímabelti fyrir vefsíðuna" + +#: ../../mod/install.php:265 +msgid "Site settings" +msgstr "Stillingar vefs" + +#: ../../mod/install.php:318 +msgid "Could not find a command line version of PHP in the web server PATH." +msgstr "Gat ekki fundið skipanalínu útgáfu af PHP í vefþjóns PATH." + +#: ../../mod/install.php:319 +msgid "" +"If you don't have a command line version of PHP installed on server, you " +"will not be able to run background polling via cron. See 'Activating scheduled tasks'" +msgstr "" + +#: ../../mod/install.php:323 +msgid "PHP executable path" +msgstr "PHP keyrslu slóð" + +#: ../../mod/install.php:323 +msgid "" +"Enter full path to php executable. You can leave this blank to continue the " +"installation." +msgstr "" + +#: ../../mod/install.php:328 +msgid "Command line PHP" +msgstr "Skipanalínu PHP" + +#: ../../mod/install.php:337 +msgid "" +"The command line version of PHP on your system does not have " +"\"register_argc_argv\" enabled." +msgstr "Skipanalínu útgáfa af PHP á vefþjóninum hefur ekki kveikt á \"register_argc_argv\"." + +#: ../../mod/install.php:338 +msgid "This is required for message delivery to work." +msgstr "Þetta er skilyrt fyrir því að skilaboð komist til skila." + +#: ../../mod/install.php:340 +msgid "PHP register_argc_argv" +msgstr "" + +#: ../../mod/install.php:361 +msgid "" +"Error: the \"openssl_pkey_new\" function on this system is not able to " +"generate encryption keys" +msgstr "Villa: Stefjan \"openssl_pkey_new\" á vefþjóninum getur ekki stofnað dulkóðunar lykla" + +#: ../../mod/install.php:362 +msgid "" +"If running under Windows, please see " +"\"http://www.php.net/manual/en/openssl.installation.php\"." +msgstr "Ef keyrt er á Window, vinsamlegast skoðið \"http://www.php.net/manual/en/openssl.installation.php\"." + +#: ../../mod/install.php:364 +msgid "Generate encryption keys" +msgstr "Búa til dulkóðunar lykla" + +#: ../../mod/install.php:371 +msgid "libCurl PHP module" +msgstr "libCurl PHP eining" + +#: ../../mod/install.php:372 +msgid "GD graphics PHP module" +msgstr "GD graphics PHP eining" + +#: ../../mod/install.php:373 +msgid "OpenSSL PHP module" +msgstr "OpenSSL PHP eining" + +#: ../../mod/install.php:374 +msgid "mysqli PHP module" +msgstr "mysqli PHP eining" + +#: ../../mod/install.php:375 +msgid "mb_string PHP module" +msgstr "mb_string PHP eining" + +#: ../../mod/install.php:380 ../../mod/install.php:382 +msgid "Apache mod_rewrite module" +msgstr "Apache mod_rewrite eining" + +#: ../../mod/install.php:380 +msgid "" +"Error: Apache webserver mod-rewrite module is required but not installed." +msgstr "Villa: Apache vefþjóns eining mod-rewrite er skilyrði og er ekki uppsett. " + +#: ../../mod/install.php:388 +msgid "Error: libCURL PHP module required but not installed." +msgstr "Villa: libCurl PHP eining er skilyrði og er ekki uppsett." + +#: ../../mod/install.php:392 +msgid "" +"Error: GD graphics PHP module with JPEG support required but not installed." +msgstr "Villa: GD graphics PHP eining með JPEG stuðningi er skilyrði og er ekki uppsett." + +#: ../../mod/install.php:396 +msgid "Error: openssl PHP module required but not installed." +msgstr "Villa: openssl PHP eining skilyrði og er ekki uppsett." + +#: ../../mod/install.php:400 +msgid "Error: mysqli PHP module required but not installed." +msgstr "Villa: mysqli PHP eining er skilyrði og er ekki uppsett" + +#: ../../mod/install.php:404 +msgid "Error: mb_string PHP module required but not installed." +msgstr "Villa: mb_string PHP eining skilyrði en ekki uppsett." + +#: ../../mod/install.php:421 +msgid "" +"The web installer needs to be able to create a file called \".htconfig.php\"" +" in the top folder of your web server and it is unable to do so." +msgstr "Vef uppsetningar forrit þarf að geta stofnað skránna \".htconfig.php\" in efsta skráarsafninu á vefþjóninum og það getur ekki gert það." + +#: ../../mod/install.php:422 +msgid "" +"This is most often a permission setting, as the web server may not be able " +"to write files in your folder - even if you can." +msgstr "Þetta er oftast aðgangsstýringa stilling, þar sem vefþjónninn getur ekki skrifað út skrár í skráarsafnið - þó þú getir það." + +#: ../../mod/install.php:423 +msgid "" +"At the end of this procedure, we will give you a text to save in a file " +"named .htconfig.php in your Friendica top folder." +msgstr "" + +#: ../../mod/install.php:424 +msgid "" +"You can alternatively skip this procedure and perform a manual installation." +" Please see the file \"INSTALL.txt\" for instructions." +msgstr "" + +#: ../../mod/install.php:427 +msgid ".htconfig.php is writable" +msgstr ".htconfig.php er skrifanleg" + +#: ../../mod/install.php:439 +msgid "" +"Url rewrite in .htaccess is not working. Check your server configuration." +msgstr "" + +#: ../../mod/install.php:441 +msgid "Url rewrite is working" +msgstr "" + +#: ../../mod/install.php:451 +msgid "" +"The database configuration file \".htconfig.php\" could not be written. " +"Please use the enclosed text to create a configuration file in your web " +"server root." +msgstr "Ekki tókst að skrifa gagnagrunns stillingar skrá \".htconfig.php\". Vinsamlegast notaði viðhangandi texta til að búa til stillingar skrá á vefþjóns rótina." + +#: ../../mod/install.php:475 +msgid "Errors encountered creating database tables." +msgstr "Villur komu upp við að stofna töflur í gagnagrunn." + +#: ../../mod/install.php:486 +msgid "

    What next

    " +msgstr "" + +#: ../../mod/install.php:487 +msgid "" +"IMPORTANT: You will need to [manually] setup a scheduled task for the " +"poller." +msgstr "MIKILVÆGT: Þú þarft að [handvirkt] setja upp sjálfvirka keyrslu á poller." + +#: ../../mod/localtime.php:12 ../../include/event.php:11 +#: ../../include/bb2diaspora.php:390 +msgid "l F d, Y \\@ g:i A" +msgstr "" + +#: ../../mod/localtime.php:24 +msgid "Time Conversion" +msgstr "Tíma leiðréttir" + +#: ../../mod/localtime.php:26 +msgid "" +"Friendika provides this service for sharing events with other networks and " +"friends in unknown timezones." +msgstr "Friendica veitir þessa þjónustu til að deila atburðum milli neta og vina í óþekktum tímabeltum." + +#: ../../mod/localtime.php:30 +#, php-format +msgid "UTC time: %s" +msgstr "Máltími: %s" + +#: ../../mod/localtime.php:33 +#, php-format +msgid "Current timezone: %s" +msgstr "Núverandi tímabelti: %s" + +#: ../../mod/localtime.php:36 +#, php-format +msgid "Converted localtime: %s" +msgstr "Umbreyttur staðartími: %s" + +#: ../../mod/localtime.php:41 +msgid "Please select your timezone:" +msgstr "Veldu tímabeltið þitt:" + +#: ../../mod/poke.php:192 +msgid "Poke/Prod" +msgstr "" + +#: ../../mod/poke.php:193 +msgid "poke, prod or do other things to somebody" +msgstr "" + +#: ../../mod/poke.php:194 +msgid "Recipient" +msgstr "" + +#: ../../mod/poke.php:195 +msgid "Choose what you wish to do to recipient" +msgstr "" + +#: ../../mod/poke.php:198 +msgid "Make this post private" +msgstr "" + +#: ../../mod/match.php:12 +msgid "Profile Match" +msgstr "Forsíða fannst" + +#: ../../mod/match.php:20 +msgid "No keywords to match. Please add keywords to your default profile." +msgstr "Engin leitarorð. Bættu við leitarorðum í sjálfgefnu forsíðuna." + +#: ../../mod/match.php:57 +msgid "is interested in:" +msgstr "hefur áhuga á:" + +#: ../../mod/match.php:58 ../../mod/suggest.php:59 +#: ../../include/contact_widgets.php:9 ../../boot.php:1164 +msgid "Connect" +msgstr "Tengjast" + +#: ../../mod/match.php:65 ../../mod/dirfind.php:60 +msgid "No matches" +msgstr "Engar leitarniðurstöður" + +#: ../../mod/lockview.php:39 +msgid "Remote privacy information not available." +msgstr "Persónuverndar upplýsingar ekki fyrir hendi á fjarlægum vefþjón." + +#: ../../mod/lockview.php:43 +msgid "Visible to:" +msgstr "Sýnilegt eftirfarandi:" + +#: ../../mod/content.php:119 ../../mod/network.php:436 +msgid "No such group" +msgstr "Hópur ekki til" + +#: ../../mod/content.php:130 ../../mod/network.php:447 +msgid "Group is empty" +msgstr "Hópur er tómur" + +#: ../../mod/content.php:134 ../../mod/network.php:451 +msgid "Group: " +msgstr "Hópur:" + +#: ../../mod/content.php:438 ../../mod/content.php:722 +#: ../../include/conversation.php:447 ../../include/conversation.php:888 +#: ../../object/Item.php:115 +msgid "Select" +msgstr "Velja" + +#: ../../mod/content.php:455 ../../mod/content.php:815 +#: ../../mod/content.php:816 ../../include/conversation.php:654 +#: ../../include/conversation.php:655 ../../include/conversation.php:907 +#: ../../object/Item.php:226 ../../object/Item.php:227 +#, php-format +msgid "View %s's profile @ %s" +msgstr "Birta forsíðu %s hjá %s" + +#: ../../mod/content.php:465 ../../mod/content.php:827 +#: ../../include/conversation.php:668 ../../include/conversation.php:927 +#: ../../object/Item.php:239 +#, php-format +msgid "%s from %s" +msgstr "%s til %s" + +#: ../../mod/content.php:480 ../../include/conversation.php:942 +msgid "View in context" +msgstr "Birta í samhengi" + +#: ../../mod/content.php:586 ../../include/conversation.php:695 +#: ../../object/Item.php:276 +#, php-format +msgid "%d comment" +msgid_plural "%d comments" +msgstr[0] "%d ummæli" +msgstr[1] "%d ummæli" + +#: ../../mod/content.php:588 ../../include/text.php:1443 +#: ../../include/conversation.php:697 ../../object/Item.php:278 +#: ../../object/Item.php:291 +msgid "comment" +msgid_plural "comments" +msgstr[0] "" +msgstr[1] "" + +#: ../../mod/content.php:589 ../../addon/page/page.php:76 +#: ../../addon/page/page.php:110 ../../addon/showmore/showmore.php:119 +#: ../../include/contact_widgets.php:195 ../../include/conversation.php:698 +#: ../../boot.php:575 ../../object/Item.php:279 +msgid "show more" +msgstr "sýna meira" + +#: ../../mod/content.php:667 ../../include/conversation.php:581 +#: ../../object/Item.php:195 +msgid "like" +msgstr "líkar" + +#: ../../mod/content.php:668 ../../include/conversation.php:582 +#: ../../object/Item.php:196 +msgid "dislike" +msgstr "mislíkar" + +#: ../../mod/content.php:670 ../../include/conversation.php:584 +#: ../../object/Item.php:198 +msgid "Share this" +msgstr "Deila þessu" + +#: ../../mod/content.php:670 ../../include/conversation.php:584 +#: ../../object/Item.php:198 +msgid "share" +msgstr "deila" + +#: ../../mod/content.php:694 ../../include/conversation.php:608 +#: ../../object/Item.php:560 +msgid "Bold" +msgstr "Feitletrað" + +#: ../../mod/content.php:695 ../../include/conversation.php:609 +#: ../../object/Item.php:561 +msgid "Italic" +msgstr "Skáletrað" + +#: ../../mod/content.php:696 ../../include/conversation.php:610 +#: ../../object/Item.php:562 +msgid "Underline" +msgstr "Undirstrikað" + +#: ../../mod/content.php:697 ../../include/conversation.php:611 +#: ../../object/Item.php:563 +msgid "Quote" +msgstr "Gæsalappir" + +#: ../../mod/content.php:698 ../../include/conversation.php:612 +#: ../../object/Item.php:564 +msgid "Code" +msgstr "Kóði" + +#: ../../mod/content.php:699 ../../include/conversation.php:613 +#: ../../object/Item.php:565 +msgid "Image" +msgstr "Mynd" + +#: ../../mod/content.php:700 ../../include/conversation.php:614 +#: ../../object/Item.php:566 +msgid "Link" +msgstr "Hlekkur" + +#: ../../mod/content.php:701 ../../include/conversation.php:615 +#: ../../object/Item.php:567 +msgid "Video" +msgstr "Myndband" + +#: ../../mod/content.php:735 ../../include/conversation.php:545 +#: ../../object/Item.php:179 +msgid "add star" +msgstr "bæta við stjörnu" + +#: ../../mod/content.php:736 ../../include/conversation.php:546 +#: ../../object/Item.php:180 +msgid "remove star" +msgstr "eyða stjörnu" + +#: ../../mod/content.php:737 ../../include/conversation.php:547 +#: ../../object/Item.php:181 +msgid "toggle star status" +msgstr "Kveikja/slökkva á stjörnu" + +#: ../../mod/content.php:740 ../../include/conversation.php:550 +#: ../../object/Item.php:184 +msgid "starred" +msgstr "stjörnumerkt" + +#: ../../mod/content.php:741 ../../include/conversation.php:551 +#: ../../object/Item.php:185 +msgid "add tag" +msgstr "bæta við merki" + +#: ../../mod/content.php:745 ../../include/conversation.php:451 +#: ../../object/Item.php:119 +msgid "save to folder" +msgstr "" + +#: ../../mod/content.php:817 ../../include/conversation.php:656 +#: ../../object/Item.php:228 +msgid "to" +msgstr "við" + +#: ../../mod/content.php:818 ../../include/conversation.php:657 +#: ../../object/Item.php:229 +msgid "Wall-to-Wall" +msgstr "vegg við vegg" + +#: ../../mod/content.php:819 ../../include/conversation.php:658 +#: ../../object/Item.php:230 +msgid "via Wall-To-Wall:" +msgstr "gegnum vegg við vegg" + +#: ../../mod/home.php:28 ../../addon/communityhome/communityhome.php:179 +#, php-format +msgid "Welcome to %s" +msgstr "Velkomin(n) til %s" + +#: ../../mod/notifications.php:26 +msgid "Invalid request identifier." +msgstr "Ógilt fyrirspurnar auðkenni" + +#: ../../mod/notifications.php:35 ../../mod/notifications.php:161 +#: ../../mod/notifications.php:207 +msgid "Discard" +msgstr "Henda" + +#: ../../mod/notifications.php:51 ../../mod/notifications.php:160 +#: ../../mod/notifications.php:206 ../../mod/contacts.php:321 +#: ../../mod/contacts.php:375 +msgid "Ignore" +msgstr "Hunsa" + +#: ../../mod/notifications.php:75 +msgid "System" +msgstr "" + +#: ../../mod/notifications.php:80 ../../include/nav.php:113 +msgid "Network" +msgstr "Samfélag" + +#: ../../mod/notifications.php:85 ../../mod/network.php:300 +msgid "Personal" +msgstr "Einka" + +#: ../../mod/notifications.php:90 ../../view/theme/diabook/theme.php:127 +#: ../../include/nav.php:77 ../../include/nav.php:115 +msgid "Home" +msgstr "Heim" + +#: ../../mod/notifications.php:95 ../../include/nav.php:121 +msgid "Introductions" +msgstr "Kynningar" + +#: ../../mod/notifications.php:100 ../../mod/message.php:176 +#: ../../include/nav.php:128 +msgid "Messages" +msgstr "Skilaboð" + +#: ../../mod/notifications.php:119 +msgid "Show Ignored Requests" +msgstr "Sýna hunsaðar fyrirspurnir" + +#: ../../mod/notifications.php:119 +msgid "Hide Ignored Requests" +msgstr "Fela hunsaðar beiðnir" + +#: ../../mod/notifications.php:145 ../../mod/notifications.php:191 +msgid "Notification type: " +msgstr "Skilaboða gerð:" + +#: ../../mod/notifications.php:146 +msgid "Friend Suggestion" +msgstr "Vina tillaga" + +#: ../../mod/notifications.php:148 +#, php-format +msgid "suggested by %s" +msgstr "stungið uppá af %s" + +#: ../../mod/notifications.php:153 ../../mod/notifications.php:200 +#: ../../mod/contacts.php:381 +msgid "Hide this contact from others" +msgstr "Gera þennan notanda ósýnilegan öðrum" + +#: ../../mod/notifications.php:154 ../../mod/notifications.php:201 +msgid "Post a new friend activity" +msgstr "Búa til færslu um " + +#: ../../mod/notifications.php:154 ../../mod/notifications.php:201 +msgid "if applicable" +msgstr "ef við á" + +#: ../../mod/notifications.php:157 ../../mod/notifications.php:204 +#: ../../mod/admin.php:694 +msgid "Approve" +msgstr "Samþykkja" + +#: ../../mod/notifications.php:177 +msgid "Claims to be known to you: " +msgstr "Þykist þekkja þig:" + +#: ../../mod/notifications.php:177 +msgid "yes" +msgstr "já" + +#: ../../mod/notifications.php:177 +msgid "no" +msgstr "nei" + +#: ../../mod/notifications.php:184 +msgid "Approve as: " +msgstr "Samþykkja sem:" + +#: ../../mod/notifications.php:185 +msgid "Friend" +msgstr "Vin" + +#: ../../mod/notifications.php:186 +msgid "Sharer" +msgstr "Deilir" + +#: ../../mod/notifications.php:186 +msgid "Fan/Admirer" +msgstr "Aðdáanda" + +#: ../../mod/notifications.php:192 +msgid "Friend/Connect Request" +msgstr "Vina/Tengi beiðni" + +#: ../../mod/notifications.php:192 +msgid "New Follower" +msgstr "Nýr fylgjandi" + +#: ../../mod/notifications.php:213 +msgid "No introductions." +msgstr "Engar kynningar." + +#: ../../mod/notifications.php:216 ../../include/nav.php:122 +msgid "Notifications" +msgstr "Tilkynningar" + +#: ../../mod/notifications.php:253 ../../mod/notifications.php:378 +#: ../../mod/notifications.php:465 +#, php-format +msgid "%s liked %s's post" +msgstr "%s líkaði færslu %s" + +#: ../../mod/notifications.php:262 ../../mod/notifications.php:387 +#: ../../mod/notifications.php:474 +#, php-format +msgid "%s disliked %s's post" +msgstr "%s mislíkaði færslu %s" + +#: ../../mod/notifications.php:276 ../../mod/notifications.php:401 +#: ../../mod/notifications.php:488 +#, php-format +msgid "%s is now friends with %s" +msgstr "%s er nú vinur %s" + +#: ../../mod/notifications.php:283 ../../mod/notifications.php:408 +#, php-format +msgid "%s created a new post" +msgstr "%s bjó til færslu" + +#: ../../mod/notifications.php:284 ../../mod/notifications.php:409 +#: ../../mod/notifications.php:497 +#, php-format +msgid "%s commented on %s's post" +msgstr "%s athugasemd við %s's færslu" + +#: ../../mod/notifications.php:298 +msgid "No more network notifications." +msgstr "Engar tilkynningar á neti." + +#: ../../mod/notifications.php:302 +msgid "Network Notifications" +msgstr "" + +#: ../../mod/notifications.php:328 ../../mod/notify.php:61 +msgid "No more system notifications." +msgstr "" + +#: ../../mod/notifications.php:332 ../../mod/notify.php:65 +msgid "System Notifications" +msgstr "" + +#: ../../mod/notifications.php:423 +msgid "No more personal notifications." +msgstr "Engar einka tilkynningar." + +#: ../../mod/notifications.php:427 +msgid "Personal Notifications" +msgstr "" + +#: ../../mod/notifications.php:504 +msgid "No more home notifications." +msgstr "Ekki fleiri heima tilkynningar" + +#: ../../mod/notifications.php:508 +msgid "Home Notifications" +msgstr "" + +#: ../../mod/contacts.php:84 ../../mod/contacts.php:164 +msgid "Could not access contact record." +msgstr "Tókst ekki að ná í uppl. um tengilið" + +#: ../../mod/contacts.php:98 +msgid "Could not locate selected profile." +msgstr "Tókst ekki að staðsetja valinn forsíðu" + +#: ../../mod/contacts.php:121 +msgid "Contact updated." +msgstr "Tengiliður uppfærður" + +#: ../../mod/contacts.php:186 +msgid "Contact has been blocked" +msgstr "Lokað á tengilið" + +#: ../../mod/contacts.php:186 +msgid "Contact has been unblocked" +msgstr "Opnað á tengilið" + +#: ../../mod/contacts.php:200 +msgid "Contact has been ignored" +msgstr "Tengiliður hunsaður" + +#: ../../mod/contacts.php:200 +msgid "Contact has been unignored" +msgstr "Tengiliður afhunsaður" + +#: ../../mod/contacts.php:216 +msgid "Contact has been archived" +msgstr "Tengiliður settur í geymslu" + +#: ../../mod/contacts.php:216 +msgid "Contact has been unarchived" +msgstr "Tengiliður tekinn úr geymslu" + +#: ../../mod/contacts.php:229 +msgid "Contact has been removed." +msgstr "Tengiliður fjarlægður" + +#: ../../mod/contacts.php:263 +#, php-format +msgid "You are mutual friends with %s" +msgstr "Þú ert gagnkvæmur vinur %s" + +#: ../../mod/contacts.php:267 +#, php-format +msgid "You are sharing with %s" +msgstr "Þú ert að deila með %s" + +#: ../../mod/contacts.php:272 +#, php-format +msgid "%s is sharing with you" +msgstr "%s er að deila með þér" + +#: ../../mod/contacts.php:289 +msgid "Private communications are not available for this contact." +msgstr "Einkasamtal ekki í boði fyrir þennan" + +#: ../../mod/contacts.php:292 +msgid "Never" +msgstr "aldrei" + +#: ../../mod/contacts.php:296 +msgid "(Update was successful)" +msgstr "(uppfærsla tókst)" + +#: ../../mod/contacts.php:296 +msgid "(Update was not successful)" +msgstr "(uppfærsla tókst ekki)" + +#: ../../mod/contacts.php:298 +msgid "Suggest friends" +msgstr "Stinga uppá vinum" + +#: ../../mod/contacts.php:302 +#, php-format +msgid "Network type: %s" +msgstr "Net tegund: %s" + +#: ../../mod/contacts.php:305 ../../include/contact_widgets.php:190 +#, php-format +msgid "%d contact in common" +msgid_plural "%d contacts in common" +msgstr[0] "%d tengiliður sameiginlegur" +msgstr[1] "%d tengiliðir sameiginlegir" + +#: ../../mod/contacts.php:310 +msgid "View all contacts" +msgstr "Skoða alla tengiliði" + +#: ../../mod/contacts.php:315 ../../mod/contacts.php:374 +#: ../../mod/admin.php:698 +msgid "Unblock" +msgstr "Afbanna" + +#: ../../mod/contacts.php:315 ../../mod/contacts.php:374 +#: ../../mod/admin.php:697 +msgid "Block" +msgstr "Banna" + +#: ../../mod/contacts.php:318 +msgid "Toggle Blocked status" +msgstr "" + +#: ../../mod/contacts.php:321 ../../mod/contacts.php:375 +msgid "Unignore" +msgstr "Byrja að fylgjast með á ný" + +#: ../../mod/contacts.php:324 +msgid "Toggle Ignored status" +msgstr "" + +#: ../../mod/contacts.php:328 +msgid "Unarchive" +msgstr "Taka úr geymslu" + +#: ../../mod/contacts.php:328 +msgid "Archive" +msgstr "Setja í geymslu" + +#: ../../mod/contacts.php:331 +msgid "Toggle Archive status" +msgstr "" + +#: ../../mod/contacts.php:334 +msgid "Repair" +msgstr "Gera við " + +#: ../../mod/contacts.php:337 +msgid "Advanced Contact Settings" +msgstr "" + +#: ../../mod/contacts.php:343 +msgid "Communications lost with this contact!" +msgstr "" + +#: ../../mod/contacts.php:346 +msgid "Contact Editor" +msgstr "Stilling tengiliðar" + +#: ../../mod/contacts.php:349 +msgid "Profile Visibility" +msgstr "Forsíðu sjáanleiki" + +#: ../../mod/contacts.php:350 +#, php-format +msgid "" +"Please choose the profile you would like to display to %s when viewing your " +"profile securely." +msgstr "Veldu forsíðu sem á að birtast %s þegar hann skoðaður með öruggum hætti" + +#: ../../mod/contacts.php:351 +msgid "Contact Information / Notes" +msgstr "Uppl. um tengilið / minnisatriði" + +#: ../../mod/contacts.php:352 +msgid "Edit contact notes" +msgstr "Breyta minnispunktum tengiliðs " + +#: ../../mod/contacts.php:357 ../../mod/contacts.php:549 +#: ../../mod/viewcontacts.php:62 ../../mod/nogroup.php:40 +#, php-format +msgid "Visit %s's profile [%s]" +msgstr "Heimsækja forsíðu %s [%s]" + +#: ../../mod/contacts.php:358 +msgid "Block/Unblock contact" +msgstr "útiloka/opna á tengilið" + +#: ../../mod/contacts.php:359 +msgid "Ignore contact" +msgstr "Hunsa tengilið" + +#: ../../mod/contacts.php:360 +msgid "Repair URL settings" +msgstr "Gera við slóð stillingar" + +#: ../../mod/contacts.php:361 +msgid "View conversations" +msgstr "Skoða samtöl" + +#: ../../mod/contacts.php:363 +msgid "Delete contact" +msgstr "Eyða tengilið" + +#: ../../mod/contacts.php:367 +msgid "Last update:" +msgstr "Síðasta uppfærsla:" + +#: ../../mod/contacts.php:369 +msgid "Update public posts" +msgstr "Uppfæra opinberar færslur" + +#: ../../mod/contacts.php:371 ../../mod/admin.php:1170 +msgid "Update now" +msgstr "Uppfæra núna" + +#: ../../mod/contacts.php:378 +msgid "Currently blocked" +msgstr "Útilokaður sem stendur" + +#: ../../mod/contacts.php:379 +msgid "Currently ignored" +msgstr "Hunsaður sem stendur" + +#: ../../mod/contacts.php:380 +msgid "Currently archived" +msgstr "Í geymslu" + +#: ../../mod/contacts.php:381 +msgid "" +"Replies/likes to your public posts may still be visible" +msgstr "Svör/\"likar við\" á þínar opinberar færslur geta mögulega verið sýnileg öðrum" + +#: ../../mod/contacts.php:434 +msgid "Suggestions" +msgstr "" + +#: ../../mod/contacts.php:437 +msgid "Suggest potential friends" +msgstr "" + +#: ../../mod/contacts.php:440 ../../mod/group.php:191 +msgid "All Contacts" +msgstr "Allir tengiliðir" + +#: ../../mod/contacts.php:443 +msgid "Show all contacts" +msgstr "Sýna alla tengiliði" + +#: ../../mod/contacts.php:446 +msgid "Unblocked" +msgstr "Afhunsað" + +#: ../../mod/contacts.php:449 +msgid "Only show unblocked contacts" +msgstr "" + +#: ../../mod/contacts.php:453 +msgid "Blocked" +msgstr "Banna" + +#: ../../mod/contacts.php:456 +msgid "Only show blocked contacts" +msgstr "" + +#: ../../mod/contacts.php:460 +msgid "Ignored" +msgstr "Hunsa" + +#: ../../mod/contacts.php:463 +msgid "Only show ignored contacts" +msgstr "" + +#: ../../mod/contacts.php:467 +msgid "Archived" +msgstr "Í geymslu" + +#: ../../mod/contacts.php:470 +msgid "Only show archived contacts" +msgstr "Aðeins sýna geymda tengiliði" + +#: ../../mod/contacts.php:474 +msgid "Hidden" +msgstr "Falinn" + +#: ../../mod/contacts.php:477 +msgid "Only show hidden contacts" +msgstr "Aðeins sýna falda tengiliði" + +#: ../../mod/contacts.php:525 +msgid "Mutual Friendship" +msgstr "Sameiginlegur vinskapur" + +#: ../../mod/contacts.php:529 +msgid "is a fan of yours" +msgstr "er aðdáandi þinn" + +#: ../../mod/contacts.php:533 +msgid "you are a fan of" +msgstr "þú er aðdáandi" + +#: ../../mod/contacts.php:550 ../../mod/nogroup.php:41 +msgid "Edit contact" +msgstr "Breyta tengilið" + +#: ../../mod/contacts.php:571 ../../view/theme/diabook/theme.php:129 +#: ../../include/nav.php:139 +msgid "Contacts" +msgstr "Tengiliðir" + +#: ../../mod/contacts.php:575 +msgid "Search your contacts" +msgstr "Leita í þínum vinum" + +#: ../../mod/contacts.php:576 ../../mod/directory.php:59 +msgid "Finding: " +msgstr "Niðurstöður:" + +#: ../../mod/contacts.php:577 ../../mod/directory.php:61 +#: ../../include/contact_widgets.php:33 +msgid "Find" +msgstr "Finna" + +#: ../../mod/lostpass.php:16 +msgid "No valid account found." +msgstr "Engin gildur aðgangur fannst." + +#: ../../mod/lostpass.php:32 +msgid "Password reset request issued. Check your email." +msgstr "Breyta lykilorði. Opnaðu tölvupóstinn þinn." + +#: ../../mod/lostpass.php:43 +#, php-format +msgid "Password reset requested at %s" +msgstr "Endurstilling aðgangsorðs umbeðin %s" + +#: ../../mod/lostpass.php:45 ../../mod/lostpass.php:107 +#: ../../mod/register.php:90 ../../mod/register.php:144 +#: ../../mod/regmod.php:54 ../../mod/dfrn_confirm.php:752 +#: ../../addon/facebook/facebook.php:702 +#: ../../addon/facebook/facebook.php:1200 ../../addon/fbpost/fbpost.php:661 +#: ../../addon/public_server/public_server.php:62 +#: ../../addon/testdrive/testdrive.php:67 ../../include/items.php:3296 +#: ../../boot.php:788 +msgid "Administrator" +msgstr "Kerfisstjóri" + +#: ../../mod/lostpass.php:65 +msgid "" +"Request could not be verified. (You may have previously submitted it.) " +"Password reset failed." +msgstr "Beiðni gat ekki verið sannreynd. (Það getur verið að þú hafir þegar sent hana.) Endurstilling á aðgangsorði tókst ekki." + +#: ../../mod/lostpass.php:83 ../../boot.php:925 +msgid "Password Reset" +msgstr "Endurstilling Aðgangsorðs" + +#: ../../mod/lostpass.php:84 +msgid "Your password has been reset as requested." +msgstr "Aðgangsorðið þitt hefur verið endurstilt." + +#: ../../mod/lostpass.php:85 +msgid "Your new password is" +msgstr "Nýja aðgangsorð þitt er " + +#: ../../mod/lostpass.php:86 +msgid "Save or copy your new password - and then" +msgstr "Vistaðu eða afritaðu nýja aðgangsorðið og" + +#: ../../mod/lostpass.php:87 +msgid "click here to login" +msgstr "smelltu hér til að skrá þig inn" + +#: ../../mod/lostpass.php:88 +msgid "" +"Your password may be changed from the Settings page after " +"successful login." +msgstr "Þú getur breytt aðgangsorðinu þínu á Stillingar síðunni eftir að þú hefur skráð þig inn." + +#: ../../mod/lostpass.php:119 +msgid "Forgot your Password?" +msgstr "Gleymdir þú lykilorði þínu?" + +#: ../../mod/lostpass.php:120 +msgid "" +"Enter your email address and submit to have your password reset. Then check " +"your email for further instructions." +msgstr "Sláðu inn tölvupóstfangið þitt til að endurstilla aðgangsorðið og fá leiðbeiningar sendar með tölvupósti." + +#: ../../mod/lostpass.php:121 +msgid "Nickname or Email: " +msgstr "Gælunafn eða póstfang:" + +#: ../../mod/lostpass.php:122 +msgid "Reset" +msgstr "Endursetja" + +#: ../../mod/settings.php:30 ../../include/nav.php:137 +msgid "Account settings" +msgstr "Notenda stillingar" + +#: ../../mod/settings.php:35 +msgid "Display settings" +msgstr "" + +#: ../../mod/settings.php:41 +msgid "Connector settings" +msgstr "Stillingar tengla" + +#: ../../mod/settings.php:46 +msgid "Plugin settings" +msgstr "Viðbóta stillingar" + +#: ../../mod/settings.php:51 +msgid "Connected apps" +msgstr "" + +#: ../../mod/settings.php:56 +msgid "Export personal data" +msgstr "Sækja persónuleg gögn" + +#: ../../mod/settings.php:61 +msgid "Remove account" +msgstr "Henda tengilið" + +#: ../../mod/settings.php:69 ../../mod/newmember.php:22 +#: ../../mod/admin.php:785 ../../mod/admin.php:990 +#: ../../addon/dav/friendica/layout.fnk.php:225 +#: ../../addon/mathjax/mathjax.php:36 ../../view/theme/diabook/theme.php:643 +#: ../../view/theme/diabook/theme.php:773 ../../include/nav.php:137 +msgid "Settings" +msgstr "Stillingar" + +#: ../../mod/settings.php:113 +msgid "Missing some important data!" +msgstr "Vantar mikilvæg gögn!" + +#: ../../mod/settings.php:116 ../../mod/settings.php:569 +msgid "Update" +msgstr "Uppfæra" + +#: ../../mod/settings.php:221 +msgid "Failed to connect with email account using the settings provided." +msgstr "Ekki tókst að tengjast við pósthólf með stillingum sem uppgefnar eru." + +#: ../../mod/settings.php:226 +msgid "Email settings updated." +msgstr "Stillingar póstfangs uppfærðar." + +#: ../../mod/settings.php:290 +msgid "Passwords do not match. Password unchanged." +msgstr "Aðgangsorð ber ekki saman. Aðgangsorð óbreytt." + +#: ../../mod/settings.php:295 +msgid "Empty passwords are not allowed. Password unchanged." +msgstr "Tóm aðgangsorð eru ekki leyfileg. Aðgangsorð óbreytt." + +#: ../../mod/settings.php:306 +msgid "Password changed." +msgstr "Aðgangsorði breytt." + +#: ../../mod/settings.php:308 +msgid "Password update failed. Please try again." +msgstr "Uppfærsla á aðgangsorði tókst ekki. Reyndu aftur." + +#: ../../mod/settings.php:373 +msgid " Please use a shorter name." +msgstr "Vinsamlegast nota styttra nafn." + +#: ../../mod/settings.php:375 +msgid " Name too short." +msgstr "Nafn of stutt." + +#: ../../mod/settings.php:381 +msgid " Not valid email." +msgstr "Póstfang ógilt" + +#: ../../mod/settings.php:383 +msgid " Cannot change to that email." +msgstr "Ekki hægt að breyta yfir í þetta póstfang." + +#: ../../mod/settings.php:437 +msgid "Private forum has no privacy permissions. Using default privacy group." +msgstr "" + +#: ../../mod/settings.php:441 +msgid "Private forum has no privacy permissions and no default privacy group." +msgstr "" + +#: ../../mod/settings.php:471 ../../addon/facebook/facebook.php:495 +#: ../../addon/fbpost/fbpost.php:144 ../../addon/impressum/impressum.php:78 +#: ../../addon/openstreetmap/openstreetmap.php:80 +#: ../../addon/mathjax/mathjax.php:66 ../../addon/piwik/piwik.php:105 +#: ../../addon/twitter/twitter.php:389 +msgid "Settings updated." +msgstr "Stillingar uppfærðar" + +#: ../../mod/settings.php:542 ../../mod/settings.php:568 +#: ../../mod/settings.php:604 +msgid "Add application" +msgstr "Bæta við forriti" + +#: ../../mod/settings.php:546 ../../mod/settings.php:572 +#: ../../addon/statusnet/statusnet.php:570 +msgid "Consumer Key" +msgstr "Notenda lykill" + +#: ../../mod/settings.php:547 ../../mod/settings.php:573 +#: ../../addon/statusnet/statusnet.php:569 +msgid "Consumer Secret" +msgstr "Notenda leyndarmál" + +#: ../../mod/settings.php:548 ../../mod/settings.php:574 +msgid "Redirect" +msgstr "Áframsenda" + +#: ../../mod/settings.php:549 ../../mod/settings.php:575 +msgid "Icon url" +msgstr "Táknmyndar slóð" + +#: ../../mod/settings.php:560 +msgid "You can't edit this application." +msgstr "Þú getur ekki breytt þessu forriti." + +#: ../../mod/settings.php:603 +msgid "Connected Apps" +msgstr "Tengd forr" + +#: ../../mod/settings.php:607 +msgid "Client key starts with" +msgstr "Lykill viðskiptavinar byrjar á" + +#: ../../mod/settings.php:608 +msgid "No name" +msgstr "Ekkert nafn" + +#: ../../mod/settings.php:609 +msgid "Remove authorization" +msgstr "Fjarlæga auðkenningu" + +#: ../../mod/settings.php:620 +msgid "No Plugin settings configured" +msgstr "Engar stillingar í einingu stilltar" + +#: ../../mod/settings.php:628 ../../addon/widgets/widgets.php:123 +msgid "Plugin Settings" +msgstr "Eininga stillingar" + +#: ../../mod/settings.php:640 ../../mod/settings.php:641 +#, php-format +msgid "Built-in support for %s connectivity is %s" +msgstr "Innbyggður stuðningur fyrir %s tenging er%s" + +#: ../../mod/settings.php:640 ../../mod/settings.php:641 +msgid "enabled" +msgstr "kveikt" + +#: ../../mod/settings.php:640 ../../mod/settings.php:641 +msgid "disabled" +msgstr "slökkt" + +#: ../../mod/settings.php:641 +msgid "StatusNet" +msgstr "StatusNet" + +#: ../../mod/settings.php:673 +msgid "Email access is disabled on this site." +msgstr "Slökkt hefur verið á tölvupóst aðgang á þessum þjón." + +#: ../../mod/settings.php:679 +msgid "Connector Settings" +msgstr "Stillingar tengils" + +#: ../../mod/settings.php:684 +msgid "Email/Mailbox Setup" +msgstr "Tölvupóstur stilling" + +#: ../../mod/settings.php:685 +msgid "" +"If you wish to communicate with email contacts using this service " +"(optional), please specify how to connect to your mailbox." +msgstr "Ef þú villt hafa samskipti við tölvupósts tengiliði með þessari þjónustu (valfrjálst), skilgreindu þá hvernig á að tengjast póstfanginu þínu." + +#: ../../mod/settings.php:686 +msgid "Last successful email check:" +msgstr "Póstfang sannreynt síðast:" + +#: ../../mod/settings.php:688 +msgid "IMAP server name:" +msgstr "IMAP þjónn:" + +#: ../../mod/settings.php:689 +msgid "IMAP port:" +msgstr "IMAP port:" + +#: ../../mod/settings.php:690 +msgid "Security:" +msgstr "Öryggi:" + +#: ../../mod/settings.php:690 ../../mod/settings.php:695 +#: ../../addon/dav/common/wdcal_edit.inc.php:191 +msgid "None" +msgstr "Ekkert" + +#: ../../mod/settings.php:691 +msgid "Email login name:" +msgstr "Póstfangs aðgangsnafn:" + +#: ../../mod/settings.php:692 +msgid "Email password:" +msgstr "Póstfangs aðgangsorð:" + +#: ../../mod/settings.php:693 +msgid "Reply-to address:" +msgstr "Póstfang sem svar berst á:" + +#: ../../mod/settings.php:694 +msgid "Send public posts to all email contacts:" +msgstr "Senda opinberar færslur á alla tölvupóst viðtakendur:" + +#: ../../mod/settings.php:695 +msgid "Action after import:" +msgstr "" + +#: ../../mod/settings.php:695 +msgid "Mark as seen" +msgstr "Merka sem séð" + +#: ../../mod/settings.php:695 +msgid "Move to folder" +msgstr "Flytja yfir í skrásafn" + +#: ../../mod/settings.php:696 +msgid "Move to folder:" +msgstr "Flytja yfir í skrásafn:" + +#: ../../mod/settings.php:727 ../../mod/admin.php:402 +msgid "No special theme for mobile devices" +msgstr "" + +#: ../../mod/settings.php:767 +msgid "Display Settings" +msgstr "" + +#: ../../mod/settings.php:773 ../../mod/settings.php:784 +msgid "Display Theme:" +msgstr "Útlits þema:" + +#: ../../mod/settings.php:774 +msgid "Mobile Theme:" +msgstr "" + +#: ../../mod/settings.php:775 +msgid "Update browser every xx seconds" +msgstr "Endurhlaða vefsíðu á xx sekúndu fresti" + +#: ../../mod/settings.php:775 +msgid "Minimum of 10 seconds, no maximum" +msgstr "Minnst 10 sekúndur, ekkert hámark" + +#: ../../mod/settings.php:776 +msgid "Number of items to display per page:" +msgstr "" + +#: ../../mod/settings.php:776 +msgid "Maximum of 100 items" +msgstr "" + +#: ../../mod/settings.php:777 +msgid "Don't show emoticons" +msgstr "" + +#: ../../mod/settings.php:853 +msgid "Normal Account Page" +msgstr "" + +#: ../../mod/settings.php:854 +msgid "This account is a normal personal profile" +msgstr "Þessi notandi er með venjulega persónulega forsíðu" + +#: ../../mod/settings.php:857 +msgid "Soapbox Page" +msgstr "" + +#: ../../mod/settings.php:858 +msgid "Automatically approve all connection/friend requests as read-only fans" +msgstr "Sjálfkrafa samþykkja allar tengi/vina beiðnir sem, einungis lestrar aðdáendur" + +#: ../../mod/settings.php:861 +msgid "Community Forum/Celebrity Account" +msgstr "" + +#: ../../mod/settings.php:862 +msgid "" +"Automatically approve all connection/friend requests as read-write fans" +msgstr "Sjálfkrafa samþykkja allar tengi/vina beiðnir, sem les og skriftar aðdáendur" + +#: ../../mod/settings.php:865 +msgid "Automatic Friend Page" +msgstr "" + +#: ../../mod/settings.php:866 +msgid "Automatically approve all connection/friend requests as friends" +msgstr "Sjálfkrafa samþykkja allar tengi/vina beiðnir sem vini" + +#: ../../mod/settings.php:869 +msgid "Private Forum [Experimental]" +msgstr "" + +#: ../../mod/settings.php:870 +msgid "Private forum - approved members only" +msgstr "" + +#: ../../mod/settings.php:882 +msgid "OpenID:" +msgstr "OpenID:" + +#: ../../mod/settings.php:882 +msgid "(Optional) Allow this OpenID to login to this account." +msgstr "(Valfrjálst) Leyfa þessu OpenID til að auðkennast sem þessi notandi." + +#: ../../mod/settings.php:892 +msgid "Publish your default profile in your local site directory?" +msgstr "Gefa út sjálfgefna forsíðu í tengiliðalista á þessum þjón?" + +#: ../../mod/settings.php:898 +msgid "Publish your default profile in the global social directory?" +msgstr "Gefa út sjálfgefna forsíðu í tengiliðalista á heimsvísu?" + +#: ../../mod/settings.php:906 +msgid "Hide your contact/friend list from viewers of your default profile?" +msgstr "Fela tengiliða/vina listann þinn frá áhorfendum á sjálfgefinni forsíðu?" + +#: ../../mod/settings.php:910 +msgid "Hide your profile details from unknown viewers?" +msgstr "Fela forsíðu upplýsingar fyrir óþekktum? " + +#: ../../mod/settings.php:915 +msgid "Allow friends to post to your profile page?" +msgstr "Leyfa vinum að deila á forsíðuna þína?" + +#: ../../mod/settings.php:921 +msgid "Allow friends to tag your posts?" +msgstr "Leyfa vinum að merkja þínar færslur?" + +#: ../../mod/settings.php:927 +msgid "Allow us to suggest you as a potential friend to new members?" +msgstr "Leyfa að stungið verði uppá þér sem hugsamlegum vinur fyrir aðra notendur? " + +#: ../../mod/settings.php:933 +msgid "Permit unknown people to send you private mail?" +msgstr "" + +#: ../../mod/settings.php:941 +msgid "Profile is not published." +msgstr "Forsíðu hefur ekki verið gefinn út." + +#: ../../mod/settings.php:944 ../../mod/profile_photo.php:248 +msgid "or" +msgstr "eða" + +#: ../../mod/settings.php:949 +msgid "Your Identity Address is" +msgstr "Þín auðkennis slóð er" + +#: ../../mod/settings.php:960 +msgid "Automatically expire posts after this many days:" +msgstr "Sjálfkrafa fyrna færslu eftir hvað marga daga:" + +#: ../../mod/settings.php:960 +msgid "If empty, posts will not expire. Expired posts will be deleted" +msgstr "Tómar færslur renna ekki út. Útrunnum færslum er eytt" + +#: ../../mod/settings.php:961 +msgid "Advanced expiration settings" +msgstr "Flóknar fyrningatíma stillingar" + +#: ../../mod/settings.php:962 +msgid "Advanced Expiration" +msgstr "Flókin fyrning" + +#: ../../mod/settings.php:963 +msgid "Expire posts:" +msgstr "Fyrna færslur:" + +#: ../../mod/settings.php:964 +msgid "Expire personal notes:" +msgstr "Fyrna einka glósur:" + +#: ../../mod/settings.php:965 +msgid "Expire starred posts:" +msgstr "Fyrna stjörnumerktar færslur:" + +#: ../../mod/settings.php:966 +msgid "Expire photos:" +msgstr "Fyrna myndum:" + +#: ../../mod/settings.php:967 +msgid "Only expire posts by others:" +msgstr "" + +#: ../../mod/settings.php:974 +msgid "Account Settings" +msgstr "Notenda stillingar" + +#: ../../mod/settings.php:982 +msgid "Password Settings" +msgstr "Aðgangsorða stillingar" + +#: ../../mod/settings.php:983 +msgid "New Password:" +msgstr "Nýtt aðgangsorð:" + +#: ../../mod/settings.php:984 +msgid "Confirm:" +msgstr "Staðfesta:" + +#: ../../mod/settings.php:984 +msgid "Leave password fields blank unless changing" +msgstr "Hafðu aðgangsorða svæði tóm nema þegar verið er að breyta" + +#: ../../mod/settings.php:988 +msgid "Basic Settings" +msgstr "Grunn stillingar" + +#: ../../mod/settings.php:989 ../../include/profile_advanced.php:15 +msgid "Full Name:" +msgstr "Fullt nafn:" + +#: ../../mod/settings.php:990 +msgid "Email Address:" +msgstr "Póstfang:" + +#: ../../mod/settings.php:991 +msgid "Your Timezone:" +msgstr "Þitt tímabelti:" + +#: ../../mod/settings.php:992 +msgid "Default Post Location:" +msgstr "Sjálfgefin staðsetning færslu:" + +#: ../../mod/settings.php:993 +msgid "Use Browser Location:" +msgstr "Nota vafra staðsetningu:" + +#: ../../mod/settings.php:996 +msgid "Security and Privacy Settings" +msgstr "Öryggis og næðis stillingar" + +#: ../../mod/settings.php:998 +msgid "Maximum Friend Requests/Day:" +msgstr "Hámarks vinabeiðnir á dag:" + +#: ../../mod/settings.php:998 ../../mod/settings.php:1017 +msgid "(to prevent spam abuse)" +msgstr "(til að koma í veg fyrir rusl misnotkun)" + +#: ../../mod/settings.php:999 +msgid "Default Post Permissions" +msgstr "Sjálfgefnar aðgangstýring á færslum" + +#: ../../mod/settings.php:1000 +msgid "(click to open/close)" +msgstr "(ýttu á til að opna/loka)" + +#: ../../mod/settings.php:1017 +msgid "Maximum private messages per day from unknown people:" +msgstr "" + +#: ../../mod/settings.php:1020 +msgid "Notification Settings" +msgstr "Tilkynninga stillingar" + +#: ../../mod/settings.php:1021 +msgid "By default post a status message when:" +msgstr "" + +#: ../../mod/settings.php:1022 +msgid "accepting a friend request" +msgstr "" + +#: ../../mod/settings.php:1023 +msgid "joining a forum/community" +msgstr "ganga til liðs við hóp/samfélag" + +#: ../../mod/settings.php:1024 +msgid "making an interesting profile change" +msgstr "" + +#: ../../mod/settings.php:1025 +msgid "Send a notification email when:" +msgstr "Senda tilkynninga tölvupóst þegar:" + +#: ../../mod/settings.php:1026 +msgid "You receive an introduction" +msgstr "Þú færð kynningu" + +#: ../../mod/settings.php:1027 +msgid "Your introductions are confirmed" +msgstr "Þínar kynningar eru samþykktar" + +#: ../../mod/settings.php:1028 +msgid "Someone writes on your profile wall" +msgstr "Einhver skrifar á vegginn þínn" + +#: ../../mod/settings.php:1029 +msgid "Someone writes a followup comment" +msgstr "Einhver skrifar athugasemd á færslu hjá þér" + +#: ../../mod/settings.php:1030 +msgid "You receive a private message" +msgstr "Þú færð einkaskilaboð" + +#: ../../mod/settings.php:1031 +msgid "You receive a friend suggestion" +msgstr "Þér hefur borist vina uppástunga" + +#: ../../mod/settings.php:1032 +msgid "You are tagged in a post" +msgstr "Þú varst merkt(ur) í færslu" + +#: ../../mod/settings.php:1033 +msgid "You are poked/prodded/etc. in a post" +msgstr "" + +#: ../../mod/settings.php:1036 +msgid "Advanced Account/Page Type Settings" +msgstr "" + +#: ../../mod/settings.php:1037 +msgid "Change the behaviour of this account for special situations" +msgstr "" + +#: ../../mod/manage.php:91 +msgid "Manage Identities and/or Pages" +msgstr "Sýsla með notendur og/eða síður" + +#: ../../mod/manage.php:94 +msgid "" +"Toggle between different identities or community/group pages which share " +"your account details or which you have been granted \"manage\" permissions" +msgstr "Skipta á milli auðkenna eða hópa- / stjörnunotanda sem deila þínum aðgangs upplýsingum eða þér verið úthlutað \"umsýslu\" réttindum." + +#: ../../mod/manage.php:96 +msgid "Select an identity to manage: " +msgstr "Veldu notanda til að sýsla með:" + +#: ../../mod/network.php:97 +msgid "Search Results For:" +msgstr "Leitar niðurstöður fyrir:" + +#: ../../mod/network.php:137 ../../mod/search.php:16 +msgid "Remove term" +msgstr "Fjarlæga gildi" + +#: ../../mod/network.php:146 ../../mod/search.php:13 +msgid "Saved Searches" +msgstr "Vistaðar leitir" + +#: ../../mod/network.php:147 ../../include/group.php:244 +msgid "add" +msgstr "bæta við" + +#: ../../mod/network.php:287 +msgid "Commented Order" +msgstr "Athugasemdar röð" + +#: ../../mod/network.php:290 +msgid "Sort by Comment Date" +msgstr "Raða eftir umræðu dagsetningu" + +#: ../../mod/network.php:293 +msgid "Posted Order" +msgstr "Færlsu röð" + +#: ../../mod/network.php:296 +msgid "Sort by Post Date" +msgstr "Raða eftir færslu dagsetningu" + +#: ../../mod/network.php:303 +msgid "Posts that mention or involve you" +msgstr "Færslur sem tengjast þér" + +#: ../../mod/network.php:306 +msgid "New" +msgstr "Ný" + +#: ../../mod/network.php:309 +msgid "Activity Stream - by date" +msgstr "Færslu straumur - raðað eftir dagsetningu" + +#: ../../mod/network.php:312 +msgid "Starred" +msgstr "Stjörnumerkt" + +#: ../../mod/network.php:315 +msgid "Favourite Posts" +msgstr "Uppáhalds færslur" + +#: ../../mod/network.php:318 +msgid "Shared Links" +msgstr "" + +#: ../../mod/network.php:321 +msgid "Interesting Links" +msgstr "Áhugaverðir hlekkir" + +#: ../../mod/network.php:388 +#, 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] "Aðvörun: Þessi hópur inniheldur %s notanda frá óöruggu neti." +msgstr[1] "Aðvörun: Þessi hópur inniheldur %s notendur frá óöruggu neti." + +#: ../../mod/network.php:391 +msgid "Private messages to this group are at risk of public disclosure." +msgstr "Einka samtöl send á þennan hóp eiga á hættu að verða opinber." + +#: ../../mod/network.php:461 +msgid "Contact: " +msgstr "Tengiliður:" + +#: ../../mod/network.php:463 +msgid "Private messages to this person are at risk of public disclosure." +msgstr "Einka skilaboð send á þennan notanda eiga á hættu að verða opinber." + +#: ../../mod/network.php:468 +msgid "Invalid contact." +msgstr "Ógildur tengiliður." + +#: ../../mod/notes.php:44 ../../boot.php:1696 +msgid "Personal Notes" +msgstr "Persónulegar glósur" + +#: ../../mod/notes.php:63 ../../mod/filer.php:30 +#: ../../addon/facebook/facebook.php:770 +#: ../../addon/privacy_image_cache/privacy_image_cache.php:263 +#: ../../addon/fbpost/fbpost.php:267 +#: ../../addon/dav/friendica/layout.fnk.php:441 +#: ../../addon/dav/friendica/layout.fnk.php:488 ../../include/text.php:681 +msgid "Save" +msgstr "Vista" + +#: ../../mod/wallmessage.php:42 ../../mod/wallmessage.php:112 +#, php-format +msgid "Number of daily wall messages for %s exceeded. Message failed." +msgstr "" + +#: ../../mod/wallmessage.php:56 ../../mod/message.php:59 +msgid "No recipient selected." +msgstr "Engir viðtakendur valdir." + +#: ../../mod/wallmessage.php:59 +msgid "Unable to check your home location." +msgstr "" + +#: ../../mod/wallmessage.php:62 ../../mod/message.php:66 +msgid "Message could not be sent." +msgstr "Ekki tókst að senda skilaboð." + +#: ../../mod/wallmessage.php:65 ../../mod/message.php:69 +msgid "Message collection failure." +msgstr "Ekki tókst að sækja skilaboð." + +#: ../../mod/wallmessage.php:68 ../../mod/message.php:72 +msgid "Message sent." +msgstr "Skilaboð send." + +#: ../../mod/wallmessage.php:86 ../../mod/wallmessage.php:95 +msgid "No recipient." +msgstr "" + +#: ../../mod/wallmessage.php:123 ../../mod/wallmessage.php:131 +#: ../../mod/message.php:242 ../../mod/message.php:250 +#: ../../include/conversation.php:1205 ../../include/conversation.php:1222 +msgid "Please enter a link URL:" +msgstr "Sláðu inn slóð:" + +#: ../../mod/wallmessage.php:138 ../../mod/message.php:278 +msgid "Send Private Message" +msgstr "Senda einkaskilaboð" + +#: ../../mod/wallmessage.php:139 +#, php-format +msgid "" +"If you wish for %s to respond, please check that the privacy settings on " +"your site allow private mail from unknown senders." +msgstr "" + +#: ../../mod/wallmessage.php:140 ../../mod/message.php:279 +#: ../../mod/message.php:469 +msgid "To:" +msgstr "Til:" + +#: ../../mod/wallmessage.php:141 ../../mod/message.php:284 +#: ../../mod/message.php:471 +msgid "Subject:" +msgstr "Efni:" + +#: ../../mod/wallmessage.php:147 ../../mod/message.php:288 +#: ../../mod/message.php:474 ../../mod/invite.php:113 +msgid "Your message:" +msgstr "Skilaboðin:" + +#: ../../mod/newmember.php:6 +msgid "Welcome to Friendica" +msgstr "Velkomin(n) á Friendica" + +#: ../../mod/newmember.php:8 +msgid "New Member Checklist" +msgstr "Nýr notandi verklisti" + +#: ../../mod/newmember.php:12 +msgid "" +"We would like to offer some tips and links to help make your experience " +"enjoyable. Click any item to visit the relevant page. A link to this page " +"will be visible from your home page for two weeks after your initial " +"registration and then will quietly disappear." +msgstr "" + +#: ../../mod/newmember.php:14 +msgid "Getting Started" +msgstr "" + +#: ../../mod/newmember.php:18 +msgid "Friendica Walk-Through" +msgstr "" + +#: ../../mod/newmember.php:18 +msgid "" +"On your Quick Start page - find a brief introduction to your " +"profile and network tabs, make some new connections, and find some groups to" +" join." +msgstr "" + +#: ../../mod/newmember.php:26 +msgid "Go to Your Settings" +msgstr "" + +#: ../../mod/newmember.php:26 +msgid "" +"On your 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 "" + +#: ../../mod/newmember.php:28 +msgid "" +"Review the other settings, particularly the privacy settings. An unpublished" +" directory listing is like having an unlisted phone number. In general, you " +"should probably publish your listing - unless all of your friends and " +"potential friends know exactly how to find you." +msgstr "Yfirfarðu aðrar stillingar, sérstaklega næðis stillingar. Óútgefin forsíða er einsog óskráð símanúmer. Sem þýðir að líklega viltu gefa út forsíðuna þína - nema allir vinir þínir og tilvonandi vinir vita nákvæmlega hvernig á að finna þig." + +#: ../../mod/newmember.php:32 ../../mod/profperm.php:103 +#: ../../view/theme/diabook/theme.php:128 ../../include/profile_advanced.php:7 +#: ../../include/profile_advanced.php:84 ../../include/nav.php:50 +#: ../../boot.php:1672 +msgid "Profile" +msgstr "Forsíða" + +#: ../../mod/newmember.php:36 ../../mod/profile_photo.php:244 +msgid "Upload Profile Photo" +msgstr "Hlaða upp forsíðu mynd" + +#: ../../mod/newmember.php:36 +msgid "" +"Upload a profile photo if you have not done so already. Studies have shown " +"that people with real photos of themselves are ten times more likely to make" +" friends than people who do not." +msgstr "Að hlaða upp forsíðu mynd ef þú hefur ekki þegar gert það. Rannsóknir sýna að fólk sem hefur alvöru mynd af sér er tíu sinnum líklegra til að eignast vini en fólk sem ekki hefur mynd." + +#: ../../mod/newmember.php:38 +msgid "Edit Your Profile" +msgstr "" + +#: ../../mod/newmember.php:38 +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 "Breyttu sjálfgefnu forsíðunni einsog þú villt. Yfirfarðu stillingu til að fela vinalista á forsíðu og stillingu til að fela forsíðu fyrir ókunnum." + +#: ../../mod/newmember.php:40 +msgid "Profile Keywords" +msgstr "" + +#: ../../mod/newmember.php:40 +msgid "" +"Set some public keywords for your default profile which describe your " +"interests. We may be able to find other people with similar interests and " +"suggest friendships." +msgstr "Bættu við leitarorðum í sjálfgefnu forsíðuna þína sem lýsa þínum áhugamálum. Þá er hægt að fólk með svipuð áhugamál og stinga uppá vinskap." + +#: ../../mod/newmember.php:44 +msgid "Connecting" +msgstr "" + +#: ../../mod/newmember.php:49 ../../mod/newmember.php:51 +#: ../../addon/facebook/facebook.php:728 ../../addon/fbpost/fbpost.php:239 +#: ../../include/contact_selectors.php:81 +msgid "Facebook" +msgstr "Facebook" + +#: ../../mod/newmember.php:49 +msgid "" +"Authorise the Facebook Connector if you currently have a Facebook account " +"and we will (optionally) import all your Facebook friends and conversations." +msgstr "Gefðu aðgang að Facebook tengingunni ef þú þegar hefur Facebook aðgang og þá er hægt (valfrjálst) að nálgast alla vini og samtöl á Facebook." + +#: ../../mod/newmember.php:51 +msgid "" +"If this is your own personal server, installing the Facebook addon " +"may ease your transition to the free social web." +msgstr "" + +#: ../../mod/newmember.php:56 +msgid "Importing Emails" +msgstr "" + +#: ../../mod/newmember.php:56 +msgid "" +"Enter your email access information on your Connector Settings page if you " +"wish to import and interact with friends or mailing lists from your email " +"INBOX" +msgstr "Fylltu út póstfangs tengi upplýsingar í Tengla stillinga síðuna ef þú villt sækja tölvupóst og eiga samskipti við vini eða póstlista úr tölvupóst innhólfinu þínu" + +#: ../../mod/newmember.php:58 +msgid "Go to Your Contacts Page" +msgstr "" + +#: ../../mod/newmember.php:58 +msgid "" +"Your Contacts page is your gateway to managing friendships and connecting " +"with friends on other networks. Typically you enter their address or site " +"URL in the Add New Contact dialog." +msgstr "Tengiliða síðan er gáttin þín til að sýsla með vina sambönd og tengjast við vini á öðrum netum. Oftast setur þú vistfangi eða slóð þeirra í Bæta við tengilið gluggan." + +#: ../../mod/newmember.php:60 +msgid "Go to Your Site's Directory" +msgstr "" + +#: ../../mod/newmember.php:60 +msgid "" +"The Directory page lets you find other people in this network or other " +"federated sites. Look for a Connect or Follow link on " +"their profile page. Provide your own Identity Address if requested." +msgstr "Tengiliðalistinn er góð leit til að finna fólk á samfélagsnetinu eða öðrum sambandsnetum. Leitaðu að Connect eða Follow hlekk á forsíðunni þeirra. Mögulega þarf að gefa upp þína auðkenna slóð." + +#: ../../mod/newmember.php:62 +msgid "Finding New People" +msgstr "" + +#: ../../mod/newmember.php:62 +msgid "" +"On the side panel of the Contacts page are several tools to find new " +"friends. We can match people by interest, look up people by name or " +"interest, and provide suggestions based on network relationships. On a brand" +" new site, friend suggestions will usually begin to be populated within 24 " +"hours." +msgstr "" + +#: ../../mod/newmember.php:66 ../../include/group.php:239 +msgid "Groups" +msgstr "Hópar" + +#: ../../mod/newmember.php:70 +msgid "Group Your Contacts" +msgstr "" + +#: ../../mod/newmember.php:70 +msgid "" +"Once you have made some friends, organize them into private conversation " +"groups from the sidebar of your Contacts page and then you can interact with" +" each group privately on your Network page." +msgstr "Eftir að þú hefur eignast nokkra vini, þá er best að flokka þá niður í hópa á hliðar slánni á Tengiliða síðunni. Eftir það getur þú haft samskipti við hvern hóp fyrir sig á Samfélags síðunni." + +#: ../../mod/newmember.php:73 +msgid "Why Aren't My Posts Public?" +msgstr "" + +#: ../../mod/newmember.php:73 +msgid "" +"Friendica respects your privacy. By default, your posts will only show up to" +" people you've added as friends. For more information, see the help section " +"from the link above." +msgstr "" + +#: ../../mod/newmember.php:78 +msgid "Getting Help" +msgstr "" + +#: ../../mod/newmember.php:82 +msgid "Go to the Help Section" +msgstr "" + +#: ../../mod/newmember.php:82 +msgid "" +"Our help pages may be consulted for detail on other program" +" features and resources." +msgstr "Hægt er að styðjast við Hjálp síðuna til að fá leiðbeiningar um aðra eiginleika." + +#: ../../mod/attach.php:8 +msgid "Item not available." +msgstr "Atriði ekki í boði." + +#: ../../mod/attach.php:20 +msgid "Item was not found." +msgstr "Atriði fannst ekki" + +#: ../../mod/group.php:29 +msgid "Group created." +msgstr "Hópur stofnaður" + +#: ../../mod/group.php:35 +msgid "Could not create group." +msgstr "Gat ekki stofnað hóp." + +#: ../../mod/group.php:47 ../../mod/group.php:137 +msgid "Group not found." +msgstr "Hópur fannst ekki." + +#: ../../mod/group.php:60 +msgid "Group name changed." +msgstr "Hópur endurskýrður." + +#: ../../mod/group.php:72 ../../mod/profperm.php:19 ../../index.php:316 +msgid "Permission denied" +msgstr "Bannaður aðgangur" + +#: ../../mod/group.php:90 +msgid "Create a group of contacts/friends." +msgstr "Stofna hóp af tengiliðum/vinum" + +#: ../../mod/group.php:91 ../../mod/group.php:177 +msgid "Group Name: " +msgstr "Nafn hóps:" + +#: ../../mod/group.php:110 +msgid "Group removed." +msgstr "Hópi eytt." + +#: ../../mod/group.php:112 +msgid "Unable to remove group." +msgstr "Ekki tókst að eyða hóp." + +#: ../../mod/group.php:176 +msgid "Group Editor" +msgstr "Hópa sýslari" + +#: ../../mod/group.php:189 +msgid "Members" +msgstr "Aðilar" + +#: ../../mod/group.php:221 ../../mod/profperm.php:105 +msgid "Click on a contact to add or remove." +msgstr "Ýttu á tengili til að bæta við hóp eða taka úr hóp." + +#: ../../mod/profperm.php:25 ../../mod/profperm.php:55 +msgid "Invalid profile identifier." +msgstr "Ógilt tengiliða auðkenni" + +#: ../../mod/profperm.php:101 +msgid "Profile Visibility Editor" +msgstr "Sýsla með sjáanleika forsíðu" + +#: ../../mod/profperm.php:114 +msgid "Visible To" +msgstr "Sjáanlegur hverjum" + +#: ../../mod/profperm.php:130 +msgid "All Contacts (with secure profile access)" +msgstr "Allir tengiliðir (með öruggann aðgang að forsíðu)" + +#: ../../mod/viewcontacts.php:39 +msgid "No contacts." +msgstr "Enginn tengiliður" + +#: ../../mod/viewcontacts.php:76 ../../include/text.php:618 +msgid "View Contacts" +msgstr "Skoða tengiliði" + +#: ../../mod/register.php:88 ../../mod/regmod.php:52 +#, php-format +msgid "Registration details for %s" +msgstr "Nýskráningar upplýsingar fyrir %s" + +#: ../../mod/register.php:96 +msgid "" +"Registration successful. Please check your email for further instructions." +msgstr "Nýskráning tóks. Frekari fyrirmæli voru send í tölvupósti." + +#: ../../mod/register.php:100 +msgid "Failed to send email message. Here is the message that failed." +msgstr "Ekki tókst að senda tölvupóst skeyti. Hér er skeytið sem ekki tókst að senda." + +#: ../../mod/register.php:105 +msgid "Your registration can not be processed." +msgstr "Skráninguna þína er ekki hægt að vinna." + +#: ../../mod/register.php:142 +#, php-format +msgid "Registration request at %s" +msgstr "Skráningar beiðni á %s" + +#: ../../mod/register.php:151 +msgid "Your registration is pending approval by the site owner." +msgstr "Skráningin þín bíður samþykkis af eiganda síðunnar." + +#: ../../mod/register.php:189 +msgid "" +"This site has exceeded the number of allowed daily account registrations. " +"Please try again tomorrow." +msgstr "Þessi vefur hefur náð hámarks fjölda daglegra nýskráninga. Reyndu aftur á morgun." + +#: ../../mod/register.php:217 +msgid "" +"You may (optionally) fill in this form via OpenID by supplying your OpenID " +"and clicking 'Register'." +msgstr "Þú mátt (valfrjálst) fylla í þetta svæði gegnum OpenID með því gefa upp þitt OpenID og ýta á 'Skrá'." + +#: ../../mod/register.php:218 +msgid "" +"If you are not familiar with OpenID, please leave that field blank and fill " +"in the rest of the items." +msgstr "Ef þú veist ekki hvað OpenID er, skildu þá þetta svæði eftir tómt en fylltu í restin af svæðunum." + +#: ../../mod/register.php:219 +msgid "Your OpenID (optional): " +msgstr "Þitt OpenID (valfrjálst):" + +#: ../../mod/register.php:233 +msgid "Include your profile in member directory?" +msgstr "Á forsíðan þín að sjást í notendalistanum?" + +#: ../../mod/register.php:255 +msgid "Membership on this site is by invitation only." +msgstr "Aðild að þessum vef er " + +#: ../../mod/register.php:256 +msgid "Your invitation ID: " +msgstr "Boðskorta auðkenni:" + +#: ../../mod/register.php:259 ../../mod/admin.php:444 +msgid "Registration" +msgstr "Nýskráning" + +#: ../../mod/register.php:267 +msgid "Your Full Name (e.g. Joe Smith): " +msgstr "Full nafn (t.d. Jón Jónsson):" + +#: ../../mod/register.php:268 +msgid "Your Email Address: " +msgstr "Tölvupóstur:" + +#: ../../mod/register.php:269 +msgid "" +"Choose a profile nickname. This must begin with a text character. Your " +"profile address on this site will then be " +"'nickname@$sitename'." +msgstr "Veldu gælunafn. Verður að byrja á staf. Slóðin þín á þessum vef verður síðan 'gælunafn@$sitename'." + +#: ../../mod/register.php:270 +msgid "Choose a nickname: " +msgstr "Veldu gælunafn:" + +#: ../../mod/register.php:273 ../../include/nav.php:81 ../../boot.php:887 +msgid "Register" +msgstr "Nýskrá" + +#: ../../mod/dirfind.php:26 +msgid "People Search" +msgstr "Leita af fólki" + +#: ../../mod/like.php:145 ../../mod/like.php:298 ../../mod/tagger.php:62 +#: ../../addon/facebook/facebook.php:1598 +#: ../../addon/communityhome/communityhome.php:158 +#: ../../addon/communityhome/communityhome.php:167 +#: ../../view/theme/diabook/theme.php:565 +#: ../../view/theme/diabook/theme.php:574 ../../include/diaspora.php:1824 +#: ../../include/conversation.php:120 ../../include/conversation.php:129 +#: ../../include/conversation.php:248 ../../include/conversation.php:257 +msgid "status" +msgstr "staða" + +#: ../../mod/like.php:162 ../../addon/facebook/facebook.php:1602 +#: ../../addon/communityhome/communityhome.php:172 +#: ../../view/theme/diabook/theme.php:579 ../../include/diaspora.php:1840 +#: ../../include/conversation.php:136 +#, php-format +msgid "%1$s likes %2$s's %3$s" +msgstr "%1$s lýkar við %3$s hjá %2$s " + +#: ../../mod/like.php:164 ../../include/conversation.php:139 +#, php-format +msgid "%1$s doesn't like %2$s's %3$s" +msgstr "%1$s líkar ekki við %3$s hjá %2$s " + +#: ../../mod/notice.php:15 ../../mod/viewsrc.php:15 ../../mod/admin.php:159 +#: ../../mod/admin.php:734 ../../mod/admin.php:933 ../../mod/display.php:29 +#: ../../mod/display.php:145 ../../include/items.php:3774 +msgid "Item not found." +msgstr "Atriði fannst ekki." + +#: ../../mod/viewsrc.php:7 +msgid "Access denied." +msgstr "Aðgangi hafnað" + +#: ../../mod/fbrowser.php:25 ../../view/theme/diabook/theme.php:130 +#: ../../include/nav.php:51 ../../boot.php:1679 +msgid "Photos" +msgstr "Myndir" + +#: ../../mod/fbrowser.php:96 +msgid "Files" +msgstr "Skrár" + +#: ../../mod/regmod.php:61 +msgid "Account approved." +msgstr "Notandi samþykktur." + +#: ../../mod/regmod.php:98 +#, php-format +msgid "Registration revoked for %s" +msgstr "Skráning afturköllurð vegna %s" + +#: ../../mod/regmod.php:110 +msgid "Please login." +msgstr "Skráðu yður inn." + +#: ../../mod/item.php:91 +msgid "Unable to locate original post." +msgstr "Ekki tókst að finna upphaflega færslu." + +#: ../../mod/item.php:275 +msgid "Empty post discarded." +msgstr "Tóm færsla eytt." + +#: ../../mod/item.php:407 ../../mod/wall_upload.php:133 +#: ../../mod/wall_upload.php:142 ../../mod/wall_upload.php:149 +#: ../../include/message.php:144 +msgid "Wall Photos" +msgstr "Veggmyndir" + +#: ../../mod/item.php:820 +msgid "System error. Post not saved." +msgstr "Kerfisvilla. Færsla ekki vistuð." + +#: ../../mod/item.php:845 +#, php-format +msgid "" +"This message was sent to you by %s, a member of the Friendica social " +"network." +msgstr "Skilaboðið sendi %s, notandi á Friendica samfélagsnetinu." + +#: ../../mod/item.php:847 +#, php-format +msgid "You may visit them online at %s" +msgstr "Þú getur heimsótt þau á netinu á %s" + +#: ../../mod/item.php:848 +msgid "" +"Please contact the sender by replying to this post if you do not wish to " +"receive these messages." +msgstr "Hafðu samband við sendanda með því að svara á þessari færslu ef þú villt ekki fá þessi skilaboð." + +#: ../../mod/item.php:850 +#, php-format +msgid "%s posted an update." +msgstr "%s hefur sent uppfærslu." + +#: ../../mod/mood.php:62 ../../include/conversation.php:226 +#, php-format +msgid "%1$s is currently %2$s" +msgstr "" + +#: ../../mod/mood.php:133 +msgid "Mood" +msgstr "" + +#: ../../mod/mood.php:134 +msgid "Set your current mood and tell your friends" +msgstr "" + +#: ../../mod/profile_photo.php:44 +msgid "Image uploaded but image cropping failed." +msgstr "Tókst að hala upp mynd en afskurður tókst ekki." + +#: ../../mod/profile_photo.php:77 ../../mod/profile_photo.php:84 +#: ../../mod/profile_photo.php:91 ../../mod/profile_photo.php:308 +#, php-format +msgid "Image size reduction [%s] failed." +msgstr "Myndar minnkun [%s] tókst ekki." + +#: ../../mod/profile_photo.php:118 +msgid "" +"Shift-reload the page or clear browser cache if the new photo does not " +"display immediately." +msgstr "Ýta þarf á " + +#: ../../mod/profile_photo.php:128 +msgid "Unable to process image" +msgstr "Ekki tókst að vinna mynd" + +#: ../../mod/profile_photo.php:144 ../../mod/wall_upload.php:88 +#, php-format +msgid "Image exceeds size limit of %d" +msgstr "Mynd stærri en takmörkunin %d" + +#: ../../mod/profile_photo.php:242 +msgid "Upload File:" +msgstr "Hlaða upp skrá:" + +#: ../../mod/profile_photo.php:243 +msgid "Select a profile:" +msgstr "" + +#: ../../mod/profile_photo.php:245 +#: ../../addon/dav/friendica/layout.fnk.php:152 +msgid "Upload" +msgstr "Hlaða upp" + +#: ../../mod/profile_photo.php:248 +msgid "skip this step" +msgstr "sleppa þessu skrefi" + +#: ../../mod/profile_photo.php:248 +msgid "select a photo from your photo albums" +msgstr "velja mynd í myndabókum" + +#: ../../mod/profile_photo.php:262 +msgid "Crop Image" +msgstr "Skera af mynd" + +#: ../../mod/profile_photo.php:263 +msgid "Please adjust the image cropping for optimum viewing." +msgstr "Stilltu afskurð fyrir besta birtingu." + +#: ../../mod/profile_photo.php:265 +msgid "Done Editing" +msgstr "Breyting kláruð" + +#: ../../mod/profile_photo.php:299 +msgid "Image uploaded successfully." +msgstr "Upphölun á mynd tóks." + +#: ../../mod/hcard.php:10 +msgid "No profile" +msgstr "Engin forsíða" + +#: ../../mod/removeme.php:45 ../../mod/removeme.php:48 +msgid "Remove My Account" +msgstr "Eyða þessum notanda" + +#: ../../mod/removeme.php:46 +msgid "" +"This will completely remove your account. Once this has been done it is not " +"recoverable." +msgstr "Þetta mun algjörlega eyða notandanum. Þegar þetta hefur verið gert er þetta ekki afturkræft." + +#: ../../mod/removeme.php:47 +msgid "Please enter your password for verification:" +msgstr "Sláðu inn aðgangsorð yðar:" + +#: ../../mod/message.php:9 ../../include/nav.php:131 +msgid "New Message" +msgstr "Ný skilaboð" + +#: ../../mod/message.php:63 +msgid "Unable to locate contact information." +msgstr "Ekki tókst að staðsetja tengiliðs upplýsingar." + +#: ../../mod/message.php:191 +msgid "Message deleted." +msgstr "Skilaboðum eytt." + +#: ../../mod/message.php:221 +msgid "Conversation removed." +msgstr "Samtali eytt." + +#: ../../mod/message.php:327 +msgid "No messages." +msgstr "Engin skilaboð." + +#: ../../mod/message.php:334 +#, php-format +msgid "Unknown sender - %s" +msgstr "" + +#: ../../mod/message.php:337 +#, php-format +msgid "You and %s" +msgstr "" + +#: ../../mod/message.php:340 +#, php-format +msgid "%s and You" +msgstr "" + +#: ../../mod/message.php:350 ../../mod/message.php:462 +msgid "Delete conversation" +msgstr "Eyða samtali" + +#: ../../mod/message.php:353 +msgid "D, d M Y - g:i A" +msgstr "" + +#: ../../mod/message.php:356 +#, php-format +msgid "%d message" +msgid_plural "%d messages" +msgstr[0] "" +msgstr[1] "" + +#: ../../mod/message.php:391 +msgid "Message not available." +msgstr "Ekki næst í skilaboð." + +#: ../../mod/message.php:444 +msgid "Delete message" +msgstr "Eyða skilaboðum" + +#: ../../mod/message.php:464 +msgid "" +"No secure communications available. You may be able to " +"respond from the sender's profile page." +msgstr "" + +#: ../../mod/message.php:468 +msgid "Send Reply" +msgstr "Senda svar" + +#: ../../mod/allfriends.php:34 +#, php-format +msgid "Friends of %s" +msgstr "Vinir %s" + +#: ../../mod/allfriends.php:40 +msgid "No friends to display." +msgstr "Engir vinir til að birta." + +#: ../../mod/admin.php:55 +msgid "Theme settings updated." +msgstr "" + +#: ../../mod/admin.php:96 ../../mod/admin.php:442 +msgid "Site" +msgstr "Vefur" + +#: ../../mod/admin.php:97 ../../mod/admin.php:688 ../../mod/admin.php:701 +msgid "Users" +msgstr "Notendur" + +#: ../../mod/admin.php:98 ../../mod/admin.php:783 ../../mod/admin.php:825 +msgid "Plugins" +msgstr "Viðbætur" + +#: ../../mod/admin.php:99 ../../mod/admin.php:988 ../../mod/admin.php:1024 +msgid "Themes" +msgstr "Þemu" + +#: ../../mod/admin.php:100 +msgid "DB updates" +msgstr "Gagnagrunns uppfærslur" + +#: ../../mod/admin.php:115 ../../mod/admin.php:122 ../../mod/admin.php:1111 +msgid "Logs" +msgstr "Atburðaskrá" + +#: ../../mod/admin.php:120 ../../include/nav.php:146 +msgid "Admin" +msgstr "Stjórnborð" + +#: ../../mod/admin.php:121 +msgid "Plugin Features" +msgstr "" + +#: ../../mod/admin.php:123 +msgid "User registrations waiting for confirmation" +msgstr "Notenda nýskráningar bíða samþykkis" + +#: ../../mod/admin.php:183 ../../mod/admin.php:669 +msgid "Normal Account" +msgstr "Venjulegur notandi" + +#: ../../mod/admin.php:184 ../../mod/admin.php:670 +msgid "Soapbox Account" +msgstr "Sápukassa notandi" + +#: ../../mod/admin.php:185 ../../mod/admin.php:671 +msgid "Community/Celebrity Account" +msgstr "Hópa-/Stjörnusíða" + +#: ../../mod/admin.php:186 ../../mod/admin.php:672 +msgid "Automatic Friend Account" +msgstr "Verður sjálfkrafa vinur notandi" + +#: ../../mod/admin.php:187 +msgid "Blog Account" +msgstr "" + +#: ../../mod/admin.php:188 +msgid "Private Forum" +msgstr "" + +#: ../../mod/admin.php:207 +msgid "Message queues" +msgstr "" + +#: ../../mod/admin.php:212 ../../mod/admin.php:441 ../../mod/admin.php:687 +#: ../../mod/admin.php:782 ../../mod/admin.php:824 ../../mod/admin.php:987 +#: ../../mod/admin.php:1023 ../../mod/admin.php:1110 +msgid "Administration" +msgstr "Stjórnun" + +#: ../../mod/admin.php:213 +msgid "Summary" +msgstr "Samantekt" + +#: ../../mod/admin.php:215 +msgid "Registered users" +msgstr "Skráðir notendur" + +#: ../../mod/admin.php:217 +msgid "Pending registrations" +msgstr "Nýskráningar í bið" + +#: ../../mod/admin.php:218 +msgid "Version" +msgstr "Útgáfa" + +#: ../../mod/admin.php:220 +msgid "Active plugins" +msgstr "Virkar viðbætur" + +#: ../../mod/admin.php:373 +msgid "Site settings updated." +msgstr "Stillingar þjóns uppfærðar." + +#: ../../mod/admin.php:428 +msgid "Closed" +msgstr "Lokað" + +#: ../../mod/admin.php:429 +msgid "Requires approval" +msgstr "Þarf samþykki" + +#: ../../mod/admin.php:430 +msgid "Open" +msgstr "Opið" + +#: ../../mod/admin.php:434 +msgid "No SSL policy, links will track page SSL state" +msgstr "" + +#: ../../mod/admin.php:435 +msgid "Force all links to use SSL" +msgstr "" + +#: ../../mod/admin.php:436 +msgid "Self-signed certificate, use SSL for local links only (discouraged)" +msgstr "" + +#: ../../mod/admin.php:445 +msgid "File upload" +msgstr "Hlaða upp skrá" + +#: ../../mod/admin.php:446 +msgid "Policies" +msgstr "Stefna" + +#: ../../mod/admin.php:447 +msgid "Advanced" +msgstr "Flóknari" + +#: ../../mod/admin.php:451 ../../addon/statusnet/statusnet.php:567 +msgid "Site name" +msgstr "Nafn síðu" + +#: ../../mod/admin.php:452 +msgid "Banner/Logo" +msgstr "Borði/Merki" + +#: ../../mod/admin.php:453 +msgid "System language" +msgstr "Kerfis tungumál" + +#: ../../mod/admin.php:454 +msgid "System theme" +msgstr "Kerfis þema" + +#: ../../mod/admin.php:454 +msgid "" +"Default system theme - may be over-ridden by user profiles - change theme settings" +msgstr "" + +#: ../../mod/admin.php:455 +msgid "Mobile system theme" +msgstr "" + +#: ../../mod/admin.php:455 +msgid "Theme for mobile devices" +msgstr "" + +#: ../../mod/admin.php:456 +msgid "SSL link policy" +msgstr "" + +#: ../../mod/admin.php:456 +msgid "Determines whether generated links should be forced to use SSL" +msgstr "" + +#: ../../mod/admin.php:457 +msgid "Maximum image size" +msgstr "Mesta stærð mynda" + +#: ../../mod/admin.php:457 +msgid "" +"Maximum size in bytes of uploaded images. Default is 0, which means no " +"limits." +msgstr "" + +#: ../../mod/admin.php:458 +msgid "Maximum image length" +msgstr "" + +#: ../../mod/admin.php:458 +msgid "" +"Maximum length in pixels of the longest side of uploaded images. Default is " +"-1, which means no limits." +msgstr "" + +#: ../../mod/admin.php:459 +msgid "JPEG image quality" +msgstr "" + +#: ../../mod/admin.php:459 +msgid "" +"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " +"100, which is full quality." +msgstr "" + +#: ../../mod/admin.php:461 +msgid "Register policy" +msgstr "Nýskráningar stefna" + +#: ../../mod/admin.php:462 +msgid "Register text" +msgstr "Nýskráningar texti" + +#: ../../mod/admin.php:462 +msgid "Will be displayed prominently on the registration page." +msgstr "" + +#: ../../mod/admin.php:463 +msgid "Accounts abandoned after x days" +msgstr "Yfirgefnir notendur eftir x daga" + +#: ../../mod/admin.php:463 +msgid "" +"Will not waste system resources polling external sites for abandonded " +"accounts. Enter 0 for no time limit." +msgstr "Hættir að eyða afli í að sækja færslur á ytri vefi fyrir yfirgefna notendur. 0 þýðir notendur merkjast ekki yfirgefnir." + +#: ../../mod/admin.php:464 +msgid "Allowed friend domains" +msgstr "Vina lén leyfð" + +#: ../../mod/admin.php:464 +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:465 +msgid "Allowed email domains" +msgstr "Póstfangs lén leyfð" + +#: ../../mod/admin.php:465 +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:466 +msgid "Block public" +msgstr "Lokað á opinberar færslur" + +#: ../../mod/admin.php:466 +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:467 +msgid "Force publish" +msgstr "Skylda að vera í tengiliðalista" + +#: ../../mod/admin.php:467 +msgid "" +"Check to force all profiles on this site to be listed in the site directory." +msgstr "" + +#: ../../mod/admin.php:468 +msgid "Global directory update URL" +msgstr "Uppfærslu slóð fyrir heims tengiliðalista" + +#: ../../mod/admin.php:468 +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:469 +msgid "Allow threaded items" +msgstr "" + +#: ../../mod/admin.php:469 +msgid "Allow infinite level threading for items on this site." +msgstr "" + +#: ../../mod/admin.php:470 +msgid "Private posts by default for new users" +msgstr "" + +#: ../../mod/admin.php:470 +msgid "" +"Set default post permissions for all new members to the default privacy " +"group rather than public." +msgstr "" + +#: ../../mod/admin.php:472 +msgid "Block multiple registrations" +msgstr "Banna margar skráningar" + +#: ../../mod/admin.php:472 +msgid "Disallow users to register additional accounts for use as pages." +msgstr "" + +#: ../../mod/admin.php:473 +msgid "OpenID support" +msgstr "Leyfa OpenID auðkenningu" + +#: ../../mod/admin.php:473 +msgid "OpenID support for registration and logins." +msgstr "" + +#: ../../mod/admin.php:474 +msgid "Fullname check" +msgstr "Fullt nafn skilyrði" + +#: ../../mod/admin.php:474 +msgid "" +"Force users to register with a space between firstname and lastname in Full " +"name, as an antispam measure" +msgstr "" + +#: ../../mod/admin.php:475 +msgid "UTF-8 Regular expressions" +msgstr "UTF-8 hefðbundin stöfun" + +#: ../../mod/admin.php:475 +msgid "Use PHP UTF8 regular expressions" +msgstr "" + +#: ../../mod/admin.php:476 +msgid "Show Community Page" +msgstr "Sýna samfélags síðu" + +#: ../../mod/admin.php:476 +msgid "" +"Display a Community page showing all recent public postings on this site." +msgstr "" + +#: ../../mod/admin.php:477 +msgid "Enable OStatus support" +msgstr "Leyfa OStatus stuðning" + +#: ../../mod/admin.php:477 +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:478 +msgid "Enable Diaspora support" +msgstr "Leyfa Diaspora tengingar" + +#: ../../mod/admin.php:478 +msgid "Provide built-in Diaspora network compatibility." +msgstr "" + +#: ../../mod/admin.php:479 +msgid "Only allow Friendica contacts" +msgstr "Aðeins leyfa Friendica notendur" + +#: ../../mod/admin.php:479 +msgid "" +"All contacts must use Friendica protocols. All other built-in communication " +"protocols disabled." +msgstr "" + +#: ../../mod/admin.php:480 +msgid "Verify SSL" +msgstr "Sannreyna SSL" + +#: ../../mod/admin.php:480 +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:481 +msgid "Proxy user" +msgstr "Proxy notandi" + +#: ../../mod/admin.php:482 +msgid "Proxy URL" +msgstr "Proxy slóð" + +#: ../../mod/admin.php:483 +msgid "Network timeout" +msgstr "Net tími útrunninn" + +#: ../../mod/admin.php:483 +msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." +msgstr "" + +#: ../../mod/admin.php:484 +msgid "Delivery interval" +msgstr "" + +#: ../../mod/admin.php:484 +msgid "" +"Delay background delivery processes by this many seconds to reduce system " +"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " +"for large dedicated servers." +msgstr "" + +#: ../../mod/admin.php:485 +msgid "Poll interval" +msgstr "" + +#: ../../mod/admin.php:485 +msgid "" +"Delay background polling processes by this many seconds to reduce system " +"load. If 0, use delivery interval." +msgstr "" + +#: ../../mod/admin.php:486 +msgid "Maximum Load Average" +msgstr "Mesta meðaltals álag" + +#: ../../mod/admin.php:486 +msgid "" +"Maximum system load before delivery and poll processes are deferred - " +"default 50." +msgstr "" + +#: ../../mod/admin.php:503 +msgid "Update has been marked successful" +msgstr "Uppfærsla merkt sem tókst" + +#: ../../mod/admin.php:513 +#, php-format +msgid "Executing %s failed. Check system logs." +msgstr "Uppfærslu %s tókst ekki. Sjá atburðaskrár." + +#: ../../mod/admin.php:516 +#, php-format +msgid "Update %s was successfully applied." +msgstr "Uppfærsla %s framkvæmd." + +#: ../../mod/admin.php:520 +#, php-format +msgid "Update %s did not return a status. Unknown if it succeeded." +msgstr "Uppfærsla %s skilaði ekki gildi. Óvíst hvort tókst." + +#: ../../mod/admin.php:523 +#, php-format +msgid "Update function %s could not be found." +msgstr "Uppfærslu stefja %s fannst ekki." + +#: ../../mod/admin.php:538 +msgid "No failed updates." +msgstr "Engar uppfærslur mistókust." + +#: ../../mod/admin.php:542 +msgid "Failed Updates" +msgstr "Uppfærslur sem mistókust" + +#: ../../mod/admin.php:543 +msgid "" +"This does not include updates prior to 1139, which did not return a status." +msgstr "Þetta á ekki við uppfærslur fyrir 1139, þær skiluðu ekki lokastöðu." + +#: ../../mod/admin.php:544 +msgid "Mark success (if update was manually applied)" +msgstr "Merkja sem tókst (ef uppfærsla var framkvæmd handvirkt)" + +#: ../../mod/admin.php:545 +msgid "Attempt to execute this update step automatically" +msgstr "Framkvæma þessa uppfærslu sjálfkrafa" + +#: ../../mod/admin.php:570 +#, php-format +msgid "%s user blocked/unblocked" +msgid_plural "%s users blocked/unblocked" +msgstr[0] "" +msgstr[1] "" + +#: ../../mod/admin.php:577 +#, php-format +msgid "%s user deleted" +msgid_plural "%s users deleted" +msgstr[0] "%s notenda eytt" +msgstr[1] "%s notendum eytt" + +#: ../../mod/admin.php:616 +#, php-format +msgid "User '%s' deleted" +msgstr "Notanda '%s' eytt" + +#: ../../mod/admin.php:624 +#, php-format +msgid "User '%s' unblocked" +msgstr "Notanda '%s' gefið frelsi" + +#: ../../mod/admin.php:624 +#, php-format +msgid "User '%s' blocked" +msgstr "Notanda '%s' settur í bann" + +#: ../../mod/admin.php:690 +msgid "select all" +msgstr "velja alla" + +#: ../../mod/admin.php:691 +msgid "User registrations waiting for confirm" +msgstr "Skráning notanda býður samþykkis" + +#: ../../mod/admin.php:692 +msgid "Request date" +msgstr "Dagsetning beiðnar" + +#: ../../mod/admin.php:692 ../../mod/admin.php:702 +#: ../../include/contact_selectors.php:79 +msgid "Email" +msgstr "Póstfang" + +#: ../../mod/admin.php:693 +msgid "No registrations." +msgstr "Engin skráning" + +#: ../../mod/admin.php:695 +msgid "Deny" +msgstr "Hafnað" + +#: ../../mod/admin.php:699 +msgid "Site admin" +msgstr "" + +#: ../../mod/admin.php:702 +msgid "Register date" +msgstr "Skráningar dagsetning" + +#: ../../mod/admin.php:702 +msgid "Last login" +msgstr "Síðast innskráður" + +#: ../../mod/admin.php:702 +msgid "Last item" +msgstr "Síðasta" + +#: ../../mod/admin.php:702 +msgid "Account" +msgstr "Notandi" + +#: ../../mod/admin.php:704 +msgid "" +"Selected users will be deleted!\\n\\nEverything these users had posted on " +"this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Valdir notendur verður eytt!\\n\\nAllt sem þessir notendur hafa deilt á þessum vef verður varanlega eytt!\\n\\nErtu alveg viss?" + +#: ../../mod/admin.php:705 +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 "Notandinn {0} verður eytt!\\n\\nAllt sem þessi notandi hefur deilt á þessum vef veður varanlega eytt!\\n\\nErtu alveg viss?" + +#: ../../mod/admin.php:746 +#, php-format +msgid "Plugin %s disabled." +msgstr "Slökkt á viðbót %s " + +#: ../../mod/admin.php:750 +#, php-format +msgid "Plugin %s enabled." +msgstr "Kveikt á viðbót %s" + +#: ../../mod/admin.php:760 ../../mod/admin.php:958 +msgid "Disable" +msgstr "Slökkva" + +#: ../../mod/admin.php:762 ../../mod/admin.php:960 +msgid "Enable" +msgstr "Kveikja" + +#: ../../mod/admin.php:784 ../../mod/admin.php:989 +msgid "Toggle" +msgstr "Skipta" + +#: ../../mod/admin.php:792 ../../mod/admin.php:999 +msgid "Author: " +msgstr "" + +#: ../../mod/admin.php:793 ../../mod/admin.php:1000 +msgid "Maintainer: " +msgstr "" + +#: ../../mod/admin.php:922 +msgid "No themes found." +msgstr "Engin þemu fundust" + +#: ../../mod/admin.php:981 +msgid "Screenshot" +msgstr "" + +#: ../../mod/admin.php:1029 +msgid "[Experimental]" +msgstr "[Tilraun]" + +#: ../../mod/admin.php:1030 +msgid "[Unsupported]" +msgstr "[Óstudd]" + +#: ../../mod/admin.php:1057 +msgid "Log settings updated." +msgstr "Stillingar atburðaskrár uppfærðar. " + +#: ../../mod/admin.php:1113 +msgid "Clear" +msgstr "Hreinsa" + +#: ../../mod/admin.php:1119 +msgid "Debugging" +msgstr "Aflúsa" + +#: ../../mod/admin.php:1120 +msgid "Log file" +msgstr "Atburðaskrá" + +#: ../../mod/admin.php:1120 +msgid "" +"Must be writable by web server. Relative to your Friendica top-level " +"directory." +msgstr "Vefþjónn verður að hafa skrifréttindi. Afstætt við Friendica rótar skráarsafn." + +#: ../../mod/admin.php:1121 +msgid "Log level" +msgstr "Stig atburðaskráningar" + +#: ../../mod/admin.php:1171 +msgid "Close" +msgstr "Loka" + +#: ../../mod/admin.php:1177 +msgid "FTP Host" +msgstr "FTP Vélanafn" + +#: ../../mod/admin.php:1178 +msgid "FTP Path" +msgstr "FTP Slóð" + +#: ../../mod/admin.php:1179 +msgid "FTP User" +msgstr "FTP Notandi" + +#: ../../mod/admin.php:1180 +msgid "FTP Password" +msgstr "FTP Aðgangsorð" + +#: ../../mod/profile.php:22 ../../boot.php:1074 +msgid "Requested profile is not available." +msgstr "Umbeðinn forsíða ekki til." + +#: ../../mod/profile.php:152 ../../mod/display.php:77 +msgid "Access to this profile has been restricted." +msgstr "Aðgangur að þessari forsíðu hefur verið heftur." + +#: ../../mod/profile.php:177 +msgid "Tips for New Members" +msgstr "Ábendingar fyrir nýja notendur" + +#: ../../mod/ping.php:235 +msgid "{0} wants to be your friend" +msgstr "{0} vill vera vinur þinn" + +#: ../../mod/ping.php:240 +msgid "{0} sent you a message" +msgstr "{0} sendi þér skilboð" + +#: ../../mod/ping.php:245 +msgid "{0} requested registration" +msgstr "{0} óskaði eftir skráningu" + +#: ../../mod/ping.php:251 +#, php-format +msgid "{0} commented %s's post" +msgstr "{0} gerði athugasemd við %s's senda færslu" + +#: ../../mod/ping.php:256 +#, php-format +msgid "{0} liked %s's post" +msgstr "{0} líkaði við senda færslu %s's" + +#: ../../mod/ping.php:261 +#, php-format +msgid "{0} disliked %s's post" +msgstr "{0} líkaði ekki við senda færslu %s's" + +#: ../../mod/ping.php:266 +#, php-format +msgid "{0} is now friends with %s" +msgstr "{0} er nú vinur %s" + +#: ../../mod/ping.php:271 +msgid "{0} posted" +msgstr "{0} sendi færslu" + +#: ../../mod/ping.php:276 +#, php-format +msgid "{0} tagged %s's post with #%s" +msgstr "{0} merkti %s's færslu með #%s" + +#: ../../mod/ping.php:282 +msgid "{0} mentioned you in a post" +msgstr "{0} minntist á þig í færslu" + +#: ../../mod/nogroup.php:58 +msgid "Contacts who are not members of a group" +msgstr "" + +#: ../../mod/openid.php:24 +msgid "OpenID protocol error. No ID returned." +msgstr "" + +#: ../../mod/openid.php:53 +msgid "" +"Account not found and OpenID registration is not permitted on this site." +msgstr "" + +#: ../../mod/openid.php:93 ../../include/auth.php:98 +#: ../../include/auth.php:161 +msgid "Login failed." +msgstr "Innskráning mistókst." + +#: ../../mod/follow.php:27 +msgid "Contact added" +msgstr "" + +#: ../../mod/common.php:42 +msgid "Common Friends" +msgstr "Sameiginlegir vinir" + +#: ../../mod/common.php:78 +msgid "No contacts in common." +msgstr "" + +#: ../../mod/share.php:28 +msgid "link" +msgstr "" + +#: ../../mod/display.php:138 +msgid "Item has been removed." +msgstr "Atriði hefur verið fjarlægt." + +#: ../../mod/apps.php:4 +msgid "Applications" +msgstr "Forrit" + +#: ../../mod/apps.php:7 +msgid "No installed applications." +msgstr "Engin uppsett forrit" + +#: ../../mod/search.php:85 ../../include/text.php:678 +#: ../../include/text.php:679 ../../include/nav.php:91 +msgid "Search" +msgstr "Leita" + +#: ../../mod/profiles.php:21 ../../mod/profiles.php:423 +#: ../../mod/profiles.php:537 ../../mod/dfrn_confirm.php:62 +msgid "Profile not found." +msgstr "Forsíða fannst ekki." + +#: ../../mod/profiles.php:31 +msgid "Profile Name is required." +msgstr "Nafn á forsíðu er skilyrði" + +#: ../../mod/profiles.php:160 +msgid "Marital Status" +msgstr "" + +#: ../../mod/profiles.php:164 +msgid "Romantic Partner" +msgstr "" + +#: ../../mod/profiles.php:168 +msgid "Likes" +msgstr "" + +#: ../../mod/profiles.php:172 +msgid "Dislikes" +msgstr "" + +#: ../../mod/profiles.php:176 +msgid "Work/Employment" +msgstr "" + +#: ../../mod/profiles.php:179 +msgid "Religion" +msgstr "" + +#: ../../mod/profiles.php:183 +msgid "Political Views" +msgstr "" + +#: ../../mod/profiles.php:187 +msgid "Gender" +msgstr "" + +#: ../../mod/profiles.php:191 +msgid "Sexual Preference" +msgstr "" + +#: ../../mod/profiles.php:195 +msgid "Homepage" +msgstr "" + +#: ../../mod/profiles.php:199 +msgid "Interests" +msgstr "" + +#: ../../mod/profiles.php:203 +msgid "Address" +msgstr "" + +#: ../../mod/profiles.php:210 ../../addon/dav/common/wdcal_edit.inc.php:183 +msgid "Location" +msgstr "" + +#: ../../mod/profiles.php:293 +msgid "Profile updated." +msgstr "Forsíða uppfærð." + +#: ../../mod/profiles.php:360 +msgid " and " +msgstr "og" + +#: ../../mod/profiles.php:368 +msgid "public profile" +msgstr "Opinber forsíða" + +#: ../../mod/profiles.php:371 +#, php-format +msgid "%1$s changed %2$s to “%3$s”" +msgstr "" + +#: ../../mod/profiles.php:372 +#, php-format +msgid " - Visit %1$s's %2$s" +msgstr "" + +#: ../../mod/profiles.php:375 +#, php-format +msgid "%1$s has an updated %2$s, changing %3$s." +msgstr "%1$s hefur uppfært %2$s, með því að breyta %3$s." + +#: ../../mod/profiles.php:442 +msgid "Profile deleted." +msgstr "Forsíðu eytt." + +#: ../../mod/profiles.php:460 ../../mod/profiles.php:494 +msgid "Profile-" +msgstr "Forsíða-" + +#: ../../mod/profiles.php:479 ../../mod/profiles.php:521 +msgid "New profile created." +msgstr "Ný forsíða búinn til." + +#: ../../mod/profiles.php:500 +msgid "Profile unavailable to clone." +msgstr "Ekki tókst að klóna forsíðu" + +#: ../../mod/profiles.php:562 +msgid "Hide your contact/friend list from viewers of this profile?" +msgstr "Fela tengiliða/vina lista á þessari forsíðu?" + +#: ../../mod/profiles.php:582 +msgid "Edit Profile Details" +msgstr "Breyta forsíðu upplýsingum" + +#: ../../mod/profiles.php:584 +msgid "View this profile" +msgstr "Skoða þessa forsíðu" + +#: ../../mod/profiles.php:585 +msgid "Create a new profile using these settings" +msgstr "Búa til nýja forsíðu með þessum stillingum" + +#: ../../mod/profiles.php:586 +msgid "Clone this profile" +msgstr "Klóna þessa forsíðu" + +#: ../../mod/profiles.php:587 +msgid "Delete this profile" +msgstr "Eyða þessari forsíðu" + +#: ../../mod/profiles.php:588 +msgid "Profile Name:" +msgstr "Forsíðu nafn:" + +#: ../../mod/profiles.php:589 +msgid "Your Full Name:" +msgstr "Fullt nafn:" + +#: ../../mod/profiles.php:590 +msgid "Title/Description:" +msgstr "Starfsheiti/Lýsing:" + +#: ../../mod/profiles.php:591 +msgid "Your Gender:" +msgstr "Kyn:" + +#: ../../mod/profiles.php:592 +#, php-format +msgid "Birthday (%s):" +msgstr "Afmæli (%s):" + +#: ../../mod/profiles.php:593 +msgid "Street Address:" +msgstr "Gata:" + +#: ../../mod/profiles.php:594 +msgid "Locality/City:" +msgstr "Bær/Borg:" + +#: ../../mod/profiles.php:595 +msgid "Postal/Zip Code:" +msgstr "Póstnúmer:" + +#: ../../mod/profiles.php:596 +msgid "Country:" +msgstr "Land:" + +#: ../../mod/profiles.php:597 +msgid "Region/State:" +msgstr "Svæði/Sýsla" + +#: ../../mod/profiles.php:598 +msgid " Marital Status:" +msgstr " Hjúskaparstaða:" + +#: ../../mod/profiles.php:599 +msgid "Who: (if applicable)" +msgstr "Hver: (ef við á)" + +#: ../../mod/profiles.php:600 +msgid "Examples: cathy123, Cathy Williams, cathy@example.com" +msgstr "Dæmi: cathy123, Cathy Williams, cathy@example.com" + +#: ../../mod/profiles.php:601 +msgid "Since [date]:" +msgstr "" + +#: ../../mod/profiles.php:602 ../../include/profile_advanced.php:46 +msgid "Sexual Preference:" +msgstr "Kynhneigð" + +#: ../../mod/profiles.php:603 +msgid "Homepage URL:" +msgstr "Slóð heimasíðu:" + +#: ../../mod/profiles.php:604 ../../include/profile_advanced.php:50 +msgid "Hometown:" +msgstr "" + +#: ../../mod/profiles.php:605 ../../include/profile_advanced.php:54 +msgid "Political Views:" +msgstr "Stórnmálaskoðanir:" + +#: ../../mod/profiles.php:606 +msgid "Religious Views:" +msgstr "Trúarskoðanir" + +#: ../../mod/profiles.php:607 +msgid "Public Keywords:" +msgstr "Opinber leitarorð:" + +#: ../../mod/profiles.php:608 +msgid "Private Keywords:" +msgstr "Einka leitarorð:" + +#: ../../mod/profiles.php:609 ../../include/profile_advanced.php:62 +msgid "Likes:" +msgstr "" + +#: ../../mod/profiles.php:610 ../../include/profile_advanced.php:64 +msgid "Dislikes:" +msgstr "" + +#: ../../mod/profiles.php:611 +msgid "Example: fishing photography software" +msgstr "Til dæmis: fishing photography software" + +#: ../../mod/profiles.php:612 +msgid "(Used for suggesting potential friends, can be seen by others)" +msgstr "(Notað til að stinga uppá mögulegum vinum, aðrir geta séð)" + +#: ../../mod/profiles.php:613 +msgid "(Used for searching profiles, never shown to others)" +msgstr "(Notað við leit að öðrum notendum, aldrei sýnt öðrum)" + +#: ../../mod/profiles.php:614 +msgid "Tell us about yourself..." +msgstr "Segðu okkur frá sjálfum þér..." + +#: ../../mod/profiles.php:615 +msgid "Hobbies/Interests" +msgstr "Áhugamál" + +#: ../../mod/profiles.php:616 +msgid "Contact information and Social Networks" +msgstr "Tengiliða upplýsingar og samfélagsnet" + +#: ../../mod/profiles.php:617 +msgid "Musical interests" +msgstr "Tónlistarsmekkur" + +#: ../../mod/profiles.php:618 +msgid "Books, literature" +msgstr "Bækur, bókmenntir" + +#: ../../mod/profiles.php:619 +msgid "Television" +msgstr "Sjónvarp" + +#: ../../mod/profiles.php:620 +msgid "Film/dance/culture/entertainment" +msgstr "Kvikmyndir/dans/menning/afþreying" + +#: ../../mod/profiles.php:621 +msgid "Love/romance" +msgstr "Ást/rómantík" + +#: ../../mod/profiles.php:622 +msgid "Work/employment" +msgstr "Atvinna:" + +#: ../../mod/profiles.php:623 +msgid "School/education" +msgstr "Skóli/menntun" + +#: ../../mod/profiles.php:628 +msgid "" +"This is your public profile.
    It may " +"be visible to anybody using the internet." +msgstr "Þetta er opinber forsíða.
    Hún verður sjáanleg öðrum sem nota alnetið." + +#: ../../mod/profiles.php:638 ../../mod/directory.php:111 +msgid "Age: " +msgstr "Aldur:" + +#: ../../mod/profiles.php:677 +msgid "Edit/Manage Profiles" +msgstr "Sýsla með forsíður" + +#: ../../mod/profiles.php:678 ../../boot.php:1192 +msgid "Change profile photo" +msgstr "Breyta forsíðu mynd" + +#: ../../mod/profiles.php:679 ../../boot.php:1193 +msgid "Create New Profile" +msgstr "Stofna nýja forsíðu" + +#: ../../mod/profiles.php:690 ../../boot.php:1203 +msgid "Profile Image" +msgstr "Forsíðu mynd" + +#: ../../mod/profiles.php:692 ../../boot.php:1206 +msgid "visible to everybody" +msgstr "Sýnilegt öllum" + +#: ../../mod/profiles.php:693 ../../boot.php:1207 +msgid "Edit visibility" +msgstr "Sýsla með sjáanleika" + +#: ../../mod/filer.php:29 ../../include/conversation.php:1209 +#: ../../include/conversation.php:1226 +msgid "Save to Folder:" +msgstr "" + +#: ../../mod/filer.php:29 +msgid "- select -" +msgstr "" + +#: ../../mod/tagger.php:95 ../../include/conversation.php:265 +#, php-format +msgid "%1$s tagged %2$s's %3$s with %4$s" +msgstr "%1$s merkti %2$s's %3$s með %4$s" + +#: ../../mod/delegate.php:95 +msgid "No potential page delegates located." +msgstr "Engir mögulegir viðtakendur síðunnar fundust." + +#: ../../mod/delegate.php:121 +msgid "Delegate Page Management" +msgstr "" + +#: ../../mod/delegate.php:123 +msgid "" +"Delegates are able to manage all aspects of this account/page except for " +"basic account settings. Please do not delegate your personal account to " +"anybody that you do not trust completely." +msgstr "" + +#: ../../mod/delegate.php:124 +msgid "Existing Page Managers" +msgstr "" + +#: ../../mod/delegate.php:126 +msgid "Existing Page Delegates" +msgstr "" + +#: ../../mod/delegate.php:128 +msgid "Potential Delegates" +msgstr "" + +#: ../../mod/delegate.php:131 +msgid "Add" +msgstr "Bæta við" + +#: ../../mod/delegate.php:132 +msgid "No entries." +msgstr "Engar færslur." + +#: ../../mod/babel.php:17 +msgid "Source (bbcode) text:" +msgstr "" + +#: ../../mod/babel.php:23 +msgid "Source (Diaspora) text to convert to BBcode:" +msgstr "" + +#: ../../mod/babel.php:31 +msgid "Source input: " +msgstr "" + +#: ../../mod/babel.php:35 +msgid "bb2html: " +msgstr "" + +#: ../../mod/babel.php:39 +msgid "bb2html2bb: " +msgstr "" + +#: ../../mod/babel.php:43 +msgid "bb2md: " +msgstr "" + +#: ../../mod/babel.php:47 +msgid "bb2md2html: " +msgstr "" + +#: ../../mod/babel.php:51 +msgid "bb2dia2bb: " +msgstr "" + +#: ../../mod/babel.php:55 +msgid "bb2md2html2bb: " +msgstr "" + +#: ../../mod/babel.php:65 +msgid "Source input (Diaspora format): " +msgstr "" + +#: ../../mod/babel.php:70 +msgid "diaspora2bb: " +msgstr "" + +#: ../../mod/suggest.php:38 ../../view/theme/diabook/theme.php:626 +#: ../../include/contact_widgets.php:34 +msgid "Friend Suggestions" +msgstr "Vina uppástungur" + +#: ../../mod/suggest.php:44 +msgid "" +"No suggestions available. If this is a new site, please try again in 24 " +"hours." +msgstr "Engar uppástungur tiltækar. Ef þetta er nýr vefur, reyndu þá aftur eftir um 24 klukkustundir." + +#: ../../mod/suggest.php:61 +msgid "Ignore/Hide" +msgstr "Hunsa/Fela" + +#: ../../mod/directory.php:49 ../../view/theme/diabook/theme.php:624 +msgid "Global Directory" +msgstr "Heims tengiliða skrá" + +#: ../../mod/directory.php:57 +msgid "Find on this site" +msgstr "Leita á þessum vef" + +#: ../../mod/directory.php:60 +msgid "Site Directory" +msgstr "Vef tengiliða skrá" + +#: ../../mod/directory.php:114 +msgid "Gender: " +msgstr "Kyn:" + +#: ../../mod/directory.php:136 ../../include/profile_advanced.php:17 +#: ../../boot.php:1228 +msgid "Gender:" +msgstr "Kyn:" + +#: ../../mod/directory.php:138 ../../include/profile_advanced.php:37 +#: ../../boot.php:1231 +msgid "Status:" +msgstr "Staða:" + +#: ../../mod/directory.php:140 ../../include/profile_advanced.php:48 +#: ../../boot.php:1233 +msgid "Homepage:" +msgstr "Heimasíða:" + +#: ../../mod/directory.php:142 ../../include/profile_advanced.php:58 +msgid "About:" +msgstr "Um:" + +#: ../../mod/directory.php:180 +msgid "No entries (some entries may be hidden)." +msgstr "Engar færslur (sumar geta verið faldar)." + +#: ../../mod/invite.php:35 +#, php-format +msgid "%s : Not a valid email address." +msgstr "%s : Ekki gilt póstfang" + +#: ../../mod/invite.php:59 +msgid "Please join us on Friendica" +msgstr "" + +#: ../../mod/invite.php:69 +#, php-format +msgid "%s : Message delivery failed." +msgstr "%s : Skilaboð komust ekki til skila." + +#: ../../mod/invite.php:73 +#, php-format +msgid "%d message sent." +msgid_plural "%d messages sent." +msgstr[0] "%d skilaboð send." +msgstr[1] "%d skilaboð send" + +#: ../../mod/invite.php:92 +msgid "You have no more invitations available" +msgstr "Þú hefur ekki fleiri boðskort." + +#: ../../mod/invite.php:100 +#, php-format +msgid "" +"Visit %s for a list of public sites that you can join. Friendica members on " +"other sites can all connect with each other, as well as with members of many" +" other social networks." +msgstr "" + +#: ../../mod/invite.php:102 +#, php-format +msgid "" +"To accept this invitation, please visit and register at %s or any other " +"public Friendica website." +msgstr "" + +#: ../../mod/invite.php:103 +#, php-format +msgid "" +"Friendica sites all inter-connect to create a huge privacy-enhanced social " +"web that is owned and controlled by its members. They can also connect with " +"many traditional social networks. See %s for a list of alternate Friendica " +"sites you can join." +msgstr "" + +#: ../../mod/invite.php:106 +msgid "" +"Our apologies. This system is not currently configured to connect with other" +" public sites or invite members." +msgstr "" + +#: ../../mod/invite.php:111 +msgid "Send invitations" +msgstr "Senda kynningar" + +#: ../../mod/invite.php:112 +msgid "Enter email addresses, one per line:" +msgstr "Póstföng, eitt í hverja línu:" + +#: ../../mod/invite.php:114 +msgid "" +"You are cordially invited to join me and other close friends on Friendica - " +"and help us to create a better social web." +msgstr "" + +#: ../../mod/invite.php:116 +msgid "You will need to supply this invitation code: $invite_code" +msgstr "Þú þarft að nota eftirfarandi boðskorta auðkenni: $invite_code" + +#: ../../mod/invite.php:116 +msgid "" +"Once you have registered, please connect with me via my profile page at:" +msgstr "Þegar þú hefur nýskráð þig, hafðu samband við mig gegnum síðuna mína á:" + +#: ../../mod/invite.php:118 +msgid "" +"For more information about the Friendica project and why we feel it is " +"important, please visit http://friendica.com" +msgstr "" + +#: ../../mod/dfrn_confirm.php:119 +msgid "" +"This may occasionally happen if contact was requested by both persons and it" +" has already been approved." +msgstr "" + +#: ../../mod/dfrn_confirm.php:237 +msgid "Response from remote site was not understood." +msgstr "Ekki tókst að skilja svar frá ytri vef." + +#: ../../mod/dfrn_confirm.php:246 +msgid "Unexpected response from remote site: " +msgstr "Óskiljanlegt svar frá ytri vef:" + +#: ../../mod/dfrn_confirm.php:254 +msgid "Confirmation completed successfully." +msgstr "Staðfesting kláraði eðlilega." + +#: ../../mod/dfrn_confirm.php:256 ../../mod/dfrn_confirm.php:270 +#: ../../mod/dfrn_confirm.php:277 +msgid "Remote site reported: " +msgstr "Ytri vefur svaraði:" + +#: ../../mod/dfrn_confirm.php:268 +msgid "Temporary failure. Please wait and try again." +msgstr "Tímabundin villa. Vinsamlegast bíddu og reyndur aftur síðar." + +#: ../../mod/dfrn_confirm.php:275 +msgid "Introduction failed or was revoked." +msgstr "Kynning mistókst eða var afturkölluð." + +#: ../../mod/dfrn_confirm.php:420 +msgid "Unable to set contact photo." +msgstr "Ekki tókst að setja tengiliða mynd." + +#: ../../mod/dfrn_confirm.php:477 ../../include/diaspora.php:608 +#: ../../include/conversation.php:171 +#, php-format +msgid "%1$s is now friends with %2$s" +msgstr "Núna er %1$s vinur %2$s" + +#: ../../mod/dfrn_confirm.php:562 +#, php-format +msgid "No user record found for '%s' " +msgstr "Enginn notanda færsla fannst fyrir '%s'" + +#: ../../mod/dfrn_confirm.php:572 +msgid "Our site encryption key is apparently messed up." +msgstr "Dulkóðunnar lykill síðunnar okker er í döðlu." + +#: ../../mod/dfrn_confirm.php:583 +msgid "Empty site URL was provided or URL could not be decrypted by us." +msgstr "Tómt slóð var uppgefin eða ekki okkur tókst ekki að afkóða slóð." + +#: ../../mod/dfrn_confirm.php:604 +msgid "Contact record was not found for you on our site." +msgstr "Tengiliða færslan þín fannst ekki á þjóninum okkar." + +#: ../../mod/dfrn_confirm.php:618 +#, php-format +msgid "Site public key not available in contact record for URL %s." +msgstr "Opinber lykill er ekki til í tengiliðafærslu fyrir slóð %s." + +#: ../../mod/dfrn_confirm.php:638 +msgid "" +"The ID provided by your system is a duplicate on our system. It should work " +"if you try again." +msgstr "Skilríkið sem þjónninn þinn gaf upp er þegar afritað á okkar þjón. Þetta ætti að virka ef þú bara reynir aftur." + +#: ../../mod/dfrn_confirm.php:649 +msgid "Unable to set your contact credentials on our system." +msgstr "Ekki tókst að setja tengiliða skilríkið þitt upp á þjóninum okkar." + +#: ../../mod/dfrn_confirm.php:716 +msgid "Unable to update your contact profile details on our system" +msgstr "Ekki tókst að uppfæra tengiliða skilríkis upplýsingarnar á okkar þjón" + +#: ../../mod/dfrn_confirm.php:750 +#, php-format +msgid "Connection accepted at %s" +msgstr "Tenging samþykkt hjá %s" + +#: ../../mod/dfrn_confirm.php:799 +#, php-format +msgid "%1$s has joined %2$s" +msgstr "%1$s hefur gengið til liðs við %2$s" + +#: ../../addon/fromgplus/fromgplus.php:29 +msgid "Google+ Import Settings" +msgstr "" + +#: ../../addon/fromgplus/fromgplus.php:32 +msgid "Enable Google+ Import" +msgstr "" + +#: ../../addon/fromgplus/fromgplus.php:35 +msgid "Google Account ID" +msgstr "" + +#: ../../addon/fromgplus/fromgplus.php:55 +msgid "Google+ Import Settings saved." +msgstr "" + +#: ../../addon/facebook/facebook.php:523 +msgid "Facebook disabled" +msgstr "Ekki er kveikt á Facebook " + +#: ../../addon/facebook/facebook.php:528 +msgid "Updating contacts" +msgstr "Uppfæra tengiliði" + +#: ../../addon/facebook/facebook.php:551 ../../addon/fbpost/fbpost.php:192 +msgid "Facebook API key is missing." +msgstr "Facebook API lykill er ekki til staðar." + +#: ../../addon/facebook/facebook.php:558 +msgid "Facebook Connect" +msgstr "Facebook tenging" + +#: ../../addon/facebook/facebook.php:564 +msgid "Install Facebook connector for this account." +msgstr "Setja þarf upp Facebook tengil fyrir þennan notanda" + +#: ../../addon/facebook/facebook.php:571 +msgid "Remove Facebook connector" +msgstr "Fjarlæga Facebook tengil" + +#: ../../addon/facebook/facebook.php:576 ../../addon/fbpost/fbpost.php:217 +msgid "" +"Re-authenticate [This is necessary whenever your Facebook password is " +"changed.]" +msgstr "Þörf er á endurauðkenningu [Þetta þarf að gera í hvert skipti sem Facebook aðgangsorði er breytt.]" + +#: ../../addon/facebook/facebook.php:583 ../../addon/fbpost/fbpost.php:224 +msgid "Post to Facebook by default" +msgstr "Senda sjálfgefið færslur á Facebook " + +#: ../../addon/facebook/facebook.php:589 +msgid "" +"Facebook friend linking has been disabled on this site. The following " +"settings will have no effect." +msgstr "" + +#: ../../addon/facebook/facebook.php:593 +msgid "" +"Facebook friend linking has been disabled on this site. If you disable it, " +"you will be unable to re-enable it." +msgstr "" + +#: ../../addon/facebook/facebook.php:596 +msgid "Link all your Facebook friends and conversations on this website" +msgstr "Tengjast öllum vinum og samtölum á Facebook af þessum vef" + +#: ../../addon/facebook/facebook.php:598 +msgid "" +"Facebook conversations consist of your profile wall and your friend" +" stream." +msgstr "Facebook samtöl saman standa af færslum af forsíðuvegg og vinastraum þínum." + +#: ../../addon/facebook/facebook.php:599 +msgid "On this website, your Facebook friend stream is only visible to you." +msgstr "Aðeins Facebook vinastraumurinn þinn er sjáanlegur á þessum þessum vef." + +#: ../../addon/facebook/facebook.php:600 +msgid "" +"The following settings determine the privacy of your Facebook profile wall " +"on this website." +msgstr "Eftirfarandi stillingar stjórna friðhelgi Facebook forsíðu vegg á þessum vef. " + +#: ../../addon/facebook/facebook.php:604 +msgid "" +"On this website your Facebook profile wall conversations will only be " +"visible to you" +msgstr "Samtöl á Facebook forsíðu vegg verða einungis sýnileg þér" + +#: ../../addon/facebook/facebook.php:609 +msgid "Do not import your Facebook profile wall conversations" +msgstr "Ekki sækja samtöl af Facebook forsíðu vegg" + +#: ../../addon/facebook/facebook.php:611 +msgid "" +"If you choose to link conversations and leave both of these boxes unchecked," +" your Facebook profile wall will be merged with your profile wall on this " +"website and your privacy settings on this website will be used to determine " +"who may see the conversations." +msgstr "Ef þú ákveður að hlekkja samtöl saman og hefur bæði þessi hök slökkt, þá mun Facebook forsíðan sameinast forsíðunni á þessum vef þannig að friðhelgisstillingar hér munu stjórna hvernig mega sjá hvað." + +#: ../../addon/facebook/facebook.php:616 +msgid "Comma separated applications to ignore" +msgstr "Forrit sem á að hunsa (komma á milli)" + +#: ../../addon/facebook/facebook.php:700 +msgid "Problems with Facebook Real-Time Updates" +msgstr "" + +#: ../../addon/facebook/facebook.php:729 +msgid "Facebook Connector Settings" +msgstr "Facebook tengils stillingar" + +#: ../../addon/facebook/facebook.php:744 ../../addon/fbpost/fbpost.php:255 +msgid "Facebook API Key" +msgstr "" + +#: ../../addon/facebook/facebook.php:754 ../../addon/fbpost/fbpost.php:262 +msgid "" +"Error: it appears that you have specified the App-ID and -Secret in your " +".htconfig.php file. As long as they are specified there, they cannot be set " +"using this form.

    " +msgstr "" + +#: ../../addon/facebook/facebook.php:759 +msgid "" +"Error: the given API Key seems to be incorrect (the application access token" +" could not be retrieved)." +msgstr "" + +#: ../../addon/facebook/facebook.php:761 +msgid "The given API Key seems to work correctly." +msgstr "" + +#: ../../addon/facebook/facebook.php:763 +msgid "" +"The correctness of the API Key could not be detected. Something strange's " +"going on." +msgstr "" + +#: ../../addon/facebook/facebook.php:766 ../../addon/fbpost/fbpost.php:264 +msgid "App-ID / API-Key" +msgstr "" + +#: ../../addon/facebook/facebook.php:767 ../../addon/fbpost/fbpost.php:265 +msgid "Application secret" +msgstr "" + +#: ../../addon/facebook/facebook.php:768 +#, php-format +msgid "Polling Interval in minutes (minimum %1$s minutes)" +msgstr "" + +#: ../../addon/facebook/facebook.php:769 +msgid "" +"Synchronize comments (no comments on Facebook are missed, at the cost of " +"increased system load)" +msgstr "" + +#: ../../addon/facebook/facebook.php:773 +msgid "Real-Time Updates" +msgstr "" + +#: ../../addon/facebook/facebook.php:777 +msgid "Real-Time Updates are activated." +msgstr "" + +#: ../../addon/facebook/facebook.php:778 +msgid "Deactivate Real-Time Updates" +msgstr "" + +#: ../../addon/facebook/facebook.php:780 +msgid "Real-Time Updates not activated." +msgstr "" + +#: ../../addon/facebook/facebook.php:780 +msgid "Activate Real-Time Updates" +msgstr "" + +#: ../../addon/facebook/facebook.php:799 ../../addon/fbpost/fbpost.php:282 +#: ../../addon/dav/friendica/layout.fnk.php:361 +msgid "The new values have been saved." +msgstr "" + +#: ../../addon/facebook/facebook.php:823 ../../addon/fbpost/fbpost.php:301 +msgid "Post to Facebook" +msgstr "Senda á Facebook" + +#: ../../addon/facebook/facebook.php:921 ../../addon/fbpost/fbpost.php:399 +msgid "" +"Post to Facebook cancelled because of multi-network access permission " +"conflict." +msgstr "Hætt við færslu á Facebook vegna marg nets aðgangs átaka." + +#: ../../addon/facebook/facebook.php:1149 ../../addon/fbpost/fbpost.php:610 +msgid "View on Friendica" +msgstr "Skoða á Friendica" + +#: ../../addon/facebook/facebook.php:1182 ../../addon/fbpost/fbpost.php:643 +msgid "Facebook post failed. Queued for retry." +msgstr "Færsla sem átti að flæða yfir á Facebook mistókst. Sett í biðröð til endurtekningar." + +#: ../../addon/facebook/facebook.php:1222 ../../addon/fbpost/fbpost.php:683 +msgid "Your Facebook connection became invalid. Please Re-authenticate." +msgstr "" + +#: ../../addon/facebook/facebook.php:1223 ../../addon/fbpost/fbpost.php:684 +msgid "Facebook connection became invalid" +msgstr "" + +#: ../../addon/facebook/facebook.php:1224 ../../addon/fbpost/fbpost.php:685 +#, php-format +msgid "" +"Hi %1$s,\n" +"\n" +"The connection between your accounts on %2$s and Facebook became invalid. This usually happens after you change your Facebook-password. To enable the connection again, you have to %3$sre-authenticate the Facebook-connector%4$s." +msgstr "" + +#: ../../addon/snautofollow/snautofollow.php:32 +msgid "StatusNet AutoFollow settings updated." +msgstr "" + +#: ../../addon/snautofollow/snautofollow.php:56 +msgid "StatusNet AutoFollow Settings" +msgstr "" + +#: ../../addon/snautofollow/snautofollow.php:58 +msgid "Automatically follow any StatusNet followers/mentioners" +msgstr "" + +#: ../../addon/bg/bg.php:51 +msgid "Bg settings updated." +msgstr "" + +#: ../../addon/bg/bg.php:82 +msgid "Bg Settings" +msgstr "" + +#: ../../addon/bg/bg.php:84 ../../addon/numfriends/numfriends.php:79 +msgid "How many contacts to display on profile sidebar" +msgstr "" + +#: ../../addon/privacy_image_cache/privacy_image_cache.php:260 +msgid "Lifetime of the cache (in hours)" +msgstr "" + +#: ../../addon/privacy_image_cache/privacy_image_cache.php:265 +msgid "Cache Statistics" +msgstr "Tölfræði skyndiminnis" + +#: ../../addon/privacy_image_cache/privacy_image_cache.php:268 +msgid "Number of items" +msgstr "Fjöldi færslna" + +#: ../../addon/privacy_image_cache/privacy_image_cache.php:270 +msgid "Size of the cache" +msgstr "Stærð skyndiminnis" + +#: ../../addon/privacy_image_cache/privacy_image_cache.php:272 +msgid "Delete the whole cache" +msgstr "Eyða öllu í skyndiminni" + +#: ../../addon/fbpost/fbpost.php:172 +msgid "Facebook Post disabled" +msgstr "" + +#: ../../addon/fbpost/fbpost.php:199 +msgid "Facebook Post" +msgstr "" + +#: ../../addon/fbpost/fbpost.php:205 +msgid "Install Facebook Post connector for this account." +msgstr "" + +#: ../../addon/fbpost/fbpost.php:212 +msgid "Remove Facebook Post connector" +msgstr "" + +#: ../../addon/fbpost/fbpost.php:240 +msgid "Facebook Post Settings" +msgstr "" + +#: ../../addon/widgets/widget_like.php:58 +#, php-format +msgid "%d person likes this" +msgid_plural "%d people like this" +msgstr[0] "%d líkar þetta" +msgstr[1] "%d líkar þetta" + +#: ../../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 mislíkar þetta" +msgstr[1] "%d mislíkar þetta" + +#: ../../addon/widgets/widget_friendheader.php:40 +msgid "Get added to this list!" +msgstr "Láta bæta þér við þennan lista!" + +#: ../../addon/widgets/widgets.php:56 +msgid "Generate new key" +msgstr "Búa til nýjan lykil" + +#: ../../addon/widgets/widgets.php:59 +msgid "Widgets key" +msgstr "Lykill smáforrits " + +#: ../../addon/widgets/widgets.php:61 +msgid "Widgets available" +msgstr "Smáforrit til" + +#: ../../addon/widgets/widget_friends.php:40 +msgid "Connect on Friendica!" +msgstr "Tengist á Friendica!" + +#: ../../addon/morepokes/morepokes.php:19 +msgid "bitchslap" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:19 +msgid "bitchslapped" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:20 +msgid "shag" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:20 +msgid "shagged" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:21 +msgid "do something obscenely biological to" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:21 +msgid "did something obscenely biological to" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:22 +msgid "point out the poke feature to" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:22 +msgid "pointed out the poke feature to" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:23 +msgid "declare undying love for" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:23 +msgid "declared undying love for" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:24 +msgid "patent" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:24 +msgid "patented" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:25 +msgid "stroke beard" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:25 +msgid "stroked their beard at" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:26 +msgid "" +"bemoan the declining standards of modern secondary and tertiary education to" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:26 +msgid "" +"bemoans the declining standards of modern secondary and tertiary education " +"to" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:27 +msgid "hug" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:27 +msgid "hugged" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:28 +msgid "kiss" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:28 +msgid "kissed" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:29 +msgid "raise eyebrows at" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:29 +msgid "raised their eyebrows at" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:30 +msgid "insult" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:30 +msgid "insulted" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:31 +msgid "praise" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:31 +msgid "praised" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:32 +msgid "be dubious of" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:32 +msgid "was dubious of" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:33 +msgid "eat" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:33 +msgid "ate" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:34 +msgid "giggle and fawn at" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:34 +msgid "giggled and fawned at" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:35 +msgid "doubt" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:35 +msgid "doubted" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:36 +msgid "glare" +msgstr "" + +#: ../../addon/morepokes/morepokes.php:36 +msgid "glared at" +msgstr "" + +#: ../../addon/yourls/yourls.php:55 +msgid "YourLS Settings" +msgstr "" + +#: ../../addon/yourls/yourls.php:57 +msgid "URL: http://" +msgstr "" + +#: ../../addon/yourls/yourls.php:62 +msgid "Username:" +msgstr "Notendanafn:" + +#: ../../addon/yourls/yourls.php:67 +msgid "Password:" +msgstr "Aðgangsorð:" + +#: ../../addon/yourls/yourls.php:72 +msgid "Use SSL " +msgstr "Nota SSL" + +#: ../../addon/yourls/yourls.php:92 +msgid "yourls Settings saved." +msgstr "" + +#: ../../addon/ljpost/ljpost.php:39 +msgid "Post to LiveJournal" +msgstr "" + +#: ../../addon/ljpost/ljpost.php:70 +msgid "LiveJournal Post Settings" +msgstr "" + +#: ../../addon/ljpost/ljpost.php:72 +msgid "Enable LiveJournal Post Plugin" +msgstr "" + +#: ../../addon/ljpost/ljpost.php:77 +msgid "LiveJournal username" +msgstr "" + +#: ../../addon/ljpost/ljpost.php:82 +msgid "LiveJournal password" +msgstr "" + +#: ../../addon/ljpost/ljpost.php:87 +msgid "Post to LiveJournal by default" +msgstr "" + +#: ../../addon/nsfw/nsfw.php:78 +msgid "Not Safe For Work (General Purpose Content Filter) settings" +msgstr "" + +#: ../../addon/nsfw/nsfw.php:80 +msgid "" +"This plugin looks in posts for the words/text you specify below, and " +"collapses any content containing those keywords so it is not displayed at " +"inappropriate times, such as sexual innuendo that may be improper in a work " +"setting. It is polite and recommended to tag any content containing nudity " +"with #NSFW. This filter can also match any other word/text you specify, and" +" can thereby be used as a general purpose content filter." +msgstr "" + +#: ../../addon/nsfw/nsfw.php:81 +msgid "Enable Content filter" +msgstr "" + +#: ../../addon/nsfw/nsfw.php:84 +msgid "Comma separated list of keywords to hide" +msgstr "" + +#: ../../addon/nsfw/nsfw.php:89 +msgid "Use /expression/ to provide regular expressions" +msgstr "" + +#: ../../addon/nsfw/nsfw.php:105 +msgid "NSFW Settings saved." +msgstr "NSFW stillingar vistað." + +#: ../../addon/nsfw/nsfw.php:157 +#, php-format +msgid "%s - Click to open/close" +msgstr "%s - Smelltu til að opna/loka" + +#: ../../addon/page/page.php:61 ../../addon/page/page.php:91 +#: ../../addon/forumlist/forumlist.php:54 +msgid "Forums" +msgstr "" + +#: ../../addon/page/page.php:129 ../../addon/forumlist/forumlist.php:88 +msgid "Forums:" +msgstr "" + +#: ../../addon/page/page.php:165 +msgid "Page settings updated." +msgstr "" + +#: ../../addon/page/page.php:194 +msgid "Page Settings" +msgstr "" + +#: ../../addon/page/page.php:196 ../../addon/forumlist/forumlist.php:155 +msgid "How many forums to display on sidebar without paging" +msgstr "" + +#: ../../addon/page/page.php:199 +msgid "Randomise Page/Forum list" +msgstr "" + +#: ../../addon/page/page.php:202 +msgid "Show pages/forums on profile page" +msgstr "" + +#: ../../addon/planets/planets.php:150 +msgid "Planets Settings" +msgstr "" + +#: ../../addon/planets/planets.php:152 +msgid "Enable Planets Plugin" +msgstr "" + +#: ../../addon/communityhome/communityhome.php:28 +#: ../../addon/communityhome/communityhome.php:34 +#: ../../addon/communityhome/twillingham/communityhome.php:28 +#: ../../addon/communityhome/twillingham/communityhome.php:34 +#: ../../include/nav.php:64 ../../boot.php:912 +msgid "Login" +msgstr "Innskrá" + +#: ../../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 "" + +#: ../../addon/communityhome/communityhome.php:81 +#: ../../addon/communityhome/twillingham/communityhome.php:81 +msgid "Most active users" +msgstr "Ofvirkustu notendurnir" + +#: ../../addon/communityhome/communityhome.php:98 +msgid "Latest photos" +msgstr "" + +#: ../../addon/communityhome/communityhome.php:133 +msgid "Latest likes" +msgstr "" + +#: ../../addon/communityhome/communityhome.php:155 +#: ../../view/theme/diabook/theme.php:562 ../../include/text.php:1437 +#: ../../include/conversation.php:117 ../../include/conversation.php:245 +msgid "event" +msgstr "atburður" + +#: ../../addon/dav/common/wdcal_backend.inc.php:92 +#: ../../addon/dav/common/wdcal_backend.inc.php:166 +#: ../../addon/dav/common/wdcal_backend.inc.php:178 +#: ../../addon/dav/common/wdcal_backend.inc.php:206 +#: ../../addon/dav/common/wdcal_backend.inc.php:214 +#: ../../addon/dav/common/wdcal_backend.inc.php:229 +msgid "No access" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:30 +#: ../../addon/dav/common/wdcal_edit.inc.php:738 +msgid "Could not open component for editing" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:140 +#: ../../addon/dav/friendica/layout.fnk.php:143 +#: ../../addon/dav/friendica/layout.fnk.php:422 +msgid "Go back to the calendar" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:144 +msgid "Event data" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:146 +#: ../../addon/dav/friendica/main.php:239 +msgid "Calendar" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:163 +msgid "Special color" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:169 +msgid "Subject" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:173 +msgid "Starts" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:178 +msgid "Ends" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:185 +msgid "Description" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:188 +msgid "Recurrence" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:190 +msgid "Frequency" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:194 +#: ../../include/contact_selectors.php:59 +msgid "Daily" +msgstr "Daglega" + +#: ../../addon/dav/common/wdcal_edit.inc.php:197 +#: ../../include/contact_selectors.php:60 +msgid "Weekly" +msgstr "Vikulega" + +#: ../../addon/dav/common/wdcal_edit.inc.php:200 +#: ../../include/contact_selectors.php:61 +msgid "Monthly" +msgstr "Mánaðarlega" + +#: ../../addon/dav/common/wdcal_edit.inc.php:203 +msgid "Yearly" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:214 +#: ../../include/datetime.php:288 +msgid "days" +msgstr "dagar" + +#: ../../addon/dav/common/wdcal_edit.inc.php:215 +#: ../../include/datetime.php:287 +msgid "weeks" +msgstr "vikur" + +#: ../../addon/dav/common/wdcal_edit.inc.php:216 +#: ../../include/datetime.php:286 +msgid "months" +msgstr "mánuðir" + +#: ../../addon/dav/common/wdcal_edit.inc.php:217 +#: ../../include/datetime.php:285 +msgid "years" +msgstr "ár" + +#: ../../addon/dav/common/wdcal_edit.inc.php:218 +msgid "Interval" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:218 +msgid "All %select% %time%" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:222 +#: ../../addon/dav/common/wdcal_edit.inc.php:260 +#: ../../addon/dav/common/wdcal_edit.inc.php:481 +msgid "Days" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:231 +#: ../../addon/dav/common/wdcal_edit.inc.php:254 +#: ../../addon/dav/common/wdcal_edit.inc.php:270 +#: ../../addon/dav/common/wdcal_edit.inc.php:293 +#: ../../addon/dav/common/wdcal_edit.inc.php:305 ../../include/text.php:917 +msgid "Sunday" +msgstr "Sunnudagur" + +#: ../../addon/dav/common/wdcal_edit.inc.php:235 +#: ../../addon/dav/common/wdcal_edit.inc.php:274 +#: ../../addon/dav/common/wdcal_edit.inc.php:308 ../../include/text.php:917 +msgid "Monday" +msgstr "Mánudagur" + +#: ../../addon/dav/common/wdcal_edit.inc.php:238 +#: ../../addon/dav/common/wdcal_edit.inc.php:277 ../../include/text.php:917 +msgid "Tuesday" +msgstr "Þriðjudagur" + +#: ../../addon/dav/common/wdcal_edit.inc.php:241 +#: ../../addon/dav/common/wdcal_edit.inc.php:280 ../../include/text.php:917 +msgid "Wednesday" +msgstr "Miðvikudagur" + +#: ../../addon/dav/common/wdcal_edit.inc.php:244 +#: ../../addon/dav/common/wdcal_edit.inc.php:283 ../../include/text.php:917 +msgid "Thursday" +msgstr "Fimmtudagur" + +#: ../../addon/dav/common/wdcal_edit.inc.php:247 +#: ../../addon/dav/common/wdcal_edit.inc.php:286 ../../include/text.php:917 +msgid "Friday" +msgstr "Föstudagur" + +#: ../../addon/dav/common/wdcal_edit.inc.php:250 +#: ../../addon/dav/common/wdcal_edit.inc.php:289 ../../include/text.php:917 +msgid "Saturday" +msgstr "Laugardagur" + +#: ../../addon/dav/common/wdcal_edit.inc.php:297 +msgid "First day of week:" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:350 +#: ../../addon/dav/common/wdcal_edit.inc.php:373 +msgid "Day of month" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:354 +msgid "#num#th of each month" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:357 +msgid "#num#th-last of each month" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:360 +msgid "#num#th #wkday# of each month" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:363 +msgid "#num#th-last #wkday# of each month" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:372 +#: ../../addon/dav/friendica/layout.fnk.php:255 +msgid "Month" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:377 +msgid "#num#th of the given month" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:380 +msgid "#num#th-last of the given month" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:383 +msgid "#num#th #wkday# of the given month" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:386 +msgid "#num#th-last #wkday# of the given month" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:413 +msgid "Repeat until" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:417 +msgid "Infinite" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:420 +msgid "Until the following date" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:423 +msgid "Number of times" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:429 +msgid "Exceptions" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:432 +msgid "none" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:449 +msgid "Notification" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:466 +msgid "Notify by" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:469 +msgid "E-Mail" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:470 +msgid "On Friendica / Display" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:474 +msgid "Time" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:478 +msgid "Hours" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:479 +msgid "Minutes" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:480 +msgid "Seconds" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:482 +msgid "Weeks" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:485 +msgid "before the" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:486 +msgid "start of the event" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:487 +msgid "end of the event" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:492 +msgid "Add a notification" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:687 +msgid "The event #name# will start at #date" +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:696 +msgid "#name# is about to begin." +msgstr "" + +#: ../../addon/dav/common/wdcal_edit.inc.php:769 +msgid "Saved" +msgstr "" + +#: ../../addon/dav/common/wdcal_configuration.php:148 +msgid "U.S. Time Format (mm/dd/YYYY)" +msgstr "" + +#: ../../addon/dav/common/wdcal_configuration.php:243 +msgid "German Time Format (dd.mm.YYYY)" +msgstr "" + +#: ../../addon/dav/common/dav_caldav_backend_private.inc.php:39 +msgid "Private Events" +msgstr "" + +#: ../../addon/dav/common/dav_carddav_backend_private.inc.php:46 +msgid "Private Addressbooks" +msgstr "" + +#: ../../addon/dav/friendica/dav_caldav_backend_virtual_friendica.inc.php:36 +msgid "Friendica-Native events" +msgstr "" + +#: ../../addon/dav/friendica/dav_carddav_backend_virtual_friendica.inc.php:36 +#: ../../addon/dav/friendica/dav_carddav_backend_virtual_friendica.inc.php:59 +msgid "Friendica-Contacts" +msgstr "" + +#: ../../addon/dav/friendica/dav_carddav_backend_virtual_friendica.inc.php:60 +msgid "Your Friendica-Contacts" +msgstr "" + +#: ../../addon/dav/friendica/layout.fnk.php:99 +#: ../../addon/dav/friendica/layout.fnk.php:136 +msgid "" +"Something went wrong when trying to import the file. Sorry. Maybe some " +"events were imported anyway." +msgstr "" + +#: ../../addon/dav/friendica/layout.fnk.php:131 +msgid "Something went wrong when trying to import the file. Sorry." +msgstr "" + +#: ../../addon/dav/friendica/layout.fnk.php:134 +msgid "The ICS-File has been imported." +msgstr "" + +#: ../../addon/dav/friendica/layout.fnk.php:138 +msgid "No file was uploaded." +msgstr "" + +#: ../../addon/dav/friendica/layout.fnk.php:147 +msgid "Import a ICS-file" +msgstr "" + +#: ../../addon/dav/friendica/layout.fnk.php:150 +msgid "ICS-File" +msgstr "" + +#: ../../addon/dav/friendica/layout.fnk.php:151 +msgid "Overwrite all #num# existing events" +msgstr "" + +#: ../../addon/dav/friendica/layout.fnk.php:228 +msgid "New event" +msgstr "" + +#: ../../addon/dav/friendica/layout.fnk.php:232 +msgid "Today" +msgstr "" + +#: ../../addon/dav/friendica/layout.fnk.php:241 +msgid "Day" +msgstr "" + +#: ../../addon/dav/friendica/layout.fnk.php:248 +msgid "Week" +msgstr "" + +#: ../../addon/dav/friendica/layout.fnk.php:260 +msgid "Reload" +msgstr "" + +#: ../../addon/dav/friendica/layout.fnk.php:271 +msgid "Date" +msgstr "" + +#: ../../addon/dav/friendica/layout.fnk.php:313 +msgid "Error" +msgstr "" + +#: ../../addon/dav/friendica/layout.fnk.php:380 +msgid "The calendar has been updated." +msgstr "" + +#: ../../addon/dav/friendica/layout.fnk.php:393 +msgid "The new calendar has been created." +msgstr "" + +#: ../../addon/dav/friendica/layout.fnk.php:417 +msgid "The calendar has been deleted." +msgstr "" + +#: ../../addon/dav/friendica/layout.fnk.php:424 +msgid "Calendar Settings" +msgstr "" + +#: ../../addon/dav/friendica/layout.fnk.php:430 +msgid "Date format" +msgstr "" + +#: ../../addon/dav/friendica/layout.fnk.php:439 +msgid "Time zone" +msgstr "" + +#: ../../addon/dav/friendica/layout.fnk.php:445 +msgid "Calendars" +msgstr "" + +#: ../../addon/dav/friendica/layout.fnk.php:487 +msgid "Create a new calendar" +msgstr "" + +#: ../../addon/dav/friendica/layout.fnk.php:496 +msgid "Limitations" +msgstr "" + +#: ../../addon/dav/friendica/layout.fnk.php:500 +#: ../../addon/libravatar/libravatar.php:82 +msgid "Warning" +msgstr "" + +#: ../../addon/dav/friendica/layout.fnk.php:504 +msgid "Synchronization (iPhone, Thunderbird Lightning, Android, ...)" +msgstr "" + +#: ../../addon/dav/friendica/layout.fnk.php:511 +msgid "Synchronizing this calendar with the iPhone" +msgstr "" + +#: ../../addon/dav/friendica/layout.fnk.php:522 +msgid "Synchronizing your Friendica-Contacts with the iPhone" +msgstr "" + +#: ../../addon/dav/friendica/main.php:202 +msgid "" +"The current version of this plugin has not been set up correctly. Please " +"contact the system administrator of your installation of friendica to fix " +"this." +msgstr "" + +#: ../../addon/dav/friendica/main.php:242 +msgid "Extended calendar with CalDAV-support" +msgstr "" + +#: ../../addon/dav/friendica/main.php:279 +#: ../../addon/dav/friendica/main.php:280 ../../include/delivery.php:464 +#: ../../include/enotify.php:28 ../../include/notifier.php:710 +msgid "noreply" +msgstr "ekki svara" + +#: ../../addon/dav/friendica/main.php:282 +msgid "Notification: " +msgstr "" + +#: ../../addon/dav/friendica/main.php:309 +msgid "The database tables have been installed." +msgstr "" + +#: ../../addon/dav/friendica/main.php:310 +msgid "An error occurred during the installation." +msgstr "" + +#: ../../addon/dav/friendica/main.php:316 +msgid "The database tables have been updated." +msgstr "" + +#: ../../addon/dav/friendica/main.php:317 +msgid "An error occurred during the update." +msgstr "" + +#: ../../addon/dav/friendica/main.php:333 +msgid "No system-wide settings yet." +msgstr "" + +#: ../../addon/dav/friendica/main.php:336 +msgid "Database status" +msgstr "" + +#: ../../addon/dav/friendica/main.php:339 +msgid "Installed" +msgstr "" + +#: ../../addon/dav/friendica/main.php:343 +msgid "Upgrade needed" +msgstr "" + +#: ../../addon/dav/friendica/main.php:343 +msgid "" +"Please back up all calendar data (the tables beginning with dav_*) before " +"proceeding. While all calendar events should be converted to the new " +"database structure, it's always safe to have a backup. Below, you can have a" +" look at the database-queries that will be made when pressing the " +"'update'-button." +msgstr "" + +#: ../../addon/dav/friendica/main.php:343 +msgid "Upgrade" +msgstr "" + +#: ../../addon/dav/friendica/main.php:346 +msgid "Not installed" +msgstr "" + +#: ../../addon/dav/friendica/main.php:346 +msgid "Install" +msgstr "" + +#: ../../addon/dav/friendica/main.php:350 +msgid "Unknown" +msgstr "" + +#: ../../addon/dav/friendica/main.php:350 +msgid "" +"Something really went wrong. I cannot recover from this state automatically," +" sorry. Please go to the database backend, back up the data, and delete all " +"tables beginning with 'dav_' manually. Afterwards, this installation routine" +" should be able to reinitialize the tables automatically." +msgstr "" + +#: ../../addon/dav/friendica/main.php:355 +msgid "Troubleshooting" +msgstr "" + +#: ../../addon/dav/friendica/main.php:356 +msgid "Manual creation of the database tables:" +msgstr "" + +#: ../../addon/dav/friendica/main.php:357 +msgid "Show SQL-statements" +msgstr "" + +#: ../../addon/dav/friendica/calendar.friendica.fnk.php:206 +msgid "Private Calendar" +msgstr "" + +#: ../../addon/dav/friendica/calendar.friendica.fnk.php:207 +msgid "Friendica Events: Mine" +msgstr "" + +#: ../../addon/dav/friendica/calendar.friendica.fnk.php:208 +msgid "Friendica Events: Contacts" +msgstr "" + +#: ../../addon/dav/friendica/calendar.friendica.fnk.php:248 +msgid "Private Addresses" +msgstr "" + +#: ../../addon/dav/friendica/calendar.friendica.fnk.php:249 +msgid "Friendica Contacts" +msgstr "" + +#: ../../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 "" + +#: ../../addon/uhremotestorage/uhremotestorage.php:85 +msgid "Template URL (with {category})" +msgstr "" + +#: ../../addon/uhremotestorage/uhremotestorage.php:86 +msgid "OAuth end-point" +msgstr "" + +#: ../../addon/uhremotestorage/uhremotestorage.php:87 +msgid "Api" +msgstr "Api" + +#: ../../addon/membersince/membersince.php:18 +msgid "Member since:" +msgstr "" + +#: ../../addon/tictac/tictac.php:20 +msgid "Three Dimensional Tic-Tac-Toe" +msgstr "Þrívíddar milla" + +#: ../../addon/tictac/tictac.php:53 +msgid "3D Tic-Tac-Toe" +msgstr "3D milla" + +#: ../../addon/tictac/tictac.php:58 +msgid "New game" +msgstr "Nýr leikur" + +#: ../../addon/tictac/tictac.php:59 +msgid "New game with handicap" +msgstr "Nýr leikur með forgjöf" + +#: ../../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 "Þrívíddar milla er alveg einsog upphaflegi leikurinn nema spilað er á mörgum borðum í einu." + +#: ../../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 "Í þessu tilviki þá eru þrjú borð. Þú vinnur með því að ná þremur í röð á hvaða borði sem er, upp, niður eða á ská yfir mörg borð." + +#: ../../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 "Leikurinn með forgjöf slekkur á miðjunni á mið borðinu því sá sem nær þeim stað hefur yfir leitt yfirburði." + +#: ../../addon/tictac/tictac.php:182 +msgid "You go first..." +msgstr "Þú byrjar..." + +#: ../../addon/tictac/tictac.php:187 +msgid "I'm going first this time..." +msgstr "Ég byrja í þetta skiptið..." + +#: ../../addon/tictac/tictac.php:193 +msgid "You won!" +msgstr "Þú vannst!" + +#: ../../addon/tictac/tictac.php:199 ../../addon/tictac/tictac.php:224 +msgid "\"Cat\" game!" +msgstr "Jafntefli" + +#: ../../addon/tictac/tictac.php:222 +msgid "I won!" +msgstr "Ég vann!" + +#: ../../addon/randplace/randplace.php:169 +msgid "Randplace Settings" +msgstr "Stilla Randplace" + +#: ../../addon/randplace/randplace.php:171 +msgid "Enable Randplace Plugin" +msgstr "Kveikja á Randplace einingu" + +#: ../../addon/dwpost/dwpost.php:39 +msgid "Post to Dreamwidth" +msgstr "" + +#: ../../addon/dwpost/dwpost.php:70 +msgid "Dreamwidth Post Settings" +msgstr "" + +#: ../../addon/dwpost/dwpost.php:72 +msgid "Enable dreamwidth Post Plugin" +msgstr "" + +#: ../../addon/dwpost/dwpost.php:77 +msgid "dreamwidth username" +msgstr "" + +#: ../../addon/dwpost/dwpost.php:82 +msgid "dreamwidth password" +msgstr "" + +#: ../../addon/dwpost/dwpost.php:87 +msgid "Post to dreamwidth by default" +msgstr "" + +#: ../../addon/drpost/drpost.php:35 +msgid "Post to Drupal" +msgstr "" + +#: ../../addon/drpost/drpost.php:72 +msgid "Drupal Post Settings" +msgstr "" + +#: ../../addon/drpost/drpost.php:74 +msgid "Enable Drupal Post Plugin" +msgstr "" + +#: ../../addon/drpost/drpost.php:79 +msgid "Drupal username" +msgstr "Drupal notendanafn" + +#: ../../addon/drpost/drpost.php:84 +msgid "Drupal password" +msgstr "Drupal aðgangsorð" + +#: ../../addon/drpost/drpost.php:89 +msgid "Post Type - article,page,or blog" +msgstr "" + +#: ../../addon/drpost/drpost.php:94 +msgid "Drupal site URL" +msgstr "" + +#: ../../addon/drpost/drpost.php:99 +msgid "Drupal site uses clean URLS" +msgstr "" + +#: ../../addon/drpost/drpost.php:104 +msgid "Post to Drupal by default" +msgstr "" + +#: ../../addon/drpost/drpost.php:184 ../../addon/wppost/wppost.php:201 +#: ../../addon/blogger/blogger.php:172 ../../addon/posterous/posterous.php:189 +msgid "Post from Friendica" +msgstr "Færslur frá Friendica" + +#: ../../addon/startpage/startpage.php:83 +msgid "Startpage Settings" +msgstr "" + +#: ../../addon/startpage/startpage.php:85 +msgid "Home page to load after login - leave blank for profile wall" +msgstr "" + +#: ../../addon/startpage/startpage.php:88 +msgid "Examples: "network" or "notifications/system"" +msgstr "" + +#: ../../addon/geonames/geonames.php:143 +msgid "Geonames settings updated." +msgstr "" + +#: ../../addon/geonames/geonames.php:179 +msgid "Geonames Settings" +msgstr "" + +#: ../../addon/geonames/geonames.php:181 +msgid "Enable Geonames Plugin" +msgstr "" + +#: ../../addon/public_server/public_server.php:126 +#: ../../addon/testdrive/testdrive.php:94 +#, php-format +msgid "Your account on %s will expire in a few days." +msgstr "" + +#: ../../addon/public_server/public_server.php:127 +msgid "Your Friendica account is about to expire." +msgstr "" + +#: ../../addon/public_server/public_server.php:128 +#, php-format +msgid "" +"Hi %1$s,\n" +"\n" +"Your account on %2$s will expire in less than five days. You may keep your account by logging in at least once every 30 days" +msgstr "" + +#: ../../addon/js_upload/js_upload.php:43 +msgid "Upload a file" +msgstr "Hlaða upp skrá" + +#: ../../addon/js_upload/js_upload.php:44 +msgid "Drop files here to upload" +msgstr "Slepptu skrám hér til að hala upp" + +#: ../../addon/js_upload/js_upload.php:46 +msgid "Failed" +msgstr "Mistókst" + +#: ../../addon/js_upload/js_upload.php:297 +msgid "No files were uploaded." +msgstr "Engum skráð hlaðið upp." + +#: ../../addon/js_upload/js_upload.php:303 +msgid "Uploaded file is empty" +msgstr "Skrá sem var hlaðið upp er tóm" + +#: ../../addon/js_upload/js_upload.php:326 +msgid "File has an invalid extension, it should be one of " +msgstr "Skrá hefur ógilda skránafnsendingu, ætti að vera eitt af" + +#: ../../addon/js_upload/js_upload.php:337 +msgid "Upload was cancelled, or server error encountered" +msgstr "Hætt var við upphal eða kerfisvilla kom upp" + +#: ../../addon/oembed.old/oembed.php:30 +msgid "OEmbed settings updated" +msgstr "OEmbed stillingar uppfærðar" + +#: ../../addon/oembed.old/oembed.php:43 +msgid "Use OEmbed for YouTube videos" +msgstr "Nota OEmbed fyrir YouTube myndbönd" + +#: ../../addon/oembed.old/oembed.php:71 +msgid "URL to embed:" +msgstr "Slóð á embed:" + +#: ../../addon/forumlist/forumlist.php:57 +msgid "show/hide" +msgstr "" + +#: ../../addon/forumlist/forumlist.php:72 +msgid "No forum subscriptions" +msgstr "" + +#: ../../addon/forumlist/forumlist.php:124 +msgid "Forumlist settings updated." +msgstr "" + +#: ../../addon/forumlist/forumlist.php:153 +msgid "Forumlist Settings" +msgstr "" + +#: ../../addon/forumlist/forumlist.php:158 +msgid "Randomise Forumlist/Forum list" +msgstr "" + +#: ../../addon/forumlist/forumlist.php:161 +msgid "Show forumlists/forums on profile forumlist" +msgstr "" + +#: ../../addon/impressum/impressum.php:37 +msgid "Impressum" +msgstr "Impressum" + +#: ../../addon/impressum/impressum.php:50 +#: ../../addon/impressum/impressum.php:52 +#: ../../addon/impressum/impressum.php:84 +msgid "Site Owner" +msgstr "Eigandi vefs" + +#: ../../addon/impressum/impressum.php:50 +#: ../../addon/impressum/impressum.php:88 +msgid "Email Address" +msgstr "Póstfang" + +#: ../../addon/impressum/impressum.php:55 +#: ../../addon/impressum/impressum.php:86 +msgid "Postal Address" +msgstr "Heimilisfang" + +#: ../../addon/impressum/impressum.php:61 +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 "Það þarf að stilla Impressum viðbótina!
    Vinsamlegast bætið allavega við eiganda breytunni " + +#: ../../addon/impressum/impressum.php:84 +msgid "The page operators name." +msgstr "" + +#: ../../addon/impressum/impressum.php:85 +msgid "Site Owners Profile" +msgstr "Forsíða eiganda vefs" + +#: ../../addon/impressum/impressum.php:85 +msgid "Profile address of the operator." +msgstr "" + +#: ../../addon/impressum/impressum.php:86 +msgid "How to contact the operator via snail mail. You can use BBCode here." +msgstr "" + +#: ../../addon/impressum/impressum.php:87 +msgid "Notes" +msgstr "Glósur" + +#: ../../addon/impressum/impressum.php:87 +msgid "" +"Additional notes that are displayed beneath the contact information. You can" +" use BBCode here." +msgstr "" + +#: ../../addon/impressum/impressum.php:88 +msgid "How to contact the operator via email. (will be displayed obfuscated)" +msgstr "" + +#: ../../addon/impressum/impressum.php:89 +msgid "Footer note" +msgstr "" + +#: ../../addon/impressum/impressum.php:89 +msgid "Text for the footer. You can use BBCode here." +msgstr "" + +#: ../../addon/buglink/buglink.php:15 +msgid "Report Bug" +msgstr "Tilkynna bilun" + +#: ../../addon/notimeline/notimeline.php:32 +msgid "No Timeline settings updated." +msgstr "" + +#: ../../addon/notimeline/notimeline.php:56 +msgid "No Timeline Settings" +msgstr "" + +#: ../../addon/notimeline/notimeline.php:58 +msgid "Disable Archive selector on profile wall" +msgstr "" + +#: ../../addon/blockem/blockem.php:51 +msgid "\"Blockem\" Settings" +msgstr "\"Blockem\" stillingar" + +#: ../../addon/blockem/blockem.php:53 +msgid "Comma separated profile URLS to block" +msgstr "Banna lista af forsíðum (komma á milli)" + +#: ../../addon/blockem/blockem.php:70 +msgid "BLOCKEM Settings saved." +msgstr "BLOCKEM stillingar vistaðar." + +#: ../../addon/blockem/blockem.php:105 +#, php-format +msgid "Blocked %s - Click to open/close" +msgstr "%s sett í straff - Smella til að taka úr/setja á" + +#: ../../addon/blockem/blockem.php:160 +msgid "Unblock Author" +msgstr "Leyfa notanda" + +#: ../../addon/blockem/blockem.php:162 +msgid "Block Author" +msgstr "Banna notanda" + +#: ../../addon/blockem/blockem.php:194 +msgid "blockem settings updated" +msgstr "" + +#: ../../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 "" + +#: ../../addon/qcomment/qcomment.php:56 +msgid "" +"Quick comments are found near comment boxes, sometimes hidden. Click them to" +" provide simple replies." +msgstr "" + +#: ../../addon/qcomment/qcomment.php:57 +msgid "Enter quick comments, one per line" +msgstr "" + +#: ../../addon/qcomment/qcomment.php:75 +msgid "Quick Comment settings saved." +msgstr "" + +#: ../../addon/openstreetmap/openstreetmap.php:71 +msgid "Tile Server URL" +msgstr "" + +#: ../../addon/openstreetmap/openstreetmap.php:71 +msgid "" +"A list of public tile servers" +msgstr "" + +#: ../../addon/openstreetmap/openstreetmap.php:72 +msgid "Default zoom" +msgstr "Sjálfgefin þysjun" + +#: ../../addon/openstreetmap/openstreetmap.php:72 +msgid "The default zoom level. (1:world, 18:highest)" +msgstr "Sjálfgefna þysjunar sig. (1:heimur, 18:mest)" + +#: ../../addon/group_text/group_text.php:46 +#: ../../addon/editplain/editplain.php:46 +msgid "Editplain settings updated." +msgstr "" + +#: ../../addon/group_text/group_text.php:76 +msgid "Group Text" +msgstr "" + +#: ../../addon/group_text/group_text.php:78 +msgid "Use a text only (non-image) group selector in the \"group edit\" menu" +msgstr "" + +#: ../../addon/libravatar/libravatar.php:14 +msgid "Could NOT install Libravatar successfully.
    It requires PHP >= 5.3" +msgstr "" + +#: ../../addon/libravatar/libravatar.php:73 +#: ../../addon/gravatar/gravatar.php:71 +msgid "generic profile image" +msgstr "" + +#: ../../addon/libravatar/libravatar.php:74 +#: ../../addon/gravatar/gravatar.php:72 +msgid "random geometric pattern" +msgstr "" + +#: ../../addon/libravatar/libravatar.php:75 +#: ../../addon/gravatar/gravatar.php:73 +msgid "monster face" +msgstr "" + +#: ../../addon/libravatar/libravatar.php:76 +#: ../../addon/gravatar/gravatar.php:74 +msgid "computer generated face" +msgstr "" + +#: ../../addon/libravatar/libravatar.php:77 +#: ../../addon/gravatar/gravatar.php:75 +msgid "retro arcade style face" +msgstr "" + +#: ../../addon/libravatar/libravatar.php:83 +#, php-format +msgid "Your PHP version %s is lower than the required PHP >= 5.3." +msgstr "" + +#: ../../addon/libravatar/libravatar.php:84 +msgid "This addon is not functional on your server." +msgstr "" + +#: ../../addon/libravatar/libravatar.php:93 +#: ../../addon/gravatar/gravatar.php:89 +msgid "Information" +msgstr "" + +#: ../../addon/libravatar/libravatar.php:93 +msgid "" +"Gravatar addon is installed. Please disable the Gravatar addon.
    The " +"Libravatar addon will fall back to Gravatar if nothing was found at " +"Libravatar." +msgstr "" + +#: ../../addon/libravatar/libravatar.php:100 +#: ../../addon/gravatar/gravatar.php:96 +msgid "Default avatar image" +msgstr "" + +#: ../../addon/libravatar/libravatar.php:100 +msgid "Select default avatar image if none was found. See README" +msgstr "" + +#: ../../addon/libravatar/libravatar.php:112 +msgid "Libravatar settings updated." +msgstr "" + +#: ../../addon/libertree/libertree.php:36 +msgid "Post to libertree" +msgstr "" + +#: ../../addon/libertree/libertree.php:67 +msgid "libertree Post Settings" +msgstr "" + +#: ../../addon/libertree/libertree.php:69 +msgid "Enable Libertree Post Plugin" +msgstr "" + +#: ../../addon/libertree/libertree.php:74 +msgid "Libertree API token" +msgstr "" + +#: ../../addon/libertree/libertree.php:79 +msgid "Libertree site URL" +msgstr "" + +#: ../../addon/libertree/libertree.php:84 +msgid "Post to Libertree by default" +msgstr "" + +#: ../../addon/altpager/altpager.php:46 +msgid "Altpager settings updated." +msgstr "" + +#: ../../addon/altpager/altpager.php:79 +msgid "Alternate Pagination Setting" +msgstr "" + +#: ../../addon/altpager/altpager.php:81 +msgid "Use links to \"newer\" and \"older\" pages in place of page numbers?" +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:76 +msgid "Editplain Settings" +msgstr "" + +#: ../../addon/editplain/editplain.php:78 +msgid "Disable richtext status editor" +msgstr "" + +#: ../../addon/gravatar/gravatar.php:89 +msgid "" +"Libravatar addon is installed, too. Please disable Libravatar addon or this " +"Gravatar addon.
    The Libravatar addon will fall back to Gravatar if " +"nothing was found at Libravatar." +msgstr "" + +#: ../../addon/gravatar/gravatar.php:96 +msgid "Select default avatar image if none was found at Gravatar. See README" +msgstr "" + +#: ../../addon/gravatar/gravatar.php:97 +msgid "Rating of images" +msgstr "" + +#: ../../addon/gravatar/gravatar.php:97 +msgid "Select the appropriate avatar rating for your site. See README" +msgstr "" + +#: ../../addon/gravatar/gravatar.php:111 +msgid "Gravatar settings updated." +msgstr "" + +#: ../../addon/testdrive/testdrive.php:95 +msgid "Your Friendica test account is about to expire." +msgstr "" + +#: ../../addon/testdrive/testdrive.php:96 +#, php-format +msgid "" +"Hi %1$s,\n" +"\n" +"Your test account on %2$s will expire in less than five days. We hope you enjoyed this test drive and use this opportunity to find a permanent Friendica website for your integrated social communications. A list of public sites is available at http://dir.friendica.com/siteinfo - and for more information on setting up your own Friendica server please see the Friendica project website at http://friendica.com." +msgstr "" + +#: ../../addon/pageheader/pageheader.php:50 +msgid "\"pageheader\" Settings" +msgstr "Stillingar \"pageheader\"" + +#: ../../addon/pageheader/pageheader.php:68 +msgid "pageheader Settings saved." +msgstr "Stillingar pageheader vistaðar." + +#: ../../addon/ijpost/ijpost.php:39 +msgid "Post to Insanejournal" +msgstr "" + +#: ../../addon/ijpost/ijpost.php:70 +msgid "InsaneJournal Post Settings" +msgstr "" + +#: ../../addon/ijpost/ijpost.php:72 +msgid "Enable InsaneJournal Post Plugin" +msgstr "" + +#: ../../addon/ijpost/ijpost.php:77 +msgid "InsaneJournal username" +msgstr "" + +#: ../../addon/ijpost/ijpost.php:82 +msgid "InsaneJournal password" +msgstr "" + +#: ../../addon/ijpost/ijpost.php:87 +msgid "Post to InsaneJournal by default" +msgstr "" + +#: ../../addon/jappixmini/jappixmini.php:266 +msgid "Jappix Mini addon settings" +msgstr "" + +#: ../../addon/jappixmini/jappixmini.php:268 +msgid "Activate addon" +msgstr "" + +#: ../../addon/jappixmini/jappixmini.php:271 +msgid "" +"Do not insert the Jappixmini Chat-Widget into the webinterface" +msgstr "" + +#: ../../addon/jappixmini/jappixmini.php:274 +msgid "Jabber username" +msgstr "" + +#: ../../addon/jappixmini/jappixmini.php:277 +msgid "Jabber server" +msgstr "" + +#: ../../addon/jappixmini/jappixmini.php:281 +msgid "Jabber BOSH host" +msgstr "" + +#: ../../addon/jappixmini/jappixmini.php:285 +msgid "Jabber password" +msgstr "" + +#: ../../addon/jappixmini/jappixmini.php:290 +msgid "Encrypt Jabber password with Friendica password (recommended)" +msgstr "" + +#: ../../addon/jappixmini/jappixmini.php:293 +msgid "Friendica password" +msgstr "" + +#: ../../addon/jappixmini/jappixmini.php:296 +msgid "Approve subscription requests from Friendica contacts automatically" +msgstr "" + +#: ../../addon/jappixmini/jappixmini.php:299 +msgid "Subscribe to Friendica contacts automatically" +msgstr "" + +#: ../../addon/jappixmini/jappixmini.php:302 +msgid "Purge internal list of jabber addresses of contacts" +msgstr "" + +#: ../../addon/jappixmini/jappixmini.php:308 +msgid "Add contact" +msgstr "" + +#: ../../addon/viewsrc/viewsrc.php:37 +msgid "View Source" +msgstr "" + +#: ../../addon/statusnet/statusnet.php:134 +msgid "Post to StatusNet" +msgstr "Senda færslu á StatusNet" + +#: ../../addon/statusnet/statusnet.php:176 +msgid "" +"Please contact your site administrator.
    The provided API URL is not " +"valid." +msgstr "Hafðu samband við kerfisstjóra.
    Uppgefin API slóð er ógild." + +#: ../../addon/statusnet/statusnet.php:204 +msgid "We could not contact the StatusNet API with the Path you entered." +msgstr "Ekki náðist í StatusNet API með slóð sem þú gafst upp." + +#: ../../addon/statusnet/statusnet.php:232 +msgid "StatusNet settings updated." +msgstr "StatusNet stillingar uppfærðar." + +#: ../../addon/statusnet/statusnet.php:257 +msgid "StatusNet Posting Settings" +msgstr "StatusNet færslu stillingar" + +#: ../../addon/statusnet/statusnet.php:271 +msgid "Globally Available StatusNet OAuthKeys" +msgstr "StatusNet OAuthKey í boði á heimsvísu" + +#: ../../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 "Það eru forstillt OAuth lykla pör í sumum StatusNet þjónum. Ef þú ert að nota slíkt par, notaðu þá þau auðkenni. Ef ekki þá er þér frjálst að tengjast hvaða öðrum StatusNet þjón (sjá fyrir neðan)." + +#: ../../addon/statusnet/statusnet.php:280 +msgid "Provide your own OAuth Credentials" +msgstr "Gefðu upp eigin OAuth auðkenni" + +#: ../../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 "" + +#: ../../addon/statusnet/statusnet.php:283 +msgid "OAuth Consumer Key" +msgstr "OAuth notenda lykill" + +#: ../../addon/statusnet/statusnet.php:286 +msgid "OAuth Consumer Secret" +msgstr "OAuth notenda leyndarmál" + +#: ../../addon/statusnet/statusnet.php:289 +msgid "Base API Path (remember the trailing /)" +msgstr "Grunn API slóð (muna eftir / í endann)" + +#: ../../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 "Til að tengjast StatusNet notandanum ýttu á takkann fyrir neðan, þá fæst öryggis lykill frá StatusNet sem þarf að afrita í svæðið fyrir neðan og senda inn. Aðeins opinberar færslur munu flæða yfir á StatusNet." + +#: ../../addon/statusnet/statusnet.php:311 +msgid "Log in with StatusNet" +msgstr "Innskrá með StatusNet" + +#: ../../addon/statusnet/statusnet.php:313 +msgid "Copy the security code from StatusNet here" +msgstr "Afrita öryggis lykil frá StatusNet hingað" + +#: ../../addon/statusnet/statusnet.php:319 +msgid "Cancel Connection Process" +msgstr "Hætta við tengi ferli" + +#: ../../addon/statusnet/statusnet.php:321 +msgid "Current StatusNet API is" +msgstr "Núverandi StatusNet API er" + +#: ../../addon/statusnet/statusnet.php:322 +msgid "Cancel StatusNet Connection" +msgstr "Hætta við StatusNet tengingu" + +#: ../../addon/statusnet/statusnet.php:333 ../../addon/twitter/twitter.php:189 +msgid "Currently connected to: " +msgstr "Núna tengdur við:" + +#: ../../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 "Ef virkt þá geta allar opinberu stöðu meldingarnar þínar verið birtar á tengdri StatusNet síðu. Þú getur valið að gera þetta sjálfvirkt (hér) eða fyrir hvern póst í senn þegar hann er skrifaður." + +#: ../../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 "" + +#: ../../addon/statusnet/statusnet.php:339 +msgid "Allow posting to StatusNet" +msgstr "Leyfa sendingu færslna til StatusNet" + +#: ../../addon/statusnet/statusnet.php:342 +msgid "Send public postings to StatusNet by default" +msgstr "Sjálfgefið senda opinberar færslur á StatusNet" + +#: ../../addon/statusnet/statusnet.php:345 +msgid "Send linked #-tags and @-names to StatusNet" +msgstr "" + +#: ../../addon/statusnet/statusnet.php:350 ../../addon/twitter/twitter.php:206 +msgid "Clear OAuth configuration" +msgstr "Hreinsa OAuth stillingar" + +#: ../../addon/statusnet/statusnet.php:568 +msgid "API URL" +msgstr "API slóð" + +#: ../../addon/infiniteimprobabilitydrive/infiniteimprobabilitydrive.php:19 +msgid "Infinite Improbability Drive" +msgstr "" + +#: ../../addon/tumblr/tumblr.php:36 +msgid "Post to Tumblr" +msgstr "Senda fæslu til Tumblr" + +#: ../../addon/tumblr/tumblr.php:67 +msgid "Tumblr Post Settings" +msgstr "Tumblr færslu stillingar" + +#: ../../addon/tumblr/tumblr.php:69 +msgid "Enable Tumblr Post Plugin" +msgstr "Leyfa Tumblr færslu viðbót" + +#: ../../addon/tumblr/tumblr.php:74 +msgid "Tumblr login" +msgstr "Tumblr innskráning" + +#: ../../addon/tumblr/tumblr.php:79 +msgid "Tumblr password" +msgstr "Tumblr aðgangsorð" + +#: ../../addon/tumblr/tumblr.php:84 +msgid "Post to Tumblr by default" +msgstr "Senda færslu á Tumblr sjálfvirkt" + +#: ../../addon/numfriends/numfriends.php:46 +msgid "Numfriends settings updated." +msgstr "" + +#: ../../addon/numfriends/numfriends.php:77 +msgid "Numfriends Settings" +msgstr "" + +#: ../../addon/gnot/gnot.php:48 +msgid "Gnot settings updated." +msgstr "" + +#: ../../addon/gnot/gnot.php:79 +msgid "Gnot Settings" +msgstr "" + +#: ../../addon/gnot/gnot.php:81 +msgid "" +"Allows threading of email comment notifications on Gmail and anonymising the" +" subject line." +msgstr "" + +#: ../../addon/gnot/gnot.php:82 +msgid "Enable this plugin/addon?" +msgstr "" + +#: ../../addon/gnot/gnot.php:97 +#, php-format +msgid "[Friendica:Notify] Comment to conversation #%d" +msgstr "" + +#: ../../addon/wppost/wppost.php:42 +msgid "Post to Wordpress" +msgstr "Senda færslu á Wordpress" + +#: ../../addon/wppost/wppost.php:76 +msgid "WordPress Post Settings" +msgstr "Wordpress Post stillingar" + +#: ../../addon/wppost/wppost.php:78 +msgid "Enable WordPress Post Plugin" +msgstr "Kveikja á WordPress Post viðbót" + +#: ../../addon/wppost/wppost.php:83 +msgid "WordPress username" +msgstr "Wordpress aðgangsorð" + +#: ../../addon/wppost/wppost.php:88 +msgid "WordPress password" +msgstr "Wordpress aðgagnsorð" + +#: ../../addon/wppost/wppost.php:93 +msgid "WordPress API URL" +msgstr "Slóð á Wordpress API" + +#: ../../addon/wppost/wppost.php:98 +msgid "Post to WordPress by default" +msgstr "Leyfa færslum að flæða yfir á Wordpress sjálfgefið" + +#: ../../addon/wppost/wppost.php:103 +msgid "Provide a backlink to the Friendica post" +msgstr "" + +#: ../../addon/wppost/wppost.php:207 +msgid "Read the original post and comment stream on Friendica" +msgstr "" + +#: ../../addon/showmore/showmore.php:38 +msgid "\"Show more\" Settings" +msgstr "\"Show more\" stillingar" + +#: ../../addon/showmore/showmore.php:41 +msgid "Enable Show More" +msgstr "Kveikja á Show More" + +#: ../../addon/showmore/showmore.php:44 +msgid "Cutting posts after how much characters" +msgstr "" + +#: ../../addon/showmore/showmore.php:65 +msgid "Show More Settings saved." +msgstr "Sýna " + +#: ../../addon/piwik/piwik.php:79 +msgid "" +"This website is tracked using the Piwik " +"analytics tool." +msgstr "Þessi vefur er í Piwik vefmælingu." + +#: ../../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 "Ef þú villt ekki vera í vefmælingu smelltu hér til að sækja köku sem afskráir þig úr mælingu." + +#: ../../addon/piwik/piwik.php:90 +msgid "Piwik Base URL" +msgstr "Slóð á Piwik grunn" + +#: ../../addon/piwik/piwik.php:90 +msgid "" +"Absolute path to your Piwik installation. (without protocol (http/s), with " +"trailing slash)" +msgstr "" + +#: ../../addon/piwik/piwik.php:91 +msgid "Site ID" +msgstr "Auðkenni vefs" + +#: ../../addon/piwik/piwik.php:92 +msgid "Show opt-out cookie link?" +msgstr "Sýna ekki taka við kökum " + +#: ../../addon/piwik/piwik.php:93 +msgid "Asynchronous tracking" +msgstr "" + +#: ../../addon/twitter/twitter.php:73 +msgid "Post to Twitter" +msgstr "Senda færslu á Twitter" + +#: ../../addon/twitter/twitter.php:122 +msgid "Twitter settings updated." +msgstr "Stillingar Twitter uppfærðar." + +#: ../../addon/twitter/twitter.php:146 +msgid "Twitter Posting Settings" +msgstr "Twitter færslu stillingar" + +#: ../../addon/twitter/twitter.php:153 +msgid "" +"No consumer key pair for Twitter found. Please contact your site " +"administrator." +msgstr "Ekkert notenda lykils par fyrir Twitter fundið. Hafðu samband við kerfisstjórann." + +#: ../../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 "" + +#: ../../addon/twitter/twitter.php:173 +msgid "Log in with Twitter" +msgstr "Innskrá með Twitter" + +#: ../../addon/twitter/twitter.php:175 +msgid "Copy the PIN from Twitter here" +msgstr "Afrita PIN frá Twitter hingað" + +#: ../../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 "Ef virkt þá geta allar opinberu stöðu meldingarnar þínar verið birtar á tengdri StatusNet síðu. Þú getur valið að gera þetta sjálfvirkt (hér) eða fyrir hvern póst í senn þegar hann er skrifaður." + +#: ../../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 "" + +#: ../../addon/twitter/twitter.php:195 +msgid "Allow posting to Twitter" +msgstr "Leyfa færslum að flæða á Twitter" + +#: ../../addon/twitter/twitter.php:198 +msgid "Send public postings to Twitter by default" +msgstr "Senda sjálfgefið opinberar færslur á Twitter" + +#: ../../addon/twitter/twitter.php:201 +msgid "Send linked #-tags and @-names to Twitter" +msgstr "" + +#: ../../addon/twitter/twitter.php:396 +msgid "Consumer key" +msgstr "Lykill neytanda" + +#: ../../addon/twitter/twitter.php:397 +msgid "Consumer secret" +msgstr "Leyndarmál neytanda" + +#: ../../addon/irc/irc.php:44 +msgid "IRC Settings" +msgstr "IRC stillingar" + +#: ../../addon/irc/irc.php:46 +msgid "Channel(s) to auto connect (comma separated)" +msgstr "Tengjast rásum sjálfkrafa (komma á milli)" + +#: ../../addon/irc/irc.php:51 +msgid "Popular Channels (comma separated)" +msgstr "Vinsælar rásir (komma á milli)" + +#: ../../addon/irc/irc.php:69 +msgid "IRC settings saved." +msgstr "IRC stillingum vistað" + +#: ../../addon/irc/irc.php:74 +msgid "IRC Chatroom" +msgstr "" + +#: ../../addon/irc/irc.php:96 +msgid "Popular Channels" +msgstr "" + +#: ../../addon/fromapp/fromapp.php:38 +msgid "Fromapp settings updated." +msgstr "" + +#: ../../addon/fromapp/fromapp.php:64 +msgid "FromApp Settings" +msgstr "" + +#: ../../addon/fromapp/fromapp.php:66 +msgid "" +"The application name you would like to show your posts originating from." +msgstr "" + +#: ../../addon/fromapp/fromapp.php:70 +msgid "Use this application name even if another application was used." +msgstr "" + +#: ../../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:37 +msgid "Post to Posterous" +msgstr "Senda færslu á Posterous" + +#: ../../addon/posterous/posterous.php:70 +msgid "Posterous Post Settings" +msgstr "Stilla Posterous Post" + +#: ../../addon/posterous/posterous.php:72 +msgid "Enable Posterous Post Plugin" +msgstr "Kveðja á Posterous Post viðbót " + +#: ../../addon/posterous/posterous.php:77 +msgid "Posterous login" +msgstr "Posterous notendanafn" + +#: ../../addon/posterous/posterous.php:82 +msgid "Posterous password" +msgstr "Posterous aðgangsorð" + +#: ../../addon/posterous/posterous.php:87 +msgid "Posterous site ID" +msgstr "" + +#: ../../addon/posterous/posterous.php:92 +msgid "Posterous API token" +msgstr "" + +#: ../../addon/posterous/posterous.php:97 +msgid "Post to Posterous by default" +msgstr "Sjálfgefið láta færslur flæða á Posterous" + +#: ../../view/theme/cleanzero/config.php:82 +#: ../../view/theme/diabook/config.php:192 +#: ../../view/theme/quattro/config.php:55 ../../view/theme/dispy/config.php:72 +msgid "Theme settings" +msgstr "" + +#: ../../view/theme/cleanzero/config.php:83 +msgid "Set resize level for images in posts and comments (width and height)" +msgstr "" + +#: ../../view/theme/cleanzero/config.php:84 +#: ../../view/theme/diabook/config.php:193 +#: ../../view/theme/dispy/config.php:73 +msgid "Set font-size for posts and comments" +msgstr "" + +#: ../../view/theme/cleanzero/config.php:85 +msgid "Set theme width" +msgstr "" + +#: ../../view/theme/cleanzero/config.php:86 +#: ../../view/theme/quattro/config.php:57 +msgid "Color scheme" +msgstr "" + +#: ../../view/theme/diabook/theme.php:127 ../../include/nav.php:49 +#: ../../include/nav.php:115 +msgid "Your posts and conversations" +msgstr "Samtölin þín" + +#: ../../view/theme/diabook/theme.php:128 ../../include/nav.php:50 +msgid "Your profile page" +msgstr "Forsíðan þín" + +#: ../../view/theme/diabook/theme.php:129 +msgid "Your contacts" +msgstr "" + +#: ../../view/theme/diabook/theme.php:130 ../../include/nav.php:51 +msgid "Your photos" +msgstr "Þínar myndir" + +#: ../../view/theme/diabook/theme.php:131 ../../include/nav.php:52 +msgid "Your events" +msgstr "Þínir atburðir" + +#: ../../view/theme/diabook/theme.php:132 ../../include/nav.php:53 +msgid "Personal notes" +msgstr "Þínar einka glósur" + +#: ../../view/theme/diabook/theme.php:132 ../../include/nav.php:53 +msgid "Your personal photos" +msgstr "Þínar einka myndir" + +#: ../../view/theme/diabook/theme.php:134 +#: ../../view/theme/diabook/theme.php:643 +#: ../../view/theme/diabook/theme.php:747 +#: ../../view/theme/diabook/config.php:201 +msgid "Community Pages" +msgstr "" + +#: ../../view/theme/diabook/theme.php:490 +#: ../../view/theme/diabook/theme.php:749 +#: ../../view/theme/diabook/config.php:203 +msgid "Community Profiles" +msgstr "" + +#: ../../view/theme/diabook/theme.php:511 +#: ../../view/theme/diabook/theme.php:754 +#: ../../view/theme/diabook/config.php:208 +msgid "Last users" +msgstr "Nýjustu notendurnir" + +#: ../../view/theme/diabook/theme.php:540 +#: ../../view/theme/diabook/theme.php:756 +#: ../../view/theme/diabook/config.php:210 +msgid "Last likes" +msgstr "Nýjustu \"líkar þetta\"" + +#: ../../view/theme/diabook/theme.php:585 +#: ../../view/theme/diabook/theme.php:755 +#: ../../view/theme/diabook/config.php:209 +msgid "Last photos" +msgstr "Nýjustu myndirnar" + +#: ../../view/theme/diabook/theme.php:622 +#: ../../view/theme/diabook/theme.php:752 +#: ../../view/theme/diabook/config.php:206 +msgid "Find Friends" +msgstr "" + +#: ../../view/theme/diabook/theme.php:623 +msgid "Local Directory" +msgstr "" + +#: ../../view/theme/diabook/theme.php:625 ../../include/contact_widgets.php:35 +msgid "Similar Interests" +msgstr "Svipuð áhugamál" + +#: ../../view/theme/diabook/theme.php:627 ../../include/contact_widgets.php:37 +msgid "Invite Friends" +msgstr "Bjóða vinum aðgang" + +#: ../../view/theme/diabook/theme.php:678 +#: ../../view/theme/diabook/theme.php:748 +#: ../../view/theme/diabook/config.php:202 +msgid "Earth Layers" +msgstr "" + +#: ../../view/theme/diabook/theme.php:683 +msgid "Set zoomfactor for Earth Layers" +msgstr "" + +#: ../../view/theme/diabook/theme.php:684 +#: ../../view/theme/diabook/config.php:199 +msgid "Set longitude (X) for Earth Layers" +msgstr "" + +#: ../../view/theme/diabook/theme.php:685 +#: ../../view/theme/diabook/config.php:200 +msgid "Set latitude (Y) for Earth Layers" +msgstr "" + +#: ../../view/theme/diabook/theme.php:698 +#: ../../view/theme/diabook/theme.php:750 +#: ../../view/theme/diabook/config.php:204 +msgid "Help or @NewHere ?" +msgstr "" + +#: ../../view/theme/diabook/theme.php:705 +#: ../../view/theme/diabook/theme.php:751 +#: ../../view/theme/diabook/config.php:205 +msgid "Connect Services" +msgstr "" + +#: ../../view/theme/diabook/theme.php:712 +#: ../../view/theme/diabook/theme.php:753 +msgid "Last Tweets" +msgstr "" + +#: ../../view/theme/diabook/theme.php:715 +#: ../../view/theme/diabook/config.php:197 +msgid "Set twitter search term" +msgstr "" + +#: ../../view/theme/diabook/theme.php:735 +#: ../../view/theme/diabook/theme.php:736 +#: ../../view/theme/diabook/theme.php:737 +#: ../../view/theme/diabook/theme.php:738 +#: ../../view/theme/diabook/theme.php:739 +#: ../../view/theme/diabook/theme.php:740 +#: ../../view/theme/diabook/theme.php:741 +#: ../../view/theme/diabook/theme.php:742 +#: ../../view/theme/diabook/theme.php:743 +#: ../../view/theme/diabook/theme.php:744 ../../include/acl_selectors.php:288 +msgid "don't show" +msgstr "fela" + +#: ../../view/theme/diabook/theme.php:735 +#: ../../view/theme/diabook/theme.php:736 +#: ../../view/theme/diabook/theme.php:737 +#: ../../view/theme/diabook/theme.php:738 +#: ../../view/theme/diabook/theme.php:739 +#: ../../view/theme/diabook/theme.php:740 +#: ../../view/theme/diabook/theme.php:741 +#: ../../view/theme/diabook/theme.php:742 +#: ../../view/theme/diabook/theme.php:743 +#: ../../view/theme/diabook/theme.php:744 ../../include/acl_selectors.php:287 +msgid "show" +msgstr "sýna" + +#: ../../view/theme/diabook/theme.php:745 +msgid "Show/hide boxes at right-hand column:" +msgstr "" + +#: ../../view/theme/diabook/config.php:194 +#: ../../view/theme/dispy/config.php:74 +msgid "Set line-height for posts and comments" +msgstr "" + +#: ../../view/theme/diabook/config.php:195 +msgid "Set resolution for middle column" +msgstr "" + +#: ../../view/theme/diabook/config.php:196 +msgid "Set color scheme" +msgstr "Setja litar þema" + +#: ../../view/theme/diabook/config.php:198 +msgid "Set zoomfactor for Earth Layer" +msgstr "" + +#: ../../view/theme/diabook/config.php:207 +msgid "Last tweets" +msgstr "" + +#: ../../view/theme/quattro/config.php:56 +msgid "Alignment" +msgstr "" + +#: ../../view/theme/quattro/config.php:56 +msgid "Left" +msgstr "" + +#: ../../view/theme/quattro/config.php:56 +msgid "Center" +msgstr "" + +#: ../../view/theme/dispy/config.php:75 +msgid "Set colour scheme" +msgstr "Setja litar þema" + +#: ../../include/profile_advanced.php:22 +msgid "j F, Y" +msgstr "" + +#: ../../include/profile_advanced.php:23 +msgid "j F" +msgstr "" + +#: ../../include/profile_advanced.php:30 +msgid "Birthday:" +msgstr "Afmælisdagur:" + +#: ../../include/profile_advanced.php:34 +msgid "Age:" +msgstr "Aldur" + +#: ../../include/profile_advanced.php:43 +#, php-format +msgid "for %1$d %2$s" +msgstr "" + +#: ../../include/profile_advanced.php:52 +msgid "Tags:" +msgstr "Merki:" + +#: ../../include/profile_advanced.php:56 +msgid "Religion:" +msgstr "Trúarskoðanir:" + +#: ../../include/profile_advanced.php:60 +msgid "Hobbies/Interests:" +msgstr "Áhugamál/Áhugasvið:" + +#: ../../include/profile_advanced.php:67 +msgid "Contact information and Social Networks:" +msgstr "Tengiliða upplýsingar og samfélagsnet:" + +#: ../../include/profile_advanced.php:69 +msgid "Musical interests:" +msgstr "Tónlistar áhugi:" + +#: ../../include/profile_advanced.php:71 +msgid "Books, literature:" +msgstr "Bækur, bókmenntir:" + +#: ../../include/profile_advanced.php:73 +msgid "Television:" +msgstr "Sjónvarp:" + +#: ../../include/profile_advanced.php:75 +msgid "Film/dance/culture/entertainment:" +msgstr "Kvikmyndir/dans/menning/afþreying:" + +#: ../../include/profile_advanced.php:77 +msgid "Love/Romance:" +msgstr "Ást/rómantík" + +#: ../../include/profile_advanced.php:79 +msgid "Work/employment:" +msgstr "Atvinna:" + +#: ../../include/profile_advanced.php:81 +msgid "School/education:" +msgstr "Skóli/menntun:" + +#: ../../include/contact_selectors.php:32 +msgid "Unknown | Not categorised" +msgstr "Óþekkt | Ekki flokkað" + +#: ../../include/contact_selectors.php:33 +msgid "Block immediately" +msgstr "Hunsa samstundis" + +#: ../../include/contact_selectors.php:34 +msgid "Shady, spammer, self-marketer" +msgstr "Grunsamlegur, rusl sendari, auglýsandi" + +#: ../../include/contact_selectors.php:35 +msgid "Known to me, but no opinion" +msgstr "Ég þekki en hef ekki skoðun á" + +#: ../../include/contact_selectors.php:36 +msgid "OK, probably harmless" +msgstr "Í lagi, væntanlega saklaus" + +#: ../../include/contact_selectors.php:37 +msgid "Reputable, has my trust" +msgstr "ég treysti" + +#: ../../include/contact_selectors.php:56 +msgid "Frequently" +msgstr "Oft" + +#: ../../include/contact_selectors.php:57 +msgid "Hourly" +msgstr "Klukkustundar fresti" + +#: ../../include/contact_selectors.php:58 +msgid "Twice daily" +msgstr "Tvisvar á dag" + +#: ../../include/contact_selectors.php:77 +msgid "OStatus" +msgstr "OStatus" + +#: ../../include/contact_selectors.php:78 +msgid "RSS/Atom" +msgstr "RSS/Atom" + +#: ../../include/contact_selectors.php:82 +msgid "Zot!" +msgstr "Zot!" + +#: ../../include/contact_selectors.php:83 +msgid "LinkedIn" +msgstr "LinkedIn" + +#: ../../include/contact_selectors.php:84 +msgid "XMPP/IM" +msgstr "XMPP/IM" + +#: ../../include/contact_selectors.php:85 +msgid "MySpace" +msgstr "MySpace" + +#: ../../include/profile_selectors.php:6 +msgid "Male" +msgstr "Karlmaður" + +#: ../../include/profile_selectors.php:6 +msgid "Female" +msgstr "Kvenmaður" + +#: ../../include/profile_selectors.php:6 +msgid "Currently Male" +msgstr "Karlmaður í augnablikinu" + +#: ../../include/profile_selectors.php:6 +msgid "Currently Female" +msgstr "Kvenmaður í augnablikinu" + +#: ../../include/profile_selectors.php:6 +msgid "Mostly Male" +msgstr "Aðallega karlmaður" + +#: ../../include/profile_selectors.php:6 +msgid "Mostly Female" +msgstr "Aðallega kvenmaður" + +#: ../../include/profile_selectors.php:6 +msgid "Transgender" +msgstr "Kynskiptingur" + +#: ../../include/profile_selectors.php:6 +msgid "Intersex" +msgstr "Hvorukin" + +#: ../../include/profile_selectors.php:6 +msgid "Transsexual" +msgstr "Kynskiptingur" + +#: ../../include/profile_selectors.php:6 +msgid "Hermaphrodite" +msgstr "Tvíkynhneigð(ur)" + +#: ../../include/profile_selectors.php:6 +msgid "Neuter" +msgstr "Hvorukyn" + +#: ../../include/profile_selectors.php:6 +msgid "Non-specific" +msgstr "Ekki ákveðið" + +#: ../../include/profile_selectors.php:6 +msgid "Other" +msgstr "Annað" + +#: ../../include/profile_selectors.php:6 +msgid "Undecided" +msgstr "Óviss" + +#: ../../include/profile_selectors.php:23 +msgid "Males" +msgstr "Karlmenn" + +#: ../../include/profile_selectors.php:23 +msgid "Females" +msgstr "Kvenmenn" + +#: ../../include/profile_selectors.php:23 +msgid "Gay" +msgstr "Samkynhneigður" + +#: ../../include/profile_selectors.php:23 +msgid "Lesbian" +msgstr "Lesbía" + +#: ../../include/profile_selectors.php:23 +msgid "No Preference" +msgstr "Til í allt" + +#: ../../include/profile_selectors.php:23 +msgid "Bisexual" +msgstr "Tvíkynhneigð/ur" + +#: ../../include/profile_selectors.php:23 +msgid "Autosexual" +msgstr "Sjálfkynhneigð/ur" + +#: ../../include/profile_selectors.php:23 +msgid "Abstinent" +msgstr "Skýrlíf/ur" + +#: ../../include/profile_selectors.php:23 +msgid "Virgin" +msgstr "Hrein mey/Hreinn sveinn" + +#: ../../include/profile_selectors.php:23 +msgid "Deviant" +msgstr "Óþekkur" + +#: ../../include/profile_selectors.php:23 +msgid "Fetish" +msgstr "Blæti" + +#: ../../include/profile_selectors.php:23 +msgid "Oodles" +msgstr "Mikið af því" + +#: ../../include/profile_selectors.php:23 +msgid "Nonsexual" +msgstr "Engin kynhneigð" + +#: ../../include/profile_selectors.php:42 +msgid "Single" +msgstr "Einhleyp/ur" + +#: ../../include/profile_selectors.php:42 +msgid "Lonely" +msgstr "Einmanna" + +#: ../../include/profile_selectors.php:42 +msgid "Available" +msgstr "Á lausu" + +#: ../../include/profile_selectors.php:42 +msgid "Unavailable" +msgstr "Frátekin/n" + +#: ../../include/profile_selectors.php:42 +msgid "Has crush" +msgstr "Er skotin(n)" + +#: ../../include/profile_selectors.php:42 +msgid "Infatuated" +msgstr "" + +#: ../../include/profile_selectors.php:42 +msgid "Dating" +msgstr "Deita" + +#: ../../include/profile_selectors.php:42 +msgid "Unfaithful" +msgstr "Ótrú/r" + +#: ../../include/profile_selectors.php:42 +msgid "Sex Addict" +msgstr "Kynlífsfíkill" + +#: ../../include/profile_selectors.php:42 ../../include/user.php:278 +#: ../../include/user.php:282 +msgid "Friends" +msgstr "Vinir" + +#: ../../include/profile_selectors.php:42 +msgid "Friends/Benefits" +msgstr "Vinir með meiru" + +#: ../../include/profile_selectors.php:42 +msgid "Casual" +msgstr "Lauslát/ur" + +#: ../../include/profile_selectors.php:42 +msgid "Engaged" +msgstr "Trúlofuð/Trúlofaður" + +#: ../../include/profile_selectors.php:42 +msgid "Married" +msgstr "Gift/ur" + +#: ../../include/profile_selectors.php:42 +msgid "Imaginarily married" +msgstr "" + +#: ../../include/profile_selectors.php:42 +msgid "Partners" +msgstr "Félagar" + +#: ../../include/profile_selectors.php:42 +msgid "Cohabiting" +msgstr "Sambýlingur" + +#: ../../include/profile_selectors.php:42 +msgid "Common law" +msgstr "" + +#: ../../include/profile_selectors.php:42 +msgid "Happy" +msgstr "Hamingjusöm/Hamingjusamur" + +#: ../../include/profile_selectors.php:42 +msgid "Not looking" +msgstr "Ekki að leita" + +#: ../../include/profile_selectors.php:42 +msgid "Swinger" +msgstr "Svingari" + +#: ../../include/profile_selectors.php:42 +msgid "Betrayed" +msgstr "Svikin/n" + +#: ../../include/profile_selectors.php:42 +msgid "Separated" +msgstr "Skilin/n að borði og sæng" + +#: ../../include/profile_selectors.php:42 +msgid "Unstable" +msgstr "Óstabíll" + +#: ../../include/profile_selectors.php:42 +msgid "Divorced" +msgstr "Fráskilin/n" + +#: ../../include/profile_selectors.php:42 +msgid "Imaginarily divorced" +msgstr "" + +#: ../../include/profile_selectors.php:42 +msgid "Widowed" +msgstr "Ekkja/Ekkill" + +#: ../../include/profile_selectors.php:42 +msgid "Uncertain" +msgstr "Óviss" + +#: ../../include/profile_selectors.php:42 +msgid "It's complicated" +msgstr "Þetta er flókið" + +#: ../../include/profile_selectors.php:42 +msgid "Don't care" +msgstr "Gæti ekki verið meira sama" + +#: ../../include/profile_selectors.php:42 +msgid "Ask me" +msgstr "Spurðu mig" + +#: ../../include/event.php:20 ../../include/bb2diaspora.php:396 +msgid "Starts:" +msgstr "Byrjar:" + +#: ../../include/event.php:30 ../../include/bb2diaspora.php:404 +msgid "Finishes:" +msgstr "Endar:" + +#: ../../include/delivery.php:457 ../../include/notifier.php:703 +msgid "(no subject)" +msgstr "(ekkert efni)" + +#: ../../include/Scrape.php:576 +msgid " on Last.fm" +msgstr "" + +#: ../../include/text.php:243 +msgid "prev" +msgstr "á undan" + +#: ../../include/text.php:245 +msgid "first" +msgstr "fremsta" + +#: ../../include/text.php:274 +msgid "last" +msgstr "síðasta" + +#: ../../include/text.php:277 +msgid "next" +msgstr "næsta" + +#: ../../include/text.php:295 +msgid "newer" +msgstr "" + +#: ../../include/text.php:299 +msgid "older" +msgstr "" + +#: ../../include/text.php:597 +msgid "No contacts" +msgstr "Engir tengiliðir" + +#: ../../include/text.php:606 +#, php-format +msgid "%d Contact" +msgid_plural "%d Contacts" +msgstr[0] "%d Tengiliður" +msgstr[1] "%d Tengiliðir" + +#: ../../include/text.php:719 +msgid "poke" +msgstr "" + +#: ../../include/text.php:719 ../../include/conversation.php:210 +msgid "poked" +msgstr "" + +#: ../../include/text.php:720 +msgid "ping" +msgstr "" + +#: ../../include/text.php:720 +msgid "pinged" +msgstr "" + +#: ../../include/text.php:721 +msgid "prod" +msgstr "" + +#: ../../include/text.php:721 +msgid "prodded" +msgstr "" + +#: ../../include/text.php:722 +msgid "slap" +msgstr "" + +#: ../../include/text.php:722 +msgid "slapped" +msgstr "" + +#: ../../include/text.php:723 +msgid "finger" +msgstr "" + +#: ../../include/text.php:723 +msgid "fingered" +msgstr "" + +#: ../../include/text.php:724 +msgid "rebuff" +msgstr "" + +#: ../../include/text.php:724 +msgid "rebuffed" +msgstr "" + +#: ../../include/text.php:736 +msgid "happy" +msgstr "" + +#: ../../include/text.php:737 +msgid "sad" +msgstr "" + +#: ../../include/text.php:738 +msgid "mellow" +msgstr "" + +#: ../../include/text.php:739 +msgid "tired" +msgstr "" + +#: ../../include/text.php:740 +msgid "perky" +msgstr "" + +#: ../../include/text.php:741 +msgid "angry" +msgstr "" + +#: ../../include/text.php:742 +msgid "stupified" +msgstr "" + +#: ../../include/text.php:743 +msgid "puzzled" +msgstr "" + +#: ../../include/text.php:744 +msgid "interested" +msgstr "" + +#: ../../include/text.php:745 +msgid "bitter" +msgstr "" + +#: ../../include/text.php:746 +msgid "cheerful" +msgstr "" + +#: ../../include/text.php:747 +msgid "alive" +msgstr "" + +#: ../../include/text.php:748 +msgid "annoyed" +msgstr "" + +#: ../../include/text.php:749 +msgid "anxious" +msgstr "" + +#: ../../include/text.php:750 +msgid "cranky" +msgstr "" + +#: ../../include/text.php:751 +msgid "disturbed" +msgstr "" + +#: ../../include/text.php:752 +msgid "frustrated" +msgstr "" + +#: ../../include/text.php:753 +msgid "motivated" +msgstr "" + +#: ../../include/text.php:754 +msgid "relaxed" +msgstr "" + +#: ../../include/text.php:755 +msgid "surprised" +msgstr "" + +#: ../../include/text.php:921 +msgid "January" +msgstr "Janúar" + +#: ../../include/text.php:921 +msgid "February" +msgstr "Febrúar" + +#: ../../include/text.php:921 +msgid "March" +msgstr "Mars" + +#: ../../include/text.php:921 +msgid "April" +msgstr "Apríl" + +#: ../../include/text.php:921 +msgid "May" +msgstr "Maí" + +#: ../../include/text.php:921 +msgid "June" +msgstr "Júní" + +#: ../../include/text.php:921 +msgid "July" +msgstr "Júlí" + +#: ../../include/text.php:921 +msgid "August" +msgstr "Ágúst" + +#: ../../include/text.php:921 +msgid "September" +msgstr "September" + +#: ../../include/text.php:921 +msgid "October" +msgstr "Október" + +#: ../../include/text.php:921 +msgid "November" +msgstr "Nóvember" + +#: ../../include/text.php:921 +msgid "December" +msgstr "Desember" + +#: ../../include/text.php:1007 +msgid "bytes" +msgstr "bæti" + +#: ../../include/text.php:1034 ../../include/text.php:1046 +msgid "Click to open/close" +msgstr "" + +#: ../../include/text.php:1219 ../../include/user.php:236 +msgid "default" +msgstr "sjálfgefið" + +#: ../../include/text.php:1231 +msgid "Select an alternate language" +msgstr "Velja annað tungumál" + +#: ../../include/text.php:1441 +msgid "activity" +msgstr "" + +#: ../../include/text.php:1444 +msgid "post" +msgstr "" + +#: ../../include/text.php:1599 +msgid "Item filed" +msgstr "" + +#: ../../include/diaspora.php:691 +msgid "Sharing notification from Diaspora network" +msgstr "Tilkynning um að einhver deildi einhverju Diaspora netinu" + +#: ../../include/diaspora.php:2211 +msgid "Attachments:" +msgstr "Viðhengi:" + +#: ../../include/network.php:849 +msgid "view full size" +msgstr "Skoða í fullri stærð" + +#: ../../include/oembed.php:137 +msgid "Embedded content" +msgstr "Innbyggt efni" + +#: ../../include/oembed.php:146 +msgid "Embedding disabled" +msgstr "Innfelling ekki leyfð" + +#: ../../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 "Hóp sem var eytt hefur verið endurlífgaður. Færslur sem þegar voru til geta mögulega farið á hópinn og framtíðar meðlimir. Ef þetta er ekki það sem þú vilt, þá þarftu að búa til nýjan hóp með öðru nafni." + +#: ../../include/group.php:176 +msgid "Default privacy group for new contacts" +msgstr "" + +#: ../../include/group.php:195 +msgid "Everybody" +msgstr "Allir" + +#: ../../include/group.php:218 +msgid "edit" +msgstr "breyta" + +#: ../../include/group.php:240 +msgid "Edit group" +msgstr "Breyta hóp" + +#: ../../include/group.php:241 +msgid "Create a new group" +msgstr "Stofna nýjan hóp" + +#: ../../include/group.php:242 +msgid "Contacts not in any group" +msgstr "Tengiliðir ekki í neinum hópum" + +#: ../../include/nav.php:46 ../../boot.php:911 +msgid "Logout" +msgstr "Útskrá" + +#: ../../include/nav.php:46 +msgid "End this session" +msgstr "Loka þessu innliti" + +#: ../../include/nav.php:49 ../../boot.php:1665 +msgid "Status" +msgstr "Staða" + +#: ../../include/nav.php:64 +msgid "Sign in" +msgstr "Innskrá" + +#: ../../include/nav.php:77 +msgid "Home Page" +msgstr "Heimasíða" + +#: ../../include/nav.php:81 +msgid "Create an account" +msgstr "Stofna notanda" + +#: ../../include/nav.php:86 +msgid "Help and documentation" +msgstr "Hjálp og leiðbeiningar" + +#: ../../include/nav.php:89 +msgid "Apps" +msgstr "Forr" + +#: ../../include/nav.php:89 +msgid "Addon applications, utilities, games" +msgstr "Viðbætur forrit, leikir" + +#: ../../include/nav.php:91 +msgid "Search site content" +msgstr "Leita í efni á vef" + +#: ../../include/nav.php:101 +msgid "Conversations on this site" +msgstr "Samtöl á þessum vef" + +#: ../../include/nav.php:103 +msgid "Directory" +msgstr "Tengiliðalisti" + +#: ../../include/nav.php:103 +msgid "People directory" +msgstr "Tengiliðalisti" + +#: ../../include/nav.php:113 +msgid "Conversations from your friends" +msgstr "Samtöl frá vinum" + +#: ../../include/nav.php:121 +msgid "Friend Requests" +msgstr "Vina beiðnir" + +#: ../../include/nav.php:123 +msgid "See all notifications" +msgstr "" + +#: ../../include/nav.php:124 +msgid "Mark all system notifications seen" +msgstr "Merkja allar tilkynningar sem séðar" + +#: ../../include/nav.php:128 +msgid "Private mail" +msgstr "Einka skilaboð" + +#: ../../include/nav.php:129 +msgid "Inbox" +msgstr "Innhólf" + +#: ../../include/nav.php:130 +msgid "Outbox" +msgstr "Úthólf" + +#: ../../include/nav.php:134 +msgid "Manage" +msgstr "Umsýsla" + +#: ../../include/nav.php:134 +msgid "Manage other pages" +msgstr "Sýsla með aðrar síður" + +#: ../../include/nav.php:138 ../../boot.php:1186 +msgid "Profiles" +msgstr "Forsíður" + +#: ../../include/nav.php:138 ../../boot.php:1186 +msgid "Manage/edit profiles" +msgstr "Sýsla með forsíður" + +#: ../../include/nav.php:139 +msgid "Manage/edit friends and contacts" +msgstr "Sýsla með vini og tengiliði" + +#: ../../include/nav.php:146 +msgid "Site setup and configuration" +msgstr "Stillingar vefs" + +#: ../../include/nav.php:170 +msgid "Nothing new here" +msgstr "Ekkert nýtt héðan" + +#: ../../include/contact_widgets.php:6 +msgid "Add New Contact" +msgstr "Bæta við tengilið" + +#: ../../include/contact_widgets.php:7 +msgid "Enter address or web location" +msgstr "Settu inn slóð" + +#: ../../include/contact_widgets.php:8 +msgid "Example: bob@example.com, http://example.com/barbara" +msgstr "Dæmi: gudmundur@simnet.is, http://simnet.is/gudmundur" + +#: ../../include/contact_widgets.php:23 +#, php-format +msgid "%d invitation available" +msgid_plural "%d invitations available" +msgstr[0] "%d boðskort í boði" +msgstr[1] "%d boðskort í boði" + +#: ../../include/contact_widgets.php:29 +msgid "Find People" +msgstr "Finna fólk" + +#: ../../include/contact_widgets.php:30 +msgid "Enter name or interest" +msgstr "Settu inn nafn eða áhugamál" + +#: ../../include/contact_widgets.php:31 +msgid "Connect/Follow" +msgstr "Tengjast/fylgja" + +#: ../../include/contact_widgets.php:32 +msgid "Examples: Robert Morgenstein, Fishing" +msgstr "Dæmi: Jón Jónsson, Veiði" + +#: ../../include/contact_widgets.php:36 +msgid "Random Profile" +msgstr "" + +#: ../../include/contact_widgets.php:68 +msgid "Networks" +msgstr "Net" + +#: ../../include/contact_widgets.php:71 +msgid "All Networks" +msgstr "Öll net" + +#: ../../include/contact_widgets.php:98 +msgid "Saved Folders" +msgstr "" + +#: ../../include/contact_widgets.php:101 ../../include/contact_widgets.php:129 +msgid "Everything" +msgstr "" + +#: ../../include/contact_widgets.php:126 +msgid "Categories" +msgstr "" + +#: ../../include/auth.php:35 +msgid "Logged out." +msgstr "Útskráður" + +#: ../../include/auth.php:114 +msgid "" +"We encountered a problem while logging in with the OpenID you provided. " +"Please check the correct spelling of the ID." +msgstr "" + +#: ../../include/auth.php:114 +msgid "The error message was:" +msgstr "" + +#: ../../include/datetime.php:43 ../../include/datetime.php:45 +msgid "Miscellaneous" +msgstr "Ýmislegt" + +#: ../../include/datetime.php:153 ../../include/datetime.php:285 +msgid "year" +msgstr "ár" + +#: ../../include/datetime.php:158 ../../include/datetime.php:286 +msgid "month" +msgstr "mánuður" + +#: ../../include/datetime.php:163 ../../include/datetime.php:288 +msgid "day" +msgstr "dagur" + +#: ../../include/datetime.php:276 +msgid "never" +msgstr "aldrei" + +#: ../../include/datetime.php:282 +msgid "less than a second ago" +msgstr "fyrir minna en sekúndu" + +#: ../../include/datetime.php:287 +msgid "week" +msgstr "vika" + +#: ../../include/datetime.php:289 +msgid "hour" +msgstr "klukkustund" + +#: ../../include/datetime.php:289 +msgid "hours" +msgstr "klukkustundir" + +#: ../../include/datetime.php:290 +msgid "minute" +msgstr "mínúta" + +#: ../../include/datetime.php:290 +msgid "minutes" +msgstr "mínútur" + +#: ../../include/datetime.php:291 +msgid "second" +msgstr "sekúnda" + +#: ../../include/datetime.php:291 +msgid "seconds" +msgstr "sekúndur" + +#: ../../include/datetime.php:300 +#, php-format +msgid "%1$d %2$s ago" +msgstr "" + +#: ../../include/datetime.php:472 ../../include/items.php:1683 +#, php-format +msgid "%s's birthday" +msgstr "" + +#: ../../include/datetime.php:473 ../../include/items.php:1684 +#, php-format +msgid "Happy Birthday %s" +msgstr "" + +#: ../../include/onepoll.php:399 +msgid "From: " +msgstr "Frá:" + +#: ../../include/bbcode.php:185 ../../include/bbcode.php:406 +msgid "Image/photo" +msgstr "Mynd" + +#: ../../include/bbcode.php:371 ../../include/bbcode.php:391 +msgid "$1 wrote:" +msgstr "$1 skrifaði:" + +#: ../../include/bbcode.php:410 ../../include/bbcode.php:411 +msgid "Encrypted content" +msgstr "" + +#: ../../include/dba.php:41 +#, php-format +msgid "Cannot locate DNS info for database server '%s'" +msgstr "Get ekki flett upp DNS upplýsingum fyrir gagnagrunns þjón '%s'" + +#: ../../include/message.php:15 ../../include/message.php:171 +msgid "[no subject]" +msgstr "[ekkert efni]" + +#: ../../include/acl_selectors.php:286 +msgid "Visible to everybody" +msgstr "Sjáanlegt öllum" + +#: ../../include/enotify.php:16 +msgid "Friendica Notification" +msgstr "Friendica tilkynning" + +#: ../../include/enotify.php:19 +msgid "Thank You," +msgstr "Takk fyrir," + +#: ../../include/enotify.php:21 +#, php-format +msgid "%s Administrator" +msgstr "Kerfisstjóri %s" + +#: ../../include/enotify.php:40 +#, php-format +msgid "%s " +msgstr "" + +#: ../../include/enotify.php:44 +#, php-format +msgid "[Friendica:Notify] New mail received at %s" +msgstr "" + +#: ../../include/enotify.php:46 +#, php-format +msgid "%1$s sent you a new private message at %2$s." +msgstr "" + +#: ../../include/enotify.php:47 +#, php-format +msgid "%1$s sent you %2$s." +msgstr "" + +#: ../../include/enotify.php:47 +msgid "a private message" +msgstr "einkaskilaboð" + +#: ../../include/enotify.php:48 +#, php-format +msgid "Please visit %s to view and/or reply to your private messages." +msgstr "Farðu á %s til að skoða og/eða svara einkaskilaboðunum þínum." + +#: ../../include/enotify.php:89 +#, php-format +msgid "%1$s commented on [url=%2$s]a %3$s[/url]" +msgstr "" + +#: ../../include/enotify.php:96 +#, php-format +msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]" +msgstr "" + +#: ../../include/enotify.php:104 +#, php-format +msgid "%1$s commented on [url=%2$s]your %3$s[/url]" +msgstr "" + +#: ../../include/enotify.php:114 +#, php-format +msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s" +msgstr "" + +#: ../../include/enotify.php:115 +#, php-format +msgid "%s commented on an item/conversation you have been following." +msgstr "%s skrifaði athugasemd á færslu/samtal sem þú ert að fylgja." + +#: ../../include/enotify.php:118 ../../include/enotify.php:133 +#: ../../include/enotify.php:146 ../../include/enotify.php:164 +#: ../../include/enotify.php:177 +#, php-format +msgid "Please visit %s to view and/or reply to the conversation." +msgstr "Farðu á %s til að skoða og/eða svara samtali." + +#: ../../include/enotify.php:125 +#, php-format +msgid "[Friendica:Notify] %s posted to your profile wall" +msgstr "" + +#: ../../include/enotify.php:127 +#, php-format +msgid "%1$s posted to your profile wall at %2$s" +msgstr "" + +#: ../../include/enotify.php:129 +#, php-format +msgid "%1$s posted to [url=%2$s]your wall[/url]" +msgstr "" + +#: ../../include/enotify.php:140 +#, php-format +msgid "[Friendica:Notify] %s tagged you" +msgstr "" + +#: ../../include/enotify.php:141 +#, php-format +msgid "%1$s tagged you at %2$s" +msgstr "" + +#: ../../include/enotify.php:142 +#, php-format +msgid "%1$s [url=%2$s]tagged you[/url]." +msgstr "" + +#: ../../include/enotify.php:154 +#, php-format +msgid "[Friendica:Notify] %1$s poked you" +msgstr "" + +#: ../../include/enotify.php:155 +#, php-format +msgid "%1$s poked you at %2$s" +msgstr "" + +#: ../../include/enotify.php:156 +#, php-format +msgid "%1$s [url=%2$s]poked you[/url]." +msgstr "" + +#: ../../include/enotify.php:171 +#, php-format +msgid "[Friendica:Notify] %s tagged your post" +msgstr "" + +#: ../../include/enotify.php:172 +#, php-format +msgid "%1$s tagged your post at %2$s" +msgstr "" + +#: ../../include/enotify.php:173 +#, php-format +msgid "%1$s tagged [url=%2$s]your post[/url]" +msgstr "" + +#: ../../include/enotify.php:184 +msgid "[Friendica:Notify] Introduction received" +msgstr "" + +#: ../../include/enotify.php:185 +#, php-format +msgid "You've received an introduction from '%1$s' at %2$s" +msgstr "" + +#: ../../include/enotify.php:186 +#, php-format +msgid "You've received [url=%1$s]an introduction[/url] from %2$s." +msgstr "" + +#: ../../include/enotify.php:189 ../../include/enotify.php:207 +#, php-format +msgid "You may visit their profile at %s" +msgstr "Þú getur heimsótt fórsíðuna á %s" + +#: ../../include/enotify.php:191 +#, php-format +msgid "Please visit %s to approve or reject the introduction." +msgstr "Farðu á %s til að samþykkja eða hunsa þessa kynningu." + +#: ../../include/enotify.php:198 +msgid "[Friendica:Notify] Friend suggestion received" +msgstr "" + +#: ../../include/enotify.php:199 +#, php-format +msgid "You've received a friend suggestion from '%1$s' at %2$s" +msgstr "" + +#: ../../include/enotify.php:200 +#, php-format +msgid "" +"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s." +msgstr "" + +#: ../../include/enotify.php:205 +msgid "Name:" +msgstr "Nafn:" + +#: ../../include/enotify.php:206 +msgid "Photo:" +msgstr "Mynd:" + +#: ../../include/enotify.php:209 +#, php-format +msgid "Please visit %s to approve or reject the suggestion." +msgstr "Farðu á %s til að samþykkja eða hunsa þessa uppástungu." + +#: ../../include/follow.php:32 +msgid "Connect URL missing." +msgstr "Tengi slóð vantar." + +#: ../../include/follow.php:59 +msgid "" +"This site is not configured to allow communications with other networks." +msgstr "Þessi vefur er ekki uppsettur til að leyfa samskipti við önnur samfélagsnet." + +#: ../../include/follow.php:60 ../../include/follow.php:80 +msgid "No compatible communication protocols or feeds were discovered." +msgstr "Enginn samhæfur samskipta staðall né straumar fundust." + +#: ../../include/follow.php:78 +msgid "The profile address specified does not provide adequate information." +msgstr "Uppgefin forsíðu slóð eru ekki næganlegar upplýsingar." + +#: ../../include/follow.php:82 +msgid "An author or name was not found." +msgstr "Höfundur eða nafn fannst ekki." + +#: ../../include/follow.php:84 +msgid "No browser URL could be matched to this address." +msgstr "Engin vefslóð passaði við þessa slóð. " + +#: ../../include/follow.php:86 +msgid "" +"Unable to match @-style Identity Address with a known protocol or email " +"contact." +msgstr "" + +#: ../../include/follow.php:87 +msgid "Use mailto: in front of address to force email check." +msgstr "" + +#: ../../include/follow.php:93 +msgid "" +"The profile address specified belongs to a network which has been disabled " +"on this site." +msgstr "Þessi forsíðu slóð tilheyrir neti sem er bannað á þessum vef." + +#: ../../include/follow.php:103 +msgid "" +"Limited profile. This person will be unable to receive direct/personal " +"notifications from you." +msgstr "Takmörkuð forsíða. Þessi tengiliður mun ekki getað tekið á móti beinum/einka tilkynningum frá þér." + +#: ../../include/follow.php:205 +msgid "Unable to retrieve contact information." +msgstr "Ekki hægt að sækja tengiliðs upplýsingar." + +#: ../../include/follow.php:259 +msgid "following" +msgstr "fylgist með" + +#: ../../include/items.php:3294 +msgid "A new person is sharing with you at " +msgstr "Nýr aðili er að deila með þér frá" + +#: ../../include/items.php:3294 +msgid "You have a new follower at " +msgstr "Þú hefur nýjan fylgjanda hjá" + +#: ../../include/items.php:3975 +msgid "Archives" +msgstr "" + +#: ../../include/user.php:38 +msgid "An invitation is required." +msgstr "Boðskort er skilyrði." + +#: ../../include/user.php:43 +msgid "Invitation could not be verified." +msgstr "Ekki hægt að sannreyna boðskort." + +#: ../../include/user.php:51 +msgid "Invalid OpenID url" +msgstr "OpenID slóð ekki til" + +#: ../../include/user.php:66 +msgid "Please enter the required information." +msgstr "Vinsamlegast sláðu inn umbeðin gögn" + +#: ../../include/user.php:80 +msgid "Please use a shorter name." +msgstr "Vinsamlegast notið styttra nafn" + +#: ../../include/user.php:82 +msgid "Name too short." +msgstr "Nafn of stutt" + +#: ../../include/user.php:97 +msgid "That doesn't appear to be your full (First Last) name." +msgstr "Þetta virðist ekki vera fullt nafn (Jón Jónsson)." + +#: ../../include/user.php:102 +msgid "Your email domain is not among those allowed on this site." +msgstr "Póstþjónninn er ekki í lista yfir leyfða póstþjóna á þessum vef." + +#: ../../include/user.php:105 +msgid "Not a valid email address." +msgstr "Ekki gildt póstfang." + +#: ../../include/user.php:115 +msgid "Cannot use that email." +msgstr "Ekki hægt að nota þetta póstfang." + +#: ../../include/user.php:121 +msgid "" +"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and " +"must also begin with a letter." +msgstr "Gælunafnið má bara innihalda \"a-z\", \"0-9, \"-\", \"_\" og verður að byrja á staf." + +#: ../../include/user.php:127 ../../include/user.php:225 +msgid "Nickname is already registered. Please choose another." +msgstr "Gælunafn þegar skráð. Veldu annað." + +#: ../../include/user.php:137 +msgid "" +"Nickname was once registered here and may not be re-used. Please choose " +"another." +msgstr "" + +#: ../../include/user.php:153 +msgid "SERIOUS ERROR: Generation of security keys failed." +msgstr "VERULEGA ALVARLEG VILLA: Stofnun á öryggislyklum tókst ekki." + +#: ../../include/user.php:211 +msgid "An error occurred during registration. Please try again." +msgstr "Villa kom upp við nýskráningu. Vinsamlegast reyndu aftur." + +#: ../../include/user.php:246 +msgid "An error occurred creating your default profile. Please try again." +msgstr "Villa kom upp við að stofna sjálfgefna forsíðu. Vinnsamlegast reyndu aftur." + +#: ../../include/security.php:22 +msgid "Welcome " +msgstr "Velkomin(n)" + +#: ../../include/security.php:23 +msgid "Please upload a profile photo." +msgstr "Vinsamlegast hlaðið inn forsíðu mynd." + +#: ../../include/security.php:26 +msgid "Welcome back " +msgstr "Velkomin(n) aftur" + +#: ../../include/security.php:344 +msgid "" +"The form security token was not correct. This probably happened because the " +"form has been opened for too long (>3 hours) before submitting it." +msgstr "" + +#: ../../include/Contact.php:111 +msgid "stopped following" +msgstr "hætt að fylgja" + +#: ../../include/Contact.php:220 ../../include/conversation.php:1106 +msgid "Poke" +msgstr "" + +#: ../../include/Contact.php:221 ../../include/conversation.php:1100 +msgid "View Status" +msgstr "" + +#: ../../include/Contact.php:222 ../../include/conversation.php:1101 +msgid "View Profile" +msgstr "" + +#: ../../include/Contact.php:223 ../../include/conversation.php:1102 +msgid "View Photos" +msgstr "" + +#: ../../include/Contact.php:224 ../../include/Contact.php:237 +#: ../../include/conversation.php:1103 +msgid "Network Posts" +msgstr "" + +#: ../../include/Contact.php:225 ../../include/Contact.php:237 +#: ../../include/conversation.php:1104 +msgid "Edit Contact" +msgstr "" + +#: ../../include/Contact.php:226 ../../include/Contact.php:237 +#: ../../include/conversation.php:1105 +msgid "Send PM" +msgstr "Senda einkaboð" + +#: ../../include/conversation.php:206 +#, php-format +msgid "%1$s poked %2$s" +msgstr "" + +#: ../../include/conversation.php:290 +msgid "post/item" +msgstr "" + +#: ../../include/conversation.php:291 +#, php-format +msgid "%1$s marked %2$s's %3$s as favorite" +msgstr "" + +#: ../../include/conversation.php:645 ../../include/conversation.php:919 +#: ../../object/Item.php:217 +msgid "Categories:" +msgstr "" + +#: ../../include/conversation.php:646 ../../include/conversation.php:920 +#: ../../object/Item.php:218 +msgid "Filed under:" +msgstr "" + +#: ../../include/conversation.php:1002 +msgid "remove" +msgstr "" + +#: ../../include/conversation.php:1006 +msgid "Delete Selected Items" +msgstr "Eyða völdum færslum" + +#: ../../include/conversation.php:1164 +#, php-format +msgid "%s likes this." +msgstr "%s líkar þetta." + +#: ../../include/conversation.php:1164 +#, php-format +msgid "%s doesn't like this." +msgstr "%s mislíkar þetta." + +#: ../../include/conversation.php:1168 +#, php-format +msgid "%2$d people like this." +msgstr "%2$d líkar þetta." + +#: ../../include/conversation.php:1170 +#, php-format +msgid "%2$d people don't like this." +msgstr "%2$d mislíkar þetta." + +#: ../../include/conversation.php:1176 +msgid "and" +msgstr "og" + +#: ../../include/conversation.php:1179 +#, php-format +msgid ", and %d other people" +msgstr ", og %d öðrum" + +#: ../../include/conversation.php:1180 +#, php-format +msgid "%s like this." +msgstr "%s líkar þetta." + +#: ../../include/conversation.php:1180 +#, php-format +msgid "%s don't like this." +msgstr "%s mislíkar þetta." + +#: ../../include/conversation.php:1204 ../../include/conversation.php:1221 +msgid "Visible to everybody" +msgstr "Sjáanlegt öllum" + +#: ../../include/conversation.php:1206 ../../include/conversation.php:1223 +msgid "Please enter a video link/URL:" +msgstr "Settu inn myndbandshlekkur:" + +#: ../../include/conversation.php:1207 ../../include/conversation.php:1224 +msgid "Please enter an audio link/URL:" +msgstr "Settu inn hlekk á hljóðskrá:" + +#: ../../include/conversation.php:1208 ../../include/conversation.php:1225 +msgid "Tag term:" +msgstr "Merka með:" + +#: ../../include/conversation.php:1210 ../../include/conversation.php:1227 +msgid "Where are you right now?" +msgstr "Hvar ert þú núna?" + +#: ../../include/conversation.php:1270 +msgid "upload photo" +msgstr "Hlaða upp mynd" + +#: ../../include/conversation.php:1272 +msgid "attach file" +msgstr "Hengja skrá við" + +#: ../../include/conversation.php:1274 +msgid "web link" +msgstr "vefhlekkur" + +#: ../../include/conversation.php:1275 +msgid "Insert video link" +msgstr "Setja inn myndbandshlekk" + +#: ../../include/conversation.php:1276 +msgid "video link" +msgstr "myndbandshlekkur" + +#: ../../include/conversation.php:1277 +msgid "Insert audio link" +msgstr "Setja inn hlekk á hljóðskrá" + +#: ../../include/conversation.php:1278 +msgid "audio link" +msgstr "hljóðhlekkur" + +#: ../../include/conversation.php:1280 +msgid "set location" +msgstr "stilla staðsetningu" + +#: ../../include/conversation.php:1282 +msgid "clear location" +msgstr "hreinsa staðsetningu" + +#: ../../include/conversation.php:1289 +msgid "permissions" +msgstr "aðgangsstýring" + +#: ../../include/plugin.php:389 ../../include/plugin.php:391 +msgid "Click here to upgrade." +msgstr "" + +#: ../../include/plugin.php:397 +msgid "This action exceeds the limits set by your subscription plan." +msgstr "" + +#: ../../include/plugin.php:402 +msgid "This action is not available under your subscription plan." +msgstr "" + +#: ../../boot.php:573 +msgid "Delete this item?" +msgstr "Eyða þessu atriði?" + +#: ../../boot.php:576 +msgid "show fewer" +msgstr "sýna færri" + +#: ../../boot.php:783 +#, php-format +msgid "Update %s failed. See error logs." +msgstr "Uppfærsla á %s mistókst. Sjá villu skrá." + +#: ../../boot.php:785 +#, php-format +msgid "Update Error at %s" +msgstr "Uppfærslu vill við %s" + +#: ../../boot.php:886 +msgid "Create a New Account" +msgstr "Stofna nýjan notanda" + +#: ../../boot.php:914 +msgid "Nickname or Email address: " +msgstr "Gælunafn eða póstfang:" + +#: ../../boot.php:915 +msgid "Password: " +msgstr "Aðgangsorð:" + +#: ../../boot.php:918 +msgid "Or login using OpenID: " +msgstr "Eða auðkenna með OpenID:" + +#: ../../boot.php:924 +msgid "Forgot your password?" +msgstr "Gleymt lykilorð?" + +#: ../../boot.php:1035 +msgid "Requested account is not available." +msgstr "" + +#: ../../boot.php:1112 +msgid "Edit profile" +msgstr "Breyta forsíðu" + +#: ../../boot.php:1178 +msgid "Message" +msgstr "" + +#: ../../boot.php:1300 ../../boot.php:1386 +msgid "g A l F d" +msgstr "" + +#: ../../boot.php:1301 ../../boot.php:1387 +msgid "F d" +msgstr "" + +#: ../../boot.php:1346 ../../boot.php:1427 +msgid "[today]" +msgstr "[í dag]" + +#: ../../boot.php:1358 +msgid "Birthday Reminders" +msgstr "Afmælis áminningar" + +#: ../../boot.php:1359 +msgid "Birthdays this week:" +msgstr "Afmæli í þessari viku:" + +#: ../../boot.php:1420 +msgid "[No description]" +msgstr "[Engin lýsing]" + +#: ../../boot.php:1438 +msgid "Event Reminders" +msgstr "Atburða áminningar" + +#: ../../boot.php:1439 +msgid "Events this week:" +msgstr "Atburðir vikunnar:" + +#: ../../boot.php:1668 +msgid "Status Messages and Posts" +msgstr "Stöðu skilaboð og færslur" + +#: ../../boot.php:1675 +msgid "Profile Details" +msgstr "Forsíðu upplýsingar" + +#: ../../boot.php:1692 +msgid "Events and Calendar" +msgstr "Atburðir og dagskrá" + +#: ../../boot.php:1699 +msgid "Only You Can See This" +msgstr "Aðeins þú sérð þetta" diff --git a/view/is/passchanged_eml.tpl b/view/is/passchanged_eml.tpl new file mode 100644 index 0000000000..d2aa68797e --- /dev/null +++ b/view/is/passchanged_eml.tpl @@ -0,0 +1,20 @@ + +Góðan daginn $[username], + Lykilorð þínu hefur verið breytt einsog umbeðið var. Endilega geyma þessar +upplýsingar (eða skiptu strax um aðgangsorð +yfir í eitthvað sem þú mannst). + + +Innskráningar upplýsingar þínar eru: + +Vefþjónn: $[siteurl] +Notendanafn: $[email] +Aðgangsorð: $[new_password] + +Þú getur breytt um aðgangsorð á stillingar síðunni eftir að þú hefur innskráð þig. + + +Bestu kveðjur, + Kerfisstjóri $[sitename] + + \ No newline at end of file diff --git a/view/is/register_open_eml.tpl b/view/is/register_open_eml.tpl new file mode 100644 index 0000000000..fd564a1420 --- /dev/null +++ b/view/is/register_open_eml.tpl @@ -0,0 +1,34 @@ + +Góðan daginn $[username], + Takk fyrir að skrá þig á $[sitename]. Notandinn þinn hefur verið stofnaður. +Innskráningar upplýsingarnar þínar eru eftirfarandi: + + +Vefþjónn: $[siteurl] +Notendanafn: $[email] +Aðgangsorð: $[password] + +Þú getur breytt aðgangsorðinu þínu á "Stillingar" síðunni eftir að þú hefur skráð þig +inn. + +Endilega eyddu smá tíma í að yfirfara aðrar notenda stillingar á þeirri síðu. + +Einnig gætir þú bætt við grunnupplýsingum á sjálfgefna prófílinn +(á "Forsíður" síðunni) svo aðrið geti auðveldlega fundið þig. + +Við mælum með að þú setjir fullt nafn, bætir við prófíl mynd, +bætir nokkrum "leitarorðum" (mjög gagnlegt við að eignast nýja vini) og +mögulega bætir við í hvaða landi þú býrð, ef þú villt ekki vera nákvæmari +en það. + +Við virðum að fullu rétt þinn til einkalífs, því er ekkert að þessum atriðum skilyrði. +Ef þú ert byrjandi og þekkir ekki einhvern hér, þér eru hér fólk +sem getur aðstoðað þig við að eignast nýja og áhugaverða vini. + + +Takk fyrir og velkomin(n) á $[sitename]. + +Bestu kveðjur, + Kerfisstjóri $[sitename] + + \ No newline at end of file diff --git a/view/is/register_verify_eml.tpl b/view/is/register_verify_eml.tpl new file mode 100644 index 0000000000..3ebc6fda40 --- /dev/null +++ b/view/is/register_verify_eml.tpl @@ -0,0 +1,25 @@ + +Beiðni um nýjan notanda barst $[sitename] sem krefst +þíns samþykkis. + + +Innskráningar upplýsingarnar eru eftirfarandi: + +Fullt nafn: $[username] +Vefþjónn: $[siteurl] +Notendanafn: $[email] + + +Til að samþykkja beiðnina þarf að heimsækja eftirfarandi slóð: + + +$[siteurl]/regmod/allow/$[hash] + + +Til að synja beiðni og eyða notanda þá heimsækir þú slóðina: + + +$[siteurl]/regmod/deny/$[hash] + + +Takk fyrir. diff --git a/view/is/request_notify_eml.tpl b/view/is/request_notify_eml.tpl new file mode 100644 index 0000000000..7adb48e0d8 --- /dev/null +++ b/view/is/request_notify_eml.tpl @@ -0,0 +1,17 @@ + +Góðan dag $[myname], + +Þér hefur borist beiðni um tengingu á $[sitename] + +frá '$[requestor]'. + +Þú getur heimsótt forsíðuna á $[url]. + +skráðu þig inn á þína síðu til að skoða alla kynninguna +og þar getur þú hunsað/hætt við beiðnina. + +$[siteurl] + +Kveðja, + + Kerfisstjóri $[sitename] \ No newline at end of file diff --git a/view/is/strings.php b/view/is/strings.php new file mode 100644 index 0000000000..05f43486d4 --- /dev/null +++ b/view/is/strings.php @@ -0,0 +1,2006 @@ +strings["Post successful."] = "Melding tókst."; +$a->strings["[Embedded content - reload page to view]"] = "[Innfelt efni - endurhlaða síðu til að sjá]"; +$a->strings["Contact settings applied."] = "Stillingar tengiliðs uppfærðar."; +$a->strings["Contact update failed."] = "Uppfærsla tengiliðs mistókst."; +$a->strings["Permission denied."] = "Heimild ekki veitt."; +$a->strings["Contact not found."] = "Tengiliður fannst ekki."; +$a->strings["Repair Contact Settings"] = "Gera við stillingar tengiliðs"; +$a->strings["WARNING: This is highly advanced and if you enter incorrect information your communications with this contact may stop working."] = "AÐVÖRUN: Þetta er mjög flókið og ef þú setur inn vitlausar upplýsingar þá munu samskipti við þennan tengilið hætta að virka."; +$a->strings["Please use your browser 'Back' button now if you are uncertain what to do on this page."] = "Vinsamlegast veldu \"Afturábak\" takkan núna ef þú ert ekki viss um hvað þú eigir að gera á þessari síðu."; +$a->strings["Return to contact editor"] = "Fara tilbaka í tengiliða sýslun"; +$a->strings["Name"] = "Nafn"; +$a->strings["Account Nickname"] = "Gælunafn notanda"; +$a->strings["@Tagname - overrides Name/Nickname"] = "@Merkjanafn - yfirskrifar Nafn/Gælunafn"; +$a->strings["Account URL"] = "Heimasíða notanda"; +$a->strings["Friend Request URL"] = "Slóð vina beiðnis"; +$a->strings["Friend Confirm URL"] = "Slóð vina staðfestingar "; +$a->strings["Notification Endpoint URL"] = "Slóð loka tilkynningar"; +$a->strings["Poll/Feed URL"] = "Slóð könnunar/þráðar"; +$a->strings["New photo from this URL"] = "Ný mynd frá slóð"; +$a->strings["Submit"] = "Senda inn"; +$a->strings["Help:"] = "Hjálp:"; +$a->strings["Help"] = "Hjálp"; +$a->strings["Not Found"] = "Fannst ekki"; +$a->strings["Page not found."] = "Síða fannst ekki."; +$a->strings["File exceeds size limit of %d"] = "Skrá stærri en takmarkið %d"; +$a->strings["File upload failed."] = "Skráar upphlöðun mistókst."; +$a->strings["Friend suggestion sent."] = "Vina tillaga send"; +$a->strings["Suggest Friends"] = "Stinga uppá vinum"; +$a->strings["Suggest a friend for %s"] = "Stinga uppá vin fyrir %s"; +$a->strings["Event title and start time are required."] = ""; +$a->strings["l, F j"] = ""; +$a->strings["Edit event"] = "Breyta atburð"; +$a->strings["link to source"] = "slóð í heimild"; +$a->strings["Events"] = "Atburðir"; +$a->strings["Create New Event"] = "Stofna nýjan atburð"; +$a->strings["Previous"] = "Fyrra"; +$a->strings["Next"] = "Næsta"; +$a->strings["hour:minute"] = "klukkustund:mínutur"; +$a->strings["Event details"] = "Atburða lýsing"; +$a->strings["Format is %s %s. Starting date and Title are required."] = ""; +$a->strings["Event Starts:"] = "Atburður hefst:"; +$a->strings["Required"] = ""; +$a->strings["Finish date/time is not known or not relevant"] = "Loka dagsetning/tímasetning ekki vituð eða skiptir ekki máli"; +$a->strings["Event Finishes:"] = "Atburður klárar:"; +$a->strings["Adjust for viewer timezone"] = "Heimfæra á tímabelti áhorfanda"; +$a->strings["Description:"] = "Lýsing:"; +$a->strings["Location:"] = "Staðsetning:"; +$a->strings["Title:"] = ""; +$a->strings["Share this event"] = "Deila þessum atburði"; +$a->strings["Cancel"] = "Hætta við"; +$a->strings["Tag removed"] = "Merki fjarlægt"; +$a->strings["Remove Item Tag"] = "Fjarlægja merki "; +$a->strings["Select a tag to remove: "] = "Veldu merki til að fjarlægja:"; +$a->strings["Remove"] = "Fjarlægja"; +$a->strings["%s welcomes %s"] = "%s bíður %s velkomin"; +$a->strings["Authorize application connection"] = "Leyfa forriti að tengjast"; +$a->strings["Return to your app and insert this Securty Code:"] = "Farðu aftur í forritið þitt og settu þennan öryggiskóða þar"; +$a->strings["Please login to continue."] = "Skráðu þig inn til að halda áfram."; +$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Vilt þú leyfa þessu forriti að hafa aðgang að færslum og tengiliðum, og/eða stofna nýjar færslur fyrir þig?"; +$a->strings["Yes"] = "Já"; +$a->strings["No"] = "Nei"; +$a->strings["Photo Albums"] = "Myndabækur"; +$a->strings["Contact Photos"] = "Myndir tengiliðs"; +$a->strings["Upload New Photos"] = "Hlaða upp nýjum myndum"; +$a->strings["everybody"] = "allir"; +$a->strings["Contact information unavailable"] = "Tengiliða upplýsingar ekki til"; +$a->strings["Profile Photos"] = "Forsíðu myndir"; +$a->strings["Album not found."] = "Myndabók finnst ekki."; +$a->strings["Delete Album"] = "Fjarlægja myndabók"; +$a->strings["Delete Photo"] = "Fjarlægja mynd"; +$a->strings["was tagged in a"] = "var merktur í"; +$a->strings["photo"] = "mynd"; +$a->strings["by"] = "af"; +$a->strings["Image exceeds size limit of "] = "Mynd er yfir stærðamörkum"; +$a->strings["Image file is empty."] = "Mynda skrá er tóm."; +$a->strings["Unable to process image."] = "Ekki mögulegt afgreiða mynd"; +$a->strings["Image upload failed."] = "Ekki hægt að hlaða upp mynd."; +$a->strings["Public access denied."] = "Alemennings aðgangur ekki veittur."; +$a->strings["No photos selected"] = "Engar myndir valdar"; +$a->strings["Access to this item is restricted."] = "Aðgangur að þessum hlut hefur verið heftur"; +$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = ""; +$a->strings["You have used %1$.2f Mbytes of photo storage."] = ""; +$a->strings["Upload Photos"] = "Hlaða upp myndum"; +$a->strings["New album name: "] = "Nýtt nafn myndbókar:"; +$a->strings["or existing album name: "] = "eða fyrra nafn myndbókar:"; +$a->strings["Do not show a status post for this upload"] = "Ekki sýna færslu fyrir þessari upphölun"; +$a->strings["Permissions"] = "Aðgangar"; +$a->strings["Edit Album"] = "Breyta myndbók"; +$a->strings["Show Newest First"] = ""; +$a->strings["Show Oldest First"] = ""; +$a->strings["View Photo"] = "Skoða mynd"; +$a->strings["Permission denied. Access to this item may be restricted."] = "Aðgangi hafnað. Aðgangur að þessum hlut kann að vera skertur."; +$a->strings["Photo not available"] = "Mynd ekki til"; +$a->strings["View photo"] = "Birta mynd"; +$a->strings["Edit photo"] = "Breyta mynd"; +$a->strings["Use as profile photo"] = "Nota sem forsíðu mynd"; +$a->strings["Private Message"] = "Einka skilaboð"; +$a->strings["View Full Size"] = "Skoða í fullri stærð"; +$a->strings["Tags: "] = "Merki:"; +$a->strings["[Remove any tag]"] = "[Fjarlægja öll merki]"; +$a->strings["Rotate CW (right)"] = ""; +$a->strings["Rotate CCW (left)"] = ""; +$a->strings["New album name"] = "Nýtt nafn myndbókar"; +$a->strings["Caption"] = "Yfirskrift"; +$a->strings["Add a Tag"] = "Bæta við merki"; +$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Til dæmis: @bob, @Barbara_Jensen, @jim@example.com, #Reykjavík #tjalda"; +$a->strings["I like this (toggle)"] = "Mér líkar þetta (kveikja/slökkva)"; +$a->strings["I don't like this (toggle)"] = "Mér líkar þetta ekki (kveikja/slökkva)"; +$a->strings["Share"] = "Deila"; +$a->strings["Please wait"] = "Vinsamlegast bíðið"; +$a->strings["This is you"] = "Þetta ert þú"; +$a->strings["Comment"] = "Athugasemd"; +$a->strings["Preview"] = "Forskoða"; +$a->strings["Delete"] = "Eyða"; +$a->strings["View Album"] = "Skoða myndabók"; +$a->strings["Recent Photos"] = "Nýlegar myndir"; +$a->strings["Not available."] = "Ekki í boði."; +$a->strings["Community"] = "Samfélag"; +$a->strings["No results."] = "Engar leitarniðurstöður."; +$a->strings["This is Friendica, version"] = "Þetta er Friendica útgáfa"; +$a->strings["running at web location"] = "Keyrir á slóð"; +$a->strings["Please visit Friendica.com to learn more about the Friendica project."] = "Á Friendica.com er hægt að fræðast nánar um Friendica verkefnið."; +$a->strings["Bug reports and issues: please visit"] = "Villu tilkynningar og vandamál: endilega skoða"; +$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Uppástungur, lof, framlög og svo framvegis - sendið tölvupóst á \"Info\" hjá Friendica - punktur com"; +$a->strings["Installed plugins/addons/apps:"] = ""; +$a->strings["No installed plugins/addons/apps"] = "Engin uppsett eining/viðbót/forr"; +$a->strings["Item not found"] = "Hlutur fannst ekki"; +$a->strings["Edit post"] = "Breyta skilaboðum"; +$a->strings["Post to Email"] = "Senda skilaboð á tölvupóst"; +$a->strings["Edit"] = "Breyta"; +$a->strings["Upload photo"] = "Hlaða upp mynd"; +$a->strings["Attach file"] = "Bæta við skrá"; +$a->strings["Insert web link"] = "Setja inn vefslóð"; +$a->strings["Insert YouTube video"] = "Setja inn YouTube myndband"; +$a->strings["Insert Vorbis [.ogg] video"] = "Setja inn Vorbis [.ogg] myndband"; +$a->strings["Insert Vorbis [.ogg] audio"] = "Setja inn Vorbis [.ogg] hljóðskrá"; +$a->strings["Set your location"] = "Veldu staðsetningu þína"; +$a->strings["Clear browser location"] = "Hreinsa staðsetningu í vafra"; +$a->strings["Permission settings"] = "Heimildar stillingar"; +$a->strings["CC: email addresses"] = "CC: tölvupóstfang"; +$a->strings["Public post"] = "Opinber færsla"; +$a->strings["Set title"] = "Setja titil"; +$a->strings["Categories (comma-separated list)"] = ""; +$a->strings["Example: bob@example.com, mary@example.com"] = "Dæmi: bob@example.com, mary@example.com"; +$a->strings["This introduction has already been accepted."] = "Þessi kynning hefur þegar verið samþykkt."; +$a->strings["Profile location is not valid or does not contain profile information."] = "Forsíðu slóð er ekki í lagi eða inniheldur ekki forsíðu upplýsingum."; +$a->strings["Warning: profile location has no identifiable owner name."] = "Aðvörun: forsíðu staðsetning hefur ekki aðgreinanlegt eigendanafn."; +$a->strings["Warning: profile location has no profile photo."] = "Aðvörun: forsíðu slóð hefur ekki forsíðu mynd."; +$a->strings["%d required parameter was not found at the given location"] = array( + 0 => "%d skilyrt breyta fannst ekki á uppgefinni staðsetningu", + 1 => "%d skilyrtar breytur fundust ekki á uppgefninni staðsetningu", +); +$a->strings["Introduction complete."] = "Kynning tilbúinn."; +$a->strings["Unrecoverable protocol error."] = "Alvarleg samskipta villa."; +$a->strings["Profile unavailable."] = "Ekki hægt að sækja forsíðu"; +$a->strings["%s has received too many connection requests today."] = "%s hefur fengið of margar tengibeiðnir í dag."; +$a->strings["Spam protection measures have been invoked."] = "Kveikt hefur verið á ruslsíu"; +$a->strings["Friends are advised to please try again in 24 hours."] = "Vinir eru beðnir um að reyna aftur eftir 24 klukkustundir."; +$a->strings["Invalid locator"] = "Ógild staðsetning"; +$a->strings["Invalid email address."] = ""; +$a->strings["This account has not been configured for email. Request failed."] = ""; +$a->strings["Unable to resolve your name at the provided location."] = "Ekki tókst að fletta upp nafninu þínu á uppgefinni staðsetningu."; +$a->strings["You have already introduced yourself here."] = "Kynning hefur þegar átt sér stað hér."; +$a->strings["Apparently you are already friends with %s."] = "Þú ert þegar vinur %s."; +$a->strings["Invalid profile URL."] = "Ógild forsíðu slóð."; +$a->strings["Disallowed profile URL."] = "Óleyfileg forsíðu slóð."; +$a->strings["Failed to update contact record."] = "Ekki tókst að uppfæra tengiliðs skrá."; +$a->strings["Your introduction has been sent."] = "Kynningin þín hefur verið send."; +$a->strings["Please login to confirm introduction."] = "Skráðu þig inn til að staðfesta kynningu."; +$a->strings["Incorrect identity currently logged in. Please login to this profile."] = "Ekki réttur notandi skráður inn. Skráðu þig inn með þessum notanda."; +$a->strings["Hide this contact"] = ""; +$a->strings["Welcome home %s."] = "Velkomin(n) heim %s."; +$a->strings["Please confirm your introduction/connection request to %s."] = "Vinsamlegas staðfestu kynninguna/tengibeiðnina við %s."; +$a->strings["Confirm"] = "Staðfesta"; +$a->strings["[Name Withheld]"] = "[Nafn ekki sýnt]"; +$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = ""; +$a->strings["Connect as an email follower (Coming soon)"] = ""; +$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."] = ""; +$a->strings["Friend/Connection Request"] = "Vina/Tengi Beiðni"; +$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Dæmi: siggi@demo.friendica.com, http://demo.friendica.com/profile/siggi, prufunotandi@identi.ca"; +$a->strings["Please answer the following:"] = "Vinnsamlegast svaraðu eftirfarandi:"; +$a->strings["Does %s know you?"] = "Þekkir %s þig?"; +$a->strings["Add a personal note:"] = "Bæta við persónulegri athugasemd"; +$a->strings["Friendica"] = "Friendica"; +$a->strings["StatusNet/Federated Social Web"] = "StatusNet/Federated Social Web"; +$a->strings["Diaspora"] = "Diaspora"; +$a->strings[" - please do not use this form. Instead, enter %s into your Diaspora search bar."] = ""; +$a->strings["Your Identity Address:"] = "Aðgangs slóðin þín:"; +$a->strings["Submit Request"] = "Senda beiðni"; +$a->strings["Friendica Social Communications Server - Setup"] = "Samfélags þjónninn Friendica - Stillingar"; +$a->strings["Could not connect to database."] = "Gat ekki tengst gagnagrunn."; +$a->strings["Could not create table."] = "Gat ekki búið til töflu."; +$a->strings["Your Friendica site database has been installed."] = "Friendica gagnagrunnurinn þinn hefur verið uppsettur."; +$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Þú þarft mögulega að keyra inn skránna \"database.sql\" handvirkt með phpmyadmin eða mysql."; +$a->strings["Please see the file \"INSTALL.txt\"."] = "Vinsamlegast lestu skránna \"INSTALL.txt\"."; +$a->strings["System check"] = "Kerfis prófun"; +$a->strings["Check again"] = "Prófa aftur"; +$a->strings["Database connection"] = "Gangagrunns tenging"; +$a->strings["In order to install Friendica we need to know how to connect to your database."] = "Til að setja upp Friendica þurfum við að vita hvernig á að tengjast gagnagrunninum þínum."; +$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Vinsamlegast hafðu samband við hýsingaraðilann þinn eða kerfisstjóra ef þú hefur spurningar um þessar stillingar."; +$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Gagnagrunnurinn sem þú bendir á þarf þegar að vera til. Ef ekki þá þarf að stofna hann áður en haldið er áfram."; +$a->strings["Database Server Name"] = "Vélanafn gagangrunns"; +$a->strings["Database Login Name"] = "Notendanafn í gagnagrunn"; +$a->strings["Database Login Password"] = "Aðgangsorð í gagnagrunns"; +$a->strings["Database Name"] = "Nafn gagnagrunns"; +$a->strings["Site administrator email address"] = "Póstfang kerfisstjóri vefs"; +$a->strings["Your account email address must match this in order to use the web admin panel."] = "Notanda póstfang þitt verður að passa við þetta til að hægt sé að nota umsýslu vefviðmót."; +$a->strings["Please select a default timezone for your website"] = "Vinsamlegast veldu sjálfgefið tímabelti fyrir vefsíðuna"; +$a->strings["Site settings"] = "Stillingar vefs"; +$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Gat ekki fundið skipanalínu útgáfu af PHP í vefþjóns PATH."; +$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron. See 'Activating scheduled tasks'"] = ""; +$a->strings["PHP executable path"] = "PHP keyrslu slóð"; +$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = ""; +$a->strings["Command line PHP"] = "Skipanalínu PHP"; +$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "Skipanalínu útgáfa af PHP á vefþjóninum hefur ekki kveikt á \"register_argc_argv\"."; +$a->strings["This is required for message delivery to work."] = "Þetta er skilyrt fyrir því að skilaboð komist til skila."; +$a->strings["PHP register_argc_argv"] = ""; +$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Villa: Stefjan \"openssl_pkey_new\" á vefþjóninum getur ekki stofnað dulkóðunar lykla"; +$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Ef keyrt er á Window, vinsamlegast skoðið \"http://www.php.net/manual/en/openssl.installation.php\"."; +$a->strings["Generate encryption keys"] = "Búa til dulkóðunar lykla"; +$a->strings["libCurl PHP module"] = "libCurl PHP eining"; +$a->strings["GD graphics PHP module"] = "GD graphics PHP eining"; +$a->strings["OpenSSL PHP module"] = "OpenSSL PHP eining"; +$a->strings["mysqli PHP module"] = "mysqli PHP eining"; +$a->strings["mb_string PHP module"] = "mb_string PHP eining"; +$a->strings["Apache mod_rewrite module"] = "Apache mod_rewrite eining"; +$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Villa: Apache vefþjóns eining mod-rewrite er skilyrði og er ekki uppsett. "; +$a->strings["Error: libCURL PHP module required but not installed."] = "Villa: libCurl PHP eining er skilyrði og er ekki uppsett."; +$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Villa: GD graphics PHP eining með JPEG stuðningi er skilyrði og er ekki uppsett."; +$a->strings["Error: openssl PHP module required but not installed."] = "Villa: openssl PHP eining skilyrði og er ekki uppsett."; +$a->strings["Error: mysqli PHP module required but not installed."] = "Villa: mysqli PHP eining er skilyrði og er ekki uppsett"; +$a->strings["Error: mb_string PHP module required but not installed."] = "Villa: mb_string PHP eining skilyrði en ekki uppsett."; +$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."] = "Vef uppsetningar forrit þarf að geta stofnað skránna \".htconfig.php\" in efsta skráarsafninu á vefþjóninum og það getur ekki gert það."; +$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."] = "Þetta er oftast aðgangsstýringa stilling, þar sem vefþjónninn getur ekki skrifað út skrár í skráarsafnið - þó þú getir það."; +$a->strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Friendica top folder."] = ""; +$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = ""; +$a->strings[".htconfig.php is writable"] = ".htconfig.php er skrifanleg"; +$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = ""; +$a->strings["Url rewrite is working"] = ""; +$a->strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "Ekki tókst að skrifa gagnagrunns stillingar skrá \".htconfig.php\". Vinsamlegast notaði viðhangandi texta til að búa til stillingar skrá á vefþjóns rótina."; +$a->strings["Errors encountered creating database tables."] = "Villur komu upp við að stofna töflur í gagnagrunn."; +$a->strings["

    What next

    "] = ""; +$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "MIKILVÆGT: Þú þarft að [handvirkt] setja upp sjálfvirka keyrslu á poller."; +$a->strings["l F d, Y \\@ g:i A"] = ""; +$a->strings["Time Conversion"] = "Tíma leiðréttir"; +$a->strings["Friendika provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica veitir þessa þjónustu til að deila atburðum milli neta og vina í óþekktum tímabeltum."; +$a->strings["UTC time: %s"] = "Máltími: %s"; +$a->strings["Current timezone: %s"] = "Núverandi tímabelti: %s"; +$a->strings["Converted localtime: %s"] = "Umbreyttur staðartími: %s"; +$a->strings["Please select your timezone:"] = "Veldu tímabeltið þitt:"; +$a->strings["Poke/Prod"] = ""; +$a->strings["poke, prod or do other things to somebody"] = ""; +$a->strings["Recipient"] = ""; +$a->strings["Choose what you wish to do to recipient"] = ""; +$a->strings["Make this post private"] = ""; +$a->strings["Profile Match"] = "Forsíða fannst"; +$a->strings["No keywords to match. Please add keywords to your default profile."] = "Engin leitarorð. Bættu við leitarorðum í sjálfgefnu forsíðuna."; +$a->strings["is interested in:"] = "hefur áhuga á:"; +$a->strings["Connect"] = "Tengjast"; +$a->strings["No matches"] = "Engar leitarniðurstöður"; +$a->strings["Remote privacy information not available."] = "Persónuverndar upplýsingar ekki fyrir hendi á fjarlægum vefþjón."; +$a->strings["Visible to:"] = "Sýnilegt eftirfarandi:"; +$a->strings["No such group"] = "Hópur ekki til"; +$a->strings["Group is empty"] = "Hópur er tómur"; +$a->strings["Group: "] = "Hópur:"; +$a->strings["Select"] = "Velja"; +$a->strings["View %s's profile @ %s"] = "Birta forsíðu %s hjá %s"; +$a->strings["%s from %s"] = "%s til %s"; +$a->strings["View in context"] = "Birta í samhengi"; +$a->strings["%d comment"] = array( + 0 => "%d ummæli", + 1 => "%d ummæli", +); +$a->strings["comment"] = array( + 0 => "", + 1 => "", +); +$a->strings["show more"] = "sýna meira"; +$a->strings["like"] = "líkar"; +$a->strings["dislike"] = "mislíkar"; +$a->strings["Share this"] = "Deila þessu"; +$a->strings["share"] = "deila"; +$a->strings["Bold"] = "Feitletrað"; +$a->strings["Italic"] = "Skáletrað"; +$a->strings["Underline"] = "Undirstrikað"; +$a->strings["Quote"] = "Gæsalappir"; +$a->strings["Code"] = "Kóði"; +$a->strings["Image"] = "Mynd"; +$a->strings["Link"] = "Hlekkur"; +$a->strings["Video"] = "Myndband"; +$a->strings["add star"] = "bæta við stjörnu"; +$a->strings["remove star"] = "eyða stjörnu"; +$a->strings["toggle star status"] = "Kveikja/slökkva á stjörnu"; +$a->strings["starred"] = "stjörnumerkt"; +$a->strings["add tag"] = "bæta við merki"; +$a->strings["save to folder"] = ""; +$a->strings["to"] = "við"; +$a->strings["Wall-to-Wall"] = "vegg við vegg"; +$a->strings["via Wall-To-Wall:"] = "gegnum vegg við vegg"; +$a->strings["Welcome to %s"] = "Velkomin(n) til %s"; +$a->strings["Invalid request identifier."] = "Ógilt fyrirspurnar auðkenni"; +$a->strings["Discard"] = "Henda"; +$a->strings["Ignore"] = "Hunsa"; +$a->strings["System"] = ""; +$a->strings["Network"] = "Samfélag"; +$a->strings["Personal"] = "Einka"; +$a->strings["Home"] = "Heim"; +$a->strings["Introductions"] = "Kynningar"; +$a->strings["Messages"] = "Skilaboð"; +$a->strings["Show Ignored Requests"] = "Sýna hunsaðar fyrirspurnir"; +$a->strings["Hide Ignored Requests"] = "Fela hunsaðar beiðnir"; +$a->strings["Notification type: "] = "Skilaboða gerð:"; +$a->strings["Friend Suggestion"] = "Vina tillaga"; +$a->strings["suggested by %s"] = "stungið uppá af %s"; +$a->strings["Hide this contact from others"] = "Gera þennan notanda ósýnilegan öðrum"; +$a->strings["Post a new friend activity"] = "Búa til færslu um "; +$a->strings["if applicable"] = "ef við á"; +$a->strings["Approve"] = "Samþykkja"; +$a->strings["Claims to be known to you: "] = "Þykist þekkja þig:"; +$a->strings["yes"] = "já"; +$a->strings["no"] = "nei"; +$a->strings["Approve as: "] = "Samþykkja sem:"; +$a->strings["Friend"] = "Vin"; +$a->strings["Sharer"] = "Deilir"; +$a->strings["Fan/Admirer"] = "Aðdáanda"; +$a->strings["Friend/Connect Request"] = "Vina/Tengi beiðni"; +$a->strings["New Follower"] = "Nýr fylgjandi"; +$a->strings["No introductions."] = "Engar kynningar."; +$a->strings["Notifications"] = "Tilkynningar"; +$a->strings["%s liked %s's post"] = "%s líkaði færslu %s"; +$a->strings["%s disliked %s's post"] = "%s mislíkaði færslu %s"; +$a->strings["%s is now friends with %s"] = "%s er nú vinur %s"; +$a->strings["%s created a new post"] = "%s bjó til færslu"; +$a->strings["%s commented on %s's post"] = "%s athugasemd við %s's færslu"; +$a->strings["No more network notifications."] = "Engar tilkynningar á neti."; +$a->strings["Network Notifications"] = ""; +$a->strings["No more system notifications."] = ""; +$a->strings["System Notifications"] = ""; +$a->strings["No more personal notifications."] = "Engar einka tilkynningar."; +$a->strings["Personal Notifications"] = ""; +$a->strings["No more home notifications."] = "Ekki fleiri heima tilkynningar"; +$a->strings["Home Notifications"] = ""; +$a->strings["Could not access contact record."] = "Tókst ekki að ná í uppl. um tengilið"; +$a->strings["Could not locate selected profile."] = "Tókst ekki að staðsetja valinn forsíðu"; +$a->strings["Contact updated."] = "Tengiliður uppfærður"; +$a->strings["Contact has been blocked"] = "Lokað á tengilið"; +$a->strings["Contact has been unblocked"] = "Opnað á tengilið"; +$a->strings["Contact has been ignored"] = "Tengiliður hunsaður"; +$a->strings["Contact has been unignored"] = "Tengiliður afhunsaður"; +$a->strings["Contact has been archived"] = "Tengiliður settur í geymslu"; +$a->strings["Contact has been unarchived"] = "Tengiliður tekinn úr geymslu"; +$a->strings["Contact has been removed."] = "Tengiliður fjarlægður"; +$a->strings["You are mutual friends with %s"] = "Þú ert gagnkvæmur vinur %s"; +$a->strings["You are sharing with %s"] = "Þú ert að deila með %s"; +$a->strings["%s is sharing with you"] = "%s er að deila með þér"; +$a->strings["Private communications are not available for this contact."] = "Einkasamtal ekki í boði fyrir þennan"; +$a->strings["Never"] = "aldrei"; +$a->strings["(Update was successful)"] = "(uppfærsla tókst)"; +$a->strings["(Update was not successful)"] = "(uppfærsla tókst ekki)"; +$a->strings["Suggest friends"] = "Stinga uppá vinum"; +$a->strings["Network type: %s"] = "Net tegund: %s"; +$a->strings["%d contact in common"] = array( + 0 => "%d tengiliður sameiginlegur", + 1 => "%d tengiliðir sameiginlegir", +); +$a->strings["View all contacts"] = "Skoða alla tengiliði"; +$a->strings["Unblock"] = "Afbanna"; +$a->strings["Block"] = "Banna"; +$a->strings["Toggle Blocked status"] = ""; +$a->strings["Unignore"] = "Byrja að fylgjast með á ný"; +$a->strings["Toggle Ignored status"] = ""; +$a->strings["Unarchive"] = "Taka úr geymslu"; +$a->strings["Archive"] = "Setja í geymslu"; +$a->strings["Toggle Archive status"] = ""; +$a->strings["Repair"] = "Gera við "; +$a->strings["Advanced Contact Settings"] = ""; +$a->strings["Communications lost with this contact!"] = ""; +$a->strings["Contact Editor"] = "Stilling tengiliðar"; +$a->strings["Profile Visibility"] = "Forsíðu sjáanleiki"; +$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Veldu forsíðu sem á að birtast %s þegar hann skoðaður með öruggum hætti"; +$a->strings["Contact Information / Notes"] = "Uppl. um tengilið / minnisatriði"; +$a->strings["Edit contact notes"] = "Breyta minnispunktum tengiliðs "; +$a->strings["Visit %s's profile [%s]"] = "Heimsækja forsíðu %s [%s]"; +$a->strings["Block/Unblock contact"] = "útiloka/opna á tengilið"; +$a->strings["Ignore contact"] = "Hunsa tengilið"; +$a->strings["Repair URL settings"] = "Gera við slóð stillingar"; +$a->strings["View conversations"] = "Skoða samtöl"; +$a->strings["Delete contact"] = "Eyða tengilið"; +$a->strings["Last update:"] = "Síðasta uppfærsla:"; +$a->strings["Update public posts"] = "Uppfæra opinberar færslur"; +$a->strings["Update now"] = "Uppfæra núna"; +$a->strings["Currently blocked"] = "Útilokaður sem stendur"; +$a->strings["Currently ignored"] = "Hunsaður sem stendur"; +$a->strings["Currently archived"] = "Í geymslu"; +$a->strings["Replies/likes to your public posts may still be visible"] = "Svör/\"likar við\" á þínar opinberar færslur geta mögulega verið sýnileg öðrum"; +$a->strings["Suggestions"] = ""; +$a->strings["Suggest potential friends"] = ""; +$a->strings["All Contacts"] = "Allir tengiliðir"; +$a->strings["Show all contacts"] = "Sýna alla tengiliði"; +$a->strings["Unblocked"] = "Afhunsað"; +$a->strings["Only show unblocked contacts"] = ""; +$a->strings["Blocked"] = "Banna"; +$a->strings["Only show blocked contacts"] = ""; +$a->strings["Ignored"] = "Hunsa"; +$a->strings["Only show ignored contacts"] = ""; +$a->strings["Archived"] = "Í geymslu"; +$a->strings["Only show archived contacts"] = "Aðeins sýna geymda tengiliði"; +$a->strings["Hidden"] = "Falinn"; +$a->strings["Only show hidden contacts"] = "Aðeins sýna falda tengiliði"; +$a->strings["Mutual Friendship"] = "Sameiginlegur vinskapur"; +$a->strings["is a fan of yours"] = "er aðdáandi þinn"; +$a->strings["you are a fan of"] = "þú er aðdáandi"; +$a->strings["Edit contact"] = "Breyta tengilið"; +$a->strings["Contacts"] = "Tengiliðir"; +$a->strings["Search your contacts"] = "Leita í þínum vinum"; +$a->strings["Finding: "] = "Niðurstöður:"; +$a->strings["Find"] = "Finna"; +$a->strings["No valid account found."] = "Engin gildur aðgangur fannst."; +$a->strings["Password reset request issued. Check your email."] = "Breyta lykilorði. Opnaðu tölvupóstinn þinn."; +$a->strings["Password reset requested at %s"] = "Endurstilling aðgangsorðs umbeðin %s"; +$a->strings["Administrator"] = "Kerfisstjóri"; +$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Beiðni gat ekki verið sannreynd. (Það getur verið að þú hafir þegar sent hana.) Endurstilling á aðgangsorði tókst ekki."; +$a->strings["Password Reset"] = "Endurstilling Aðgangsorðs"; +$a->strings["Your password has been reset as requested."] = "Aðgangsorðið þitt hefur verið endurstilt."; +$a->strings["Your new password is"] = "Nýja aðgangsorð þitt er "; +$a->strings["Save or copy your new password - and then"] = "Vistaðu eða afritaðu nýja aðgangsorðið og"; +$a->strings["click here to login"] = "smelltu hér til að skrá þig inn"; +$a->strings["Your password may be changed from the Settings page after successful login."] = "Þú getur breytt aðgangsorðinu þínu á Stillingar síðunni eftir að þú hefur skráð þig inn."; +$a->strings["Forgot your Password?"] = "Gleymdir þú lykilorði þínu?"; +$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Sláðu inn tölvupóstfangið þitt til að endurstilla aðgangsorðið og fá leiðbeiningar sendar með tölvupósti."; +$a->strings["Nickname or Email: "] = "Gælunafn eða póstfang:"; +$a->strings["Reset"] = "Endursetja"; +$a->strings["Account settings"] = "Notenda stillingar"; +$a->strings["Display settings"] = ""; +$a->strings["Connector settings"] = "Stillingar tengla"; +$a->strings["Plugin settings"] = "Viðbóta stillingar"; +$a->strings["Connected apps"] = ""; +$a->strings["Export personal data"] = "Sækja persónuleg gögn"; +$a->strings["Remove account"] = "Henda tengilið"; +$a->strings["Settings"] = "Stillingar"; +$a->strings["Missing some important data!"] = "Vantar mikilvæg gögn!"; +$a->strings["Update"] = "Uppfæra"; +$a->strings["Failed to connect with email account using the settings provided."] = "Ekki tókst að tengjast við pósthólf með stillingum sem uppgefnar eru."; +$a->strings["Email settings updated."] = "Stillingar póstfangs uppfærðar."; +$a->strings["Passwords do not match. Password unchanged."] = "Aðgangsorð ber ekki saman. Aðgangsorð óbreytt."; +$a->strings["Empty passwords are not allowed. Password unchanged."] = "Tóm aðgangsorð eru ekki leyfileg. Aðgangsorð óbreytt."; +$a->strings["Password changed."] = "Aðgangsorði breytt."; +$a->strings["Password update failed. Please try again."] = "Uppfærsla á aðgangsorði tókst ekki. Reyndu aftur."; +$a->strings[" Please use a shorter name."] = "Vinsamlegast nota styttra nafn."; +$a->strings[" Name too short."] = "Nafn of stutt."; +$a->strings[" Not valid email."] = "Póstfang ógilt"; +$a->strings[" Cannot change to that email."] = "Ekki hægt að breyta yfir í þetta póstfang."; +$a->strings["Private forum has no privacy permissions. Using default privacy group."] = ""; +$a->strings["Private forum has no privacy permissions and no default privacy group."] = ""; +$a->strings["Settings updated."] = "Stillingar uppfærðar"; +$a->strings["Add application"] = "Bæta við forriti"; +$a->strings["Consumer Key"] = "Notenda lykill"; +$a->strings["Consumer Secret"] = "Notenda leyndarmál"; +$a->strings["Redirect"] = "Áframsenda"; +$a->strings["Icon url"] = "Táknmyndar slóð"; +$a->strings["You can't edit this application."] = "Þú getur ekki breytt þessu forriti."; +$a->strings["Connected Apps"] = "Tengd forr"; +$a->strings["Client key starts with"] = "Lykill viðskiptavinar byrjar á"; +$a->strings["No name"] = "Ekkert nafn"; +$a->strings["Remove authorization"] = "Fjarlæga auðkenningu"; +$a->strings["No Plugin settings configured"] = "Engar stillingar í einingu stilltar"; +$a->strings["Plugin Settings"] = "Eininga stillingar"; +$a->strings["Built-in support for %s connectivity is %s"] = "Innbyggður stuðningur fyrir %s tenging er%s"; +$a->strings["enabled"] = "kveikt"; +$a->strings["disabled"] = "slökkt"; +$a->strings["StatusNet"] = "StatusNet"; +$a->strings["Email access is disabled on this site."] = "Slökkt hefur verið á tölvupóst aðgang á þessum þjón."; +$a->strings["Connector Settings"] = "Stillingar tengils"; +$a->strings["Email/Mailbox Setup"] = "Tölvupóstur stilling"; +$a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "Ef þú villt hafa samskipti við tölvupósts tengiliði með þessari þjónustu (valfrjálst), skilgreindu þá hvernig á að tengjast póstfanginu þínu."; +$a->strings["Last successful email check:"] = "Póstfang sannreynt síðast:"; +$a->strings["IMAP server name:"] = "IMAP þjónn:"; +$a->strings["IMAP port:"] = "IMAP port:"; +$a->strings["Security:"] = "Öryggi:"; +$a->strings["None"] = "Ekkert"; +$a->strings["Email login name:"] = "Póstfangs aðgangsnafn:"; +$a->strings["Email password:"] = "Póstfangs aðgangsorð:"; +$a->strings["Reply-to address:"] = "Póstfang sem svar berst á:"; +$a->strings["Send public posts to all email contacts:"] = "Senda opinberar færslur á alla tölvupóst viðtakendur:"; +$a->strings["Action after import:"] = ""; +$a->strings["Mark as seen"] = "Merka sem séð"; +$a->strings["Move to folder"] = "Flytja yfir í skrásafn"; +$a->strings["Move to folder:"] = "Flytja yfir í skrásafn:"; +$a->strings["No special theme for mobile devices"] = ""; +$a->strings["Display Settings"] = ""; +$a->strings["Display Theme:"] = "Útlits þema:"; +$a->strings["Mobile Theme:"] = ""; +$a->strings["Update browser every xx seconds"] = "Endurhlaða vefsíðu á xx sekúndu fresti"; +$a->strings["Minimum of 10 seconds, no maximum"] = "Minnst 10 sekúndur, ekkert hámark"; +$a->strings["Number of items to display per page:"] = ""; +$a->strings["Maximum of 100 items"] = ""; +$a->strings["Don't show emoticons"] = ""; +$a->strings["Normal Account Page"] = ""; +$a->strings["This account is a normal personal profile"] = "Þessi notandi er með venjulega persónulega forsíðu"; +$a->strings["Soapbox Page"] = ""; +$a->strings["Automatically approve all connection/friend requests as read-only fans"] = "Sjálfkrafa samþykkja allar tengi/vina beiðnir sem, einungis lestrar aðdáendur"; +$a->strings["Community Forum/Celebrity Account"] = ""; +$a->strings["Automatically approve all connection/friend requests as read-write fans"] = "Sjálfkrafa samþykkja allar tengi/vina beiðnir, sem les og skriftar aðdáendur"; +$a->strings["Automatic Friend Page"] = ""; +$a->strings["Automatically approve all connection/friend requests as friends"] = "Sjálfkrafa samþykkja allar tengi/vina beiðnir sem vini"; +$a->strings["Private Forum [Experimental]"] = ""; +$a->strings["Private forum - approved members only"] = ""; +$a->strings["OpenID:"] = "OpenID:"; +$a->strings["(Optional) Allow this OpenID to login to this account."] = "(Valfrjálst) Leyfa þessu OpenID til að auðkennast sem þessi notandi."; +$a->strings["Publish your default profile in your local site directory?"] = "Gefa út sjálfgefna forsíðu í tengiliðalista á þessum þjón?"; +$a->strings["Publish your default profile in the global social directory?"] = "Gefa út sjálfgefna forsíðu í tengiliðalista á heimsvísu?"; +$a->strings["Hide your contact/friend list from viewers of your default profile?"] = "Fela tengiliða/vina listann þinn frá áhorfendum á sjálfgefinni forsíðu?"; +$a->strings["Hide your profile details from unknown viewers?"] = "Fela forsíðu upplýsingar fyrir óþekktum? "; +$a->strings["Allow friends to post to your profile page?"] = "Leyfa vinum að deila á forsíðuna þína?"; +$a->strings["Allow friends to tag your posts?"] = "Leyfa vinum að merkja þínar færslur?"; +$a->strings["Allow us to suggest you as a potential friend to new members?"] = "Leyfa að stungið verði uppá þér sem hugsamlegum vinur fyrir aðra notendur? "; +$a->strings["Permit unknown people to send you private mail?"] = ""; +$a->strings["Profile is not published."] = "Forsíðu hefur ekki verið gefinn út."; +$a->strings["or"] = "eða"; +$a->strings["Your Identity Address is"] = "Þín auðkennis slóð er"; +$a->strings["Automatically expire posts after this many days:"] = "Sjálfkrafa fyrna færslu eftir hvað marga daga:"; +$a->strings["If empty, posts will not expire. Expired posts will be deleted"] = "Tómar færslur renna ekki út. Útrunnum færslum er eytt"; +$a->strings["Advanced expiration settings"] = "Flóknar fyrningatíma stillingar"; +$a->strings["Advanced Expiration"] = "Flókin fyrning"; +$a->strings["Expire posts:"] = "Fyrna færslur:"; +$a->strings["Expire personal notes:"] = "Fyrna einka glósur:"; +$a->strings["Expire starred posts:"] = "Fyrna stjörnumerktar færslur:"; +$a->strings["Expire photos:"] = "Fyrna myndum:"; +$a->strings["Only expire posts by others:"] = ""; +$a->strings["Account Settings"] = "Notenda stillingar"; +$a->strings["Password Settings"] = "Aðgangsorða stillingar"; +$a->strings["New Password:"] = "Nýtt aðgangsorð:"; +$a->strings["Confirm:"] = "Staðfesta:"; +$a->strings["Leave password fields blank unless changing"] = "Hafðu aðgangsorða svæði tóm nema þegar verið er að breyta"; +$a->strings["Basic Settings"] = "Grunn stillingar"; +$a->strings["Full Name:"] = "Fullt nafn:"; +$a->strings["Email Address:"] = "Póstfang:"; +$a->strings["Your Timezone:"] = "Þitt tímabelti:"; +$a->strings["Default Post Location:"] = "Sjálfgefin staðsetning færslu:"; +$a->strings["Use Browser Location:"] = "Nota vafra staðsetningu:"; +$a->strings["Security and Privacy Settings"] = "Öryggis og næðis stillingar"; +$a->strings["Maximum Friend Requests/Day:"] = "Hámarks vinabeiðnir á dag:"; +$a->strings["(to prevent spam abuse)"] = "(til að koma í veg fyrir rusl misnotkun)"; +$a->strings["Default Post Permissions"] = "Sjálfgefnar aðgangstýring á færslum"; +$a->strings["(click to open/close)"] = "(ýttu á til að opna/loka)"; +$a->strings["Maximum private messages per day from unknown people:"] = ""; +$a->strings["Notification Settings"] = "Tilkynninga stillingar"; +$a->strings["By default post a status message when:"] = ""; +$a->strings["accepting a friend request"] = ""; +$a->strings["joining a forum/community"] = "ganga til liðs við hóp/samfélag"; +$a->strings["making an interesting profile change"] = ""; +$a->strings["Send a notification email when:"] = "Senda tilkynninga tölvupóst þegar:"; +$a->strings["You receive an introduction"] = "Þú færð kynningu"; +$a->strings["Your introductions are confirmed"] = "Þínar kynningar eru samþykktar"; +$a->strings["Someone writes on your profile wall"] = "Einhver skrifar á vegginn þínn"; +$a->strings["Someone writes a followup comment"] = "Einhver skrifar athugasemd á færslu hjá þér"; +$a->strings["You receive a private message"] = "Þú færð einkaskilaboð"; +$a->strings["You receive a friend suggestion"] = "Þér hefur borist vina uppástunga"; +$a->strings["You are tagged in a post"] = "Þú varst merkt(ur) í færslu"; +$a->strings["You are poked/prodded/etc. in a post"] = ""; +$a->strings["Advanced Account/Page Type Settings"] = ""; +$a->strings["Change the behaviour of this account for special situations"] = ""; +$a->strings["Manage Identities and/or Pages"] = "Sýsla með notendur og/eða síður"; +$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Skipta á milli auðkenna eða hópa- / stjörnunotanda sem deila þínum aðgangs upplýsingum eða þér verið úthlutað \"umsýslu\" réttindum."; +$a->strings["Select an identity to manage: "] = "Veldu notanda til að sýsla með:"; +$a->strings["Search Results For:"] = "Leitar niðurstöður fyrir:"; +$a->strings["Remove term"] = "Fjarlæga gildi"; +$a->strings["Saved Searches"] = "Vistaðar leitir"; +$a->strings["add"] = "bæta við"; +$a->strings["Commented Order"] = "Athugasemdar röð"; +$a->strings["Sort by Comment Date"] = "Raða eftir umræðu dagsetningu"; +$a->strings["Posted Order"] = "Færlsu röð"; +$a->strings["Sort by Post Date"] = "Raða eftir færslu dagsetningu"; +$a->strings["Posts that mention or involve you"] = "Færslur sem tengjast þér"; +$a->strings["New"] = "Ný"; +$a->strings["Activity Stream - by date"] = "Færslu straumur - raðað eftir dagsetningu"; +$a->strings["Starred"] = "Stjörnumerkt"; +$a->strings["Favourite Posts"] = "Uppáhalds færslur"; +$a->strings["Shared Links"] = ""; +$a->strings["Interesting Links"] = "Áhugaverðir hlekkir"; +$a->strings["Warning: This group contains %s member from an insecure network."] = array( + 0 => "Aðvörun: Þessi hópur inniheldur %s notanda frá óöruggu neti.", + 1 => "Aðvörun: Þessi hópur inniheldur %s notendur frá óöruggu neti.", +); +$a->strings["Private messages to this group are at risk of public disclosure."] = "Einka samtöl send á þennan hóp eiga á hættu að verða opinber."; +$a->strings["Contact: "] = "Tengiliður:"; +$a->strings["Private messages to this person are at risk of public disclosure."] = "Einka skilaboð send á þennan notanda eiga á hættu að verða opinber."; +$a->strings["Invalid contact."] = "Ógildur tengiliður."; +$a->strings["Personal Notes"] = "Persónulegar glósur"; +$a->strings["Save"] = "Vista"; +$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = ""; +$a->strings["No recipient selected."] = "Engir viðtakendur valdir."; +$a->strings["Unable to check your home location."] = ""; +$a->strings["Message could not be sent."] = "Ekki tókst að senda skilaboð."; +$a->strings["Message collection failure."] = "Ekki tókst að sækja skilaboð."; +$a->strings["Message sent."] = "Skilaboð send."; +$a->strings["No recipient."] = ""; +$a->strings["Please enter a link URL:"] = "Sláðu inn slóð:"; +$a->strings["Send Private Message"] = "Senda einkaskilaboð"; +$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = ""; +$a->strings["To:"] = "Til:"; +$a->strings["Subject:"] = "Efni:"; +$a->strings["Your message:"] = "Skilaboðin:"; +$a->strings["Welcome to Friendica"] = "Velkomin(n) á Friendica"; +$a->strings["New Member Checklist"] = "Nýr notandi verklisti"; +$a->strings["We would like to offer some tips and links to help make your experience enjoyable. Click any item to visit the relevant page. A link to this page will be visible from your home page for two weeks after your initial registration and then will quietly disappear."] = ""; +$a->strings["Getting Started"] = ""; +$a->strings["Friendica Walk-Through"] = ""; +$a->strings["On your Quick Start page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."] = ""; +$a->strings["Go to Your Settings"] = ""; +$a->strings["On your 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."] = ""; +$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."] = "Yfirfarðu aðrar stillingar, sérstaklega næðis stillingar. Óútgefin forsíða er einsog óskráð símanúmer. Sem þýðir að líklega viltu gefa út forsíðuna þína - nema allir vinir þínir og tilvonandi vinir vita nákvæmlega hvernig á að finna þig."; +$a->strings["Profile"] = "Forsíða"; +$a->strings["Upload Profile Photo"] = "Hlaða upp forsíðu mynd"; +$a->strings["Upload a profile photo if you have not done so already. Studies have shown that people with real photos of themselves are ten times more likely to make friends than people who do not."] = "Að hlaða upp forsíðu mynd ef þú hefur ekki þegar gert það. Rannsóknir sýna að fólk sem hefur alvöru mynd af sér er tíu sinnum líklegra til að eignast vini en fólk sem ekki hefur mynd."; +$a->strings["Edit Your Profile"] = ""; +$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."] = "Breyttu sjálfgefnu forsíðunni einsog þú villt. Yfirfarðu stillingu til að fela vinalista á forsíðu og stillingu til að fela forsíðu fyrir ókunnum."; +$a->strings["Profile Keywords"] = ""; +$a->strings["Set some public keywords for your default profile which describe your interests. We may be able to find other people with similar interests and suggest friendships."] = "Bættu við leitarorðum í sjálfgefnu forsíðuna þína sem lýsa þínum áhugamálum. Þá er hægt að fólk með svipuð áhugamál og stinga uppá vinskap."; +$a->strings["Connecting"] = ""; +$a->strings["Facebook"] = "Facebook"; +$a->strings["Authorise the Facebook Connector if you currently have a Facebook account and we will (optionally) import all your Facebook friends and conversations."] = "Gefðu aðgang að Facebook tengingunni ef þú þegar hefur Facebook aðgang og þá er hægt (valfrjálst) að nálgast alla vini og samtöl á Facebook."; +$a->strings["If this is your own personal server, installing the Facebook addon may ease your transition to the free social web."] = ""; +$a->strings["Importing Emails"] = ""; +$a->strings["Enter your email access information on your Connector Settings page if you wish to import and interact with friends or mailing lists from your email INBOX"] = "Fylltu út póstfangs tengi upplýsingar í Tengla stillinga síðuna ef þú villt sækja tölvupóst og eiga samskipti við vini eða póstlista úr tölvupóst innhólfinu þínu"; +$a->strings["Go to Your Contacts Page"] = ""; +$a->strings["Your Contacts page is your gateway to managing friendships and connecting with friends on other networks. Typically you enter their address or site URL in the Add New Contact dialog."] = "Tengiliða síðan er gáttin þín til að sýsla með vina sambönd og tengjast við vini á öðrum netum. Oftast setur þú vistfangi eða slóð þeirra í Bæta við tengilið gluggan."; +$a->strings["Go to Your Site's Directory"] = ""; +$a->strings["The Directory page lets you find other people in this network or other federated sites. Look for a Connect or Follow link on their profile page. Provide your own Identity Address if requested."] = "Tengiliðalistinn er góð leit til að finna fólk á samfélagsnetinu eða öðrum sambandsnetum. Leitaðu að Connect eða Follow hlekk á forsíðunni þeirra. Mögulega þarf að gefa upp þína auðkenna slóð."; +$a->strings["Finding New People"] = ""; +$a->strings["On the side panel of the Contacts page are several tools to find new friends. We can match people by interest, look up people by name or interest, and provide suggestions based on network relationships. On a brand new site, friend suggestions will usually begin to be populated within 24 hours."] = ""; +$a->strings["Groups"] = "Hópar"; +$a->strings["Group Your Contacts"] = ""; +$a->strings["Once you have made some friends, organize them into private conversation groups from the sidebar of your Contacts page and then you can interact with each group privately on your Network page."] = "Eftir að þú hefur eignast nokkra vini, þá er best að flokka þá niður í hópa á hliðar slánni á Tengiliða síðunni. Eftir það getur þú haft samskipti við hvern hóp fyrir sig á Samfélags síðunni."; +$a->strings["Why Aren't My Posts Public?"] = ""; +$a->strings["Friendica respects your privacy. By default, your posts will only show up to people you've added as friends. For more information, see the help section from the link above."] = ""; +$a->strings["Getting Help"] = ""; +$a->strings["Go to the Help Section"] = ""; +$a->strings["Our help pages may be consulted for detail on other program features and resources."] = "Hægt er að styðjast við Hjálp síðuna til að fá leiðbeiningar um aðra eiginleika."; +$a->strings["Item not available."] = "Atriði ekki í boði."; +$a->strings["Item was not found."] = "Atriði fannst ekki"; +$a->strings["Group created."] = "Hópur stofnaður"; +$a->strings["Could not create group."] = "Gat ekki stofnað hóp."; +$a->strings["Group not found."] = "Hópur fannst ekki."; +$a->strings["Group name changed."] = "Hópur endurskýrður."; +$a->strings["Permission denied"] = "Bannaður aðgangur"; +$a->strings["Create a group of contacts/friends."] = "Stofna hóp af tengiliðum/vinum"; +$a->strings["Group Name: "] = "Nafn hóps:"; +$a->strings["Group removed."] = "Hópi eytt."; +$a->strings["Unable to remove group."] = "Ekki tókst að eyða hóp."; +$a->strings["Group Editor"] = "Hópa sýslari"; +$a->strings["Members"] = "Aðilar"; +$a->strings["Click on a contact to add or remove."] = "Ýttu á tengili til að bæta við hóp eða taka úr hóp."; +$a->strings["Invalid profile identifier."] = "Ógilt tengiliða auðkenni"; +$a->strings["Profile Visibility Editor"] = "Sýsla með sjáanleika forsíðu"; +$a->strings["Visible To"] = "Sjáanlegur hverjum"; +$a->strings["All Contacts (with secure profile access)"] = "Allir tengiliðir (með öruggann aðgang að forsíðu)"; +$a->strings["No contacts."] = "Enginn tengiliður"; +$a->strings["View Contacts"] = "Skoða tengiliði"; +$a->strings["Registration details for %s"] = "Nýskráningar upplýsingar fyrir %s"; +$a->strings["Registration successful. Please check your email for further instructions."] = "Nýskráning tóks. Frekari fyrirmæli voru send í tölvupósti."; +$a->strings["Failed to send email message. Here is the message that failed."] = "Ekki tókst að senda tölvupóst skeyti. Hér er skeytið sem ekki tókst að senda."; +$a->strings["Your registration can not be processed."] = "Skráninguna þína er ekki hægt að vinna."; +$a->strings["Registration request at %s"] = "Skráningar beiðni á %s"; +$a->strings["Your registration is pending approval by the site owner."] = "Skráningin þín bíður samþykkis af eiganda síðunnar."; +$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Þessi vefur hefur náð hámarks fjölda daglegra nýskráninga. Reyndu aftur á morgun."; +$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Þú mátt (valfrjálst) fylla í þetta svæði gegnum OpenID með því gefa upp þitt OpenID og ýta á 'Skrá'."; +$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Ef þú veist ekki hvað OpenID er, skildu þá þetta svæði eftir tómt en fylltu í restin af svæðunum."; +$a->strings["Your OpenID (optional): "] = "Þitt OpenID (valfrjálst):"; +$a->strings["Include your profile in member directory?"] = "Á forsíðan þín að sjást í notendalistanum?"; +$a->strings["Membership on this site is by invitation only."] = "Aðild að þessum vef er "; +$a->strings["Your invitation ID: "] = "Boðskorta auðkenni:"; +$a->strings["Registration"] = "Nýskráning"; +$a->strings["Your Full Name (e.g. Joe Smith): "] = "Full nafn (t.d. Jón Jónsson):"; +$a->strings["Your Email Address: "] = "Tölvupóstur:"; +$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be 'nickname@\$sitename'."] = "Veldu gælunafn. Verður að byrja á staf. Slóðin þín á þessum vef verður síðan 'gælunafn@\$sitename'."; +$a->strings["Choose a nickname: "] = "Veldu gælunafn:"; +$a->strings["Register"] = "Nýskrá"; +$a->strings["People Search"] = "Leita af fólki"; +$a->strings["status"] = "staða"; +$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s lýkar við %3\$s hjá %2\$s "; +$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s líkar ekki við %3\$s hjá %2\$s "; +$a->strings["Item not found."] = "Atriði fannst ekki."; +$a->strings["Access denied."] = "Aðgangi hafnað"; +$a->strings["Photos"] = "Myndir"; +$a->strings["Files"] = "Skrár"; +$a->strings["Account approved."] = "Notandi samþykktur."; +$a->strings["Registration revoked for %s"] = "Skráning afturköllurð vegna %s"; +$a->strings["Please login."] = "Skráðu yður inn."; +$a->strings["Unable to locate original post."] = "Ekki tókst að finna upphaflega færslu."; +$a->strings["Empty post discarded."] = "Tóm færsla eytt."; +$a->strings["Wall Photos"] = "Veggmyndir"; +$a->strings["System error. Post not saved."] = "Kerfisvilla. Færsla ekki vistuð."; +$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "Skilaboðið sendi %s, notandi á Friendica samfélagsnetinu."; +$a->strings["You may visit them online at %s"] = "Þú getur heimsótt þau á netinu á %s"; +$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Hafðu samband við sendanda með því að svara á þessari færslu ef þú villt ekki fá þessi skilaboð."; +$a->strings["%s posted an update."] = "%s hefur sent uppfærslu."; +$a->strings["%1\$s is currently %2\$s"] = ""; +$a->strings["Mood"] = ""; +$a->strings["Set your current mood and tell your friends"] = ""; +$a->strings["Image uploaded but image cropping failed."] = "Tókst að hala upp mynd en afskurður tókst ekki."; +$a->strings["Image size reduction [%s] failed."] = "Myndar minnkun [%s] tókst ekki."; +$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Ýta þarf á "; +$a->strings["Unable to process image"] = "Ekki tókst að vinna mynd"; +$a->strings["Image exceeds size limit of %d"] = "Mynd stærri en takmörkunin %d"; +$a->strings["Upload File:"] = "Hlaða upp skrá:"; +$a->strings["Select a profile:"] = ""; +$a->strings["Upload"] = "Hlaða upp"; +$a->strings["skip this step"] = "sleppa þessu skrefi"; +$a->strings["select a photo from your photo albums"] = "velja mynd í myndabókum"; +$a->strings["Crop Image"] = "Skera af mynd"; +$a->strings["Please adjust the image cropping for optimum viewing."] = "Stilltu afskurð fyrir besta birtingu."; +$a->strings["Done Editing"] = "Breyting kláruð"; +$a->strings["Image uploaded successfully."] = "Upphölun á mynd tóks."; +$a->strings["No profile"] = "Engin forsíða"; +$a->strings["Remove My Account"] = "Eyða þessum notanda"; +$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Þetta mun algjörlega eyða notandanum. Þegar þetta hefur verið gert er þetta ekki afturkræft."; +$a->strings["Please enter your password for verification:"] = "Sláðu inn aðgangsorð yðar:"; +$a->strings["New Message"] = "Ný skilaboð"; +$a->strings["Unable to locate contact information."] = "Ekki tókst að staðsetja tengiliðs upplýsingar."; +$a->strings["Message deleted."] = "Skilaboðum eytt."; +$a->strings["Conversation removed."] = "Samtali eytt."; +$a->strings["No messages."] = "Engin skilaboð."; +$a->strings["Unknown sender - %s"] = ""; +$a->strings["You and %s"] = ""; +$a->strings["%s and You"] = ""; +$a->strings["Delete conversation"] = "Eyða samtali"; +$a->strings["D, d M Y - g:i A"] = ""; +$a->strings["%d message"] = array( + 0 => "", + 1 => "", +); +$a->strings["Message not available."] = "Ekki næst í skilaboð."; +$a->strings["Delete message"] = "Eyða skilaboðum"; +$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = ""; +$a->strings["Send Reply"] = "Senda svar"; +$a->strings["Friends of %s"] = "Vinir %s"; +$a->strings["No friends to display."] = "Engir vinir til að birta."; +$a->strings["Theme settings updated."] = ""; +$a->strings["Site"] = "Vefur"; +$a->strings["Users"] = "Notendur"; +$a->strings["Plugins"] = "Viðbætur"; +$a->strings["Themes"] = "Þemu"; +$a->strings["DB updates"] = "Gagnagrunns uppfærslur"; +$a->strings["Logs"] = "Atburðaskrá"; +$a->strings["Admin"] = "Stjórnborð"; +$a->strings["Plugin Features"] = ""; +$a->strings["User registrations waiting for confirmation"] = "Notenda nýskráningar bíða samþykkis"; +$a->strings["Normal Account"] = "Venjulegur notandi"; +$a->strings["Soapbox Account"] = "Sápukassa notandi"; +$a->strings["Community/Celebrity Account"] = "Hópa-/Stjörnusíða"; +$a->strings["Automatic Friend Account"] = "Verður sjálfkrafa vinur notandi"; +$a->strings["Blog Account"] = ""; +$a->strings["Private Forum"] = ""; +$a->strings["Message queues"] = ""; +$a->strings["Administration"] = "Stjórnun"; +$a->strings["Summary"] = "Samantekt"; +$a->strings["Registered users"] = "Skráðir notendur"; +$a->strings["Pending registrations"] = "Nýskráningar í bið"; +$a->strings["Version"] = "Útgáfa"; +$a->strings["Active plugins"] = "Virkar viðbætur"; +$a->strings["Site settings updated."] = "Stillingar þjóns uppfærðar."; +$a->strings["Closed"] = "Lokað"; +$a->strings["Requires approval"] = "Þarf samþykki"; +$a->strings["Open"] = "Opið"; +$a->strings["No SSL policy, links will track page SSL state"] = ""; +$a->strings["Force all links to use SSL"] = ""; +$a->strings["Self-signed certificate, use SSL for local links only (discouraged)"] = ""; +$a->strings["File upload"] = "Hlaða upp skrá"; +$a->strings["Policies"] = "Stefna"; +$a->strings["Advanced"] = "Flóknari"; +$a->strings["Site name"] = "Nafn síðu"; +$a->strings["Banner/Logo"] = "Borði/Merki"; +$a->strings["System language"] = "Kerfis tungumál"; +$a->strings["System theme"] = "Kerfis þema"; +$a->strings["Default system theme - may be over-ridden by user profiles - change theme settings"] = ""; +$a->strings["Mobile system theme"] = ""; +$a->strings["Theme for mobile devices"] = ""; +$a->strings["SSL link policy"] = ""; +$a->strings["Determines whether generated links should be forced to use SSL"] = ""; +$a->strings["Maximum image size"] = "Mesta stærð mynda"; +$a->strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = ""; +$a->strings["Maximum image length"] = ""; +$a->strings["Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits."] = ""; +$a->strings["JPEG image quality"] = ""; +$a->strings["Uploaded JPEGS will be saved at this quality setting [0-100]. Default is 100, which is full quality."] = ""; +$a->strings["Register policy"] = "Nýskráningar stefna"; +$a->strings["Register text"] = "Nýskráningar texti"; +$a->strings["Will be displayed prominently on the registration page."] = ""; +$a->strings["Accounts abandoned after x days"] = "Yfirgefnir notendur eftir x daga"; +$a->strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Hættir að eyða afli í að sækja færslur á ytri vefi fyrir yfirgefna notendur. 0 þýðir notendur merkjast ekki yfirgefnir."; +$a->strings["Allowed friend domains"] = "Vina lén leyfð"; +$a->strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = ""; +$a->strings["Allowed email domains"] = "Póstfangs lén leyfð"; +$a->strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = ""; +$a->strings["Block public"] = "Lokað á opinberar færslur"; +$a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = ""; +$a->strings["Force publish"] = "Skylda að vera í tengiliðalista"; +$a->strings["Check to force all profiles on this site to be listed in the site directory."] = ""; +$a->strings["Global directory update URL"] = "Uppfærslu slóð fyrir heims tengiliðalista"; +$a->strings["URL to update the global directory. If this is not set, the global directory is completely unavailable to the application."] = ""; +$a->strings["Allow threaded items"] = ""; +$a->strings["Allow infinite level threading for items on this site."] = ""; +$a->strings["Private posts by default for new users"] = ""; +$a->strings["Set default post permissions for all new members to the default privacy group rather than public."] = ""; +$a->strings["Block multiple registrations"] = "Banna margar skráningar"; +$a->strings["Disallow users to register additional accounts for use as pages."] = ""; +$a->strings["OpenID support"] = "Leyfa OpenID auðkenningu"; +$a->strings["OpenID support for registration and logins."] = ""; +$a->strings["Fullname check"] = "Fullt nafn skilyrði"; +$a->strings["Force users to register with a space between firstname and lastname in Full name, as an antispam measure"] = ""; +$a->strings["UTF-8 Regular expressions"] = "UTF-8 hefðbundin stöfun"; +$a->strings["Use PHP UTF8 regular expressions"] = ""; +$a->strings["Show Community Page"] = "Sýna samfélags síðu"; +$a->strings["Display a Community page showing all recent public postings on this site."] = ""; +$a->strings["Enable OStatus support"] = "Leyfa OStatus stuðning"; +$a->strings["Provide built-in OStatus (identi.ca, status.net, etc.) compatibility. All communications in OStatus are public, so privacy warnings will be occasionally displayed."] = ""; +$a->strings["Enable Diaspora support"] = "Leyfa Diaspora tengingar"; +$a->strings["Provide built-in Diaspora network compatibility."] = ""; +$a->strings["Only allow Friendica contacts"] = "Aðeins leyfa Friendica notendur"; +$a->strings["All contacts must use Friendica protocols. All other built-in communication protocols disabled."] = ""; +$a->strings["Verify SSL"] = "Sannreyna SSL"; +$a->strings["If you wish, you can turn on strict certificate checking. This will mean you cannot connect (at all) to self-signed SSL sites."] = ""; +$a->strings["Proxy user"] = "Proxy notandi"; +$a->strings["Proxy URL"] = "Proxy slóð"; +$a->strings["Network timeout"] = "Net tími útrunninn"; +$a->strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = ""; +$a->strings["Delivery interval"] = ""; +$a->strings["Delay background delivery processes by this many seconds to reduce system load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 for large dedicated servers."] = ""; +$a->strings["Poll interval"] = ""; +$a->strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = ""; +$a->strings["Maximum Load Average"] = "Mesta meðaltals álag"; +$a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = ""; +$a->strings["Update has been marked successful"] = "Uppfærsla merkt sem tókst"; +$a->strings["Executing %s failed. Check system logs."] = "Uppfærslu %s tókst ekki. Sjá atburðaskrár."; +$a->strings["Update %s was successfully applied."] = "Uppfærsla %s framkvæmd."; +$a->strings["Update %s did not return a status. Unknown if it succeeded."] = "Uppfærsla %s skilaði ekki gildi. Óvíst hvort tókst."; +$a->strings["Update function %s could not be found."] = "Uppfærslu stefja %s fannst ekki."; +$a->strings["No failed updates."] = "Engar uppfærslur mistókust."; +$a->strings["Failed Updates"] = "Uppfærslur sem mistókust"; +$a->strings["This does not include updates prior to 1139, which did not return a status."] = "Þetta á ekki við uppfærslur fyrir 1139, þær skiluðu ekki lokastöðu."; +$a->strings["Mark success (if update was manually applied)"] = "Merkja sem tókst (ef uppfærsla var framkvæmd handvirkt)"; +$a->strings["Attempt to execute this update step automatically"] = "Framkvæma þessa uppfærslu sjálfkrafa"; +$a->strings["%s user blocked/unblocked"] = array( + 0 => "", + 1 => "", +); +$a->strings["%s user deleted"] = array( + 0 => "%s notenda eytt", + 1 => "%s notendum eytt", +); +$a->strings["User '%s' deleted"] = "Notanda '%s' eytt"; +$a->strings["User '%s' unblocked"] = "Notanda '%s' gefið frelsi"; +$a->strings["User '%s' blocked"] = "Notanda '%s' settur í bann"; +$a->strings["select all"] = "velja alla"; +$a->strings["User registrations waiting for confirm"] = "Skráning notanda býður samþykkis"; +$a->strings["Request date"] = "Dagsetning beiðnar"; +$a->strings["Email"] = "Póstfang"; +$a->strings["No registrations."] = "Engin skráning"; +$a->strings["Deny"] = "Hafnað"; +$a->strings["Site admin"] = ""; +$a->strings["Register date"] = "Skráningar dagsetning"; +$a->strings["Last login"] = "Síðast innskráður"; +$a->strings["Last item"] = "Síðasta"; +$a->strings["Account"] = "Notandi"; +$a->strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Valdir notendur verður eytt!\\n\\nAllt sem þessir notendur hafa deilt á þessum vef verður varanlega eytt!\\n\\nErtu alveg viss?"; +$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?"] = "Notandinn {0} verður eytt!\\n\\nAllt sem þessi notandi hefur deilt á þessum vef veður varanlega eytt!\\n\\nErtu alveg viss?"; +$a->strings["Plugin %s disabled."] = "Slökkt á viðbót %s "; +$a->strings["Plugin %s enabled."] = "Kveikt á viðbót %s"; +$a->strings["Disable"] = "Slökkva"; +$a->strings["Enable"] = "Kveikja"; +$a->strings["Toggle"] = "Skipta"; +$a->strings["Author: "] = ""; +$a->strings["Maintainer: "] = ""; +$a->strings["No themes found."] = "Engin þemu fundust"; +$a->strings["Screenshot"] = ""; +$a->strings["[Experimental]"] = "[Tilraun]"; +$a->strings["[Unsupported]"] = "[Óstudd]"; +$a->strings["Log settings updated."] = "Stillingar atburðaskrár uppfærðar. "; +$a->strings["Clear"] = "Hreinsa"; +$a->strings["Debugging"] = "Aflúsa"; +$a->strings["Log file"] = "Atburðaskrá"; +$a->strings["Must be writable by web server. Relative to your Friendica top-level directory."] = "Vefþjónn verður að hafa skrifréttindi. Afstætt við Friendica rótar skráarsafn."; +$a->strings["Log level"] = "Stig atburðaskráningar"; +$a->strings["Close"] = "Loka"; +$a->strings["FTP Host"] = "FTP Vélanafn"; +$a->strings["FTP Path"] = "FTP Slóð"; +$a->strings["FTP User"] = "FTP Notandi"; +$a->strings["FTP Password"] = "FTP Aðgangsorð"; +$a->strings["Requested profile is not available."] = "Umbeðinn forsíða ekki til."; +$a->strings["Access to this profile has been restricted."] = "Aðgangur að þessari forsíðu hefur verið heftur."; +$a->strings["Tips for New Members"] = "Ábendingar fyrir nýja notendur"; +$a->strings["{0} wants to be your friend"] = "{0} vill vera vinur þinn"; +$a->strings["{0} sent you a message"] = "{0} sendi þér skilboð"; +$a->strings["{0} requested registration"] = "{0} óskaði eftir skráningu"; +$a->strings["{0} commented %s's post"] = "{0} gerði athugasemd við %s's senda færslu"; +$a->strings["{0} liked %s's post"] = "{0} líkaði við senda færslu %s's"; +$a->strings["{0} disliked %s's post"] = "{0} líkaði ekki við senda færslu %s's"; +$a->strings["{0} is now friends with %s"] = "{0} er nú vinur %s"; +$a->strings["{0} posted"] = "{0} sendi færslu"; +$a->strings["{0} tagged %s's post with #%s"] = "{0} merkti %s's færslu með #%s"; +$a->strings["{0} mentioned you in a post"] = "{0} minntist á þig í færslu"; +$a->strings["Contacts who are not members of a group"] = ""; +$a->strings["OpenID protocol error. No ID returned."] = ""; +$a->strings["Account not found and OpenID registration is not permitted on this site."] = ""; +$a->strings["Login failed."] = "Innskráning mistókst."; +$a->strings["Contact added"] = ""; +$a->strings["Common Friends"] = "Sameiginlegir vinir"; +$a->strings["No contacts in common."] = ""; +$a->strings["link"] = ""; +$a->strings["Item has been removed."] = "Atriði hefur verið fjarlægt."; +$a->strings["Applications"] = "Forrit"; +$a->strings["No installed applications."] = "Engin uppsett forrit"; +$a->strings["Search"] = "Leita"; +$a->strings["Profile not found."] = "Forsíða fannst ekki."; +$a->strings["Profile Name is required."] = "Nafn á forsíðu er skilyrði"; +$a->strings["Marital Status"] = ""; +$a->strings["Romantic Partner"] = ""; +$a->strings["Likes"] = ""; +$a->strings["Dislikes"] = ""; +$a->strings["Work/Employment"] = ""; +$a->strings["Religion"] = ""; +$a->strings["Political Views"] = ""; +$a->strings["Gender"] = ""; +$a->strings["Sexual Preference"] = ""; +$a->strings["Homepage"] = ""; +$a->strings["Interests"] = ""; +$a->strings["Address"] = ""; +$a->strings["Location"] = ""; +$a->strings["Profile updated."] = "Forsíða uppfærð."; +$a->strings[" and "] = "og"; +$a->strings["public profile"] = "Opinber forsíða"; +$a->strings["%1\$s changed %2\$s to “%3\$s”"] = ""; +$a->strings[" - Visit %1\$s's %2\$s"] = ""; +$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s hefur uppfært %2\$s, með því að breyta %3\$s."; +$a->strings["Profile deleted."] = "Forsíðu eytt."; +$a->strings["Profile-"] = "Forsíða-"; +$a->strings["New profile created."] = "Ný forsíða búinn til."; +$a->strings["Profile unavailable to clone."] = "Ekki tókst að klóna forsíðu"; +$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Fela tengiliða/vina lista á þessari forsíðu?"; +$a->strings["Edit Profile Details"] = "Breyta forsíðu upplýsingum"; +$a->strings["View this profile"] = "Skoða þessa forsíðu"; +$a->strings["Create a new profile using these settings"] = "Búa til nýja forsíðu með þessum stillingum"; +$a->strings["Clone this profile"] = "Klóna þessa forsíðu"; +$a->strings["Delete this profile"] = "Eyða þessari forsíðu"; +$a->strings["Profile Name:"] = "Forsíðu nafn:"; +$a->strings["Your Full Name:"] = "Fullt nafn:"; +$a->strings["Title/Description:"] = "Starfsheiti/Lýsing:"; +$a->strings["Your Gender:"] = "Kyn:"; +$a->strings["Birthday (%s):"] = "Afmæli (%s):"; +$a->strings["Street Address:"] = "Gata:"; +$a->strings["Locality/City:"] = "Bær/Borg:"; +$a->strings["Postal/Zip Code:"] = "Póstnúmer:"; +$a->strings["Country:"] = "Land:"; +$a->strings["Region/State:"] = "Svæði/Sýsla"; +$a->strings[" Marital Status:"] = " Hjúskaparstaða:"; +$a->strings["Who: (if applicable)"] = "Hver: (ef við á)"; +$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Dæmi: cathy123, Cathy Williams, cathy@example.com"; +$a->strings["Since [date]:"] = ""; +$a->strings["Sexual Preference:"] = "Kynhneigð"; +$a->strings["Homepage URL:"] = "Slóð heimasíðu:"; +$a->strings["Hometown:"] = ""; +$a->strings["Political Views:"] = "Stórnmálaskoðanir:"; +$a->strings["Religious Views:"] = "Trúarskoðanir"; +$a->strings["Public Keywords:"] = "Opinber leitarorð:"; +$a->strings["Private Keywords:"] = "Einka leitarorð:"; +$a->strings["Likes:"] = ""; +$a->strings["Dislikes:"] = ""; +$a->strings["Example: fishing photography software"] = "Til dæmis: fishing photography software"; +$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(Notað til að stinga uppá mögulegum vinum, aðrir geta séð)"; +$a->strings["(Used for searching profiles, never shown to others)"] = "(Notað við leit að öðrum notendum, aldrei sýnt öðrum)"; +$a->strings["Tell us about yourself..."] = "Segðu okkur frá sjálfum þér..."; +$a->strings["Hobbies/Interests"] = "Áhugamál"; +$a->strings["Contact information and Social Networks"] = "Tengiliða upplýsingar og samfélagsnet"; +$a->strings["Musical interests"] = "Tónlistarsmekkur"; +$a->strings["Books, literature"] = "Bækur, bókmenntir"; +$a->strings["Television"] = "Sjónvarp"; +$a->strings["Film/dance/culture/entertainment"] = "Kvikmyndir/dans/menning/afþreying"; +$a->strings["Love/romance"] = "Ást/rómantík"; +$a->strings["Work/employment"] = "Atvinna:"; +$a->strings["School/education"] = "Skóli/menntun"; +$a->strings["This is your public profile.
    It may be visible to anybody using the internet."] = "Þetta er opinber forsíða.
    Hún verður sjáanleg öðrum sem nota alnetið."; +$a->strings["Age: "] = "Aldur:"; +$a->strings["Edit/Manage Profiles"] = "Sýsla með forsíður"; +$a->strings["Change profile photo"] = "Breyta forsíðu mynd"; +$a->strings["Create New Profile"] = "Stofna nýja forsíðu"; +$a->strings["Profile Image"] = "Forsíðu mynd"; +$a->strings["visible to everybody"] = "Sýnilegt öllum"; +$a->strings["Edit visibility"] = "Sýsla með sjáanleika"; +$a->strings["Save to Folder:"] = ""; +$a->strings["- select -"] = ""; +$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s merkti %2\$s's %3\$s með %4\$s"; +$a->strings["No potential page delegates located."] = "Engir mögulegir viðtakendur síðunnar fundust."; +$a->strings["Delegate Page Management"] = ""; +$a->strings["Delegates are able to manage all aspects of this account/page except for basic account settings. Please do not delegate your personal account to anybody that you do not trust completely."] = ""; +$a->strings["Existing Page Managers"] = ""; +$a->strings["Existing Page Delegates"] = ""; +$a->strings["Potential Delegates"] = ""; +$a->strings["Add"] = "Bæta við"; +$a->strings["No entries."] = "Engar færslur."; +$a->strings["Source (bbcode) text:"] = ""; +$a->strings["Source (Diaspora) text to convert to BBcode:"] = ""; +$a->strings["Source input: "] = ""; +$a->strings["bb2html: "] = ""; +$a->strings["bb2html2bb: "] = ""; +$a->strings["bb2md: "] = ""; +$a->strings["bb2md2html: "] = ""; +$a->strings["bb2dia2bb: "] = ""; +$a->strings["bb2md2html2bb: "] = ""; +$a->strings["Source input (Diaspora format): "] = ""; +$a->strings["diaspora2bb: "] = ""; +$a->strings["Friend Suggestions"] = "Vina uppástungur"; +$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Engar uppástungur tiltækar. Ef þetta er nýr vefur, reyndu þá aftur eftir um 24 klukkustundir."; +$a->strings["Ignore/Hide"] = "Hunsa/Fela"; +$a->strings["Global Directory"] = "Heims tengiliða skrá"; +$a->strings["Find on this site"] = "Leita á þessum vef"; +$a->strings["Site Directory"] = "Vef tengiliða skrá"; +$a->strings["Gender: "] = "Kyn:"; +$a->strings["Gender:"] = "Kyn:"; +$a->strings["Status:"] = "Staða:"; +$a->strings["Homepage:"] = "Heimasíða:"; +$a->strings["About:"] = "Um:"; +$a->strings["No entries (some entries may be hidden)."] = "Engar færslur (sumar geta verið faldar)."; +$a->strings["%s : Not a valid email address."] = "%s : Ekki gilt póstfang"; +$a->strings["Please join us on Friendica"] = ""; +$a->strings["%s : Message delivery failed."] = "%s : Skilaboð komust ekki til skila."; +$a->strings["%d message sent."] = array( + 0 => "%d skilaboð send.", + 1 => "%d skilaboð send", +); +$a->strings["You have no more invitations available"] = "Þú hefur ekki fleiri boðskort."; +$a->strings["Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks."] = ""; +$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = ""; +$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join."] = ""; +$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = ""; +$a->strings["Send invitations"] = "Senda kynningar"; +$a->strings["Enter email addresses, one per line:"] = "Póstföng, eitt í hverja línu:"; +$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = ""; +$a->strings["You will need to supply this invitation code: \$invite_code"] = "Þú þarft að nota eftirfarandi boðskorta auðkenni: \$invite_code"; +$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Þegar þú hefur nýskráð þig, hafðu samband við mig gegnum síðuna mína á:"; +$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = ""; +$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = ""; +$a->strings["Response from remote site was not understood."] = "Ekki tókst að skilja svar frá ytri vef."; +$a->strings["Unexpected response from remote site: "] = "Óskiljanlegt svar frá ytri vef:"; +$a->strings["Confirmation completed successfully."] = "Staðfesting kláraði eðlilega."; +$a->strings["Remote site reported: "] = "Ytri vefur svaraði:"; +$a->strings["Temporary failure. Please wait and try again."] = "Tímabundin villa. Vinsamlegast bíddu og reyndur aftur síðar."; +$a->strings["Introduction failed or was revoked."] = "Kynning mistókst eða var afturkölluð."; +$a->strings["Unable to set contact photo."] = "Ekki tókst að setja tengiliða mynd."; +$a->strings["%1\$s is now friends with %2\$s"] = "Núna er %1\$s vinur %2\$s"; +$a->strings["No user record found for '%s' "] = "Enginn notanda færsla fannst fyrir '%s'"; +$a->strings["Our site encryption key is apparently messed up."] = "Dulkóðunnar lykill síðunnar okker er í döðlu."; +$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "Tómt slóð var uppgefin eða ekki okkur tókst ekki að afkóða slóð."; +$a->strings["Contact record was not found for you on our site."] = "Tengiliða færslan þín fannst ekki á þjóninum okkar."; +$a->strings["Site public key not available in contact record for URL %s."] = "Opinber lykill er ekki til í tengiliðafærslu fyrir slóð %s."; +$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "Skilríkið sem þjónninn þinn gaf upp er þegar afritað á okkar þjón. Þetta ætti að virka ef þú bara reynir aftur."; +$a->strings["Unable to set your contact credentials on our system."] = "Ekki tókst að setja tengiliða skilríkið þitt upp á þjóninum okkar."; +$a->strings["Unable to update your contact profile details on our system"] = "Ekki tókst að uppfæra tengiliða skilríkis upplýsingarnar á okkar þjón"; +$a->strings["Connection accepted at %s"] = "Tenging samþykkt hjá %s"; +$a->strings["%1\$s has joined %2\$s"] = "%1\$s hefur gengið til liðs við %2\$s"; +$a->strings["Google+ Import Settings"] = ""; +$a->strings["Enable Google+ Import"] = ""; +$a->strings["Google Account ID"] = ""; +$a->strings["Google+ Import Settings saved."] = ""; +$a->strings["Facebook disabled"] = "Ekki er kveikt á Facebook "; +$a->strings["Updating contacts"] = "Uppfæra tengiliði"; +$a->strings["Facebook API key is missing."] = "Facebook API lykill er ekki til staðar."; +$a->strings["Facebook Connect"] = "Facebook tenging"; +$a->strings["Install Facebook connector for this account."] = "Setja þarf upp Facebook tengil fyrir þennan notanda"; +$a->strings["Remove Facebook connector"] = "Fjarlæga Facebook tengil"; +$a->strings["Re-authenticate [This is necessary whenever your Facebook password is changed.]"] = "Þörf er á endurauðkenningu [Þetta þarf að gera í hvert skipti sem Facebook aðgangsorði er breytt.]"; +$a->strings["Post to Facebook by default"] = "Senda sjálfgefið færslur á Facebook "; +$a->strings["Facebook friend linking has been disabled on this site. The following settings will have no effect."] = ""; +$a->strings["Facebook friend linking has been disabled on this site. If you disable it, you will be unable to re-enable it."] = ""; +$a->strings["Link all your Facebook friends and conversations on this website"] = "Tengjast öllum vinum og samtölum á Facebook af þessum vef"; +$a->strings["Facebook conversations consist of your profile wall and your friend stream."] = "Facebook samtöl saman standa af færslum af forsíðuvegg og vinastraum þínum."; +$a->strings["On this website, your Facebook friend stream is only visible to you."] = "Aðeins Facebook vinastraumurinn þinn er sjáanlegur á þessum þessum vef."; +$a->strings["The following settings determine the privacy of your Facebook profile wall on this website."] = "Eftirfarandi stillingar stjórna friðhelgi Facebook forsíðu vegg á þessum vef. "; +$a->strings["On this website your Facebook profile wall conversations will only be visible to you"] = "Samtöl á Facebook forsíðu vegg verða einungis sýnileg þér"; +$a->strings["Do not import your Facebook profile wall conversations"] = "Ekki sækja samtöl af Facebook forsíðu vegg"; +$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."] = "Ef þú ákveður að hlekkja samtöl saman og hefur bæði þessi hök slökkt, þá mun Facebook forsíðan sameinast forsíðunni á þessum vef þannig að friðhelgisstillingar hér munu stjórna hvernig mega sjá hvað."; +$a->strings["Comma separated applications to ignore"] = "Forrit sem á að hunsa (komma á milli)"; +$a->strings["Problems with Facebook Real-Time Updates"] = ""; +$a->strings["Facebook Connector Settings"] = "Facebook tengils stillingar"; +$a->strings["Facebook API Key"] = ""; +$a->strings["Error: it appears that you have specified the App-ID and -Secret in your .htconfig.php file. As long as they are specified there, they cannot be set using this form.

    "] = ""; +$a->strings["Error: the given API Key seems to be incorrect (the application access token could not be retrieved)."] = ""; +$a->strings["The given API Key seems to work correctly."] = ""; +$a->strings["The correctness of the API Key could not be detected. Something strange's going on."] = ""; +$a->strings["App-ID / API-Key"] = ""; +$a->strings["Application secret"] = ""; +$a->strings["Polling Interval in minutes (minimum %1\$s minutes)"] = ""; +$a->strings["Synchronize comments (no comments on Facebook are missed, at the cost of increased system load)"] = ""; +$a->strings["Real-Time Updates"] = ""; +$a->strings["Real-Time Updates are activated."] = ""; +$a->strings["Deactivate Real-Time Updates"] = ""; +$a->strings["Real-Time Updates not activated."] = ""; +$a->strings["Activate Real-Time Updates"] = ""; +$a->strings["The new values have been saved."] = ""; +$a->strings["Post to Facebook"] = "Senda á Facebook"; +$a->strings["Post to Facebook cancelled because of multi-network access permission conflict."] = "Hætt við færslu á Facebook vegna marg nets aðgangs átaka."; +$a->strings["View on Friendica"] = "Skoða á Friendica"; +$a->strings["Facebook post failed. Queued for retry."] = "Færsla sem átti að flæða yfir á Facebook mistókst. Sett í biðröð til endurtekningar."; +$a->strings["Your Facebook connection became invalid. Please Re-authenticate."] = ""; +$a->strings["Facebook connection became invalid"] = ""; +$a->strings["Hi %1\$s,\n\nThe connection between your accounts on %2\$s and Facebook became invalid. This usually happens after you change your Facebook-password. To enable the connection again, you have to %3\$sre-authenticate the Facebook-connector%4\$s."] = ""; +$a->strings["StatusNet AutoFollow settings updated."] = ""; +$a->strings["StatusNet AutoFollow Settings"] = ""; +$a->strings["Automatically follow any StatusNet followers/mentioners"] = ""; +$a->strings["Bg settings updated."] = ""; +$a->strings["Bg Settings"] = ""; +$a->strings["How many contacts to display on profile sidebar"] = ""; +$a->strings["Lifetime of the cache (in hours)"] = ""; +$a->strings["Cache Statistics"] = "Tölfræði skyndiminnis"; +$a->strings["Number of items"] = "Fjöldi færslna"; +$a->strings["Size of the cache"] = "Stærð skyndiminnis"; +$a->strings["Delete the whole cache"] = "Eyða öllu í skyndiminni"; +$a->strings["Facebook Post disabled"] = ""; +$a->strings["Facebook Post"] = ""; +$a->strings["Install Facebook Post connector for this account."] = ""; +$a->strings["Remove Facebook Post connector"] = ""; +$a->strings["Facebook Post Settings"] = ""; +$a->strings["%d person likes this"] = array( + 0 => "%d líkar þetta", + 1 => "%d líkar þetta", +); +$a->strings["%d person doesn't like this"] = array( + 0 => "%d mislíkar þetta", + 1 => "%d mislíkar þetta", +); +$a->strings["Get added to this list!"] = "Láta bæta þér við þennan lista!"; +$a->strings["Generate new key"] = "Búa til nýjan lykil"; +$a->strings["Widgets key"] = "Lykill smáforrits "; +$a->strings["Widgets available"] = "Smáforrit til"; +$a->strings["Connect on Friendica!"] = "Tengist á Friendica!"; +$a->strings["bitchslap"] = ""; +$a->strings["bitchslapped"] = ""; +$a->strings["shag"] = ""; +$a->strings["shagged"] = ""; +$a->strings["do something obscenely biological to"] = ""; +$a->strings["did something obscenely biological to"] = ""; +$a->strings["point out the poke feature to"] = ""; +$a->strings["pointed out the poke feature to"] = ""; +$a->strings["declare undying love for"] = ""; +$a->strings["declared undying love for"] = ""; +$a->strings["patent"] = ""; +$a->strings["patented"] = ""; +$a->strings["stroke beard"] = ""; +$a->strings["stroked their beard at"] = ""; +$a->strings["bemoan the declining standards of modern secondary and tertiary education to"] = ""; +$a->strings["bemoans the declining standards of modern secondary and tertiary education to"] = ""; +$a->strings["hug"] = ""; +$a->strings["hugged"] = ""; +$a->strings["kiss"] = ""; +$a->strings["kissed"] = ""; +$a->strings["raise eyebrows at"] = ""; +$a->strings["raised their eyebrows at"] = ""; +$a->strings["insult"] = ""; +$a->strings["insulted"] = ""; +$a->strings["praise"] = ""; +$a->strings["praised"] = ""; +$a->strings["be dubious of"] = ""; +$a->strings["was dubious of"] = ""; +$a->strings["eat"] = ""; +$a->strings["ate"] = ""; +$a->strings["giggle and fawn at"] = ""; +$a->strings["giggled and fawned at"] = ""; +$a->strings["doubt"] = ""; +$a->strings["doubted"] = ""; +$a->strings["glare"] = ""; +$a->strings["glared at"] = ""; +$a->strings["YourLS Settings"] = ""; +$a->strings["URL: http://"] = ""; +$a->strings["Username:"] = "Notendanafn:"; +$a->strings["Password:"] = "Aðgangsorð:"; +$a->strings["Use SSL "] = "Nota SSL"; +$a->strings["yourls Settings saved."] = ""; +$a->strings["Post to LiveJournal"] = ""; +$a->strings["LiveJournal Post Settings"] = ""; +$a->strings["Enable LiveJournal Post Plugin"] = ""; +$a->strings["LiveJournal username"] = ""; +$a->strings["LiveJournal password"] = ""; +$a->strings["Post to LiveJournal by default"] = ""; +$a->strings["Not Safe For Work (General Purpose Content Filter) settings"] = ""; +$a->strings["This plugin looks in posts for the words/text you specify below, and collapses any content containing those keywords so it is not displayed at inappropriate times, such as sexual innuendo that may be improper in a work setting. It is polite and recommended to tag any content containing nudity with #NSFW. This filter can also match any other word/text you specify, and can thereby be used as a general purpose content filter."] = ""; +$a->strings["Enable Content filter"] = ""; +$a->strings["Comma separated list of keywords to hide"] = ""; +$a->strings["Use /expression/ to provide regular expressions"] = ""; +$a->strings["NSFW Settings saved."] = "NSFW stillingar vistað."; +$a->strings["%s - Click to open/close"] = "%s - Smelltu til að opna/loka"; +$a->strings["Forums"] = ""; +$a->strings["Forums:"] = ""; +$a->strings["Page settings updated."] = ""; +$a->strings["Page Settings"] = ""; +$a->strings["How many forums to display on sidebar without paging"] = ""; +$a->strings["Randomise Page/Forum list"] = ""; +$a->strings["Show pages/forums on profile page"] = ""; +$a->strings["Planets Settings"] = ""; +$a->strings["Enable Planets Plugin"] = ""; +$a->strings["Login"] = "Innskrá"; +$a->strings["OpenID"] = "OpenID"; +$a->strings["Latest users"] = ""; +$a->strings["Most active users"] = "Ofvirkustu notendurnir"; +$a->strings["Latest photos"] = ""; +$a->strings["Latest likes"] = ""; +$a->strings["event"] = "atburður"; +$a->strings["No access"] = ""; +$a->strings["Could not open component for editing"] = ""; +$a->strings["Go back to the calendar"] = ""; +$a->strings["Event data"] = ""; +$a->strings["Calendar"] = ""; +$a->strings["Special color"] = ""; +$a->strings["Subject"] = ""; +$a->strings["Starts"] = ""; +$a->strings["Ends"] = ""; +$a->strings["Description"] = ""; +$a->strings["Recurrence"] = ""; +$a->strings["Frequency"] = ""; +$a->strings["Daily"] = "Daglega"; +$a->strings["Weekly"] = "Vikulega"; +$a->strings["Monthly"] = "Mánaðarlega"; +$a->strings["Yearly"] = ""; +$a->strings["days"] = "dagar"; +$a->strings["weeks"] = "vikur"; +$a->strings["months"] = "mánuðir"; +$a->strings["years"] = "ár"; +$a->strings["Interval"] = ""; +$a->strings["All %select% %time%"] = ""; +$a->strings["Days"] = ""; +$a->strings["Sunday"] = "Sunnudagur"; +$a->strings["Monday"] = "Mánudagur"; +$a->strings["Tuesday"] = "Þriðjudagur"; +$a->strings["Wednesday"] = "Miðvikudagur"; +$a->strings["Thursday"] = "Fimmtudagur"; +$a->strings["Friday"] = "Föstudagur"; +$a->strings["Saturday"] = "Laugardagur"; +$a->strings["First day of week:"] = ""; +$a->strings["Day of month"] = ""; +$a->strings["#num#th of each month"] = ""; +$a->strings["#num#th-last of each month"] = ""; +$a->strings["#num#th #wkday# of each month"] = ""; +$a->strings["#num#th-last #wkday# of each month"] = ""; +$a->strings["Month"] = ""; +$a->strings["#num#th of the given month"] = ""; +$a->strings["#num#th-last of the given month"] = ""; +$a->strings["#num#th #wkday# of the given month"] = ""; +$a->strings["#num#th-last #wkday# of the given month"] = ""; +$a->strings["Repeat until"] = ""; +$a->strings["Infinite"] = ""; +$a->strings["Until the following date"] = ""; +$a->strings["Number of times"] = ""; +$a->strings["Exceptions"] = ""; +$a->strings["none"] = ""; +$a->strings["Notification"] = ""; +$a->strings["Notify by"] = ""; +$a->strings["E-Mail"] = ""; +$a->strings["On Friendica / Display"] = ""; +$a->strings["Time"] = ""; +$a->strings["Hours"] = ""; +$a->strings["Minutes"] = ""; +$a->strings["Seconds"] = ""; +$a->strings["Weeks"] = ""; +$a->strings["before the"] = ""; +$a->strings["start of the event"] = ""; +$a->strings["end of the event"] = ""; +$a->strings["Add a notification"] = ""; +$a->strings["The event #name# will start at #date"] = ""; +$a->strings["#name# is about to begin."] = ""; +$a->strings["Saved"] = ""; +$a->strings["U.S. Time Format (mm/dd/YYYY)"] = ""; +$a->strings["German Time Format (dd.mm.YYYY)"] = ""; +$a->strings["Private Events"] = ""; +$a->strings["Private Addressbooks"] = ""; +$a->strings["Friendica-Native events"] = ""; +$a->strings["Friendica-Contacts"] = ""; +$a->strings["Your Friendica-Contacts"] = ""; +$a->strings["Something went wrong when trying to import the file. Sorry. Maybe some events were imported anyway."] = ""; +$a->strings["Something went wrong when trying to import the file. Sorry."] = ""; +$a->strings["The ICS-File has been imported."] = ""; +$a->strings["No file was uploaded."] = ""; +$a->strings["Import a ICS-file"] = ""; +$a->strings["ICS-File"] = ""; +$a->strings["Overwrite all #num# existing events"] = ""; +$a->strings["New event"] = ""; +$a->strings["Today"] = ""; +$a->strings["Day"] = ""; +$a->strings["Week"] = ""; +$a->strings["Reload"] = ""; +$a->strings["Date"] = ""; +$a->strings["Error"] = ""; +$a->strings["The calendar has been updated."] = ""; +$a->strings["The new calendar has been created."] = ""; +$a->strings["The calendar has been deleted."] = ""; +$a->strings["Calendar Settings"] = ""; +$a->strings["Date format"] = ""; +$a->strings["Time zone"] = ""; +$a->strings["Calendars"] = ""; +$a->strings["Create a new calendar"] = ""; +$a->strings["Limitations"] = ""; +$a->strings["Warning"] = ""; +$a->strings["Synchronization (iPhone, Thunderbird Lightning, Android, ...)"] = ""; +$a->strings["Synchronizing this calendar with the iPhone"] = ""; +$a->strings["Synchronizing your Friendica-Contacts with the iPhone"] = ""; +$a->strings["The current version of this plugin has not been set up correctly. Please contact the system administrator of your installation of friendica to fix this."] = ""; +$a->strings["Extended calendar with CalDAV-support"] = ""; +$a->strings["noreply"] = "ekki svara"; +$a->strings["Notification: "] = ""; +$a->strings["The database tables have been installed."] = ""; +$a->strings["An error occurred during the installation."] = ""; +$a->strings["The database tables have been updated."] = ""; +$a->strings["An error occurred during the update."] = ""; +$a->strings["No system-wide settings yet."] = ""; +$a->strings["Database status"] = ""; +$a->strings["Installed"] = ""; +$a->strings["Upgrade needed"] = ""; +$a->strings["Please back up all calendar data (the tables beginning with dav_*) before proceeding. While all calendar events should be converted to the new database structure, it's always safe to have a backup. Below, you can have a look at the database-queries that will be made when pressing the 'update'-button."] = ""; +$a->strings["Upgrade"] = ""; +$a->strings["Not installed"] = ""; +$a->strings["Install"] = ""; +$a->strings["Unknown"] = ""; +$a->strings["Something really went wrong. I cannot recover from this state automatically, sorry. Please go to the database backend, back up the data, and delete all tables beginning with 'dav_' manually. Afterwards, this installation routine should be able to reinitialize the tables automatically."] = ""; +$a->strings["Troubleshooting"] = ""; +$a->strings["Manual creation of the database tables:"] = ""; +$a->strings["Show SQL-statements"] = ""; +$a->strings["Private Calendar"] = ""; +$a->strings["Friendica Events: Mine"] = ""; +$a->strings["Friendica Events: Contacts"] = ""; +$a->strings["Private Addresses"] = ""; +$a->strings["Friendica Contacts"] = ""; +$a->strings["Allow to use your friendica id (%s) to connecto to external unhosted-enabled storage (like ownCloud). See RemoteStorage WebFinger"] = ""; +$a->strings["Template URL (with {category})"] = ""; +$a->strings["OAuth end-point"] = ""; +$a->strings["Api"] = "Api"; +$a->strings["Member since:"] = ""; +$a->strings["Three Dimensional Tic-Tac-Toe"] = "Þrívíddar milla"; +$a->strings["3D Tic-Tac-Toe"] = "3D milla"; +$a->strings["New game"] = "Nýr leikur"; +$a->strings["New game with handicap"] = "Nýr leikur með forgjöf"; +$a->strings["Three dimensional tic-tac-toe is just like the traditional game except that it is played on multiple levels simultaneously. "] = "Þrívíddar milla er alveg einsog upphaflegi leikurinn nema spilað er á mörgum borðum í einu."; +$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."] = "Í þessu tilviki þá eru þrjú borð. Þú vinnur með því að ná þremur í röð á hvaða borði sem er, upp, niður eða á ská yfir mörg borð."; +$a->strings["The handicap game disables the center position on the middle level because the player claiming this square often has an unfair advantage."] = "Leikurinn með forgjöf slekkur á miðjunni á mið borðinu því sá sem nær þeim stað hefur yfir leitt yfirburði."; +$a->strings["You go first..."] = "Þú byrjar..."; +$a->strings["I'm going first this time..."] = "Ég byrja í þetta skiptið..."; +$a->strings["You won!"] = "Þú vannst!"; +$a->strings["\"Cat\" game!"] = "Jafntefli"; +$a->strings["I won!"] = "Ég vann!"; +$a->strings["Randplace Settings"] = "Stilla Randplace"; +$a->strings["Enable Randplace Plugin"] = "Kveikja á Randplace einingu"; +$a->strings["Post to Dreamwidth"] = ""; +$a->strings["Dreamwidth Post Settings"] = ""; +$a->strings["Enable dreamwidth Post Plugin"] = ""; +$a->strings["dreamwidth username"] = ""; +$a->strings["dreamwidth password"] = ""; +$a->strings["Post to dreamwidth by default"] = ""; +$a->strings["Post to Drupal"] = ""; +$a->strings["Drupal Post Settings"] = ""; +$a->strings["Enable Drupal Post Plugin"] = ""; +$a->strings["Drupal username"] = "Drupal notendanafn"; +$a->strings["Drupal password"] = "Drupal aðgangsorð"; +$a->strings["Post Type - article,page,or blog"] = ""; +$a->strings["Drupal site URL"] = ""; +$a->strings["Drupal site uses clean URLS"] = ""; +$a->strings["Post to Drupal by default"] = ""; +$a->strings["Post from Friendica"] = "Færslur frá Friendica"; +$a->strings["Startpage Settings"] = ""; +$a->strings["Home page to load after login - leave blank for profile wall"] = ""; +$a->strings["Examples: "network" or "notifications/system""] = ""; +$a->strings["Geonames settings updated."] = ""; +$a->strings["Geonames Settings"] = ""; +$a->strings["Enable Geonames Plugin"] = ""; +$a->strings["Your account on %s will expire in a few days."] = ""; +$a->strings["Your Friendica account is about to expire."] = ""; +$a->strings["Hi %1\$s,\n\nYour account on %2\$s will expire in less than five days. You may keep your account by logging in at least once every 30 days"] = ""; +$a->strings["Upload a file"] = "Hlaða upp skrá"; +$a->strings["Drop files here to upload"] = "Slepptu skrám hér til að hala upp"; +$a->strings["Failed"] = "Mistókst"; +$a->strings["No files were uploaded."] = "Engum skráð hlaðið upp."; +$a->strings["Uploaded file is empty"] = "Skrá sem var hlaðið upp er tóm"; +$a->strings["File has an invalid extension, it should be one of "] = "Skrá hefur ógilda skránafnsendingu, ætti að vera eitt af"; +$a->strings["Upload was cancelled, or server error encountered"] = "Hætt var við upphal eða kerfisvilla kom upp"; +$a->strings["OEmbed settings updated"] = "OEmbed stillingar uppfærðar"; +$a->strings["Use OEmbed for YouTube videos"] = "Nota OEmbed fyrir YouTube myndbönd"; +$a->strings["URL to embed:"] = "Slóð á embed:"; +$a->strings["show/hide"] = ""; +$a->strings["No forum subscriptions"] = ""; +$a->strings["Forumlist settings updated."] = ""; +$a->strings["Forumlist Settings"] = ""; +$a->strings["Randomise Forumlist/Forum list"] = ""; +$a->strings["Show forumlists/forums on profile forumlist"] = ""; +$a->strings["Impressum"] = "Impressum"; +$a->strings["Site Owner"] = "Eigandi vefs"; +$a->strings["Email Address"] = "Póstfang"; +$a->strings["Postal Address"] = "Heimilisfang"; +$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."] = "Það þarf að stilla Impressum viðbótina!
    Vinsamlegast bætið allavega við eiganda breytunni "; +$a->strings["The page operators name."] = ""; +$a->strings["Site Owners Profile"] = "Forsíða eiganda vefs"; +$a->strings["Profile address of the operator."] = ""; +$a->strings["How to contact the operator via snail mail. You can use BBCode here."] = ""; +$a->strings["Notes"] = "Glósur"; +$a->strings["Additional notes that are displayed beneath the contact information. You can use BBCode here."] = ""; +$a->strings["How to contact the operator via email. (will be displayed obfuscated)"] = ""; +$a->strings["Footer note"] = ""; +$a->strings["Text for the footer. You can use BBCode here."] = ""; +$a->strings["Report Bug"] = "Tilkynna bilun"; +$a->strings["No Timeline settings updated."] = ""; +$a->strings["No Timeline Settings"] = ""; +$a->strings["Disable Archive selector on profile wall"] = ""; +$a->strings["\"Blockem\" Settings"] = "\"Blockem\" stillingar"; +$a->strings["Comma separated profile URLS to block"] = "Banna lista af forsíðum (komma á milli)"; +$a->strings["BLOCKEM Settings saved."] = "BLOCKEM stillingar vistaðar."; +$a->strings["Blocked %s - Click to open/close"] = "%s sett í straff - Smella til að taka úr/setja á"; +$a->strings["Unblock Author"] = "Leyfa notanda"; +$a->strings["Block Author"] = "Banna notanda"; +$a->strings["blockem settings updated"] = ""; +$a->strings[":-)"] = ":-)"; +$a->strings[":-("] = ":-("; +$a->strings["lol"] = "lol"; +$a->strings["Quick Comment Settings"] = ""; +$a->strings["Quick comments are found near comment boxes, sometimes hidden. Click them to provide simple replies."] = ""; +$a->strings["Enter quick comments, one per line"] = ""; +$a->strings["Quick Comment settings saved."] = ""; +$a->strings["Tile Server URL"] = ""; +$a->strings["A list of public tile servers"] = ""; +$a->strings["Default zoom"] = "Sjálfgefin þysjun"; +$a->strings["The default zoom level. (1:world, 18:highest)"] = "Sjálfgefna þysjunar sig. (1:heimur, 18:mest)"; +$a->strings["Editplain settings updated."] = ""; +$a->strings["Group Text"] = ""; +$a->strings["Use a text only (non-image) group selector in the \"group edit\" menu"] = ""; +$a->strings["Could NOT install Libravatar successfully.
    It requires PHP >= 5.3"] = ""; +$a->strings["generic profile image"] = ""; +$a->strings["random geometric pattern"] = ""; +$a->strings["monster face"] = ""; +$a->strings["computer generated face"] = ""; +$a->strings["retro arcade style face"] = ""; +$a->strings["Your PHP version %s is lower than the required PHP >= 5.3."] = ""; +$a->strings["This addon is not functional on your server."] = ""; +$a->strings["Information"] = ""; +$a->strings["Gravatar addon is installed. Please disable the Gravatar addon.
    The Libravatar addon will fall back to Gravatar if nothing was found at Libravatar."] = ""; +$a->strings["Default avatar image"] = ""; +$a->strings["Select default avatar image if none was found. See README"] = ""; +$a->strings["Libravatar settings updated."] = ""; +$a->strings["Post to libertree"] = ""; +$a->strings["libertree Post Settings"] = ""; +$a->strings["Enable Libertree Post Plugin"] = ""; +$a->strings["Libertree API token"] = ""; +$a->strings["Libertree site URL"] = ""; +$a->strings["Post to Libertree by default"] = ""; +$a->strings["Altpager settings updated."] = ""; +$a->strings["Alternate Pagination Setting"] = ""; +$a->strings["Use links to \"newer\" and \"older\" pages in place of page numbers?"] = ""; +$a->strings["The MathJax addon renders mathematical formulae written using the LaTeX syntax surrounded by the usual $$ or an eqnarray block in the postings of your wall,network tab and private mail."] = ""; +$a->strings["Use the MathJax renderer"] = ""; +$a->strings["MathJax Base URL"] = ""; +$a->strings["The URL for the javascript file that should be included to use MathJax. Can be either the MathJax CDN or another installation of MathJax."] = ""; +$a->strings["Editplain Settings"] = ""; +$a->strings["Disable richtext status editor"] = ""; +$a->strings["Libravatar addon is installed, too. Please disable Libravatar addon or this Gravatar addon.
    The Libravatar addon will fall back to Gravatar if nothing was found at Libravatar."] = ""; +$a->strings["Select default avatar image if none was found at Gravatar. See README"] = ""; +$a->strings["Rating of images"] = ""; +$a->strings["Select the appropriate avatar rating for your site. See README"] = ""; +$a->strings["Gravatar settings updated."] = ""; +$a->strings["Your Friendica test account is about to expire."] = ""; +$a->strings["Hi %1\$s,\n\nYour test account on %2\$s will expire in less than five days. We hope you enjoyed this test drive and use this opportunity to find a permanent Friendica website for your integrated social communications. A list of public sites is available at http://dir.friendica.com/siteinfo - and for more information on setting up your own Friendica server please see the Friendica project website at http://friendica.com."] = ""; +$a->strings["\"pageheader\" Settings"] = "Stillingar \"pageheader\""; +$a->strings["pageheader Settings saved."] = "Stillingar pageheader vistaðar."; +$a->strings["Post to Insanejournal"] = ""; +$a->strings["InsaneJournal Post Settings"] = ""; +$a->strings["Enable InsaneJournal Post Plugin"] = ""; +$a->strings["InsaneJournal username"] = ""; +$a->strings["InsaneJournal password"] = ""; +$a->strings["Post to InsaneJournal by default"] = ""; +$a->strings["Jappix Mini addon settings"] = ""; +$a->strings["Activate addon"] = ""; +$a->strings["Do not insert the Jappixmini Chat-Widget into the webinterface"] = ""; +$a->strings["Jabber username"] = ""; +$a->strings["Jabber server"] = ""; +$a->strings["Jabber BOSH host"] = ""; +$a->strings["Jabber password"] = ""; +$a->strings["Encrypt Jabber password with Friendica password (recommended)"] = ""; +$a->strings["Friendica password"] = ""; +$a->strings["Approve subscription requests from Friendica contacts automatically"] = ""; +$a->strings["Subscribe to Friendica contacts automatically"] = ""; +$a->strings["Purge internal list of jabber addresses of contacts"] = ""; +$a->strings["Add contact"] = ""; +$a->strings["View Source"] = ""; +$a->strings["Post to StatusNet"] = "Senda færslu á StatusNet"; +$a->strings["Please contact your site administrator.
    The provided API URL is not valid."] = "Hafðu samband við kerfisstjóra.
    Uppgefin API slóð er ógild."; +$a->strings["We could not contact the StatusNet API with the Path you entered."] = "Ekki náðist í StatusNet API með slóð sem þú gafst upp."; +$a->strings["StatusNet settings updated."] = "StatusNet stillingar uppfærðar."; +$a->strings["StatusNet Posting Settings"] = "StatusNet færslu stillingar"; +$a->strings["Globally Available StatusNet OAuthKeys"] = "StatusNet OAuthKey í boði á heimsvísu"; +$a->strings["There are preconfigured OAuth key pairs for some StatusNet servers available. If you are useing one of them, please use these credentials. If not feel free to connect to any other StatusNet instance (see below)."] = "Það eru forstillt OAuth lykla pör í sumum StatusNet þjónum. Ef þú ert að nota slíkt par, notaðu þá þau auðkenni. Ef ekki þá er þér frjálst að tengjast hvaða öðrum StatusNet þjón (sjá fyrir neðan)."; +$a->strings["Provide your own OAuth Credentials"] = "Gefðu upp eigin OAuth auðkenni"; +$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."] = ""; +$a->strings["OAuth Consumer Key"] = "OAuth notenda lykill"; +$a->strings["OAuth Consumer Secret"] = "OAuth notenda leyndarmál"; +$a->strings["Base API Path (remember the trailing /)"] = "Grunn API slóð (muna eftir / í endann)"; +$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."] = "Til að tengjast StatusNet notandanum ýttu á takkann fyrir neðan, þá fæst öryggis lykill frá StatusNet sem þarf að afrita í svæðið fyrir neðan og senda inn. Aðeins opinberar færslur munu flæða yfir á StatusNet."; +$a->strings["Log in with StatusNet"] = "Innskrá með StatusNet"; +$a->strings["Copy the security code from StatusNet here"] = "Afrita öryggis lykil frá StatusNet hingað"; +$a->strings["Cancel Connection Process"] = "Hætta við tengi ferli"; +$a->strings["Current StatusNet API is"] = "Núverandi StatusNet API er"; +$a->strings["Cancel StatusNet Connection"] = "Hætta við StatusNet tengingu"; +$a->strings["Currently connected to: "] = "Núna tengdur við:"; +$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."] = "Ef virkt þá geta allar opinberu stöðu meldingarnar þínar verið birtar á tengdri StatusNet síðu. Þú getur valið að gera þetta sjálfvirkt (hér) eða fyrir hvern póst í senn þegar hann er skrifaður."; +$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."] = ""; +$a->strings["Allow posting to StatusNet"] = "Leyfa sendingu færslna til StatusNet"; +$a->strings["Send public postings to StatusNet by default"] = "Sjálfgefið senda opinberar færslur á StatusNet"; +$a->strings["Send linked #-tags and @-names to StatusNet"] = ""; +$a->strings["Clear OAuth configuration"] = "Hreinsa OAuth stillingar"; +$a->strings["API URL"] = "API slóð"; +$a->strings["Infinite Improbability Drive"] = ""; +$a->strings["Post to Tumblr"] = "Senda fæslu til Tumblr"; +$a->strings["Tumblr Post Settings"] = "Tumblr færslu stillingar"; +$a->strings["Enable Tumblr Post Plugin"] = "Leyfa Tumblr færslu viðbót"; +$a->strings["Tumblr login"] = "Tumblr innskráning"; +$a->strings["Tumblr password"] = "Tumblr aðgangsorð"; +$a->strings["Post to Tumblr by default"] = "Senda færslu á Tumblr sjálfvirkt"; +$a->strings["Numfriends settings updated."] = ""; +$a->strings["Numfriends Settings"] = ""; +$a->strings["Gnot settings updated."] = ""; +$a->strings["Gnot Settings"] = ""; +$a->strings["Allows threading of email comment notifications on Gmail and anonymising the subject line."] = ""; +$a->strings["Enable this plugin/addon?"] = ""; +$a->strings["[Friendica:Notify] Comment to conversation #%d"] = ""; +$a->strings["Post to Wordpress"] = "Senda færslu á Wordpress"; +$a->strings["WordPress Post Settings"] = "Wordpress Post stillingar"; +$a->strings["Enable WordPress Post Plugin"] = "Kveikja á WordPress Post viðbót"; +$a->strings["WordPress username"] = "Wordpress aðgangsorð"; +$a->strings["WordPress password"] = "Wordpress aðgagnsorð"; +$a->strings["WordPress API URL"] = "Slóð á Wordpress API"; +$a->strings["Post to WordPress by default"] = "Leyfa færslum að flæða yfir á Wordpress sjálfgefið"; +$a->strings["Provide a backlink to the Friendica post"] = ""; +$a->strings["Read the original post and comment stream on Friendica"] = ""; +$a->strings["\"Show more\" Settings"] = "\"Show more\" stillingar"; +$a->strings["Enable Show More"] = "Kveikja á Show More"; +$a->strings["Cutting posts after how much characters"] = ""; +$a->strings["Show More Settings saved."] = "Sýna "; +$a->strings["This website is tracked using the Piwik analytics tool."] = "Þessi vefur er í Piwik vefmælingu."; +$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)."] = "Ef þú villt ekki vera í vefmælingu smelltu hér til að sækja köku sem afskráir þig úr mælingu."; +$a->strings["Piwik Base URL"] = "Slóð á Piwik grunn"; +$a->strings["Absolute path to your Piwik installation. (without protocol (http/s), with trailing slash)"] = ""; +$a->strings["Site ID"] = "Auðkenni vefs"; +$a->strings["Show opt-out cookie link?"] = "Sýna ekki taka við kökum "; +$a->strings["Asynchronous tracking"] = ""; +$a->strings["Post to Twitter"] = "Senda færslu á Twitter"; +$a->strings["Twitter settings updated."] = "Stillingar Twitter uppfærðar."; +$a->strings["Twitter Posting Settings"] = "Twitter færslu stillingar"; +$a->strings["No consumer key pair for Twitter found. Please contact your site administrator."] = "Ekkert notenda lykils par fyrir Twitter fundið. Hafðu samband við kerfisstjórann."; +$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."] = ""; +$a->strings["Log in with Twitter"] = "Innskrá með Twitter"; +$a->strings["Copy the PIN from Twitter here"] = "Afrita PIN frá Twitter hingað"; +$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."] = "Ef virkt þá geta allar opinberu stöðu meldingarnar þínar verið birtar á tengdri StatusNet síðu. Þú getur valið að gera þetta sjálfvirkt (hér) eða fyrir hvern póst í senn þegar hann er skrifaður."; +$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."] = ""; +$a->strings["Allow posting to Twitter"] = "Leyfa færslum að flæða á Twitter"; +$a->strings["Send public postings to Twitter by default"] = "Senda sjálfgefið opinberar færslur á Twitter"; +$a->strings["Send linked #-tags and @-names to Twitter"] = ""; +$a->strings["Consumer key"] = "Lykill neytanda"; +$a->strings["Consumer secret"] = "Leyndarmál neytanda"; +$a->strings["IRC Settings"] = "IRC stillingar"; +$a->strings["Channel(s) to auto connect (comma separated)"] = "Tengjast rásum sjálfkrafa (komma á milli)"; +$a->strings["Popular Channels (comma separated)"] = "Vinsælar rásir (komma á milli)"; +$a->strings["IRC settings saved."] = "IRC stillingum vistað"; +$a->strings["IRC Chatroom"] = ""; +$a->strings["Popular Channels"] = ""; +$a->strings["Fromapp settings updated."] = ""; +$a->strings["FromApp Settings"] = ""; +$a->strings["The application name you would like to show your posts originating from."] = ""; +$a->strings["Use this application name even if another application was used."] = ""; +$a->strings["Post to blogger"] = ""; +$a->strings["Blogger Post Settings"] = ""; +$a->strings["Enable Blogger Post Plugin"] = ""; +$a->strings["Blogger username"] = ""; +$a->strings["Blogger password"] = ""; +$a->strings["Blogger API URL"] = ""; +$a->strings["Post to Blogger by default"] = ""; +$a->strings["Post to Posterous"] = "Senda færslu á Posterous"; +$a->strings["Posterous Post Settings"] = "Stilla Posterous Post"; +$a->strings["Enable Posterous Post Plugin"] = "Kveðja á Posterous Post viðbót "; +$a->strings["Posterous login"] = "Posterous notendanafn"; +$a->strings["Posterous password"] = "Posterous aðgangsorð"; +$a->strings["Posterous site ID"] = ""; +$a->strings["Posterous API token"] = ""; +$a->strings["Post to Posterous by default"] = "Sjálfgefið láta færslur flæða á Posterous"; +$a->strings["Theme settings"] = ""; +$a->strings["Set resize level for images in posts and comments (width and height)"] = ""; +$a->strings["Set font-size for posts and comments"] = ""; +$a->strings["Set theme width"] = ""; +$a->strings["Color scheme"] = ""; +$a->strings["Your posts and conversations"] = "Samtölin þín"; +$a->strings["Your profile page"] = "Forsíðan þín"; +$a->strings["Your contacts"] = ""; +$a->strings["Your photos"] = "Þínar myndir"; +$a->strings["Your events"] = "Þínir atburðir"; +$a->strings["Personal notes"] = "Þínar einka glósur"; +$a->strings["Your personal photos"] = "Þínar einka myndir"; +$a->strings["Community Pages"] = ""; +$a->strings["Community Profiles"] = ""; +$a->strings["Last users"] = "Nýjustu notendurnir"; +$a->strings["Last likes"] = "Nýjustu \"líkar þetta\""; +$a->strings["Last photos"] = "Nýjustu myndirnar"; +$a->strings["Find Friends"] = ""; +$a->strings["Local Directory"] = ""; +$a->strings["Similar Interests"] = "Svipuð áhugamál"; +$a->strings["Invite Friends"] = "Bjóða vinum aðgang"; +$a->strings["Earth Layers"] = ""; +$a->strings["Set zoomfactor for Earth Layers"] = ""; +$a->strings["Set longitude (X) for Earth Layers"] = ""; +$a->strings["Set latitude (Y) for Earth Layers"] = ""; +$a->strings["Help or @NewHere ?"] = ""; +$a->strings["Connect Services"] = ""; +$a->strings["Last Tweets"] = ""; +$a->strings["Set twitter search term"] = ""; +$a->strings["don't show"] = "fela"; +$a->strings["show"] = "sýna"; +$a->strings["Show/hide boxes at right-hand column:"] = ""; +$a->strings["Set line-height for posts and comments"] = ""; +$a->strings["Set resolution for middle column"] = ""; +$a->strings["Set color scheme"] = "Setja litar þema"; +$a->strings["Set zoomfactor for Earth Layer"] = ""; +$a->strings["Last tweets"] = ""; +$a->strings["Alignment"] = ""; +$a->strings["Left"] = ""; +$a->strings["Center"] = ""; +$a->strings["Set colour scheme"] = "Setja litar þema"; +$a->strings["j F, Y"] = ""; +$a->strings["j F"] = ""; +$a->strings["Birthday:"] = "Afmælisdagur:"; +$a->strings["Age:"] = "Aldur"; +$a->strings["for %1\$d %2\$s"] = ""; +$a->strings["Tags:"] = "Merki:"; +$a->strings["Religion:"] = "Trúarskoðanir:"; +$a->strings["Hobbies/Interests:"] = "Áhugamál/Áhugasvið:"; +$a->strings["Contact information and Social Networks:"] = "Tengiliða upplýsingar og samfélagsnet:"; +$a->strings["Musical interests:"] = "Tónlistar áhugi:"; +$a->strings["Books, literature:"] = "Bækur, bókmenntir:"; +$a->strings["Television:"] = "Sjónvarp:"; +$a->strings["Film/dance/culture/entertainment:"] = "Kvikmyndir/dans/menning/afþreying:"; +$a->strings["Love/Romance:"] = "Ást/rómantík"; +$a->strings["Work/employment:"] = "Atvinna:"; +$a->strings["School/education:"] = "Skóli/menntun:"; +$a->strings["Unknown | Not categorised"] = "Óþekkt | Ekki flokkað"; +$a->strings["Block immediately"] = "Hunsa samstundis"; +$a->strings["Shady, spammer, self-marketer"] = "Grunsamlegur, rusl sendari, auglýsandi"; +$a->strings["Known to me, but no opinion"] = "Ég þekki en hef ekki skoðun á"; +$a->strings["OK, probably harmless"] = "Í lagi, væntanlega saklaus"; +$a->strings["Reputable, has my trust"] = "ég treysti"; +$a->strings["Frequently"] = "Oft"; +$a->strings["Hourly"] = "Klukkustundar fresti"; +$a->strings["Twice daily"] = "Tvisvar á dag"; +$a->strings["OStatus"] = "OStatus"; +$a->strings["RSS/Atom"] = "RSS/Atom"; +$a->strings["Zot!"] = "Zot!"; +$a->strings["LinkedIn"] = "LinkedIn"; +$a->strings["XMPP/IM"] = "XMPP/IM"; +$a->strings["MySpace"] = "MySpace"; +$a->strings["Male"] = "Karlmaður"; +$a->strings["Female"] = "Kvenmaður"; +$a->strings["Currently Male"] = "Karlmaður í augnablikinu"; +$a->strings["Currently Female"] = "Kvenmaður í augnablikinu"; +$a->strings["Mostly Male"] = "Aðallega karlmaður"; +$a->strings["Mostly Female"] = "Aðallega kvenmaður"; +$a->strings["Transgender"] = "Kynskiptingur"; +$a->strings["Intersex"] = "Hvorukin"; +$a->strings["Transsexual"] = "Kynskiptingur"; +$a->strings["Hermaphrodite"] = "Tvíkynhneigð(ur)"; +$a->strings["Neuter"] = "Hvorukyn"; +$a->strings["Non-specific"] = "Ekki ákveðið"; +$a->strings["Other"] = "Annað"; +$a->strings["Undecided"] = "Óviss"; +$a->strings["Males"] = "Karlmenn"; +$a->strings["Females"] = "Kvenmenn"; +$a->strings["Gay"] = "Samkynhneigður"; +$a->strings["Lesbian"] = "Lesbía"; +$a->strings["No Preference"] = "Til í allt"; +$a->strings["Bisexual"] = "Tvíkynhneigð/ur"; +$a->strings["Autosexual"] = "Sjálfkynhneigð/ur"; +$a->strings["Abstinent"] = "Skýrlíf/ur"; +$a->strings["Virgin"] = "Hrein mey/Hreinn sveinn"; +$a->strings["Deviant"] = "Óþekkur"; +$a->strings["Fetish"] = "Blæti"; +$a->strings["Oodles"] = "Mikið af því"; +$a->strings["Nonsexual"] = "Engin kynhneigð"; +$a->strings["Single"] = "Einhleyp/ur"; +$a->strings["Lonely"] = "Einmanna"; +$a->strings["Available"] = "Á lausu"; +$a->strings["Unavailable"] = "Frátekin/n"; +$a->strings["Has crush"] = "Er skotin(n)"; +$a->strings["Infatuated"] = ""; +$a->strings["Dating"] = "Deita"; +$a->strings["Unfaithful"] = "Ótrú/r"; +$a->strings["Sex Addict"] = "Kynlífsfíkill"; +$a->strings["Friends"] = "Vinir"; +$a->strings["Friends/Benefits"] = "Vinir með meiru"; +$a->strings["Casual"] = "Lauslát/ur"; +$a->strings["Engaged"] = "Trúlofuð/Trúlofaður"; +$a->strings["Married"] = "Gift/ur"; +$a->strings["Imaginarily married"] = ""; +$a->strings["Partners"] = "Félagar"; +$a->strings["Cohabiting"] = "Sambýlingur"; +$a->strings["Common law"] = ""; +$a->strings["Happy"] = "Hamingjusöm/Hamingjusamur"; +$a->strings["Not looking"] = "Ekki að leita"; +$a->strings["Swinger"] = "Svingari"; +$a->strings["Betrayed"] = "Svikin/n"; +$a->strings["Separated"] = "Skilin/n að borði og sæng"; +$a->strings["Unstable"] = "Óstabíll"; +$a->strings["Divorced"] = "Fráskilin/n"; +$a->strings["Imaginarily divorced"] = ""; +$a->strings["Widowed"] = "Ekkja/Ekkill"; +$a->strings["Uncertain"] = "Óviss"; +$a->strings["It's complicated"] = "Þetta er flókið"; +$a->strings["Don't care"] = "Gæti ekki verið meira sama"; +$a->strings["Ask me"] = "Spurðu mig"; +$a->strings["Starts:"] = "Byrjar:"; +$a->strings["Finishes:"] = "Endar:"; +$a->strings["(no subject)"] = "(ekkert efni)"; +$a->strings[" on Last.fm"] = ""; +$a->strings["prev"] = "á undan"; +$a->strings["first"] = "fremsta"; +$a->strings["last"] = "síðasta"; +$a->strings["next"] = "næsta"; +$a->strings["newer"] = ""; +$a->strings["older"] = ""; +$a->strings["No contacts"] = "Engir tengiliðir"; +$a->strings["%d Contact"] = array( + 0 => "%d Tengiliður", + 1 => "%d Tengiliðir", +); +$a->strings["poke"] = ""; +$a->strings["poked"] = ""; +$a->strings["ping"] = ""; +$a->strings["pinged"] = ""; +$a->strings["prod"] = ""; +$a->strings["prodded"] = ""; +$a->strings["slap"] = ""; +$a->strings["slapped"] = ""; +$a->strings["finger"] = ""; +$a->strings["fingered"] = ""; +$a->strings["rebuff"] = ""; +$a->strings["rebuffed"] = ""; +$a->strings["happy"] = ""; +$a->strings["sad"] = ""; +$a->strings["mellow"] = ""; +$a->strings["tired"] = ""; +$a->strings["perky"] = ""; +$a->strings["angry"] = ""; +$a->strings["stupified"] = ""; +$a->strings["puzzled"] = ""; +$a->strings["interested"] = ""; +$a->strings["bitter"] = ""; +$a->strings["cheerful"] = ""; +$a->strings["alive"] = ""; +$a->strings["annoyed"] = ""; +$a->strings["anxious"] = ""; +$a->strings["cranky"] = ""; +$a->strings["disturbed"] = ""; +$a->strings["frustrated"] = ""; +$a->strings["motivated"] = ""; +$a->strings["relaxed"] = ""; +$a->strings["surprised"] = ""; +$a->strings["January"] = "Janúar"; +$a->strings["February"] = "Febrúar"; +$a->strings["March"] = "Mars"; +$a->strings["April"] = "Apríl"; +$a->strings["May"] = "Maí"; +$a->strings["June"] = "Júní"; +$a->strings["July"] = "Júlí"; +$a->strings["August"] = "Ágúst"; +$a->strings["September"] = "September"; +$a->strings["October"] = "Október"; +$a->strings["November"] = "Nóvember"; +$a->strings["December"] = "Desember"; +$a->strings["bytes"] = "bæti"; +$a->strings["Click to open/close"] = ""; +$a->strings["default"] = "sjálfgefið"; +$a->strings["Select an alternate language"] = "Velja annað tungumál"; +$a->strings["activity"] = ""; +$a->strings["post"] = ""; +$a->strings["Item filed"] = ""; +$a->strings["Sharing notification from Diaspora network"] = "Tilkynning um að einhver deildi einhverju Diaspora netinu"; +$a->strings["Attachments:"] = "Viðhengi:"; +$a->strings["view full size"] = "Skoða í fullri stærð"; +$a->strings["Embedded content"] = "Innbyggt efni"; +$a->strings["Embedding disabled"] = "Innfelling ekki leyfð"; +$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."] = "Hóp sem var eytt hefur verið endurlífgaður. Færslur sem þegar voru til geta mögulega farið á hópinn og framtíðar meðlimir. Ef þetta er ekki það sem þú vilt, þá þarftu að búa til nýjan hóp með öðru nafni."; +$a->strings["Default privacy group for new contacts"] = ""; +$a->strings["Everybody"] = "Allir"; +$a->strings["edit"] = "breyta"; +$a->strings["Edit group"] = "Breyta hóp"; +$a->strings["Create a new group"] = "Stofna nýjan hóp"; +$a->strings["Contacts not in any group"] = "Tengiliðir ekki í neinum hópum"; +$a->strings["Logout"] = "Útskrá"; +$a->strings["End this session"] = "Loka þessu innliti"; +$a->strings["Status"] = "Staða"; +$a->strings["Sign in"] = "Innskrá"; +$a->strings["Home Page"] = "Heimasíða"; +$a->strings["Create an account"] = "Stofna notanda"; +$a->strings["Help and documentation"] = "Hjálp og leiðbeiningar"; +$a->strings["Apps"] = "Forr"; +$a->strings["Addon applications, utilities, games"] = "Viðbætur forrit, leikir"; +$a->strings["Search site content"] = "Leita í efni á vef"; +$a->strings["Conversations on this site"] = "Samtöl á þessum vef"; +$a->strings["Directory"] = "Tengiliðalisti"; +$a->strings["People directory"] = "Tengiliðalisti"; +$a->strings["Conversations from your friends"] = "Samtöl frá vinum"; +$a->strings["Friend Requests"] = "Vina beiðnir"; +$a->strings["See all notifications"] = ""; +$a->strings["Mark all system notifications seen"] = "Merkja allar tilkynningar sem séðar"; +$a->strings["Private mail"] = "Einka skilaboð"; +$a->strings["Inbox"] = "Innhólf"; +$a->strings["Outbox"] = "Úthólf"; +$a->strings["Manage"] = "Umsýsla"; +$a->strings["Manage other pages"] = "Sýsla með aðrar síður"; +$a->strings["Profiles"] = "Forsíður"; +$a->strings["Manage/edit profiles"] = "Sýsla með forsíður"; +$a->strings["Manage/edit friends and contacts"] = "Sýsla með vini og tengiliði"; +$a->strings["Site setup and configuration"] = "Stillingar vefs"; +$a->strings["Nothing new here"] = "Ekkert nýtt héðan"; +$a->strings["Add New Contact"] = "Bæta við tengilið"; +$a->strings["Enter address or web location"] = "Settu inn slóð"; +$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Dæmi: gudmundur@simnet.is, http://simnet.is/gudmundur"; +$a->strings["%d invitation available"] = array( + 0 => "%d boðskort í boði", + 1 => "%d boðskort í boði", +); +$a->strings["Find People"] = "Finna fólk"; +$a->strings["Enter name or interest"] = "Settu inn nafn eða áhugamál"; +$a->strings["Connect/Follow"] = "Tengjast/fylgja"; +$a->strings["Examples: Robert Morgenstein, Fishing"] = "Dæmi: Jón Jónsson, Veiði"; +$a->strings["Random Profile"] = ""; +$a->strings["Networks"] = "Net"; +$a->strings["All Networks"] = "Öll net"; +$a->strings["Saved Folders"] = ""; +$a->strings["Everything"] = ""; +$a->strings["Categories"] = ""; +$a->strings["Logged out."] = "Útskráður"; +$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = ""; +$a->strings["The error message was:"] = ""; +$a->strings["Miscellaneous"] = "Ýmislegt"; +$a->strings["year"] = "ár"; +$a->strings["month"] = "mánuður"; +$a->strings["day"] = "dagur"; +$a->strings["never"] = "aldrei"; +$a->strings["less than a second ago"] = "fyrir minna en sekúndu"; +$a->strings["week"] = "vika"; +$a->strings["hour"] = "klukkustund"; +$a->strings["hours"] = "klukkustundir"; +$a->strings["minute"] = "mínúta"; +$a->strings["minutes"] = "mínútur"; +$a->strings["second"] = "sekúnda"; +$a->strings["seconds"] = "sekúndur"; +$a->strings["%1\$d %2\$s ago"] = ""; +$a->strings["%s's birthday"] = ""; +$a->strings["Happy Birthday %s"] = ""; +$a->strings["From: "] = "Frá:"; +$a->strings["Image/photo"] = "Mynd"; +$a->strings["$1 wrote:"] = "$1 skrifaði:"; +$a->strings["Encrypted content"] = ""; +$a->strings["Cannot locate DNS info for database server '%s'"] = "Get ekki flett upp DNS upplýsingum fyrir gagnagrunns þjón '%s'"; +$a->strings["[no subject]"] = "[ekkert efni]"; +$a->strings["Visible to everybody"] = "Sjáanlegt öllum"; +$a->strings["Friendica Notification"] = "Friendica tilkynning"; +$a->strings["Thank You,"] = "Takk fyrir,"; +$a->strings["%s Administrator"] = "Kerfisstjóri %s"; +$a->strings["%s "] = ""; +$a->strings["[Friendica:Notify] New mail received at %s"] = ""; +$a->strings["%1\$s sent you a new private message at %2\$s."] = ""; +$a->strings["%1\$s sent you %2\$s."] = ""; +$a->strings["a private message"] = "einkaskilaboð"; +$a->strings["Please visit %s to view and/or reply to your private messages."] = "Farðu á %s til að skoða og/eða svara einkaskilaboðunum þínum."; +$a->strings["%1\$s commented on [url=%2\$s]a %3\$s[/url]"] = ""; +$a->strings["%1\$s commented on [url=%2\$s]%3\$s's %4\$s[/url]"] = ""; +$a->strings["%1\$s commented on [url=%2\$s]your %3\$s[/url]"] = ""; +$a->strings["[Friendica:Notify] Comment to conversation #%1\$d by %2\$s"] = ""; +$a->strings["%s commented on an item/conversation you have been following."] = "%s skrifaði athugasemd á færslu/samtal sem þú ert að fylgja."; +$a->strings["Please visit %s to view and/or reply to the conversation."] = "Farðu á %s til að skoða og/eða svara samtali."; +$a->strings["[Friendica:Notify] %s posted to your profile wall"] = ""; +$a->strings["%1\$s posted to your profile wall at %2\$s"] = ""; +$a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = ""; +$a->strings["[Friendica:Notify] %s tagged you"] = ""; +$a->strings["%1\$s tagged you at %2\$s"] = ""; +$a->strings["%1\$s [url=%2\$s]tagged you[/url]."] = ""; +$a->strings["[Friendica:Notify] %1\$s poked you"] = ""; +$a->strings["%1\$s poked you at %2\$s"] = ""; +$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = ""; +$a->strings["[Friendica:Notify] %s tagged your post"] = ""; +$a->strings["%1\$s tagged your post at %2\$s"] = ""; +$a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = ""; +$a->strings["[Friendica:Notify] Introduction received"] = ""; +$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = ""; +$a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = ""; +$a->strings["You may visit their profile at %s"] = "Þú getur heimsótt fórsíðuna á %s"; +$a->strings["Please visit %s to approve or reject the introduction."] = "Farðu á %s til að samþykkja eða hunsa þessa kynningu."; +$a->strings["[Friendica:Notify] Friend suggestion received"] = ""; +$a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = ""; +$a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from %3\$s."] = ""; +$a->strings["Name:"] = "Nafn:"; +$a->strings["Photo:"] = "Mynd:"; +$a->strings["Please visit %s to approve or reject the suggestion."] = "Farðu á %s til að samþykkja eða hunsa þessa uppástungu."; +$a->strings["Connect URL missing."] = "Tengi slóð vantar."; +$a->strings["This site is not configured to allow communications with other networks."] = "Þessi vefur er ekki uppsettur til að leyfa samskipti við önnur samfélagsnet."; +$a->strings["No compatible communication protocols or feeds were discovered."] = "Enginn samhæfur samskipta staðall né straumar fundust."; +$a->strings["The profile address specified does not provide adequate information."] = "Uppgefin forsíðu slóð eru ekki næganlegar upplýsingar."; +$a->strings["An author or name was not found."] = "Höfundur eða nafn fannst ekki."; +$a->strings["No browser URL could be matched to this address."] = "Engin vefslóð passaði við þessa slóð. "; +$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = ""; +$a->strings["Use mailto: in front of address to force email check."] = ""; +$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "Þessi forsíðu slóð tilheyrir neti sem er bannað á þessum vef."; +$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Takmörkuð forsíða. Þessi tengiliður mun ekki getað tekið á móti beinum/einka tilkynningum frá þér."; +$a->strings["Unable to retrieve contact information."] = "Ekki hægt að sækja tengiliðs upplýsingar."; +$a->strings["following"] = "fylgist með"; +$a->strings["A new person is sharing with you at "] = "Nýr aðili er að deila með þér frá"; +$a->strings["You have a new follower at "] = "Þú hefur nýjan fylgjanda hjá"; +$a->strings["Archives"] = ""; +$a->strings["An invitation is required."] = "Boðskort er skilyrði."; +$a->strings["Invitation could not be verified."] = "Ekki hægt að sannreyna boðskort."; +$a->strings["Invalid OpenID url"] = "OpenID slóð ekki til"; +$a->strings["Please enter the required information."] = "Vinsamlegast sláðu inn umbeðin gögn"; +$a->strings["Please use a shorter name."] = "Vinsamlegast notið styttra nafn"; +$a->strings["Name too short."] = "Nafn of stutt"; +$a->strings["That doesn't appear to be your full (First Last) name."] = "Þetta virðist ekki vera fullt nafn (Jón Jónsson)."; +$a->strings["Your email domain is not among those allowed on this site."] = "Póstþjónninn er ekki í lista yfir leyfða póstþjóna á þessum vef."; +$a->strings["Not a valid email address."] = "Ekki gildt póstfang."; +$a->strings["Cannot use that email."] = "Ekki hægt að nota þetta póstfang."; +$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and must also begin with a letter."] = "Gælunafnið má bara innihalda \"a-z\", \"0-9, \"-\", \"_\" og verður að byrja á staf."; +$a->strings["Nickname is already registered. Please choose another."] = "Gælunafn þegar skráð. Veldu annað."; +$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = ""; +$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "VERULEGA ALVARLEG VILLA: Stofnun á öryggislyklum tókst ekki."; +$a->strings["An error occurred during registration. Please try again."] = "Villa kom upp við nýskráningu. Vinsamlegast reyndu aftur."; +$a->strings["An error occurred creating your default profile. Please try again."] = "Villa kom upp við að stofna sjálfgefna forsíðu. Vinnsamlegast reyndu aftur."; +$a->strings["Welcome "] = "Velkomin(n)"; +$a->strings["Please upload a profile photo."] = "Vinsamlegast hlaðið inn forsíðu mynd."; +$a->strings["Welcome back "] = "Velkomin(n) aftur"; +$a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = ""; +$a->strings["stopped following"] = "hætt að fylgja"; +$a->strings["Poke"] = ""; +$a->strings["View Status"] = ""; +$a->strings["View Profile"] = ""; +$a->strings["View Photos"] = ""; +$a->strings["Network Posts"] = ""; +$a->strings["Edit Contact"] = ""; +$a->strings["Send PM"] = "Senda einkaboð"; +$a->strings["%1\$s poked %2\$s"] = ""; +$a->strings["post/item"] = ""; +$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = ""; +$a->strings["Categories:"] = ""; +$a->strings["Filed under:"] = ""; +$a->strings["remove"] = ""; +$a->strings["Delete Selected Items"] = "Eyða völdum færslum"; +$a->strings["%s likes this."] = "%s líkar þetta."; +$a->strings["%s doesn't like this."] = "%s mislíkar þetta."; +$a->strings["%2\$d people like this."] = "%2\$d líkar þetta."; +$a->strings["%2\$d people don't like this."] = "%2\$d mislíkar þetta."; +$a->strings["and"] = "og"; +$a->strings[", and %d other people"] = ", og %d öðrum"; +$a->strings["%s like this."] = "%s líkar þetta."; +$a->strings["%s don't like this."] = "%s mislíkar þetta."; +$a->strings["Visible to everybody"] = "Sjáanlegt öllum"; +$a->strings["Please enter a video link/URL:"] = "Settu inn myndbandshlekkur:"; +$a->strings["Please enter an audio link/URL:"] = "Settu inn hlekk á hljóðskrá:"; +$a->strings["Tag term:"] = "Merka með:"; +$a->strings["Where are you right now?"] = "Hvar ert þú núna?"; +$a->strings["upload photo"] = "Hlaða upp mynd"; +$a->strings["attach file"] = "Hengja skrá við"; +$a->strings["web link"] = "vefhlekkur"; +$a->strings["Insert video link"] = "Setja inn myndbandshlekk"; +$a->strings["video link"] = "myndbandshlekkur"; +$a->strings["Insert audio link"] = "Setja inn hlekk á hljóðskrá"; +$a->strings["audio link"] = "hljóðhlekkur"; +$a->strings["set location"] = "stilla staðsetningu"; +$a->strings["clear location"] = "hreinsa staðsetningu"; +$a->strings["permissions"] = "aðgangsstýring"; +$a->strings["Click here to upgrade."] = ""; +$a->strings["This action exceeds the limits set by your subscription plan."] = ""; +$a->strings["This action is not available under your subscription plan."] = ""; +$a->strings["Delete this item?"] = "Eyða þessu atriði?"; +$a->strings["show fewer"] = "sýna færri"; +$a->strings["Update %s failed. See error logs."] = "Uppfærsla á %s mistókst. Sjá villu skrá."; +$a->strings["Update Error at %s"] = "Uppfærslu vill við %s"; +$a->strings["Create a New Account"] = "Stofna nýjan notanda"; +$a->strings["Nickname or Email address: "] = "Gælunafn eða póstfang:"; +$a->strings["Password: "] = "Aðgangsorð:"; +$a->strings["Or login using OpenID: "] = "Eða auðkenna með OpenID:"; +$a->strings["Forgot your password?"] = "Gleymt lykilorð?"; +$a->strings["Requested account is not available."] = ""; +$a->strings["Edit profile"] = "Breyta forsíðu"; +$a->strings["Message"] = ""; +$a->strings["g A l F d"] = ""; +$a->strings["F d"] = ""; +$a->strings["[today]"] = "[í dag]"; +$a->strings["Birthday Reminders"] = "Afmælis áminningar"; +$a->strings["Birthdays this week:"] = "Afmæli í þessari viku:"; +$a->strings["[No description]"] = "[Engin lýsing]"; +$a->strings["Event Reminders"] = "Atburða áminningar"; +$a->strings["Events this week:"] = "Atburðir vikunnar:"; +$a->strings["Status Messages and Posts"] = "Stöðu skilaboð og færslur"; +$a->strings["Profile Details"] = "Forsíðu upplýsingar"; +$a->strings["Events and Calendar"] = "Atburðir og dagskrá"; +$a->strings["Only You Can See This"] = "Aðeins þú sérð þetta"; diff --git a/view/is/update_fail_eml.tpl b/view/is/update_fail_eml.tpl new file mode 100644 index 0000000000..e9572a7d88 --- /dev/null +++ b/view/is/update_fail_eml.tpl @@ -0,0 +1,11 @@ +Hæ, +Ég er $sitename. +Þróunarteymi friendica gáfu nýlega út uppfærslu $update, +En þegar ég reyndi að uppfæra, gerist eitthvað hræðilegt. +Þetta þarf að laga strax og ég get það ekki ein. Hafðu samband við +þróunarteymi friendica ef þú getur ekki hjálpað mér. Gagnagrunnurinn minn gæti verið skemmdur + +Villuskilaboðin eru '$error'. + +Fyrirgefðu, +þinn friendica þjónn á $siteurl \ No newline at end of file diff --git a/view/opensearch.tpl b/view/opensearch.tpl index 374fcaac95..4b5c01bc90 100644 --- a/view/opensearch.tpl +++ b/view/opensearch.tpl @@ -1,10 +1,10 @@ - Friendika@$nodename - Search in Friendika@$nodename - http://bugs.friendika.com/ - $baseurl/images/friendika-16.png - $baseurl/images/friendika-64.png + Friendica@$nodename + Search in Friendica@$nodename + http://bugs.friendica.com/ + $baseurl/images/friendica-16.png + $baseurl/images/friendica-64.png $item.title
    $item.body
    + {{ if $item.has_cats }} +
    $item.txt_cats {{ for $item.categories as $cat }}$cat.name [$remove] {{ if $cat.last }}{{ else }}, {{ endif }}{{ endfor }} +
    + {{ endif }} + + {{ if $item.has_folders }} +
    $item.txt_folders {{ for $item.folders as $cat }}$cat.name [$remove] {{ if $cat.last }}{{ else }}, {{ endif }}{{ endfor }} +
    + {{ endif }}
    {{ if $item.drop.dropping }}{{ endif }}
    - {{ if $item.drop.dropping }}{{ endif }} + {{ if $item.drop.pagedrop }}{{ endif }}
    diff --git a/view/theme/cleanzero/nav.tpl b/view/theme/cleanzero/nav.tpl index 9fe5ac0fe5..65f0185919 100644 --- a/view/theme/cleanzero/nav.tpl +++ b/view/theme/cleanzero/nav.tpl @@ -71,3 +71,15 @@ + diff --git a/view/theme/comix-plain/search_item.tpl b/view/theme/comix-plain/search_item.tpl index 828e1065b4..cf1c388cd2 100644 --- a/view/theme/comix-plain/search_item.tpl +++ b/view/theme/comix-plain/search_item.tpl @@ -34,7 +34,7 @@
    {{ if $item.drop.dropping }}{{ endif }}
    - {{ if $item.drop.dropping }}{{ endif }} + {{ if $item.drop.pagedrop }}{{ endif }}
    diff --git a/view/theme/comix-plain/wall_item.tpl b/view/theme/comix-plain/wall_item.tpl deleted file mode 100644 index 0ef70cf8b9..0000000000 --- a/view/theme/comix-plain/wall_item.tpl +++ /dev/null @@ -1,78 +0,0 @@ -
    -
    -
    -
    - - $item.name - - menu -
    -
      - $item.item_photo_menu -
    -
    -
    -
    -
    - {{ if $item.lock }}
    $item.lock
    - {{ else }}
    {{ endif }} -
    $item.location
    -
    -
    -
    - $item.name -
    $item.ago
    - -
    -
    -
    $item.title
    -
    -
    $item.body -
    - {{ for $item.tags as $tag }} - $tag - {{ endfor }} -
    -
    -
    -
    - {{ if $item.vote }} - - {{ endif }} - {{ if $item.plink }} - - {{ endif }} - {{ if $item.edpost }} - - {{ endif }} - - {{ if $item.star }} - - - {{ endif }} - {{ if $item.filer }} - - {{ endif }} -
    - {{ if $item.drop.dropping }}{{ endif }} -
    - {{ if $item.drop.dropping }}{{ endif }} -
    -
    -
    -
    - -
    $item.dislike
    -
    - $item.comment -
    - -
    -
    diff --git a/view/theme/comix-plain/wallwall_item.tpl b/view/theme/comix-plain/wallwall_item.tpl deleted file mode 100644 index 4c5b120873..0000000000 --- a/view/theme/comix-plain/wallwall_item.tpl +++ /dev/null @@ -1,85 +0,0 @@ -
    -
    -
    -
    - - $item.owner_name -
    -
    $item.wall
    -
    - - $item.name - menu -
    -
      - $item.item_photo_menu -
    -
    - -
    -
    -
    - {{ if $item.lock }}
    $item.lock
    - {{ else }}
    {{ endif }} -
    $item.location
    -
    -
    -
    - $item.name $item.to $item.owner_name $item.vwall
    -
    $item.ago
    -
    -
    -
    $item.title
    -
    -
    $item.body -
    - {{ for $item.tags as $tag }} - $tag - {{ endfor }} -
    -
    -
    -
    - {{ if $item.vote }} - - {{ endif }} - {{ if $item.plink }} - - {{ endif }} - {{ if $item.edpost }} - - {{ endif }} - - {{ if $item.star }} - - - {{ endif }} - {{ if $item.filer }} - - {{ endif }} - -
    - {{ if $item.drop.dropping }}{{ endif }} -
    - {{ if $item.drop.dropping }}{{ endif }} -
    -
    -
    -
    - -
    $item.dislike
    -
    -
    - $item.comment -
    - -
    -
    - diff --git a/view/theme/comix/search_item.tpl b/view/theme/comix/search_item.tpl index 828e1065b4..cf1c388cd2 100644 --- a/view/theme/comix/search_item.tpl +++ b/view/theme/comix/search_item.tpl @@ -34,7 +34,7 @@
    {{ if $item.drop.dropping }}{{ endif }}
    - {{ if $item.drop.dropping }}{{ endif }} + {{ if $item.drop.pagedrop }}{{ endif }}
    diff --git a/view/theme/comix/wall_item.tpl b/view/theme/comix/wall_item.tpl deleted file mode 100644 index 0ef70cf8b9..0000000000 --- a/view/theme/comix/wall_item.tpl +++ /dev/null @@ -1,78 +0,0 @@ -
    -
    -
    -
    - - $item.name - - menu -
    -
      - $item.item_photo_menu -
    -
    -
    -
    -
    - {{ if $item.lock }}
    $item.lock
    - {{ else }}
    {{ endif }} -
    $item.location
    -
    -
    -
    - $item.name -
    $item.ago
    - -
    -
    -
    $item.title
    -
    -
    $item.body -
    - {{ for $item.tags as $tag }} - $tag - {{ endfor }} -
    -
    -
    -
    - {{ if $item.vote }} - - {{ endif }} - {{ if $item.plink }} - - {{ endif }} - {{ if $item.edpost }} - - {{ endif }} - - {{ if $item.star }} - - - {{ endif }} - {{ if $item.filer }} - - {{ endif }} -
    - {{ if $item.drop.dropping }}{{ endif }} -
    - {{ if $item.drop.dropping }}{{ endif }} -
    -
    -
    -
    - -
    $item.dislike
    -
    - $item.comment -
    - -
    -
    diff --git a/view/theme/comix/wallwall_item.tpl b/view/theme/comix/wallwall_item.tpl deleted file mode 100644 index 4c5b120873..0000000000 --- a/view/theme/comix/wallwall_item.tpl +++ /dev/null @@ -1,85 +0,0 @@ -
    -
    -
    -
    - - $item.owner_name -
    -
    $item.wall
    -
    - - $item.name - menu -
    -
      - $item.item_photo_menu -
    -
    - -
    -
    -
    - {{ if $item.lock }}
    $item.lock
    - {{ else }}
    {{ endif }} -
    $item.location
    -
    -
    -
    - $item.name $item.to $item.owner_name $item.vwall
    -
    $item.ago
    -
    -
    -
    $item.title
    -
    -
    $item.body -
    - {{ for $item.tags as $tag }} - $tag - {{ endfor }} -
    -
    -
    -
    - {{ if $item.vote }} - - {{ endif }} - {{ if $item.plink }} - - {{ endif }} - {{ if $item.edpost }} - - {{ endif }} - - {{ if $item.star }} - - - {{ endif }} - {{ if $item.filer }} - - {{ endif }} - -
    - {{ if $item.drop.dropping }}{{ endif }} -
    - {{ if $item.drop.dropping }}{{ endif }} -
    -
    -
    -
    - -
    $item.dislike
    -
    -
    - $item.comment -
    - -
    -
    - diff --git a/view/theme/diabook/bottom.tpl b/view/theme/diabook/bottom.tpl index 0ab7de78e7..08952aad65 100644 --- a/view/theme/diabook/bottom.tpl +++ b/view/theme/diabook/bottom.tpl @@ -130,7 +130,7 @@ $(document).ready(function() { $(".comment-edit-bb-" + id).hide(); } - $(document).ready(function(){ + /*$(document).ready(function(){ var doctitle = document.title; function checkNotify() { if(document.getElementById("notify-update").innerHTML != "") @@ -139,7 +139,17 @@ $(document).ready(function() { document.title = doctitle; }; setInterval(function () {checkNotify();}, 10 * 1000); - }) - - + })*/ + + diff --git a/view/theme/diabook/search_item.tpl b/view/theme/diabook/search_item.tpl index 1238340647..d0c83c37a3 100644 --- a/view/theme/diabook/search_item.tpl +++ b/view/theme/diabook/search_item.tpl @@ -29,6 +29,15 @@
    {{ if $item.title }}

    $item.title

    {{ endif }} $item.body + {{ if $item.has_cats }} +
    $item.txt_cats {{ for $item.categories as $cat }}$cat.name [$remove] {{ if $cat.last }}{{ else }}, {{ endif }}{{ endfor }} +
    + {{ endif }} + + {{ if $item.has_folders }} +
    $item.txt_folders {{ for $item.folders as $cat }}$cat.name [$remove] {{ if $cat.last }}{{ else }}, {{ endif }}{{ endfor }} +
    + {{ endif }}
    @@ -77,8 +86,10 @@
    - {{ if $item.drop.dropping }} + {{ if $item.drop.pagedrop }} + {{ endif }} + {{ if $item.drop.dropping }} $item.drop.delete {{ endif }} {{ if $item.edpost }} diff --git a/view/theme/diabook/wall_item.tpl b/view/theme/diabook/wall_item.tpl deleted file mode 100644 index 5b9de29689..0000000000 --- a/view/theme/diabook/wall_item.tpl +++ /dev/null @@ -1,100 +0,0 @@ -{{ if $item.indent }}{{ else }} -
    - -
    -{{ endif }} -
    -
    -
    -
    - - $item.name - - menu - - -
    -
    -
    - $item.name - - - {{ if $item.plink }}$item.ago{{ else }} $item.ago {{ endif }} - {{ if $item.lock }} - $item.lock {{ endif }} - -
    -
    - {{ if $item.title }}

    $item.title

    {{ endif }} - $item.body -
    -
    -
    - -
    - {{ for $item.tags as $tag }} - $tag - {{ endfor }} -
    -
    -
    -
    - -
    -
    - -
    - - - {{ if $item.vote }} - - - {{ endif }} - - {{ if $item.vote.share }} - - {{ endif }} - - - {{ if $item.star }} - - $item.star.do - - {{ endif }} - - {{ if $item.filer }} - - {{ endif }} - - {{ if $item.plink }}$item.plink.title{{ endif }} - - - -
    - -
    - - {{ if $item.drop.dropping }} - - $item.drop.delete - {{ endif }} - {{ if $item.edpost }} - - {{ endif }} -
    -
    $item.location 
    -
    -
    -
    - - -
    $item.dislike
    -
    -
    - -
    - $item.comment -
    diff --git a/view/theme/diabook/wall_thread.tpl b/view/theme/diabook/wall_thread.tpl index c53f8b017c..95d30602d5 100644 --- a/view/theme/diabook/wall_thread.tpl +++ b/view/theme/diabook/wall_thread.tpl @@ -36,6 +36,15 @@
    {{ if $item.title }}

    $item.title

    {{ endif }} $item.body + {{ if $item.has_cats }} +
    $item.txt_cats {{ for $item.categories as $cat }}$cat.name [$remove] {{ if $cat.last }}{{ else }}, {{ endif }}{{ endfor }} +
    + {{ endif }} + + {{ if $item.has_folders }} +
    $item.txt_folders {{ for $item.folders as $cat }}$cat.name [$remove] {{ if $cat.last }}{{ else }}, {{ endif }}{{ endfor }} +
    + {{ endif }}
    @@ -84,8 +93,10 @@
    - {{ if $item.drop.dropping }} + {{ if $item.drop.pagedrop }} + {{ endif }} + {{ if $item.drop.dropping }} $item.drop.delete {{ endif }} {{ if $item.edpost }} diff --git a/view/theme/diabook/wallwall_item.tpl b/view/theme/diabook/wallwall_item.tpl deleted file mode 100644 index b2c980c78d..0000000000 --- a/view/theme/diabook/wallwall_item.tpl +++ /dev/null @@ -1,106 +0,0 @@ -{{ if $item.indent }}{{ else }} -
    - -
    -{{ endif }} -
    -
    -
    -
    - - $item.owner_name - -
    -
    - - $item.name - - menu - - -
    -
    -
    - $item.name - $item.to $item.owner_name - $item.vwall -   - {{ if $item.plink }}$item.ago{{ else }} $item.ago {{ endif }} - {{ if $item.lock }} - $item.lock {{ endif }} - -
    -
    - {{ if $item.title }}

    $item.title

    {{ endif }} - $item.body -
    -
    -
    - -
    - {{ for $item.tags as $tag }} - $tag - {{ endfor }} -
    -
    -
    -
    - -
    -
    - -
    - - - {{ if $item.vote }} - - - {{ endif }} - - {{ if $item.vote.share }} - - {{ endif }} - - - {{ if $item.star }} - - $item.star.do - - {{ endif }} - - {{ if $item.filer }} - - {{ endif }} - - {{ if $item.plink }}$item.plink.title{{ endif }} - - - -
    - -
    - - {{ if $item.drop.dropping }} - - $item.drop.delete - {{ endif }} - {{ if $item.edpost }} - - {{ endif }} -
    -
    $item.location 
    -
    -
    -
    - - -
    $item.dislike
    -
    -
    - -
    - $item.comment -
    \ No newline at end of file diff --git a/view/theme/diabook/wallwall_thread.tpl b/view/theme/diabook/wallwall_thread.tpl deleted file mode 100644 index c53f8b017c..0000000000 --- a/view/theme/diabook/wallwall_thread.tpl +++ /dev/null @@ -1,125 +0,0 @@ -{{if $item.comment_firstcollapsed}} -
    - $item.num_comments $item.hide_text -
    - {{endif}} diff --git a/view/theme/dispy/bottom.tpl b/view/theme/dispy/bottom.tpl index 0bcc3aca41..82f0201703 100644 --- a/view/theme/dispy/bottom.tpl +++ b/view/theme/dispy/bottom.tpl @@ -56,4 +56,16 @@ function checkNotify() { }; setInterval(function () {checkNotify();}, 10 * 1000); } + +$(document).ready(function(){ +var doctitle = document.title; +function checkNotify() { +if(document.getElementById("notify-update").innerHTML != "") +document.title = "("+document.getElementById("notify-update").innerHTML+") " + doctitle; +else +document.title = doctitle; +}; +setInterval(function () {checkNotify();}, 10 * 1000); +}) + diff --git a/view/theme/dispy/search_item.tpl b/view/theme/dispy/search_item.tpl index 35572caa04..0d9721fe70 100644 --- a/view/theme/dispy/search_item.tpl +++ b/view/theme/dispy/search_item.tpl @@ -29,12 +29,22 @@
    $item.title
    $item.body
    + {{ if $item.has_cats }} +
    $item.txt_cats {{ for $item.categories as $cat }}$cat.name [$remove] {{ if $cat.last }}{{ else }}, {{ endif }}{{ endfor }} +
    + {{ endif }} + + {{ if $item.has_folders }} +
    $item.txt_folders {{ for $item.folders as $cat }}$cat.name [$remove] {{ if $cat.last }}{{ else }}, {{ endif }}{{ endfor }} +
    + {{ endif }} +
    {{ if $item.drop.dropping }}{{ endif }}
    - {{ if $item.drop.dropping }}{{ endif }} + {{ if $item.drop.pagedrop }}{{ endif }}
    diff --git a/view/theme/dispy/wall_item.tpl b/view/theme/dispy/wall_item.tpl deleted file mode 100644 index d5cc7f16c8..0000000000 --- a/view/theme/dispy/wall_item.tpl +++ /dev/null @@ -1,88 +0,0 @@ - -
    -
    -
    -
    - $item.name - menu -
    -
      - $item.item_photo_menu -
    -
    -
    -
    -
    - {{ if $item.location }}$item.location {{ endif }} -
    - -
    - $item.ago -
    -
    -
    -
    - {{ if $item.lock }}
    $item.lock
    - {{ else }}
    {{ endif }} -
    -
      - {{ if $item.star }} -
    • - - -
    • - {{ endif }} - {{ if $item.vote }} - - {{ endif }} -

    -
      - {{ if $item.filer }} -
    • - {{ endif }} - {{ if $item.plink }} - - {{ endif }} - {{ if $item.edpost }} -
    • - {{ endif }} -
    • - {{ if $item.drop.dropping }}
      {{ endif }} - {{ if $item.drop.dropping }}
      {{ endif }} -
    • -
    -
    -
    -
    -
    $item.title
    -
    -
    - $item.body -
    - {{ for $item.tags as $tag }} - $tag - {{ endfor }} -
    -
    -
    -
    -
    - -
    $item.dislike
    -
    - $item.comment -
    - -
    -
    diff --git a/view/theme/dispy/wall_thread.tpl b/view/theme/dispy/wall_thread.tpl index 5f434d4cb6..0883f88c2e 100644 --- a/view/theme/dispy/wall_thread.tpl +++ b/view/theme/dispy/wall_thread.tpl @@ -6,21 +6,28 @@ {{endif}}
    -
    +
    -
    -
    +
    + {{ if $item.owner_url }} +
    + + $item.owner_name +
    +
    $item.wall
    + {{ endif }} +
    - $item.name - + $item.name menu -
    -
      - $item.item_photo_menu -
    -
    +
    +
      + $item.item_photo_menu +
    +
    +
    @@ -50,26 +57,27 @@ {{ if $item.vote.share }} - {{ endif }} + {{ endif }} {{ endif }}
      - {{ if $item.filer }} -
    • - {{ endif }} - {{ if $item.plink }} + {{ if $item.filer }} +
    • + {{ endif }} + {{ if $item.plink }} - {{ endif }} - {{ if $item.edpost }} + {{ endif }} + {{ if $item.edpost }}
    • - {{ endif }} -
    • - {{ if $item.drop.dropping }}
      {{ endif }} - {{ if $item.drop.dropping }}
      {{ endif }} -
    • + {{ endif }} + +
    • + {{ if $item.drop.dropping }}{{ endif }} + {{ if $item.drop.pagedrop }}{{ endif }} +
    @@ -80,12 +88,22 @@ $item.body
    {{ for $item.tags as $tag }} - $tag + $tag {{ endfor }} -
    +
    + {{ if $item.has_cats }} +
    $item.txt_cats {{ for $item.categories as $cat }}$cat.name [$remove] {{ if $cat.last }}{{ else }}, {{ endif }}{{ endfor }} +
    + {{ endif }} + + {{ if $item.has_folders }} +
    $item.txt_folders {{ for $item.folders as $cat }}$cat.name [$remove] {{ if $cat.last }}{{ else }}, {{ endif }}{{ endfor }} +
    + {{ endif }} +
    -
    +
    $item.dislike
    diff --git a/view/theme/dispy/wallwall_item.tpl b/view/theme/dispy/wallwall_item.tpl deleted file mode 100644 index 63c8a2e96b..0000000000 --- a/view/theme/dispy/wallwall_item.tpl +++ /dev/null @@ -1,98 +0,0 @@ - -
    -
    -
    -
    - - $item.owner_name -
    -
    $item.wall
    -
    - - $item.name - menu -
    -
      - $item.item_photo_menu -
    -
    - -
    -
    -
    - {{ if $item.location }}$item.location {{ endif }} -
    - -
    - $item.ago -
    -
    -
    -
    - {{ if $item.lock }}
    $item.lock
    - {{ else }}
    {{ endif }} -
    -
      - {{ if $item.star }} -
    • - - -
    • - {{ endif }} - {{ if $item.vote }} - - {{ endif }} -

    -
      - {{ if $item.filer }} -
    • - {{ endif }} - {{ if $item.plink }} - - {{ endif }} - {{ if $item.edpost }} -
    • - {{ endif }} - -
    • - {{ if $item.drop.dropping }}{{ endif }} - {{ if $item.drop.dropping }}{{ endif }} -
    • -
    -
    -
    -
    -
    $item.title
    -
    -
    - $item.body -
    - {{ for $item.tags as $tag }} - $tag - {{ endfor }} -
    -
    -
    -
    -
    - -
    $item.dislike
    -
    -
    - $item.comment -
    - -
    -
    - diff --git a/view/theme/dispy/wallwall_thread.tpl b/view/theme/dispy/wallwall_thread.tpl deleted file mode 100644 index cab97cafad..0000000000 --- a/view/theme/dispy/wallwall_thread.tpl +++ /dev/null @@ -1,121 +0,0 @@ -{{if $item.comment_firstcollapsed}} -
    - $item.num_comments $item.hide_text -
    - {{endif}} diff --git a/view/theme/duepuntozero/style.css b/view/theme/duepuntozero/style.css index 030ecdbe1f..376caefa45 100644 --- a/view/theme/duepuntozero/style.css +++ b/view/theme/duepuntozero/style.css @@ -1138,7 +1138,7 @@ input#dfrn-url { margin-left: 10px; /*margin-bottom: 20px;*/ /*padding: 20px;*/ - max-height: 400px; + max-height: 700px; overflow: auto; } diff --git a/view/theme/duepuntozero/theme.php b/view/theme/duepuntozero/theme.php index 189628b028..5b87dcd420 100644 --- a/view/theme/duepuntozero/theme.php +++ b/view/theme/duepuntozero/theme.php @@ -42,10 +42,10 @@ function cmtBbOpen(comment, id) { return false; } function cmtBbClose(comment, id) { - if($(comment).hasClass('comment-edit-text-empty')) { - $(".comment-edit-bb-" + id).hide(); - return true; - } +// if($(comment).hasClass('comment-edit-text-empty')) { +// $(".comment-edit-bb-" + id).hide(); +// return true; +// } return false; } $(document).ready(function() { diff --git a/view/theme/facepark/search_item.tpl b/view/theme/facepark/search_item.tpl index 35572caa04..737f1649e1 100644 --- a/view/theme/facepark/search_item.tpl +++ b/view/theme/facepark/search_item.tpl @@ -34,7 +34,7 @@
    {{ if $item.drop.dropping }}{{ endif }}
    - {{ if $item.drop.dropping }}{{ endif }} + {{ if $item.drop.pagedrop }}{{ endif }}
    diff --git a/view/theme/facepark/wall_item.tpl b/view/theme/facepark/wall_item.tpl deleted file mode 100644 index dda4bc4a90..0000000000 --- a/view/theme/facepark/wall_item.tpl +++ /dev/null @@ -1,77 +0,0 @@ -
    -
    -
    -
    - - $item.name - - menu -
    -
      - $item.item_photo_menu -
    -
    -
    -
    -
    - {{ if $item.lock }}
    $item.lock
    - {{ else }}
    {{ endif }} -
    $item.location
    -
    -
    -
    - $item.name -
    $item.ago
    - -
    -
    -
    $item.title
    -
    -
    $item.body -
    - {{ for $item.tags as $tag }} - $tag - {{ endfor }} -
    -
    -
    -
    - {{ if $item.vote }} - - {{ endif }} - {{ if $item.plink }} - - {{ endif }} - {{ if $item.edpost }} - - {{ endif }} - - {{ if $item.star }} - - - - {{ endif }} - -
    - {{ if $item.drop.dropping }}{{ endif }} -
    - {{ if $item.drop.dropping }}{{ endif }} -
    -
    -
    -
    - -
    $item.dislike
    -
    - $item.comment -
    - -
    -
    diff --git a/view/theme/facepark/wallwall_item.tpl b/view/theme/facepark/wallwall_item.tpl deleted file mode 100644 index ba6131857f..0000000000 --- a/view/theme/facepark/wallwall_item.tpl +++ /dev/null @@ -1,82 +0,0 @@ -
    -
    -
    -
    - - $item.owner_name -
    -
    $item.wall
    -
    - - $item.name - menu -
    -
      - $item.item_photo_menu -
    -
    - -
    -
    -
    - {{ if $item.lock }}
    $item.lock
    - {{ else }}
    {{ endif }} -
    $item.location
    -
    -
    -
    - $item.name $item.to $item.owner_name $item.vwall
    -
    $item.ago
    -
    -
    -
    $item.title
    -
    -
    $item.body -
    - {{ for $item.tags as $tag }} - $tag - {{ endfor }} -
    -
    -
    -
    - {{ if $item.vote }} - - {{ endif }} - {{ if $item.plink }} - - {{ endif }} - {{ if $item.edpost }} - - {{ endif }} - - {{ if $item.star }} - - - {{ endif }} - -
    - {{ if $item.drop.dropping }}{{ endif }} -
    - {{ if $item.drop.dropping }}{{ endif }} -
    -
    -
    -
    - -
    $item.dislike
    -
    -
    - $item.comment -
    - -
    -
    - diff --git a/view/theme/frost-mobile/acl_selector.tpl b/view/theme/frost-mobile/acl_selector.tpl index 9fd7dd7ab3..327f18b65f 100644 --- a/view/theme/frost-mobile/acl_selector.tpl +++ b/view/theme/frost-mobile/acl_selector.tpl @@ -19,4 +19,5 @@ window.allowGID = $allowgid; window.denyCID = $denycid; window.denyGID = $denygid; + window.aclInit = "true"; diff --git a/view/theme/frost-mobile/admin_site.tpl b/view/theme/frost-mobile/admin_site.tpl index 91aeda0357..087de4f7db 100644 --- a/view/theme/frost-mobile/admin_site.tpl +++ b/view/theme/frost-mobile/admin_site.tpl @@ -40,7 +40,7 @@ {{ inc field_checkbox.tpl with $field=$dfrn_only }}{{ endinc }} {{ inc field_input.tpl with $field=$global_directory }}{{ endinc }} {{ inc field_checkbox.tpl with $field=$thread_allow }}{{ endinc }} - {{ inc field_checkbox.tpl with $field=$newuser_public }}{{ endinc }} + {{ inc field_checkbox.tpl with $field=$newuser_private }}{{ endinc }}
    diff --git a/view/theme/frost-mobile/end.tpl b/view/theme/frost-mobile/end.tpl index 9932181336..623b99a240 100644 --- a/view/theme/frost-mobile/end.tpl +++ b/view/theme/frost-mobile/end.tpl @@ -5,8 +5,6 @@ --> - - @@ -16,5 +14,4 @@ - diff --git a/view/theme/frost-mobile/head.tpl b/view/theme/frost-mobile/head.tpl index a849f44593..111f5f6173 100644 --- a/view/theme/frost-mobile/head.tpl +++ b/view/theme/frost-mobile/head.tpl @@ -27,4 +27,7 @@ var updateInterval = $update_interval; var localUser = {{ if $local_user }}$local_user{{ else }}false{{ endif }}; + + + diff --git a/view/theme/frost-mobile/images/noglobe.png b/view/theme/frost-mobile/images/noglobe.png new file mode 100644 index 0000000000..b5aceb6d5f Binary files /dev/null and b/view/theme/frost-mobile/images/noglobe.png differ diff --git a/view/theme/frost-mobile/jot_geotag.tpl b/view/theme/frost-mobile/jot_geotag.tpl new file mode 100644 index 0000000000..3f8bee91a7 --- /dev/null +++ b/view/theme/frost-mobile/jot_geotag.tpl @@ -0,0 +1,11 @@ + + if(navigator.geolocation) { + navigator.geolocation.getCurrentPosition(function(position) { + var lat = position.coords.latitude.toFixed(4); + var lon = position.coords.longitude.toFixed(4); + + $j('#jot-coord').val(lat + ', ' + lon); + $j('#profile-nolocation-wrapper').show(); + }); + } + diff --git a/view/theme/frost-mobile/js/main.js b/view/theme/frost-mobile/js/main.js index aaa69e7078..a84b087304 100644 --- a/view/theme/frost-mobile/js/main.js +++ b/view/theme/frost-mobile/js/main.js @@ -78,7 +78,7 @@ if( last_popup_menu ) { if( '#' + last_popup_menu.attr('id') !== $j(e.target).attr('rel')) { last_popup_menu.hide(); - if (last_popup_menu.attr('id') == "nav-notifications-menu" ) $j('section').show(); + if (last_popup_menu.attr('id') == "nav-notifications-menu" ) $j('.main-container').show(); last_popup_button.removeClass("selected"); last_popup_menu = null; last_popup_button = null; @@ -100,13 +100,13 @@ if (menu.css("display") == "none") { $j(this).parent().addClass("selected"); menu.show(); - if (menu.attr('id') == "nav-notifications-menu" ) $j('section').hide(); + if (menu.attr('id') == "nav-notifications-menu" ) $j('.main-container').hide(); last_popup_menu = menu; last_popup_button = $j(this).parent(); } else { $j(this).parent().removeClass("selected"); menu.hide(); - if (menu.attr('id') == "nav-notifications-menu" ) $j('section').show(); + if (menu.attr('id') == "nav-notifications-menu" ) $j('.main-container').show(); last_popup_menu = null; last_popup_button = null; } @@ -315,6 +315,22 @@ prev = ident; }); + + var bimgs = $j(".wall-item-body > img").not(function() { return this.complete; }); + var bimgcount = bimgs.length; + + if (bimgcount) { + bimgs.load(function() { + bimgcount--; + if (! bimgcount) { + collapseHeight(); + + } + }); + } else { + collapseHeight(); + } + // reset vars for inserting individual items /*prev = 'live-' + src; @@ -349,22 +365,6 @@ } /* autocomplete @nicknames */ $j(".comment-edit-form textarea").contact_autocomplete(baseurl+"/acl"); - - var bimgs = $j(".wall-item-body > img").not(function() { return this.complete; }); - var bimgcount = bimgs.length; - - if (bimgcount) { - bimgs.load(function() { - bimgcount--; - if (! bimgcount) { - collapseHeight(); - - } - }); - } else { - collapseHeight(); - } - }); } diff --git a/view/theme/frost-mobile/js/main.min.js b/view/theme/frost-mobile/js/main.min.js index 95f99dce75..f45e505621 100644 --- a/view/theme/frost-mobile/js/main.min.js +++ b/view/theme/frost-mobile/js/main.min.js @@ -1 +1 @@ -function openClose(e){document.getElementById(e).style.display=="block"?document.getElementById(e).style.display="none":document.getElementById(e).style.display="block"}function openMenu(e){document.getElementById(e).style.display="block"}function closeMenu(e){document.getElementById(e).style.display="none"}function NavUpdate(){if(!stopped){var e="ping"+(localUser!=0?"?f=&uid="+localUser:"");$j.get(e,function(e){$j(e).find("result").each(function(){$j("nav").trigger("nav-update",this),$j("#live-network").length&&(src="network",liveUpdate()),$j("#live-profile").length&&(src="profile",liveUpdate()),$j("#live-community").length&&(src="community",liveUpdate()),$j("#live-notes").length&&(src="notes",liveUpdate()),$j("#live-display").length&&liking&&(liking=0,window.location.href=window.location.href),$j("#live-photos").length&&liking&&(liking=0,window.location.href=window.location.href)})})}timer=setTimeout(NavUpdate,updateInterval)}function liveUpdate(){if(src==null||stopped||!profile_uid){$j(".like-rotator").hide();return}if($j(".comment-edit-text-full").length||in_progress){livetime&&clearTimeout(livetime),livetime=setTimeout(liveUpdate,1e4);return}livetime!=null&&(livetime=null),prev="live-"+src,in_progress=!0;var e=netargs.length?"/"+netargs:"",t="update_"+src+e+"&p="+profile_uid+"&page="+profile_page+"&msie="+(msie?1:0);$j.get(t,function(e){in_progress=!1,$j(".toplevel_item",e).each(function(){var e=$j(this).attr("id");$j("#"+e).length==0&&profile_page==1?($j("img",this).each(function(){$j(this).attr("src",$j(this).attr("dst"))}),$j("#"+prev).after($j(this))):($j("img",this).each(function(){$j(this).attr("src",$j(this).attr("dst"))}),$j("#"+e).replaceWith($j(this))),prev=e}),$j(".like-rotator").hide(),commentBusy&&(commentBusy=!1,$j("body").css("cursor","auto")),$j(".comment-edit-form textarea").contact_autocomplete(baseurl+"/acl");var t=$j(".wall-item-body > img").not(function(){return this.complete}),n=t.length;n?t.load(function(){n--,n||collapseHeight()}):collapseHeight()})}function collapseHeight(){$j(".wall-item-body").each(function(){$j(this).height()>310&&($j(this).hasClass("divmore")||($j(this).divgrow({initialHeight:300,showBrackets:!1,speed:0}),$j(this).addClass("divmore")))})}function imgbright(e){$j(e).removeClass("drophide").addClass("drop")}function imgdull(e){$j(e).removeClass("drop").addClass("drophide")}function dolike(e,t){unpause(),$j("#like-rotator-"+e.toString()).show(),$j.get("like/"+e.toString()+"?verb="+t,NavUpdate),liking=1}function dostar(e){e=e.toString(),$j.get("starred/"+e,function(t){t.match(/1/)?($j("#starred-"+e).addClass("starred"),$j("#starred-"+e).removeClass("unstarred"),$j("#star-"+e).addClass("hidden"),$j("#unstar-"+e).removeClass("hidden")):($j("#starred-"+e).addClass("unstarred"),$j("#starred-"+e).removeClass("starred"),$j("#star-"+e).removeClass("hidden"),$j("#unstar-"+e).addClass("hidden"))})}function getPosition(e){var t={x:0,y:0};if(e.touches[0].pageX||e.touches[0].pageY)t.x=e.touches[0].pageX,t.y=e.touches[0].pageY;else if(e.touches[0].clientX||e.touches[0].clientY)t.x=e.touches[0].clientX+(document.documentElement.scrollLeft||document.body.scrollLeft)-document.documentElement.clientLeft,t.y=e.touches[0].clientY+(document.documentElement.scrollTop||document.body.scrollTop)-document.documentElement.clientTop;else if(e.touches[0].x||e.touches[0].y)t.touches[0].x=e.touches[0].x,t.touches[0].y=e.touches[0].y;return t}function lockview(e,t){e=e||window.event,cursor=getPosition(e),lockvisible?lockviewhide():(lockvisible=!0,$j.get("lockview/"+t,function(e){$j("#panel").html(e),$j("#panel").css({left:cursor.x+5,top:cursor.y+5}),$j("#panel").show()}))}function lockviewhide(){lockvisible=!1,$j("#panel").hide()}function post_comment(e){return unpause(),commentBusy=!0,$j("body").css("cursor","wait"),$j("#comment-preview-inp-"+e).val("0"),$j.post("item",$j("#comment-edit-form-"+e).serialize(),function(t){if(t.success){$j("#comment-edit-wrapper-"+e).hide(),$j("#comment-edit-text-"+e).val("");var n=document.getElementById("comment-edit-text-"+e);n&&commentClose(n,e),timer&&clearTimeout(timer),timer=setTimeout(NavUpdate,10)}t.reload&&(window.location.href=t.reload)},"json"),!1}function preview_comment(e){return $j("#comment-preview-inp-"+e).val("1"),$j("#comment-edit-preview-"+e).show(),$j.post("item",$j("#comment-edit-form-"+e).serialize(),function(t){t.preview&&($j("#comment-edit-preview-"+e).html(t.preview),$j("#comment-edit-preview-"+e+" a").click(function(){return!1}))},"json"),!0}function preview_post(){return $j("#jot-preview").val("1"),$j("#jot-preview-content").show(),tinyMCE.triggerSave(),$j.post("item",$j("#profile-jot-form").serialize(),function(e){e.preview&&($j("#jot-preview-content").html(e.preview),$j("#jot-preview-content a").click(function(){return!1}))},"json"),$j("#jot-preview").val("0"),!0}function unpause(){totStopped=!1,stopped=!1,$j("#pause").html("")}function bin2hex(e){var t,n,r=0,i=[];e+="",r=e.length;for(n=0;n'+e.desc+'
    '+e.version+'
    '+e.credits+"
    ")})}var src=null,prev=null,livetime=null,msie=!1,stopped=!1,totStopped=!1,timer=null,pr=0,liking=0,in_progress=!1,langSelect=!1,commentBusy=!1,last_popup_menu=null,last_popup_button=null;$j(function(){function e(e){last_popup_menu&&"#"+last_popup_menu.attr("id")!==$j(e.target).attr("rel")&&(last_popup_menu.hide(),last_popup_menu.attr("id")=="nav-notifications-menu"&&$j("section").show(),last_popup_button.removeClass("selected"),last_popup_menu=null,last_popup_button=null)}$j.ajaxSetup({cache:!1}),msie=$j.browser.msie,$j(".onoff input").each(function(){val=$j(this).val(),id=$j(this).attr("id"),$j("#"+id+"_onoff ."+(val==0?"on":"off")).addClass("hidden")}),$j(".onoff > a").click(function(e){e.preventDefault();var t=$j(this).siblings("input"),n=1-t.val(),r=t.attr("id");$j("#"+r+"_onoff ."+(n==0?"on":"off")).addClass("hidden"),$j("#"+r+"_onoff ."+(n==1?"on":"off")).removeClass("hidden"),t.val(n)}),$j("img[rel^=#]").click(function(t){return e(t),menu=$j($j(this).attr("rel")),t.preventDefault(),t.stopPropagation(),menu.attr("popup")=="false"?!1:(menu.css("display")=="none"?($j(this).parent().addClass("selected"),menu.show(),menu.attr("id")=="nav-notifications-menu"&&$j("section").hide(),last_popup_menu=menu,last_popup_button=$j(this).parent()):($j(this).parent().removeClass("selected"),menu.hide(),menu.attr("id")=="nav-notifications-menu"&&$j("section").show(),last_popup_menu=null,last_popup_button=null),!1)}),$j("html").click(function(t){e(t)});var t=unescape($j("#nav-notifications-template[rel=template]").html()),n=unescape($j("
    ").append($j("#nav-notifications-see-all").clone()).html()),r=unescape($j("
    ").append($j("#nav-notifications-mark-all").clone()).html()),i=unescape($j("#nav-notifications-menu").html());$j("nav").bind("nav-update",function(e,s){var o=$j(s).find("invalid").text();o==1&&(window.location.href=window.location.href);var u=$j(s).find("net").text();u==0?(u="",$j("#net-update").removeClass("show")):$j("#net-update").addClass("show"),$j("#net-update").html(u);var a=$j(s).find("home").text();a==0?(a="",$j("#home-update").removeClass("show")):$j("#home-update").addClass("show"),$j("#home-update").html(a);var f=$j(s).find("intro").text();f==0?(f="",$j("#intro-update").removeClass("show")):$j("#intro-update").addClass("show"),$j("#intro-update").html(f);var l=$j(s).find("mail").text();l==0?(l="",$j("#mail-update").removeClass("show")):$j("#mail-update").addClass("show"),$j("#mail-update").html(l);var f=$j(s).find("intro").text();f==0?(f="",$j("#intro-update-li").removeClass("show")):$j("#intro-update-li").addClass("show"),$j("#intro-update-li").html(f);var l=$j(s).find("mail").text();l==0?(l="",$j("#mail-update-li").removeClass("show")):$j("#mail-update-li").addClass("show"),$j("#mail-update-li").html(l);var c=$j(s).find("notif");c.children("note").length==0?$j("#nav-notifications-menu").html(i):(nnm=$j("#nav-notifications-menu"),nnm.html(n+r),c.children("note").each(function(){e=$j(this),text=e.text().format(""+e.attr("name")+""),html=t.format(e.attr("href"),e.attr("photo"),text,e.attr("date"),e.attr("seen")),nnm.append(html)})),notif=c.attr("count"),notif>0?$j("#nav-notifications-linkmenu").addClass("on"):$j("#nav-notifications-linkmenu").removeClass("on"),notif==0?(notif="",$j("#notify-update").removeClass("show")):$j("#notify-update").addClass("show"),$j("#notify-update").html(notif);var h=$j(s).find("sysmsgs");h.children("notice").each(function(){text=$j(this).text(),$j.jGrowl(text,{sticky:!1,theme:"notice",life:1500})}),h.children("info").each(function(){text=$j(this).text(),$j.jGrowl(text,{sticky:!1,theme:"info",life:1e3})})}),NavUpdate()});var lockvisible=!1;String.prototype.format=function(){var e=this;for(var t=0;t img").not(function(){return this.complete}),n=t.length;n?t.load(function(){n--,n||collapseHeight()}):collapseHeight(),$j(".like-rotator").hide(),commentBusy&&(commentBusy=!1,$j("body").css("cursor","auto")),$j(".comment-edit-form textarea").contact_autocomplete(baseurl+"/acl")})}function collapseHeight(){$j(".wall-item-body").each(function(){$j(this).height()>310&&($j(this).hasClass("divmore")||($j(this).divgrow({initialHeight:300,showBrackets:!1,speed:0}),$j(this).addClass("divmore")))})}function imgbright(e){$j(e).removeClass("drophide").addClass("drop")}function imgdull(e){$j(e).removeClass("drop").addClass("drophide")}function dolike(e,t){unpause(),$j("#like-rotator-"+e.toString()).show(),$j.get("like/"+e.toString()+"?verb="+t,NavUpdate),liking=1}function dostar(e){e=e.toString(),$j.get("starred/"+e,function(t){t.match(/1/)?($j("#starred-"+e).addClass("starred"),$j("#starred-"+e).removeClass("unstarred"),$j("#star-"+e).addClass("hidden"),$j("#unstar-"+e).removeClass("hidden")):($j("#starred-"+e).addClass("unstarred"),$j("#starred-"+e).removeClass("starred"),$j("#star-"+e).removeClass("hidden"),$j("#unstar-"+e).addClass("hidden"))})}function getPosition(e){var t={x:0,y:0};if(e.touches[0].pageX||e.touches[0].pageY)t.x=e.touches[0].pageX,t.y=e.touches[0].pageY;else if(e.touches[0].clientX||e.touches[0].clientY)t.x=e.touches[0].clientX+(document.documentElement.scrollLeft||document.body.scrollLeft)-document.documentElement.clientLeft,t.y=e.touches[0].clientY+(document.documentElement.scrollTop||document.body.scrollTop)-document.documentElement.clientTop;else if(e.touches[0].x||e.touches[0].y)t.touches[0].x=e.touches[0].x,t.touches[0].y=e.touches[0].y;return t}function lockview(e,t){e=e||window.event,cursor=getPosition(e),lockvisible?lockviewhide():(lockvisible=!0,$j.get("lockview/"+t,function(e){$j("#panel").html(e),$j("#panel").css({left:cursor.x+5,top:cursor.y+5}),$j("#panel").show()}))}function lockviewhide(){lockvisible=!1,$j("#panel").hide()}function post_comment(e){return unpause(),commentBusy=!0,$j("body").css("cursor","wait"),$j("#comment-preview-inp-"+e).val("0"),$j.post("item",$j("#comment-edit-form-"+e).serialize(),function(t){if(t.success){$j("#comment-edit-wrapper-"+e).hide(),$j("#comment-edit-text-"+e).val("");var n=document.getElementById("comment-edit-text-"+e);n&&commentClose(n,e),timer&&clearTimeout(timer),timer=setTimeout(NavUpdate,10)}t.reload&&(window.location.href=t.reload)},"json"),!1}function preview_comment(e){return $j("#comment-preview-inp-"+e).val("1"),$j("#comment-edit-preview-"+e).show(),$j.post("item",$j("#comment-edit-form-"+e).serialize(),function(t){t.preview&&($j("#comment-edit-preview-"+e).html(t.preview),$j("#comment-edit-preview-"+e+" a").click(function(){return!1}))},"json"),!0}function preview_post(){return $j("#jot-preview").val("1"),$j("#jot-preview-content").show(),tinyMCE.triggerSave(),$j.post("item",$j("#profile-jot-form").serialize(),function(e){e.preview&&($j("#jot-preview-content").html(e.preview),$j("#jot-preview-content a").click(function(){return!1}))},"json"),$j("#jot-preview").val("0"),!0}function unpause(){totStopped=!1,stopped=!1,$j("#pause").html("")}function bin2hex(e){var t,n,r=0,i=[];e+="",r=e.length;for(n=0;n'+e.desc+'
    '+e.version+'
    '+e.credits+"
    ")})}var src=null,prev=null,livetime=null,msie=!1,stopped=!1,totStopped=!1,timer=null,pr=0,liking=0,in_progress=!1,langSelect=!1,commentBusy=!1,last_popup_menu=null,last_popup_button=null;$j(function(){function e(e){last_popup_menu&&"#"+last_popup_menu.attr("id")!==$j(e.target).attr("rel")&&(last_popup_menu.hide(),last_popup_menu.attr("id")=="nav-notifications-menu"&&$j(".main-container").show(),last_popup_button.removeClass("selected"),last_popup_menu=null,last_popup_button=null)}$j.ajaxSetup({cache:!1}),msie=$j.browser.msie,$j(".onoff input").each(function(){val=$j(this).val(),id=$j(this).attr("id"),$j("#"+id+"_onoff ."+(val==0?"on":"off")).addClass("hidden")}),$j(".onoff > a").click(function(e){e.preventDefault();var t=$j(this).siblings("input"),n=1-t.val(),r=t.attr("id");$j("#"+r+"_onoff ."+(n==0?"on":"off")).addClass("hidden"),$j("#"+r+"_onoff ."+(n==1?"on":"off")).removeClass("hidden"),t.val(n)}),$j("img[rel^=#]").click(function(t){return e(t),menu=$j($j(this).attr("rel")),t.preventDefault(),t.stopPropagation(),menu.attr("popup")=="false"?!1:(menu.css("display")=="none"?($j(this).parent().addClass("selected"),menu.show(),menu.attr("id")=="nav-notifications-menu"&&$j(".main-container").hide(),last_popup_menu=menu,last_popup_button=$j(this).parent()):($j(this).parent().removeClass("selected"),menu.hide(),menu.attr("id")=="nav-notifications-menu"&&$j(".main-container").show(),last_popup_menu=null,last_popup_button=null),!1)}),$j("html").click(function(t){e(t)});var t=unescape($j("#nav-notifications-template[rel=template]").html()),n=unescape($j("
    ").append($j("#nav-notifications-see-all").clone()).html()),r=unescape($j("
    ").append($j("#nav-notifications-mark-all").clone()).html()),i=unescape($j("#nav-notifications-menu").html());$j("nav").bind("nav-update",function(e,s){var o=$j(s).find("invalid").text();o==1&&(window.location.href=window.location.href);var u=$j(s).find("net").text();u==0?(u="",$j("#net-update").removeClass("show")):$j("#net-update").addClass("show"),$j("#net-update").html(u);var a=$j(s).find("home").text();a==0?(a="",$j("#home-update").removeClass("show")):$j("#home-update").addClass("show"),$j("#home-update").html(a);var f=$j(s).find("intro").text();f==0?(f="",$j("#intro-update").removeClass("show")):$j("#intro-update").addClass("show"),$j("#intro-update").html(f);var l=$j(s).find("mail").text();l==0?(l="",$j("#mail-update").removeClass("show")):$j("#mail-update").addClass("show"),$j("#mail-update").html(l);var f=$j(s).find("intro").text();f==0?(f="",$j("#intro-update-li").removeClass("show")):$j("#intro-update-li").addClass("show"),$j("#intro-update-li").html(f);var l=$j(s).find("mail").text();l==0?(l="",$j("#mail-update-li").removeClass("show")):$j("#mail-update-li").addClass("show"),$j("#mail-update-li").html(l);var c=$j(s).find("notif");c.children("note").length==0?$j("#nav-notifications-menu").html(i):(nnm=$j("#nav-notifications-menu"),nnm.html(n+r),c.children("note").each(function(){e=$j(this),text=e.text().format(""+e.attr("name")+""),html=t.format(e.attr("href"),e.attr("photo"),text,e.attr("date"),e.attr("seen")),nnm.append(html)})),notif=c.attr("count"),notif>0?$j("#nav-notifications-linkmenu").addClass("on"):$j("#nav-notifications-linkmenu").removeClass("on"),notif==0?(notif="",$j("#notify-update").removeClass("show")):$j("#notify-update").addClass("show"),$j("#notify-update").html(notif);var h=$j(s).find("sysmsgs");h.children("notice").each(function(){text=$j(this).text(),$j.jGrowl(text,{sticky:!1,theme:"notice",life:1500})}),h.children("info").each(function(){text=$j(this).text(),$j.jGrowl(text,{sticky:!1,theme:"info",life:1e3})})}),NavUpdate()});var lockvisible=!1;String.prototype.format=function(){var e=this;for(var t=0;t"),r=r.replace("&","&"),r=r.replace(""",'"'),$j("#comment-edit-text-"+t).val(n+r)}function qCommentInsert(e,t){var n=$j("#comment-edit-text-"+t).val();n==window.commentEmptyText&&(n="",$j("#comment-edit-text-"+t).addClass("comment-edit-text-full"),$j("#comment-edit-text-"+t).removeClass("comment-edit-text-empty"),openMenu("comment-edit-submit-wrapper-"+t));var r=$j(e).val();r=r.replace("<","<"),r=r.replace(">",">"),r=r.replace("&","&"),r=r.replace(""",'"'),$j("#comment-edit-text-"+t).val(n+r),$j(e).val("")}function showHideComments(e){$j("#collapsed-comments-"+e).is(":visible")?($j("#collapsed-comments-"+e).hide(),$j("#hide-comments-"+e).html(window.showMore)):($j("#collapsed-comments-"+e).show(),$j("#hide-comments-"+e).html(window.showFewer))}function jotVideoURL(){reply=prompt(window.vidURL),reply&&reply.length&&addeditortext("[video]"+reply+"[/video]")}function jotAudioURL(){reply=prompt(window.audURL),reply&&reply.length&&addeditortext("[audio]"+reply+"[/audio]")}function jotGetLocation(){reply=prompt(window.whereAreU,$j("#jot-location").val()),reply&&reply.length&&$j("#jot-location").val(reply)}function jotShare(e){$j("#jot-popup").length!=0&&$j("#jot-popup").show(),$j("#like-rotator-"+e).show(),$j.get("share/"+e,function(t){editor||$j("#profile-jot-text").val(""),initEditor(function(){addeditortext(t),$j("#like-rotator-"+e).hide(),$j(window).scrollTop(0)})})}function linkdropper(e){var t=e.dataTransfer.types.contains("text/uri-list");t&&e.preventDefault()}function showEvent(e){}function itemTag(e){reply=prompt(window.term),reply&&reply.length&&(reply=reply.replace("#",""),reply.length&&(commentBusy=!0,$j("body").css("cursor","wait"),$j.get("tagger/"+e+"?term="+reply,NavUpdate),liking=1))}function itemFiler(e){$j.get("filer/",function(t){var n=$j("#id_term_label",t).text();reply=prompt(n),reply&&reply.length&&(commentBusy=!0,$j("body").css("cursor","wait"),$j.get("filer/"+e+"?term="+reply,NavUpdate),liking=1)})}function jotClearLocation(){$j("#jot-coord").val(""),$j("#profile-nolocation-wrapper").hide()}function addeditortext(e){if(plaintext=="none"){var t=$j("#profile-jot-text").val();$j("#profile-jot-text").val(t+e)}}$j(document).ready(function(){$j("#profile-jot-text").focus(enableOnUser),$j("#profile-jot-text").click(enableOnUser);if(typeof window.AjaxUpload!="undefined")switch(window.ajaxType){case"jot-header":var e=new window.AjaxUpload("wall-image-upload",{action:"wall_upload/"+window.nickname,name:"userfile",onSubmit:function(e,t){$j("#profile-rotator").show()},onComplete:function(e,t){addeditortext(t),$j("#profile-rotator").hide()}}),t=new window.AjaxUpload("wall-file-upload",{action:"wall_attach/"+window.nickname,name:"userfile",onSubmit:function(e,t){$j("#profile-rotator").show()},onComplete:function(e,t){addeditortext(t),$j("#profile-rotator").hide()}});break;case"msg-header":var e=new window.AjaxUpload("prvmail-upload",{action:"wall_upload/"+window.nickname,name:"userfile",onSubmit:function(e,t){$j("#profile-rotator").show()},onComplete:function(e,t){tinyMCE.execCommand("mceInsertRawHTML",!1,t),$j("#profile-rotator").hide()}});break;default:}typeof acl=="undefined"&&(acl=new ACL(baseurl+"/acl",[window.allowCID,window.allowGID,window.denyCID,window.denyGID])),window.autoCompleteType=="display-head"&&$j(".comment-wwedit-wrapper textarea").contact_autocomplete(baseurl+"/acl");if(window.aclType=="event_head"){$j("#events-calendar").fullCalendar({events:baseurl+"/events/json/",header:{left:"prev,next today",center:"title",right:"month,agendaWeek,agendaDay"},timeFormat:"H(:mm)",eventClick:function(e,t,n){showEvent(e.id)},eventRender:function(e,t,n){if(e.item["author-name"]==null)return;switch(n.name){case"month":t.find(".fc-event-title").html("{1} : {2}".format(e.item["author-avatar"],e.item["author-name"],e.title));break;case"agendaWeek":t.find(".fc-event-title").html("{1}

    {2}

    {3}

    ".format(e.item["author-avatar"],e.item["author-name"],e.item.desc,e.item.location));break;case"agendaDay":t.find(".fc-event-title").html("{1}

    {2}

    {3}

    ".format(e.item["author-avatar"],e.item["author-name"],e.item.desc,e.item.location))}}});var n=location.href.replace(baseurl,"").split("/");n.length>=4&&$j("#events-calendar").fullCalendar("gotoDate",n[2],n[3]-1);var r=location.hash.split("-");r.length==2&&r[0]=="#link"&&showEvent(r[1])}(window.aclType=="settings-head"||window.aclType=="photos_head"||window.aclType=="event_head")&&$j("#contact_allow, #contact_deny, #group_allow, #group_deny").change(function(){var e;$j("#contact_allow option:selected, #contact_deny option:selected, #group_allow option:selected, #group_deny option:selected").each(function(){e=$j(this).text(),$j("#jot-perms-icon").removeClass("unlock").addClass("lock"),$j("#jot-public").hide()}),e==null&&($j("#jot-perms-icon").removeClass("lock").addClass("unlock"),$j("#jot-public").show())}).trigger("change");switch(window.autocompleteType){case"msg-header":var i=$j("#recip").autocomplete({serviceUrl:baseurl+"/acl",minChars:2,width:350,onSelect:function(e,t){$j("#recip-complete").val(t)}});break;case"contacts-head":var i=$j("#contacts-search").autocomplete({serviceUrl:baseurl+"/acl",minChars:2,width:350});i.setOptions({params:{type:"a"}});break;default:}$j("#event-share-checkbox").change(function(){$j("#event-share-checkbox").is(":checked")?$j("#acl-wrapper").show():$j("#acl-wrapper").hide()}).trigger("change"),$j(".popupbox").click(function(){var e=$j($j(this).attr("href")).parent();return e.css("display")=="none"?e.show():e.hide(),!1})}),$j(function(){$j("nav").bind("nav-update",function(e,t){var n=$j("#pending-update"),r=$j(t).find("register").text();r=="0"?(r="",n.hide()):n.show(),n.html(r)})});var editor=!1,textlen=0,plaintext="none",ispublic=window.isPublic;switch(window.ajaxType){case"jot-header":function jotGetLink(){reply=prompt(window.linkURL),reply&&reply.length&&(reply=bin2hex(reply),$j("#profile-rotator").show(),$j.get("parse_url?binurl="+reply,function(e){addeditortext(e),$j("#profile-rotator").hide()}))}function linkdrop(e){var t=e.dataTransfer.getData("text/uri-list");e.target.textContent=t,e.preventDefault(),t&&t.length&&(t=bin2hex(t),$j("#profile-rotator").show(),$j.get("parse_url?binurl="+t,function(e){editor||$j("#profile-jot-text").val(""),initEditor(function(){addeditortext(e),$j("#profile-rotator").hide()})}))}break;case"msg-header":case"wallmsg-header":function jotGetLink(){reply=prompt(window.linkURL),reply&&reply.length&&($j("#profile-rotator").show(),$j.get("parse_url?url="+reply,function(e){tinyMCE.execCommand("mceInsertRawHTML",!1,e),$j("#profile-rotator").hide()}))}function linkdrop(e){var t=e.dataTransfer.getData("text/uri-list");e.target.textContent=t,e.preventDefault(),t&&t.length&&($j("#profile-rotator").show(),$j.get("parse_url?url="+t,function(e){tinyMCE.execCommand("mceInsertRawHTML",!1,e),$j("#profile-rotator").hide()}))}break;default:}typeof window.geoTag=="function"&&window.geoTag(); \ No newline at end of file +function insertFormatting(e,t,n){var r=$j("#comment-edit-text-"+n).val();r==e&&(r="",$j("#comment-edit-text-"+n).addClass("comment-edit-text-full"),$j("#comment-edit-text-"+n).removeClass("comment-edit-text-empty"),openMenu("comment-edit-submit-wrapper-"+n),$j("#comment-edit-text-"+n).val(r)),textarea=document.getElementById("comment-edit-text-"+n);if(document.selection)textarea.focus(),selected=document.selection.createRange(),t=="url"?selected.text="["+t+"]"+"http://"+selected.text+"[/"+t+"]":selected.text="["+t+"]"+selected.text+"[/"+t+"]";else if(textarea.selectionStart||textarea.selectionStart=="0"){var i=textarea.selectionStart,s=textarea.selectionEnd;t=="url"?textarea.value=textarea.value.substring(0,i)+"["+t+"]"+"http://"+textarea.value.substring(i,s)+"[/"+t+"]"+textarea.value.substring(s,textarea.value.length):textarea.value=textarea.value.substring(0,i)+"["+t+"]"+textarea.value.substring(i,s)+"[/"+t+"]"+textarea.value.substring(s,textarea.value.length)}return!0}function cmtBbOpen(e){$j(".comment-edit-bb-"+e).show()}function cmtBbClose(e){$j(".comment-edit-bb-"+e).hide()}function initEditor(e){if(editor==0){if(plaintext=="none"){$j("#profile-jot-text").css({height:200,color:"#000"}),$j("#profile-jot-text").contact_autocomplete(baseurl+"/acl"),editor=!0,$j("a#jot-perms-icon, a#settings-default-perms-menu").click(function(){var e=$j("#profile-jot-acl-wrapper").parent();return e.css("display")=="none"?e.show():e.hide(),!1}),$j(".jothidden").show(),typeof e!="undefined"&&e();return}}else typeof e!="undefined"&&e()}function enableOnUser(){if(editor)return;$j(this).val(""),initEditor()}function wallInitEditor(){var e=window.editSelect;e!="none"?tinyMCE.init({theme:"advanced",mode:"specific_textareas",editor_selector:/(profile-jot-text|prvmail-text)/,plugins:"bbcode,paste",theme_advanced_buttons1:"bold,italic,underline,undo,redo,link,unlink,image,forecolor",theme_advanced_buttons2:"",theme_advanced_buttons3:"",theme_advanced_toolbar_location:"top",theme_advanced_toolbar_align:"center",theme_advanced_blockformats:"blockquote,code",gecko_spellcheck:!0,paste_text_sticky:!0,entity_encoding:"raw",add_unload_trigger:!1,remove_linebreaks:!1,force_p_newlines:!1,force_br_newlines:!0,forced_root_block:"",convert_urls:!1,content_css:baseurl+"/view/custom_tinymce.css",theme_advanced_path:!1,setup:function(e){e.onInit.add(function(e){e.pasteAsPlainText=!0;var t=e.editorId,n=$j("#"+t);typeof n.attr("tabindex")!="undefined"&&($j("#"+t+"_ifr").attr("tabindex",n.attr("tabindex")),n.attr("tabindex",null))})}}):$j("#prvmail-text").contact_autocomplete(baseurl+"/acl")}function initCrop(){function e(e,t){$("x1").value=e.x1,$("y1").value=e.y1,$("x2").value=e.x2,$("y2").value=e.y2,$("width").value=t.width,$("height").value=t.height}Event.observe(window,"load",function(){new Cropper.ImgWithPreview("croppa",{previewWrap:"previewWrap",minWidth:175,minHeight:175,maxWidth:640,maxHeight:640,ratioDim:{x:100,y:100},displayOnInit:!0,onEndCrop:e})})}function confirmDelete(){return confirm(window.delItem)}function commentOpen(e,t){e.value==window.commentEmptyText&&(e.value="",$j("#comment-edit-text-"+t).addClass("comment-edit-text-full"),$j("#comment-edit-text-"+t).removeClass("comment-edit-text-empty"),$j("#mod-cmnt-wrap-"+t).show(),openMenu("comment-edit-submit-wrapper-"+t))}function commentClose(e,t){e.value==""&&(e.value=window.commentEmptyText,$j("#comment-edit-text-"+t).removeClass("comment-edit-text-full"),$j("#comment-edit-text-"+t).addClass("comment-edit-text-empty"),$j("#mod-cmnt-wrap-"+t).hide(),closeMenu("comment-edit-submit-wrapper-"+t))}function commentInsert(e,t){var n=$j("#comment-edit-text-"+t).val();n==window.commentEmptyText&&(n="",$j("#comment-edit-text-"+t).addClass("comment-edit-text-full"),$j("#comment-edit-text-"+t).removeClass("comment-edit-text-empty"),openMenu("comment-edit-submit-wrapper-"+t));var r=$j(e).html();r=r.replace("<","<"),r=r.replace(">",">"),r=r.replace("&","&"),r=r.replace(""",'"'),$j("#comment-edit-text-"+t).val(n+r)}function qCommentInsert(e,t){var n=$j("#comment-edit-text-"+t).val();n==window.commentEmptyText&&(n="",$j("#comment-edit-text-"+t).addClass("comment-edit-text-full"),$j("#comment-edit-text-"+t).removeClass("comment-edit-text-empty"),openMenu("comment-edit-submit-wrapper-"+t));var r=$j(e).val();r=r.replace("<","<"),r=r.replace(">",">"),r=r.replace("&","&"),r=r.replace(""",'"'),$j("#comment-edit-text-"+t).val(n+r),$j(e).val("")}function showHideComments(e){$j("#collapsed-comments-"+e).is(":visible")?($j("#collapsed-comments-"+e).hide(),$j("#hide-comments-"+e).html(window.showMore)):($j("#collapsed-comments-"+e).show(),$j("#hide-comments-"+e).html(window.showFewer))}function jotVideoURL(){reply=prompt(window.vidURL),reply&&reply.length&&addeditortext("[video]"+reply+"[/video]")}function jotAudioURL(){reply=prompt(window.audURL),reply&&reply.length&&addeditortext("[audio]"+reply+"[/audio]")}function jotGetLocation(){reply=prompt(window.whereAreU,$j("#jot-location").val()),reply&&reply.length&&$j("#jot-location").val(reply)}function jotShare(e){$j("#jot-popup").length!=0&&$j("#jot-popup").show(),$j("#like-rotator-"+e).show(),$j.get("share/"+e,function(t){editor||$j("#profile-jot-text").val(""),initEditor(function(){addeditortext(t),$j("#like-rotator-"+e).hide(),$j(window).scrollTop(0)})})}function linkdropper(e){var t=e.dataTransfer.types.contains("text/uri-list");t&&e.preventDefault()}function showEvent(e){}function itemTag(e){reply=prompt(window.term),reply&&reply.length&&(reply=reply.replace("#",""),reply.length&&(commentBusy=!0,$j("body").css("cursor","wait"),$j.get("tagger/"+e+"?term="+reply,NavUpdate),liking=1))}function itemFiler(e){$j.get("filer/",function(t){var n=$j("#id_term_label",t).text();reply=prompt(n),reply&&reply.length&&(commentBusy=!0,$j("body").css("cursor","wait"),$j.get("filer/"+e+"?term="+reply,NavUpdate),liking=1)})}function jotClearLocation(){$j("#jot-coord").val(""),$j("#profile-nolocation-wrapper").hide()}function addeditortext(e){if(plaintext=="none"){var t=$j("#profile-jot-text").val();$j("#profile-jot-text").val(t+e)}}$j(document).ready(function(){$j("#profile-jot-text").focus(enableOnUser),$j("#profile-jot-text").click(enableOnUser);if(typeof window.AjaxUpload!="undefined")switch(window.ajaxType){case"jot-header":var e=new window.AjaxUpload("wall-image-upload",{action:"wall_upload/"+window.nickname,name:"userfile",onSubmit:function(e,t){$j("#profile-rotator").show()},onComplete:function(e,t){addeditortext(t),$j("#profile-rotator").hide()}}),t=new window.AjaxUpload("wall-file-upload",{action:"wall_attach/"+window.nickname,name:"userfile",onSubmit:function(e,t){$j("#profile-rotator").show()},onComplete:function(e,t){addeditortext(t),$j("#profile-rotator").hide()}});break;case"msg-header":var e=new window.AjaxUpload("prvmail-upload",{action:"wall_upload/"+window.nickname,name:"userfile",onSubmit:function(e,t){$j("#profile-rotator").show()},onComplete:function(e,t){tinyMCE.execCommand("mceInsertRawHTML",!1,t),$j("#profile-rotator").hide()}});break;default:}typeof window.aclInit!="undefined"&&typeof acl=="undefined"&&(acl=new ACL(baseurl+"/acl",[window.allowCID,window.allowGID,window.denyCID,window.denyGID])),window.autoCompleteType=="display-head"&&$j(".comment-wwedit-wrapper textarea").contact_autocomplete(baseurl+"/acl");if(window.aclType=="event_head"){$j("#events-calendar").fullCalendar({events:baseurl+"/events/json/",header:{left:"prev,next today",center:"title",right:"month,agendaWeek,agendaDay"},timeFormat:"H(:mm)",eventClick:function(e,t,n){showEvent(e.id)},eventRender:function(e,t,n){if(e.item["author-name"]==null)return;switch(n.name){case"month":t.find(".fc-event-title").html("{1} : {2}".format(e.item["author-avatar"],e.item["author-name"],e.title));break;case"agendaWeek":t.find(".fc-event-title").html("{1}

    {2}

    {3}

    ".format(e.item["author-avatar"],e.item["author-name"],e.item.desc,e.item.location));break;case"agendaDay":t.find(".fc-event-title").html("{1}

    {2}

    {3}

    ".format(e.item["author-avatar"],e.item["author-name"],e.item.desc,e.item.location))}}});var n=location.href.replace(baseurl,"").split("/");n.length>=4&&$j("#events-calendar").fullCalendar("gotoDate",n[2],n[3]-1);var r=location.hash.split("-");r.length==2&&r[0]=="#link"&&showEvent(r[1])}(window.aclType=="settings-head"||window.aclType=="photos_head"||window.aclType=="event_head")&&$j("#contact_allow, #contact_deny, #group_allow, #group_deny").change(function(){var e;$j("#contact_allow option:selected, #contact_deny option:selected, #group_allow option:selected, #group_deny option:selected").each(function(){e=$j(this).text(),$j("#jot-perms-icon").removeClass("unlock").addClass("lock"),$j("#jot-public").hide()}),e==null&&($j("#jot-perms-icon").removeClass("lock").addClass("unlock"),$j("#jot-public").show())}).trigger("change");switch(window.autocompleteType){case"msg-header":var i=$j("#recip").autocomplete({serviceUrl:baseurl+"/acl",minChars:2,width:350,onSelect:function(e,t){$j("#recip-complete").val(t)}});break;case"contacts-head":var i=$j("#contacts-search").autocomplete({serviceUrl:baseurl+"/acl",minChars:2,width:350});i.setOptions({params:{type:"a"}});break;default:}$j("#event-share-checkbox").change(function(){$j("#event-share-checkbox").is(":checked")?$j("#acl-wrapper").show():$j("#acl-wrapper").hide()}).trigger("change"),$j(".popupbox").click(function(){var e=$j($j(this).attr("href")).parent();return e.css("display")=="none"?e.show():e.hide(),!1})}),$j(function(){$j("nav").bind("nav-update",function(e,t){var n=$j("#pending-update"),r=$j(t).find("register").text();r=="0"?(r="",n.hide()):n.show(),n.html(r)})});var editor=!1,textlen=0,plaintext="none",ispublic=window.isPublic;switch(window.ajaxType){case"jot-header":function jotGetLink(){reply=prompt(window.linkURL),reply&&reply.length&&(reply=bin2hex(reply),$j("#profile-rotator").show(),$j.get("parse_url?binurl="+reply,function(e){addeditortext(e),$j("#profile-rotator").hide()}))}function linkdrop(e){var t=e.dataTransfer.getData("text/uri-list");e.target.textContent=t,e.preventDefault(),t&&t.length&&(t=bin2hex(t),$j("#profile-rotator").show(),$j.get("parse_url?binurl="+t,function(e){editor||$j("#profile-jot-text").val(""),initEditor(function(){addeditortext(e),$j("#profile-rotator").hide()})}))}break;case"msg-header":case"wallmsg-header":function jotGetLink(){reply=prompt(window.linkURL),reply&&reply.length&&($j("#profile-rotator").show(),$j.get("parse_url?url="+reply,function(e){tinyMCE.execCommand("mceInsertRawHTML",!1,e),$j("#profile-rotator").hide()}))}function linkdrop(e){var t=e.dataTransfer.getData("text/uri-list");e.target.textContent=t,e.preventDefault(),t&&t.length&&($j("#profile-rotator").show(),$j.get("parse_url?url="+t,function(e){tinyMCE.execCommand("mceInsertRawHTML",!1,e),$j("#profile-rotator").hide()}))}break;default:}typeof window.geoTag=="function"&&window.geoTag(); \ No newline at end of file diff --git a/view/theme/frost-mobile/style.css b/view/theme/frost-mobile/style.css index c58a32df66..aefe35071f 100644 --- a/view/theme/frost-mobile/style.css +++ b/view/theme/frost-mobile/style.css @@ -12,7 +12,7 @@ html { /* width: 320px;*/ margin-left: auto; margin-right: auto; - overflow-x:hidden; +/* overflow-x:hidden;*/ } body { @@ -104,7 +104,7 @@ blockquote { #panel { background-color: ivory; position: absolute; - z-index: 2; +/* z-index: 2;*/ width: 30%; padding: 25px; border: 1px solid #444; @@ -256,7 +256,7 @@ nav .nav-link { -webkit-box-shadow: 3px 3px 5px #555; box-shadow: 3px 3px 5px #555; - z-index: 10000; + z-index: 100; } #network-menu-list { @@ -1206,7 +1206,7 @@ input#dfrn-url { position: absolute; left: 0px; top:110px; display: none; - z-index: 10000; +/* z-index: 10000;*/ } .wall-item-photo-menu { margin:0px; padding: 0px; list-style: none } .wall-item-photo-menu li a { display: block; padding: 2px; } @@ -1236,7 +1236,7 @@ input#dfrn-url { position: absolute; left: 75px; top: 80px; - z-index: 100; +/* z-index: 100;*/ } .wall-item-wrapper { margin-left:10px; @@ -1351,12 +1351,23 @@ input#dfrn-url { } .wall-item-content img { + display: block; + margin-top: 10px; + margin-right: auto; + margin-left: auto; max-width: 290px; border-radius: 7px; /* -moz-border-radius: 7px;*/ -webkit-border-radius: 7px; } +.wall-item-content img.smiley { + display: inline; + margin: auto; + border-radius: 0; + -webkit-border-radius: 0; +} + .comment .wall-item-content img { max-width: 280px; } @@ -1415,6 +1426,7 @@ input#dfrn-url { background-repeat: repeat-x;*/ padding: 5px 5px 0px; height: 32px; + } .wall-item-author { /* margin-top: 10px;*/ @@ -2025,7 +2037,7 @@ input#dfrn-url { position: absolute; left: -30px; top: 80px; display: none; - z-index: 10000; + z-index: 101; /* -moz-box-shadow: 3px 3px 5px #555;*/ -webkit-box-shadow: 3px 3px 5px #555; box-shadow: 3px 3px 5px #555; @@ -3393,6 +3405,7 @@ aside input[type='text'] { text-decoration: none; } .field .onoff .off { + border-color:#666666; padding-left: 40px; background-position: left center; @@ -3595,7 +3608,13 @@ aside input[type='text'] { background-image: url('images/globe.png'); background-repeat: no-repeat; } -.noglobe { background-position: -16px -16px;} +/*.noglobe { background-position: -16px -16px;}*/ +.icon.noglobe { + display: block; width: 24px; height: 24px; + background-size: 100% 100%; + background-image: url('images/noglobe.png'); + background-repeat: no-repeat; +} .no { background-position: -32px -16px;} .pause { background-position: -48px -16px;} .play { background-position: -64px -16px;} @@ -3810,7 +3829,7 @@ aside input[type='text'] { max-height:150px; background-color:#ffffff; overflow:auto; - z-index:100000; + z-index:102; border:1px solid #cccccc; } .acpopupitem { @@ -3884,16 +3903,15 @@ ul.notifications-menu-popup { display: none; width: 10em; margin: 0px; - padding: 0px; + padding: 0px 0.3em; list-style: none; - z-index: 100000; - right: -55px; + right: -60px; } #nav-notifications-menu { width: 300px; /* max-height: 400px;*/ height: auto; - overflow-y: scroll;overflow-style:scrollbar; +/* overflow-y: scroll;overflow-style:scrollbar;*/ background-color:#FFFFFF; /* -moz-border-radius: 5px;*/ -webkit-border-radius: 5px; @@ -3902,6 +3920,7 @@ ul.notifications-menu-popup { /* -moz-box-shadow: 3px 3px 5px #555;*/ -webkit-box-shadow: 3px 3px 5px #555; box-shadow: 3px 3px 5px #555; +/* z-index: 103;*/ } #nav-notifications-menu .contactname { font-weight: bold; font-size: 0.9em; } #nav-notifications-menu img { float: left; margin-right: 5px; } diff --git a/view/theme/frost-mobile/theme.php b/view/theme/frost-mobile/theme.php index 018c50a88a..b4ae1fcf96 100644 --- a/view/theme/frost-mobile/theme.php +++ b/view/theme/frost-mobile/theme.php @@ -4,7 +4,7 @@ * Name: Frost--mobile version * Description: Like frosted glass * Credits: Navigation icons taken from http://iconza.com. Other icons taken from http://thenounproject.com, including: Like, Dislike, Black Lock, Unlock, Pencil, Tag, Camera, Paperclip (Marie Coons), Folder (Sergio Calcara), Chain-link (Andrew Fortnum), Speaker (Harold Kim), Quotes (Henry Ryder), Video Camera (Anas Ramadan), and Left Arrow, Right Arrow, and Delete X (all three P.J. Onori). All under Attribution (CC BY 3.0). Others from The Noun Project are public domain or No Rights Reserved (CC0). - * Version: Version 0.2.11 + * Version: Version 0.2.12 * Author: Zach P * Maintainer: Zach P */ diff --git a/view/theme/frost-mobile/wall_item.tpl b/view/theme/frost-mobile/wall_item.tpl deleted file mode 100644 index f75059d9c7..0000000000 --- a/view/theme/frost-mobile/wall_item.tpl +++ /dev/null @@ -1,82 +0,0 @@ - - -
    -
    - -
    - - $item.name - - -
    - -
    - {{ if $item.lock }}$item.lock - {{ else }}
    {{ endif }} -
    $item.location
    -
    -
    - - $item.name -
    $item.ago
    - - -
    - -
    -
    $item.title
    - -
    $item.body - - {{ for $item.tags as $tag }} - $tag - {{ endfor }} - -
    -
    -
    - {{ if $item.vote }} - - {{ endif }} - {{ if $item.plink }} - - {{ endif }} - {{ if $item.edpost }} - - {{ endif }} - - {{ if $item.star }} - - - {{ endif }} - {{ if $item.filer }} - - {{ endif }} - - {{ if $item.drop.dropping }}{{ endif }} - - {{ if $item.drop.dropping }}{{ endif }} - -
    -
    - - -
    $item.dislike
    - - $item.comment - - - - diff --git a/view/theme/frost-mobile/wall_thread.tpl b/view/theme/frost-mobile/wall_thread.tpl index d6fb677c5f..b99f0daf0f 100644 --- a/view/theme/frost-mobile/wall_thread.tpl +++ b/view/theme/frost-mobile/wall_thread.tpl @@ -6,46 +6,50 @@ {{endif}}
    - +
    -
    - -
    +
    + {{ if $item.owner_url }} +
    + + $item.owner_name +
    +
    $item.wall
    + {{ endif }} + +
    - $item.name - + $item.name +
    +
      + $item.item_photo_menu +
    +
    --> +
    {{ if $item.lock }}$item.lock {{ else }}
    {{ endif }} -
    $item.location
    +
    $item.location
    - $item.name -
    $item.ago
    - + $item.name{{ if $item.owner_url }} $item.to $item.owner_name $item.vwall{{ endif }}
    +
    $item.ago
    -
    -
    $item.title
    $item.body - + {{ for $item.tags as $tag }} $tag {{ endfor }} - +
    @@ -58,7 +62,7 @@
    {{ endif }} {{ if $item.plink }} - + {{ endif }} {{ if $item.edpost }} @@ -70,14 +74,15 @@ {{ endif }} {{ if $item.filer }} - {{ endif }} - + {{ endif }} + + {{ if $item.drop.dropping }}{{ endif }} - - {{ if $item.drop.dropping }}{{ endif }} + + {{ if $item.drop.pagedrop }}{{ endif }}
    -
    +
    $item.dislike
    diff --git a/view/theme/frost-mobile/wallwall_item.tpl b/view/theme/frost-mobile/wallwall_item.tpl deleted file mode 100644 index 9affbcebae..0000000000 --- a/view/theme/frost-mobile/wallwall_item.tpl +++ /dev/null @@ -1,87 +0,0 @@ - - -
    -
    -
    - - $item.owner_name -
    -
    $item.wall
    - -
    - - $item.name - - -
    - -
    - {{ if $item.lock }}$item.lock - {{ else }}
    {{ endif }} -
    $item.location
    -
    -
    - - $item.name $item.to $item.owner_name $item.vwall
    -
    $item.ago
    - -
    -
    $item.title
    - -
    $item.body - - {{ for $item.tags as $tag }} - $tag - {{ endfor }} - -
    -
    -
    - {{ if $item.vote }} - - {{ endif }} - {{ if $item.plink }} - - {{ endif }} - {{ if $item.edpost }} - - {{ endif }} - - {{ if $item.star }} - - - {{ endif }} - {{ if $item.filer }} - - {{ endif }} - - - {{ if $item.drop.dropping }}{{ endif }} - - {{ if $item.drop.dropping }}{{ endif }} - -
    -
    - - -
    $item.dislike
    -
    - - $item.comment - - - - - diff --git a/view/theme/frost-mobile/wallwall_thread.tpl b/view/theme/frost-mobile/wallwall_thread.tpl deleted file mode 100644 index 3af6aaa111..0000000000 --- a/view/theme/frost-mobile/wallwall_thread.tpl +++ /dev/null @@ -1,109 +0,0 @@ -{{if $item.comment_firstcollapsed}} -
    - $item.num_comments $item.hide_text -
    - {{endif}} - diff --git a/view/theme/frost/acl_selector.tpl b/view/theme/frost/acl_selector.tpl index 9fd7dd7ab3..327f18b65f 100644 --- a/view/theme/frost/acl_selector.tpl +++ b/view/theme/frost/acl_selector.tpl @@ -19,4 +19,5 @@ window.allowGID = $allowgid; window.denyCID = $denycid; window.denyGID = $denygid; + window.aclInit = "true"; diff --git a/view/theme/frost/admin_site.tpl b/view/theme/frost/admin_site.tpl index 91aeda0357..087de4f7db 100644 --- a/view/theme/frost/admin_site.tpl +++ b/view/theme/frost/admin_site.tpl @@ -40,7 +40,7 @@ {{ inc field_checkbox.tpl with $field=$dfrn_only }}{{ endinc }} {{ inc field_input.tpl with $field=$global_directory }}{{ endinc }} {{ inc field_checkbox.tpl with $field=$thread_allow }}{{ endinc }} - {{ inc field_checkbox.tpl with $field=$newuser_public }}{{ endinc }} + {{ inc field_checkbox.tpl with $field=$newuser_private }}{{ endinc }}
    diff --git a/view/theme/frost/filebrowser.tpl b/view/theme/frost/filebrowser.tpl new file mode 100644 index 0000000000..e9eafde1e6 --- /dev/null +++ b/view/theme/frost/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/theme/frost/images/noglobe.png b/view/theme/frost/images/noglobe.png new file mode 100644 index 0000000000..b5aceb6d5f Binary files /dev/null and b/view/theme/frost/images/noglobe.png differ diff --git a/view/theme/frost/jot.tpl b/view/theme/frost/jot.tpl index da47414ae2..e7a89d8e07 100644 --- a/view/theme/frost/jot.tpl +++ b/view/theme/frost/jot.tpl @@ -60,6 +60,8 @@ $jotplugins
    + +
    diff --git a/view/theme/frost/jot_geotag.tpl b/view/theme/frost/jot_geotag.tpl new file mode 100644 index 0000000000..3f8bee91a7 --- /dev/null +++ b/view/theme/frost/jot_geotag.tpl @@ -0,0 +1,11 @@ + + if(navigator.geolocation) { + navigator.geolocation.getCurrentPosition(function(position) { + var lat = position.coords.latitude.toFixed(4); + var lon = position.coords.longitude.toFixed(4); + + $j('#jot-coord').val(lat + ', ' + lon); + $j('#profile-nolocation-wrapper').show(); + }); + } + diff --git a/view/theme/frost/js/theme.js b/view/theme/frost/js/theme.js index 7c7e3c1d24..37d06c80cb 100644 --- a/view/theme/frost/js/theme.js +++ b/view/theme/frost/js/theme.js @@ -17,7 +17,7 @@ $j(document).ready(function() { });*/ - if(typeof acl=="undefined"){ + if(typeof window.aclInit !="undefined" && typeof acl=="undefined"){ acl = new ACL( baseurl+"/acl", [ window.allowCID,window.allowGID,window.denyCID,window.denyGID ] @@ -935,6 +935,37 @@ function jotAudioURL() { function jotGetLocation() { + +/* if(navigator.geolocation) { + + navigator.geolocation.getCurrentPosition(function(position) { + var lat = position.coords.latitude; + var lng = position.coords.longitude; + + $j.ajax({ + type: 'GET', + url: 'http://nominatim.openstreetmap.org/reverse?format=json&lat='+lat+'&lon='+lng, + jsonp: 'json_callback', + contentType: 'application/json', + dataType: 'jsonp', + success: function(json) { + console.log(json); + var locationDisplay = json.address.building+', '+json.address.city+', '+json.address.state; + $j('#jot-location').val(locationDisplay); + $j('#jot-display-location').html('Location: '+locationDisplay); + $j('#jot-display-location').show(); + } + }); + }); + + } + else { + reply = prompt(window.whereAreU, $j('#jot-location').val()); + if(reply && reply.length) { + $j('#jot-location').val(reply); + } + }*/ + reply = prompt(window.whereAreU, $j('#jot-location').val()); if(reply && reply.length) { $j('#jot-location').val(reply); diff --git a/view/theme/frost/js/theme.min.js b/view/theme/frost/js/theme.min.js index 8c5cd16ada..c04d99b5ab 100644 --- a/view/theme/frost/js/theme.min.js +++ b/view/theme/frost/js/theme.min.js @@ -1 +1 @@ -function showEvent(e){$j.get(baseurl+"/events/?id="+e,function(e){$j.fancybox(e)})}function initCrop(){function e(e,t){$("x1").value=e.x1,$("y1").value=e.y1,$("x2").value=e.x2,$("y2").value=e.y2,$("width").value=t.width,$("height").value=t.height}Event.observe(window,"load",function(){new Cropper.ImgWithPreview("croppa",{previewWrap:"previewWrap",minWidth:175,minHeight:175,maxWidth:640,maxHeight:640,ratioDim:{x:100,y:100},displayOnInit:!0,onEndCrop:e})})}function showNavMenu(e){window.navMenuTimeout[e+"-closing"]?(window.navMenuTimeout[e+"-closing"]=!1,clearTimeout(window.navMenuTimeout[e+"-timeout"])):(window.navMenuTimeout[e+"-opening"]=!0,window.navMenuTimeout[e+"-timeout"]=setTimeout(function(){$j(e).slideDown("fast").show(),window.navMenuTimeout[e+"-opening"]=!1},200))}function hideNavMenu(e){window.navMenuTimeout[e+"-opening"]?(window.navMenuTimeout[e+"-opening"]=!1,clearTimeout(window.navMenuTimeout[e+"-timeout"])):(window.navMenuTimeout[e+"-closing"]=!0,window.navMenuTimeout[e+"-timeout"]=setTimeout(function(){$j(e).slideUp("fast"),window.navMenuTimeout[e+"-closing"]=!1},500))}function insertFormatting(e,t,n){var r=$j("#comment-edit-text-"+n).val();r==e&&(r="",$j("#comment-edit-text-"+n).addClass("comment-edit-text-full"),$j("#comment-edit-text-"+n).removeClass("comment-edit-text-empty"),openMenu("comment-edit-submit-wrapper-"+n),$j("#comment-edit-text-"+n).val(r)),textarea=document.getElementById("comment-edit-text-"+n);if(document.selection)textarea.focus(),selected=document.selection.createRange(),t=="url"?selected.text="["+t+"]"+"http://"+selected.text+"[/"+t+"]":selected.text="["+t+"]"+selected.text+"[/"+t+"]";else if(textarea.selectionStart||textarea.selectionStart=="0"){var i=textarea.selectionStart,s=textarea.selectionEnd;t=="url"?textarea.value=textarea.value.substring(0,i)+"["+t+"]"+"http://"+textarea.value.substring(i,s)+"[/"+t+"]"+textarea.value.substring(s,textarea.value.length):textarea.value=textarea.value.substring(0,i)+"["+t+"]"+textarea.value.substring(i,s)+"[/"+t+"]"+textarea.value.substring(s,textarea.value.length)}return!0}function cmtBbOpen(e){$j("#comment-edit-bb-"+e).show()}function cmtBbClose(e){$j("#comment-edit-bb-"+e).hide()}function confirmDelete(){return confirm(window.delItem)}function commentOpen(e,t){e.value==window.commentEmptyText&&(e.value="",$j("#comment-edit-text-"+t).addClass("comment-edit-text-full"),$j("#comment-edit-text-"+t).removeClass("comment-edit-text-empty"),$j("#mod-cmnt-wrap-"+t).show(),openMenu("comment-edit-submit-wrapper-"+t))}function commentClose(e,t){e.value==""&&(e.value=window.commentEmptyText,$j("#comment-edit-text-"+t).removeClass("comment-edit-text-full"),$j("#comment-edit-text-"+t).addClass("comment-edit-text-empty"),$j("#mod-cmnt-wrap-"+t).hide(),closeMenu("comment-edit-submit-wrapper-"+t))}function commentInsert(e,t){var n=$j("#comment-edit-text-"+t).val();n==window.commentEmptyText&&(n="",$j("#comment-edit-text-"+t).addClass("comment-edit-text-full"),$j("#comment-edit-text-"+t).removeClass("comment-edit-text-empty"),openMenu("comment-edit-submit-wrapper-"+t));var r=$j(e).html();r=r.replace("<","<"),r=r.replace(">",">"),r=r.replace("&","&"),r=r.replace(""",'"'),$j("#comment-edit-text-"+t).val(n+r)}function qCommentInsert(e,t){var n=$j("#comment-edit-text-"+t).val();n==window.commentEmptyText&&(n="",$j("#comment-edit-text-"+t).addClass("comment-edit-text-full"),$j("#comment-edit-text-"+t).removeClass("comment-edit-text-empty"),openMenu("comment-edit-submit-wrapper-"+t));var r=$j(e).val();r=r.replace("<","<"),r=r.replace(">",">"),r=r.replace("&","&"),r=r.replace(""",'"'),$j("#comment-edit-text-"+t).val(n+r),$j(e).val("")}function showHideComments(e){$j("#collapsed-comments-"+e).is(":visible")?($j("#collapsed-comments-"+e).hide(),$j("#hide-comments-"+e).html(window.showMore)):($j("#collapsed-comments-"+e).show(),$j("#hide-comments-"+e).html(window.showFewer))}function enableOnUser(){if(editor)return;$j(this).val(""),initEditor()}function initEditor(e){if(editor==0){$j("#profile-jot-text-loading").show();if(plaintext=="none"){$j("#profile-jot-text-loading").hide(),$j("#profile-jot-text").css({height:200,color:"#000"}),$j("#profile-jot-text").contact_autocomplete(baseurl+"/acl"),editor=!0,$j("a#jot-perms-icon").fancybox({transitionIn:"elastic",transitionOut:"elastic"}),$j(".jothidden").show(),typeof e!="undefined"&&e();return}tinyMCE.init({theme:"advanced",mode:"specific_textareas",editor_selector:window.editSelect,auto_focus:"profile-jot-text",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:"",theme_advanced_toolbar_location:"top",theme_advanced_toolbar_align:"center",theme_advanced_blockformats:"blockquote,code",gecko_spellcheck:!0,paste_text_sticky:!0,entity_encoding:"raw",add_unload_trigger:!1,remove_linebreaks:!1,force_p_newlines:!1,force_br_newlines:!0,forced_root_block:"",convert_urls:!1,content_css:window.baseURL+"/view/custom_tinymce.css",theme_advanced_path:!1,file_browser_callback:"fcFileBrowser",setup:function(t){cPopup=null,t.onKeyDown.add(function(e,t){cPopup!==null&&cPopup.onkey(t)}),t.onKeyUp.add(function(e,t){var n=tinyMCE.activeEditor.getContent();match=n.match(/@([^ \n]+)$/),match!==null?(cPopup===null&&(cPopup=new ACPopup(this,baseurl+"/acl")),cPopup.ready&&match[1]!==cPopup.searchText&&cPopup.search(match[1]),cPopup.ready||(cPopup=null)):cPopup!==null&&(cPopup.close(),cPopup=null),textlen=n.length,textlen!=0&&$j("#jot-perms-icon").is(".unlock")?$j("#profile-jot-desc").html(ispublic):$j("#profile-jot-desc").html(" "),textlen<=140&&($j("#character-counter").removeClass("red"),$j("#character-counter").removeClass("orange"),$j("#character-counter").addClass("grey")),textlen>140&&textlen<=420&&($j("#character-counter").removeClass("grey"),$j("#character-counter").removeClass("red"),$j("#character-counter").addClass("orange")),textlen>420&&($j("#character-counter").removeClass("grey"),$j("#character-counter").removeClass("orange"),$j("#character-counter").addClass("red")),$j("#character-counter").text(textlen)}),t.onInit.add(function(t){t.pasteAsPlainText=!0,$j("#profile-jot-text-loading").hide(),$j(".jothidden").show(),typeof e!="undefined"&&e()})}}),editor=!0,$j("a#jot-perms-icon").fancybox({transitionIn:"none",transitionOut:"none"})}else typeof e!="undefined"&&e()}function msgInitEditor(){plaintext!="none"?tinyMCE.init({theme:"advanced",mode:"specific_textareas",editor_selector:/(profile-jot-text|prvmail-text)/,plugins:"bbcode,paste",theme_advanced_buttons1:"bold,italic,underline,undo,redo,link,unlink,image,forecolor",theme_advanced_buttons2:"",theme_advanced_buttons3:"",theme_advanced_toolbar_location:"top",theme_advanced_toolbar_align:"center",theme_advanced_blockformats:"blockquote,code",gecko_spellcheck:!0,paste_text_sticky:!0,entity_encoding:"raw",add_unload_trigger:!1,remove_linebreaks:!1,force_p_newlines:!1,force_br_newlines:!0,forced_root_block:"",convert_urls:!1,content_css:baseurl+"/view/custom_tinymce.css",theme_advanced_path:!1,setup:function(e){e.onInit.add(function(e){e.pasteAsPlainText=!0;var t=e.editorId,n=$j("#"+t);typeof n.attr("tabindex")!="undefined"&&($j("#"+t+"_ifr").attr("tabindex",n.attr("tabindex")),n.attr("tabindex",null))})}}):$j("#prvmail-text").contact_autocomplete(baseurl+"/acl")}function profInitEditor(){tinyMCE.init({theme:"advanced",mode:window.editSelect,plugins:"bbcode,paste",theme_advanced_buttons1:"bold,italic,underline,undo,redo,link,unlink,image,forecolor,formatselect,code",theme_advanced_buttons2:"",theme_advanced_buttons3:"",theme_advanced_toolbar_location:"top",theme_advanced_toolbar_align:"center",theme_advanced_blockformats:"blockquote,code",gecko_spellcheck:!0,paste_text_sticky:!0,entity_encoding:"raw",add_unload_trigger:!1,remove_linebreaks:!1,force_p_newlines:!1,force_br_newlines:!0,forced_root_block:"",content_css:baseurl+"/view/custom_tinymce.css",theme_advanced_path:!1,setup:function(e){e.onInit.add(function(e){e.pasteAsPlainText=!0})}})}function eventInitEditor(){tinyMCE.init({theme:"advanced",mode:"textareas",plugins:"bbcode,paste",theme_advanced_buttons1:"bold,italic,underline,undo,redo,link,unlink,image,forecolor,formatselect,code",theme_advanced_buttons2:"",theme_advanced_buttons3:"",theme_advanced_toolbar_location:"top",theme_advanced_toolbar_align:"center",theme_advanced_blockformats:"blockquote,code",gecko_spellcheck:!0,paste_text_sticky:!0,entity_encoding:"raw",add_unload_trigger:!1,remove_linebreaks:!1,force_p_newlines:!1,force_br_newlines:!0,forced_root_block:"",content_css:baseurl+"/view/custom_tinymce.css",theme_advanced_path:!1,setup:function(e){e.onInit.add(function(e){e.pasteAsPlainText=!0})}})}function contactInitEditor(){tinyMCE.init({theme:"advanced",mode:window.editSelect,elements:"contact-edit-info",plugins:"bbcode",theme_advanced_buttons1:"bold,italic,underline,undo,redo,link,unlink,image,forecolor",theme_advanced_buttons2:"",theme_advanced_buttons3:"",theme_advanced_toolbar_location:"top",theme_advanced_toolbar_align:"center",theme_advanced_styles:"blockquote,code",gecko_spellcheck:!0,entity_encoding:"raw",add_unload_trigger:!1,remove_linebreaks:!1,force_p_newlines:!1,force_br_newlines:!0,forced_root_block:"",content_css:baseurl+"/view/custom_tinymce.css"})}function wallInitEditor(){var e=window.editSelect;e!="none"?tinyMCE.init({theme:"advanced",mode:"specific_textareas",editor_selector:/(profile-jot-text|prvmail-text)/,plugins:"bbcode,paste",theme_advanced_buttons1:"bold,italic,underline,undo,redo,link,unlink,image,forecolor",theme_advanced_buttons2:"",theme_advanced_buttons3:"",theme_advanced_toolbar_location:"top",theme_advanced_toolbar_align:"center",theme_advanced_blockformats:"blockquote,code",gecko_spellcheck:!0,paste_text_sticky:!0,entity_encoding:"raw",add_unload_trigger:!1,remove_linebreaks:!1,force_p_newlines:!1,force_br_newlines:!0,forced_root_block:"",convert_urls:!1,content_css:baseurl+"/view/custom_tinymce.css",theme_advanced_path:!1,setup:function(e){e.onInit.add(function(e){e.pasteAsPlainText=!0;var t=e.editorId,n=$j("#"+t);typeof n.attr("tabindex")!="undefined"&&($j("#"+t+"_ifr").attr("tabindex",n.attr("tabindex")),n.attr("tabindex",null))})}}):$j("#prvmail-text").contact_autocomplete(baseurl+"/acl")}function deleteCheckedItems(){var e="";$j(".item-select").each(function(){$j(this).is(":checked")&&(e.length!=0?e=e+","+$j(this).val():e=$j(this).val())}),$j.post("item",{dropitems:e},function(e){window.location.reload()})}function jotVideoURL(){reply=prompt(window.vidURL),reply&&reply.length&&addeditortext("[video]"+reply+"[/video]")}function jotAudioURL(){reply=prompt(window.audURL),reply&&reply.length&&addeditortext("[audio]"+reply+"[/audio]")}function jotGetLocation(){reply=prompt(window.whereAreU,$j("#jot-location").val()),reply&&reply.length&&$j("#jot-location").val(reply)}function jotShare(e){$j("#jot-popup").length!=0&&$j("#jot-popup").show(),$j("#like-rotator-"+e).show(),$j.get("share/"+e,function(t){editor||$j("#profile-jot-text").val(""),initEditor(function(){addeditortext(t),$j("#like-rotator-"+e).hide(),$j(window).scrollTop(0)})})}function linkdropper(e){var t=e.dataTransfer.types.contains("text/uri-list");t&&e.preventDefault()}function itemTag(e){reply=prompt(window.term),reply&&reply.length&&(reply=reply.replace("#",""),reply.length&&(commentBusy=!0,$j("body").css("cursor","wait"),$j.get("tagger/"+e+"?term="+reply,NavUpdate),liking=1))}function itemFiler(e){var t=$j("input").css("border-color");$j.get("filer/",function(n){$j.fancybox(n),$j("#id_term").keypress(function(){$j(this).css("border-color",t)}),$j("#select_term").change(function(){$j("#id_term").css("border-color",t)}),$j("#filer_save").click(function(t){return t.preventDefault(),reply=$j("#id_term").val(),reply&&reply.length?(commentBusy=!0,$j("body").css("cursor","wait"),$j.get("filer/"+e+"?term="+reply,NavUpdate),liking=1,$j.fancybox.close()):$j("#id_term").css("border-color","#FF0000"),!1})})}function jotClearLocation(){$j("#jot-coord").val(""),$j("#profile-nolocation-wrapper").hide()}function addeditortext(e){if(plaintext=="none"){var t=$j("#profile-jot-text").val();$j("#profile-jot-text").val(t+e)}else tinyMCE.execCommand("mceInsertRawHTML",!1,e)}$j(document).ready(function(){window.navMenuTimeout={"#network-menu-list-timeout":null,"#contacts-menu-list-timeout":null,"#system-menu-list-timeout":null,"#network-menu-list-opening":!1,"#contacts-menu-list-opening":!1,"#system-menu-list-opening":!1,"#network-menu-list-closing":!1,"#contacts-menu-list-closing":!1,"#system-menu-list-closing":!1},typeof acl=="undefined"&&(acl=new ACL(baseurl+"/acl",[window.allowCID,window.allowGID,window.denyCID,window.denyGID])),$j("#profile-jot-text").focus(enableOnUser),$j("#profile-jot-text").click(enableOnUser),$j(".nav-menu-link").hover(function(){showNavMenu($j(this).attr("rel"))},function(){hideNavMenu($j(this).attr("rel"))}),$j(".group-edit-icon").hover(function(){$j(this).addClass("icon"),$j(this).removeClass("iconspacer")},function(){$j(this).removeClass("icon"),$j(this).addClass("iconspacer")}),$j(".sidebar-group-element").hover(function(){id=$j(this).attr("id"),$j("#edit-"+id).addClass("icon"),$j("#edit-"+id).removeClass("iconspacer")},function(){id=$j(this).attr("id"),$j("#edit-"+id).removeClass("icon"),$j("#edit-"+id).addClass("iconspacer")}),$j(".savedsearchdrop").hover(function(){$j(this).addClass("drop"),$j(this).addClass("icon"),$j(this).removeClass("iconspacer")},function(){$j(this).removeClass("drop"),$j(this).removeClass("icon"),$j(this).addClass("iconspacer")}),$j(".savedsearchterm").hover(function(){id=$j(this).attr("id"),$j("#drop-"+id).addClass("icon"),$j("#drop-"+id).addClass("drophide"),$j("#drop-"+id).removeClass("iconspacer")},function(){id=$j(this).attr("id"),$j("#drop-"+id).removeClass("icon"),$j("#drop-"+id).removeClass("drophide"),$j("#drop-"+id).addClass("iconspacer")}),window.autoCompleteType=="display-head"&&$j(".comment-wwedit-wrapper textarea").contact_autocomplete(baseurl+"/acl");if(window.aclType=="event_head"){$j("#events-calendar").fullCalendar({events:baseurl+"/events/json/",header:{left:"prev,next today",center:"title",right:"month,agendaWeek,agendaDay"},timeFormat:"H(:mm)",eventClick:function(e,t,n){showEvent(e.id)},eventRender:function(e,t,n){if(e.item["author-name"]==null)return;switch(n.name){case"month":t.find(".fc-event-title").html("{1} : {2}".format(e.item["author-avatar"],e.item["author-name"],e.title));break;case"agendaWeek":t.find(".fc-event-title").html("{1}

    {2}

    {3}

    ".format(e.item["author-avatar"],e.item["author-name"],e.item.desc,e.item.location));break;case"agendaDay":t.find(".fc-event-title").html("{1}

    {2}

    {3}

    ".format(e.item["author-avatar"],e.item["author-name"],e.item.desc,e.item.location))}}});var e=location.href.replace(baseurl,"").split("/");e.length>=4&&$j("#events-calendar").fullCalendar("gotoDate",e[2],e[3]-1);var t=location.hash.split("-");t.length==2&&t[0]=="#link"&&showEvent(t[1])}$j("#event-share-checkbox").change(function(){$j("#event-share-checkbox").is(":checked")?$j("#acl-wrapper").show():$j("#acl-wrapper").hide()}).trigger("change"),(window.aclType=="settings-head"||window.aclType=="photos_head"||window.aclType=="event_head")&&$j("#contact_allow, #contact_deny, #group_allow, #group_deny").change(function(){var e;$j("#contact_allow option:selected, #contact_deny option:selected, #group_allow option:selected, #group_deny option:selected").each(function(){e=$j(this).text(),$j("#jot-perms-icon").removeClass("unlock").addClass("lock"),$j("#jot-public").hide()}),e==null&&($j("#jot-perms-icon").removeClass("lock").addClass("unlock"),$j("#jot-public").show())}).trigger("change");switch(window.autocompleteType){case"msg-header":var n=$j("#recip").autocomplete({serviceUrl:baseurl+"/acl",minChars:2,width:350,onSelect:function(e,t){$j("#recip-complete").val(t)}});break;case"contacts-head":var n=$j("#contacts-search").autocomplete({serviceUrl:baseurl+"/acl",minChars:2,width:350});n.setOptions({params:{type:"a"}});break;default:}if(typeof window.AjaxUpload!="undefined")switch(window.ajaxType){case"jot-header":var r=new window.AjaxUpload("wall-image-upload",{action:"wall_upload/"+window.nickname,name:"userfile",onSubmit:function(e,t){$j("#profile-rotator").show()},onComplete:function(e,t){addeditortext(t),$j("#profile-rotator").hide()}}),i=new window.AjaxUpload("wall-file-upload",{action:"wall_attach/"+window.nickname,name:"userfile",onSubmit:function(e,t){$j("#profile-rotator").show()},onComplete:function(e,t){addeditortext(t),$j("#profile-rotator").hide()}});break;case"msg-header":var r=new window.AjaxUpload("prvmail-upload",{action:"wall_upload/"+window.nickname,name:"userfile",onSubmit:function(e,t){$j("#profile-rotator").show()},onComplete:function(e,t){tinyMCE.execCommand("mceInsertRawHTML",!1,t),$j("#profile-rotator").hide()}});break;default:}}),$j(function(){$j("nav").bind("nav-update",function(e,t){var n=$j("#pending-update"),r=$j(t).find("register").text();r=="0"?(r="",n.hide()):n.show(),n.html(r)})}),$j(function(){$j("#cnftheme").fancybox({width:800,autoDimensions:!1,onStart:function(){var e=$j("#id_theme :selected").val(),t=$j("#id_theme_mobile :selected").val();$j("#cnftheme").attr("href",baseurl+"/admin/themes/"+e)},onComplete:function(){$j("div#fancybox-content form").submit(function(e){var t=$j(this).attr("action"),n={};return $j(this).find("input").each(function(){n[$j(this).attr("name")]=$j(this).val()}),$j(this).find("select").each(function(){n[$j(this).attr("name")]=$j(this).children(":selected").val()}),console.log(":)",t,n),$j.post(t,n,function(e){timer&&clearTimeout(timer),NavUpdate(),$j.fancybox.close()}),!1})}})}),typeof window.photoEdit!="undefined"&&$j(document).keydown(function(e){window.prevLink!=""&&e.ctrlKey&&e.keyCode==37&&(e.preventDefault(),window.location.href=window.prevLink),window.nextLink!=""&&e.ctrlKey&&e.keyCode==39&&(e.preventDefault(),window.location.href=window.nextLink)});switch(window.ajaxType){case"jot-header":function jotGetLink(){reply=prompt(window.linkURL),reply&&reply.length&&(reply=bin2hex(reply),$j("#profile-rotator").show(),$j.get("parse_url?binurl="+reply,function(e){addeditortext(e),$j("#profile-rotator").hide()}))}function linkdrop(e){var t=e.dataTransfer.getData("text/uri-list");e.target.textContent=t,e.preventDefault(),t&&t.length&&(t=bin2hex(t),$j("#profile-rotator").show(),$j.get("parse_url?binurl="+t,function(e){editor||$j("#profile-jot-text").val(""),initEditor(function(){addeditortext(e),$j("#profile-rotator").hide()})}))}break;case"msg-header":case"wallmsg-header":function jotGetLink(){reply=prompt(window.linkURL),reply&&reply.length&&($j("#profile-rotator").show(),$j.get("parse_url?url="+reply,function(e){tinyMCE.execCommand("mceInsertRawHTML",!1,e),$j("#profile-rotator").hide()}))}function linkdrop(e){var t=e.dataTransfer.getData("text/uri-list");e.target.textContent=t,e.preventDefault(),t&&t.length&&($j("#profile-rotator").show(),$j.get("parse_url?url="+t,function(e){tinyMCE.execCommand("mceInsertRawHTML",!1,e),$j("#profile-rotator").hide()}))}break;default:}var editor=!1,textlen=0,plaintext=window.editSelect,ispublic=window.isPublic;typeof window.geoTag=="function"&&window.geoTag(); \ No newline at end of file +function showEvent(e){$j.get(baseurl+"/events/?id="+e,function(e){$j.fancybox(e)})}function initCrop(){function e(e,t){$("x1").value=e.x1,$("y1").value=e.y1,$("x2").value=e.x2,$("y2").value=e.y2,$("width").value=t.width,$("height").value=t.height}Event.observe(window,"load",function(){new Cropper.ImgWithPreview("croppa",{previewWrap:"previewWrap",minWidth:175,minHeight:175,maxWidth:640,maxHeight:640,ratioDim:{x:100,y:100},displayOnInit:!0,onEndCrop:e})})}function showNavMenu(e){window.navMenuTimeout[e+"-closing"]?(window.navMenuTimeout[e+"-closing"]=!1,clearTimeout(window.navMenuTimeout[e+"-timeout"])):(window.navMenuTimeout[e+"-opening"]=!0,window.navMenuTimeout[e+"-timeout"]=setTimeout(function(){$j(e).slideDown("fast").show(),window.navMenuTimeout[e+"-opening"]=!1},200))}function hideNavMenu(e){window.navMenuTimeout[e+"-opening"]?(window.navMenuTimeout[e+"-opening"]=!1,clearTimeout(window.navMenuTimeout[e+"-timeout"])):(window.navMenuTimeout[e+"-closing"]=!0,window.navMenuTimeout[e+"-timeout"]=setTimeout(function(){$j(e).slideUp("fast"),window.navMenuTimeout[e+"-closing"]=!1},500))}function insertFormatting(e,t,n){var r=$j("#comment-edit-text-"+n).val();r==e&&(r="",$j("#comment-edit-text-"+n).addClass("comment-edit-text-full"),$j("#comment-edit-text-"+n).removeClass("comment-edit-text-empty"),openMenu("comment-edit-submit-wrapper-"+n),$j("#comment-edit-text-"+n).val(r)),textarea=document.getElementById("comment-edit-text-"+n);if(document.selection)textarea.focus(),selected=document.selection.createRange(),t=="url"?selected.text="["+t+"]"+"http://"+selected.text+"[/"+t+"]":selected.text="["+t+"]"+selected.text+"[/"+t+"]";else if(textarea.selectionStart||textarea.selectionStart=="0"){var i=textarea.selectionStart,s=textarea.selectionEnd;t=="url"?textarea.value=textarea.value.substring(0,i)+"["+t+"]"+"http://"+textarea.value.substring(i,s)+"[/"+t+"]"+textarea.value.substring(s,textarea.value.length):textarea.value=textarea.value.substring(0,i)+"["+t+"]"+textarea.value.substring(i,s)+"[/"+t+"]"+textarea.value.substring(s,textarea.value.length)}return!0}function cmtBbOpen(e){$j("#comment-edit-bb-"+e).show()}function cmtBbClose(e){$j("#comment-edit-bb-"+e).hide()}function confirmDelete(){return confirm(window.delItem)}function commentOpen(e,t){e.value==window.commentEmptyText&&(e.value="",$j("#comment-edit-text-"+t).addClass("comment-edit-text-full"),$j("#comment-edit-text-"+t).removeClass("comment-edit-text-empty"),$j("#mod-cmnt-wrap-"+t).show(),openMenu("comment-edit-submit-wrapper-"+t))}function commentClose(e,t){e.value==""&&(e.value=window.commentEmptyText,$j("#comment-edit-text-"+t).removeClass("comment-edit-text-full"),$j("#comment-edit-text-"+t).addClass("comment-edit-text-empty"),$j("#mod-cmnt-wrap-"+t).hide(),closeMenu("comment-edit-submit-wrapper-"+t))}function commentInsert(e,t){var n=$j("#comment-edit-text-"+t).val();n==window.commentEmptyText&&(n="",$j("#comment-edit-text-"+t).addClass("comment-edit-text-full"),$j("#comment-edit-text-"+t).removeClass("comment-edit-text-empty"),openMenu("comment-edit-submit-wrapper-"+t));var r=$j(e).html();r=r.replace("<","<"),r=r.replace(">",">"),r=r.replace("&","&"),r=r.replace(""",'"'),$j("#comment-edit-text-"+t).val(n+r)}function qCommentInsert(e,t){var n=$j("#comment-edit-text-"+t).val();n==window.commentEmptyText&&(n="",$j("#comment-edit-text-"+t).addClass("comment-edit-text-full"),$j("#comment-edit-text-"+t).removeClass("comment-edit-text-empty"),openMenu("comment-edit-submit-wrapper-"+t));var r=$j(e).val();r=r.replace("<","<"),r=r.replace(">",">"),r=r.replace("&","&"),r=r.replace(""",'"'),$j("#comment-edit-text-"+t).val(n+r),$j(e).val("")}function showHideComments(e){$j("#collapsed-comments-"+e).is(":visible")?($j("#collapsed-comments-"+e).hide(),$j("#hide-comments-"+e).html(window.showMore)):($j("#collapsed-comments-"+e).show(),$j("#hide-comments-"+e).html(window.showFewer))}function enableOnUser(){if(editor)return;$j(this).val(""),initEditor()}function initEditor(e){if(editor==0){$j("#profile-jot-text-loading").show();if(plaintext=="none"){$j("#profile-jot-text-loading").hide(),$j("#profile-jot-text").css({height:200,color:"#000"}),$j("#profile-jot-text").contact_autocomplete(baseurl+"/acl"),editor=!0,$j("a#jot-perms-icon").fancybox({transitionIn:"elastic",transitionOut:"elastic"}),$j(".jothidden").show(),typeof e!="undefined"&&e();return}tinyMCE.init({theme:"advanced",mode:"specific_textareas",editor_selector:window.editSelect,auto_focus:"profile-jot-text",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:"",theme_advanced_toolbar_location:"top",theme_advanced_toolbar_align:"center",theme_advanced_blockformats:"blockquote,code",gecko_spellcheck:!0,paste_text_sticky:!0,entity_encoding:"raw",add_unload_trigger:!1,remove_linebreaks:!1,force_p_newlines:!1,force_br_newlines:!0,forced_root_block:"",convert_urls:!1,content_css:window.baseURL+"/view/custom_tinymce.css",theme_advanced_path:!1,file_browser_callback:"fcFileBrowser",setup:function(t){cPopup=null,t.onKeyDown.add(function(e,t){cPopup!==null&&cPopup.onkey(t)}),t.onKeyUp.add(function(e,t){var n=tinyMCE.activeEditor.getContent();match=n.match(/@([^ \n]+)$/),match!==null?(cPopup===null&&(cPopup=new ACPopup(this,baseurl+"/acl")),cPopup.ready&&match[1]!==cPopup.searchText&&cPopup.search(match[1]),cPopup.ready||(cPopup=null)):cPopup!==null&&(cPopup.close(),cPopup=null),textlen=n.length,textlen!=0&&$j("#jot-perms-icon").is(".unlock")?$j("#profile-jot-desc").html(ispublic):$j("#profile-jot-desc").html(" "),textlen<=140&&($j("#character-counter").removeClass("red"),$j("#character-counter").removeClass("orange"),$j("#character-counter").addClass("grey")),textlen>140&&textlen<=420&&($j("#character-counter").removeClass("grey"),$j("#character-counter").removeClass("red"),$j("#character-counter").addClass("orange")),textlen>420&&($j("#character-counter").removeClass("grey"),$j("#character-counter").removeClass("orange"),$j("#character-counter").addClass("red")),$j("#character-counter").text(textlen)}),t.onInit.add(function(t){t.pasteAsPlainText=!0,$j("#profile-jot-text-loading").hide(),$j(".jothidden").show(),typeof e!="undefined"&&e()})}}),editor=!0,$j("a#jot-perms-icon").fancybox({transitionIn:"none",transitionOut:"none"})}else typeof e!="undefined"&&e()}function msgInitEditor(){plaintext!="none"?tinyMCE.init({theme:"advanced",mode:"specific_textareas",editor_selector:/(profile-jot-text|prvmail-text)/,plugins:"bbcode,paste",theme_advanced_buttons1:"bold,italic,underline,undo,redo,link,unlink,image,forecolor",theme_advanced_buttons2:"",theme_advanced_buttons3:"",theme_advanced_toolbar_location:"top",theme_advanced_toolbar_align:"center",theme_advanced_blockformats:"blockquote,code",gecko_spellcheck:!0,paste_text_sticky:!0,entity_encoding:"raw",add_unload_trigger:!1,remove_linebreaks:!1,force_p_newlines:!1,force_br_newlines:!0,forced_root_block:"",convert_urls:!1,content_css:baseurl+"/view/custom_tinymce.css",theme_advanced_path:!1,setup:function(e){e.onInit.add(function(e){e.pasteAsPlainText=!0;var t=e.editorId,n=$j("#"+t);typeof n.attr("tabindex")!="undefined"&&($j("#"+t+"_ifr").attr("tabindex",n.attr("tabindex")),n.attr("tabindex",null))})}}):$j("#prvmail-text").contact_autocomplete(baseurl+"/acl")}function profInitEditor(){tinyMCE.init({theme:"advanced",mode:window.editSelect,plugins:"bbcode,paste",theme_advanced_buttons1:"bold,italic,underline,undo,redo,link,unlink,image,forecolor,formatselect,code",theme_advanced_buttons2:"",theme_advanced_buttons3:"",theme_advanced_toolbar_location:"top",theme_advanced_toolbar_align:"center",theme_advanced_blockformats:"blockquote,code",gecko_spellcheck:!0,paste_text_sticky:!0,entity_encoding:"raw",add_unload_trigger:!1,remove_linebreaks:!1,force_p_newlines:!1,force_br_newlines:!0,forced_root_block:"",content_css:baseurl+"/view/custom_tinymce.css",theme_advanced_path:!1,setup:function(e){e.onInit.add(function(e){e.pasteAsPlainText=!0})}})}function eventInitEditor(){tinyMCE.init({theme:"advanced",mode:"textareas",plugins:"bbcode,paste",theme_advanced_buttons1:"bold,italic,underline,undo,redo,link,unlink,image,forecolor,formatselect,code",theme_advanced_buttons2:"",theme_advanced_buttons3:"",theme_advanced_toolbar_location:"top",theme_advanced_toolbar_align:"center",theme_advanced_blockformats:"blockquote,code",gecko_spellcheck:!0,paste_text_sticky:!0,entity_encoding:"raw",add_unload_trigger:!1,remove_linebreaks:!1,force_p_newlines:!1,force_br_newlines:!0,forced_root_block:"",content_css:baseurl+"/view/custom_tinymce.css",theme_advanced_path:!1,setup:function(e){e.onInit.add(function(e){e.pasteAsPlainText=!0})}})}function contactInitEditor(){tinyMCE.init({theme:"advanced",mode:window.editSelect,elements:"contact-edit-info",plugins:"bbcode",theme_advanced_buttons1:"bold,italic,underline,undo,redo,link,unlink,image,forecolor",theme_advanced_buttons2:"",theme_advanced_buttons3:"",theme_advanced_toolbar_location:"top",theme_advanced_toolbar_align:"center",theme_advanced_styles:"blockquote,code",gecko_spellcheck:!0,entity_encoding:"raw",add_unload_trigger:!1,remove_linebreaks:!1,force_p_newlines:!1,force_br_newlines:!0,forced_root_block:"",content_css:baseurl+"/view/custom_tinymce.css"})}function wallInitEditor(){var e=window.editSelect;e!="none"?tinyMCE.init({theme:"advanced",mode:"specific_textareas",editor_selector:/(profile-jot-text|prvmail-text)/,plugins:"bbcode,paste",theme_advanced_buttons1:"bold,italic,underline,undo,redo,link,unlink,image,forecolor",theme_advanced_buttons2:"",theme_advanced_buttons3:"",theme_advanced_toolbar_location:"top",theme_advanced_toolbar_align:"center",theme_advanced_blockformats:"blockquote,code",gecko_spellcheck:!0,paste_text_sticky:!0,entity_encoding:"raw",add_unload_trigger:!1,remove_linebreaks:!1,force_p_newlines:!1,force_br_newlines:!0,forced_root_block:"",convert_urls:!1,content_css:baseurl+"/view/custom_tinymce.css",theme_advanced_path:!1,setup:function(e){e.onInit.add(function(e){e.pasteAsPlainText=!0;var t=e.editorId,n=$j("#"+t);typeof n.attr("tabindex")!="undefined"&&($j("#"+t+"_ifr").attr("tabindex",n.attr("tabindex")),n.attr("tabindex",null))})}}):$j("#prvmail-text").contact_autocomplete(baseurl+"/acl")}function deleteCheckedItems(){var e="";$j(".item-select").each(function(){$j(this).is(":checked")&&(e.length!=0?e=e+","+$j(this).val():e=$j(this).val())}),$j.post("item",{dropitems:e},function(e){window.location.reload()})}function jotVideoURL(){reply=prompt(window.vidURL),reply&&reply.length&&addeditortext("[video]"+reply+"[/video]")}function jotAudioURL(){reply=prompt(window.audURL),reply&&reply.length&&addeditortext("[audio]"+reply+"[/audio]")}function jotGetLocation(){reply=prompt(window.whereAreU,$j("#jot-location").val()),reply&&reply.length&&$j("#jot-location").val(reply)}function jotShare(e){$j("#jot-popup").length!=0&&$j("#jot-popup").show(),$j("#like-rotator-"+e).show(),$j.get("share/"+e,function(t){editor||$j("#profile-jot-text").val(""),initEditor(function(){addeditortext(t),$j("#like-rotator-"+e).hide(),$j(window).scrollTop(0)})})}function linkdropper(e){var t=e.dataTransfer.types.contains("text/uri-list");t&&e.preventDefault()}function itemTag(e){reply=prompt(window.term),reply&&reply.length&&(reply=reply.replace("#",""),reply.length&&(commentBusy=!0,$j("body").css("cursor","wait"),$j.get("tagger/"+e+"?term="+reply,NavUpdate),liking=1))}function itemFiler(e){var t=$j("input").css("border-color");$j.get("filer/",function(n){$j.fancybox(n),$j("#id_term").keypress(function(){$j(this).css("border-color",t)}),$j("#select_term").change(function(){$j("#id_term").css("border-color",t)}),$j("#filer_save").click(function(t){return t.preventDefault(),reply=$j("#id_term").val(),reply&&reply.length?(commentBusy=!0,$j("body").css("cursor","wait"),$j.get("filer/"+e+"?term="+reply,NavUpdate),liking=1,$j.fancybox.close()):$j("#id_term").css("border-color","#FF0000"),!1})})}function jotClearLocation(){$j("#jot-coord").val(""),$j("#profile-nolocation-wrapper").hide()}function addeditortext(e){if(plaintext=="none"){var t=$j("#profile-jot-text").val();$j("#profile-jot-text").val(t+e)}else tinyMCE.execCommand("mceInsertRawHTML",!1,e)}$j(document).ready(function(){window.navMenuTimeout={"#network-menu-list-timeout":null,"#contacts-menu-list-timeout":null,"#system-menu-list-timeout":null,"#network-menu-list-opening":!1,"#contacts-menu-list-opening":!1,"#system-menu-list-opening":!1,"#network-menu-list-closing":!1,"#contacts-menu-list-closing":!1,"#system-menu-list-closing":!1},typeof window.aclInit!="undefined"&&typeof acl=="undefined"&&(acl=new ACL(baseurl+"/acl",[window.allowCID,window.allowGID,window.denyCID,window.denyGID])),$j("#profile-jot-text").focus(enableOnUser),$j("#profile-jot-text").click(enableOnUser),$j(".nav-menu-link").hover(function(){showNavMenu($j(this).attr("rel"))},function(){hideNavMenu($j(this).attr("rel"))}),$j(".group-edit-icon").hover(function(){$j(this).addClass("icon"),$j(this).removeClass("iconspacer")},function(){$j(this).removeClass("icon"),$j(this).addClass("iconspacer")}),$j(".sidebar-group-element").hover(function(){id=$j(this).attr("id"),$j("#edit-"+id).addClass("icon"),$j("#edit-"+id).removeClass("iconspacer")},function(){id=$j(this).attr("id"),$j("#edit-"+id).removeClass("icon"),$j("#edit-"+id).addClass("iconspacer")}),$j(".savedsearchdrop").hover(function(){$j(this).addClass("drop"),$j(this).addClass("icon"),$j(this).removeClass("iconspacer")},function(){$j(this).removeClass("drop"),$j(this).removeClass("icon"),$j(this).addClass("iconspacer")}),$j(".savedsearchterm").hover(function(){id=$j(this).attr("id"),$j("#drop-"+id).addClass("icon"),$j("#drop-"+id).addClass("drophide"),$j("#drop-"+id).removeClass("iconspacer")},function(){id=$j(this).attr("id"),$j("#drop-"+id).removeClass("icon"),$j("#drop-"+id).removeClass("drophide"),$j("#drop-"+id).addClass("iconspacer")}),window.autoCompleteType=="display-head"&&$j(".comment-wwedit-wrapper textarea").contact_autocomplete(baseurl+"/acl");if(window.aclType=="event_head"){$j("#events-calendar").fullCalendar({events:baseurl+"/events/json/",header:{left:"prev,next today",center:"title",right:"month,agendaWeek,agendaDay"},timeFormat:"H(:mm)",eventClick:function(e,t,n){showEvent(e.id)},eventRender:function(e,t,n){if(e.item["author-name"]==null)return;switch(n.name){case"month":t.find(".fc-event-title").html("{1} : {2}".format(e.item["author-avatar"],e.item["author-name"],e.title));break;case"agendaWeek":t.find(".fc-event-title").html("{1}

    {2}

    {3}

    ".format(e.item["author-avatar"],e.item["author-name"],e.item.desc,e.item.location));break;case"agendaDay":t.find(".fc-event-title").html("{1}

    {2}

    {3}

    ".format(e.item["author-avatar"],e.item["author-name"],e.item.desc,e.item.location))}}});var e=location.href.replace(baseurl,"").split("/");e.length>=4&&$j("#events-calendar").fullCalendar("gotoDate",e[2],e[3]-1);var t=location.hash.split("-");t.length==2&&t[0]=="#link"&&showEvent(t[1])}$j("#event-share-checkbox").change(function(){$j("#event-share-checkbox").is(":checked")?$j("#acl-wrapper").show():$j("#acl-wrapper").hide()}).trigger("change"),(window.aclType=="settings-head"||window.aclType=="photos_head"||window.aclType=="event_head")&&$j("#contact_allow, #contact_deny, #group_allow, #group_deny").change(function(){var e;$j("#contact_allow option:selected, #contact_deny option:selected, #group_allow option:selected, #group_deny option:selected").each(function(){e=$j(this).text(),$j("#jot-perms-icon").removeClass("unlock").addClass("lock"),$j("#jot-public").hide()}),e==null&&($j("#jot-perms-icon").removeClass("lock").addClass("unlock"),$j("#jot-public").show())}).trigger("change");switch(window.autocompleteType){case"msg-header":var n=$j("#recip").autocomplete({serviceUrl:baseurl+"/acl",minChars:2,width:350,onSelect:function(e,t){$j("#recip-complete").val(t)}});break;case"contacts-head":var n=$j("#contacts-search").autocomplete({serviceUrl:baseurl+"/acl",minChars:2,width:350});n.setOptions({params:{type:"a"}});break;default:}if(typeof window.AjaxUpload!="undefined")switch(window.ajaxType){case"jot-header":var r=new window.AjaxUpload("wall-image-upload",{action:"wall_upload/"+window.nickname,name:"userfile",onSubmit:function(e,t){$j("#profile-rotator").show()},onComplete:function(e,t){addeditortext(t),$j("#profile-rotator").hide()}}),i=new window.AjaxUpload("wall-file-upload",{action:"wall_attach/"+window.nickname,name:"userfile",onSubmit:function(e,t){$j("#profile-rotator").show()},onComplete:function(e,t){addeditortext(t),$j("#profile-rotator").hide()}});break;case"msg-header":var r=new window.AjaxUpload("prvmail-upload",{action:"wall_upload/"+window.nickname,name:"userfile",onSubmit:function(e,t){$j("#profile-rotator").show()},onComplete:function(e,t){tinyMCE.execCommand("mceInsertRawHTML",!1,t),$j("#profile-rotator").hide()}});break;default:}}),$j(function(){$j("nav").bind("nav-update",function(e,t){var n=$j("#pending-update"),r=$j(t).find("register").text();r=="0"?(r="",n.hide()):n.show(),n.html(r)})}),$j(function(){$j("#cnftheme").fancybox({width:800,autoDimensions:!1,onStart:function(){var e=$j("#id_theme :selected").val(),t=$j("#id_theme_mobile :selected").val();$j("#cnftheme").attr("href",baseurl+"/admin/themes/"+e)},onComplete:function(){$j("div#fancybox-content form").submit(function(e){var t=$j(this).attr("action"),n={};return $j(this).find("input").each(function(){n[$j(this).attr("name")]=$j(this).val()}),$j(this).find("select").each(function(){n[$j(this).attr("name")]=$j(this).children(":selected").val()}),console.log(":)",t,n),$j.post(t,n,function(e){timer&&clearTimeout(timer),NavUpdate(),$j.fancybox.close()}),!1})}})}),typeof window.photoEdit!="undefined"&&$j(document).keydown(function(e){window.prevLink!=""&&e.ctrlKey&&e.keyCode==37&&(e.preventDefault(),window.location.href=window.prevLink),window.nextLink!=""&&e.ctrlKey&&e.keyCode==39&&(e.preventDefault(),window.location.href=window.nextLink)});switch(window.ajaxType){case"jot-header":function jotGetLink(){reply=prompt(window.linkURL),reply&&reply.length&&(reply=bin2hex(reply),$j("#profile-rotator").show(),$j.get("parse_url?binurl="+reply,function(e){addeditortext(e),$j("#profile-rotator").hide()}))}function linkdrop(e){var t=e.dataTransfer.getData("text/uri-list");e.target.textContent=t,e.preventDefault(),t&&t.length&&(t=bin2hex(t),$j("#profile-rotator").show(),$j.get("parse_url?binurl="+t,function(e){editor||$j("#profile-jot-text").val(""),initEditor(function(){addeditortext(e),$j("#profile-rotator").hide()})}))}break;case"msg-header":case"wallmsg-header":function jotGetLink(){reply=prompt(window.linkURL),reply&&reply.length&&($j("#profile-rotator").show(),$j.get("parse_url?url="+reply,function(e){tinyMCE.execCommand("mceInsertRawHTML",!1,e),$j("#profile-rotator").hide()}))}function linkdrop(e){var t=e.dataTransfer.getData("text/uri-list");e.target.textContent=t,e.preventDefault(),t&&t.length&&($j("#profile-rotator").show(),$j.get("parse_url?url="+t,function(e){tinyMCE.execCommand("mceInsertRawHTML",!1,e),$j("#profile-rotator").hide()}))}break;default:}var editor=!1,textlen=0,plaintext=window.editSelect,ispublic=window.isPublic;typeof window.geoTag=="function"&&window.geoTag(); \ No newline at end of file diff --git a/view/theme/frost/nav.tpl b/view/theme/frost/nav.tpl index 89e1168ab7..755f8a628f 100644 --- a/view/theme/frost/nav.tpl +++ b/view/theme/frost/nav.tpl @@ -8,7 +8,7 @@ diff --git a/view/theme/quattro/quattro.less b/view/theme/quattro/quattro.less index 2daed85c31..e7325b7ccb 100644 --- a/view/theme/quattro/quattro.less +++ b/view/theme/quattro/quattro.less @@ -311,6 +311,18 @@ aside { li { padding: 0px; margin: 0px; list-style: none; } } + #wallmessage-link { + display: block; + .rounded(); + color: @AsideConnect; + background: @AsideConnectBg url('../../../images/connect-bg.png') no-repeat left center; + font-weight: bold; + text-transform:uppercase; + padding: 4px 2px 2px 35px; + margin-top: 3px; + + &:hover { text-decoration: none; background-color: @AsideConnectHoverBg; } + } #dfrn-request-link { display: block; .rounded(); diff --git a/view/theme/quattro/search_item.tpl b/view/theme/quattro/search_item.tpl index e207484dc8..55868e5483 100644 --- a/view/theme/quattro/search_item.tpl +++ b/view/theme/quattro/search_item.tpl @@ -64,8 +64,10 @@
    - {{ if $item.drop.dropping }} + {{ if $item.drop.pagedrop }} + {{ endif }} + {{ if $item.drop.dropping }} $item.drop.delete {{ endif }} {{ if $item.edpost }} diff --git a/view/theme/quattro/wall_item.tpl b/view/theme/quattro/wall_item.tpl deleted file mode 100644 index 731c2d2bfc..0000000000 --- a/view/theme/quattro/wall_item.tpl +++ /dev/null @@ -1,94 +0,0 @@ - -
    - $item.star.starred - {{ if $item.lock }}$item.lock{{ endif }} - -
    - -
    -
    -
    -
    - - $item.name - - menu - - -
    -
    $item.location
    -
    -
    - {{ if $item.title }}

    $item.title

    {{ endif }} - $item.body -
    -
    -
    - -
    - {{ for $item.tags as $tag }} - $tag - {{ endfor }} -
    -
    -
    -
    - {{ if $item.plink }}$item.plink.title{{ endif }} -
    -
    -
    - $item.name - $item.ago -
    - -
    - {{ if $item.star }} - $item.star.do - $item.star.undo - $item.star.tagger - {{ endif }} - {{ if $item.filer }} - $item.filer - {{ endif }} - - {{ if $item.vote }} - $item.vote.like.1 - $item.vote.dislike.1 - {{ endif }} - - {{ if $item.vote.share }} - $item.vote.share.1 - {{ endif }} -
    - -
    - - {{ if $item.drop.dropping }} - - $item.drop.delete - {{ endif }} - {{ if $item.edpost }} - - {{ endif }} -
    - -
    -
    -
    - - -
    $item.dislike
    -
    -
    - -
    - $item.comment -
    diff --git a/view/theme/quattro/wall_thread.tpl b/view/theme/quattro/wall_thread.tpl index 757f175468..3221311fc7 100644 --- a/view/theme/quattro/wall_thread.tpl +++ b/view/theme/quattro/wall_thread.tpl @@ -30,18 +30,25 @@
    -
    - $item.name + $item.name menu +
    + {{ if $item.owner_url }} + + {{ endif }}
    $item.location
    @@ -57,14 +64,20 @@ $tag {{ endfor }}
    -
    +
    -
    +
    - $item.name $item.ago + $item.name + $item.ago + {{ if $item.owner_url }}
    $item.to $item.owner_name $item.vwall + {{ endif }}
    @@ -72,6 +85,7 @@ $item.star.do $item.star.undo $item.star.tagger + {{ endif }} {{ if $item.filer }} $item.filer @@ -89,8 +103,10 @@
    - {{ if $item.drop.dropping }} + {{ if $item.drop.pagedrop }} + {{ endif }} + {{ if $item.drop.dropping }} $item.drop.delete {{ endif }} {{ if $item.edpost }} @@ -105,19 +121,18 @@
    $item.dislike
    - {{ if $item.threaded }}{{ if $item.comment }}{{ if $item.thread_level!=1 }} + + {{ if $item.threaded }}{{ if $item.comment }}{{ if $item.indent==comment }}
    - $item.comment + $item.comment
    {{ endif }}{{ endif }}{{ endif }} -
    - {{ for $item.children as $child }} {{ if $item.type == tag }} {{ inc wall_item_tag.tpl with $item=$child }}{{ endinc }} diff --git a/view/theme/quattro/wallwall_item.tpl b/view/theme/quattro/wallwall_item.tpl deleted file mode 100644 index e26b186360..0000000000 --- a/view/theme/quattro/wallwall_item.tpl +++ /dev/null @@ -1,96 +0,0 @@ -
    - $item.star.starred - {{ if $item.lock }}$item.lock{{ endif }} - -
    - -
    -
    -
    -
    - - $item.name - - menu - - -
    -
    - - $item.owner_name - -
    -
    $item.location
    -
    -
    - {{ if $item.title }}

    $item.title

    {{ endif }} - $item.body -
    -
    -
    - -
    - {{ for $item.tags as $tag }} - $tag - {{ endfor }} -
    -
    -
    - -
    -
    - $item.name $item.ago -
    $item.to $item.owner_name $item.vwall - -
    - -
    - {{ if $item.star }} - $item.star.do - $item.star.undo - $item.star.tagger - - {{ endif }} - {{ if $item.filer }} - $item.filer - {{ endif }} - - {{ if $item.vote }} - $item.vote.like.1 - $item.vote.dislike.1 - {{ endif }} - - {{ if $item.vote.share }} - $item.vote.share.1 - {{ endif }} -
    - -
    - - {{ if $item.drop.dropping }} - - $item.drop.delete - {{ endif }} - {{ if $item.edpost }} - - {{ endif }} -
    - -
    -
    -
    - - -
    $item.dislike
    -
    -
    -
    - $item.comment -
    diff --git a/view/theme/quattro/wallwall_thread.tpl b/view/theme/quattro/wallwall_thread.tpl deleted file mode 100644 index 4589390089..0000000000 --- a/view/theme/quattro/wallwall_thread.tpl +++ /dev/null @@ -1,155 +0,0 @@ -{{if $mode == display}} -{{ else }} -{{if $item.comment_firstcollapsed}} -
    - $item.num_comments - $item.hide_text - {{ if $item.thread_level==3 }} - - expand / - collapse thread{{ endif }} -
    - {{endif}} -{{ endif }} - -{{if $item.threaded}}{{if $item.comment}}{{if $item.thread_level==1}} -
    $item.comment
    -{{ endif }}{{ endif }}{{ endif }} - - -{{ if $item.flatten }} -
    $item.comment
    -{{ endif }} diff --git a/view/theme/slackr/style.css b/view/theme/slackr/style.css index 73b436fc61..1184f2a6e6 100644 --- a/view/theme/slackr/style.css +++ b/view/theme/slackr/style.css @@ -92,7 +92,7 @@ nav #site-location { box-shadow: 4px 4px 3px 0 #444444; } -#sidebar-page-list img { +.forumlist-img { border-radius: 3px; -moz-border-radius: 3px; box-shadow: 4px 4px 3px 0 #444444; diff --git a/view/theme/slackr/theme.php b/view/theme/slackr/theme.php index ff6d19ec9d..65a92c1845 100644 --- a/view/theme/slackr/theme.php +++ b/view/theme/slackr/theme.php @@ -45,10 +45,10 @@ function cmtBbOpen(comment, id) { return false; } function cmtBbClose(comment, id) { - if($(comment).hasClass('comment-edit-text-empty')) { - $(".comment-edit-bb-" + id).hide(); - return true; - } +// if($(comment).hasClass('comment-edit-text-empty')) { +// $(".comment-edit-bb-" + id).hide(); +// return true; +// } return false; } diff --git a/view/theme/smoothly/bottom.tpl b/view/theme/smoothly/bottom.tpl new file mode 100644 index 0000000000..347d87094b --- /dev/null +++ b/view/theme/smoothly/bottom.tpl @@ -0,0 +1,52 @@ + + diff --git a/view/theme/smoothly/default.php b/view/theme/smoothly/default.php new file mode 100644 index 0000000000..a136a82d35 --- /dev/null +++ b/view/theme/smoothly/default.php @@ -0,0 +1,30 @@ + + + + <?php if(x($page,'title')) echo $page['title'] ?> + + + + +
    + +
    + + + + + +
    + +
    + + + +
    + +
    + + + + + diff --git a/view/theme/smoothly/down.png b/view/theme/smoothly/down.png new file mode 100644 index 0000000000..ab6f9fd49e Binary files /dev/null and b/view/theme/smoothly/down.png differ diff --git a/view/theme/smoothly/events_reminder.tpl b/view/theme/smoothly/events_reminder.tpl new file mode 100644 index 0000000000..1e1148c5be --- /dev/null +++ b/view/theme/smoothly/events_reminder.tpl @@ -0,0 +1,40 @@ + + + + +
    +
    diff --git a/view/theme/smoothly/follow.tpl b/view/theme/smoothly/follow.tpl index 9c8a6bf3f2..09258b9c30 100644 --- a/view/theme/smoothly/follow.tpl +++ b/view/theme/smoothly/follow.tpl @@ -1,7 +1,7 @@

    $connect

    $desc
    -
    +
    diff --git a/view/theme/smoothly/footer.tpl b/view/theme/smoothly/footer.tpl new file mode 100644 index 0000000000..25058a7ff7 --- /dev/null +++ b/view/theme/smoothly/footer.tpl @@ -0,0 +1,3 @@ + \ No newline at end of file diff --git a/view/theme/smoothly/group_edit.tpl b/view/theme/smoothly/group_edit.tpl deleted file mode 100644 index a8b3f92a07..0000000000 --- a/view/theme/smoothly/group_edit.tpl +++ /dev/null @@ -1,16 +0,0 @@ -

    $title

    - - -
    -
    -
    - - - - $drop -
    -
    -
    $desc
    -
    -
    -
    diff --git a/view/theme/smoothly/header.tpl b/view/theme/smoothly/header.tpl new file mode 100644 index 0000000000..e69de29bb2 diff --git a/view/theme/smoothly/jot.tpl b/view/theme/smoothly/jot.tpl index 5f711cf242..437eec4373 100644 --- a/view/theme/smoothly/jot.tpl +++ b/view/theme/smoothly/jot.tpl @@ -14,11 +14,18 @@ -
    -
    +
    + +
    +
    + +
    - - +
    +